💿🐜 Antkeeper source code https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

126 lines
2.4 KiB

/*
* Copyright (C) 2017-2019 Christopher J. Howard
*
* This file is part of Antkeeper Source Code.
*
* Antkeeper Source Code is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Antkeeper Source Code is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Antkeeper Source Code. If not, see <http://www.gnu.org/licenses/>.
*/
#include "menu.hpp"
MenuItem::MenuItem():
activatedCallback(nullptr)
{
container = new UIContainer();
container->setAnchor(Anchor::TOP_LEFT);
nameLabel = new UILabel();
nameLabel->setAnchor(Anchor::TOP_LEFT);
valueLabel = new UILabel();
valueLabel->setAnchor(Anchor::TOP_RIGHT);
container->addChild(nameLabel);
container->addChild(valueLabel);
}
MenuItem::~MenuItem()
{
delete container;
delete nameLabel;
delete valueLabel;
}
void MenuItem::setFont(Font* font)
{
nameLabel->setFont(font);
valueLabel->setFont(font);
}
void MenuItem::setName(const std::string& name)
{
nameLabel->setText(name);
}
void MenuItem::setValue(const std::string& value)
{
valueLabel->setText(value);
}
void MenuItem::setActivatedCallback(std::function<void()> callback)
{
activatedCallback = callback;
}
void MenuItem::activate()
{
if (activatedCallback)
{
activatedCallback();
}
}
Menu::Menu()
{
container = new UIContainer();
}
Menu::~Menu()
{
removeItems();
delete container;
}
MenuItem* Menu::addItem()
{
MenuItem* item = new MenuItem();
container->addChild(item->container);
items.push_back(item);
return item;
}
void Menu::removeItems()
{
for (MenuItem* item: items)
{
container->removeChild(item->container);
delete item;
}
items.clear();
}
void Menu::setFonts(Font* font)
{
for (MenuItem* item: items)
{
item->setFont(font);
}
}
void Menu::resize(int w, int h)
{
container->setDimensions(Vector2(w, h));
int spacing = h / items.size();
int offset = 0;
for (MenuItem* item: items)
{
item->container->setTranslation(Vector2(0, offset));
item->container->setDimensions(Vector2(w, item->getNameLabel()->getFont()->getMetrics().getHeight()));
offset += spacing;
}
}