summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/servicesdialog.h
authorkorovkin <korovkin>2006-04-20 12:37:33 (UTC)
committer korovkin <korovkin>2006-04-20 12:37:33 (UTC)
commitfce7a143353e2bdd41d878c6f0a1224e0f2a158e (patch) (unidiff)
tree41fc68d13e148b8979dde51401ce160f10197a6c /noncore/net/opietooth/manager/servicesdialog.h
parent6d3a8eaf3b92f8eec9908eed91568342fac5de1d (diff)
downloadopie-fce7a143353e2bdd41d878c6f0a1224e0f2a158e.zip
opie-fce7a143353e2bdd41d878c6f0a1224e0f2a158e.tar.gz
opie-fce7a143353e2bdd41d878c6f0a1224e0f2a158e.tar.bz2
Added services configuration dialog.
Diffstat (limited to 'noncore/net/opietooth/manager/servicesdialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/servicesdialog.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/servicesdialog.h b/noncore/net/opietooth/manager/servicesdialog.h
new file mode 100644
index 0000000..b42f290
--- a/dev/null
+++ b/noncore/net/opietooth/manager/servicesdialog.h
@@ -0,0 +1,30 @@
1/* $Id$ */
2/* Bluetooth services configuration dialog */
3/***************************************************************************
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 ***************************************************************************/
11#ifndef _SERVICESDIALOG_H_
12#define _SERVICESDIALOG_H_
13#include "servicesdialogbase.h"
14#include "btconfhandler.h"
15namespace OpieTooth {
16 class ServicesDialog : public ServicesDialogBase {
17 Q_OBJECT
18 public:
19 ServicesDialog(const QString& conf,
20 QWidget* parent = 0, const char* name = 0, bool modal = TRUE,
21 WFlags fl = 0);
22 ~ServicesDialog();
23 public:
24 BTConfHandler cfg; //configuration file
25 protected slots:
26 virtual void accept();
27 };
28};
29#endif
30//eof