1 /////////////////////////////////////////////////////////////////////////////
 
   3 // Purpose:     Context sensitive help classes, and etc.
 
   7 // Created:     28-July-2001
 
   9 // Copyright:   (c) 2001 by Total Control Software
 
  10 // Licence:     wxWindows license
 
  11 /////////////////////////////////////////////////////////////////////////////
 
  15 //---------------------------------------------------------------------------
 
  21 //----------------------------------------------------------------------
 
  24     wxFRAME_EX_CONTEXTHELP,
 
  25     wxDIALOG_EX_CONTEXTHELP,
 
  27 %constant wxEventType wxEVT_HELP;
 
  28 %constant wxEventType wxEVT_DETAILED_HELP;
 
  32 EVT_HELP = wx.PyEventBinder( wxEVT_HELP, 1)
 
  33 EVT_HELP_RANGE = wx.PyEventBinder(  wxEVT_HELP, 2)
 
  34 EVT_DETAILED_HELP = wx.PyEventBinder( wxEVT_DETAILED_HELP, 1)
 
  35 EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
 
  38 //----------------------------------------------------------------------
 
  41 "A help event is sent when the user has requested context-sensitive
 
  42 help. This can either be caused by the application requesting
 
  43 context-sensitive help mode via wx.ContextHelp, or (on MS Windows) by
 
  44 the system generating a WM_HELP message when the user pressed F1 or
 
  45 clicked on the query button in a dialog caption.
 
  47 A help event is sent to the window that the user clicked on, and is
 
  48 propagated up the window hierarchy until the event is processed or
 
  49 there are no more event handlers. The application should call
 
  50 event.GetId to check the identity of the clicked-on window, and then
 
  51 either show some suitable help or call event.Skip if the identifier is
 
  52 unrecognised. Calling Skip is important because it allows wxWindows to
 
  53 generate further events for ancestors of the clicked-on
 
  54 window. Otherwise it would be impossible to show help for container
 
  55 windows, since processing would stop after the first window found.",
 
  60     ==============      =========================================
 
  61     EVT_HELP            Sent when the user has requested context-
 
  63     EVT_HELP_RANGE      Allows to catch EVT_HELP for a range of IDs
 
  64     ==============      =========================================
 
  66 :see: `wx.ContextHelp`, `wx.ContextHelpButton`
 
  70 class wxHelpEvent : public wxCommandEvent
 
  74         wxHelpEvent(wxEventType type = wxEVT_NULL,
 
  76                     const wxPoint& pt = wxDefaultPosition),
 
  81         const wxPoint , GetPosition() const,
 
  82         "Returns the left-click position of the mouse, in screen
 
  83 coordinates. This allows the application to position the help
 
  87         void , SetPosition(const wxPoint& pos),
 
  88         "Sets the left-click position of the mouse, in screen coordinates.", "");
 
  92         const wxString& , GetLink() const,
 
  93         "Get an optional link to further help", "");
 
  96         void , SetLink(const wxString& link),
 
  97         "Set an optional link to further help", "");
 
 101         const wxString& , GetTarget() const,
 
 102         "Get an optional target to display help in. E.g. a window specification", "");
 
 105         void , SetTarget(const wxString& target),
 
 106         "Set an optional target to display help in. E.g. a window specification", "");
 
 110 //---------------------------------------------------------------------------
 
 113 DocStr(wxContextHelp,
 
 114 "This class changes the cursor to a query and puts the application into
 
 115 a 'context-sensitive help mode'. When the user left-clicks on a window
 
 116 within the specified window, a ``EVT_HELP`` event is sent to that
 
 117 control, and the application may respond to it by popping up some
 
 120 There are a couple of ways to invoke this behaviour implicitly:
 
 122     * Use the wx.DIALOG_EX_CONTEXTHELP extended style for a dialog
 
 123       (Windows only). This will put a question mark in the titlebar,
 
 124       and Windows will put the application into context-sensitive help
 
 125       mode automatically, with further programming.
 
 127     * Create a `wx.ContextHelpButton`, whose predefined behaviour is
 
 128       to create a context help object. Normally you will write your
 
 129       application so that this button is only added to a dialog for
 
 130       non-Windows platforms (use ``wx.DIALOG_EX_CONTEXTHELP`` on
 
 133 :see: `wx.ContextHelpButton`
 
 136 MustHaveApp(wxContextHelp);
 
 138 class wxContextHelp : public wxObject {
 
 141         wxContextHelp(wxWindow* window = NULL, bool doNow = true),
 
 142         "Constructs a context help object, calling BeginContextHelp if doNow is
 
 145 If window is None, the top window is used.", "");
 
 150         bool , BeginContextHelp(wxWindow* window = NULL),
 
 151         "Puts the application into context-sensitive help mode. window is the
 
 152 window which will be used to catch events; if NULL, the top window
 
 155 Returns true if the application was successfully put into
 
 156 context-sensitive help mode. This function only returns when the event
 
 157 loop has finished.", "");
 
 160         bool , EndContextHelp(),
 
 161         "Ends context-sensitive help mode. Not normally called by the
 
 167 //----------------------------------------------------------------------
 
 169 DocStr(wxContextHelpButton,
 
 170 "Instances of this class may be used to add a question mark button that
 
 171 when pressed, puts the application into context-help mode. It does
 
 172 this by creating a wx.ContextHelp object which itself generates a
 
 173 ``EVT_HELP`` event when the user clicks on a window.
 
 175 On Windows, you may add a question-mark icon to a dialog by use of the
 
 176 ``wx.DIALOG_EX_CONTEXTHELP`` extra style, but on other platforms you
 
 177 will have to add a button explicitly, usually next to OK, Cancel or
 
 180 :see: `wx.ContextHelp`, `wx.ContextHelpButton`
 
 183 MustHaveApp(wxContextHelpButton);
 
 185 class wxContextHelpButton : public wxBitmapButton {
 
 187     %pythonAppend wxContextHelpButton "self._setOORInfo(self)"
 
 190         wxContextHelpButton(wxWindow* parent, wxWindowID id = wxID_CONTEXT_HELP,
 
 191                             const wxPoint& pos = wxDefaultPosition,
 
 192                             const wxSize& size = wxDefaultSize,
 
 193                             long style = wxBU_AUTODRAW),
 
 194         "Constructor, creating and showing a context help button.", "");
 
 198 //----------------------------------------------------------------------
 
 200 DocStr(wxHelpProvider,
 
 201 "wx.HelpProvider is an abstract class used by a program
 
 202 implementing context-sensitive help to show the help text for the
 
 205 The current help provider must be explicitly set by the
 
 206 application using wx.HelpProvider.Set().", "");
 
 211     %disownarg( wxHelpProvider *helpProvider );
 
 214         static wxHelpProvider *, Set(wxHelpProvider *helpProvider),
 
 215         "Sset the current, application-wide help provider. Returns the previous
 
 216 one.  Unlike some other classes, the help provider is not created on
 
 217 demand. This must be explicitly done by the application.", "");
 
 218     %cleardisown( wxHelpProvider *helpProvider );
 
 221         static wxHelpProvider *, Get(),
 
 222         "Return the current application-wide help provider.", "");
 
 226         wxString , GetHelp(const wxWindow *window),
 
 227         "Gets the help string for this window. Its interpretation is dependent
 
 228 on the help provider except that empty string always means that no
 
 229 help is associated with the window.", "");
 
 232         bool , ShowHelp(wxWindow *window),
 
 233         "Shows help for the given window. Uses GetHelp internally if
 
 234 applicable. Returns True if it was done, or False if no help was
 
 235 available for this window.", "");
 
 238         void , AddHelp(wxWindow *window, const wxString& text),
 
 239         "Associates the text with the given window.", "");
 
 242         void , AddHelp(wxWindowID id, const wxString& text),
 
 243         "This version associates the given text with all windows with this
 
 244 id. May be used to set the same help string for all Cancel buttons in
 
 245 the application, for example.", "",
 
 249         void , RemoveHelp(wxWindow* window),
 
 250         "Removes the association between the window pointer and the help
 
 251 text. This is called by the wx.Window destructor. Without this, the
 
 252 table of help strings will fill up and when window pointers are
 
 253 reused, the wrong help string will be found.", "");
 
 256     %pythonAppend Destroy "args[0].thisown = 0"
 
 257     %extend { void Destroy() { delete self; } }
 
 261 //----------------------------------------------------------------------
 
 263 DocStr(wxSimpleHelpProvider,
 
 264 "wx.SimpleHelpProvider is an implementation of `wx.HelpProvider` which
 
 265 supports only plain text help strings, and shows the string associated
 
 266 with the control (if any) in a tooltip.", "");
 
 268 class wxSimpleHelpProvider : public wxHelpProvider
 
 271     wxSimpleHelpProvider();
 
 275 //----------------------------------------------------------------------
 
 277 // TODO: Add this once the wxHelpController is in wxPython...
 
 279 //  class WXDLLEXPORT wxHelpControllerHelpProvider : public wxSimpleHelpProvider
 
 282 //      wxHelpControllerHelpProvider(wxHelpController* hc = NULL);
 
 283 //      void SetHelpController(wxHelpController* hc);
 
 284 //      wxHelpController* GetHelpController();
 
 290 //----------------------------------------------------------------------
 
 291 //---------------------------------------------------------------------------