mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-20 15:23:56 -07:00
17 lines
369 B
C
17 lines
369 B
C
|
|
#ifndef COLOURDIALOG_H__
|
||
|
|
#define COLOURDIALOG_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 // COLOURDIALOG_H__
|