#ifndef SPEEDDIALOG_H #define SPEEDDIALOG_H #include struct Clip; class LabelSlider; class QCheckBox; class SpeedDialog : public QDialog { Q_OBJECT public: SpeedDialog(QWidget* parent = 0); QVector clips; void run(); private slots: void percent_update(); void duration_update(); void frame_rate_update(); void accept(); private: LabelSlider* percent; LabelSlider* duration; LabelSlider* frame_rate; QCheckBox* reverse; double normal_fr; }; #endif // SPEEDDIALOG_H