summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/bluebase.h
Unidiff
Diffstat (limited to 'noncore/net/opietooth/manager/bluebase.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/bluebase.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.h b/noncore/net/opietooth/manager/bluebase.h
index 0516c16..ce0483f 100644
--- a/noncore/net/opietooth/manager/bluebase.h
+++ b/noncore/net/opietooth/manager/bluebase.h
@@ -2,24 +2,25 @@
2#ifndef BLUEBASE_H 2#ifndef BLUEBASE_H
3#define BLUEBASE_H 3#define BLUEBASE_H
4 4
5#include <qvariant.h> 5#include <qvariant.h>
6#include <qwidget.h> 6#include <qwidget.h>
7#include <qscrollview.h> 7#include <qscrollview.h>
8#include <qsplitter.h> 8#include <qsplitter.h>
9#include <qlist.h> 9#include <qlist.h>
10#include <qpixmap.h> 10#include <qpixmap.h>
11 11
12#include "bluetoothbase.h" 12#include "bluetoothbase.h"
13#include "btlistitem.h" 13#include "btlistitem.h"
14#include "bticonloader.h"
14 15
15#include <remotedevice.h> 16#include <remotedevice.h>
16#include <manager.h> 17#include <manager.h>
17 18
18class QVBox; 19class QVBox;
19class QHBoxLayout; 20class QHBoxLayout;
20class QGridLayout; 21class QGridLayout;
21class QFrame; 22class QFrame;
22class QLabel; 23class QLabel;
23class QPushButton; 24class QPushButton;
24class QTabWidget; 25class QTabWidget;
25class QCheckBox; 26class QCheckBox;
@@ -55,24 +56,26 @@ namespace OpieTooth {
55 void deviceActive( RemoteDevice *device ); 56 void deviceActive( RemoteDevice *device );
56 57
57 QString deviceName; 58 QString deviceName;
58 QString defaultPasskey; 59 QString defaultPasskey;
59 int useEncryption; 60 int useEncryption;
60 int enableAuthentification; 61 int enableAuthentification;
61 int enablePagescan; 62 int enablePagescan;
62 int enableInquiryscan; 63 int enableInquiryscan;
63 64
64 QPixmap offPix; 65 QPixmap offPix;
65 QPixmap onPix; 66 QPixmap onPix;
66 67
68 BTIconLoader *iconLoader;
69
67 private slots: 70 private slots:
68 void addSearchedDevices( QList<RemoteDevice> &newDevices ); 71 void addSearchedDevices( QList<RemoteDevice> &newDevices );
69 void addServicesToDevice( BTListItem *item ); 72 void addServicesToDevice( BTListItem *item );
70 void addServicesToDevice( const QString& device, Services::ValueList ); 73 void addServicesToDevice( const QString& device, Services::ValueList );
71 void addConnectedDevices(); 74 void addConnectedDevices();
72 void addConnectedDevices( Connection::ValueList ); 75 void addConnectedDevices( Connection::ValueList );
73 void startServiceActionClicked( QListViewItem *item ); 76 void startServiceActionClicked( QListViewItem *item );
74 void startServiceActionHold( QListViewItem *, const QPoint &, int ); 77 void startServiceActionHold( QListViewItem *, const QPoint &, int );
75 void deviceActive( const QString& mac, bool connected ); 78 void deviceActive( const QString& mac, bool connected );
76 void applyConfigChanges(); 79 void applyConfigChanges();
77 80
78 }; 81 };