+ wxStaticLine( wxWindow* pParent
+ ,wxWindowID vId = wxID_ANY
+ ,const wxPoint& rPos = wxDefaultPosition
+ ,const wxSize& rSize = wxDefaultSize
+ ,long lStyle = wxLI_HORIZONTAL
+ ,const wxString& rsName = wxStaticLineNameStr
+ )
+ {
+ Create(pParent, vId, rPos, rSize, lStyle, rsName);
+ }
+
+ bool Create( wxWindow* pParent
+ ,wxWindowID vId = wxID_ANY
+ ,const wxPoint& rPos = wxDefaultPosition
+ ,const wxSize& rSize = wxDefaultSize
+ ,long lStyle = wxLI_HORIZONTAL
+ ,const wxString& rsName = wxStaticLineNameStr
+ );
+
+ inline bool IsVertical(void) const { return((GetWindowStyleFlag() & wxLI_VERTICAL) != 0); }
+ inline static int GetDefaultSize(void) { return 2; }