aseprite/src/app/commands/cmd_home.cpp
2017-12-01 15:10:21 -03:00

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