1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: textdlgg.h
|
2004-02-07 13:55:49 +00:00
|
|
|
// Purpose: wxTextEntryDialog class
|
1998-05-20 14:01:55 +00:00
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
2003-03-17 10:34:04 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2007-11-02 05:04:26 +00:00
|
|
|
#ifndef _WX_TEXTDLGG_H_
|
|
|
|
#define _WX_TEXTDLGG_H_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-06-28 21:39:49 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
2005-08-31 23:48:11 +00:00
|
|
|
#if wxUSE_TEXTDLG
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#include "wx/dialog.h"
|
|
|
|
|
2002-06-23 13:51:32 +00:00
|
|
|
#if wxUSE_VALIDATORS
|
|
|
|
#include "wx/valtext.h"
|
2007-11-02 05:04:26 +00:00
|
|
|
#include "wx/textctrl.h"
|
2002-06-23 13:51:32 +00:00
|
|
|
#endif
|
|
|
|
|
2007-07-09 10:09:52 +00:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxTextCtrl;
|
1999-06-29 12:34:18 +00:00
|
|
|
|
2007-11-12 21:37:46 +00:00
|
|
|
extern WXDLLEXPORT_DATA(const char) wxGetTextFromUserPromptStr[];
|
|
|
|
extern WXDLLEXPORT_DATA(const char) wxGetPasswordFromUserPromptStr[];
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2002-06-23 13:51:32 +00:00
|
|
|
#define wxTextEntryDialogStyle (wxOK | wxCANCEL | wxCENTRE | wxWS_EX_VALIDATE_RECURSIVELY)
|
2000-01-24 18:26:54 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxTextEntryDialog: a dialog with text control, [ok] and [cancel] buttons
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
1999-06-28 21:39:49 +00:00
|
|
|
class WXDLLEXPORT wxTextEntryDialog : public wxDialog
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
|
|
|
public:
|
1999-06-28 21:39:49 +00:00
|
|
|
wxTextEntryDialog(wxWindow *parent,
|
|
|
|
const wxString& message,
|
|
|
|
const wxString& caption = wxGetTextFromUserPromptStr,
|
|
|
|
const wxString& value = wxEmptyString,
|
2000-01-24 18:26:54 +00:00
|
|
|
long style = wxTextEntryDialogStyle,
|
1999-06-28 21:39:49 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2002-02-20 13:52:46 +00:00
|
|
|
void SetValue(const wxString& val);
|
1999-06-28 21:39:49 +00:00
|
|
|
wxString GetValue() const { return m_value; }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2002-06-23 13:51:32 +00:00
|
|
|
#if wxUSE_VALIDATORS
|
2005-09-24 21:43:15 +00:00
|
|
|
void SetTextValidator( const wxTextValidator& validator );
|
2002-06-23 13:51:32 +00:00
|
|
|
void SetTextValidator( long style = wxFILTER_NONE );
|
|
|
|
wxTextValidator* GetTextValidator() { return (wxTextValidator*)m_textctrl->GetValidator(); }
|
|
|
|
#endif
|
|
|
|
// wxUSE_VALIDATORS
|
|
|
|
|
1999-06-28 21:39:49 +00:00
|
|
|
// implementation only
|
1998-05-20 14:01:55 +00:00
|
|
|
void OnOK(wxCommandEvent& event);
|
|
|
|
|
1999-06-28 21:39:49 +00:00
|
|
|
protected:
|
|
|
|
wxTextCtrl *m_textctrl;
|
|
|
|
wxString m_value;
|
2000-01-05 15:35:04 +00:00
|
|
|
long m_dialogStyle;
|
1999-06-28 21:39:49 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_EVENT_TABLE()
|
2000-01-24 18:26:54 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxTextEntryDialog)
|
2003-01-02 23:38:11 +00:00
|
|
|
DECLARE_NO_COPY_CLASS(wxTextEntryDialog)
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
2004-11-09 19:13:15 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxPasswordEntryDialog: dialog with password control, [ok] and [cancel]
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxPasswordEntryDialog : public wxTextEntryDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxPasswordEntryDialog(wxWindow *parent,
|
|
|
|
const wxString& message,
|
|
|
|
const wxString& caption = wxGetPasswordFromUserPromptStr,
|
|
|
|
const wxString& value = wxEmptyString,
|
|
|
|
long style = wxTextEntryDialogStyle,
|
|
|
|
const wxPoint& pos = wxDefaultPosition);
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxPasswordEntryDialog)
|
|
|
|
DECLARE_NO_COPY_CLASS(wxPasswordEntryDialog)
|
|
|
|
};
|
|
|
|
|
1999-07-22 23:39:47 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1999-07-23 21:03:02 +00:00
|
|
|
// function to get a string from user
|
1999-07-22 23:39:47 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
1999-06-28 21:39:49 +00:00
|
|
|
wxString WXDLLEXPORT
|
|
|
|
wxGetTextFromUser(const wxString& message,
|
|
|
|
const wxString& caption = wxGetTextFromUserPromptStr,
|
|
|
|
const wxString& default_value = wxEmptyString,
|
|
|
|
wxWindow *parent = (wxWindow *) NULL,
|
2004-09-09 14:14:20 +00:00
|
|
|
wxCoord x = wxDefaultCoord,
|
|
|
|
wxCoord y = wxDefaultCoord,
|
2004-06-17 16:22:36 +00:00
|
|
|
bool centre = true);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2000-01-24 18:26:54 +00:00
|
|
|
wxString WXDLLEXPORT
|
|
|
|
wxGetPasswordFromUser(const wxString& message,
|
2004-11-09 19:13:15 +00:00
|
|
|
const wxString& caption = wxGetPasswordFromUserPromptStr,
|
2000-01-24 18:26:54 +00:00
|
|
|
const wxString& default_value = wxEmptyString,
|
2004-11-06 02:21:39 +00:00
|
|
|
wxWindow *parent = (wxWindow *) NULL,
|
|
|
|
wxCoord x = wxDefaultCoord,
|
|
|
|
wxCoord y = wxDefaultCoord,
|
|
|
|
bool centre = true);
|
2000-01-24 18:26:54 +00:00
|
|
|
|
2003-05-23 18:59:07 +00:00
|
|
|
#endif
|
|
|
|
// wxUSE_TEXTDLG
|
2007-11-02 05:04:26 +00:00
|
|
|
#endif // _WX_TEXTDLGG_H_
|