X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4b5e5cfb2230d990c6988266340329c420cd1a74..d7b20621ef1170ed3c505f65d77227cf18c80499:/include/wx/generic/numdlgg.h?ds=sidebyside diff --git a/include/wx/generic/numdlgg.h b/include/wx/generic/numdlgg.h index ce9ea55e86..1ac15c680f 100644 --- a/include/wx/generic/numdlgg.h +++ b/include/wx/generic/numdlgg.h @@ -5,34 +5,30 @@ // Modified by: // Created: 07.02.04 (extracted from textdlgg.cpp) // RCS-ID: $Id$ -// Copyright: (c) wxWindows team +// Copyright: (c) wxWidgets team // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef __NUMDLGH_G__ #define __NUMDLGH_G__ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "numdlgg.h" -#endif +#include "wx/defs.h" #if wxUSE_NUMBERDLG -#include "wx/defs.h" - #include "wx/dialog.h" #if wxUSE_SPINCTRL - class WXDLLEXPORT wxSpinCtrl; + class WXDLLIMPEXP_FWD_CORE wxSpinCtrl; #else - class WXDLLEXPORT wxTextCtrl; + class WXDLLIMPEXP_FWD_CORE wxTextCtrl; #endif // wxUSE_SPINCTRL // ---------------------------------------------------------------------------- // wxNumberEntryDialog: a dialog with spin control, [ok] and [cancel] buttons // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxNumberEntryDialog : public wxDialog +class WXDLLIMPEXP_CORE wxNumberEntryDialog : public wxDialog { public: wxNumberEntryDialog(wxWindow *parent, @@ -68,17 +64,16 @@ private: // function to get a number from user // ---------------------------------------------------------------------------- -long WXDLLEXPORT -wxGetNumberFromUser(const wxString& message, - const wxString& prompt, - const wxString& caption, - long value = 0, - long min = 0, - long max = 100, - wxWindow *parent = (wxWindow *)NULL, - const wxPoint& pos = wxDefaultPosition); +WXDLLIMPEXP_CORE long + wxGetNumberFromUser(const wxString& message, + const wxString& prompt, + const wxString& caption, + long value = 0, + long min = 0, + long max = 100, + wxWindow *parent = (wxWindow *)NULL, + const wxPoint& pos = wxDefaultPosition); #endif // wxUSE_NUMBERDLG #endif // __NUMDLGH_G__ -