]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/carbon/gdiobj.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxGDIObject class: base class for other GDI classes
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #include "wx/object.h"
17 class WXDLLEXPORT wxGDIRefData
: public wxObjectRefData
{
24 #define M_GDIDATA ((wxGDIRefData *)m_refData)
26 class WXDLLEXPORT wxGDIObject
: public wxObject
28 DECLARE_DYNAMIC_CLASS(wxGDIObject
)
31 wxGDIObject() : m_visible(false) { }
34 bool IsNull() const { return (m_refData
== 0); }
36 virtual bool GetVisible() { return m_visible
; }
37 virtual void SetVisible(bool v
) { m_visible
= v
; }
40 bool m_visible
; // Can a pointer to this object be safely taken?
41 // - only if created within FindOrCreate...