forked from Sepanta/console-emulator
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
5.5 KiB
150 lines
5.5 KiB
#ifndef BUTTONHELPER_H
|
|
#define BUTTONHELPER_H
|
|
|
|
#define PUSH_BUTTON(CAPITAL_NAME, SMALL_NAME, FUNC_CODE, LED_FUNC_CODE) \
|
|
private: \
|
|
PushButton _ ## SMALL_NAME{FUNC_CODE, LED_FUNC_CODE}; \
|
|
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_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) \
|
|
private: \
|
|
PushButton _ ## SMALL_NAME{SLOT_NUMBER, SLOT_NUMBER}; \
|
|
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(); \
|
|
arr[5] = static_cast<char>(this->selectedProbe ## SLOT_NUMBER); \
|
|
_dataSender->sendProbeSlots(arr); \
|
|
} \
|
|
void release ## CAPITAL_NAME() \
|
|
{ \
|
|
} \
|
|
Q_SIGNAL void SMALL_NAME ## LedChanged(char value); \
|
|
Q_SIGNAL void changeProbeSelectionEnable ## SLOT_NUMBER(bool value)
|
|
|
|
/*************************************************************************************************/
|
|
#define PUSH_BUTTON_NO_LED(CAPITAL_NAME, SMALL_NAME, FUNC_CODE) \
|
|
private: \
|
|
PushButton _ ## SMALL_NAME {FUNC_CODE}; \
|
|
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 ROTARY_BUTTON(CAPITAL_NAME, SMALL_NAME, FUNC_CODE, LED_FUNC_CODE) \
|
|
private: \
|
|
RotaryButton _ ## SMALL_NAME{FUNC_CODE, LED_FUNC_CODE}; \
|
|
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); \
|
|
_dataSender->send(arr); \
|
|
} \
|
|
Q_SIGNAL void SMALL_NAME ## LedChanged(char value)
|
|
|
|
/*************************************************************************************************/
|
|
#define ROTARY_BUTTON_NO_LED(CAPITAL_NAME, SMALL_NAME, FUNC_CODE) \
|
|
private: \
|
|
RotaryButton _ ## SMALL_NAME{FUNC_CODE}; \
|
|
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); \
|
|
_dataSender->send(arr); \
|
|
} \
|
|
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
|
|
|