mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-04 01:13:38 +00:00
33 lines
619 B
C++
33 lines
619 B
C++
// Aseprite UI Library
|
|
// Copyright (C) 2001-2013 David Capello
|
|
//
|
|
// This file is released under the terms of the MIT license.
|
|
// Read LICENSE.txt for more information.
|
|
|
|
#ifndef UI_INIT_THEME_EVENT_H_INCLUDED
|
|
#define UI_INIT_THEME_EVENT_H_INCLUDED
|
|
#pragma once
|
|
|
|
#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
|
|
|
|
#endif // UI_INIT_THEME_EVENT_H_INCLUDED
|