aseprite/src/app/commands/cmd_cancel.cpp

82 lines
1.6 KiB
C++
Raw Normal View History

2015-02-12 23:16:25 +08:00
// Aseprite
2017-11-30 22:57:18 +08:00
// Copyright (C) 2001-2015, 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/commands/command.h"
#include "app/app.h"
#include "app/commands/commands.h"
#include "app/commands/params.h"
#include "app/context.h"
#include "app/ui/input_chain.h"
namespace app {
class CancelCommand : public Command {
public:
enum Type {
NoOp,
All,
};
CancelCommand();
Command* clone() const override { return new CancelCommand(*this); }
protected:
bool onNeedsParams() const override { return true; }
void onLoadParams(const Params& params) override;
void onExecute(Context* context) override;
private:
Type m_type;
};
CancelCommand::CancelCommand()
: Command("Cancel",
"Cancel Current Operation",
CmdUIOnlyFlag)
, m_type(NoOp)
{
}
void CancelCommand::onLoadParams(const Params& params)
{
std::string type = params.get("type");
if (type == "noop") m_type = NoOp;
else if (type == "all") m_type = All;
}
void CancelCommand::onExecute(Context* context)
{
switch (m_type) {
case NoOp:
// Do nothing.
break;
case All:
// TODO should the ContextBar be a InputChainElement to intercept onCancel()?
// Discard brush
{
2017-11-30 22:57:18 +08:00
Command* discardBrush = Commands::instance()->byId(CommandId::DiscardBrush);
context->executeCommand(discardBrush);
}
App::instance()->inputChain().cancel(context);
break;
}
}
Command* CommandFactory::createCancelCommand()
{
return new CancelCommand;
}
} // namespace app