]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: gdiobj.h | |
e54c96f1 | 3 | // Purpose: interface of wxGDIObject |
23324ae1 | 4 | // Author: wxWidgets team |
526954c5 | 5 | // Licence: wxWindows licence |
23324ae1 FM |
6 | ///////////////////////////////////////////////////////////////////////////// |
7 | ||
8 | /** | |
9 | @class wxGDIObject | |
7c913512 | 10 | |
23d291c2 BP |
11 | This class allows platforms to implement functionality to optimise GDI |
12 | objects, such as wxPen, wxBrush and wxFont. On Windows, the underling GDI | |
13 | objects are a scarce resource and are cleaned up when a usage count goes to | |
14 | zero. On some platforms this class may not have any special functionality. | |
7c913512 | 15 | |
23324ae1 FM |
16 | Since the functionality of this class is platform-specific, it is not |
17 | documented here in detail. | |
7c913512 | 18 | |
23324ae1 | 19 | @library{wxcore} |
23d291c2 | 20 | @category{gdi} |
7c913512 | 21 | |
e54c96f1 | 22 | @see wxPen, wxBrush, wxFont |
23324ae1 FM |
23 | */ |
24 | class wxGDIObject : public wxObject | |
25 | { | |
26 | public: | |
27 | /** | |
28 | Default constructor. | |
29 | */ | |
30 | wxGDIObject(); | |
31 | }; |