| 55 | } |
| 56 | |
| 57 | std::string LayoutManager::getButtonLayoutRightName(ButtonLayoutRight layout) { |
| 58 | #define ENUM_CASE(name, value) case name: return #name; |
| 59 | switch (layout) { |
| 60 | ButtonLayoutRight_VALUELIST(ENUM_CASE) |
| 61 | default: return "BUTTON_LAYOUT_UNKNOWN"; |
| 62 | } |
| 63 | #undef ENUM_CASE |
| 64 | } |
| 65 | |
| 66 | LayoutManager::LayoutList LayoutManager::getLeftLayout(uint16_t index) { |
| 67 | // buttons |
no outgoing calls
no test coverage detected