blob: b4e5bcf96544d24b98eb24875a6891deaedf70f6 (
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
50
51
52
53
54
55
56
57
58
59
|
#ifndef BLASTCOMPOSITEPANEL_H
#define BLASTCOMPOSITEPANEL_H
#include <QtWidgets/QWidget>
namespace Ui {
class BlastCompositePanel;
}
class BlastCompositePanel : public QWidget
{
Q_OBJECT
public:
explicit BlastCompositePanel(QWidget *parent = 0);
~BlastCompositePanel();
void updateValues();
private slots:
void on_btnCollapse_clicked();
void on_btnSave_clicked();
void on_comboBoxAsset_currentIndexChanged(int index);
void on_btnAddAsset_clicked();
void on_btnRemoveAsset_clicked();
void on_listWidgetBlastAsset_itemSelectionChanged();
void on_spinBoxBondByThreshold_valueChanged(double arg1);
void on_spinBoxNewBondStrength_valueChanged(double arg1);
void on_btnAddLandmark_clicked();
void on_btnModifyLandmark_clicked();
void on_btnRemoveLandmark_clicked();
void on_listWidgetLandmark_itemSelectionChanged();
void on_checkBoxEnableLandmark_stateChanged(int arg1);
void on_spinBoxLandmarkRadius_valueChanged(double arg1);
private:
void _updateAssetComboBox();
void _updateAssetInstanceListWidget();
void _updateLandmarkListWidget();
void _updateLandmarkUIs();
private:
Ui::BlastCompositePanel *ui;
int _selectedAsset;
};
#endif // BLASTCOMPOSITEPANEL_H
|