summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/rfcommassigndialogimpl.h
authorkorovkin <korovkin>2006-03-25 18:10:13 (UTC)
committer korovkin <korovkin>2006-03-25 18:10:13 (UTC)
commitc4f82599db775f52c7e04cce09c7c45ecc89ccfd (patch) (side-by-side diff)
tree81d48e5363a2135bb6820510ae7f5dee9999e8f2 /noncore/net/opietooth/manager/rfcommassigndialogimpl.h
parentda3c4a6231882bc56266162415a8d1a2a1bf0293 (diff)
downloadopie-c4f82599db775f52c7e04cce09c7c45ecc89ccfd.zip
opie-c4f82599db775f52c7e04cce09c7c45ecc89ccfd.tar.gz
opie-c4f82599db775f52c7e04cce09c7c45ecc89ccfd.tar.bz2
Added RFCOMM binding table functionality.
Diffstat (limited to 'noncore/net/opietooth/manager/rfcommassigndialogimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/rfcommassigndialogimpl.h40
1 files changed, 25 insertions, 15 deletions
diff --git a/noncore/net/opietooth/manager/rfcommassigndialogimpl.h b/noncore/net/opietooth/manager/rfcommassigndialogimpl.h
index 9983632..12cde0e 100644
--- a/noncore/net/opietooth/manager/rfcommassigndialogimpl.h
+++ b/noncore/net/opietooth/manager/rfcommassigndialogimpl.h
@@ -1,3 +1,13 @@
+/* $Id$ */
+/* RFCOMM binding table edit dialog */
+/***************************************************************************
+ * *
+ * 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. *
+ * *
+ ***************************************************************************/
#ifndef RFCOMMASSIGN
#define RFCOMMASSIGN
@@ -12,26 +22,26 @@
namespace OpieTooth {
class RfcommAssignDialog: public RfcommAssignDialogBase {
-
- Q_OBJECT
-
+ Q_OBJECT
public:
+ RfcommAssignDialog(QWidget* parent = 0, const char* name = 0,
+ bool modal = 0, WFlags fl = 0);
+ ~RfcommAssignDialog();
- RfcommAssignDialog( QWidget* parent = 0, const char* name = 0,bool modal = 0, WFlags fl = 0 );
- ~RfcommAssignDialog();
-
- void loadConfig();
- void saveConfig();
+ void loadConfig();
+ void saveConfig();
- void newDevice( const QString & mac );
+ void newDevice( const QString & mac, int channel );
private:
- QScrollView *m_scrollView;
- // how many rfcomm devices are possible
- int m_range;
- QMap< int, RfcommDialogItem* > m_itemList;
- QVBox *m_box;
- RfCommConfHandler *confHandler;
+ QScrollView *m_scrollView;
+ // how many rfcomm devices are possible
+ int m_range;
+ QMap< int, RfcommDialogItem* > m_itemList;
+ QVBox *m_box;
+ RfCommConfHandler *confHandler;
+ protected slots:
+ virtual void accept();
};
}