forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpaint_event.cpp
More file actions
40 lines (32 loc) · 717 Bytes
/
paint_event.cpp
File metadata and controls
40 lines (32 loc) · 717 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-2013, 2015 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "ui/paint_event.h"
#include "ui/widget.h"
namespace ui {
PaintEvent::PaintEvent(Widget* source, Graphics* graphics)
: Event(source)
, m_graphics(graphics)
, m_painted(false)
{
}
PaintEvent::~PaintEvent()
{
}
Graphics* PaintEvent::graphics()
{
// If someone requested the graphics pointer, it means that this
// "someone" has painted the widget.
m_painted = true;
return m_graphics;
}
bool PaintEvent::isPainted() const
{
return m_painted;
}
} // namespace ui