]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/univ/stattext.h
In MSWUniv wxWindow and wxWindowMSW are different classes so we can't access some...
[wxWidgets.git] / include / wx / univ / stattext.h
index 2de8c76d1050bc6ba5af4fcd78bcc9a420310bd3..95de78f9ef9c97e020b51b894e720eb429eef08d 100644 (file)
@@ -6,26 +6,28 @@
 // Created:     14.08.00
 // RCS-ID:      $Id$
 // Copyright:   (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_UNIV_STATTEXT_H_
 #define _WX_UNIV_STATTEXT_H_
 
-#ifdef __GNUG__
-    #pragma interface "stattext.h"
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
+    #pragma interface "univstattext.h"
 #endif
 
 class WXDLLEXPORT wxStaticText : public wxStaticTextBase
 {
 public:
+    wxStaticText() { }
+
     // usual ctor
     wxStaticText(wxWindow *parent,
                  const wxString& label,
                  const wxPoint& pos = wxDefaultPosition,
                  const wxSize& size = wxDefaultSize)
     {
-        Create(parent, -1, label, pos, size, 0, wxStaticTextNameStr);
+        Create(parent, wxID_ANY, label, pos, size, 0, wxStaticTextNameStr);
     }
 
     // full form
@@ -53,6 +55,8 @@ public:
 
     virtual void SetLabel(const wxString& label);
 
+    virtual bool IsFocused() const { return false; }
+
 protected:
     // calculate the optimal size for the label
     virtual wxSize DoGetBestClientSize() const;