mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 14:53:56 -07:00
18 lines
410 B
C++
18 lines
410 B
C++
#ifndef INCLUDED_COLOURDIALOG
|
|
#define INCLUDED_COLOURDIALOG
|
|
|
|
#include <wx/colordlg.h>
|
|
|
|
class ColourDialog : public wxColourDialog
|
|
{
|
|
public:
|
|
// Typical customColourConfigPath would be "Scenario Editor/LightingColour"
|
|
ColourDialog(wxWindow* parent, const wxString& customColourConfigPath, const wxColour& defaultColour);
|
|
|
|
int ShowModal();
|
|
|
|
private:
|
|
wxString m_ConfigPath;
|
|
};
|
|
|
|
#endif // INCLUDED_COLOURDIALOG
|