]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/univ/stattext.h
don't use m_instanceAsWindow to convert dialog units, it's not fully constructed...
[wxWidgets.git] / include / wx / univ / stattext.h
index 810aa35869399ed03bbd130108541a36f564c4f8..0961ba67ab5a5a3787a44729ac5c8a2d9f61abc2 100644 (file)
@@ -6,13 +6,13 @@
 // 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__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma interface "univstattext.h"
 #endif
 
@@ -27,7 +27,7 @@ public:
                  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
@@ -55,8 +55,10 @@ public:
 
     virtual void SetLabel(const wxString& label);
 
-    virtual bool HasTransparentBackground() { return TRUE; }
-    
+    virtual bool HasTransparentBackground() { return true; }
+
+    virtual bool IsFocused() const { return false; }
+
 protected:
     // calculate the optimal size for the label
     virtual wxSize DoGetBestClientSize() const;