mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-20 14:21:45 +00:00
54 lines
929 B
C++
54 lines
929 B
C++
// Aseprite
|
|
// Copyright (C) 2001-2017 David Capello
|
|
//
|
|
// This program is distributed under the terms of
|
|
// the End-User License Agreement for Aseprite.
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "app/app.h"
|
|
#include "app/commands/command.h"
|
|
#include "app/ui/main_window.h"
|
|
|
|
namespace app {
|
|
|
|
using namespace ui;
|
|
|
|
class HomeCommand : public Command {
|
|
public:
|
|
HomeCommand();
|
|
~HomeCommand();
|
|
|
|
protected:
|
|
void onExecute(Context* context) override;
|
|
bool onEnabled(Context* context) override;
|
|
};
|
|
|
|
HomeCommand::HomeCommand()
|
|
: Command(CommandId::Home(), CmdUIOnlyFlag)
|
|
{
|
|
}
|
|
|
|
HomeCommand::~HomeCommand()
|
|
{
|
|
}
|
|
|
|
void HomeCommand::onExecute(Context* context)
|
|
{
|
|
App::instance()->mainWindow()->showHome();
|
|
}
|
|
|
|
bool HomeCommand::onEnabled(Context* context)
|
|
{
|
|
return !App::instance()->mainWindow()->isHomeSelected();
|
|
}
|
|
|
|
Command* CommandFactory::createHomeCommand()
|
|
{
|
|
return new HomeCommand;
|
|
}
|
|
|
|
} // namespace app
|