many changes :P

This commit is contained in:
kazu
2016-06-06 22:08:53 +02:00
parent db6b479d86
commit 6243165084
56 changed files with 4399 additions and 245 deletions

View File

@@ -8,6 +8,7 @@ class QLabel;
class QComboBox;
class QLineEdit;
class QPushButton;
class QGridLayout;
class ElementParamWidget : public QGroupBox {
@@ -21,8 +22,11 @@ public:
private:
QGridLayout* lay;
QLabel* lblDetails;
MapModelElement* curElement = nullptr;
int r = 0;
struct {
QComboBox* cmb;
@@ -34,27 +38,6 @@ private:
QLabel* lbl;
} obstacleType;
struct {
QLineEdit* txt;
QLabel* lbl;
} name;
struct {
QLineEdit* txt;
QLabel* lbl;
} mac;
struct {
QLabel* txt;
QPushButton* btn;
QLabel* lbl;
} fileName;
struct {
QComboBox* cmb;
QLabel* lbl;
} outlineMethod;
signals:
public slots:
@@ -66,10 +49,6 @@ private slots:
void onMaterialChange();
void onObstacleTypeChange();
void onNameChange();
void onMACChanged();
void onOutlineMethodChange();
void onSelectFileName();
};