no real changes, just refactor/simplify the code to remove duplication and unnecessary casts

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52214 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-03-01 12:23:04 +00:00
parent 49b7574928
commit 0016bb3b1c
2 changed files with 91 additions and 84 deletions

View File

@@ -9,8 +9,8 @@
// Licence: wxWindows licence // Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
#ifndef _WX_HELPCHM_H_ #ifndef _WX_MSW_HELPCHM_H_
#define _WX_HELPCHM_H_ #define _WX_MSW_HELPCHM_H_
#if wxUSE_MS_HTML_HELP #if wxUSE_MS_HTML_HELP
@@ -45,10 +45,41 @@ public:
wxWindow *window); wxWindow *window);
protected: protected:
// Append extension if necessary. // get the name of the CHM file we use from our m_helpFile
wxString GetValidFilename(const wxString& file) const; wxString GetValidFilename() const;
// Call HtmlHelp() with the provided parameters (both overloads do the same
// thing but allow to avoid casts in the calling code) and return false
// (but don't crash) if HTML help is unavailable
static bool CallHtmlHelp(wxWindow *win, const wxChar *str,
unsigned cmd, WXWPARAM param);
static bool CallHtmlHelp(wxWindow *win, const wxChar *str,
unsigned cmd, const void *param = NULL)
{
return CallHtmlHelp(win, str, cmd, wx_reinterpret_cast(WPARAM, param));
}
// even simpler wrappers using GetParentWindow() and GetValidFilename() as
// the first 2 HtmlHelp() parameters
bool CallHtmlHelp(unsigned cmd, WXWPARAM param)
{
return CallHtmlHelp(GetParentWindow(), GetValidFilename().wx_str(),
cmd, param);
}
bool CallHtmlHelp(unsigned cmd, const void *param = NULL)
{
return CallHtmlHelp(cmd, wx_reinterpret_cast(WXWPARAM, param));
}
// wrapper around CallHtmlHelp(HH_DISPLAY_TEXT_POPUP): only one of text and
// contextId parameters can be non-NULL/non-zero
static bool DoDisplayTextPopup(const wxChar *text,
const wxPoint& pos,
int contextId,
wxWindow *window);
protected:
wxString m_helpFile; wxString m_helpFile;
DECLARE_CLASS(wxCHMHelpController) DECLARE_CLASS(wxCHMHelpController)
@@ -56,5 +87,4 @@ protected:
#endif // wxUSE_MS_HTML_HELP #endif // wxUSE_MS_HTML_HELP
#endif #endif // _WX_MSW_HELPCHM_H_
// _WX_HELPCHM_H_

View File

@@ -2,7 +2,7 @@
// Name: src/msw/helpchm.cpp // Name: src/msw/helpchm.cpp
// Purpose: Help system: MS HTML Help implementation // Purpose: Help system: MS HTML Help implementation
// Author: Julian Smart // Author: Julian Smart
// Modified by: // Modified by: Vadim Zeitlin at 2008-03-01: refactoring, simplification
// Created: 16/04/2000 // Created: 16/04/2000
// RCS-ID: $Id$ // RCS-ID: $Id$
// Copyright: (c) Julian Smart // Copyright: (c) Julian Smart
@@ -79,18 +79,6 @@ static HWND GetSuitableHWND(wxWindow *win)
return win ? GetHwndOf(win) : ::GetDesktopWindow(); return win ? GetHwndOf(win) : ::GetDesktopWindow();
} }
// wrap the real HtmlHelp() but just return false (and not crash) if it
// couldn't be loaded
//
// it also takes a wxWindow instead of HWND
static bool
CallHtmlHelpFunction(wxWindow *win, const wxChar *str, UINT uint, DWORD dword)
{
HTMLHELP htmlHelp = GetHtmlHelpFunction();
return htmlHelp &&
htmlHelp(GetSuitableHWND(win), str, uint, dword);
}
IMPLEMENT_DYNAMIC_CLASS(wxCHMHelpController, wxHelpControllerBase) IMPLEMENT_DYNAMIC_CLASS(wxCHMHelpController, wxHelpControllerBase)
@@ -110,15 +98,23 @@ bool wxCHMHelpController::LoadFile(const wxString& file)
return true; return true;
} }
/* static */ bool
wxCHMHelpController::CallHtmlHelp(wxWindow *win,
const wxChar *str,
unsigned cmd,
WXWPARAM param)
{
HTMLHELP htmlHelp = GetHtmlHelpFunction();
return htmlHelp && htmlHelp(GetSuitableHWND(win), str, cmd, param);
}
bool wxCHMHelpController::DisplayContents() bool wxCHMHelpController::DisplayContents()
{ {
if (m_helpFile.IsEmpty()) if (m_helpFile.IsEmpty())
return false; return false;
wxString str = GetValidFilename(m_helpFile); return CallHtmlHelp(HH_DISPLAY_TOPIC);
return CallHtmlHelpFunction(GetParentWindow(),
str.wx_str(), HH_DISPLAY_TOPIC, 0L);
} }
// Use topic or HTML filename // Use topic or HTML filename
@@ -127,15 +123,11 @@ bool wxCHMHelpController::DisplaySection(const wxString& section)
if (m_helpFile.IsEmpty()) if (m_helpFile.IsEmpty())
return false; return false;
wxString str = GetValidFilename(m_helpFile);
// Is this an HTML file or a keyword? // Is this an HTML file or a keyword?
if ( section.Find(wxT(".htm")) != wxNOT_FOUND ) if ( section.Find(wxT(".htm")) != wxNOT_FOUND )
{ {
// interpret as a file name // interpret as a file name
return CallHtmlHelpFunction(GetParentWindow(), return CallHtmlHelp(HH_DISPLAY_TOPIC, section.wx_str());
str.wx_str(), HH_DISPLAY_TOPIC,
wxPtrToUInt(section.c_str()));
} }
return KeywordSearch(section); return KeywordSearch(section);
@@ -147,36 +139,38 @@ bool wxCHMHelpController::DisplaySection(int section)
if (m_helpFile.IsEmpty()) if (m_helpFile.IsEmpty())
return false; return false;
wxString str = GetValidFilename(m_helpFile); return CallHtmlHelp(HH_HELP_CONTEXT, section);
}
return CallHtmlHelpFunction(GetParentWindow(), /* static */
str.wx_str(), HH_HELP_CONTEXT, (DWORD)section); bool
wxCHMHelpController::DoDisplayTextPopup(const wxChar *text,
const wxPoint& pos,
int contextId,
wxWindow *window)
{
HH_POPUP popup;
popup.cbStruct = sizeof(popup);
popup.hinst = (HINSTANCE) wxGetInstance();
popup.idString = contextId;
popup.pszText = text;
popup.pt.x = pos.x;
popup.pt.y = pos.y;
popup.clrForeground =
popup.clrBackground = (COLORREF)-1;
popup.rcMargins.top =
popup.rcMargins.left =
popup.rcMargins.right =
popup.rcMargins.bottom = -1;
popup.pszFont = NULL;
return CallHtmlHelp(window, NULL, HH_DISPLAY_TEXT_POPUP, &popup);
} }
bool wxCHMHelpController::DisplayContextPopup(int contextId) bool wxCHMHelpController::DisplayContextPopup(int contextId)
{ {
if (m_helpFile.IsEmpty()) return false; return DoDisplayTextPopup(NULL, wxGetMousePosition(), contextId,
GetParentWindow());
wxString str = GetValidFilename(m_helpFile);
// We also have to specify the popups file (default is cshelp.txt).
// str += wxT("::/cshelp.txt");
HH_POPUP popup;
popup.cbStruct = sizeof(popup);
popup.hinst = (HINSTANCE) wxGetInstance();
popup.idString = contextId ;
GetCursorPos(& popup.pt);
popup.clrForeground = (COLORREF)-1;
popup.clrBackground = (COLORREF)-1;
popup.rcMargins.top = popup.rcMargins.left = popup.rcMargins.right = popup.rcMargins.bottom = -1;
popup.pszFont = NULL;
popup.pszText = NULL;
return CallHtmlHelpFunction(GetParentWindow(),
str.wx_str(), HH_DISPLAY_TEXT_POPUP,
wxPtrToUInt(&popup));
} }
bool bool
@@ -190,19 +184,7 @@ bool wxCHMHelpController::ShowContextHelpPopup(const wxString& text,
const wxPoint& pos, const wxPoint& pos,
wxWindow *window) wxWindow *window)
{ {
HH_POPUP popup; return DoDisplayTextPopup(text.wx_str(), pos, 0, window);
popup.cbStruct = sizeof(popup);
popup.hinst = (HINSTANCE) wxGetInstance();
popup.idString = 0 ;
popup.pt.x = pos.x; popup.pt.y = pos.y;
popup.clrForeground = (COLORREF)-1;
popup.clrBackground = (COLORREF)-1;
popup.rcMargins.top = popup.rcMargins.left = popup.rcMargins.right = popup.rcMargins.bottom = -1;
popup.pszFont = NULL;
popup.pszText = text.wx_str();
return CallHtmlHelpFunction(window, NULL, HH_DISPLAY_TEXT_POPUP,
wxPtrToUInt(&popup));
} }
bool wxCHMHelpController::DisplayBlock(long block) bool wxCHMHelpController::DisplayBlock(long block)
@@ -216,33 +198,28 @@ bool wxCHMHelpController::KeywordSearch(const wxString& k,
if (m_helpFile.IsEmpty()) if (m_helpFile.IsEmpty())
return false; return false;
wxString str = GetValidFilename(m_helpFile);
HH_AKLINK link; HH_AKLINK link;
link.cbStruct = sizeof(HH_AKLINK) ; link.cbStruct = sizeof(HH_AKLINK);
link.fReserved = FALSE ; link.fReserved = FALSE;
link.pszKeywords = k.c_str() ; link.pszKeywords = k.wx_str();
link.pszUrl = NULL ; link.pszUrl = NULL;
link.pszMsgText = NULL ; link.pszMsgText = NULL;
link.pszMsgTitle = NULL ; link.pszMsgTitle = NULL;
link.pszWindow = NULL ; link.pszWindow = NULL;
link.fIndexOnFail = TRUE ; link.fIndexOnFail = TRUE;
return CallHtmlHelpFunction(GetParentWindow(), return CallHtmlHelp(HH_KEYWORD_LOOKUP, &link);
str.wx_str(), HH_KEYWORD_LOOKUP,
wxPtrToUInt(&link));
} }
bool wxCHMHelpController::Quit() bool wxCHMHelpController::Quit()
{ {
return CallHtmlHelpFunction(GetParentWindow(), NULL, HH_CLOSE_ALL, 0L); return CallHtmlHelp(NULL, HH_CLOSE_ALL);
} }
// Append extension if necessary. wxString wxCHMHelpController::GetValidFilename() const
wxString wxCHMHelpController::GetValidFilename(const wxString& file) const
{ {
wxString path, name, ext; wxString path, name, ext;
wxSplitPath(file, & path, & name, & ext); wxSplitPath(m_helpFile, &path, &name, &ext);
wxString fullName; wxString fullName;
if (path.IsEmpty()) if (path.IsEmpty())