gdiobj.h 923 B

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