]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/gdiobj.h
Use CmdDown in mouse events instead of ControlDown so Mac users can
[wxWidgets.git] / include / wx / gtk / gdiobj.h
index 23e4077cc7cda6a753615df9ced5f5daf39da07d..ffc2b72c20a9dc26cc4e18e8a5e07b28d213b3c9 100644 (file)
@@ -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... */