summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/bluebase.h
authorkorovkin <korovkin>2006-04-14 19:22:37 (UTC)
committer korovkin <korovkin>2006-04-14 19:22:37 (UTC)
commita1bcbe41d45924713c4ead9b25ac5518473c9ca9 (patch) (unidiff)
tree3683eb401dd2d7cde4a7af15e72ecf7463b7208e /noncore/net/opietooth/manager/bluebase.h
parentbca53498f37ade8101611fecde82202e9ee1a55c (diff)
downloadopie-a1bcbe41d45924713c4ead9b25ac5518473c9ca9.zip
opie-a1bcbe41d45924713c4ead9b25ac5518473c9ca9.tar.gz
opie-a1bcbe41d45924713c4ead9b25ac5518473c9ca9.tar.bz2
Added RFCOMM <-> serial line forwarding functionality.
Diffstat (limited to 'noncore/net/opietooth/manager/bluebase.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/bluebase.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.h b/noncore/net/opietooth/manager/bluebase.h
index 48883d2..0128a88 100644
--- a/noncore/net/opietooth/manager/bluebase.h
+++ b/noncore/net/opietooth/manager/bluebase.h
@@ -14,12 +14,13 @@
14#include "btserviceitem.h" 14#include "btserviceitem.h"
15#include "btdeviceitem.h" 15#include "btdeviceitem.h"
16 16
17#include "popuphelper.h" 17#include "popuphelper.h"
18 18
19#include "bticonloader.h" 19#include "bticonloader.h"
20#include "forwarder.h"
20 21
21#include <remotedevice.h> 22#include <remotedevice.h>
22#include <manager.h> 23#include <manager.h>
23 24
24class QVBox; 25class QVBox;
25class QHBoxLayout; 26class QHBoxLayout;
@@ -76,24 +77,27 @@ namespace OpieTooth {
76 77
77 QPixmap m_offPix; 78 QPixmap m_offPix;
78 QPixmap m_onPix; 79 QPixmap m_onPix;
79 QPixmap m_findPix; 80 QPixmap m_findPix;
80 81
81 BTIconLoader *m_iconLoader; 82 BTIconLoader *m_iconLoader;
83 SerialForwarder* forwarder;
82 84
83 private slots: 85 private slots:
84 void addSearchedDevices( const QValueList<RemoteDevice> &newDevices ); 86 void addSearchedDevices( const QValueList<RemoteDevice> &newDevices );
85 void addServicesToDevices(); 87 void addServicesToDevices();
86 void addServicesToDevice( BTDeviceItem *item ); 88 void addServicesToDevice( BTDeviceItem *item );
87 void addServicesToDevice( const QString& device, Services::ValueList ); 89 void addServicesToDevice( const QString& device, Services::ValueList );
88 void addConnectedDevices(); 90 void addConnectedDevices();
89 void addConnectedDevices( ConnectionState::ValueList ); 91 void addConnectedDevices( ConnectionState::ValueList );
90 void startServiceActionClicked( QListViewItem *item ); 92 void startServiceActionClicked( QListViewItem *item );
91 void startServiceActionHold( QListViewItem *, const QPoint &, int ); 93 void startServiceActionHold( QListViewItem *, const QPoint &, int );
92 void deviceActive( const QString& mac, bool connected ); 94 void deviceActive( const QString& mac, bool connected );
93 void applyConfigChanges(); 95 void applyConfigChanges();
96 void doForward();
97 void forwardExit(Opie::Core::OProcess* proc);
94 void addSignalStrength(); 98 void addSignalStrength();
95 void addSignalStrength( const QString& mac, const QString& strengh ); 99 void addSignalStrength( const QString& mac, const QString& strengh );
96 void rfcommDialog(); 100 void rfcommDialog();
97 101
98 }; 102 };
99 103