summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/impl/dir/dir.pro6
-rw-r--r--noncore/graphics/opie-eye/impl/dir/dir_ifaceinfo.cpp41
-rw-r--r--noncore/graphics/opie-eye/impl/dir/dir_setup.cpp48
-rw-r--r--noncore/graphics/opie-eye/impl/dir/dir_setup.h22
4 files changed, 77 insertions, 40 deletions
diff --git a/noncore/graphics/opie-eye/impl/dir/dir.pro b/noncore/graphics/opie-eye/impl/dir/dir.pro
index 675c327..6544fd9 100644
--- a/noncore/graphics/opie-eye/impl/dir/dir.pro
+++ b/noncore/graphics/opie-eye/impl/dir/dir.pro
@@ -1,10 +1,12 @@
1HEADERS += impl/dir/dir_dirview.h \ 1HEADERS += impl/dir/dir_dirview.h \
2 impl/dir/dir_ifaceinfo.h \ 2 impl/dir/dir_ifaceinfo.h \
3 impl/dir/dir_lister.h 3 impl/dir/dir_lister.h \
4 impl/dir/dir_setup.h
4 5
5 6
6 7
7SOURCES += impl/dir/dir_dirview.cpp \ 8SOURCES += impl/dir/dir_dirview.cpp \
8 impl/dir/dir_ifaceinfo.cpp \ 9 impl/dir/dir_ifaceinfo.cpp \
9 impl/dir/dir_lister.cpp 10 impl/dir/dir_lister.cpp \
11 impl/dir/dir_setup.cpp
10 12
diff --git a/noncore/graphics/opie-eye/impl/dir/dir_ifaceinfo.cpp b/noncore/graphics/opie-eye/impl/dir/dir_ifaceinfo.cpp
index 1e4ec40..3132a9e 100644
--- a/noncore/graphics/opie-eye/impl/dir/dir_ifaceinfo.cpp
+++ b/noncore/graphics/opie-eye/impl/dir/dir_ifaceinfo.cpp
@@ -3,8 +3,9 @@
3 * zecke@handhelds.org 3 * zecke@handhelds.org
4 */ 4 */
5 5
6#include "dir_ifaceinfo.h" 6#include "dir_ifaceinfo.h"
7#include "dir_setup.h"
7 8
8/* OPIE */ 9/* OPIE */
9#include <opie2/odebug.h> 10#include <opie2/odebug.h>
10#include <qpe/config.h> 11#include <qpe/config.h>
@@ -17,48 +18,11 @@
17#include <qlabel.h> 18#include <qlabel.h>
18#include <qlayout.h> 19#include <qlayout.h>
19#include <qspinbox.h> 20#include <qspinbox.h>
20 21
21namespace {
22 class DirImageWidget : public QFrame {
23 public:
24 DirImageWidget(): QFrame() {
25 setFrameStyle(Box|Raised);
26 QVBoxLayout *m_MainLayout = new QVBoxLayout( this, 6, 2, "m_MainLayout");
27 QGridLayout*RecDepthLayout = new QGridLayout( 0, 1, 1, 0, 6, "RecDepthLayout");
28
29 chkbox = new QCheckBox( QObject::tr("Show all files"), this );
30 m_MainLayout->addWidget(chkbox);
31 recWarningLabel = new QLabel(this);
32 recWarningLabel->setText(QObject::tr("<center><b>Be carefull with the following options!</b></center>"));
33 m_MainLayout->addWidget(recWarningLabel);
34 recBox = new QCheckBox( QObject::tr("Show files recursive"),this);
35 m_MainLayout->addWidget(recBox);
36 recDepthLabel = new QLabel(this);
37 recDepthLabel->setText(QObject::tr("Recursion depth:"));
38 RecDepthLayout->addWidget(recDepthLabel,0,0);
39 recDepth = new QSpinBox(this);
40 recDepth->setSizePolicy(QSizePolicy(QSizePolicy::MinimumExpanding,QSizePolicy::Fixed));
41 recDepth->setMaxValue(10);
42 recDepth->setMinValue(1);
43 recDepth->setSuffix(QObject::tr(" directories"));
44 RecDepthLayout->addWidget(recDepth,0,1);
45 m_MainLayout->addLayout(RecDepthLayout);
46 QSpacerItem *spacer1 = new QSpacerItem( 20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding );
47 m_MainLayout->addItem( spacer1 );
48
49 }
50 ~DirImageWidget() {}
51 QCheckBox* chkbox,*recBox;
52 QSpinBox * recDepth;
53 QLabel* recDepthLabel,*recWarningLabel;
54
55 };
56}
57
58
59DirInterfaceInfo::DirInterfaceInfo() { 22DirInterfaceInfo::DirInterfaceInfo() {
60} 23}
24
61DirInterfaceInfo::~DirInterfaceInfo() { 25DirInterfaceInfo::~DirInterfaceInfo() {
62} 26}
63 27
64QString DirInterfaceInfo::name()const { 28QString DirInterfaceInfo::name()const {
@@ -69,8 +33,9 @@ QWidget* DirInterfaceInfo::configWidget(const Config& cfg) {
69 DirImageWidget* wid = new DirImageWidget(); 33 DirImageWidget* wid = new DirImageWidget();
70 wid->chkbox->setChecked(cfg.readBoolEntry("Dir_Check_All_Files",false)); 34 wid->chkbox->setChecked(cfg.readBoolEntry("Dir_Check_All_Files",false));
71 wid->recBox->setChecked(cfg.readBoolEntry("Dir_Check_Recursive_Files",false)); 35 wid->recBox->setChecked(cfg.readBoolEntry("Dir_Check_Recursive_Files",false));
72 wid->recDepth->setValue(cfg.readNumEntry("Dir_Recursive_Files_Depth",10)); 36 wid->recDepth->setValue(cfg.readNumEntry("Dir_Recursive_Files_Depth",10));
37 wid->recDepth->setEnabled(wid->recBox->isChecked());
73 return wid; 38 return wid;
74} 39}
75 40
76void DirInterfaceInfo::writeConfig( QWidget* _wid, Config& cfg) { 41void DirInterfaceInfo::writeConfig( QWidget* _wid, Config& cfg) {
diff --git a/noncore/graphics/opie-eye/impl/dir/dir_setup.cpp b/noncore/graphics/opie-eye/impl/dir/dir_setup.cpp
new file mode 100644
index 0000000..7ce7434
--- a/dev/null
+++ b/noncore/graphics/opie-eye/impl/dir/dir_setup.cpp
@@ -0,0 +1,48 @@
1#include "dir_setup.h"
2
3/* QT */
4#include <qwidget.h>
5#include <qcheckbox.h>
6#include <qframe.h>
7#include <qhbox.h>
8#include <qlabel.h>
9#include <qlayout.h>
10#include <qspinbox.h>
11
12DirImageWidget::DirImageWidget()
13 : QFrame()
14{
15 setFrameStyle(Box|Raised);
16 QVBoxLayout *m_MainLayout = new QVBoxLayout( this, 6, 2, "m_MainLayout");
17 QGridLayout*RecDepthLayout = new QGridLayout( 0, 1, 1, 0, 6, "RecDepthLayout");
18
19 chkbox = new QCheckBox( QObject::tr("Show all files"), this );
20 m_MainLayout->addWidget(chkbox);
21 recWarningLabel = new QLabel(this);
22 recWarningLabel->setText(QObject::tr("<center><b>Be carefull with the following options!</b></center>"));
23 m_MainLayout->addWidget(recWarningLabel);
24 recBox = new QCheckBox( QObject::tr("Show files recursive"),this);
25 m_MainLayout->addWidget(recBox);
26 recDepthLabel = new QLabel(this);
27 recDepthLabel->setText(QObject::tr("Recursion depth:"));
28 RecDepthLayout->addWidget(recDepthLabel,0,0);
29 recDepth = new QSpinBox(this);
30 recDepth->setSizePolicy(QSizePolicy(QSizePolicy::MinimumExpanding,QSizePolicy::Fixed));
31 recDepth->setMaxValue(10);
32 recDepth->setMinValue(1);
33 recDepth->setSuffix(QObject::tr(" directories"));
34 RecDepthLayout->addWidget(recDepth,0,1);
35 m_MainLayout->addLayout(RecDepthLayout);
36 QSpacerItem *spacer1 = new QSpacerItem( 20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding );
37 m_MainLayout->addItem( spacer1 );
38 connect(recBox,SIGNAL(toggled(bool)),this,SLOT(recBoxToggled(bool)));
39}
40
41DirImageWidget::~DirImageWidget()
42{
43}
44
45void DirImageWidget::recBoxToggled(bool how)
46{
47 recDepth->setEnabled(how);
48}
diff --git a/noncore/graphics/opie-eye/impl/dir/dir_setup.h b/noncore/graphics/opie-eye/impl/dir/dir_setup.h
new file mode 100644
index 0000000..932af17
--- a/dev/null
+++ b/noncore/graphics/opie-eye/impl/dir/dir_setup.h
@@ -0,0 +1,22 @@
1#ifndef _DIRSETUP_H
2#define _DIRSETUP_H
3
4#include <qframe.h>
5
6class QCheckBox;
7class QSpinBox;
8class QLabel;
9
10class DirImageWidget : public QFrame {
11 Q_OBJECT
12public:
13 DirImageWidget();
14 ~DirImageWidget();
15 QCheckBox* chkbox,*recBox;
16 QSpinBox * recDepth;
17 QLabel* recDepthLabel,*recWarningLabel;
18protected slots:
19 void recBoxToggled(bool);
20};
21
22#endif