|
@ -23,6 +23,29 @@ public: \ |
|
|
} \ |
|
|
} \ |
|
|
Q_SIGNAL void SMALL_NAME ## LedChanged(char value) |
|
|
Q_SIGNAL void SMALL_NAME ## LedChanged(char value) |
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
|
|
#define PUSH_BUTTON_FPS(CAPITAL_NAME, SMALL_NAME) \ |
|
|
|
|
|
private: \ |
|
|
|
|
|
PushButton _ ## SMALL_NAME{0x00}; \ |
|
|
|
|
|
void init ## CAPITAL_NAME() \ |
|
|
|
|
|
{ \ |
|
|
|
|
|
connect(this, &Console::dataReady, _ ## SMALL_NAME.getLed(), &Led::newData); \ |
|
|
|
|
|
connect(_ ## SMALL_NAME.getLed(), SIGNAL(ledChanged(char)), this, \ |
|
|
|
|
|
SIGNAL(SMALL_NAME ## LedChanged(char))); \ |
|
|
|
|
|
} \ |
|
|
|
|
|
public: \ |
|
|
|
|
|
void press ## CAPITAL_NAME() \ |
|
|
|
|
|
{ \ |
|
|
|
|
|
auto arr = _ ## SMALL_NAME.press(); \ |
|
|
|
|
|
_dataSender->send(arr); \ |
|
|
|
|
|
} \ |
|
|
|
|
|
void release ## CAPITAL_NAME() \ |
|
|
|
|
|
{ \ |
|
|
|
|
|
auto arr = _ ## SMALL_NAME.release(); \ |
|
|
|
|
|
_dataSender->send(arr); \ |
|
|
|
|
|
} \ |
|
|
|
|
|
Q_SIGNAL void SMALL_NAME ## LedChanged(char value) |
|
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
/*************************************************************************************************/ |
|
|
#define PUSH_BUTTON_PROBE_SLOT(CAPITAL_NAME, SMALL_NAME, SLOT_NUMBER) \ |
|
|
#define PUSH_BUTTON_PROBE_SLOT(CAPITAL_NAME, SMALL_NAME, SLOT_NUMBER) \ |
|
|
private: \ |
|
|
private: \ |
|
@ -107,4 +130,23 @@ public: \ |
|
|
} \ |
|
|
} \ |
|
|
Q_SIGNAL void SMALL_NAME ## LedChanged(char value) |
|
|
Q_SIGNAL void SMALL_NAME ## LedChanged(char value) |
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
|
|
#define ROTARY_BUTTON_FPS(CAPITAL_NAME, SMALL_NAME) \ |
|
|
|
|
|
private: \ |
|
|
|
|
|
RotaryButton _ ## SMALL_NAME{0x00}; \ |
|
|
|
|
|
void init ## CAPITAL_NAME() \ |
|
|
|
|
|
{ \ |
|
|
|
|
|
connect(this, &Console::dataReady, _ ## SMALL_NAME.getLed(), &Led::newData); \ |
|
|
|
|
|
connect(_ ## SMALL_NAME.getLed(), SIGNAL(ledChanged(char)), this, \ |
|
|
|
|
|
SIGNAL(SMALL_NAME ## LedChanged(char))); \ |
|
|
|
|
|
} \ |
|
|
|
|
|
public: \ |
|
|
|
|
|
void rotate ## CAPITAL_NAME(int value) \ |
|
|
|
|
|
{ \ |
|
|
|
|
|
auto arr = _ ## SMALL_NAME.rotate(value); \ |
|
|
|
|
|
arr[7] = 0x01; \ |
|
|
|
|
|
_dataSender->sendProbeSlots(arr); \ |
|
|
|
|
|
} \ |
|
|
|
|
|
Q_SIGNAL void SMALL_NAME ## LedChanged(char value) |
|
|
|
|
|
|
|
|
#endif //BUTTONHELPER_H
|
|
|
#endif //BUTTONHELPER_H
|
|
|