]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/infobar.h
remove unnecessary DoGetBestSize
[wxWidgets.git] / include / wx / gtk / infobar.h
index 1789ea17694487b25d9063e75a03cafcfa93424e..4956925a8b2116fd5709bae8cc9a976b96e0711a 100644 (file)
@@ -41,6 +41,8 @@ public:
     virtual void ShowMessage(const wxString& msg,
                              int flags = wxICON_INFORMATION);
 
+    virtual void Dismiss();
+
     virtual void AddButton(wxWindowID btnid,
                            const wxString& label = wxString());
 
@@ -53,10 +55,15 @@ public:
 
 protected:
     virtual bool GTKShouldConnectSizeRequest() const { return false; }
+    virtual void DoApplyWidgetStyle(GtkRcStyle *style);
 
 private:
     void Init() { m_impl = NULL; }
 
+    // add a button with the given id/label and return its widget
+    GtkWidget *GTKAddButton(wxWindowID btnid,
+                            const wxString& label = wxString());
+
 
     // only used when the native implementation is really being used
     class wxInfoBarGTKImpl *m_impl;