blob: 10574023b1b8ac31ff5bc6da6d1380d03b81840d (
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
42
43
44
45
46
47
48
49
|
#include "SupportPanel.h"
#include "ui_SupportPanel.h"
SupportPanel::SupportPanel(QWidget *parent) :
QWidget(parent),
ui(new Ui::SupportPanel)
{
ui->setupUi(this);
}
SupportPanel::~SupportPanel()
{
delete ui;
}
void SupportPanel::updateValues()
{
}
void SupportPanel::on_comboBoxHealthMask_currentIndexChanged(int index)
{
}
void SupportPanel::on_btnAddHealthMask_clicked()
{
}
void SupportPanel::on_btnPen_clicked()
{
}
void SupportPanel::on_btnRemove_clicked()
{
}
void SupportPanel::on_spinBoxBondStrength_valueChanged(double arg1)
{
}
void SupportPanel::on_checkBoxEnableJoint_stateChanged(int arg1)
{
}
|