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

« back to all changes in this revision

Viewing changes to src/passkeyagent.h

  • 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
#ifndef PASSKEY_H
 
26
#define PASSKEY_H
 
27
 
 
28
#include "passkeydialog.h"
 
29
 
 
30
#include <solid/control/bluetoothmanager.h>
 
31
#include <solid/control/bluetoothremotedevice.h>
 
32
#include <solid/control/bluetoothinterface.h>
 
33
#include <solid/control/bluetoothsecurity.h>
 
34
 
 
35
 
 
36
class PasskeyAgent : public Solid::Control::BluetoothPasskeyAgent
 
37
{
 
38
Q_OBJECT
 
39
 
 
40
public:
 
41
        PasskeyAgent(QObject* parent = 0);
 
42
        ~PasskeyAgent();
 
43
 
 
44
 
 
45
private:
 
46
        QObject* m_parent;
 
47
 
 
48
        PasskeyDialog* dialog;
 
49
        
 
50
        Solid::Control::BluetoothInterface* iface;
 
51
 
 
52
        QString passkey;
 
53
 
 
54
public slots:
 
55
 
 
56
        virtual QString requestPasskey(const QString &ubi, bool isNumeric);
 
57
        virtual bool confirmPasskey(const QString &ubi, const QString &passkey);
 
58
        virtual void displayPasskey(const QString &ubi, const QString &passkey);
 
59
        virtual void keypress(const QString &ubi);
 
60
        virtual void completedAuthentication(const QString &ubi);
 
61
        virtual void cancelAuthentication(const QString &ubi);
 
62
 
 
63
        void slotOkClicked();
 
64
        
 
65
};
 
66
 
 
67
 
 
68
#endif