aseprite/src/app/commands/cmd_move_cel.cpp

54 lines
1.2 KiB
C++
Raw Normal View History

2015-02-12 23:16:25 +08:00
// Aseprite
// Copyright (C) 2001-2015 David Capello
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation.
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "app/app.h"
#include "app/commands/command.h"
#include "app/context_access.h"
#include "app/ui/main_window.h"
#include "app/ui/timeline.h"
2012-06-18 09:49:58 +08:00
#include "ui/base.h"
namespace app {
class MoveCelCommand : public Command {
public:
MoveCelCommand();
Command* clone() const override { return new MoveCelCommand(*this); }
protected:
bool onEnabled(Context* context);
void onExecute(Context* context);
};
MoveCelCommand::MoveCelCommand()
: Command("MoveCel",
"Move Cel",
CmdUIOnlyFlag)
{
}
bool MoveCelCommand::onEnabled(Context* context)
{
return App::instance()->getMainWindow()->getTimeline()->isMovingCel();
}
void MoveCelCommand::onExecute(Context* context)
{
App::instance()->getMainWindow()->getTimeline()->dropRange(Timeline::kMove);
}
Command* CommandFactory::createMoveCelCommand()
{
return new MoveCelCommand;
}
} // namespace app