2015-02-12 23:16:25 +08:00
|
|
|
// Aseprite
|
2016-02-16 04:13:23 +08:00
|
|
|
// Copyright (C) 2001-2016 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.
|
2011-03-25 05:03:38 +08:00
|
|
|
|
2015-01-19 09:05:33 +08:00
|
|
|
#ifndef APP_CMD_REMOVE_FRAME_H_INCLUDED
|
|
|
|
#define APP_CMD_REMOVE_FRAME_H_INCLUDED
|
2014-03-30 06:40:17 +08:00
|
|
|
#pragma once
|
2011-03-25 05:03:38 +08:00
|
|
|
|
2015-01-19 09:05:33 +08:00
|
|
|
#include "app/cmd.h"
|
|
|
|
#include "app/cmd/with_sprite.h"
|
|
|
|
#include "app/cmd_sequence.h"
|
|
|
|
#include "doc/frame.h"
|
2011-03-25 05:03:38 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
namespace app {
|
2015-01-19 09:05:33 +08:00
|
|
|
namespace cmd {
|
|
|
|
using namespace doc;
|
2011-03-25 05:03:38 +08:00
|
|
|
|
2015-01-19 09:05:33 +08:00
|
|
|
class RemoveFrame : public Cmd
|
|
|
|
, public WithSprite {
|
2013-08-06 08:20:19 +08:00
|
|
|
public:
|
2015-01-19 09:05:33 +08:00
|
|
|
RemoveFrame(Sprite* sprite, frame_t frame);
|
2011-03-25 05:03:38 +08:00
|
|
|
|
2015-01-19 09:05:33 +08:00
|
|
|
protected:
|
|
|
|
void onExecute() override;
|
|
|
|
void onUndo() override;
|
|
|
|
size_t onMemSize() const override {
|
|
|
|
return sizeof(*this) + m_seq.memSize();
|
|
|
|
}
|
2013-08-06 08:20:19 +08:00
|
|
|
|
|
|
|
private:
|
2015-01-19 09:05:33 +08:00
|
|
|
frame_t m_frame;
|
2016-02-16 04:13:23 +08:00
|
|
|
int m_frameDuration;
|
2015-01-19 09:05:33 +08:00
|
|
|
CmdSequence m_seq;
|
|
|
|
bool m_firstTime;
|
2013-08-06 08:20:19 +08:00
|
|
|
};
|
|
|
|
|
2015-01-19 09:05:33 +08:00
|
|
|
} // namespace cmd
|
2013-08-06 08:20:19 +08:00
|
|
|
} // namespace app
|
2011-03-25 05:03:38 +08:00
|
|
|
|
|
|
|
#endif
|