]>
Commit | Line | Data |
---|---|---|
a536e411 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: display.h | |
3 | // Purpose: wxDisplay class customization for WXMSW | |
4 | // Author: Royce Mitchell III | |
5 | // Modified by: | |
6 | // Created: 06/21/02 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) wxWindows team | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_MSW_DISPLAY_H_ | |
13 | #define _WX_MSW_DISPLAY_H_ | |
14 | ||
15 | class WXDLLEXPORT wxDisplay : public wxDisplayBase | |
16 | { | |
17 | public: | |
18 | wxDisplay ( size_t index = 0 ); | |
19 | ||
20 | virtual wxRect GetGeometry() const; | |
21 | virtual int GetDepth() const; | |
22 | virtual wxString GetName() const; | |
23 | ||
24 | DECLARE_NO_COPY_CLASS(wxDisplay); | |
25 | }; | |
26 | ||
27 | #endif // _WX_MSW_DISPLAY_H_ |