]> git.saurik.com Git - wxWidgets.git/blame - interface/gdiobj.h
documented that Freeze and Thaw are now recursive
[wxWidgets.git] / interface / gdiobj.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: gdiobj.h
e54c96f1 3// Purpose: interface of wxGDIObject
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9/**
10 @class wxGDIObject
11 @wxheader{gdiobj.h}
7c913512 12
23324ae1
FM
13 This class allows platforms to implement functionality to optimise GDI objects,
14 such
15 as wxPen, wxBrush and wxFont. On Windows, the underling GDI objects are a
16 scarce resource
17 and are cleaned up when a usage count goes to zero. On some platforms this
18 class may not have any special functionality.
7c913512 19
23324ae1
FM
20 Since the functionality of this class is platform-specific, it is not
21 documented here in detail.
7c913512 22
23324ae1
FM
23 @library{wxcore}
24 @category{FIXME}
7c913512 25
e54c96f1 26 @see wxPen, wxBrush, wxFont
23324ae1
FM
27*/
28class wxGDIObject : public wxObject
29{
30public:
31 /**
32 Default constructor.
33 */
34 wxGDIObject();
35};
e54c96f1 36