summaryrefslogtreecommitdiff
authordrw <drw>2004-08-16 18:33:22 (UTC)
committer drw <drw>2004-08-16 18:33:22 (UTC)
commit96ed4a52d862828a7968d1e4c0eb6be72846419c (patch) (side-by-side diff)
treefa804a2890112a006f79b00c889315a58cfe58f8
parentcbb2e3969b0a6bb36aca6bc608a77dcaeb5bbac2 (diff)
downloadopie-96ed4a52d862828a7968d1e4c0eb6be72846419c.zip
opie-96ed4a52d862828a7968d1e4c0eb6be72846419c.tar.gz
opie-96ed4a52d862828a7968d1e4c0eb6be72846419c.tar.bz2
Use OFileDialog::getDirectory to select Sword path
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/dagger/configuredlg.cpp21
-rw-r--r--noncore/apps/dagger/configuredlg.h1
2 files changed, 21 insertions, 1 deletions
diff --git a/noncore/apps/dagger/configuredlg.cpp b/noncore/apps/dagger/configuredlg.cpp
index 0a9317c..535659d 100644
--- a/noncore/apps/dagger/configuredlg.cpp
+++ b/noncore/apps/dagger/configuredlg.cpp
@@ -19,4 +19,9 @@ file; see the file COPYING. If not, write to the Free Software Foundation, Inc.,
+#include <opie2/ofiledialog.h>
+
+#include <qpe/resource.h>
+
#include <qlabel.h>
#include <qlayout.h>
+#include <qpushbutton.h>
#include <qvbuttongroup.h>
@@ -47,3 +52,9 @@ ConfigureDlg::ConfigureDlg( QWidget *parent, const QString &swordPath, bool alwa
QWhatsThis::add( m_swordPath, tr( "Enter the path where the Sword texts (Bibles, commentaries, etc.) can be found. This path should contain either the 'mods.conf' file or 'mods.d' sub-directory." ) );
- grid->addMultiCellWidget( m_swordPath, 1, 1, 0, 1 );
+ grid->addWidget( m_swordPath, 1, 0 );
+ QPushButton *btn = new QPushButton( Resource::loadPixmap( "folder" ), QString::null, widget );
+ btn->setMaximumWidth( btn->height() );
+ QWhatsThis::add( btn, tr( "Tap here to select the path where the Sword texts (Bibles, commentaries, etc.) can be found. This path should contain either the 'mods.conf' file or 'mods.d' sub-directory." ) );
+ connect( btn, SIGNAL(clicked()), this, SLOT(slotSelectSwordPath()) );
+ grid->addWidget( btn, 1, 1 );
+
label = new QLabel( tr( "(Note: Dagger must be restarted for this option to take affect.)" ), widget );
@@ -150 +161,9 @@ void ConfigureDlg::slotCopyFormatSelected()
}
+
+void ConfigureDlg::slotSelectSwordPath()
+{
+ QString path = Opie::Ui::OFileDialog::getDirectory( 0, m_swordPath->text() );
+ if ( path.at( path.length() - 1 ) == '/' )
+ path.truncate( path.length() - 1 );
+ m_swordPath->setText( path );
+}
diff --git a/noncore/apps/dagger/configuredlg.h b/noncore/apps/dagger/configuredlg.h
index a91da12..56a4d94 100644
--- a/noncore/apps/dagger/configuredlg.h
+++ b/noncore/apps/dagger/configuredlg.h
@@ -72,2 +72,3 @@ private slots:
void slotCopyFormatSelected();
+ void slotSelectSwordPath();
};