2 * Copyright (C) 2010 Ixonos Plc.
3 * Copyright (C) 2011-2017 Philipp Spitzer, gregor herrmann, Stefan Stahl
5 * This file is part of ConfClerk.
7 * ConfClerk is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the Free
9 * Software Foundation, either version 2 of the License, or (at your option)
12 * ConfClerk is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * ConfClerk. If not, see <http://www.gnu.org/licenses/>.
21 #include "searchtabcontainer.h"
22 #include "searchhead.h"
23 #include <QMessageBox>
25 SearchTabContainer::SearchTabContainer(QWidget *aParent): TabContainer(aParent), sqlEngine(0) {
26 header = new SearchHead(this);
27 header->setObjectName(QString::fromUtf8("header"));
28 QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Expanding);
29 sizePolicy.setHorizontalStretch(0);
30 sizePolicy.setVerticalStretch(0);
31 //sizePolicy.setHeightForWidth(TabContainer::sizePolicy().hasHeightForWidth());
32 sizePolicy.setHeightForWidth(header->sizePolicy().hasHeightForWidth());
33 header->setSizePolicy(sizePolicy);
34 header->setMinimumSize(QSize(10, 10));
35 verticalLayout->insertWidget(0,header);
36 connect(header, SIGNAL(searchClicked()), SLOT(searchButtonClicked()));
41 bool SearchTabContainer::searchDialogIsVisible() const {
42 return header->isVisible();
46 int SearchTabContainer::searchResultCount(const QDate& date) const {
47 int confId = Conference::activeConference();
48 if (confId == -1) return 0;
49 return Event::getSearchResultByDate(date, confId, "start, duration").count();
53 void SearchTabContainer::showSearchDialog(bool show) {
54 header->setVisible(show);
55 treeView->setVisible(!show);
56 if (show) header->searchEdit->setFocus(Qt::OtherFocusReason);
60 void SearchTabContainer::searchButtonClicked() {
61 if (!sqlEngine) return;
63 QMultiHash<QString,QString> columns;
65 SearchHead *searchHeader = static_cast<SearchHead*>(header);
66 if (searchHeader->searchTitle->isChecked())
67 columns.insert("EVENT", "title");
68 if (searchHeader->searchAbstract->isChecked())
69 columns.insert("EVENT", "abstract");
70 if (searchHeader->searchTag->isChecked())
71 columns.insert("EVENT", "tag");
72 if (searchHeader->searchSpeaker->isChecked())
73 columns.insert("PERSON", "name");
74 if (searchHeader->searchRoom->isChecked())
75 columns.insert("ROOM", "name");
77 QString keyword = searchHeader->searchEdit->text();
79 int confId = Conference::activeConference();
80 if (confId == -1) return;
81 Conference conf = Conference::getById(confId);
83 sqlEngine->searchEvent( confId, columns, keyword );
86 for (QDate d = conf.start(); d <= conf.end(); d = d.addDays(1))
87 nrofFounds += Event::getSearchResultByDate(d, confId, "start, duration").count();
92 QMessageBox::information(
94 QString("Keyword '%1' not found!").arg(keyword),
95 QString("No events containing '%1' found!").arg(keyword),
101 emit searchResultChanged();
106 void SearchTabContainer::loadEvents( const QDate &aDate, const int aConferenceId )
108 static_cast<EventModel*>(treeView->model())->loadSearchResultEvents( aDate, aConferenceId );