aseprite/src/app/commands/cmd_fit_screen.cpp

52 lines
1.0 KiB
C++
Raw Normal View History

// Aseprite
// Copyright (C) 2001-2016 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/context_access.h"
#include "app/modules/editors.h"
#include "app/ui/editor/editor.h"
namespace app {
class FitScreenCommand : public Command {
public:
FitScreenCommand();
Command* clone() const override { return new FitScreenCommand(*this); }
protected:
bool onEnabled(Context* context) override;
void onExecute(Context* context) override;
};
FitScreenCommand::FitScreenCommand()
: Command("FitScreen",
"Fit on Screen",
CmdUIOnlyFlag)
{
}
bool FitScreenCommand::onEnabled(Context* context)
{
return (current_editor != nullptr);
}
void FitScreenCommand::onExecute(Context* context)
{
current_editor->setScrollAndZoomToFitScreen();
}
Command* CommandFactory::createFitScreenCommand()
{
return new FitScreenCommand;
}
} //namespace app