31 lines
762 B
C++
31 lines
762 B
C++
#include "bobbydisplaywithtitle.h"
|
|
|
|
// local includes
|
|
#include "bobbybuttons.h"
|
|
|
|
void BobbyDisplayWithTitle::rawButtonPressed(uint8_t button)
|
|
{
|
|
//Base::rawButtonPressed(button);
|
|
if (const auto translated = translateRawButton(button))
|
|
buttonPressed(*translated);
|
|
}
|
|
|
|
void BobbyDisplayWithTitle::rawButtonReleased(uint8_t button)
|
|
{
|
|
//Base::rawButtonReleased(button);
|
|
if (const auto translated = translateRawButton(button))
|
|
buttonReleased(*translated);
|
|
}
|
|
|
|
void BobbyDisplayWithTitle::buttonPressed(espgui::Button button)
|
|
{
|
|
//Base::buttonPressed(button);
|
|
buttonPressedCommon(button);
|
|
}
|
|
|
|
void BobbyDisplayWithTitle::buttonReleased(espgui::Button button)
|
|
{
|
|
//Base::buttonReleased(button);
|
|
buttonReleasedCommon(button);
|
|
}
|