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

Lines Matching refs:MyFrame

107 class MyFrame : public wxFrame
111 MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size);
236 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
237 EVT_MENU(HelpDemo_Quit, MyFrame::OnQuit)
238 EVT_MENU(HelpDemo_Help_Index, MyFrame::OnHelp)
239 EVT_MENU(HelpDemo_Help_Classes, MyFrame::OnHelp)
240 EVT_MENU(HelpDemo_Help_Functions, MyFrame::OnHelp)
241 EVT_MENU(HelpDemo_Help_Help, MyFrame::OnHelp)
242 EVT_MENU(HelpDemo_Help_Search, MyFrame::OnHelp)
243 EVT_MENU(HelpDemo_Help_ContextHelp, MyFrame::OnShowContextHelp)
244 EVT_MENU(HelpDemo_Help_DialogContextHelp, MyFrame::OnShowDialogContextHelp)
246 EVT_MENU(HelpDemo_Advanced_Html_Help_Index, MyFrame::OnAdvancedHtmlHelp)
247 EVT_MENU(HelpDemo_Advanced_Html_Help_Classes, MyFrame::OnAdvancedHtmlHelp)
248 EVT_MENU(HelpDemo_Advanced_Html_Help_Functions, MyFrame::OnAdvancedHtmlHelp)
249 EVT_MENU(HelpDemo_Advanced_Html_Help_Help, MyFrame::OnAdvancedHtmlHelp)
250 EVT_MENU(HelpDemo_Advanced_Html_Help_Search, MyFrame::OnAdvancedHtmlHelp)
252 EVT_MENU(HelpDemo_Advanced_Html_Help_Modal, MyFrame::OnModalHtmlHelp)
256 EVT_MENU(HelpDemo_MS_Html_Help_Index, MyFrame::OnMSHtmlHelp)
257 EVT_MENU(HelpDemo_MS_Html_Help_Classes, MyFrame::OnMSHtmlHelp)
258 EVT_MENU(HelpDemo_MS_Html_Help_Functions, MyFrame::OnMSHtmlHelp)
259 EVT_MENU(HelpDemo_MS_Html_Help_Help, MyFrame::OnMSHtmlHelp)
260 EVT_MENU(HelpDemo_MS_Html_Help_Search, MyFrame::OnMSHtmlHelp)
264 EVT_MENU(HelpDemo_Best_Help_Index, MyFrame::OnBestHelp)
267 EVT_MENU(HelpDemo_Help_KDE, MyFrame::OnHelp)
268 EVT_MENU(HelpDemo_Help_GNOME, MyFrame::OnHelp)
269 EVT_MENU(HelpDemo_Help_Netscape, MyFrame::OnHelp)
312 MyFrame *frame = new MyFrame(_T("HelpDemo wxWidgets App"),
389 MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
485 void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
491 void MyFrame::OnHelp(wxCommandEvent& event)
496 void MyFrame::OnShowContextHelp(wxCommandEvent& WXUNUSED(event))
503 void MyFrame::OnShowDialogContextHelp(wxCommandEvent& WXUNUSED(event))
509 void MyFrame::OnAdvancedHtmlHelp(wxCommandEvent& event)
517 void MyFrame::OnMSHtmlHelp(wxCommandEvent& event)
524 void MyFrame::OnBestHelp(wxCommandEvent& event)
531 void MyFrame::OnModalHtmlHelp(wxCommandEvent& WXUNUSED(event))
604 void MyFrame::ShowHelp(int commandId, wxHelpControllerBase& helpController)