forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflip_image.h
49 lines (38 loc) · 937 Bytes
/
flip_image.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Aseprite
// Copyright (C) 2001-2015 David Capello
//
// This program is distributed under the terms of
// the End-User License Agreement for Aseprite.
#ifndef APP_CMD_FLIP_IMAGE_H_INCLUDED
#define APP_CMD_FLIP_IMAGE_H_INCLUDED
#pragma once
#include "app/cmd.h"
#include "app/cmd/with_image.h"
#include "doc/algorithm/flip_type.h"
#include "gfx/rect.h"
#include <vector>
namespace doc {
class Image;
}
namespace app {
namespace cmd {
using namespace doc;
class FlipImage : public Cmd
, public WithImage {
public:
FlipImage(Image* image, const gfx::Rect& bounds,
doc::algorithm::FlipType flipType);
protected:
void onExecute() override;
void onUndo() override;
size_t onMemSize() const override {
return sizeof(*this);
}
private:
void swap();
gfx::Rect m_bounds;
doc::algorithm::FlipType m_flipType;
};
} // namespace cmd
} // namespace app
#endif