1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-06-30 21:17:18 +03:00
gmenu2x/src/buttonbox.cpp

35 lines
547 B
C++
Raw Normal View History

#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;
}
}
void ButtonBox::handleTS()
{
for (auto& button : buttons) {
button->handleTS();
}
}