X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0f159c531e431c58e6301d1b636390223ce05d8c..0dfb2393ddd200cb698351dbd44590898590d8c1:/samples/controls/controls.cpp diff --git a/samples/controls/controls.cpp b/samples/controls/controls.cpp index 653a78f1b8..6db8d56732 100644 --- a/samples/controls/controls.cpp +++ b/samples/controls/controls.cpp @@ -8,10 +8,6 @@ // Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ - #pragma implementation "controls.h" -#endif - // For compilers that support precompilation, includes "wx/wx.h". #include "wx/wxprec.h" @@ -97,6 +93,8 @@ public: void OnComboButtons( wxCommandEvent &event ); void OnRadio( wxCommandEvent &event ); void OnRadioButtons( wxCommandEvent &event ); + void OnRadioButton1( wxCommandEvent &event ); + void OnRadioButton2( wxCommandEvent &event ); void OnSetFont( wxCommandEvent &event ); void OnPageChanged( wxNotebookEvent &event ); void OnPageChanging( wxNotebookEvent &event ); @@ -464,6 +462,8 @@ EVT_BUTTON (ID_RADIOBOX_SEL_NUM, MyPanel::OnRadioButtons) EVT_BUTTON (ID_RADIOBOX_SEL_STR, MyPanel::OnRadioButtons) EVT_BUTTON (ID_RADIOBOX_FONT, MyPanel::OnRadioButtons) EVT_CHECKBOX (ID_RADIOBOX_ENABLE, MyPanel::OnRadioButtons) +EVT_RADIOBUTTON(ID_RADIOBUTTON_1, MyPanel::OnRadioButton1) +EVT_RADIOBUTTON(ID_RADIOBUTTON_2, MyPanel::OnRadioButton2) EVT_BUTTON (ID_SET_FONT, MyPanel::OnSetFont) EVT_SLIDER (ID_SLIDER, MyPanel::OnSliderUpdate) #if wxUSE_SPINBTN @@ -574,9 +574,11 @@ MyPanel::MyPanel( wxFrame *frame, int x, int y, int w, int h ) }; // fill the image list - wxImageList *imagelist = new wxImageList(32, 32); + wxBitmap bmp(list_xpm); + + wxImageList *imagelist = new wxImageList(bmp.GetWidth(), bmp.GetHeight()); - imagelist-> Add( wxBitmap( list_xpm )); + imagelist-> Add( bmp ); imagelist-> Add( wxBitmap( choice_xpm )); imagelist-> Add( wxBitmap( combo_xpm )); imagelist-> Add( wxBitmap( text_xpm )); @@ -981,7 +983,7 @@ void MyPanel::OnTestButton(wxCommandEvent& event) event.GetId() == ID_BUTTON_TEST1 ? _T('1') : _T('2')); } -void MyPanel::OnBmpButton(wxCommandEvent& event) +void MyPanel::OnBmpButton(wxCommandEvent& WXUNUSED(event)) { wxLogMessage(_T("Bitmap button clicked.")); } @@ -1288,6 +1290,16 @@ void MyPanel::OnRadio( wxCommandEvent &event ) m_text->AppendText( _T("\n") ); } +void MyPanel::OnRadioButton1( wxCommandEvent & WXUNUSED(event) ) +{ + wxMessageBox(_T("First wxRadioButton selected."), _T("wxControl sample")); +} + +void MyPanel::OnRadioButton2( wxCommandEvent & WXUNUSED(event) ) +{ + m_text->AppendText(_T("Second wxRadioButton selected.\n")); +} + void MyPanel::OnRadioButtons( wxCommandEvent &event ) { switch (event.GetId()) @@ -1551,7 +1563,9 @@ MyFrame::MyFrame(const wxChar *title, int x, int y) // The wxICON() macros loads an icon from a resource under Windows // and uses an #included XPM image under GTK+ and Motif +#ifdef USE_XPM SetIcon( wxICON(mondrian) ); +#endif wxMenu *file_menu = new wxMenu; @@ -1607,7 +1621,7 @@ void MyFrame::OnClearLog(wxCommandEvent& WXUNUSED(event)) } #if wxUSE_TOOLTIPS -void MyFrame::OnSetTooltipDelay(wxCommandEvent& event) +void MyFrame::OnSetTooltipDelay(wxCommandEvent& WXUNUSED(event)) { static long s_delay = 5000; @@ -1628,7 +1642,7 @@ void MyFrame::OnSetTooltipDelay(wxCommandEvent& event) wxLogStatus(this, _T("Tooltip delay set to %ld milliseconds"), s_delay); } -void MyFrame::OnToggleTooltips(wxCommandEvent& event) +void MyFrame::OnToggleTooltips(wxCommandEvent& WXUNUSED(event)) { static bool s_enabled = TRUE;