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.
|
2012-01-06 06:45:03 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2012-01-06 06:45:03 +08:00
|
|
|
#include "config.h"
|
2013-08-06 08:20:19 +08:00
|
|
|
#endif
|
2012-01-06 06:45:03 +08:00
|
|
|
|
2013-11-11 05:27:11 +08:00
|
|
|
#include "app/app.h"
|
2013-08-06 08:20:19 +08:00
|
|
|
#include "app/commands/command.h"
|
|
|
|
#include "app/context_access.h"
|
2013-11-11 05:27:11 +08:00
|
|
|
#include "app/ui/main_window.h"
|
|
|
|
#include "app/ui/timeline.h"
|
2012-06-18 09:49:58 +08:00
|
|
|
#include "ui/base.h"
|
2012-01-06 06:45:03 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
namespace app {
|
|
|
|
|
|
|
|
class MoveCelCommand : public Command {
|
2012-01-06 06:45:03 +08:00
|
|
|
public:
|
|
|
|
MoveCelCommand();
|
2014-08-15 10:07:47 +08:00
|
|
|
Command* clone() const override { return new MoveCelCommand(*this); }
|
2012-01-06 06:45:03 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
bool onEnabled(Context* context);
|
|
|
|
void onExecute(Context* context);
|
|
|
|
};
|
|
|
|
|
|
|
|
MoveCelCommand::MoveCelCommand()
|
|
|
|
: Command("MoveCel",
|
|
|
|
"Move Cel",
|
|
|
|
CmdUIOnlyFlag)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MoveCelCommand::onEnabled(Context* context)
|
|
|
|
{
|
2013-11-11 05:27:11 +08:00
|
|
|
return App::instance()->getMainWindow()->getTimeline()->isMovingCel();
|
2012-01-06 06:45:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void MoveCelCommand::onExecute(Context* context)
|
|
|
|
{
|
2014-04-10 08:56:06 +08:00
|
|
|
App::instance()->getMainWindow()->getTimeline()->dropRange(Timeline::kMove);
|
2012-01-06 06:45:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Command* CommandFactory::createMoveCelCommand()
|
|
|
|
{
|
|
|
|
return new MoveCelCommand;
|
|
|
|
}
|
2013-08-06 08:20:19 +08:00
|
|
|
|
|
|
|
} // namespace app
|