]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/gdiobj.h
Added IsDynamic to XTI
[wxWidgets.git] / include / wx / gtk1 / gdiobj.h
index 23e4077cc7cda6a753615df9ced5f5daf39da07d..4a35500f3ff85e66b5c054b179fb15e00c945311 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        gdiobj.h
+// Name:        wx/gtk1/gdiobj.h
 // Purpose:
 // Author:      Robert Roebling
 // Id:          $Id$
@@ -7,17 +7,12 @@
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-
 #ifndef __GDIOBJH__
 #define __GDIOBJH__
 
 #include "wx/object.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-class wxGDIObject : public wxObject
+class WXDLLIMPEXP_CORE wxGDIObject : public wxObject
 {
 public:
     inline wxGDIObject() { m_visible = FALSE; };
@@ -26,6 +21,8 @@ public:
     virtual bool GetVisible() { return m_visible; }
     virtual void SetVisible( bool visible ) { m_visible = visible; }
 
+    bool IsNull() const { return (m_refData == 0); }
+
 protected:
     bool m_visible; /* can a pointer to this object be safely taken?
                      * - only if created within FindOrCreate... */