forked from mirrors/0ad
b755ddefda
make include guards consistent. This was SVN commit r5040.
19 lines
410 B
C++
19 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
|