more properties

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41166 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-09-12 03:20:12 +00:00
parent 5034c9dbba
commit 7012bb9f03
26 changed files with 323 additions and 5 deletions

View File

@@ -297,7 +297,7 @@ it wasn't found at all. Raises an exception on non-Windows platforms.", "");
#endif
%extend {
DocStr(DisplayAvailable,
DocStr(IsDisplayAvailable,
"Tests if it is possible to create a GUI in the current environment.
This will mean different things on the different platforms.
@@ -312,10 +312,24 @@ This will mean different things on the different platforms.
* On MS Windows...
", "");
static bool DisplayAvailable() {
static bool IsDisplayAvailable() {
return wxPyTestDisplayAvailable();
}
}
%property(AppName, GetAppName, SetAppName, doc="See `GetAppName` and `SetAppName`");
%property(AssertMode, GetAssertMode, SetAssertMode, doc="See `GetAssertMode` and `SetAssertMode`");
%property(ClassName, GetClassName, SetClassName, doc="See `GetClassName` and `SetClassName`");
%property(ExitOnFrameDelete, GetExitOnFrameDelete, SetExitOnFrameDelete, doc="See `GetExitOnFrameDelete` and `SetExitOnFrameDelete`");
%property(LayoutDirection, GetLayoutDirection, doc="See `GetLayoutDirection`");
%property(PrintMode, GetPrintMode, SetPrintMode, doc="See `GetPrintMode` and `SetPrintMode`");
%property(TopWindow, GetTopWindow, SetTopWindow, doc="See `GetTopWindow` and `SetTopWindow`");
%property(Traits, GetTraits, doc="See `GetTraits`");
%property(UseBestVisual, GetUseBestVisual, SetUseBestVisual, doc="See `GetUseBestVisual` and `SetUseBestVisual`");
%property(VendorName, GetVendorName, SetVendorName, doc="See `GetVendorName` and `SetVendorName`");
%property(Active, IsActive);
};