• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/controls/

Lines Matching refs:MyPanel

72 class MyPanel: public wxPanel
75 MyPanel(wxFrame *frame, int x, int y, int w, int h);
76 virtual ~MyPanel();
201 MyPanel *GetPanel() const { return m_panel; }
222 MyPanel *m_panel;
414 // MyPanel
492 BEGIN_EVENT_TABLE(MyPanel, wxPanel)
493 EVT_IDLE ( MyPanel::OnIdle)
494 EVT_BOOKCTRL_PAGE_CHANGING(ID_BOOK, MyPanel::OnPageChanging)
495 EVT_BOOKCTRL_PAGE_CHANGED(ID_BOOK, MyPanel::OnPageChanged)
496 EVT_LISTBOX (ID_LISTBOX, MyPanel::OnListBox)
497 EVT_LISTBOX (ID_LISTBOX_SORTED, MyPanel::OnListBox)
498 EVT_LISTBOX_DCLICK(ID_LISTBOX, MyPanel::OnListBoxDoubleClick)
499 EVT_BUTTON (ID_LISTBOX_SEL_NUM, MyPanel::OnListBoxButtons)
500 EVT_BUTTON (ID_LISTBOX_SEL_STR, MyPanel::OnListBoxButtons)
501 EVT_BUTTON (ID_LISTBOX_CLEAR, MyPanel::OnListBoxButtons)
502 EVT_BUTTON (ID_LISTBOX_APPEND, MyPanel::OnListBoxButtons)
503 EVT_BUTTON (ID_LISTBOX_DELETE, MyPanel::OnListBoxButtons)
504 EVT_BUTTON (ID_LISTBOX_FONT, MyPanel::OnListBoxButtons)
505 EVT_CHECKBOX (ID_LISTBOX_ENABLE, MyPanel::OnListBoxButtons)
507 EVT_CHOICE (ID_CHOICE, MyPanel::OnChoice)
508 EVT_CHOICE (ID_CHOICE_SORTED, MyPanel::OnChoice)
509 EVT_BUTTON (ID_CHOICE_SEL_NUM, MyPanel::OnChoiceButtons)
510 EVT_BUTTON (ID_CHOICE_SEL_STR, MyPanel::OnChoiceButtons)
511 EVT_BUTTON (ID_CHOICE_CLEAR, MyPanel::OnChoiceButtons)
512 EVT_BUTTON (ID_CHOICE_APPEND, MyPanel::OnChoiceButtons)
513 EVT_BUTTON (ID_CHOICE_DELETE, MyPanel::OnChoiceButtons)
514 EVT_BUTTON (ID_CHOICE_FONT, MyPanel::OnChoiceButtons)
515 EVT_CHECKBOX (ID_CHOICE_ENABLE, MyPanel::OnChoiceButtons)
517 EVT_COMBOBOX (ID_COMBO, MyPanel::OnCombo)
518 EVT_TEXT (ID_COMBO, MyPanel::OnComboTextChanged)
519 EVT_TEXT_ENTER(ID_COMBO, MyPanel::OnComboTextEnter)
520 EVT_BUTTON (ID_COMBO_SEL_NUM, MyPanel::OnComboButtons)
521 EVT_BUTTON (ID_COMBO_SEL_STR, MyPanel::OnComboButtons)
522 EVT_BUTTON (ID_COMBO_CLEAR, MyPanel::OnComboButtons)
523 EVT_BUTTON (ID_COMBO_APPEND, MyPanel::OnComboButtons)
524 EVT_BUTTON (ID_COMBO_DELETE, MyPanel::OnComboButtons)
525 EVT_BUTTON (ID_COMBO_FONT, MyPanel::OnComboButtons)
526 EVT_BUTTON (ID_COMBO_SET_TEXT, MyPanel::OnComboButtons)
527 EVT_CHECKBOX (ID_COMBO_ENABLE, MyPanel::OnComboButtons)
528 EVT_RADIOBOX (ID_RADIOBOX, MyPanel::OnRadio)
529 EVT_BUTTON (ID_RADIOBOX_SEL_NUM, MyPanel::OnRadioButtons)
530 EVT_BUTTON (ID_RADIOBOX_SEL_STR, MyPanel::OnRadioButtons)
531 EVT_BUTTON (ID_RADIOBOX_FONT, MyPanel::OnRadioButtons)
532 EVT_CHECKBOX (ID_RADIOBOX_ENABLE, MyPanel::OnRadioButtons)
533 EVT_RADIOBUTTON(ID_RADIOBUTTON_1, MyPanel::OnRadioButton1)
534 EVT_RADIOBUTTON(ID_RADIOBUTTON_2, MyPanel::OnRadioButton2)
535 EVT_BUTTON (ID_SET_FONT, MyPanel::OnSetFont)
537 EVT_SLIDER (ID_SLIDER, MyPanel::OnSliderUpdate)
540 EVT_SPIN (ID_SPIN, MyPanel::OnSpinUpdate)
541 EVT_SPIN_UP (ID_SPIN, MyPanel::OnSpinUp)
542 EVT_SPIN_DOWN (ID_SPIN, MyPanel::OnSpinDown)
544 EVT_UPDATE_UI (ID_BTNPROGRESS, MyPanel::OnUpdateShowProgress)
545 EVT_BUTTON (ID_BTNPROGRESS, MyPanel::OnShowProgress)
549 EVT_SPINCTRL (ID_SPINCTRL, MyPanel::OnSpinCtrl)
550 EVT_SPIN_UP (ID_SPINCTRL, MyPanel::OnSpinCtrlUp)
551 EVT_SPIN_DOWN (ID_SPINCTRL, MyPanel::OnSpinCtrlDown)
552 EVT_TEXT (ID_SPINCTRL, MyPanel::OnSpinCtrlText)
554 EVT_BUTTON (ID_BTNNEWTEXT, MyPanel::OnNewText)
555 EVT_TOGGLEBUTTON(ID_BUTTON_LABEL, MyPanel::OnUpdateLabel)
556 EVT_CHECKBOX (ID_CHANGE_COLOUR, MyPanel::OnChangeColour)
557 EVT_BUTTON (ID_BUTTON_TEST1, MyPanel::OnTestButton)
558 EVT_BUTTON (ID_BUTTON_TEST2, MyPanel::OnTestButton)
559 EVT_BUTTON (ID_BITMAP_BTN, MyPanel::OnBmpButton)
560 EVT_TOGGLEBUTTON(ID_BITMAP_BTN_ENABLE, MyPanel::OnBmpButtonToggle)
562 EVT_CHECKBOX (ID_SIZER_CHECK1, MyPanel::OnSizerCheck)
563 EVT_CHECKBOX (ID_SIZER_CHECK2, MyPanel::OnSizerCheck)
564 EVT_CHECKBOX (ID_SIZER_CHECK3, MyPanel::OnSizerCheck)
565 EVT_CHECKBOX (ID_SIZER_CHECK4, MyPanel::OnSizerCheck)
566 EVT_CHECKBOX (ID_SIZER_CHECK14, MyPanel::OnSizerCheck)
567 EVT_CHECKBOX (ID_SIZER_CHECKBIG, MyPanel::OnSizerCheck)
597 MyPanel::MyPanel( wxFrame *frame, int x, int y, int w, int h )
1073 void MyPanel::OnIdle(wxIdleEvent& event)
1113 void MyPanel::OnPageChanging( wxBookCtrlEvent &event )
1136 void MyPanel::OnPageChanged( wxBookCtrlEvent &event )
1143 void MyPanel::OnTestButton(wxCommandEvent& event)
1149 void MyPanel::OnBmpButton(wxCommandEvent& WXUNUSED(event))
1154 void MyPanel::OnBmpButtonToggle(wxCommandEvent& event)
1159 void MyPanel::OnChangeColour(wxCommandEvent& WXUNUSED(event))
1186 void MyPanel::OnListBox( wxCommandEvent &event )
1227 void MyPanel::OnListBoxDoubleClick( wxCommandEvent &event )
1234 void MyPanel::OnListBoxButtons( wxCommandEvent &event )
1314 void MyPanel::OnChoice( wxCommandEvent &event )
1335 void MyPanel::OnChoiceButtons( wxCommandEvent &event )
1389 void MyPanel::OnCombo( wxCommandEvent &event )
1401 void MyPanel::OnComboTextChanged(wxCommandEvent& event)
1409 void MyPanel::OnComboTextEnter(wxCommandEvent& WXUNUSED(event))
1416 void MyPanel::OnComboButtons( wxCommandEvent &event )
1464 void MyPanel::OnRadio( wxCommandEvent &event )
1471 void MyPanel::OnRadioButton1( wxCommandEvent & WXUNUSED(event) )
1476 void MyPanel::OnRadioButton2( wxCommandEvent & WXUNUSED(event) )
1481 void MyPanel::OnRadioButtons( wxCommandEvent &event )
1503 void MyPanel::OnSetFont( wxCommandEvent &WXUNUSED(event) )
1509 void MyPanel::OnUpdateLabel( wxCommandEvent &event )
1517 void MyPanel::OnSliderUpdate( wxCommandEvent &WXUNUSED(event) )
1529 void MyPanel::OnSpinCtrlText(wxCommandEvent& event)
1540 void MyPanel::OnSpinCtrl(wxSpinEvent& event)
1551 void MyPanel::OnSpinCtrlUp(wxSpinEvent& event)
1561 void MyPanel::OnSpinCtrlDown(wxSpinEvent& event)
1574 void MyPanel::OnSpinUp( wxSpinEvent &event )
1590 void MyPanel::OnSpinDown( wxSpinEvent &event )
1606 void MyPanel::OnSpinUpdate( wxSpinEvent &event )
1619 void MyPanel::OnNewText( wxCommandEvent& /* event */)
1628 void MyPanel::OnUpdateShowProgress( wxUpdateUIEvent& event )
1633 void MyPanel::OnShowProgress( wxCommandEvent& WXUNUSED(event) )
1686 void MyPanel::OnSizerCheck( wxCommandEvent &event)
1717 MyPanel::~MyPanel()
1796 m_panel = new MyPanel( this, 10, 10, 300, 100 );