git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5514
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// event handlers (these functions should _not_ be virtual)
void OnQuit(wxCommandEvent& event);
// event handlers (these functions should _not_ be virtual)
void OnQuit(wxCommandEvent& event);
- void OnAbout(wxCommandEvent& event);
+ void OnPageOpen(wxCommandEvent& event);
void OnBack(wxCommandEvent& event);
void OnForward(wxCommandEvent& event);
void OnBack(wxCommandEvent& event);
void OnForward(wxCommandEvent& event);
{
// menu items
Minimal_Quit = 1,
{
// menu items
Minimal_Quit = 1,
Minimal_Back,
Minimal_Forward,
Minimal_Back,
Minimal_Forward,
// simple menu events like this the static method is much simpler.
BEGIN_EVENT_TABLE(MyFrame, wxFrame)
EVT_MENU(Minimal_Quit, MyFrame::OnQuit)
// simple menu events like this the static method is much simpler.
BEGIN_EVENT_TABLE(MyFrame, wxFrame)
EVT_MENU(Minimal_Quit, MyFrame::OnQuit)
- EVT_MENU(Minimal_About, MyFrame::OnAbout)
+ EVT_MENU(Minimal_PageOpen, MyFrame::OnPageOpen)
EVT_MENU(Minimal_Back, MyFrame::OnBack)
EVT_MENU(Minimal_Forward, MyFrame::OnForward)
END_EVENT_TABLE()
EVT_MENU(Minimal_Back, MyFrame::OnBack)
EVT_MENU(Minimal_Forward, MyFrame::OnForward)
END_EVENT_TABLE()
wxMenu *menuFile = new wxMenu;
wxMenu *menuNav = new wxMenu;
wxMenu *menuFile = new wxMenu;
wxMenu *menuNav = new wxMenu;
- menuFile->Append(Minimal_About, "&Load wxWindows manual page");
+ menuFile->Append(Minimal_PageOpen, "&Open HTML page...");
menuFile->AppendSeparator();
menuFile->Append(Minimal_Quit, "&Close frame");
menuNav->Append(Minimal_Back, "Go &BACK");
menuFile->AppendSeparator();
menuFile->Append(Minimal_Quit, "&Close frame");
menuNav->Append(Minimal_Back, "Go &BACK");
- void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
+ void MyFrame::OnPageOpen(wxCommandEvent& WXUNUSED(event))
- m_Html -> LoadPage("fft.html");
+ wxString p = wxFileSelector("Open HTML document", "", "", "", "HTML files|*.htm");
+ if (p != wxEmptyString)
+ m_Html -> LoadPage(p);