aseprite/src/ui/init_theme_event.h

32 lines
613 B
C
Raw Normal View History

// ASEPRITE gui library
// Copyright (C) 2001-2012 David Capello
//
// This source file is ditributed under a BSD-like license, please
// read LICENSE.txt for more information.
2012-06-18 01:49:58 +00:00
#ifndef UI_INIT_THEME_EVENT_H_INCLUDED
#define UI_INIT_THEME_EVENT_H_INCLUDED
2012-06-18 01:49:58 +00:00
#include "ui/event.h"
namespace ui {
class Theme;
class InitThemeEvent : public Event
{
public:
InitThemeEvent(Component* source, Theme* theme)
: Event(source)
, m_theme(theme){ }
Theme* getTheme() const { return m_theme; }
private:
Theme* m_theme;
};
} // namespace ui
2012-06-18 01:49:58 +00:00
#endif // UI_INIT_THEME_EVENT_H_INCLUDED