┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/search/searchcriterionvalue.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2010-07-24 16:37:07 +0000
committerPeter Penz <[email protected]>2010-07-24 16:37:07 +0000
commit49eb864b03b6370e403c6f048ab18d1478eab045 (patch)
treef056b119de4d358e056287b90ec2e05f53fe2004 /src/search/searchcriterionvalue.cpp
parent4ba9eb8ea34baee7e5e100a0d3c33f23f75cf708 (diff)
Unify the search interface for non-indexed and indexed folders
svn path=/trunk/KDE/kdebase/apps/; revision=1154073
Diffstat (limited to 'src/search/searchcriterionvalue.cpp')
-rw-r--r--src/search/searchcriterionvalue.cpp196
1 files changed, 0 insertions, 196 deletions
diff --git a/src/search/searchcriterionvalue.cpp b/src/search/searchcriterionvalue.cpp
deleted file mode 100644
index 065100e4e..000000000
--- a/src/search/searchcriterionvalue.cpp
+++ /dev/null
@@ -1,196 +0,0 @@
-/***************************************************************************
- * Copyright (C) 2009 by Adam Kidder <[email protected]> *
- * Copyright (C) 2009 by Peter Penz <[email protected]> *
- * *
- * 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. *
- * *
- * This program is distributed in the hope that it will be useful, *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
- * GNU General Public License for more details. *
- * *
- * You should have received a copy of the GNU General Public License *
- * along with this program; if not, write to the *
- * Free Software Foundation, Inc., *
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
- ***************************************************************************/
-
-#include "searchcriterionvalue.h"
-
-#include <kdatewidget.h>
-#include <klineedit.h>
-#include <klocale.h>
-
-#include <nepomuk/kratingwidget.h>
-#include <nepomuk/tag.h>
-
-#include <QComboBox>
-#include <QDate>
-#include <QIntValidator>
-#include <QLabel>
-#include <QHBoxLayout>
-#include <QShowEvent>
-
-SearchCriterionValue::SearchCriterionValue(QWidget* parent) :
- QWidget(parent)
-{
-}
-
-SearchCriterionValue::~SearchCriterionValue()
-{
-}
-
-void SearchCriterionValue::initializeValue(const QString& valueType)
-{
- Q_UNUSED(valueType);
-}
-
-// -------------------------------------------------------------------------
-
-DateValue::DateValue(QWidget* parent) :
- SearchCriterionValue(parent),
- m_dateWidget(0)
-{
- m_dateWidget = new KDateWidget(QDate::currentDate(), this);
-
- QHBoxLayout* layout = new QHBoxLayout(this);
- layout->setMargin(0);
- layout->addWidget(m_dateWidget);
-}
-
-DateValue::~DateValue()
-{
-}
-
-Nepomuk::Query::LiteralTerm DateValue::value() const
-{
- const QDateTime dateTime(m_dateWidget->date());
- return Nepomuk::Query::LiteralTerm(dateTime);
-}
-
-void DateValue::initializeValue(const QString& valueType)
-{
- QDate date;
- if (valueType.isEmpty() || (valueType == "today")) {
- date = QDate::currentDate();
- } else if (valueType == "thisWeek") {
- const QDate today = QDate::currentDate();
- const int dayOfWeek = today.dayOfWeek();
- date = today.addDays(-dayOfWeek);
- } else if (valueType == "thisMonth") {
- const QDate today = QDate::currentDate();
- date = QDate(today.year(), today.month(), 1);
- } else if (valueType == "thisYear") {
- date = QDate(QDate::currentDate().year(), 1, 1);
- } else {
- // unknown value-type
- Q_ASSERT(false);
- }
- m_dateWidget->setDate(date);
-}
-
-// -------------------------------------------------------------------------
-
-TagValue::TagValue(QWidget* parent) :
- SearchCriterionValue(parent),
- m_tags(0)
-{
- m_tags = new QComboBox(this);
- m_tags->setInsertPolicy(QComboBox::InsertAlphabetically);
-
- QHBoxLayout* layout = new QHBoxLayout(this);
- layout->setMargin(0);
- layout->addWidget(m_tags);
-
- connect(m_tags, SIGNAL(activated(QString)),
- this, SIGNAL(valueChanged(QString)));
-}
-
-TagValue::~TagValue()
-{
-}
-
-Nepomuk::Query::LiteralTerm TagValue::value() const
-{
- return Nepomuk::Query::LiteralTerm(m_tags->currentText());
-}
-
-void TagValue::showEvent(QShowEvent* event)
-{
- if (!event->spontaneous() && (m_tags->count() == 0)) {
- const QList<Nepomuk::Tag> tags = Nepomuk::Tag::allTags();
- foreach (const Nepomuk::Tag& tag, tags) {
- m_tags->addItem(tag.label());
- }
-
- if (tags.count() == 0) {
- m_tags->addItem(i18nc("@label", "No Tags Available"));
- }
- }
- SearchCriterionValue::showEvent(event);
-}
-
-// -------------------------------------------------------------------------
-
-SizeValue::SizeValue(QWidget* parent) :
- SearchCriterionValue(parent),
- m_lineEdit(0),
- m_units(0)
-{
- m_lineEdit = new KLineEdit(this);
- m_lineEdit->setClearButtonShown(true);
- m_lineEdit->setValidator(new QIntValidator(this));
- m_lineEdit->setAlignment(Qt::AlignRight);
-
- m_units = new QComboBox(this);
- // TODO: check the KByte vs. KiByte dilemma :-/
- m_units->addItem(i18nc("@label", "Byte"));
- m_units->addItem(i18nc("@label", "KByte"));
- m_units->addItem(i18nc("@label", "MByte"));
- m_units->addItem(i18nc("@label", "GByte"));
-
- // set 1 MByte as default
- m_lineEdit->setText("1");
- m_units->setCurrentIndex(2);
-
- QHBoxLayout* layout = new QHBoxLayout(this);
- layout->setMargin(0);
- layout->addWidget(m_lineEdit);
- layout->addWidget(m_units);
-}
-
-SizeValue::~SizeValue()
-{
-}
-
-Nepomuk::Query::LiteralTerm SizeValue::value() const
-{
- return Nepomuk::Query::LiteralTerm(); // TODO
-}
-
-// -------------------------------------------------------------------------
-
-RatingValue::RatingValue(QWidget* parent) :
- SearchCriterionValue(parent),
- m_ratingWidget(0)
-{
- m_ratingWidget = new KRatingWidget(this);
-
- QHBoxLayout* layout = new QHBoxLayout(this);
- layout->setMargin(0);
- layout->addWidget(m_ratingWidget);
-}
-
-RatingValue::~RatingValue()
-{
-}
-
-Nepomuk::Query::LiteralTerm RatingValue::value() const
-{
- return Nepomuk::Query::LiteralTerm(m_ratingWidget->rating());
-}
-
-#include "searchcriterionvalue.moc"