]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/gdiobj.h
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
15 #include "wx/object.h"
21 class WXDLLEXPORT wxGDIObject
: public wxObject
23 DECLARE_DYNAMIC_CLASS(wxGDIObject
)
25 inline wxGDIObject(void) { m_visible
= FALSE
; };
26 inline ~wxGDIObject(void) {};
28 virtual bool GetVisible(void) { return m_visible
; }
29 virtual void SetVisible(bool v
) { m_visible
= v
; }
32 bool m_visible
; // Can a pointer to this object be safely taken?
33 // - only if created within FindOrCreate...