]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/frames.i
Added wxRTTI for the new wxVScrolledWindow, wxVListBox, and
[wxWidgets.git] / wxPython / src / frames.i
index 619ae6ebe28445a5a60343a4a2148de87acb134f..ea407d7766c6cce23b80fbfe6303e1caa53d93d5 100644 (file)
@@ -116,6 +116,12 @@ public:
 
     virtual void SetTitle(const wxString& title);
     virtual wxString GetTitle() const;
 
     virtual void SetTitle(const wxString& title);
     virtual wxString GetTitle() const;
+
+    // Set the shape of the window to the given region.
+    // Returns TRUE if the platform supports this feature (and the operation
+    // is successful.)
+    virtual bool SetShape(const wxRegion& region);
+
 };
 
 //----------------------------------------------------------------------
 };
 
 //----------------------------------------------------------------------
@@ -177,7 +183,7 @@ public:
 
 
     // create main toolbar
 
 
     // create main toolbar
-    virtual wxToolBar* CreateToolBar(long style = wxNO_BORDER|wxTB_HORIZONTAL,
+    virtual wxToolBar* CreateToolBar(long style = -1, //wxNO_BORDER|wxTB_HORIZONTAL,
                                      wxWindowID id = -1,
                                      const wxString& name = wxPyToolBarNameStr);
 
                                      wxWindowID id = -1,
                                      const wxString& name = wxPyToolBarNameStr);
 
@@ -188,6 +194,14 @@ public:
     // sends a size event to the window using its current size -- this has an
     // effect of refreshing the window layout
     virtual void SendSizeEvent();
     // sends a size event to the window using its current size -- this has an
     // effect of refreshing the window layout
     virtual void SendSizeEvent();
+
+
+    // send wxUpdateUIEvents for all menu items in the menubar,
+    // or just for menu if non-NULL
+    void DoMenuUpdates(wxMenu* menu = NULL);
+
+    // do the UI update processing for this window
+    virtual void UpdateWindowUI(long flags = wxUPDATE_UI_NONE);
 };
 
 //---------------------------------------------------------------------------
 };
 
 //---------------------------------------------------------------------------