aseprite/src/app/commands/cmd_copy_cel.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
914 B
C++
Raw Normal View History

2015-02-12 23:16:25 +08:00
// Aseprite
// Copyright (C) 2001-2017 David Capello
2015-02-12 23:16:25 +08:00
//
2016-08-27 04:02:58 +08:00
// 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/timeline/timeline.h"
namespace app {
class CopyCelCommand : public Command {
public:
CopyCelCommand();
protected:
bool onEnabled(Context* context) override;
void onExecute(Context* context) override;
};
CopyCelCommand::CopyCelCommand() : Command(CommandId::CopyCel())
{
}
bool CopyCelCommand::onEnabled(Context* context)
{
return App::instance()->timeline() && App::instance()->timeline()->isMovingCel();
}
void CopyCelCommand::onExecute(Context* context)
{
App::instance()->timeline()->dropRange(Timeline::kCopy);
}
Command* CommandFactory::createCopyCelCommand()
{
return new CopyCelCommand;
}
} // namespace app