1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: textdlgg.h
|
|
|
|
// Purpose: wxStatusBar class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart and Markus Holzem
|
1999-06-28 17:39:49 -04:00
|
|
|
// Licence: wxWindows license
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __TEXTDLGH_G__
|
|
|
|
#define __TEXTDLGH_G__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
1999-06-28 17:39:49 -04:00
|
|
|
#pragma interface "textdlgg.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
|
|
|
|
1999-06-28 17:39:49 -04:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
#include "wx/dialog.h"
|
|
|
|
|
1999-06-29 08:34:18 -04:00
|
|
|
class WXDLLEXPORT wxTextCtrl;
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
// Handy dialog functions (will be converted into classes at some point)
|
1999-04-12 18:20:19 -04:00
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxGetTextFromUserPromptStr;
|
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString;
|
1998-05-20 10:01:55 -04:00
|
|
|
|
1999-06-28 17:39:49 -04:00
|
|
|
class WXDLLEXPORT wxTextEntryDialog : public wxDialog
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
1999-06-28 17:39:49 -04:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxTextEntryDialog)
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
public:
|
1999-06-28 17:39:49 -04:00
|
|
|
wxTextEntryDialog(wxWindow *parent,
|
|
|
|
const wxString& message,
|
|
|
|
const wxString& caption = wxGetTextFromUserPromptStr,
|
|
|
|
const wxString& value = wxEmptyString,
|
|
|
|
long style = wxOK | wxCANCEL | wxCENTRE,
|
|
|
|
const wxPoint& pos = wxDefaultPosition);
|
1998-05-20 10:01:55 -04:00
|
|
|
|
1999-06-28 17:39:49 -04:00
|
|
|
void SetValue(const wxString& val) { m_value = val; }
|
|
|
|
wxString GetValue() const { return m_value; }
|
1998-05-20 10:01:55 -04:00
|
|
|
|
1999-06-28 17:39:49 -04:00
|
|
|
// implementation only
|
1998-05-20 10:01:55 -04:00
|
|
|
void OnOK(wxCommandEvent& event);
|
|
|
|
|
1999-06-28 17:39:49 -04:00
|
|
|
protected:
|
|
|
|
wxTextCtrl *m_textctrl;
|
|
|
|
wxString m_value;
|
1999-08-11 07:53:40 -04:00
|
|
|
int m_dialogStyle;
|
1999-06-28 17:39:49 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_EVENT_TABLE()
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
1999-07-22 19:39:47 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
1999-07-23 17:03:02 -04:00
|
|
|
// function to get a string from user
|
1999-07-22 19:39:47 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
1999-06-28 17:39:49 -04:00
|
|
|
wxString WXDLLEXPORT
|
|
|
|
wxGetTextFromUser(const wxString& message,
|
|
|
|
const wxString& caption = wxGetTextFromUserPromptStr,
|
|
|
|
const wxString& default_value = wxEmptyString,
|
|
|
|
wxWindow *parent = (wxWindow *) NULL,
|
|
|
|
int x = -1,
|
|
|
|
int y = -1,
|
|
|
|
bool centre = TRUE);
|
1998-05-20 10:01:55 -04:00
|
|
|
|
|
|
|
#endif
|
|
|
|
// __TEXTDLGH_G__
|