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