]> git.saurik.com Git - wxWidgets.git/blame - include/wx/generic/textdlgg.h
Applied patch [ 654023 ] Enables HtmlHelp (native)
[wxWidgets.git] / include / wx / generic / textdlgg.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: textdlgg.h
3// Purpose: wxStatusBar class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
c50f1fb9 9// Licence: wxWindows license
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef __TEXTDLGH_G__
13#define __TEXTDLGH_G__
14
af49c4b8 15#if defined(__GNUG__) && !defined(__APPLE__)
c50f1fb9 16 #pragma interface "textdlgg.h"
c801d85f
KB
17#endif
18
c50f1fb9
VZ
19#include "wx/defs.h"
20
c801d85f
KB
21#include "wx/dialog.h"
22
fc0d5b6b
JS
23#if wxUSE_VALIDATORS
24#include "wx/valtext.h"
25#endif
26
dfe1eee3
VZ
27class WXDLLEXPORT wxTextCtrl;
28
9d2f3c71
OK
29WXDLLEXPORT_DATA(extern const wxChar*) wxGetTextFromUserPromptStr;
30WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString;
c801d85f 31
fc0d5b6b 32#define wxTextEntryDialogStyle (wxOK | wxCANCEL | wxCENTRE | wxWS_EX_VALIDATE_RECURSIVELY)
a294c6d5
VZ
33
34// ----------------------------------------------------------------------------
35// wxTextEntryDialog: a dialog with text control, [ok] and [cancel] buttons
36// ----------------------------------------------------------------------------
37
c50f1fb9 38class WXDLLEXPORT wxTextEntryDialog : public wxDialog
c801d85f 39{
c801d85f 40public:
c50f1fb9
VZ
41 wxTextEntryDialog(wxWindow *parent,
42 const wxString& message,
43 const wxString& caption = wxGetTextFromUserPromptStr,
44 const wxString& value = wxEmptyString,
a294c6d5 45 long style = wxTextEntryDialogStyle,
c50f1fb9 46 const wxPoint& pos = wxDefaultPosition);
c801d85f 47
a8f6ef51 48 void SetValue(const wxString& val);
c50f1fb9 49 wxString GetValue() const { return m_value; }
c801d85f 50
fc0d5b6b
JS
51#if wxUSE_VALIDATORS
52 void SetTextValidator( wxTextValidator& validator );
53 void SetTextValidator( long style = wxFILTER_NONE );
54 wxTextValidator* GetTextValidator() { return (wxTextValidator*)m_textctrl->GetValidator(); }
55#endif
56 // wxUSE_VALIDATORS
57
c50f1fb9 58 // implementation only
c801d85f
KB
59 void OnOK(wxCommandEvent& event);
60
c50f1fb9
VZ
61protected:
62 wxTextCtrl *m_textctrl;
63 wxString m_value;
479cd5de 64 long m_dialogStyle;
c50f1fb9
VZ
65
66private:
67 DECLARE_EVENT_TABLE()
a294c6d5 68 DECLARE_DYNAMIC_CLASS(wxTextEntryDialog)
c801d85f
KB
69};
70
c49245f8 71// ----------------------------------------------------------------------------
31528cd3 72// function to get a string from user
c49245f8
VZ
73// ----------------------------------------------------------------------------
74
c50f1fb9
VZ
75wxString WXDLLEXPORT
76wxGetTextFromUser(const wxString& message,
77 const wxString& caption = wxGetTextFromUserPromptStr,
78 const wxString& default_value = wxEmptyString,
79 wxWindow *parent = (wxWindow *) NULL,
80 int x = -1,
81 int y = -1,
82 bool centre = TRUE);
c801d85f 83
a294c6d5
VZ
84wxString WXDLLEXPORT
85wxGetPasswordFromUser(const wxString& message,
86 const wxString& caption = wxGetTextFromUserPromptStr,
87 const wxString& default_value = wxEmptyString,
88 wxWindow *parent = (wxWindow *) NULL);
89
c801d85f
KB
90#endif
91 // __TEXTDLGH_G__