code cleanup #2

This commit is contained in:
Jonas Mucke
2020-01-15 19:04:51 +01:00
parent 72d55b2c8f
commit 0e6ce309c9
4 changed files with 38 additions and 66 deletions

View File

@@ -10,6 +10,8 @@ public:
IntelliInputDialog(QEventLoop* Loop = nullptr, QString Title = nullptr, QString Label = nullptr, int value = 5, int minValue = -2147483647, int maxValue = 2147483647, int step = 1);
static int getInt(QEventLoop* Loop = nullptr, QString Title = nullptr, QString Label = nullptr, int value = 5, int minValue = -2147483647, int maxValue = 2147483647, int step = 1);
public slots:
void slotCloseEvent();
void slotEingabe();
@@ -20,8 +22,11 @@ void createConnections(QEventLoop* Loop = nullptr);
void setValuesOfPalette();
void setInputBoxStyle();
int valueInt;
QGridLayout* Layout;
QDialogButtonBox* ButtonBox;
QEventLoop loop;
const QSize Linesize = QSize(150,20);
const QSize Buttonsize = QSize(72,20);