]> git.sur5r.net Git - minitube/blob - src/sidebarwidget.h
Merge tag 'upstream/2.4'
[minitube] / src / sidebarwidget.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 SIDEBARWIDGET_H
22 #define SIDEBARWIDGET_H
23
24 #include <QtGui>
25 #if QT_VERSION >= 0x050000
26 #include <QtWidgets>
27 #endif
28
29 class RefineSearchButton;
30 class RefineSearchWidget;
31 class SidebarHeader;
32
33 class SidebarWidget : public QWidget {
34
35     Q_OBJECT
36
37 public:
38     SidebarWidget(QWidget *parent = 0);
39     void setPlaylist(QListView *playlist);
40     void showPlaylist();
41     RefineSearchWidget* getRefineSearchWidget() { return refineSearchWidget; }
42     SidebarHeader* getHeader() { return sidebarHeader; }
43     void hideSuggestions();
44
45 public slots:
46     void showRefineSearchWidget();
47     void hideRefineSearchWidget();
48     void toggleRefineSearch(bool show = false);
49     void showSuggestions(const QStringList &suggestions);
50
51 signals:
52     void suggestionAccepted(QString);
53
54 protected:
55     void resizeEvent(QResizeEvent *);
56     void enterEvent(QEvent *);
57     void leaveEvent(QEvent *);
58     void mouseMoveEvent(QMouseEvent *event);
59     bool eventFilter(QObject *, QEvent *);
60
61 private:
62     void showRefineSearchButton();
63     void setup();
64     void handleMouseMove();
65
66     QStackedWidget *stackedWidget;
67     RefineSearchButton *refineSearchButton;
68     QListView *playlist;
69     RefineSearchWidget *refineSearchWidget;
70     QTimer *mouseTimer;
71     QLabel *messageLabel;
72     SidebarHeader *sidebarHeader;
73 };
74
75 #endif // SIDEBARWIDGET_H