Added some placeholders...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24800 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
070a4f2d3a
commit
e07d33e724
@ -31,6 +31,12 @@ class WXDLLEXPORT wxDisplay : public wxDisplayBase
|
||||
virtual wxRect GetGeometry() const;
|
||||
virtual int GetDepth() const;
|
||||
virtual wxString GetName() const;
|
||||
virtual wxArrayVideoModes
|
||||
GetModes(const wxVideoMode& mode = wxDefaultVideoMode) const;
|
||||
|
||||
virtual wxVideoMode GetCurrentMode() const;
|
||||
|
||||
virtual bool ChangeMode(const wxVideoMode& mode = wxDefaultVideoMode);
|
||||
|
||||
~wxDisplay();
|
||||
|
||||
|
@ -101,7 +101,7 @@ int wxDisplayBase::GetFromPoint(const wxPoint &p)
|
||||
return 0;
|
||||
}
|
||||
|
||||
return -1
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
@ -147,5 +147,23 @@ wxString wxDisplay::GetName() const
|
||||
return wxEmptyString;
|
||||
}
|
||||
|
||||
wxArrayVideoModes
|
||||
wxDisplay::GetModes(const wxVideoMode& mode) const
|
||||
{
|
||||
// Not implemented
|
||||
return wxArrayVideoModes();
|
||||
}
|
||||
|
||||
wxVideoMode wxDisplay::GetCurrentMode() const
|
||||
{
|
||||
// Not implemented
|
||||
return wxVideoMode();
|
||||
}
|
||||
|
||||
bool wxDisplay::ChangeMode(const wxVideoMode& mode)
|
||||
{
|
||||
// Not implemented
|
||||
return false;
|
||||
}
|
||||
#endif /* wxUSE_DISPLAY */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user