]> git.saurik.com Git - wxWidgets.git/blob - textdlg.h
9fe13dda44da511c8d18ded88c3c1e09f5d49360
[wxWidgets.git] / textdlg.h
1 #ifndef _WX_TEXTDLG_H_BASE_
2 #define _WX_TEXTDLG_H_BASE_
3
4 #include "wx/generic/textdlgg.h"
5
6 // ----------------------------------------------------------------------------
7 // function to get a number from user
8 // ----------------------------------------------------------------------------
9
10 long WXDLLEXPORT
11 wxGetNumberFromUser(const wxString& message,
12 const wxString& prompt,
13 const wxString& caption,
14 long value = 0,
15 long min = 0,
16 long max = 100,
17 wxWindow *parent = (wxWindow *)NULL,
18 const wxPoint& pos = wxDefaultPosition);
19
20 #endif
21 // _WX_TEXTDLG_H_BASE_