X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c6ece59558c53013aedd0d010029ec57b905e83f..2f02438455eb15e03039d701adaec56ddf2fb97c:/include/wx/dialog.h diff --git a/include/wx/dialog.h b/include/wx/dialog.h index 7df4f1f9a1..9552597133 100644 --- a/include/wx/dialog.h +++ b/include/wx/dialog.h @@ -27,11 +27,18 @@ class WXDLLEXPORT wxStdDialogButtonSizer; #define wxDEFAULT_DIALOG_STYLE (wxCAPTION | wxSYSTEM_MENU | wxCLOSE_BOX) #endif -extern WXDLLEXPORT_DATA(const wxChar*) wxDialogNameStr; +extern WXDLLEXPORT_DATA(const wxChar) wxDialogNameStr[]; class WXDLLEXPORT wxDialogBase : public wxTopLevelWindow { public: + + enum + { + // all flags allowed in wxDialogBase::CreateButtonSizer() + ButtonSizerFlags = wxOK|wxCANCEL|wxYES|wxNO|wxHELP|wxNO_DEFAULT + }; + wxDialogBase() { Init(); } virtual ~wxDialogBase() { } @@ -56,9 +63,11 @@ public: wxSizer *CreateTextSizer( const wxString &message ); #endif // wxUSE_STATTEXT // && wxUSE_TEXTCTRL -#if wxUSE_BUTTON // places buttons into a horizontal wxBoxSizer - wxSizer *CreateButtonSizer( long flags ); + wxSizer *CreateButtonSizer( long flags, + bool separated = false, + wxCoord distance = 0 ); +#if wxUSE_BUTTON wxStdDialogButtonSizer *CreateStdDialogButtonSizer( long flags ); #endif // wxUSE_BUTTON @@ -87,8 +96,10 @@ protected: #include "wx/msw/dialog.h" #elif defined(__WXMOTIF__) #include "wx/motif/dialog.h" - #elif defined(__WXGTK__) + #elif defined(__WXGTK20__) #include "wx/gtk/dialog.h" + #elif defined(__WXGTK__) + #include "wx/gtk1/dialog.h" #elif defined(__WXMAC__) #include "wx/mac/dialog.h" #elif defined(__WXCOCOA__)