X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a9f620daf40510ec72fde34c8623709c12430b5c..531030e2d2f2f7092786795a9d552ac3e9505ea1:/include/wx/dialog.h diff --git a/include/wx/dialog.h b/include/wx/dialog.h index 1dd7535bc0..766771c42d 100644 --- a/include/wx/dialog.h +++ b/include/wx/dialog.h @@ -70,10 +70,18 @@ public: wxSizer *CreateTextSizer( const wxString &message ); #endif // wxUSE_STATTEXT // && wxUSE_TEXTCTRL - // places buttons into a horizontal wxBoxSizer - wxSizer *CreateButtonSizer( long flags, - bool separated = false, - wxCoord distance = 0 ); + // returns a horizontal wxBoxSizer containing the given buttons + // + // notice that the returned sizer can be NULL if no buttons are put in the + // sizer (this mostly happens under smart phones and other atypical + // platforms which have hardware buttons replacing OK/Cancel and such) + wxSizer *CreateButtonSizer(long flags); + + // returns the sizer containing CreateButtonSizer() below a separating + // static line for the platforms which use static lines for items + // separation (i.e. not Mac) + wxSizer *CreateSeparatedButtonSizer(long flags); + #if wxUSE_BUTTON wxStdDialogButtonSizer *CreateStdDialogButtonSizer( long flags ); #endif // wxUSE_BUTTON