1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-04 20:40:44 +03:00
gmenu2x/src/menusettingmultistring.cpp
Paul Cercueil 88f54e1ccc Drop incredibly dirty and huge file FastDelegate.h
It's way too over-engineered for what we need to do, and we can
do much simpler using C++11.
2013-07-29 12:58:25 -04:00

87 lines
2.8 KiB
C++

/***************************************************************************
* Copyright (C) 2006 by Massimiliano Torromeo *
* massimiliano.torromeo@gmail.com *
* *
* This program 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 2 of the License, or *
* (at your option) any later version. *
* *
* This program 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 this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include "delegate.h"
#include "menusettingmultistring.h"
#include "gmenu2x.h"
#include "iconbutton.h"
#include <algorithm>
using std::find;
using std::string;
using std::vector;
MenuSettingMultiString::MenuSettingMultiString(
GMenu2X *gmenu2x, Touchscreen &ts,
const string &name, const string &description,
string *value, const vector<string> *choices_)
: MenuSettingStringBase(gmenu2x, name, description, value)
, choices(choices_)
{
setSel(find(choices->begin(), choices->end(), *value) - choices->begin());
IconButton *btn;
btn = new IconButton(gmenu2x, ts, "skin:imgs/buttons/left.png");
btn->setAction(BIND(&MenuSettingMultiString::decSel));
buttonBox.add(btn);
btn = new IconButton(gmenu2x, ts, "skin:imgs/buttons/right.png", gmenu2x->tr["Change value"]);
btn->setAction(BIND(&MenuSettingMultiString::incSel));
buttonBox.add(btn);
}
bool MenuSettingMultiString::handleButtonPress(InputManager::Button button)
{
switch (button) {
case InputManager::LEFT:
decSel();
break;
case InputManager::RIGHT:
incSel();
break;
default:
return false;
}
return true;
}
void MenuSettingMultiString::incSel()
{
setSel(selected + 1);
}
void MenuSettingMultiString::decSel()
{
setSel(selected - 1);
}
void MenuSettingMultiString::setSel(int sel)
{
if (sel < 0) {
sel = choices->size()-1;
} else if (sel >= (int)choices->size()) {
sel = 0;
}
selected = sel;
setValue((*choices)[sel]);
}