Files
wxWidgets/src/msw/helpwin.cpp
Vadim Zeitlin 3f66f6a5b3 Remove all lines containing cvs/svn "$Id$" keyword.
This keyword is not expanded by Git which means it's not replaced with the
correct revision value in the releases made using git-based scripts and it's
confusing to have lines with unexpanded "$Id$" in the released files. As
expanding them with Git is not that simple (it could be done with git archive
and export-subst attribute) and there are not many benefits in having them in
the first place, just remove all these lines.

If nothing else, this will make an eventual transition to Git simpler.

Closes #14487.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2013-07-26 16:02:46 +00:00

127 lines
3.1 KiB
C++

/////////////////////////////////////////////////////////////////////////////
// Name: src/msw/helpwin.cpp
// Purpose: Help system: WinHelp implementation
// Author: Julian Smart
// Modified by:
// Created: 04/01/98
// Copyright: (c) Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#if wxUSE_HELP
#ifndef WX_PRECOMP
#endif
#include "wx/filename.h"
#include "wx/msw/helpwin.h"
#include <time.h>
#ifdef __WXMSW__
#include "wx/msw/private.h"
#endif
#include <string.h>
static HWND GetSuitableHWND(wxWinHelpController* controller)
{
if (controller->GetParentWindow())
return (HWND) controller->GetParentWindow()->GetHWND();
else if (wxTheApp->GetTopWindow())
return (HWND) wxTheApp->GetTopWindow()->GetHWND();
else
return GetDesktopWindow();
}
IMPLEMENT_DYNAMIC_CLASS(wxWinHelpController, wxHelpControllerBase)
bool wxWinHelpController::Initialize(const wxString& filename)
{
m_helpFile = filename;
return true;
}
bool wxWinHelpController::LoadFile(const wxString& file)
{
if (!file.empty())
m_helpFile = file;
return true;
}
bool wxWinHelpController::DisplayContents(void)
{
if (m_helpFile.empty()) return false;
wxString str = GetValidFilename(m_helpFile);
return (WinHelp(GetSuitableHWND(this), str.t_str(), HELP_FINDER, 0L) != 0);
}
bool wxWinHelpController::DisplaySection(int section)
{
// Use context number
if (m_helpFile.empty()) return false;
wxString str = GetValidFilename(m_helpFile);
return (WinHelp(GetSuitableHWND(this), str.t_str(), HELP_CONTEXT, (DWORD)section) != 0);
}
bool wxWinHelpController::DisplayContextPopup(int contextId)
{
if (m_helpFile.empty()) return false;
wxString str = GetValidFilename(m_helpFile);
return (WinHelp(GetSuitableHWND(this), str.t_str(), HELP_CONTEXTPOPUP, (DWORD) contextId) != 0);
}
bool wxWinHelpController::DisplayBlock(long block)
{
DisplaySection(block);
return true;
}
bool wxWinHelpController::KeywordSearch(const wxString& k,
wxHelpSearchMode WXUNUSED(mode))
{
if (m_helpFile.empty()) return false;
wxString str = GetValidFilename(m_helpFile);
return WinHelp(GetSuitableHWND(this), str.t_str(), HELP_PARTIALKEY,
(ULONG_PTR)wxMSW_CONV_LPCTSTR(k)) != 0;
}
// Can't close the help window explicitly in WinHelp
bool wxWinHelpController::Quit(void)
{
return WinHelp(GetSuitableHWND(this), 0, HELP_QUIT, 0) != 0;
}
// Append extension if necessary.
wxString wxWinHelpController::GetValidFilename(const wxString& file) const
{
wxString path, name, ext;
wxFileName::SplitPath(file, & path, & name, & ext);
wxString fullName;
if (path.empty())
fullName = name + wxT(".hlp");
else if (path.Last() == wxT('\\'))
fullName = path + name + wxT(".hlp");
else
fullName = path + wxT("\\") + name + wxT(".hlp");
return fullName;
}
#endif // wxUSE_HELP