X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/20e05ffbd3eff02a4c643e412d4f600cdea26952..2b01fd49183b64be59c4e7ba9bdaee479ff29ed2:/include/wx/gtk/gdiobj.h?ds=sidebyside diff --git a/include/wx/gtk/gdiobj.h b/include/wx/gtk/gdiobj.h index 23e4077cc7..ffc2b72c20 100644 --- a/include/wx/gtk/gdiobj.h +++ b/include/wx/gtk/gdiobj.h @@ -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... */