summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/bluemanager.cpp
Side-by-side diff
Diffstat (limited to 'noncore/net/opietooth/manager/bluemanager.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/bluemanager.cpp81
1 files changed, 81 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/bluemanager.cpp b/noncore/net/opietooth/manager/bluemanager.cpp
new file mode 100644
index 0000000..ede510f
--- a/dev/null
+++ b/noncore/net/opietooth/manager/bluemanager.cpp
@@ -0,0 +1,81 @@
+/*
+ * today.cpp : main class
+ *
+ * ---------------------
+ *
+ * begin : Sun 10 17:20:00 CEST 2002
+ * copyright : (c) 2002 by Maximilian Reiß
+ * email : max.reiss@gmx.de
+ *
+ */
+/***************************************************************************
+ * *
+ * 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. *
+ * *
+ ***************************************************************************/
+
+#include "bluemanager.h"
+
+#include <qpe/timestring.h>
+#include <qpe/config.h>
+#include <qpe/qcopenvelope_qws.h>
+//#include <qpe/qprocess.h>
+#include <qpe/resource.h>
+#include <qpe/contact.h>
+#include <qpe/global.h>
+#include <qpe/qpeapplication.h>
+
+#include <qdir.h>
+#include <qfile.h>
+#include <qdatetime.h>
+#include <qtextstream.h>
+#include <qcheckbox.h>
+#include <qspinbox.h>
+#include <qpushbutton.h>
+#include <qlabel.h>
+#include <qtimer.h>
+#include <qpixmap.h>
+//#include <qfileinfo.h>
+#include <qlayout.h>
+#include <qtl.h>
+
+
+//#include <iostream.h>
+#include <unistd.h>
+#include <stdlib.h>
+
+
+/*
+ * Constructs a Example which is a child of 'parent', with the
+ * name 'name' and widget flags set to 'f'
+ */
+BlueManager::BlueManager( QWidget* parent, const char* name, WFlags fl )
+ : BluetoothBase( parent, name, fl ) {
+
+
+ draw();
+}
+
+
+/*
+ * Repaint method. Reread all fields.
+ */
+void BlueManager::draw() {
+
+ QTimer::singleShot( 20*1000, this, SLOT(draw() ) );
+}
+
+
+void BlueManager::init() {
+
+}
+
+BlueManager::~BlueManager() {
+}
+
+
+
+