X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/53a2db124c633f80bdb16336084262037d879a2c..03773e400b6ff2692f2a9ba045d652c3b7b7109d:/include/wx/gtk/msgdlg.h diff --git a/include/wx/gtk/msgdlg.h b/include/wx/gtk/msgdlg.h index 97998869d0..785a0b18e2 100644 --- a/include/wx/gtk/msgdlg.h +++ b/include/wx/gtk/msgdlg.h @@ -12,7 +12,7 @@ #ifndef _WX_GTK_MSGDLG_H_ #define _WX_GTK_MSGDLG_H_ -class WXDLLIMPEXP_CORE wxMessageDialog : public wxMessageDialogBase +class WXDLLIMPEXP_CORE wxMessageDialog : public wxMessageDialogWithCustomLabels { public: wxMessageDialog(wxWindow *parent, const wxString& message, @@ -21,7 +21,7 @@ public: const wxPoint& pos = wxDefaultPosition); virtual int ShowModal(); - virtual bool Show( bool WXUNUSED(show) = true ) { return false; }; + virtual bool Show(bool WXUNUSED(show) = true) { return false; } protected: // implement some base class methods to do nothing to avoid asserts and @@ -31,8 +31,16 @@ 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 + virtual wxString GetDefaultYesLabel() const; + virtual wxString GetDefaultNoLabel() const; + virtual wxString GetDefaultOKLabel() const; + virtual wxString GetDefaultCancelLabel() const; + // create the real GTK+ dialog: this is done from ShowModal() to allow // changing the message between constructing the dialog and showing it void GTKCreateMsgDialog();