aseprite/src/app/cmd/remove_frame.h

43 lines
867 B
C
Raw Normal View History

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