]> git.saurik.com Git - wxWidgets.git/commitdiff
Add the getters
authorRobin Dunn <robin@alldunn.com>
Fri, 21 Oct 2011 18:34:20 +0000 (18:34 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 21 Oct 2011 18:34:20 +0000 (18:34 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69503 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/msgdlg.h

index 70aba8cca16d42174d41d47551d6ffc49560d907..a4da8468d3b3661a0f584949028ce1353136fc93 100644 (file)
@@ -216,6 +216,20 @@ public:
         clicked unlike wxMessageBox() function.
     */
     virtual int ShowModal();
+
+
+    wxString GetCaption() const;
+    wxString GetMessage() const;
+    wxString GetExtendedMessage() const;
+    long GetMessageDialogStyle() const;
+    bool HasCustomLabels() const;
+    wxString GetYesLabel() const;
+    wxString GetNoLabel() const;
+    wxString GetOKLabel() const;
+    wxString GetCancelLabel() const;
+    wxString GetHelpLabel() const;
+    long GetEffectiveIcon() const;
+
 };