daily updates and tweaks

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42552 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-10-28 02:58:17 +00:00
parent 7f8bd9fc5f
commit 55811cde2d
3 changed files with 24 additions and 10 deletions

View File

@@ -130,6 +130,9 @@ public:
virtual void SetTitle(const wxString& title);
virtual wxString GetTitle() const;
// enable/disable close button [x]
virtual bool EnableCloseButton(bool enable );
// Set the shape of the window to the given region.
// Returns True if the platform supports this feature
// (and the operation is successful.)
@@ -168,15 +171,6 @@ public:
"Center the window on screen", "");
%pythoncode { CentreOnScreen = CenterOnScreen }
#ifdef __WXMSW__
bool EnableCloseButton(bool enable = true);
#else
%extend {
bool EnableCloseButton(bool enable = true) { return false; }
}
#endif
DocDeclStr(
virtual wxWindow *, GetDefaultItem() const,