]> git.sur5r.net Git - minitube/blob - src/searchview.h
Imported Upstream version 2.5.1
[minitube] / src / searchview.h
1 /* $BEGIN_LICENSE
2
3 This file is part of Minitube.
4 Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
5
6 Minitube is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 Minitube is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Minitube.  If not, see <http://www.gnu.org/licenses/>.
18
19 $END_LICENSE */
20
21 #ifndef __SEARCHVIEW_H__
22 #define __SEARCHVIEW_H__
23
24 #include <QtGui>
25 #if QT_VERSION >= 0x050000
26 #include <QtWidgets>
27 #endif
28 #include "view.h"
29
30 class SearchWidget;
31 class SearchParams;
32 class YTSuggester;
33 class ChannelSuggest;
34 class Suggestion;
35
36 class SearchView : public View {
37
38     Q_OBJECT
39
40 public:
41     SearchView(QWidget *parent = 0);
42     void updateRecentKeywords();
43     void updateRecentChannels();
44
45 public slots:
46     void appear();
47     void disappear();
48     void watch(const QString &query);
49     void watchChannel(const QString &channelId);
50     void watchKeywords(const QString &query);
51
52 signals:
53     void search(SearchParams*);
54
55 protected:
56     void paintEvent(QPaintEvent *);
57
58 private slots:
59     void watch();
60     void textChanged(const QString &text);
61     void searchTypeChanged(int index);
62     void suggestionAccepted(Suggestion *suggestion);
63
64 private:
65     YTSuggester *youtubeSuggest;
66     ChannelSuggest *channelSuggest;
67
68     QComboBox *typeCombo;
69     SearchWidget *queryEdit;
70     QLabel *recentKeywordsLabel;
71     QBoxLayout *recentKeywordsLayout;
72     QLabel *recentChannelsLabel;
73     QBoxLayout *recentChannelsLayout;
74     QLabel *message;
75     QPushButton *watchButton;
76
77     QStringList recentKeywords;
78     QStringList recentChannels;
79 };
80
81 #endif // __SEARCHVIEW_H__