Root/src/menusettingstring.cpp

1/***************************************************************************
2 * Copyright (C) 2006 by Massimiliano Torromeo *
3 * massimiliano.torromeo@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#include "menusettingstring.h"
22
23#include "delegate.h"
24#include "gmenu2x.h"
25#include "iconbutton.h"
26#include "inputdialog.h"
27
28using std::string;
29
30MenuSettingString::MenuSettingString(
31        GMenu2X *gmenu2x, Touchscreen &ts_,
32        const string &name, const string &description, string *value,
33        const string &diagTitle_, const string &diagIcon_)
34    : MenuSettingStringBase(gmenu2x, name, description, value)
35    , ts(ts_)
36    , diagTitle(diagTitle_)
37    , diagIcon(diagIcon_)
38{
39    IconButton *btn;
40
41    btn = new IconButton(gmenu2x, ts, "skin:imgs/buttons/cancel.png", gmenu2x->tr["Clear"]);
42    btn->setAction(BIND(&MenuSettingString::clear));
43    buttonBox.add(btn);
44
45    btn = new IconButton(gmenu2x, ts, "skin:imgs/buttons/accept.png", gmenu2x->tr["Edit"]);
46    btn->setAction(BIND(&MenuSettingString::edit));
47    buttonBox.add(btn);
48}
49
50void MenuSettingString::edit()
51{
52    InputDialog id(
53            gmenu2x, gmenu2x->input, ts,
54            description, value(), diagTitle, diagIcon);
55    if (id.exec()) setValue(id.getInput());
56}
57

Archive Download this file



interactive