]>
git.saurik.com Git - wxWidgets.git/blob - src/mgl/display.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mgl/display.cpp
3 // Purpose: MGL Implementation of wxDisplay class
4 // Author: Wlodzimierz ABX Skiba
8 // Copyright: (c) Wlodzimierz Skiba
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
22 #include "wx/gdicmn.h"
25 #include "wx/display.h"
28 int wxDisplayBase::GetFromPoint ( const wxPoint
& WXUNUSED(pt
) )
35 size_t wxDisplayBase::GetCount()
41 // ----------------------------------------------------------------------------
42 // wxDisplay ctor/dtor
43 // ----------------------------------------------------------------------------
45 wxDisplay::wxDisplay ( size_t n
)
50 wxDisplay::~wxDisplay()
54 bool wxDisplay::IsOk() const
57 return m_index
< GetCount();
60 wxRect
wxDisplay::GetGeometry() const
67 wxString
wxDisplay::GetName() const
73 wxArrayVideoModes
wxDisplay::GetModes(const wxVideoMode
& WXUNUSED(modeMatch
)) const
75 wxArrayVideoModes modes
;
80 wxVideoMode
wxDisplay::GetCurrentMode() const
87 bool wxDisplay::ChangeMode(const wxVideoMode
& WXUNUSED(mode
))
93 bool wxDisplay::IsPrimary() const
99 #endif // wxUSE_DISPLAY