]>
Commit | Line | Data |
---|---|---|
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 | |
7c913512 | 11 | |
23324ae1 FM |
12 | This class allows platforms to implement functionality to optimise GDI objects, |
13 | such | |
14 | as wxPen, wxBrush and wxFont. On Windows, the underling GDI objects are a | |
15 | scarce resource | |
16 | and are cleaned up when a usage count goes to zero. On some platforms this | |
17 | class may not have any special functionality. | |
7c913512 | 18 | |
23324ae1 FM |
19 | Since the functionality of this class is platform-specific, it is not |
20 | documented here in detail. | |
7c913512 | 21 | |
23324ae1 FM |
22 | @library{wxcore} |
23 | @category{FIXME} | |
7c913512 | 24 | |
e54c96f1 | 25 | @see wxPen, wxBrush, wxFont |
23324ae1 FM |
26 | */ |
27 | class wxGDIObject : public wxObject | |
28 | { | |
29 | public: | |
30 | /** | |
31 | Default constructor. | |
32 | */ | |
33 | wxGDIObject(); | |
34 | }; | |
e54c96f1 | 35 |