blob: a664adb83e02c3977e464c55d1d5b14c9bb35a62 (
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
|
#ifndef FRACTURESHELLCUTSETTINGSPANEL_H
#define FRACTURESHELLCUTSETTINGSPANEL_H
#include <QtWidgets/QWidget>
namespace Ui {
class FractureShellCutSettingsPanel;
}
class FractureShellCutSettingsPanel : public QWidget
{
Q_OBJECT
public:
explicit FractureShellCutSettingsPanel(QWidget *parent = 0);
~FractureShellCutSettingsPanel();
void updateValues();
private slots:
void on_spinBoxThickness_valueChanged(double arg1);
void on_spinBoxThicknessVariation_valueChanged(double arg1);
void on_btnApplyFracture_clicked();
private:
Ui::FractureShellCutSettingsPanel *ui;
};
#endif // FRACTURESHELLCUTSETTINGSPANEL_H
|