QGIS API Documentation 3.41.0-Master (cea29feecf2)
Loading...
Searching...
No Matches
qgsplaybackcontrollerwidget.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsplaybackcontrollerwidget.h
3 --------------------------------------
4 begin : November 2023
5 copyright : (C) 2023 by Nyall Dawson
6 email : nyall dot dawson at gmail dot com
7***************************************************************************
8* *
9* This program is free software; you can redistribute it and/or modify *
10* it under the terms of the GNU General Public License as published by *
11* the Free Software Foundation; either version 2 of the License, or *
12* (at your option) any later version. *
13* *
14***************************************************************************/
15
16#ifndef QGSPLAYBACKCONTROLLERWIDGET_H
17#define QGSPLAYBACKCONTROLLERWIDGET_H
18
19#include "ui_qgsplaybackcontrollerwidgetbase.h"
20#include "qgis_sip.h"
21#include "qgis_gui.h"
22#include "qgis.h"
23#include <QWidget>
24
30class GUI_EXPORT QgsPlaybackControllerWidget : public QWidget, private Ui::QgsPlaybackControllerWidgetBase
31{
32 Q_OBJECT
33
34 public:
38 explicit QgsPlaybackControllerWidget( QWidget *parent SIP_TRANSFERTHIS = nullptr );
39
43 QPushButton *button( Qgis::PlaybackOperation operation );
44
45 public slots:
46
50 void setState( Qgis::AnimationState state );
51
55 void togglePause();
56
57 signals:
58
63
64 private slots:
65
66 void togglePlayForward();
67 void togglePlayBackward();
68 void pause();
69 void next();
70 void previous();
71 void skipToEnd();
72 void rewindToStart();
73
74 private:
76 bool mPlayingForward = true;
77};
78
79#endif // QGSPLAYBACKCONTROLLERWIDGET_H
PlaybackOperation
Media playback operations.
Definition qgis.h:2440
AnimationState
Animation states.
Definition qgis.h:2427
@ Idle
Animation is paused.
A compound widget containing a set of buttons for controlling media playback.
void operationTriggered(Qgis::PlaybackOperation operation)
Emitted when a playback operation is triggered.
#define SIP_TRANSFERTHIS
Definition qgis_sip.h:53