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

Lines Matching refs:MyFrame

74 class MyFrame: public wxFrame
77 MyFrame();
78 virtual ~MyFrame();
104 DECLARE_NO_COPY_CLASS(MyFrame)
152 MyFrame* frame = new MyFrame;
160 // MyFrame
163 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
164 EVT_MENU(SPLIT_VERTICAL, MyFrame::SplitVertical)
165 EVT_MENU(SPLIT_HORIZONTAL, MyFrame::SplitHorizontal)
166 EVT_MENU(SPLIT_UNSPLIT, MyFrame::Unsplit)
167 EVT_MENU(SPLIT_LIVE, MyFrame::ToggleLive)
168 EVT_MENU(SPLIT_SETPOSITION, MyFrame::SetPosition)
169 EVT_MENU(SPLIT_SETMINSIZE, MyFrame::SetMinSize)
170 EVT_MENU(SPLIT_SETGRAVITY, MyFrame::SetGravity)
171 EVT_MENU(SPLIT_REPLACE, MyFrame::Replace)
173 EVT_MENU(SPLIT_QUIT, MyFrame::Quit)
175 EVT_UPDATE_UI(SPLIT_VERTICAL, MyFrame::UpdateUIVertical)
176 EVT_UPDATE_UI(SPLIT_HORIZONTAL, MyFrame::UpdateUIHorizontal)
177 EVT_UPDATE_UI(SPLIT_UNSPLIT, MyFrame::UpdateUIUnsplit)
181 MyFrame::MyFrame()
264 MyFrame::~MyFrame()
274 void MyFrame::Quit(wxCommandEvent& WXUNUSED(event) )
279 void MyFrame::SplitHorizontal(wxCommandEvent& WXUNUSED(event) )
293 void MyFrame::SplitVertical(wxCommandEvent& WXUNUSED(event) )
307 void MyFrame::Unsplit(wxCommandEvent& WXUNUSED(event) )
316 void MyFrame::ToggleLive(wxCommandEvent& event )
327 void MyFrame::SetPosition(wxCommandEvent& WXUNUSED(event) )
347 void MyFrame::SetMinSize(wxCommandEvent& WXUNUSED(event) )
362 void MyFrame::SetGravity(wxCommandEvent& WXUNUSED(event) )
378 void MyFrame::Replace(wxCommandEvent& WXUNUSED(event) )
395 void MyFrame::UpdateUIHorizontal(wxUpdateUIEvent& event)
400 void MyFrame::UpdateUIVertical(wxUpdateUIEvent& event)
405 void MyFrame::UpdateUIUnsplit(wxUpdateUIEvent& event)