summaryrefslogtreecommitdiff
path: root/noncore/settings
Unidiff
Diffstat (limited to 'noncore/settings') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sysinfo/devicesinfo.cpp16
-rw-r--r--noncore/settings/sysinfo/devicesinfo.h16
2 files changed, 23 insertions, 9 deletions
diff --git a/noncore/settings/sysinfo/devicesinfo.cpp b/noncore/settings/sysinfo/devicesinfo.cpp
index a1c9e0b..4bce65f 100644
--- a/noncore/settings/sysinfo/devicesinfo.cpp
+++ b/noncore/settings/sysinfo/devicesinfo.cpp
@@ -33,2 +33,3 @@ _;:,     .>    :=|. This program is free software; you can
33#include <opie2/oinputsystem.h> 33#include <opie2/oinputsystem.h>
34#include <opie2/olayout.h>
34#include <opie2/olistview.h> 35#include <opie2/olistview.h>
@@ -39,5 +40,5 @@ using namespace Opie::Ui;
39/* QT */ 40/* QT */
41#include <qlistview.h>
40#include <qcombobox.h> 42#include <qcombobox.h>
41#include <qfile.h> 43#include <qfile.h>
42#include <qlayout.h>
43#include <qpushbutton.h> 44#include <qpushbutton.h>
@@ -50,3 +51,3 @@ using namespace Opie::Ui;
50DevicesView::DevicesView( QWidget* parent, const char* name, WFlags fl ) 51DevicesView::DevicesView( QWidget* parent, const char* name, WFlags fl )
51 :OListView( parent, name, fl ) 52 :Opie::Ui::OListView( parent, name, fl )
52{ 53{
@@ -62,2 +63,4 @@ DevicesView::DevicesView( QWidget* parent, const char* name, WFlags fl )
62 ( new UsbCategory( root ) )->populate(); 63 ( new UsbCategory( root ) )->populate();
64
65 connect( this, SIGNAL(selectionChanged(QListViewItem*)), this, SLOT(selectionChanged(QListViewItem*)) );
63} 66}
@@ -68,2 +71,9 @@ DevicesView::~DevicesView()
68 71
72
73void DevicesView::selectionChanged( QListViewItem* item )
74{
75 odebug << "DevicesView::selectionChanged to '" << item->text( 0 ) << "'" << oendl;
76}
77
78
69//================================================================================================= 79//=================================================================================================
@@ -72,3 +82,3 @@ DevicesInfo::DevicesInfo( QWidget* parent, const char* name, WFlags fl )
72{ 82{
73 QVBoxLayout *layout = new QVBoxLayout( this ); 83 OAutoBoxLayout *layout = new OAutoBoxLayout( this );
74 layout->setSpacing( 4 ); 84 layout->setSpacing( 4 );
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
@@ -31,8 +31,10 @@ _;:,     .>    :=|. This program is free software; you can
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{
@@ -42,2 +44,4 @@ public:
42 ~DevicesView(); 44 ~DevicesView();
45public slots:
46 void selectionChanged( QListViewItem* item );
43}; 47};
@@ -53,3 +57,3 @@ public:
53private: 57private:
54 OListView* view; 58 Opie::Ui::OListView* view;
55 59
@@ -59,3 +63,3 @@ private slots:
59//================================================================================================= 63//=================================================================================================
60class Category : public OListViewItem 64class Category : public Opie::Ui::OListViewItem
61{ 65{
@@ -69,3 +73,3 @@ public:
69//================================================================================================= 73//=================================================================================================
70class Device : public OListViewItem 74class Device : public Opie::Ui::OListViewItem
71{ 75{