-rw-r--r-- | noncore/settings/mediummount/mediumwidget.cc | 49 | ||||
-rw-r--r-- | noncore/settings/mediummount/mediumwidget.h | 5 |
2 files changed, 49 insertions, 5 deletions
diff --git a/noncore/settings/mediummount/mediumwidget.cc b/noncore/settings/mediummount/mediumwidget.cc index 981e1dd..caa9559 100644 --- a/noncore/settings/mediummount/mediumwidget.cc +++ b/noncore/settings/mediummount/mediumwidget.cc @@ -1,37 +1,38 @@ #include <qcheckbox.h> #include <qgroupbox.h> #include <qhbox.h> #include <qlabel.h> #include <qabstractlayout.h> #include <qlayout.h> #include <qlineedit.h> #include <qpixmap.h> #include <qpushbutton.h> #include <qvbox.h> #include <qwhatsthis.h> +#include <qcombobox.h> #include <qpe/config.h> #include <qpe/qpeapplication.h> #include "mediumwidget.h" using namespace MediumMountSetting; /* TRANSLATOR MediumMountSetting::MediumMountWidget */ MediumMountWidget::MediumMountWidget(const QString &path, const QPixmap &pix, QWidget *parent, const char *name ) : QWidget( parent, name ) { if(parent == 0){ resize(QApplication::desktop()->width(), QApplication::desktop()->height() ); }else{ resize(parent->width(), parent->height() ); } @@ -86,107 +87,147 @@ void MediumMountWidget::initGUI() QSpacerItem *iti1b = new QSpacerItem(2, 10, QSizePolicy::Fixed, QSizePolicy::Fixed ); m_checks->addItem( iti1b, 0, 0 ); m_checks->addWidget(m_audio, 1, 0 ); m_checks->addWidget(m_image, 2, 0 ); m_checks->addWidget(m_all , 3, 0 ); m_checks->addWidget(m_text, 1, 2 ); m_checks->addWidget(m_video, 2, 2 ); m_checks->addRowSpacing(0, 8 ); m_checks->addColSpacing(1, 2 ); m_checks->setColStretch(1, -2 ); connect(m_all, SIGNAL(stateChanged(int) ), this, SLOT(slotStateChanged() ) ); m_box->addWidget( m_group ); // label m_lblPath = new QLabel(tr("Limit search to:"), this ); m_box->addWidget( m_lblPath ); - // add to + + m_subList = new QComboBox(FALSE,this,"docFolderList"); + m_subList->setDuplicatesEnabled(FALSE); + m_subList->setEditable(TRUE); + m_box->addWidget(m_subList); + m_hboxAdd = new QHBox( this ); - //m_hboxAdd->setSpacing( 10 ); - m_edit = new QLineEdit(m_hboxAdd ); m_add = new QPushButton(m_hboxAdd ); m_add->setText( tr("Add") ); + m_del = new QPushButton(m_hboxAdd); + m_del->setText(tr("Remove")); + + connect(m_add, SIGNAL(clicked() ), + this, SLOT(slotAdd() ) ); + connect(m_del, SIGNAL(clicked() ), + this, SLOT(slotRemove() ) ); m_box->addWidget(m_hboxAdd ); - + m_always = new QCheckBox( tr("Always check this medium"), this ); m_box->addWidget( m_always ); QSpacerItem *item = new QSpacerItem(5, 50, QSizePolicy::Fixed, QSizePolicy::Expanding ); m_box->addItem(item ); } void MediumMountWidget::readConfig( ) { if( m_config == 0 ) m_config = new Config(m_path + "/.opiestorage.cf", Config::File ); m_config->setGroup( "main" ); m_always->setChecked( m_config->readBoolEntry("check", false) ); m_config->setGroup( "mimetypes" ); if( m_config->readBoolEntry("all", false ) ){ m_audio->setEnabled( false ); m_image->setEnabled( false ); m_text->setEnabled ( false ); m_video->setEnabled( false ); m_all->setChecked( true ); }else{ m_audio->setEnabled( true ); m_image->setEnabled( true ); m_text->setEnabled ( true ); m_all->setEnabled ( true ); m_all->setChecked( false ); m_audio->setChecked( m_config->readBoolEntry("audio", true ) ); m_image->setChecked( m_config->readBoolEntry("image", true ) ); m_text->setChecked ( m_config->readBoolEntry("text" , true ) ); m_video->setChecked( m_config->readBoolEntry("video", true ) ); }; + m_config->setGroup("subdirs"); + QStringList entries = m_config->readListEntry("subdirs",':'); + m_subList->clear(); + m_subList->insertStringList(entries); } void MediumMountWidget::writeConfig() { m_config->setGroup("main"); m_config->writeEntry("check", m_always->isChecked() ); m_config->setGroup("mimetypes" ); if(m_all->isChecked() ){ m_config->writeEntry("all", true ); }else{ m_config->writeEntry("audio", m_audio->isChecked() ); m_config->writeEntry("image", m_image->isChecked() ); m_config->writeEntry("text" , m_text->isChecked() ); m_config->writeEntry("video", m_video->isChecked() ); } + m_config->setGroup("subdirs"); + QStringList entries; + QString ctext; + for (int i = 0; i < m_subList->count();++i) { + ctext = m_subList->text(i); + if (ctext.isEmpty()) + continue; + if (ctext.startsWith("/")&&ctext.length()>1) { + ctext = ctext.right(ctext.length()-1); + } + entries.append(ctext); + } + m_config->writeEntry("subdirs",entries,':'); } MediumMountWidget::~MediumMountWidget() { delete m_config; } void MediumMountWidget::slotAdd() { + if (m_subList->currentText()==m_subList->text(m_subList->currentItem())) + return; + m_subList->insertItem(m_subList->currentText()); +} +void MediumMountWidget::slotRemove() +{ + QString text = m_subList->currentText(); + if (text != m_subList->text(m_subList->currentItem())) { + m_subList->clearEdit (); + } else { + m_subList->removeItem(m_subList->currentItem()); + } } + void MediumMountWidget::slotStateChanged() { bool state = !(m_all->isChecked()); m_audio->setEnabled( state ); m_text->setEnabled ( state ); m_video->setEnabled( state ); m_image->setEnabled( state ); } diff --git a/noncore/settings/mediummount/mediumwidget.h b/noncore/settings/mediummount/mediumwidget.h index 0f27117..28ae369 100644 --- a/noncore/settings/mediummount/mediumwidget.h +++ b/noncore/settings/mediummount/mediumwidget.h @@ -1,79 +1,82 @@ #ifndef MediumMountWidget_H #define MediumMountWidget_H //#include <qpixmap.h> #include <qwidget.h> class QLabel; class QPixmap; class Config; class QGridLayout; class QCheckBox; class QPushButton; class QVBoxLayout; class QHBoxLayout; class QGroupBox; class QVBox; class QHBox; class QLineEdit; +class QComboBox; namespace MediumMountSetting { class MediumMountWidget : public QWidget { Q_OBJECT public: MediumMountWidget(const QString&, const QPixmap &, QWidget *parent, const char *name = 0 ); ~MediumMountWidget(); void writeConfig(); private slots: void slotAdd(); + void slotRemove(); void slotStateChanged(); private: void readConfig(); void initGUI(); bool m_dirty : 1; class MediumMountWidgetPrivate; MediumMountWidgetPrivate *d; QString m_path; Config *m_config; QHBox *m_infoBox; QLabel *m_label; QLabel *m_desc; - QLineEdit *m_edit; QPushButton *m_add; + QComboBox *m_subList; + QPushButton *m_del; QVBoxLayout *m_box; QGridLayout *m_checks; QGroupBox *m_group; QCheckBox *m_all; QCheckBox *m_audio; QCheckBox *m_image; QCheckBox *m_text; QCheckBox *m_video; QCheckBox *m_always; //QCheckBox *m_yesNo; QHBox *m_hboxAdd; QLabel *m_lblPath; //////////////// }; }; #endif |