Added wxWinceHelpController
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21924 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -5,7 +5,12 @@
|
||||
|
||||
#include "wx/helpbase.h"
|
||||
|
||||
#ifdef __WXMSW__
|
||||
#ifdef __WXWINCE__
|
||||
#include "wx/msw/wince/helpwce.h"
|
||||
|
||||
#define wxHelpController wxWinceHelpController
|
||||
#define sm_classwxHelpController sm_classwxWinceHelpController
|
||||
#elif defined(__WXMSW__)
|
||||
#include "wx/msw/helpwin.h"
|
||||
|
||||
#define wxHelpController wxWinHelpController
|
||||
|
62
include/wx/msw/wince/helpwce.h
Normal file
62
include/wx/msw/wince/helpwce.h
Normal file
@@ -0,0 +1,62 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: helpwce.h
|
||||
// Purpose: Help system: Windows CE help implementation
|
||||
// Author: Julian Smart
|
||||
// Modified by:
|
||||
// Created: 2003-07-12
|
||||
// RCS-ID: $Id$
|
||||
// Copyright: (c) Julian Smart
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_HELPWCE_H_
|
||||
#define _WX_HELPWCE_H_
|
||||
|
||||
#ifdef __GNUG__
|
||||
#pragma interface "helpwce.cpp"
|
||||
#endif
|
||||
|
||||
#if wxUSE_HELP
|
||||
|
||||
#include "wx/helpbase.h"
|
||||
|
||||
class WXDLLEXPORT wxWinceHelpController : public wxHelpControllerBase
|
||||
{
|
||||
public:
|
||||
wxWinceHelpController() { }
|
||||
virtual ~wxWinceHelpController();
|
||||
|
||||
// Must call this to set the filename
|
||||
virtual bool Initialize(const wxString& file);
|
||||
|
||||
// If file is "", reloads file given in Initialize
|
||||
virtual bool LoadFile(const wxString& file = wxEmptyString);
|
||||
virtual bool DisplayContents();
|
||||
virtual bool DisplaySection(int sectionNo);
|
||||
virtual bool DisplaySection(const wxString& section);
|
||||
virtual bool DisplayBlock(long blockNo);
|
||||
virtual bool DisplayContextPopup(int contextId);
|
||||
virtual bool DisplayTextPopup(const wxString& text, const wxPoint& pos);
|
||||
virtual bool KeywordSearch(const wxString& k);
|
||||
virtual bool Quit();
|
||||
|
||||
wxString GetHelpFile() const { return m_helpFile; }
|
||||
|
||||
protected:
|
||||
// Append extension if necessary.
|
||||
wxString GetValidFilename(const wxString& file) const;
|
||||
|
||||
// View topic, or just the HTML file
|
||||
bool ViewURL(const wxString& topic = wxEmptyString);
|
||||
|
||||
protected:
|
||||
wxString m_helpFile;
|
||||
|
||||
DECLARE_CLASS(wxWinceHelpController)
|
||||
};
|
||||
|
||||
#endif // wxUSE_MS_HTML_HELP
|
||||
|
||||
#endif
|
||||
// _WX_HELPWCE_H_
|
||||
|
@@ -380,7 +380,7 @@
|
||||
#define wxUSE_SOCKETS 0
|
||||
|
||||
// Set to 1 to enable virtual file systems (required by wxHTML)
|
||||
#define wxUSE_FILESYSTEM 0
|
||||
#define wxUSE_FILESYSTEM 1
|
||||
|
||||
// Set to 1 to enable virtual ZIP filesystem (requires wxUSE_FILESYSTEM)
|
||||
#define wxUSE_FS_ZIP 0
|
||||
@@ -843,7 +843,7 @@
|
||||
|
||||
#define wxUSE_IPC 0
|
||||
// 0 for no interprocess comms
|
||||
#define wxUSE_HELP 0
|
||||
#define wxUSE_HELP 1
|
||||
// 0 for no help facility
|
||||
#define wxUSE_MS_HTML_HELP 0
|
||||
// 0 for no MS HTML Help
|
||||
|
Reference in New Issue
Block a user