Implemented wxHelpContext for wxGTK.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8276 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2000-09-06 16:44:17 +00:00
parent 61b64bd92a
commit 68237521ed
2 changed files with 179 additions and 1 deletions

View File

@@ -100,9 +100,18 @@ public:
bool ProcessHelpMessage(WXMSG* wxmsg, const wxCursor& cursor, wxWindow* win);
#endif
#ifdef __WXGTK__
void SetStatus(bool status, const wxPoint& pt) { m_status = status; m_mousePos = pt; }
#endif
protected:
bool m_inHelp;
#ifdef __WXGTK__
bool m_status; // The user left-clicked
wxPoint m_mousePos;
#endif
};
#endif // wxUSE_HELP