-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselectwidget.h
More file actions
34 lines (32 loc) · 791 Bytes
/
selectwidget.h
File metadata and controls
34 lines (32 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef SELECTWIDGET_H
#define SELECTWIDGET_H
#endif // SELECTWIDGET_H
#include <QComboBox>
#include <QVBoxLayout>
#include <QPlainTextEdit>
#include <QPushButton>
#include <QGridLayout>
#include <QResizeEvent>
#include <QFileDialog>
#include <QDialog>
#include "matchwidget.h"
#include "filelist.h"
class selectwidget:public QWidget
{
public:
QComboBox* cb;
QWidget *sunWidget;
matchwidget* widget1;
QPlainTextEdit* widget2;
QGridLayout* thislayout;
QPushButton* finish, *chooseRoot;
QResizeEvent* sizeChangd;
QString videoRoot;
Filelist *filelist;
void resizeEvent(QResizeEvent *sizeChangd);
selectwidget(QWidget* parent);
~selectwidget();
public slots:
void checkcurrenttext();
void import();
};