Root/src/menusettingdir.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 "menusettingdir.h"
22
23#include "delegate.h"
24#include "dirdialog.h"
25#include "gmenu2x.h"
26#include "iconbutton.h"
27
28using std::string;
29
30MenuSettingDir::MenuSettingDir(
31        GMenu2X *gmenu2x, Touchscreen &ts_,
32        const string &name, const string &description, string *value)
33    : MenuSettingStringBase(gmenu2x, name, description, value)
34    , ts(ts_)
35{
36    IconButton *btn;
37
38    btn = new IconButton(gmenu2x, ts, "skin:imgs/buttons/cancel.png",
39            gmenu2x->tr["Clear"]);
40    btn->setAction(BIND(&MenuSettingDir::clear));
41    buttonBox.add(btn);
42
43    btn = new IconButton(gmenu2x, ts, "skin:imgs/buttons/accept.png",
44            gmenu2x->tr["Select a directory"]);
45    btn->setAction(BIND(&MenuSettingDir::edit));
46    buttonBox.add(btn);
47}
48
49void MenuSettingDir::edit()
50{
51    DirDialog dd(gmenu2x, ts, description, value());
52    if (dd.exec()) setValue(dd.getPath());
53}
54

Archive Download this file



interactive