%{
#include <wx/display.h>
+#include <wx/vidmode.h>
%}
// refresh frequency in Hz, 0 means unspecified/unknown
int refresh;
+
+ %property(Depth, GetDepth, doc="See `GetDepth`");
+ %property(Height, GetHeight, doc="See `GetHeight`");
+ %property(Width, GetWidth, doc="See `GetWidth`");
};
{
public:
DocCtorStr(
- wxDisplay(size_t index = 0),
+ wxDisplay(unsigned index = 0),
"Set up a Display instance with the specified display. The displays
are numbered from 0 to GetCount() - 1, 0 is always the primary display
and the only one which is always supported", "");
~wxDisplay();
DocDeclStr(
- static size_t , GetCount(),
+ static unsigned , GetCount(),
"Return the number of available displays.", "");
DocDeclStr(
}
} // end of %extend
+
+ %property(ClientArea, GetClientArea, doc="See `GetClientArea`");
+ %property(CurrentMode, GetCurrentMode, doc="See `GetCurrentMode`");
+ %property(Geometry, GetGeometry, doc="See `GetGeometry`");
+ %property(Modes, GetModes, doc="See `GetModes`");
+ %property(Name, GetName, doc="See `GetName`");
+
};
//---------------------------------------------------------------------------