]> git.saurik.com Git - wxWidgets.git/blame_incremental - interface/wx/gdiobj.h
Add test for absence of events from wxSpinCtrlDouble ctor.
[wxWidgets.git] / interface / wx / gdiobj.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: gdiobj.h
3// Purpose: interface of wxGDIObject
4// Author: wxWidgets team
5// Licence: wxWindows licence
6/////////////////////////////////////////////////////////////////////////////
7
8/**
9 @class wxGDIObject
10
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.
15
16 Since the functionality of this class is platform-specific, it is not
17 documented here in detail.
18
19 @library{wxcore}
20 @category{gdi}
21
22 @see wxPen, wxBrush, wxFont
23*/
24class wxGDIObject : public wxObject
25{
26public:
27 /**
28 Default constructor.
29 */
30 wxGDIObject();
31};