]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/display.h
moving all string conversions to private.h
[wxWidgets.git] / include / wx / mac / display.h
CommitLineData
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
18class wxDisplayMacPriv;
19class wxRect;
20class wxString;
21
22class WXDLLEXPORT wxDisplay : public wxDisplayBase
23{
24public:
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
34private:
35 wxDisplayMacPriv* m_priv;
36
37 DECLARE_NO_COPY_CLASS(wxDisplay);
38};
39
40#endif // _WX_MAC_DISPLAY_H_