]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/stattext.h
changed wxUSE_DRAGIMAG to wxUSE_DRAGIMAGE and use it everywhere now
[wxWidgets.git] / include / wx / msw / stattext.h
index fd0f63d801d9057a7b49d562b78719e4e824d3ce..8c67921fe8c6872f5d80ce5114c1f5a66333954a 100644 (file)
@@ -27,25 +27,28 @@ DECLARE_DYNAMIC_CLASS(wxStaticText)
 public:
     wxStaticText() { }
 
-    wxStaticText(wxWindow *parent, wxWindowID id,
-        const wxString& label,
-        const wxPoint& pos = wxDefaultPosition,
-        const wxSize& size = wxDefaultSize,
-        long style = 0,
-        const wxString& name = wxStaticTextNameStr)
+    wxStaticText(wxWindow *parent,
+                 wxWindowID id,
+                 const wxString& label,
+                 const wxPoint& pos = wxDefaultPosition,
+                 const wxSize& size = wxDefaultSize,
+                 long style = 0,
+                 const wxString& name = wxStaticTextNameStr)
     {
         Create(parent, id, label, pos, size, style, name);
     }
 
-    bool Create(wxWindow *parent, wxWindowID id,
-        const wxString& label,
-        const wxPoint& pos = wxDefaultPosition,
-        const wxSize& size = wxDefaultSize,
-        long style = 0,
-        const wxString& name = wxStaticTextNameStr);
+    bool Create(wxWindow *parent,
+                wxWindowID id,
+                const wxString& label,
+                const wxPoint& pos = wxDefaultPosition,
+                const wxSize& size = wxDefaultSize,
+                long style = 0,
+                const wxString& name = wxStaticTextNameStr);
 
     // accessors
     void SetLabel(const wxString& label);
+    bool SetFont( const wxFont &font );
 
     // overriden base class virtuals
     virtual bool AcceptsFocus() const { return FALSE; }