blob: e393f3301cccd5d72ff38f1415a6f9668117e25c (
plain) (
blame)
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
35
36
37
38
39
40
41
|
#ifndef FILEREFERENCESPANEL_H
#define FILEREFERENCESPANEL_H
#include <QtWidgets/QWidget>
namespace Ui {
class FileReferencesPanel;
}
class FileReferencesPanel : public QWidget
{
Q_OBJECT
public:
explicit FileReferencesPanel(QWidget *parent = 0);
~FileReferencesPanel();
void updateValues();
private slots:
void on_btnOpenFile_clicked();
void on_btnReload_clicked();
void on_btnRemove_clicked();
void on_checkBoxFBX_stateChanged(int arg1);
void on_checkBoxBlast_stateChanged(int arg1);
void on_checkBoxCollision_stateChanged(int arg1);
void on_btnSave_clicked();
private:
Ui::FileReferencesPanel *ui;
bool _saveFBX;
bool _saveBlast;
bool _saveCollision;
};
#endif // FILEREFERENCESPANEL_H
|