]> git.saurik.com Git - wxWidgets.git/commitdiff
adding xti info for commandlinkbutton
authorStefan Csomor <csomor@advancedconcepts.ch>
Sat, 8 Jan 2011 06:39:51 +0000 (06:39 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sat, 8 Jan 2011 06:39:51 +0000 (06:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66647 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/commandlinkbuttong.cpp

index 287bd7a46cc0eefbb6745e68c76fdaaba99fc512..1df2b547b6777fd18a676f2f3a856b89fa5e752f 100644 (file)
 
 wxIMPLEMENT_DYNAMIC_CLASS_XTI(wxCommandLinkButton, wxButton, "wx/commandlinkbutton.h")
 
+wxDEFINE_FLAGS( wxCommandLinkButtonStyle )
+wxBEGIN_FLAGS( wxCommandLinkButtonStyle )
+// new style border flags, we put them first to
+// use them for streaming out
+wxFLAGS_MEMBER(wxBORDER_SIMPLE)
+wxFLAGS_MEMBER(wxBORDER_SUNKEN)
+wxFLAGS_MEMBER(wxBORDER_DOUBLE)
+wxFLAGS_MEMBER(wxBORDER_RAISED)
+wxFLAGS_MEMBER(wxBORDER_STATIC)
+wxFLAGS_MEMBER(wxBORDER_NONE)
+
+// old style border flags
+wxFLAGS_MEMBER(wxSIMPLE_BORDER)
+wxFLAGS_MEMBER(wxSUNKEN_BORDER)
+wxFLAGS_MEMBER(wxDOUBLE_BORDER)
+wxFLAGS_MEMBER(wxRAISED_BORDER)
+wxFLAGS_MEMBER(wxSTATIC_BORDER)
+wxFLAGS_MEMBER(wxBORDER)
+
+// standard window styles
+wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
+wxFLAGS_MEMBER(wxCLIP_CHILDREN)
+wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
+wxFLAGS_MEMBER(wxWANTS_CHARS)
+wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
+wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
+wxFLAGS_MEMBER(wxVSCROLL)
+wxFLAGS_MEMBER(wxHSCROLL)
+
+wxFLAGS_MEMBER(wxBU_AUTODRAW)
+wxFLAGS_MEMBER(wxBU_LEFT)
+wxFLAGS_MEMBER(wxBU_RIGHT)
+wxFLAGS_MEMBER(wxBU_TOP)
+wxFLAGS_MEMBER(wxBU_BOTTOM)
+wxEND_FLAGS( wxCommandLinkButtonStyle )
+
+wxBEGIN_PROPERTIES_TABLE(wxCommandLinkButton)
+wxPROPERTY( MainLabel, wxString, SetMainLabel, GetMainLabel, wxString(), \
+           0 /*flags*/, wxT("The main label"), wxT("group") )
+
+wxPROPERTY( Note, wxString, SetNote, GetNote, wxString(), \
+           0 /*flags*/, wxT("The link URL"), wxT("group") )
+wxPROPERTY_FLAGS( WindowStyle, wxCommandLinkButtonStyle, long, SetWindowStyleFlag, \
+                 GetWindowStyleFlag, wxEMPTY_PARAMETER_VALUE, 0 /*flags*/,     \
+                 wxT("The link style"), wxT("group")) // style
+wxEND_PROPERTIES_TABLE()
+
+wxEMPTY_HANDLERS_TABLE(wxCommandLinkButton)
+
+wxCONSTRUCTOR_7( wxCommandLinkButton, wxWindow*, Parent, wxWindowID, Id, wxString, \
+                MainLabel, wxString, Note, wxPoint, Position, wxSize, Size, long, WindowStyle )
+
 // ----------------------------------------------------------------------------
 // Generic command link button
 // ----------------------------------------------------------------------------