Sync translations from Transifex and run lupdate
[qBittorrent.git] / src / gui / search / searchwidget.h
blobfccd46dc7ceaaee5096e789dd76ea90396c23187
1 /*
2 * Bittorrent Client using Qt and libtorrent.
3 * Copyright (C) 2020, Will Da Silva <will@willdasilva.xyz>
4 * Copyright (C) 2015, 2018 Vladimir Golovnev <glassez@yandex.ru>
5 * Copyright (C) 2006 Christophe Dumez <chris@qbittorrent.org>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * In addition, as a special exception, the copyright holders give permission to
22 * link this program with the OpenSSL project's "OpenSSL" library (or with
23 * modified versions of it that use the same license as the "OpenSSL" library),
24 * and distribute the linked executables. You must obey the GNU General Public
25 * License in all respects for all of the code used other than "OpenSSL". If you
26 * modify file(s), you may extend this exception to your version of the file(s),
27 * but you are not obligated to do so. If you do not wish to do so, delete this
28 * exception statement from your version.
31 #pragma once
33 #include <QList>
34 #include <QPointer>
35 #include <QWidget>
37 class QEvent;
38 class QObject;
39 class QTabWidget;
41 class MainWindow;
42 class SearchJobWidget;
44 namespace Ui
46 class SearchWidget;
49 class SearchWidget : public QWidget
51 Q_OBJECT
52 Q_DISABLE_COPY_MOVE(SearchWidget)
54 public:
55 explicit SearchWidget(MainWindow *mainWindow);
56 ~SearchWidget() override;
58 void giveFocusToSearchInput();
60 private slots:
61 void on_searchButton_clicked();
62 void on_pluginsButton_clicked();
64 private:
65 bool eventFilter(QObject *object, QEvent *event) override;
66 void tabChanged(int index);
67 void closeTab(int index);
68 void closeAllTabs();
69 void tabStatusChanged(QWidget *tab);
70 void selectMultipleBox(int index);
71 void toggleFocusBetweenLineEdits();
73 void fillCatCombobox();
74 void fillPluginComboBox();
75 void selectActivePage();
76 void searchTextEdited(const QString &);
78 QString selectedCategory() const;
79 QString selectedPlugin() const;
81 Ui::SearchWidget *m_ui;
82 QPointer<SearchJobWidget> m_currentSearchTab; // Selected tab
83 QPointer<SearchJobWidget> m_activeSearchTab; // Tab with running search
84 QList<SearchJobWidget *> m_allTabs; // To store all tabs
85 MainWindow *m_mainWindow;
86 bool m_isNewQueryString;