]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/dialog.h
Added wxStrnicmp and to wchar.h, not yet for Unicode mode.
[wxWidgets.git] / include / wx / mac / dialog.h
index d68cc7c9a0f0612e7138e02c0a8f4d08c1e52c9a..0b595e9c9defe3b54e4b58672375a0b6aba43e88 100644 (file)
@@ -60,23 +60,17 @@ public:
   ~wxDialog();
 
   virtual bool Destroy();
-  void SetClientSize(int width, int height);
-  void GetPosition(int *x, int *y) const;
   bool Show(bool show);
-  void Iconize(bool iconize);
-
-  virtual bool IsIconized() const;
   void Fit();
 
-  void SetTitle(const wxString& title);
-  wxString GetTitle() const ;
+  void Iconize(bool iconize);
 
+  virtual bool IsIconized() const;
   void OnCharHook(wxKeyEvent& event);
   void OnCloseWindow(wxCloseEvent& event);
 
   void SetModal(bool flag);
 
-  virtual void Centre(int direction = wxBOTH);
   virtual bool IsModal() const { return ((GetWindowStyleFlag() & wxDIALOG_MODAL) == wxDIALOG_MODAL); }
 
   virtual int ShowModal();
@@ -87,9 +81,17 @@ public:
   void OnApply(wxCommandEvent& event);
   void OnCancel(wxCommandEvent& event);
 
+       void OnSize(wxSizeEvent& event) ;
   // Responds to colour changes
   void OnSysColourChanged(wxSysColourChangedEvent& event);
 
+    // splits text up at newlines and places the
+    // lines into a vertical wxBoxSizer
+    wxSizer *CreateTextSizer( const wxString &message );
+    
+    // places buttons into a horizontal wxBoxSizer
+    wxSizer *CreateButtonSizer( long flags );
+
 DECLARE_EVENT_TABLE()
 };