#ifndef _WX_DISPLAY_IMPL_H_BASE_
#define _WX_DISPLAY_IMPL_H_BASE_
+#include "wx/gdicmn.h" // for wxRect
+
// ----------------------------------------------------------------------------
// wxDisplayFactory: allows to create wxDisplay objects
// ----------------------------------------------------------------------------
// 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;