-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddressDialog.h
More file actions
36 lines (28 loc) · 1.03 KB
/
Copy pathAddressDialog.h
File metadata and controls
36 lines (28 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/////////////////////////////////////////////////////////////////////////////
// Name: textdlgg.h
// Purpose: wxStatusBar class
// Author: Julian Smart
// Modified by:
// Created: 01/02/97
// RCS-ID: $Id: textdlgg.h,v 1.14 2002/08/31 11:29:12 GD Exp $
// Copyright: (c) Julian Smart and Markus Holzem
// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_ADDRESSDIALOG_H
#define INCLUDED_ADDRESSDIALOG_H
#include "wx/wx.h"
// ----------------------------------------------------------------------------
// wxTextEntryDialog: a dialog with text control, [ok] and [cancel] buttons
// ----------------------------------------------------------------------------
class AddressDialog : public wxDialog
{
public:
AddressDialog(wxWindow *parent);
wxString GetValue() const { return m_value; }
void OnOK (wxCommandEvent& event);
private:
wxTextCtrl * m_textctrl;
wxString m_value;
DECLARE_EVENT_TABLE()
};
#endif // INCLUDED_ADDRESSDIALOG_H