~ubuntu-branches/ubuntu/intrepid/kdebluetooth/intrepid-proposed

« back to all changes in this revision

Viewing changes to src/authdialog.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2008-08-07 09:49:47 UTC
  • mto: This revision was merged to the branch mainline in revision 56.
  • Revision ID: james.westby@ubuntu.com-20080807094947-pj6q3uxwuv7l844q
Tags: upstream-0.1
ImportĀ upstreamĀ versionĀ 0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *
 
3
 *  KBluetooth4 - KDE Bluetooth Framework
 
4
 *
 
5
 *  Copyright (C) 2008  Tom Patzig <tpatzig@suse.de>
 
6
 *
 
7
 *  This file is part of kbluetooth4.
 
8
 *
 
9
 *  kbluetooth4 is free software; you can redistribute it and/or modify
 
10
 *  it under the terms of the GNU General Public License as published by
 
11
 *  the Free Software Foundation; either version 2 of the License, or
 
12
 *  (at your option) any later version.
 
13
 *
 
14
 *  kbluetooth4 is distributed in the hope that it will be useful,
 
15
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
 *  GNU General Public License for more details.
 
18
 *
 
19
 *  You should have received a copy of the GNU General Public License
 
20
 *  along with kbluetooth4; if not, write to the Free Software
 
21
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
22
 *
 
23
*/
 
24
 
 
25
#include "authdialog.h"
 
26
 
 
27
AuthDialog::AuthDialog(QObject* parent) : Ui_AuthDialog()
 
28
{
 
29
        m_parent = parent;
 
30
        
 
31
        setupUi(this);
 
32
        setWindowIcon(KIcon("preferences-system-bluetooth"));
 
33
        iconLabel->setPixmap(KIcon("preferences-system-bluetooth").pixmap(32,32));
 
34
        connect(trustButton,SIGNAL(clicked()),this,SLOT(slotTrustButton()));
 
35
        connect(cancelButton,SIGNAL(clicked()),this,SLOT(slotCancelButton()));
 
36
        connect(allwTrustButton,SIGNAL(clicked()),this,SLOT(slotAlwaysTrust()));
 
37
 
 
38
}
 
39
 
 
40
AuthDialog::~AuthDialog()
 
41
{
 
42
 
 
43
 
 
44
}
 
45
 
 
46
void AuthDialog::setAddr(QString addr)
 
47
{
 
48
        addressLabel->setText(addr);
 
49
}
 
50
 
 
51
void AuthDialog::setName(QString name)
 
52
{
 
53
        nameLabel->setText(name);
 
54
}
 
55
 
 
56
void AuthDialog::setService(QString service)
 
57
{
 
58
        serviceLabel->setText(service);
 
59
}
 
60
 
 
61
void AuthDialog::slotTrustButton()
 
62
{
 
63
        done(1);
 
64
}
 
65
 
 
66
void AuthDialog::slotCancelButton()
 
67
{
 
68
        done(0);
 
69
}
 
70
void AuthDialog::slotAlwaysTrust()
 
71
{
 
72
        done(2);
 
73
}