]> git.saurik.com Git - wxWidgets.git/blame - include/wx/generic/textdlgg.h
Declare wxObject
[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$
371a5b4e
JS
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
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
d7260478 19#if wxUSE_TEXTDLG
c50f1fb9
VZ
20#include "wx/defs.h"
21
c801d85f
KB
22#include "wx/dialog.h"
23
fc0d5b6b
JS
24#if wxUSE_VALIDATORS
25#include "wx/valtext.h"
26#endif
27
dfe1eee3
VZ
28class WXDLLEXPORT wxTextCtrl;
29
9d2f3c71
OK
30WXDLLEXPORT_DATA(extern const wxChar*) wxGetTextFromUserPromptStr;
31WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString;
c801d85f 32
fc0d5b6b 33#define wxTextEntryDialogStyle (wxOK | wxCANCEL | wxCENTRE | wxWS_EX_VALIDATE_RECURSIVELY)
a294c6d5
VZ
34
35// ----------------------------------------------------------------------------
36// wxTextEntryDialog: a dialog with text control, [ok] and [cancel] buttons
37// ----------------------------------------------------------------------------
38
c50f1fb9 39class WXDLLEXPORT wxTextEntryDialog : public wxDialog
c801d85f 40{
c801d85f 41public:
c50f1fb9
VZ
42 wxTextEntryDialog(wxWindow *parent,
43 const wxString& message,
44 const wxString& caption = wxGetTextFromUserPromptStr,
45 const wxString& value = wxEmptyString,
a294c6d5 46 long style = wxTextEntryDialogStyle,
c50f1fb9 47 const wxPoint& pos = wxDefaultPosition);
c801d85f 48
a8f6ef51 49 void SetValue(const wxString& val);
c50f1fb9 50 wxString GetValue() const { return m_value; }
c801d85f 51
fc0d5b6b
JS
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
c50f1fb9 59 // implementation only
c801d85f
KB
60 void OnOK(wxCommandEvent& event);
61
c50f1fb9
VZ
62protected:
63 wxTextCtrl *m_textctrl;
64 wxString m_value;
479cd5de 65 long m_dialogStyle;
c50f1fb9
VZ
66
67private:
68 DECLARE_EVENT_TABLE()
a294c6d5 69 DECLARE_DYNAMIC_CLASS(wxTextEntryDialog)
22f3361e 70 DECLARE_NO_COPY_CLASS(wxTextEntryDialog)
c801d85f
KB
71};
72
c49245f8 73// ----------------------------------------------------------------------------
31528cd3 74// function to get a string from user
c49245f8
VZ
75// ----------------------------------------------------------------------------
76
c50f1fb9
VZ
77wxString WXDLLEXPORT
78wxGetTextFromUser(const wxString& message,
79 const wxString& caption = wxGetTextFromUserPromptStr,
80 const wxString& default_value = wxEmptyString,
81 wxWindow *parent = (wxWindow *) NULL,
82 int x = -1,
83 int y = -1,
84 bool centre = TRUE);
c801d85f 85
a294c6d5
VZ
86wxString WXDLLEXPORT
87wxGetPasswordFromUser(const wxString& message,
88 const wxString& caption = wxGetTextFromUserPromptStr,
89 const wxString& default_value = wxEmptyString,
90 wxWindow *parent = (wxWindow *) NULL);
91
d7260478
JS
92#endif
93 // wxUSE_TEXTDLG
c801d85f
KB
94#endif
95 // __TEXTDLGH_G__