]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: textdlgg.h | |
3 | // Purpose: wxTextEntryDialog class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef __TEXTDLGH_G__ | |
13 | #define __TEXTDLGH_G__ | |
14 | ||
15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
16 | #pragma interface "textdlgg.h" | |
17 | #endif | |
18 | ||
19 | #if wxUSE_TEXTDLG | |
20 | #include "wx/defs.h" | |
21 | ||
22 | #include "wx/dialog.h" | |
23 | ||
24 | #if wxUSE_VALIDATORS | |
25 | #include "wx/valtext.h" | |
26 | #endif | |
27 | ||
28 | class WXDLLEXPORT wxTextCtrl; | |
29 | ||
30 | extern WXDLLEXPORT_DATA(const wxChar*) wxGetTextFromUserPromptStr; | |
31 | extern WXDLLEXPORT_DATA(const wxChar*) wxGetPasswordFromUserPromptStr; | |
32 | ||
33 | #define wxTextEntryDialogStyle (wxOK | wxCANCEL | wxCENTRE | wxWS_EX_VALIDATE_RECURSIVELY) | |
34 | ||
35 | // ---------------------------------------------------------------------------- | |
36 | // wxTextEntryDialog: a dialog with text control, [ok] and [cancel] buttons | |
37 | // ---------------------------------------------------------------------------- | |
38 | ||
39 | class WXDLLEXPORT wxTextEntryDialog : public wxDialog | |
40 | { | |
41 | public: | |
42 | wxTextEntryDialog(wxWindow *parent, | |
43 | const wxString& message, | |
44 | const wxString& caption = wxGetTextFromUserPromptStr, | |
45 | const wxString& value = wxEmptyString, | |
46 | long style = wxTextEntryDialogStyle, | |
47 | const wxPoint& pos = wxDefaultPosition); | |
48 | ||
49 | void SetValue(const wxString& val); | |
50 | wxString GetValue() const { return m_value; } | |
51 | ||
52 | #if wxUSE_VALIDATORS | |
53 | void SetTextValidator( wxTextValidator& validator ); | |
54 | void SetTextValidator( long style = wxFILTER_NONE ); | |
55 | wxTextValidator* GetTextValidator() { return (wxTextValidator*)m_textctrl->GetValidator(); } | |
56 | #endif | |
57 | // wxUSE_VALIDATORS | |
58 | ||
59 | // implementation only | |
60 | void OnOK(wxCommandEvent& event); | |
61 | ||
62 | protected: | |
63 | wxTextCtrl *m_textctrl; | |
64 | wxString m_value; | |
65 | long m_dialogStyle; | |
66 | ||
67 | private: | |
68 | DECLARE_EVENT_TABLE() | |
69 | DECLARE_DYNAMIC_CLASS(wxTextEntryDialog) | |
70 | DECLARE_NO_COPY_CLASS(wxTextEntryDialog) | |
71 | }; | |
72 | ||
73 | // ---------------------------------------------------------------------------- | |
74 | // wxPasswordEntryDialog: dialog with password control, [ok] and [cancel] | |
75 | // ---------------------------------------------------------------------------- | |
76 | ||
77 | class WXDLLEXPORT wxPasswordEntryDialog : public wxTextEntryDialog | |
78 | { | |
79 | public: | |
80 | wxPasswordEntryDialog(wxWindow *parent, | |
81 | const wxString& message, | |
82 | const wxString& caption = wxGetPasswordFromUserPromptStr, | |
83 | const wxString& value = wxEmptyString, | |
84 | long style = wxTextEntryDialogStyle, | |
85 | const wxPoint& pos = wxDefaultPosition); | |
86 | private: | |
87 | DECLARE_DYNAMIC_CLASS(wxPasswordEntryDialog) | |
88 | DECLARE_NO_COPY_CLASS(wxPasswordEntryDialog) | |
89 | }; | |
90 | ||
91 | // ---------------------------------------------------------------------------- | |
92 | // function to get a string from user | |
93 | // ---------------------------------------------------------------------------- | |
94 | ||
95 | wxString WXDLLEXPORT | |
96 | wxGetTextFromUser(const wxString& message, | |
97 | const wxString& caption = wxGetTextFromUserPromptStr, | |
98 | const wxString& default_value = wxEmptyString, | |
99 | wxWindow *parent = (wxWindow *) NULL, | |
100 | wxCoord x = wxDefaultCoord, | |
101 | wxCoord y = wxDefaultCoord, | |
102 | bool centre = true); | |
103 | ||
104 | wxString WXDLLEXPORT | |
105 | wxGetPasswordFromUser(const wxString& message, | |
106 | const wxString& caption = wxGetPasswordFromUserPromptStr, | |
107 | const wxString& default_value = wxEmptyString, | |
108 | wxWindow *parent = (wxWindow *) NULL, | |
109 | wxCoord x = wxDefaultCoord, | |
110 | wxCoord y = wxDefaultCoord, | |
111 | bool centre = true); | |
112 | ||
113 | #endif | |
114 | // wxUSE_TEXTDLG | |
115 | #endif | |
116 | // __TEXTDLGH_G__ |