]>
Commit | Line | Data |
---|---|---|
a536e411 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: display.h | |
3 | // Purpose: wxDisplay class customization for Mac | |
4 | // Author: Brian Victor | |
5 | // Modified by: Royce Mitchell III | |
6 | // Created: 06/21/02 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) wxWindows team | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_MAC_DISPLAY_H_ | |
13 | #define _WX_MAC_DISPLAY_H_ | |
14 | ||
15 | #include "wx/object.h" | |
16 | #include "wx/display.h" | |
17 | ||
18 | class wxDisplayMacPriv; | |
19 | class wxRect; | |
20 | class wxString; | |
21 | ||
22 | class WXDLLEXPORT wxDisplay : public wxDisplayBase | |
23 | { | |
24 | public: | |
25 | wxDisplay ( size_t index = 0 ); | |
26 | ||
27 | virtual wxRect GetGeometry() const; | |
28 | virtual int GetDepth() const; | |
29 | virtual wxString GetName() const; | |
30 | ||
31 | ||
32 | ~wxDisplay(); | |
33 | ||
34 | private: | |
35 | wxDisplayMacPriv* m_priv; | |
36 | ||
37 | DECLARE_NO_COPY_CLASS(wxDisplay); | |
38 | }; | |
39 | ||
40 | #endif // _WX_MAC_DISPLAY_H_ |