summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/devicesinfo.h
authormickeyl <mickeyl>2005-05-02 13:11:18 (UTC)
committer mickeyl <mickeyl>2005-05-02 13:11:18 (UTC)
commit3a86e1464fb00d3d9b9962bcabc1041d8a3d9343 (patch) (side-by-side diff)
tree1cee100c29a56ab34ea60f98a2711a8da7c025e7 /noncore/settings/sysinfo/devicesinfo.h
parentd70e9287e4f7aabaed564e5c9c6cf2c4bb04afec (diff)
downloadopie-3a86e1464fb00d3d9b9962bcabc1041d8a3d9343.zip
opie-3a86e1464fb00d3d9b9962bcabc1041d8a3d9343.tar.gz
opie-3a86e1464fb00d3d9b9962bcabc1041d8a3d9343.tar.bz2
prepare for inclusion of DevicesInfo
Diffstat (limited to 'noncore/settings/sysinfo/devicesinfo.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sysinfo/devicesinfo.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/noncore/settings/sysinfo/devicesinfo.h b/noncore/settings/sysinfo/devicesinfo.h
new file mode 100644
index 0000000..082586b
--- a/dev/null
+++ b/noncore/settings/sysinfo/devicesinfo.h
@@ -0,0 +1,56 @@
+/*
+                This file is part of the Opie Project
+ =. Copyright (C) 2005 Michael 'Mickey' Lauer <mickey@Vanille.de>
+ .=l. Copyright (C) The Opie Team <opie-devel@handhelds.org>
+          .>+-=
+_;:,     .>    :=|. This program is free software; you can
+.> <`_,   >  .   <= redistribute it and/or modify it under
+:`=1 )Y*s>-.--   : the terms of the GNU General Public
+.="- .-=="i,     .._ License as published by the Free Software
+- .   .-<_>     .<> Foundation; version 2 of the License.
+    ._= =}       :
+   .%`+i>       _;_.
+   .i_,=:_.      -<s. This program is distributed in the hope that
+    +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
+   : ..    .:,     . . . without even the implied warranty of
+   =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
+ _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
+..}^=.=       =       ; General Public License for more
+++=   -.     .`     .: details.
+:     =  ...= . :.=-
+-.   .:....=;==+<; You should have received a copy of the GNU
+ -_. . .   )=.  = General Public License along with
+   --        :-=` this application; see the file LICENSE.GPL.
+ If not, write to the Free Software Foundation,
+ Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+*/
+
+#ifndef DEVICESINFO_H
+#define DEVICESINFO_H
+
+#include <qwidget.h>
+#include <opie2/olistview.h>
+using namespace Opie::Ui;
+
+class DevicesView : public OListView
+{
+ Q_OBJECT
+public:
+ DevicesView( QWidget* parent = 0, const char* name = 0, WFlags f = 0 );
+ ~DevicesView();
+};
+
+class DevicesInfo : public QWidget
+{
+ Q_OBJECT
+public:
+ DevicesInfo( QWidget *parent = 0, const char *name = 0, WFlags f = 0 );
+ ~DevicesInfo();
+
+private:
+ OListView* view;
+
+private slots:
+};
+#endif