0ad/source/tools/atlas/AtlasUI/CustomControls/ColourDialog/ColourDialog.h
janwas b755ddefda remove all author/modified by tags.
make include guards consistent.

This was SVN commit r5040.
2007-05-07 16:33:24 +00:00

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