]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/gtk1/gdiobj.h
Some #include and #if wxUSE_XX things
[wxWidgets.git] / include / wx / gtk1 / gdiobj.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: gdiobj.h
3// Purpose:
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling, Julian Smart
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10
11#ifndef __GDIOBJH__
12#define __GDIOBJH__
13
14#include "wx/object.h"
15
16#ifdef __GNUG__
17#pragma interface
18#endif
19
20class wxGDIObject : public wxObject
21{
22DECLARE_DYNAMIC_CLASS(wxGDIObject)
23
24public:
25 inline wxGDIObject() { m_visible = FALSE; };
26 inline ~wxGDIObject() {};
27
28 virtual bool GetVisible() { return m_visible; }
29 virtual void SetVisible( bool visible ) { m_visible = visible; }
30
31protected:
32 bool m_visible; /* can a pointer to this object be safely taken?
33 * - only if created within FindOrCreate... */
34};
35
36#endif
37 // __GDIOBJH__