forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpaint_event.h
More file actions
40 lines (29 loc) · 785 Bytes
/
paint_event.h
File metadata and controls
40 lines (29 loc) · 785 Bytes
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
// Aseprite UI Library
// Copyright (C) 2001-2017 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef UI_PAINT_EVENT_H_INCLUDED
#define UI_PAINT_EVENT_H_INCLUDED
#pragma once
#include "ui/event.h"
namespace ui {
class Graphics;
class Widget;
class PaintEvent : public Event {
public:
PaintEvent(Widget* source, Graphics* graphics);
virtual ~PaintEvent();
Graphics* graphics();
bool isPainted() const { return m_painted; }
bool isTransparentBg() const { return m_transparentBg; }
void setTransparentBg(bool state) {
m_transparentBg = state;
}
private:
Graphics* m_graphics;
bool m_painted;
bool m_transparentBg;
};
} // namespace ui
#endif