Olive
dialogs
mediapropertiesdialog.h
1
#ifndef MEDIAPROPERTIESDIALOG_H
2
#define MEDIAPROPERTIESDIALOG_H
3
4
#include <QDialog>
5
6
struct
Footage
;
7
class
QComboBox;
8
class
QLineEdit;
9
class
Media
;
10
class
QListWidget;
11
class
QDoubleSpinBox;
12
class
QCheckBox;
13
14
class
MediaPropertiesDialog
:
public
QDialog {
15
Q_OBJECT
16
public
:
17
MediaPropertiesDialog
(QWidget *parent,
Media
* i);
18
private
:
19
QComboBox* interlacing_box;
20
QLineEdit* name_box;
21
Media
* item;
22
QListWidget* track_list;
23
QDoubleSpinBox* conform_fr;
24
QCheckBox* premultiply_alpha_setting;
25
private
slots:
26
void
accept();
27
};
28
29
#endif // MEDIAPROPERTIESDIALOG_H
MediaPropertiesDialog
Definition:
mediapropertiesdialog.h:14
Media
Definition:
media.h:20
Footage
Definition:
footage.h:46
Generated by
1.8.15