Example #1
0
bool wxHtmlHelpController::DisplayIndex()
{
    CreateHelpWindow();
    bool success = m_helpWindow->DisplayIndex();
    MakeModalIfNeeded();
    return success;
}
Example #2
0
bool wxHtmlHelpController::Display(const wxString& x)
{
    CreateHelpWindow();
    bool success = m_helpWindow->Display(x);
    MakeModalIfNeeded();
    return success;
}
Example #3
0
bool wxHtmlHelpControllerEx::Display(int id)
{
    CreateHelpWindow();
    bool success = m_helpWindow->Display(id);
    MakeModalIfNeeded();
    return success;
}
Example #4
0
bool wxHtmlHelpController::KeywordSearch(const wxString& keyword,
                                         wxHelpSearchMode mode)
{
    CreateHelpWindow();
    bool success = m_helpWindow->KeywordSearch(keyword, mode);
    MakeModalIfNeeded();
    return success;
}
Example #5
0
bool wxHtmlHelpControllerEx::KeywordSearch(const wxString& keyword
#if wxCHECK_VERSION(2,5,0)
        , wxHelpSearchMode mode
#endif
     )
{
    CreateHelpWindow();
    bool success = m_helpWindow->KeywordSearch(keyword
#if wxCHECK_VERSION(2,5,0)
        , mode
#endif
        );
    MakeModalIfNeeded();
    return success;
}