]> git.sur5r.net Git - minitube/blobdiff - src/searchparams.cpp
New upstream version 2.9
[minitube] / src / searchparams.cpp
index 800e248244ab55992184b8fc66ef69bb96f572e3..2fea09c43af4a56f56daff685cbb523f9b5e90ed 100644 (file)
@@ -1,6 +1,36 @@
+/* $BEGIN_LICENSE
+
+This file is part of Minitube.
+Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
+
+Minitube 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 3 of the License, or
+(at your option) any later version.
+
+Minitube 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 Minitube.  If not, see <http://www.gnu.org/licenses/>.
+
+$END_LICENSE */
+
 #include "searchparams.h"
 
-SearchParams::SearchParams() {
-    m_sortBy = SortByRelevance;
+SearchParams::SearchParams(QObject *parent) : QObject(parent) {
     m_transient = false;
+    m_sortBy = SortByRelevance;
+    m_duration = DurationAny;
+    m_quality = QualityAny;
+    m_time = TimeAny;
+    m_publishedAfter = 0;
+    m_safeSearch = Moderate;
+}
+
+void SearchParams::setParam(const QString &name, const QVariant &value) {
+    bool success = setProperty(name.toUtf8(), value);
+    if (!success) qWarning() << "Failed to set property" << name << value.toString();
 }