]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/frames.i
SWIGged updates for wxGTK
[wxWidgets.git] / wxPython / src / frames.i
index 465699722e3e87deecea6e82e82d403b2f6a3117..619ae6ebe28445a5a60343a4a2148de87acb134f 100644 (file)
@@ -145,11 +145,9 @@ public:
     wxMenuBar *GetMenuBar();
 
 
-    // call this to simulate a menu command
-    bool Command(int id);
-
     // process menu command: returns TRUE if processed
     bool ProcessCommand(int id);
+    %pragma(python) addtoclass = "Command = ProcessCommand"
 
     // create the main status bar
     wxStatusBar* CreateStatusBar(int number = 1,
@@ -187,6 +185,9 @@ public:
     virtual wxToolBar *GetToolBar() const { return m_frameToolBar; }
     virtual void SetToolBar(wxToolBar *toolbar) { m_frameToolBar = toolbar; }
 
+    // sends a size event to the window using its current size -- this has an
+    // effect of refreshing the window layout
+    virtual void SendSizeEvent();
 };
 
 //---------------------------------------------------------------------------
@@ -283,7 +284,7 @@ public:
                    wxWindow* parent, wxWindowID id,
                    const wxPoint& pos = wxDefaultPosition,
                    const wxSize& size = wxDefaultSize,
-                   long style = wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxFRAME_FLOAT_ON_PARENT);
+                   long style = wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP);
 
     %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"