/src/libtomahawk/playlist/dynamic/widgets/CollapsibleControls.h
http://github.com/tomahawk-player/tomahawk · C Header · 83 lines · 48 code · 16 blank · 19 comment · 0 complexity · 7b5a6add41cae6738abd7e3351130c1d MD5 · raw file
- /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
- *
- * Copyright 2010-2011, Leo Franchi <lfranchi@kde.org>
- * Copyright 2010-2011, Jeff Mitchell <jeff@tomahawk-player.org>
- *
- * Tomahawk is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Tomahawk is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef COLLAPSIBLE_CONTROLS_H
- #define COLLAPSIBLE_CONTROLS_H
- #include "Typedefs.h"
- #include <QWidget>
- class QPaintEvent;
- class QHBoxLayout;
- class QTimeLine;
- class QToolButton;
- class ElidedLabel;
- class QStackedLayout;
- namespace Tomahawk
- {
- class DynamicControlWrapper;
- class DynamicControlList;
- class CollapsibleControls : public QWidget
- {
- Q_OBJECT
- public:
- CollapsibleControls( QWidget* parent );
- CollapsibleControls( const dynplaylist_ptr& playlist, bool isLocal, QWidget* parent = 0 );
- virtual ~CollapsibleControls();
- void setControls( const dynplaylist_ptr& playlist, bool isLocal );
- QList< DynamicControlWrapper* > controls() const;
- virtual QSize sizeHint() const;
- signals:
- void controlsChanged( bool added );
- void controlChanged( const Tomahawk::dyncontrol_ptr& control );
- private slots:
- void toggleCollapse();
- void onAnimationStep( int );
- void onAnimationFinished();
- private:
- void init();
- dynplaylist_ptr m_dynplaylist;
- QStackedLayout* m_layout;
- DynamicControlList* m_controls;
- bool m_isLocal;
- QWidget* m_summaryWidget;
- QHBoxLayout* m_summaryLayout;
- ElidedLabel* m_summary;
- QStackedLayout* m_expandL;
- QToolButton* m_summaryExpand;
- // animations!
- QTimeLine* m_timeline;
- int m_animHeight;
- bool m_collapseAnimation;
- };
- }
- #endif