]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/util/customwidgets.hpp
Qt: adv settings: Optimize synchronization panel
[vlc] / modules / gui / qt4 / util / customwidgets.hpp
index 79d8ec44f8981141a3f08bda1013aeee2f250c13..0814ca050eda1eb2a573fb0a57397432b22e9e1e 100644 (file)
 #include <QLabel>
 #include <QStackedWidget>
 #include <QSpinBox>
+#include <QList>
+#include <QTimer>
+#include <QToolButton>
 
-class QVLCFramelessButton : public QPushButton
+class QPixmap;
+
+class QFramelessButton : public QPushButton
 {
     Q_OBJECT
 public:
-    QVLCFramelessButton( QWidget *parent = NULL );
-    QSize sizeHint() const;
+    QFramelessButton( QWidget *parent = NULL );
+    virtual QSize sizeHint() const { return iconSize(); }
 protected:
     virtual void paintEvent( QPaintEvent * event );
 };
 
+class QToolButtonExt : public QToolButton
+{
+    Q_OBJECT
+public:
+    QToolButtonExt( QWidget *parent = 0, int ms = 0 );
+private:
+    bool longClick;
+private slots:
+    void releasedSlot();
+signals:
+    void shortClicked();
+    void longClicked();
+};
 
-class QVLCElidingLabel : public QLabel
+class QElidingLabel : public QLabel
 {
 public:
-    QVLCElidingLabel( const QString &s = QString(),
+    QElidingLabel( const QString &s = QString(),
                       Qt::TextElideMode mode = Qt::ElideRight,
                       QWidget * parent = NULL );
     void setElideMode( Qt::TextElideMode );
+protected:
+    virtual void paintEvent( QPaintEvent * event );
 private:
-    void paintEvent( QPaintEvent * event );
     Qt::TextElideMode elideMode;
 };
 
+
 class QVLCStackedWidget : public QStackedWidget
 {
 public:
@@ -66,14 +86,86 @@ public:
     }
 };
 
-class DebugLevelSpinBox : public QSpinBox
+class QVLCDebugLevelSpinBox : public QSpinBox
 {
     Q_OBJECT
 public:
-    DebugLevelSpinBox( QWidget *parent ) : QSpinBox( parent ) { };
+    QVLCDebugLevelSpinBox( QWidget *parent ) : QSpinBox( parent ) { };
 protected:
-    QString textFromValue( int ) const;
-    int mapTextToValue ( bool * );
+    virtual QString textFromValue( int ) const;
+    /* QVLCDebugLevelSpinBox is read-only */
+    virtual int valueFromText( const QString& ) const { return -1; }
+};
+
+class AnimatedIcon : public QLabel
+{
+    /** An animated pixmap
+     * Use this widget to display an animated icon based on a series of
+     * pixmaps. The pixmaps will be stored in memory and should be kept small.
+     * First, create the widget, add frames and then start playing. Looping
+     * is supported.
+     * Frames #1 to #n are displayed at regular intervals when playing.
+     * Frame #0 is the idle frame, displayed when the icon is not animated.
+     * If not #0 frame has been specified, the last frame will be shown when
+     * idle.
+     **/
+
+    Q_OBJECT
+
+public:
+    /** Create an empty AnimatedIcon */
+    AnimatedIcon( QWidget *parent );
+    virtual ~AnimatedIcon();
+
+    /** Adds a frame to play in the loop.
+     * @param pixmap The QPixmap to display. Data will be copied internally.
+     * @param index If -1, append the frame. If 0, replace the idle frame.
+     *              Otherwise, insert the frame at the given position.
+     **/
+    void addFrame( const QPixmap &pixmap, int index = -1 );
+
+    /** Play the animation (or restart it)
+     * @param loops Number of times to play the loop. 0 means stop, while -1
+     *              means play forever. When stopped, the frame #0 will be
+     *              displayed until play() is called again.
+     * @param interval Delay between frames, in milliseconds (minimum 20ms)
+     * @note If isPlaying() is true, then restart the animation from frame #1
+     **/
+    void play( int loops = 1, int interval = 200 );
+
+    /** Stop playback. Same as play(0). */
+    inline void stop()
+    {
+        play( 0 );
+    }
+
+    /** Is the animation currently running? */
+    inline bool isPlaying()
+    {
+        return mTimer.isActive();
+    }
+
+private:
+    QTimer mTimer;
+    QPixmap *mIdleFrame;
+    QList<QPixmap*> mFrames; // Keeps deep copies of all the frames
+    int mCurrentFrame, mRemainingLoops;
+
+private slots:
+    /** Slot connected to the timeout() signal of our internal timer */
+    void onTimerTick();
+};
+
+class SpinningIcon : public AnimatedIcon
+{
+    /** This spinning icon, to the colors of the VLC cone, will show
+     * that there is some background activity running
+     **/
+
+    Q_OBJECT
+
+public:
+    SpinningIcon( QWidget *parent, bool noIdleFrame = false );
 };
 
 /* VLC Key/Wheel hotkeys interactions */
@@ -85,7 +177,6 @@ class QInputEvent;
 int qtKeyModifiersToVLC( QInputEvent* e );
 int qtEventToVLCKey( QKeyEvent *e );
 int qtWheelEventToVLCKey( QWheelEvent *e );
-QString VLCKeyToString( int val );
+QString VLCKeyToString( unsigned val );
 
 #endif
-