]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/msgdlg.h
Add functor-taking overload of CallAfter().
[wxWidgets.git] / include / wx / gtk / msgdlg.h
index 955a2bfdec4cc02257affb38053b61c8e019afd0..8c0a7b095c7dfb49e8b40fcd4b1a32456889184b 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_GTK_MSGDLG_H_
 #define _WX_GTK_MSGDLG_H_
 
-class WXDLLIMPEXP_CORE wxMessageDialog : public wxMessageDialogWithCustomLabels
+class WXDLLIMPEXP_CORE wxMessageDialog : public wxMessageDialogBase
 {
 public:
     wxMessageDialog(wxWindow *parent, const wxString& message,
@@ -31,6 +31,8 @@ protected:
                            int WXUNUSED(sizeFlags) = wxSIZE_AUTO) {}
     virtual void DoMoveWindow(int WXUNUSED(x), int WXUNUSED(y),
                               int WXUNUSED(width), int WXUNUSED(height)) {}
+    // override to convert wx mnemonics to GTK+ ones and handle stock ids
+    virtual void DoSetCustomLabel(wxString& var, const ButtonLabel& label);
 
 private:
     // override to use stock GTK+ defaults instead of just string ones
@@ -38,9 +40,7 @@ private:
     virtual wxString GetDefaultNoLabel() const;
     virtual wxString GetDefaultOKLabel() const;
     virtual wxString GetDefaultCancelLabel() const;
-
-    // override to convert wx mnemonics to GTK+ ones
-    virtual void DoSetCustomLabel(wxString& var, const wxString& value);
+    virtual wxString GetDefaultHelpLabel() const;
 
     // create the real GTK+ dialog: this is done from ShowModal() to allow
     // changing the message between constructing the dialog and showing it