Displaying 1 result from an estimated 1 matches for "wxhl_align_centr".
Did you mean:
wxhl_align_centre
2007 Jun 26
0
[1081] trunk/wxruby2: Added HyperlinkCtrl from the 2.8 API plus event mappings
...+%include "../common.i"
+
+%module(directors="1") wxHyperlinkCtrl
+GC_MANAGE_AS_WINDOW(wxHyperlinkCtrl);
+
+%{
+#include <wx/hyperlink.h>
+%}
+
+#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)
+
+%ignore wxHyperlinkCtrl::wxHyperlinkCtrl();
+
+%import "include/wxObject.h"
+%import "include/wxEvtHandler.h"
+%import "include/wxWindow.h"
+%import "include/wxContr...