summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/devicesinfo.h
authormickeyl <mickeyl>2005-05-03 22:32:11 (UTC)
committer mickeyl <mickeyl>2005-05-03 22:32:11 (UTC)
commit1f412e211a7d5759d2ca51aa4e14c6292984f124 (patch) (unidiff)
tree6a6634d76f633cd5e8f3c6fcdf82f0604cdbad64 /noncore/settings/sysinfo/devicesinfo.h
parent1daea169fcc0007727f0752251ca4546817999b7 (diff)
downloadopie-1f412e211a7d5759d2ca51aa4e14c6292984f124.zip
opie-1f412e211a7d5759d2ca51aa4e14c6292984f124.tar.gz
opie-1f412e211a7d5759d2ca51aa4e14c6292984f124.tar.bz2
use OAutoBoxLayout for devices info
Diffstat (limited to 'noncore/settings/sysinfo/devicesinfo.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sysinfo/devicesinfo.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/noncore/settings/sysinfo/devicesinfo.h b/noncore/settings/sysinfo/devicesinfo.h
index 60ec999..262af31 100644
--- a/noncore/settings/sysinfo/devicesinfo.h
+++ b/noncore/settings/sysinfo/devicesinfo.h
@@ -29,17 +29,21 @@ _;:,     .>    :=|. This program is free software; you can
29#ifndef DEVICESINFO_H 29#ifndef DEVICESINFO_H
30#define DEVICESINFO_H 30#define DEVICESINFO_H
31 31
32#include <qwidget.h> 32/* OPIE */
33#include <opie2/olistview.h> 33#include <opie2/olistview.h>
34using namespace Opie::Ui; 34
35/* QT */
36#include <qwidget.h>
35 37
36//================================================================================================= 38//=================================================================================================
37class DevicesView : public OListView 39class DevicesView : public Opie::Ui::OListView
38{ 40{
39 Q_OBJECT 41 Q_OBJECT
40public: 42public:
41 DevicesView( QWidget* parent = 0, const char* name = 0, WFlags f = 0 ); 43 DevicesView( QWidget* parent = 0, const char* name = 0, WFlags f = 0 );
42 ~DevicesView(); 44 ~DevicesView();
45public slots:
46 void selectionChanged( QListViewItem* item );
43}; 47};
44 48
45//================================================================================================= 49//=================================================================================================
@@ -51,13 +55,13 @@ public:
51 ~DevicesInfo(); 55 ~DevicesInfo();
52 56
53private: 57private:
54 OListView* view; 58 Opie::Ui::OListView* view;
55 59
56private slots: 60private slots:
57}; 61};
58 62
59//================================================================================================= 63//=================================================================================================
60class Category : public OListViewItem 64class Category : public Opie::Ui::OListViewItem
61{ 65{
62public: 66public:
63 Category( DevicesView* parent, const QString& name ); 67 Category( DevicesView* parent, const QString& name );
@@ -67,7 +71,7 @@ public:
67}; 71};
68 72
69//================================================================================================= 73//=================================================================================================
70class Device : public OListViewItem 74class Device : public Opie::Ui::OListViewItem
71{ 75{
72public: 76public:
73 Device( Category* parent, const QString& name ); 77 Device( Category* parent, const QString& name );