30 lines
589 B
C++
30 lines
589 B
C++
#ifndef MEDIAPROPERTIESDIALOG_H
|
|
#define MEDIAPROPERTIESDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
struct Footage;
|
|
class QComboBox;
|
|
class QLineEdit;
|
|
class Media;
|
|
class QListWidget;
|
|
class QDoubleSpinBox;
|
|
class QCheckBox;
|
|
|
|
class MediaPropertiesDialog : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
MediaPropertiesDialog(QWidget *parent, Media* i);
|
|
private:
|
|
QComboBox* interlacing_box;
|
|
QLineEdit* name_box;
|
|
Media* item;
|
|
QListWidget* track_list;
|
|
QDoubleSpinBox* conform_fr;
|
|
QCheckBox* premultiply_alpha_setting;
|
|
private slots:
|
|
void accept();
|
|
};
|
|
|
|
#endif // MEDIAPROPERTIESDIALOG_H
|