Header cleanup
[amarok.git] / src / sidebarwidget.h
blob0c223f9add5c0882238c21cd4299a18975938b5a
1 /*
2 Copyright (c) 2006 Gábor Lehel <illissius@gmail.com>
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
20 #ifndef AMAROK_SIDEBARWIDGET_H
21 #define AMAROK_SIDEBARWIDGET_H
23 #include <kvbox.h>
25 class SideBarWidget: public KVBox
27 typedef KVBox super;
28 Q_OBJECT
29 public:
30 SideBarWidget( QWidget *parent );
31 virtual ~SideBarWidget();
32 int addSideBar( const QIcon &icon, const QString &text );
33 int count() const;
34 QString text( int index ) const;
35 QIcon icon( int index ) const;
37 public slots:
38 void open( int index );
40 signals:
41 void opened( int index );
42 void closed();
44 protected:
45 virtual void wheelEvent( QWheelEvent *e );
47 private slots:
48 void slotClicked( bool checked );
49 void slotSetVisible( bool visible );
51 private:
52 void updateShortcuts();
53 class Private;
54 Private* const d;
57 #endif