2013-08-09 00:01:20 +00:00
|
|
|
// Aseprite UI Library
|
2017-08-15 13:39:06 +00:00
|
|
|
// Copyright (C) 2001-2017 David Capello
|
2012-06-16 02:37:59 +00:00
|
|
|
//
|
2014-03-29 23:08:05 +00:00
|
|
|
// This file is released under the terms of the MIT license.
|
|
|
|
// Read LICENSE.txt for more information.
|
2012-06-16 02:37:59 +00:00
|
|
|
|
2012-06-18 01:49:58 +00:00
|
|
|
#ifndef UI_INIT_THEME_EVENT_H_INCLUDED
|
|
|
|
#define UI_INIT_THEME_EVENT_H_INCLUDED
|
2014-03-29 22:40:17 +00:00
|
|
|
#pragma once
|
2012-06-16 02:37:59 +00:00
|
|
|
|
2012-06-18 01:49:58 +00:00
|
|
|
#include "ui/event.h"
|
2012-06-16 02:37:59 +00:00
|
|
|
|
2012-06-18 01:02:54 +00:00
|
|
|
namespace ui {
|
2012-06-16 02:37:59 +00:00
|
|
|
|
2012-06-18 01:02:54 +00:00
|
|
|
class Theme;
|
2012-06-16 02:37:59 +00:00
|
|
|
|
Refactor several "getNoun()" getters to "noun()"
This is a work-in-progress to create a consistent API and finally
separate the whole Aseprite base/gfx/ui libs into a reusable C++ library.
Classes:
app::IFileItem, app::AppMenuItem, app::skin::SkinPart,
gfx::Rect, gfx::Border, she::FileDialog,
ui::IButtonIcon, ui::Graphics, ui::Overlay, ui::Widget,
ui::ScrollableViewDelegate, and UI events
2015-12-04 17:39:04 +00:00
|
|
|
class InitThemeEvent : public Event {
|
2012-06-18 01:02:54 +00:00
|
|
|
public:
|
2017-08-15 13:39:06 +00:00
|
|
|
InitThemeEvent(Component* source,
|
|
|
|
Theme* theme)
|
2012-06-18 01:02:54 +00:00
|
|
|
: Event(source)
|
2017-08-15 13:39:06 +00:00
|
|
|
, m_theme(theme) { }
|
2012-06-16 02:37:59 +00:00
|
|
|
|
Refactor several "getNoun()" getters to "noun()"
This is a work-in-progress to create a consistent API and finally
separate the whole Aseprite base/gfx/ui libs into a reusable C++ library.
Classes:
app::IFileItem, app::AppMenuItem, app::skin::SkinPart,
gfx::Rect, gfx::Border, she::FileDialog,
ui::IButtonIcon, ui::Graphics, ui::Overlay, ui::Widget,
ui::ScrollableViewDelegate, and UI events
2015-12-04 17:39:04 +00:00
|
|
|
Theme* theme() const { return m_theme; }
|
2012-06-18 01:02:54 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Theme* m_theme;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ui
|
2012-06-16 02:37:59 +00:00
|
|
|
|
2012-06-18 01:49:58 +00:00
|
|
|
#endif // UI_INIT_THEME_EVENT_H_INCLUDED
|