diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2 (patch) | |
tree | d3bb9f5d25a2dc09ca81adecf39621d871534297 /ktouch/src/ktouchopenrequest.cpp | |
download | tdeedu-ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2.tar.gz tdeedu-ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ktouch/src/ktouchopenrequest.cpp')
-rw-r--r-- | ktouch/src/ktouchopenrequest.cpp | 121 |
1 files changed, 121 insertions, 0 deletions
diff --git a/ktouch/src/ktouchopenrequest.cpp b/ktouch/src/ktouchopenrequest.cpp new file mode 100644 index 00000000..d4bc875b --- /dev/null +++ b/ktouch/src/ktouchopenrequest.cpp @@ -0,0 +1,121 @@ +/*************************************************************************** + * ktouchopenrequest.cpp * + * --------------------- * + * Copyright (C) 2004 by Andreas Nicolai * + * ghorwin@users.sourceforge.net * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + ***************************************************************************/ + +#include <qradiobutton.h> +#include <qlabel.h> +#include <qbuttongroup.h> + +#include <kpushbutton.h> +#include <klineedit.h> +#include <kcombobox.h> +#include <kfiledialog.h> +#include <klocale.h> +#include <ksqueezedtextlabel.h> +#include <kmessagebox.h> +#include <klocale.h> + +#include "ktouchopenrequest.h" +#include "ktouchopenrequest.moc" + +KTouchOpenRequest::KTouchOpenRequest(QWidget* parent, const char* name, bool modal, WFlags fl) +: KTouchOpenRequestDlg(parent,name, modal,fl) +{ +} + +int KTouchOpenRequest::requestFileToOpen(KURL& url, const QString& caption, const QString& title, + const QString& currentText, const QString& defaultText, const QString& openText, + const QString& newText, KURL current_url, QStringList defaultList, QString emptyListText) +{ + setCaption(caption); + openChoiceGroup->setTitle(title); + currentRadioBtn->setText(currentText); + presetRadioBtn->setText(defaultText); + openFileRadioBtn->setText(openText); + newRadioBtn->setText(newText); + // Fill in current lecture URL or disable if not available + if (current_url.isEmpty()) { + currentLabel->setText(""); + currentRadioBtn->setEnabled(false); + newRadioBtn->setChecked(true); + } + else { + currentLabel->setText(current_url.url()); + currentRadioBtn->setEnabled(true); + currentRadioBtn->setChecked(true); + }; + // Fill preset combo with lecture files from the configuration object + presetCombo->clear(); + if (defaultList.isEmpty()) { + if (emptyListText.isEmpty()) presetCombo->insertItem(i18n("<no default files available>")); + else presetCombo->insertItem(emptyListText); + presetRadioBtn->setEnabled(false); + } + else { + for (QStringList::Iterator it = defaultList.begin(); it != defaultList.end(); ++it ) + presetCombo->insertItem(*it); + presetRadioBtn->setEnabled(true); + } + presetCombo->setCurrentItem(0); + radioBtnChanged(); + + // Finally executre the dialog + int result = exec(); + url = m_url; + return result; +} + +void KTouchOpenRequest::okBtnClicked() { + if (currentRadioBtn->isChecked()) + m_url = currentLabel->text(); + if (presetRadioBtn->isChecked()) + m_url = presetCombo->currentText(); + if (newRadioBtn->isChecked()) + m_url = QString::null; + if (openFileRadioBtn->isChecked()) { + if (openFileEdit->text().isEmpty()) { + KMessageBox::error(this, i18n("Please select or enter a file name.")); + return; + } + KURL tmp = openFileEdit->text(); + if (!tmp.isValid()) { + KMessageBox::error(this, i18n("The URL seems to be malformed; please correct it.")); + return; + } + m_url = tmp; + }; + QDialog::accept(); +} + + +void KTouchOpenRequest::radioBtnChanged() { + if (currentRadioBtn->isChecked()) currentLabel->setEnabled(true); + else currentLabel->setEnabled(false); + if (presetRadioBtn->isChecked()) presetCombo->setEnabled(true); + else presetCombo->setEnabled(false); + if (openFileRadioBtn->isChecked()) { + openFileEdit->setEnabled(true); + browseBtn->setEnabled(true); + } + else { + openFileEdit->setEnabled(false); + browseBtn->setEnabled(false); + } +} + + +void KTouchOpenRequest::browseBtnClicked() { + KURL tmp = KFileDialog::getOpenURL(QString::null, QString::null, this, i18n("Select Training Lecture File") ); + if (!tmp.isEmpty()) + openFileEdit->setText(tmp.url()); +} + + |