home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / include / wx / textdlg.h < prev    next >
C/C++ Source or Header  |  1999-08-11  |  721b  |  22 lines

  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_
  22.