2015-02-12 23:16:25 +08:00
|
|
|
// Aseprite
|
2018-06-11 22:51:11 +08:00
|
|
|
// Copyright (C) 2001-2018 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
|
|
|
|
2024-12-17 01:52:19 +08:00
|
|
|
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;
|
|
|
|
bool m_frameRemoved;
|
|
|
|
};
|
|
|
|
|
|
|
|
}} // namespace app::cmd
|
2011-03-25 05:03:38 +08:00
|
|
|
|
|
|
|
#endif
|