mirror of
https://github.com/sebastiandine/Card-Collection-Manager-3.git
synced 2026-08-28 17:01:02 +00:00
34 lines
976 B
C++
34 lines
976 B
C++
#pragma once
|
|
|
|
#include "ccm/domain/Enums.hpp"
|
|
|
|
#include <wx/colour.h>
|
|
|
|
class wxDialog;
|
|
class wxWindow;
|
|
class wxString;
|
|
class wxTextCtrl;
|
|
|
|
namespace ccm::ui {
|
|
|
|
struct ThemePalette {
|
|
wxColour windowBg;
|
|
wxColour panelBg;
|
|
wxColour text;
|
|
wxColour inputBg;
|
|
wxColour inputText;
|
|
wxColour buttonBg;
|
|
wxColour buttonText;
|
|
};
|
|
|
|
ThemePalette paletteForTheme(Theme theme);
|
|
Theme inferThemeFromWindow(const wxWindow* window);
|
|
void applyThemeToWindowTree(wxWindow* root, const ThemePalette& palette, Theme theme);
|
|
// Force palette colors onto a text input (incl. MSW dark-mode typed-text fix).
|
|
void applyPaletteToTextCtrl(wxTextCtrl* text, const ThemePalette& palette, Theme theme);
|
|
void themeModalDialog(wxDialog* dlg, Theme theme);
|
|
int showThemedMessageDialog(wxWindow* parent, const wxString& message, const wxString& caption, long style);
|
|
int showThemedConfirmDialog(wxWindow* parent, const wxString& message, const wxString& caption);
|
|
|
|
} // namespace ccm::ui
|