X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b815cf68d24508ab76ace1ef439a6d4feffbd487..9e9574fe45b176ee74bba8fad7574cf9906145d1:/interface/wx/hyperlink.h diff --git a/interface/wx/hyperlink.h b/interface/wx/hyperlink.h index 1d2bb02c8a..de28dd31a5 100644 --- a/interface/wx/hyperlink.h +++ b/interface/wx/hyperlink.h @@ -2,10 +2,15 @@ // Name: hyperlink.h // Purpose: interface of wxHyperlinkEvent // Author: wxWidgets team -// RCS-ID: $Id$ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// +#define wxHL_CONTEXTMENU 0x0001 +#define wxHL_ALIGN_LEFT 0x0002 +#define wxHL_ALIGN_RIGHT 0x0004 +#define wxHL_ALIGN_CENTRE 0x0008 +#define wxHL_DEFAULT_STYLE (wxHL_CONTEXTMENU|wxNO_BORDER|wxHL_ALIGN_CENTRE) + /** @class wxHyperlinkEvent @@ -39,6 +44,7 @@ public: }; +wxEventType wxEVT_HYPERLINK; /** @class wxHyperlinkCtrl @@ -87,13 +93,15 @@ public: @library{wxadv} @category{ctrl} - @appearance{hyperlinkctrl.png} + @appearance{hyperlinkctrl} @see wxURL, wxHyperlinkEvent */ class wxHyperlinkCtrl : public wxControl { public: + wxHyperlinkCtrl(); + /** Constructor. See Create() for more info. */