]> git.saurik.com Git - wxWidgets.git/blame - include/wx/textdlg.h
show the taskbar icon even after Explorer restart (patch 723532) + some code cleanup
[wxWidgets.git] / include / wx / textdlg.h
CommitLineData
34138703
JS
1#ifndef _WX_TEXTDLG_H_BASE_
2#define _WX_TEXTDLG_H_BASE_
c801d85f
KB
3
4#include "wx/generic/textdlgg.h"
5
31528cd3
VZ
6// ----------------------------------------------------------------------------
7// function to get a number from user
8// ----------------------------------------------------------------------------
9
10long WXDLLEXPORT
11wxGetNumberFromUser(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
c801d85f 20#endif
34138703 21 // _WX_TEXTDLG_H_BASE_