forked from Just-CJ/miniBlender
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattributewidget.h
More file actions
65 lines (48 loc) · 1.14 KB
/
attributewidget.h
File metadata and controls
65 lines (48 loc) · 1.14 KB
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
60
61
62
63
64
65
#ifndef ATTRIBUTEWIDGET_H
#define ATTRIBUTEWIDGET_H
#include <QWidget>
#include <QLabel>
#include <QDoubleSpinBox>
#include <QLayout>
#include <QPushButton>
namespace Ui {
class attributeWidget;
}
class attributeWidget : public QWidget
{
Q_OBJECT
public:
explicit attributeWidget(QWidget *parent = 0);
~attributeWidget();
void viewable(bool noSel, bool selObj, bool btn, bool top, bool bot, bool h, bool facen, bool r, bool dens);
signals:
void reshape();
private slots:
void sendReshape();
private:
Ui::attributeWidget *ui;
public:
QVBoxLayout *mainLayout;
QPushButton *button;
QHBoxLayout *layout1;
QLabel *topRLabel;
QDoubleSpinBox *topR;
QHBoxLayout *layout2;
QLabel *bottomRLabel;
QDoubleSpinBox *botR;
QHBoxLayout *layout3;
QLabel *heightLabel;
QDoubleSpinBox *height;
QHBoxLayout *layout4;
QLabel *faceNumLabel;
QDoubleSpinBox *faceNum;
QHBoxLayout *layout5;
QLabel *RLabel;
QDoubleSpinBox *R;
QHBoxLayout *layout6;
QLabel *densityLabel;
QSpinBox *density;
QLabel *noSelect;
QLabel *selectObj;
};
#endif // ATTRIBUTEWIDGET_H