summaryrefslogtreecommitdiffstats
path: root/kmymoney2/wizards/wizardpages/userinfo.cpp
blob: 01d5e69d12fc06ae0919723989facec50594683a (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
47
48
49
50
51
52
/***************************************************************************
                             userinfo.cpp
                             -------------------
    begin                : Fri Jun  1 2007
    copyright            : (C) 2007 Thomas Baumgart
    email                : Thomas Baumgart <ipwizard@users.sourceforge.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.                                   *
 *                                                                         *
 ***************************************************************************/

// ----------------------------------------------------------------------------
// QT Includes

// ----------------------------------------------------------------------------
// KDE Includes

#include <klocale.h>
#include <klineedit.h>

// ----------------------------------------------------------------------------
// Project Includes

#include "userinfo.h"
#include <kmymoney/mymoneypayee.h>

UserInfo::UserInfo(TQWidget* tqparent, const char* name) :
  UserInfoDecl(tqparent, name)
{
  m_userNameEdit->setFocus();
}

MyMoneyPayee UserInfo::user(void) const
{
  MyMoneyPayee user;
  user.setName(m_userNameEdit->text());
  user.setAddress(m_streetEdit->text());
  user.setCity(m_townEdit->text());
  user.setState(m_countyEdit->text());
  user.setPostcode(m_postcodeEdit->text());
  user.setTelephone(m_telephoneEdit->text());
  user.setEmail(m_emailEdit->text());
  return user;
}

#include "userinfo.moc"