summaryrefslogtreecommitdiffstats
path: root/knights/dlg_selectemail.cpp
blob: d33aefb38e3eae3e68308a165befb8348195af31 (plain)
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
37
38
39
40
41
42
43
44
45
46
/***************************************************************************
                          dlg_selectemail.cpp  -  description
                             -------------------
    begin                : Sun Oct 27 2002
    copyright            : (C) 2003 by Troy Corbin Jr.
    email                : tcorbin@users.sf.net
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#include "dlg_selectemail.moc"
#include <tqvbox.h>
#include <tqlineedit.h>
#include "resource.h"

dlg_selectemail::dlg_selectemail(TQWidget *tqparent, resource *Rsrc ) :
	KDialogBase(	tqparent,
								0,
								TRUE,
								i18n("Select Email Address"),
								Help|Ok,
								Ok,
								TRUE )
{
	myResource = Rsrc;
	BOX_Parent = makeVBoxMainWidget();

	EDIT_Email = new TQLineEdit( BOX_Parent );
	EDIT_Email->setText( myResource->Email_Address );
	connect( EDIT_Email, TQT_SIGNAL( returnPressed() ), this, TQT_SLOT( changeValue() ) );
}
dlg_selectemail::~dlg_selectemail()
{
}
void dlg_selectemail::changeValue( void )
{
	myResource->Email_Address = EDIT_Email->text();
	emit valuesChanged();
}