2013-08-08 21:01:20 -03:00
|
|
|
// Aseprite UI Library
|
2013-01-27 12:13:13 -03:00
|
|
|
// Copyright (C) 2001-2013 David Capello
|
2012-06-15 23:37:59 -03:00
|
|
|
//
|
2014-03-29 20:08:05 -03:00
|
|
|
// This file is released under the terms of the MIT license.
|
|
|
|
// Read LICENSE.txt for more information.
|
2012-06-15 23:37:59 -03:00
|
|
|
|
2012-06-17 22:49:58 -03:00
|
|
|
#ifndef UI_INIT_THEME_EVENT_H_INCLUDED
|
|
|
|
#define UI_INIT_THEME_EVENT_H_INCLUDED
|
2014-03-29 19:40:17 -03:00
|
|
|
#pragma once
|
2012-06-15 23:37:59 -03:00
|
|
|
|
2012-06-17 22:49:58 -03:00
|
|
|
#include "ui/event.h"
|
2012-06-15 23:37:59 -03:00
|
|
|
|
2012-06-17 22:02:54 -03:00
|
|
|
namespace ui {
|
2012-06-15 23:37:59 -03:00
|
|
|
|
2012-06-17 22:02:54 -03:00
|
|
|
class Theme;
|
2012-06-15 23:37:59 -03:00
|
|
|
|
2012-06-17 22:02:54 -03:00
|
|
|
class InitThemeEvent : public Event
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
InitThemeEvent(Component* source, Theme* theme)
|
|
|
|
: Event(source)
|
|
|
|
, m_theme(theme){ }
|
2012-06-15 23:37:59 -03:00
|
|
|
|
2012-06-17 22:02:54 -03:00
|
|
|
Theme* getTheme() const { return m_theme; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
Theme* m_theme;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ui
|
2012-06-15 23:37:59 -03:00
|
|
|
|
2012-06-17 22:49:58 -03:00
|
|
|
#endif // UI_INIT_THEME_EVENT_H_INCLUDED
|