added wxDisplay::GetClientArea() (currently implemented for single display and MSW implementations only)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38147 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-03-16 16:07:24 +00:00
parent 480abc8fdb
commit 6c5d62917d
7 changed files with 57 additions and 1 deletions

View File

@@ -52,6 +52,9 @@ public:
// return the full area of this display
virtual wxRect GetGeometry() const = 0;
// return the area of the display available for normal windows
virtual wxRect GetClientArea() const { return GetGeometry(); }
// return the name (may be empty)
virtual wxString GetName() const = 0;