Files
oak-editor/dialogs/newsequencedialog.h
T

37 lines
648 B
C++

#ifndef NEWSEQUENCEDIALOG_H
#define NEWSEQUENCEDIALOG_H
#include <QDialog>
class Project;
class Media;
struct Sequence;
namespace Ui {
class NewSequenceDialog;
}
class NewSequenceDialog : public QDialog
{
Q_OBJECT
public:
explicit NewSequenceDialog(QWidget *parent = 0);
~NewSequenceDialog();
Sequence* existing_sequence;
Media* existing_item;
void set_sequence_name(const QString& s);
protected:
void showEvent(QShowEvent *);
private slots:
void on_buttonBox_accepted();
void on_comboBox_currentIndexChanged(int index);
private:
Ui::NewSequenceDialog *ui;
};
#endif // NEWSEQUENCEDIALOG_H