X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/debe6624c1e9d4bf3243381153d1e173c849bcd8..d0fff5cb110810d3bee6fa255292f161f7752911:/include/wx/gtk1/dialog.h diff --git a/include/wx/gtk1/dialog.h b/include/wx/gtk1/dialog.h index 44f11d3fdf..236b8cc024 100644 --- a/include/wx/gtk1/dialog.h +++ b/include/wx/gtk1/dialog.h @@ -21,6 +21,7 @@ #include "wx/string.h" #include "wx/event.h" #include "wx/window.h" +#include "wx/icon.h" //----------------------------------------------------------------------------- // forward decls @@ -63,8 +64,9 @@ class wxDialog: public wxWindow bool OnClose(void); void OnApply( wxCommandEvent &event ); void OnCancel( wxCommandEvent &event ); - void OnOk( wxCommandEvent &event ); + void OnOK( wxCommandEvent &event ); void OnPaint(wxPaintEvent& event); + bool Destroy(void); void OnCloseWindow(wxCloseEvent& event); /* void OnCharHook(wxKeyEvent& event); @@ -73,21 +75,31 @@ class wxDialog: public wxWindow virtual int ShowModal(void); virtual void EndModal(int retCode); virtual bool IsModal(void) const { return ((GetWindowStyleFlag() & wxDIALOG_MODAL) == wxDIALOG_MODAL); } + void SetModal( bool modal ); virtual void InitDialog(void); -/* - void OnOK(wxCommandEvent& event); - void OnApply(wxCommandEvent& event); - void OnCancel(wxCommandEvent& event); -*/ + virtual void Centre( int direction = wxHORIZONTAL ); + + virtual void SetSizeHints( int minW, int minH, int maxW, int maxH, int incW = -1 ); + + virtual void SetIcon( const wxIcon &icon ); + virtual void Iconize( bool WXUNUSED(iconize)) { } + virtual bool IsIconized(void) const { return FALSE; } + bool Iconized(void) const { return IsIconized(); } + virtual void Maximize(void) { } + virtual void Restore(void) { } private: friend wxWindow; friend wxDC; friend wxRadioBox; + bool m_modalShowing; wxString m_title; + wxIcon m_icon; + virtual void ImplementSetPosition(); + DECLARE_EVENT_TABLE() };