]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/display.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxDisplay class customization for Mac
4 // Author: Brian Victor
5 // Modified by: Royce Mitchell III
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MAC_DISPLAY_H_
13 #define _WX_MAC_DISPLAY_H_
15 #include "wx/object.h"
16 #include "wx/display.h"
18 class wxDisplayMacPriv
;
22 class WXDLLEXPORT wxDisplay
: public wxDisplayBase
25 wxDisplay ( size_t index
= 0 );
27 virtual wxRect
GetGeometry() const;
28 virtual int GetDepth() const;
29 virtual wxString
GetName() const;
35 wxDisplayMacPriv
* m_priv
;
37 DECLARE_NO_COPY_CLASS(wxDisplay
);
40 #endif // _WX_MAC_DISPLAY_H_