Bits and Droids connector
Connect your microcontroller to handle MFS2020 commands.
Loading...
Searching...
No Matches
mcheckbox.h
Go to the documentation of this file.
1#ifndef MCHECKBOX_H
2#define MCHECKBOX_H
3
4#include <qcheckbox.h>
5
6#include <QObject>
7
8class mCheckBox {
9 public:
10 mCheckBox();
11 mCheckBox(QString cbLabelText, QString objectName);
12 mCheckBox(QString cbLabelTextSet, QString objectNameSet, bool setDefaultState);
13 QCheckBox *generateCheckbox();
14
15 private:
16 QString cbLabelText;
17 QString objectName;
19};
20
21#endif // MCHECKBOX_H
Definition: mcheckbox.h:8
QCheckBox * generateCheckbox()
Definition: mcheckbox.cpp:21
QString cbLabelText
Definition: mcheckbox.h:16
bool defaultState
Definition: mcheckbox.h:18
QString objectName
Definition: mcheckbox.h:17
mCheckBox()
Definition: mcheckbox.cpp:7