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