/* File: GfxUIKeyValuePair.cpp Author: J. Ian Lindsay Date: 2022.06.25 */ #include "../GfxUI.h" /******************************************************************************* * GfxUIKeyValuePair *******************************************************************************/ int GfxUIKeyValuePair::_render(UIGfxWrapper* ui_gfx) { return 1; } bool GfxUIKeyValuePair::_notify(const GfxUIEvent GFX_EVNT, uint32_t x, uint32_t y) { bool ret = false; switch (GFX_EVNT) { default: break; } if (ret) { _need_redraw(true); } return ret; }