]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/hyperlink.h
Fix wxGCDC::Clear() for Cairo, and possibly MSW.
[wxWidgets.git] / interface / wx / hyperlink.h
index 1d2bb02c8a26a69be852b8a9076c4f11a31ba769..e22e9ea43a6db849a24a4bd473f60e51fcbfb738 100644 (file)
@@ -6,6 +6,12 @@
 // 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 +45,7 @@ public:
 };
 
 
+wxEventType wxEVT_COMMAND_HYPERLINK;
 
 /**
     @class wxHyperlinkCtrl
@@ -94,6 +101,8 @@ public:
 class wxHyperlinkCtrl : public wxControl
 {
 public:
+    wxHyperlinkCtrl();
+    
     /**
         Constructor. See Create() for more info.
     */