00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef IMPORT_CLIPS_DIALOG_H
00023 #define IMPORT_CLIPS_DIALOG_H
00024
00025 #include "ui_ImportClipsDialog.h"
00026 #include "Track.h"
00027
00028 #include <QDialog>
00029 #include <QList>
00030
00031 class ImportClipsDialog : public QDialog, protected Ui::ImportClipsDialog
00032 {
00033 Q_OBJECT
00034
00035 public:
00036 ImportClipsDialog(QWidget* parent = 0);
00037 ~ImportClipsDialog();
00038
00039 void set_tracks(QList<Track*>);
00040
00041 Track* get_selected_track();
00042 bool get_add_markers();
00043 int has_tracks();
00044
00045 private:
00046 QList<Track*> m_tracks;
00047
00048 };
00049
00050 #endif
00051
00052
00053