OpenCPN Partial API docs
Loading...
Searching...
No Matches
color_handler.h
1#include <wx/string.h>
2#include <wx/colour.h>
3
4#ifndef _COLOR_HANDLER_H
5#define _COLOR_HANDLER_H
6
7wxColour GetGlobalColor(wxString colorName);
12enum DialogColor {
13 DLG_BACKGROUND,
14 DLG_SELECTED_BACKGROUND,
15 DLG_UNSELECTED_BACKGROUND,
16 DLG_ACCENT,
17 DLG_SELECTED_ACCENT,
18 DLG_UNSELECTED_ACCENT,
19 DLG_TEXT,
20 DLG_HIGHLIGHT
21};
22
26wxColour GetDialogColor(DialogColor color);
27
28#endif // _COLOR_HANDLER_H