summaryrefslogtreecommitdiffstats
path: root/juk/exampleoptions.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commite2de64d6f1beb9e492daf5b886e19933c1fa41dd (patch)
tree9047cf9e6b5c43878d5bf82660adae77ceee097a /juk/exampleoptions.cpp
downloadtdemultimedia-e2de64d6f1beb9e492daf5b886e19933c1fa41dd.tar.gz
tdemultimedia-e2de64d6f1beb9e492daf5b886e19933c1fa41dd.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/kdemultimedia@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'juk/exampleoptions.cpp')
-rw-r--r--juk/exampleoptions.cpp83
1 files changed, 83 insertions, 0 deletions
diff --git a/juk/exampleoptions.cpp b/juk/exampleoptions.cpp
new file mode 100644
index 00000000..68e2bc0f
--- /dev/null
+++ b/juk/exampleoptions.cpp
@@ -0,0 +1,83 @@
+/***************************************************************************
+ begin : Thu Oct 28 2004
+ copyright : (C) 2004 by Michael Pyne
+ email : michael.pyne@kdemail.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 <kurlrequester.h>
+#include <klocale.h>
+
+#include <qradiobutton.h>
+#include <qlayout.h>
+
+#include "exampleoptions.h"
+
+ExampleOptions::ExampleOptions(QWidget *parent) :
+ ExampleOptionsBase(parent, "example options widget")
+{
+}
+
+void ExampleOptions::exampleSelectionChanged()
+{
+ if(m_fileTagsButton->isChecked())
+ emit fileChanged();
+ else
+ emit dataChanged();
+}
+
+void ExampleOptions::exampleDataChanged()
+{
+ emit dataChanged();
+}
+
+void ExampleOptions::exampleFileChanged()
+{
+ emit fileChanged();
+}
+
+ExampleOptionsDialog::ExampleOptionsDialog(QWidget *parent) :
+ QDialog(parent, "example options dialog")
+{
+ setCaption(i18n("JuK"));
+ QVBoxLayout *l = new QVBoxLayout(this);
+
+ m_options = new ExampleOptions(this);
+ l->addWidget(m_options);
+
+ // Forward signals
+
+ connect(m_options, SIGNAL(fileChanged()), SLOT(fileModeSelected()));
+ connect(m_options, SIGNAL(dataChanged()), SIGNAL(dataChanged()));
+ connect(m_options->m_exampleFile, SIGNAL(urlSelected(const QString &)),
+ this, SIGNAL(fileChanged(const QString &)));
+ connect(m_options->m_exampleFile, SIGNAL(returnPressed(const QString &)),
+ this, SIGNAL(fileChanged(const QString &)));
+}
+
+void ExampleOptionsDialog::hideEvent(QHideEvent *)
+{
+ emit signalHidden();
+}
+
+void ExampleOptionsDialog::showEvent(QShowEvent *)
+{
+ emit signalShown();
+}
+
+void ExampleOptionsDialog::fileModeSelected()
+{
+ emit fileChanged(m_options->m_exampleFile->url());
+}
+
+#include "exampleoptions.moc"
+
+// vim: set et sw=4 ts=4: