X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/af2799b7bbc4f52d43984049f7fe42a1fb1b968c..0912690b65b3c58c0e12870fb971675ca5572ae6:/include/wx/dialog.h diff --git a/include/wx/dialog.h b/include/wx/dialog.h index 11abe1f4fa..ec8bfb2cec 100644 --- a/include/wx/dialog.h +++ b/include/wx/dialog.h @@ -20,6 +20,9 @@ #include "wx/containr.h" #include "wx/toplevel.h" +class WXDLLEXPORT wxSizer; +class WXDLLEXPORT wxStdDialogButtonSizer; + #define wxDIALOG_NO_PARENT 0x0001 // Don't make owned by apps top window #ifdef __WXWINCE__ @@ -32,7 +35,7 @@ # define wxDEFAULT_DIALOG_STYLE (wxSYSTEM_MENU | wxCAPTION | wxCLOSE_BOX) #endif -WXDLLEXPORT_DATA(extern const wxChar*) wxDialogNameStr; +extern WXDLLEXPORT_DATA(const wxChar*) wxDialogNameStr; class WXDLLEXPORT wxDialogBase : public wxTopLevelWindow { @@ -56,6 +59,7 @@ public: #if wxUSE_BUTTON // places buttons into a horizontal wxBoxSizer wxSizer *CreateButtonSizer( long flags ); + wxStdDialogButtonSizer *CreateStdDialogButtonSizer( long flags ); #endif // wxUSE_BUTTON protected: @@ -71,7 +75,9 @@ protected: #if defined(__WXUNIVERSAL__) && !defined(__WXMICROWIN__) #include "wx/univ/dialog.h" #else - #if defined(__WXMSW__) + #if defined(__WXPALMOS__) + #include "wx/palmos/dialog.h" + #elif defined(__WXMSW__) #include "wx/msw/dialog.h" #elif defined(__WXMOTIF__) #include "wx/motif/dialog.h"