Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
39 lines (31 sloc)
781 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef __BOOLEANCONFIGITEMGUI | |
#define __BOOLEANCONFIGITEMGUI | |
#include <wx/wx.h> | |
#include <wx/panel.h> | |
#include <wx/checkbox.h> | |
// Statsgen Includes | |
#include "WindowIDs.h" | |
#include "BaseConfigItemGUI.h" | |
class BooleanConfigItemGUI : public BaseConfigItemGUI | |
{ | |
public: | |
BooleanConfigItemGUI(); | |
virtual ~BooleanConfigItemGUI(); | |
void OnTextChange(wxCommandEvent& event); | |
void SetConfigKey(wxString &configKeyIn); | |
void SetLabelWidth(int width); | |
int GetLabelWidth(); | |
void Set(wxString &configKeyIn, | |
wxString &labelText, | |
wxString &defaultValueIn); | |
void OnResize(wxSizeEvent &event); | |
wxString GetValue(); | |
protected: | |
private: | |
wxCheckBox textEdit; | |
wxStaticText label; | |
wxString labelText; | |
wxString defaultValue; | |
DECLARE_EVENT_TABLE() | |
}; | |
#endif |