58614078c4
from the GTK+ hot-line, eh mail-list. The news is that they don't know what they do. Conversion from 12pt, wxSWISS, wxNORMAL, wxNORMAL to GTK+ system font Probably some other things git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@934 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
37 lines
897 B
C++
37 lines
897 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 WXDLLEXPORT wxGDIObject: public wxObject
|
|
{
|
|
DECLARE_DYNAMIC_CLASS(wxGDIObject)
|
|
public:
|
|
inline wxGDIObject(void) { m_visible = FALSE; };
|
|
inline ~wxGDIObject(void) {};
|
|
|
|
virtual bool GetVisible(void) { return m_visible; }
|
|
virtual void SetVisible(bool v) { m_visible = v; }
|
|
|
|
protected:
|
|
bool m_visible; // Can a pointer to this object be safely taken?
|
|
// - only if created within FindOrCreate...
|
|
};
|
|
|
|
#endif
|
|
// __GDIOBJH__
|