blob: 9d944d1544c805b51d6b8f74e76f221633df9f32 (
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
|
#ifndef FRACTUREVISUALIZERSPANEL_H
#define FRACTUREVISUALIZERSPANEL_H
#include <QtWidgets/QWidget>
#include "ProjectParams.h"
namespace Ui {
class FractureVisualizersPanel;
}
class FractureGeneralPanel;
class FractureVisualizersPanel : public QWidget
{
Q_OBJECT
public:
explicit FractureVisualizersPanel(QWidget *parent = 0);
~FractureVisualizersPanel();
void updateValues();
void setFractureGeneralPanel(FractureGeneralPanel* generalPanel) { _generalPanel = generalPanel; }
private slots:
/*
void on_checkBoxFracturePreview_stateChanged(int arg1);
void on_checkBoxDisplayFractureWidget_stateChanged(int arg1);
*/
void on_checkBoxSelectionDepthTest_stateChanged(int arg1);
private:
BPPFractureVisualization* _getBPPVisualization();
private:
Ui::FractureVisualizersPanel *ui;
bool _updateData;
FractureGeneralPanel* _generalPanel;
};
#endif // FRACTUREVISUALIZERSPANEL_H
|