forked from mirrors/0ad
397a350e45
Territories: Fixed memory leaks. Atlas: New section-toolbar. Fixed colour of brush grid. Moved open/save into File menu. Added 3D-ish lighting control. Added 'busy' notifications. This was SVN commit r4079.
48 lines
1.0 KiB
C++
48 lines
1.0 KiB
C++
//#include "wx/tglbtn.h"
|
|
|
|
class ITool;
|
|
class SectionLayout;
|
|
|
|
class ToolButton : public wxButton
|
|
{
|
|
public:
|
|
ToolButton(wxWindow *parent, const wxString& label, const wxString& toolName, const wxSize& size = wxDefaultSize, long style = 0);
|
|
|
|
void SetSelectedAppearance(bool selected);
|
|
|
|
protected:
|
|
void OnClick(wxCommandEvent& evt);
|
|
|
|
private:
|
|
wxString m_Tool;
|
|
bool m_Selected;
|
|
|
|
DECLARE_EVENT_TABLE();
|
|
};
|
|
|
|
class ToolButtonBar : public wxToolBar
|
|
{
|
|
public:
|
|
ToolButtonBar(wxWindow* parent, SectionLayout* sectionLayout, int baseID);
|
|
void AddToolButton(const wxString& shortLabel, const wxString& longLabel,
|
|
const wxString& iconPNGFilename, const wxString& toolName, const wxString& sectionPage);
|
|
|
|
protected:
|
|
void OnTool(wxCommandEvent& evt);
|
|
|
|
private:
|
|
int m_Id;
|
|
int m_Size;
|
|
struct Button
|
|
{
|
|
Button() {}
|
|
Button(const wxString& name, const wxString& sectionPage) : name(name), sectionPage(sectionPage) {}
|
|
wxString name;
|
|
wxString sectionPage;
|
|
};
|
|
std::map<int, Button> m_Buttons;
|
|
SectionLayout* m_SectionLayout;
|
|
|
|
DECLARE_EVENT_TABLE();
|
|
};
|