mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2025-04-04 05:57:28 +03:00
It didn't work anymore, at all. Touchscreen polling occurred only *after* waiting for a button had completed. So the touchscreen events, if any, would be ignored until the user had pressed a button, possibly firing off another action with that button press and forwarding the touchscreen event to the next interface that got brought up as a result. Reusing this code and fixing it would require far more work than rewriting everything anew with touchscreen devices in mind from the beginning. MtH: Resolved conflicts, mainly from the GMenu2X pointer to reference change I did on 2015-04-21.
28 lines
458 B
C++
28 lines
458 B
C++
#include "buttonbox.h"
|
|
|
|
#include "gmenu2x.h"
|
|
#include "iconbutton.h"
|
|
|
|
using std::unique_ptr;
|
|
using std::move;
|
|
|
|
void ButtonBox::add(unique_ptr<IconButton> button)
|
|
{
|
|
buttons.push_back(move(button));
|
|
}
|
|
|
|
void ButtonBox::clear()
|
|
{
|
|
buttons.clear();
|
|
}
|
|
|
|
void ButtonBox::paint(Surface& s, int x, int y)
|
|
{
|
|
for (auto& button : buttons) {
|
|
auto rect = button->getRect();
|
|
button->setPosition(x, y - rect.h);
|
|
button->paint(s);
|
|
x += button->getRect().w + 6;
|
|
}
|
|
}
|