--- a/src/qtgui/advsearch.ui.h
+++ b/src/qtgui/advsearch.ui.h
@@ -1,19 +1,3 @@
-/*
- * 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.,
- * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
/****************************************************************************
** ui.h extension file, included from the uic-generated form implementation.
**
@@ -25,145 +9,3 @@
** These will automatically be called by the form's constructor and
** destructor.
*****************************************************************************/
-
-#include <qfiledialog.h>
-#include <qmessagebox.h>
-
-#include <list>
-#include <string>
-
-#ifndef NO_NAMESPACES
-using std::list;
-using std::string;
-#endif /* NO_NAMESPACES */
-
-#include "recoll.h"
-#include "rclconfig.h"
-#include "debuglog.h"
-#include "searchdata.h"
-
-extern RclConfig *rclconfig;
-
-// Constructor/initialization
-void advsearch::init()
-{
- list<string> types = rclconfig->getAllMimeTypes();
-
- QStringList ql;
- for (list<string>::iterator it = types.begin(); it != types.end(); it++) {
- ql.append(it->c_str());
- }
- yesFiltypsLB->insertStringList(ql);
-}
-
-// Move selected file types from the searched to the ignored box
-void advsearch::delFiltypPB_clicked()
-{
- list<int> trl;
- QStringList moved;
- for (unsigned int i = 0; i < yesFiltypsLB->count();i++) {
- QListBoxItem *item = yesFiltypsLB->item(i);
- if (item && item->isSelected()) {
- moved.push_back(item->text());
- trl.push_front(i);
- }
- }
- if (!moved.empty()) {
- noFiltypsLB->insertStringList(moved);
- for (list<int>::iterator it = trl.begin();it != trl.end(); it++)
- yesFiltypsLB->removeItem(*it);
- }
- yesFiltypsLB->sort();
- noFiltypsLB->sort();
-}
-
-void advsearch::delAFiltypPB_clicked()
-{
- for (unsigned int i = 0; i < yesFiltypsLB->count();i++) {
- yesFiltypsLB->setSelected(i, true);
- }
- delFiltypPB_clicked();
-}
-
-// Move selected file types from the ignored to the searched box
-void advsearch::addFiltypPB_clicked()
-{
- list<int> trl;
- QStringList moved;
- for (unsigned int i = 0; i < noFiltypsLB->count(); i++) {
- QListBoxItem *item = noFiltypsLB->item(i);
- if (item && item->isSelected()) {
- moved.push_back(item->text());
- trl.push_front(i);
- }
- }
- if (!moved.empty()) {
- yesFiltypsLB->insertStringList(moved);
- for (list<int>::iterator it = trl.begin();it != trl.end(); it++)
- noFiltypsLB->removeItem(*it);
- }
- yesFiltypsLB->sort();
- noFiltypsLB->sort();
-}
-
-void advsearch::addAFiltypPB_clicked()
-{
- for (unsigned int i = 0; i < noFiltypsLB->count();i++) {
- noFiltypsLB->setSelected(i, true);
- }
- addFiltypPB_clicked();
-}
-
-
-// Activate file type selection
-void advsearch::restrictFtCB_toggled(bool on)
-{
- yesFiltypsLB->setEnabled(on);
- delFiltypPB->setEnabled(on);
- addFiltypPB->setEnabled(on);
- delAFiltypPB->setEnabled(on);
- addAFiltypPB->setEnabled(on);
- noFiltypsLB->setEnabled(on);
-}
-
-void advsearch::searchPB_clicked()
-{
- Rcl::AdvSearchData mydata;
-
- mydata.allwords = string((const char*)(andWordsLE->text().utf8()));
- mydata.phrase = string((const char*)(phraseLE->text().utf8()));
- mydata.orwords = string((const char*)(orWordsLE->text().utf8()));
- mydata.orwords1 = string((const char*)(orWords1LE->text().utf8()));
- mydata.nowords = string((const char*)(noWordsLE->text().utf8()));
- mydata.filename = string((const char*)(fileNameLE->text().utf8()));
-
- if (mydata.allwords.empty() && mydata.phrase.empty() &&
- mydata.orwords.empty() && mydata.orwords1.empty() &&
- mydata.filename.empty()) {
- if (mydata.nowords.empty())
- return;
- QMessageBox::warning(0, "Recoll",
- tr("Cannot execute pure negative query. "
- "Please enter common terms in the 'any words' field"));
- return;
- }
-
- if (restrictFtCB->isOn() && noFiltypsLB->count() > 0) {
- for (unsigned int i = 0; i < yesFiltypsLB->count(); i++) {
- QCString ctext = yesFiltypsLB->item(i)->text().utf8();
- mydata.filetypes.push_back(string((const char *)ctext));
- }
- }
- if (!subtreeLE->text().isEmpty()) {
- mydata.topdir = string((const char*)(subtreeLE->text().utf8()));
- }
- emit startSearch(mydata);
-}
-
-
-void advsearch::browsePB_clicked()
-{
- QString dir = QFileDialog::getExistingDirectory();
- subtreeLE->setText(dir);
-}
-