36b3b54ad8
Removed wxFontDirectory Added move event to dialog and frame Cannot remeber the rest git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1460 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
38 lines
892 B
C++
38 lines
892 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: gdiobj.h
|
|
// Purpose:
|
|
// Author: Robert Roebling
|
|
// Id: $Id$
|
|
// Copyright: (c) 1998 Robert Roebling, Julian Smart
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#ifndef __GDIOBJH__
|
|
#define __GDIOBJH__
|
|
|
|
#include "wx/object.h"
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
class wxGDIObject : public wxObject
|
|
{
|
|
DECLARE_DYNAMIC_CLASS(wxGDIObject)
|
|
|
|
public:
|
|
inline wxGDIObject() { m_visible = FALSE; };
|
|
inline ~wxGDIObject() {};
|
|
|
|
virtual bool GetVisible() { return m_visible; }
|
|
virtual void SetVisible( bool visible ) { m_visible = visible; }
|
|
|
|
protected:
|
|
bool m_visible; /* can a pointer to this object be safely taken?
|
|
* - only if created within FindOrCreate... */
|
|
};
|
|
|
|
#endif
|
|
// __GDIOBJH__
|