3 This file is part of Minitube.
4 Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
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.
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.
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/>.
21 #ifndef SIDEBARWIDGET_H
22 #define SIDEBARWIDGET_H
26 class RefineSearchButton;
27 class RefineSearchWidget;
30 class SidebarWidget : public QWidget {
35 SidebarWidget(QWidget *parent = 0);
36 void setPlaylist(QListView *playlist);
38 RefineSearchWidget* getRefineSearchWidget() { return refineSearchWidget; }
39 SidebarHeader* getHeader() { return sidebarHeader; }
40 void hideSuggestions();
43 void showRefineSearchWidget();
44 void hideRefineSearchWidget();
45 void toggleRefineSearch(bool show = false);
46 void showSuggestions(const QStringList &suggestions);
49 void suggestionAccepted(QString);
52 void resizeEvent(QResizeEvent *);
53 void enterEvent(QEvent *);
54 void leaveEvent(QEvent *);
55 void mouseMoveEvent(QMouseEvent *event);
56 bool eventFilter(QObject *, QEvent *);
59 void showRefineSearchButton();
61 void handleMouseMove();
63 QStackedWidget *stackedWidget;
64 RefineSearchButton *refineSearchButton;
66 RefineSearchWidget *refineSearchWidget;
69 SidebarHeader *sidebarHeader;
72 #endif // SIDEBARWIDGET_H