Root/
| 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 "gmenu2x.h" |
| 24 | #include "iconbutton.h" |
| 25 | #include "inputdialog.h" |
| 26 | |
| 27 | using std::bind; |
| 28 | using std::string; |
| 29 | using std::unique_ptr; |
| 30 | |
| 31 | MenuSettingString::MenuSettingString( |
| 32 | GMenu2X& gmenu2x, |
| 33 | const string &name, const string &description, string *value, |
| 34 | const string &diagTitle_, const string &diagIcon_) |
| 35 | : MenuSettingStringBase(gmenu2x, name, description, value) |
| 36 | , diagTitle(diagTitle_) |
| 37 | , diagIcon(diagIcon_) |
| 38 | { |
| 39 | buttonBox.add(unique_ptr<IconButton>(new IconButton( |
| 40 | gmenu2x, "skin:imgs/buttons/cancel.png", |
| 41 | gmenu2x.tr["Clear"], |
| 42 | bind(&MenuSettingString::clear, this)))); |
| 43 | |
| 44 | buttonBox.add(unique_ptr<IconButton>(new IconButton( |
| 45 | gmenu2x, "skin:imgs/buttons/accept.png", |
| 46 | gmenu2x.tr["Edit"], |
| 47 | bind(&MenuSettingString::edit, this)))); |
| 48 | } |
| 49 | |
| 50 | void MenuSettingString::edit() |
| 51 | { |
| 52 | InputDialog id( |
| 53 | gmenu2x, gmenu2x.input, description, value(), diagTitle, diagIcon); |
| 54 | if (id.exec()) setValue(id.getInput()); |
| 55 | } |
| 56 |
Branches:
install_locations
master
opkrun
packages
