2008-03-08 13:52:38 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: gdiobj.h
|
2008-03-10 15:24:38 +00:00
|
|
|
// Purpose: interface of wxGDIObject
|
2008-03-08 13:52:38 +00:00
|
|
|
// Author: wxWidgets team
|
2010-07-13 13:29:13 +00:00
|
|
|
// Licence: wxWindows licence
|
2008-03-08 13:52:38 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/**
|
|
|
|
@class wxGDIObject
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-10-31 01:22:58 +00:00
|
|
|
This class allows platforms to implement functionality to optimise GDI
|
|
|
|
objects, such as wxPen, wxBrush and wxFont. On Windows, the underling GDI
|
|
|
|
objects are a scarce resource and are cleaned up when a usage count goes to
|
|
|
|
zero. On some platforms this class may not have any special functionality.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
Since the functionality of this class is platform-specific, it is not
|
|
|
|
documented here in detail.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
@library{wxcore}
|
2008-10-31 01:22:58 +00:00
|
|
|
@category{gdi}
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-10 15:24:38 +00:00
|
|
|
@see wxPen, wxBrush, wxFont
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
class wxGDIObject : public wxObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
Default constructor.
|
|
|
|
*/
|
|
|
|
wxGDIObject();
|
|
|
|
};
|