]>
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 | WXDLLEXPORT_DATA(extern const wxChar*) wxGetTextFromUserPromptStr; | |
31 | ||
32 | #define wxTextEntryDialogStyle (wxOK | wxCANCEL | wxCENTRE | wxWS_EX_VALIDATE_RECURSIVELY) | |
33 | ||
34 | // ---------------------------------------------------------------------------- | |
35 | // wxTextEntryDialog: a dialog with text control, [ok] and [cancel] buttons | |
36 | // ---------------------------------------------------------------------------- | |
37 | ||
38 | class WXDLLEXPORT wxTextEntryDialog : public wxDialog | |
39 | { | |
40 | public: | |
41 | wxTextEntryDialog(wxWindow *parent, | |
42 | const wxString& message, | |
43 | const wxString& caption = wxGetTextFromUserPromptStr, | |
44 | const wxString& value = wxEmptyString, | |
45 | long style = wxTextEntryDialogStyle, | |
46 | const wxPoint& pos = wxDefaultPosition); | |
47 | ||
48 | void SetValue(const wxString& val); | |
49 | wxString GetValue() const { return m_value; } | |
50 | ||
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 | ||
58 | // implementation only | |
59 | void OnOK(wxCommandEvent& event); | |
60 | ||
61 | protected: | |
62 | wxTextCtrl *m_textctrl; | |
63 | wxString m_value; | |
64 | long m_dialogStyle; | |
65 | ||
66 | private: | |
67 | DECLARE_EVENT_TABLE() | |
68 | DECLARE_DYNAMIC_CLASS(wxTextEntryDialog) | |
69 | DECLARE_NO_COPY_CLASS(wxTextEntryDialog) | |
70 | }; | |
71 | ||
72 | // ---------------------------------------------------------------------------- | |
73 | // function to get a string from user | |
74 | // ---------------------------------------------------------------------------- | |
75 | ||
76 | wxString WXDLLEXPORT | |
77 | wxGetTextFromUser(const wxString& message, | |
78 | const wxString& caption = wxGetTextFromUserPromptStr, | |
79 | const wxString& default_value = wxEmptyString, | |
80 | wxWindow *parent = (wxWindow *) NULL, | |
81 | wxCoord x = wxDefaultCoord, | |
82 | wxCoord y = wxDefaultCoord, | |
83 | bool centre = true); | |
84 | ||
85 | wxString WXDLLEXPORT | |
86 | wxGetPasswordFromUser(const wxString& message, | |
87 | const wxString& caption = wxGetTextFromUserPromptStr, | |
88 | const wxString& default_value = wxEmptyString, | |
89 | wxWindow *parent = (wxWindow *) NULL); | |
90 | ||
91 | #endif | |
92 | // wxUSE_TEXTDLG | |
93 | #endif | |
94 | // __TEXTDLGH_G__ |