bool MyApp::OnInit()
{
+#if wxUSE_HELP
+ wxHelpProvider::Set( new wxSimpleHelpProvider );
+#endif
+
// Create the main window
MyFrame *frame = new MyFrame();
{
wxPanel *panel = new wxPanel(parent);
+#if wxUSE_HELP
+ panel->SetHelpText( wxT( "Panel with a Button" ) );
+#endif
+
(void) new wxButton( panel, wxID_ANY, wxT("Button"),
wxPoint(10, 10), wxDefaultSize );
{
wxPanel *panel = new wxPanel(parent);
+#if wxUSE_HELP
+ panel->SetHelpText( wxT( "Panel with some Radio Buttons" ) );
+#endif
+
wxString animals[] = { wxT("Fox"), wxT("Hare"), wxT("Rabbit"),
wxT("Sabre-toothed tiger"), wxT("T Rex") };
{
wxPanel *panel = new wxPanel(parent);
+#if wxUSE_HELP
+ panel->SetHelpText( wxT( "An empty panel" ) );
+#endif
+
(void) new wxStaticText( panel, wxID_ANY,
wxT("This page intentionally left blank"), wxPoint(10, 10) );
{
wxPanel *panel = new wxPanel(parent);
+#if wxUSE_HELP
+ panel->SetHelpText( wxT( "Panel with a maximized button" ) );
+#endif
+
wxButton *buttonBig = new wxButton(panel, wxID_ANY, wxT("Maximized button"));
wxBoxSizer *sizerPanel = new wxBoxSizer(wxVERTICAL);
{
wxPanel *panel = new wxPanel(parent);
+#if wxUSE_HELP
+ panel->SetHelpText( wxT( "Maroon panel" ) );
+#endif
+
panel->SetBackgroundColour( wxColour( wxT("MAROON") ) );
(void) new wxStaticText( panel, wxID_ANY,
wxT("This page has been inserted, not added."), wxPoint(10, 10) );
}
MyFrame::MyFrame()
- : wxFrame(NULL, wxID_ANY, wxString(wxT("wxWidgets book controls sample")))
+ : wxFrame(NULL, wxID_ANY, wxString(wxT("wxWidgets book controls sample")))
{
+#if wxUSE_HELP
+ SetExtraStyle(wxFRAME_EX_CONTEXTHELP);
+#endif // wxUSE_HELP
+
#if wxUSE_NOTEBOOK
m_type = Type_Notebook;
#elif wxUSE_CHOICEBOOK
#endif
wxMenu *menuOperations = new wxMenu;
+#if wxUSE_HELP
+ menuOperations->Append(ID_CONTEXT_HELP, wxT("&Context help\tCtrl-F1"));
+#endif // wxUSE_HELP
menuOperations->Append(ID_HITTEST, wxT("&Hit test\tCtrl-H"));
wxMenu *menuFile = new wxMenu;
EVT_MENU(ID_DELETE_LAST_PAGE, MyFrame::OnDeleteLastPage)
EVT_MENU(ID_NEXT_PAGE, MyFrame::OnNextPage)
+#if wxUSE_HELP
+ EVT_MENU(ID_CONTEXT_HELP, MyFrame::OnContextHelp)
+#endif // wxUSE_HELP
EVT_MENU(ID_HITTEST, MyFrame::OnHitTest)
// Book controls
EVT_IDLE(MyFrame::OnIdle)
END_EVENT_TABLE()
+#if wxUSE_HELP
+
+void MyFrame::OnContextHelp(wxCommandEvent& WXUNUSED(event))
+{
+ // launches local event loop
+ wxContextHelp ch( this );
+}
+
+#endif // wxUSE_HELP
+
void MyFrame::AddFlagStrIfFlagPresent(wxString & flagStr, long flags, long flag, const wxChar * flagName) const
{
if( (flags & flag) == flag )
{
wxPanel *panel = new wxPanel(m_bookCtrl, wxID_ANY );
+#if wxUSE_HELP
+ panel->SetHelpText( wxT( "Panel with \"First\" and \"Second\" buttons" ) );
+#endif
+
(void) new wxButton(panel, wxID_ANY, wxT("First button"), wxPoint(10, 10));
(void) new wxButton(panel, wxID_ANY, wxT("Second button"), wxPoint(50, 100));