#pragma hdrstop
#endif
+#if wxUSE_RADIOBOX
+
// for all others, include the necessary headers
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/sizer.h"
#include "widgets.h"
-#if 1
+
#include "icons/radiobox.xpm"
// ----------------------------------------------------------------------------
// control ids
enum
{
- RadioPage_Reset = 100,
+ RadioPage_Reset = wxID_HIGHEST,
RadioPage_Update,
RadioPage_Selection,
RadioPage_Label,
RadioPage_LabelBtn,
+ RadioPage_EnableItem,
+ RadioPage_ShowItem,
RadioPage_Radio
};
static const unsigned int DEFAULT_NUM_ENTRIES = 12;
static const unsigned int DEFAULT_MAJOR_DIM = 3;
+// this item is enabled/disabled shown/hidden by the test checkboxes
+static const int TEST_BUTTON = 1;
+
// ----------------------------------------------------------------------------
// RadioWidgetsPage
// ----------------------------------------------------------------------------
class RadioWidgetsPage : public WidgetsPage
{
public:
- RadioWidgetsPage(wxNotebook *notebook, wxImageList *imaglist);
+ RadioWidgetsPage(WidgetsBookCtrl *book, wxImageList *imaglist);
virtual ~RadioWidgetsPage(){};
+ virtual wxControl *GetWidget() const { return m_radio; }
+ virtual void RecreateWidget() { CreateRadio(); }
+
+ // lazy creation of the content
+ virtual void CreateContent();
+
protected:
// event handlers
void OnCheckOrRadioBox(wxCommandEvent& event);
void OnButtonSelection(wxCommandEvent& event);
void OnButtonSetLabel(wxCommandEvent& event);
+ void OnEnableItem(wxCommandEvent& event);
+ void OnShowItem(wxCommandEvent& event);
+
void OnUpdateUIReset(wxUpdateUIEvent& event);
void OnUpdateUIUpdate(wxUpdateUIEvent& event);
void OnUpdateUISelection(wxUpdateUIEvent& event);
+ void OnUpdateUIEnableItem(wxUpdateUIEvent& event);
+ void OnUpdateUIShowItem(wxUpdateUIEvent& event);
// reset the wxRadioBox parameters
void Reset();
// the check/radio boxes for styles
wxCheckBox *m_chkVert;
+ wxCheckBox *m_chkEnableItem;
+ wxCheckBox *m_chkShowItem;
wxRadioBox *m_radioDir;
// the gauge itself and the sizer it is in
EVT_RADIOBOX(RadioPage_Radio, RadioWidgetsPage::OnRadioBox)
+ EVT_CHECKBOX(RadioPage_EnableItem, RadioWidgetsPage::OnEnableItem)
+ EVT_CHECKBOX(RadioPage_ShowItem, RadioWidgetsPage::OnShowItem)
+
+ EVT_UPDATE_UI(RadioPage_EnableItem, RadioWidgetsPage::OnUpdateUIEnableItem)
+ EVT_UPDATE_UI(RadioPage_ShowItem, RadioWidgetsPage::OnUpdateUIShowItem)
+
EVT_CHECKBOX(wxID_ANY, RadioWidgetsPage::OnCheckOrRadioBox)
EVT_RADIOBOX(wxID_ANY, RadioWidgetsPage::OnCheckOrRadioBox)
END_EVENT_TABLE()
// implementation
// ============================================================================
-IMPLEMENT_WIDGETS_PAGE(RadioWidgetsPage, _T("Radio"));
+#if defined(__WXUNIVERSAL__)
+ #define FAMILY_CTRLS UNIVERSAL_CTRLS
+#else
+ #define FAMILY_CTRLS NATIVE_CTRLS
+#endif
-RadioWidgetsPage::RadioWidgetsPage(wxNotebook *notebook,
- wxImageList *imaglist)
- : WidgetsPage(notebook)
-{
- imaglist->Add(wxBitmap(radio_xpm));
+IMPLEMENT_WIDGETS_PAGE(RadioWidgetsPage, _T("Radio"),
+ FAMILY_CTRLS | WITH_ITEMS_CTRLS
+ );
+RadioWidgetsPage::RadioWidgetsPage(WidgetsBookCtrl *book,
+ wxImageList *imaglist)
+ : WidgetsPage(book, imaglist, radio_xpm)
+{
// init everything
m_chkVert = (wxCheckBox *)NULL;
+ m_chkEnableItem = (wxCheckBox *)NULL;
+ m_chkShowItem = (wxCheckBox *)NULL;
m_textNumBtns =
m_textLabelBtns =
m_radio =
m_radioDir = (wxRadioBox *)NULL;
m_sizerRadio = (wxSizer *)NULL;
+}
+void RadioWidgetsPage::CreateContent()
+{
wxSizer *sizerTop = new wxBoxSizer(wxHORIZONTAL);
// left pane
&m_textLabelBtns);
sizerMiddle->Add(sizerRow, 0, wxGROW | wxALL, 5);
+ m_chkEnableItem = CreateCheckBoxAndAddToSizer(sizerMiddle,
+ _T("Disable &2nd item"),
+ RadioPage_EnableItem);
+ m_chkShowItem = CreateCheckBoxAndAddToSizer(sizerMiddle,
+ _T("Hide 2nd &item"),
+ RadioPage_ShowItem);
+
// right pane
wxSizer *sizerRight = new wxBoxSizer(wxHORIZONTAL);
sizerRight->SetMinSize(150, 0);
m_textLabelBtns->SetValue(_T("item"));
m_chkVert->SetValue(false);
+ m_chkEnableItem->SetValue(true);
+ m_chkShowItem->SetValue(true);
m_radioDir->SetSelection(RadioDir_Default);
}
int flags = m_chkVert->GetValue() ? wxRA_VERTICAL
: wxRA_HORIZONTAL;
+ flags |= ms_defaultFlags;
+
#ifdef wxRA_LEFTTORIGHT
switch ( m_radioDir->GetSelection() )
{
m_sizerRadio->Add(m_radio, 1, wxGROW);
m_sizerRadio->Layout();
+
+ m_chkEnableItem->SetValue(true);
+ m_chkEnableItem->SetValue(true);
}
// ----------------------------------------------------------------------------
}
}
+void RadioWidgetsPage::OnEnableItem(wxCommandEvent& event)
+{
+ m_radio->Enable(TEST_BUTTON, event.IsChecked());
+}
+
+void RadioWidgetsPage::OnShowItem(wxCommandEvent& event)
+{
+ m_radio->Show(TEST_BUTTON, event.IsChecked());
+}
+
void RadioWidgetsPage::OnUpdateUIUpdate(wxUpdateUIEvent& event)
{
unsigned long n;
event.Enable(enable);
}
-#endif
+void RadioWidgetsPage::OnUpdateUIEnableItem(wxUpdateUIEvent& event)
+{
+ event.SetText(m_radio->IsItemEnabled(TEST_BUTTON) ? _T("Disable &2nd item")
+ : _T("Enable &2nd item"));
+}
+
+void RadioWidgetsPage::OnUpdateUIShowItem(wxUpdateUIEvent& event)
+{
+ event.SetText(m_radio->IsItemShown(TEST_BUTTON) ? _T("Hide 2nd &item")
+ : _T("Show 2nd &item"));
+}
+
+#endif // wxUSE_RADIOBOX