aseprite/src/ui/paint_event.cpp

37 lines
678 B
C++
Raw Normal View History

// 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.
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
2012-06-18 01:49:58 +00:00
#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)
, m_transparentBg(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;
}
} // namespace ui