mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-28 17:24:47 +01:00
* Put widget in the Ui namespace * Put theme in the Ui namespace * Put objective in Ui namespace
52 lines
1.9 KiB
C++
52 lines
1.9 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2024 OpenRCT2 developers
|
|
*
|
|
* For a complete list of all authors, please refer to contributors.md
|
|
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
|
|
*
|
|
* OpenRCT2 is licensed under the GNU General Public License version 3.
|
|
*****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <openrct2/interface/Colour.h>
|
|
#include <openrct2/interface/Window.h>
|
|
|
|
namespace OpenRCT2::Ui
|
|
{
|
|
enum
|
|
{
|
|
UITHEME_FLAG_PREDEFINED = 1 << 0,
|
|
UITHEME_FLAG_USE_LIGHTS_RIDE = 1 << 1,
|
|
UITHEME_FLAG_USE_LIGHTS_PARK = 1 << 2,
|
|
UITHEME_FLAG_USE_ALTERNATIVE_SCENARIO_SELECT_FONT = 1 << 3,
|
|
UITHEME_FLAG_USE_FULL_BOTTOM_TOOLBAR = 1 << 4,
|
|
};
|
|
|
|
void ColourSchemeUpdate(WindowBase* window);
|
|
void ColourSchemeUpdateAll();
|
|
void ColourSchemeUpdateByClass(WindowBase* window, WindowClass classification);
|
|
|
|
void ThemeManagerInitialise();
|
|
void ThemeManagerLoadAvailableThemes();
|
|
size_t ThemeManagerGetNumAvailableThemes();
|
|
const utf8* ThemeManagerGetAvailableThemePath(size_t index);
|
|
const utf8* ThemeManagerGetAvailableThemeConfigName(size_t index);
|
|
const utf8* ThemeManagerGetAvailableThemeName(size_t index);
|
|
size_t ThemeManagerGetAvailableThemeIndex();
|
|
void ThemeManagerSetActiveAvailableTheme(size_t index);
|
|
size_t ThemeGetIndexForName(const utf8* name);
|
|
|
|
ColourWithFlags ThemeGetColour(WindowClass wc, uint8_t index);
|
|
void ThemeSetColour(WindowClass wc, uint8_t index, ColourWithFlags colour);
|
|
uint8_t ThemeGetFlags();
|
|
void ThemeSetFlags(uint8_t flags);
|
|
void ThemeSave();
|
|
void ThemeRename(const utf8* name);
|
|
void ThemeDuplicate(const utf8* name);
|
|
void ThemeDelete();
|
|
|
|
uint8_t ThemeDescGetNumColours(WindowClass wc);
|
|
StringId ThemeDescGetName(WindowClass wc);
|
|
} // namespace OpenRCT2::Ui
|