Moved wxHtmlHelpFrame functionality to wxHtmlHelpWindow to allow
for embedded and modal help git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36802 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
94
include/wx/html/helpdlg.h
Normal file
94
include/wx/html/helpdlg.h
Normal file
@@ -0,0 +1,94 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: helpdlg.h
|
||||
// Purpose: wxHtmlHelpDialog
|
||||
// Notes: Based on htmlhelp.cpp, implementing a monolithic
|
||||
// HTML Help controller class, by Vaclav Slavik
|
||||
// Author: Harm van der Heijden, Vaclav Slavik, Julian Smart
|
||||
// RCS-ID: $Id$
|
||||
// Copyright: (c) Harm van der Heijden, Vaclav Slavik, Julian Smart
|
||||
// Licence: wxWidgets licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_HELPDLG_H_
|
||||
#define _WX_HELPDLG_H_
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma interface "helpdlgex.h"
|
||||
#endif
|
||||
|
||||
#include "wx/defs.h"
|
||||
|
||||
#if wxUSE_WXHTML_HELP
|
||||
|
||||
#include "wx/html/helpdata.h"
|
||||
#include "wx/window.h"
|
||||
#include "wx/frame.h"
|
||||
#include "wx/config.h"
|
||||
#include "wx/splitter.h"
|
||||
#include "wx/notebook.h"
|
||||
#include "wx/listbox.h"
|
||||
#include "wx/choice.h"
|
||||
#include "wx/combobox.h"
|
||||
#include "wx/checkbox.h"
|
||||
#include "wx/stattext.h"
|
||||
#include "wx/html/htmlwin.h"
|
||||
#include "wx/html/helpwin.h"
|
||||
#include "wx/html/htmprint.h"
|
||||
|
||||
class WXDLLIMPEXP_HTML wxHtmlHelpController;
|
||||
class WXDLLIMPEXP_HTML wxHtmlHelpWindow;
|
||||
|
||||
class WXDLLIMPEXP_HTML wxHtmlHelpDialog : public wxDialog
|
||||
{
|
||||
DECLARE_DYNAMIC_CLASS(wxHtmlHelpDialog)
|
||||
|
||||
public:
|
||||
wxHtmlHelpDialog(wxHtmlHelpData* data = NULL) { Init(data); }
|
||||
wxHtmlHelpDialog(wxWindow* parent, wxWindowID wxWindowID,
|
||||
const wxString& title = wxEmptyString,
|
||||
int style = wxHF_DEFAULT_STYLE, wxHtmlHelpData* data = NULL);
|
||||
~wxHtmlHelpDialog();
|
||||
|
||||
bool Create(wxWindow* parent, wxWindowID id, const wxString& title = wxEmptyString,
|
||||
int style = wxHF_DEFAULT_STYLE);
|
||||
|
||||
/// Returns the data associated with this dialog.
|
||||
wxHtmlHelpData* GetData() { return m_Data; }
|
||||
|
||||
/// Returns the controller that created this dialog.
|
||||
wxHtmlHelpController* GetController() const { return m_helpController; }
|
||||
|
||||
/// Sets the controller associated with this dialog.
|
||||
void SetController(wxHtmlHelpController* controller) { m_helpController = controller; }
|
||||
|
||||
/// Returns the help window.
|
||||
wxHtmlHelpWindow* GetHelpWindow() const { return m_HtmlHelpWin; }
|
||||
|
||||
// Sets format of title of the frame. Must contain exactly one "%s"
|
||||
// (for title of displayed HTML page)
|
||||
void SetTitleFormat(const wxString& format);
|
||||
|
||||
// Override to add custom buttons to the toolbar
|
||||
virtual void AddToolbarButtons(wxToolBar* WXUNUSED(toolBar), int WXUNUSED(style)) {};
|
||||
|
||||
protected:
|
||||
void Init(wxHtmlHelpData* data = NULL);
|
||||
|
||||
void OnCloseWindow(wxCloseEvent& event);
|
||||
|
||||
protected:
|
||||
// Temporary pointer to pass to window
|
||||
wxHtmlHelpData* m_Data;
|
||||
wxString m_TitleFormat; // title of the help frame
|
||||
wxHtmlHelpWindow *m_HtmlHelpWin;
|
||||
wxHtmlHelpController* m_helpController;
|
||||
|
||||
DECLARE_EVENT_TABLE()
|
||||
DECLARE_NO_COPY_CLASS(wxHtmlHelpDialog)
|
||||
};
|
||||
|
||||
#endif
|
||||
// wxUSE_WXHTML_HELP
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user