]> git.saurik.com Git - wxWidgets.git/blame - include/wx/textdlg.h
converted to 16 colors
[wxWidgets.git] / include / wx / textdlg.h
CommitLineData
34138703
JS
1#ifndef _WX_TEXTDLG_H_BASE_
2#define _WX_TEXTDLG_H_BASE_
c801d85f 3
57dde4bd
RR
4#ifdef __WXGTK__
5#include "wx/gtk/textdlg.h"
6#else
c801d85f 7#include "wx/generic/textdlgg.h"
57dde4bd 8#endif
c801d85f 9
31528cd3
VZ
10// ----------------------------------------------------------------------------
11// function to get a number from user
12// ----------------------------------------------------------------------------
13
14long WXDLLEXPORT
15wxGetNumberFromUser(const wxString& message,
16 const wxString& prompt,
17 const wxString& caption,
18 long value = 0,
19 long min = 0,
20 long max = 100,
21 wxWindow *parent = (wxWindow *)NULL,
22 const wxPoint& pos = wxDefaultPosition);
23
c801d85f 24#endif
34138703 25 // _WX_TEXTDLG_H_BASE_