2010-02-04 13:33:47 +02:00
|
|
|
/***************************************************************************
|
2011-10-23 17:13:02 +03:00
|
|
|
* Copyright (C) 2006 by Massimiliano Torromeo *
|
|
|
|
* massimiliano.torromeo@gmail.com *
|
2010-02-04 13:33:47 +02:00
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
***************************************************************************/
|
|
|
|
|
2011-10-23 17:13:02 +03:00
|
|
|
#ifndef SETTINGSDIALOG_H
|
|
|
|
#define SETTINGSDIALOG_H
|
2010-02-04 13:33:47 +02:00
|
|
|
|
2010-05-05 15:35:52 +03:00
|
|
|
#include "dialog.h"
|
2010-02-04 13:33:47 +02:00
|
|
|
|
2014-08-16 17:57:45 +03:00
|
|
|
#include <algorithm>
|
|
|
|
#include <memory>
|
2011-10-23 17:13:02 +03:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2010-02-04 13:33:47 +02:00
|
|
|
|
2010-07-28 00:09:16 +03:00
|
|
|
class InputManager;
|
2011-10-23 17:13:02 +03:00
|
|
|
class MenuSetting;
|
2010-07-28 00:09:16 +03:00
|
|
|
|
2010-05-05 15:35:52 +03:00
|
|
|
class SettingsDialog : protected Dialog {
|
2010-02-04 13:33:47 +02:00
|
|
|
private:
|
2010-07-28 00:09:16 +03:00
|
|
|
InputManager &inputMgr;
|
2014-08-16 17:57:45 +03:00
|
|
|
std::vector<std::unique_ptr<MenuSetting>> settings;
|
2011-10-23 17:13:02 +03:00
|
|
|
std::string text, icon;
|
2010-02-04 13:33:47 +02:00
|
|
|
|
|
|
|
public:
|
2014-10-05 09:46:48 +03:00
|
|
|
SettingsDialog(GMenu2X& gmenu2x, InputManager &inputMgr,
|
2011-10-23 17:13:02 +03:00
|
|
|
const std::string &text,
|
|
|
|
const std::string &icon = "skin:sections/settings.png");
|
2014-08-16 17:57:45 +03:00
|
|
|
|
|
|
|
void addSetting(std::unique_ptr<MenuSetting> setting) {
|
|
|
|
settings.push_back(std::move(setting));
|
|
|
|
}
|
2010-02-04 13:33:47 +02:00
|
|
|
|
2014-08-16 18:11:18 +03:00
|
|
|
/**
|
|
|
|
* Shows the dialog in a modal way.
|
|
|
|
* @return true iff any settings were changed.
|
|
|
|
*/
|
2010-02-04 13:33:47 +02:00
|
|
|
bool exec();
|
|
|
|
};
|
|
|
|
|
2011-10-23 17:13:02 +03:00
|
|
|
#endif // SETTINGSDIALOG_H
|