2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
2006-10-08 18:22:28 +00:00
|
|
|
*
|
2021-12-26 17:47:58 +00: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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2006-10-08 18:22:28 +00:00
|
|
|
*
|
|
|
|
* 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
|
2021-12-26 17:47:58 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2014-02-18 01:34:20 +00:00
|
|
|
*
|
2006-10-08 18:22:28 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GUI_THEMEBROWSER_H
|
|
|
|
#define GUI_THEMEBROWSER_H
|
|
|
|
|
|
|
|
#include "gui/dialog.h"
|
2009-01-02 21:24:13 +00:00
|
|
|
#include "gui/ThemeEngine.h"
|
2009-01-02 20:03:45 +00:00
|
|
|
|
2006-10-08 18:22:28 +00:00
|
|
|
#include "common/str.h"
|
2009-01-02 20:03:45 +00:00
|
|
|
#include "common/list.h"
|
2006-10-08 18:22:28 +00:00
|
|
|
|
|
|
|
namespace GUI {
|
|
|
|
|
2011-04-24 08:34:27 +00:00
|
|
|
class CommandSender;
|
2006-10-08 18:22:28 +00:00
|
|
|
class ListWidget;
|
|
|
|
|
|
|
|
class ThemeBrowser : public Dialog {
|
|
|
|
public:
|
|
|
|
ThemeBrowser();
|
|
|
|
|
2020-01-05 16:48:04 +00:00
|
|
|
void open() override;
|
|
|
|
void handleCommand(CommandSender *sender, uint32 cmd, uint32 data) override;
|
2006-10-08 18:22:28 +00:00
|
|
|
|
2008-12-27 16:09:08 +00:00
|
|
|
const Common::String &getSelected() const { return _select; }
|
2016-10-30 16:25:42 +00:00
|
|
|
const Common::String &getSelectedName() const { return _selectName; }
|
2006-10-08 18:22:28 +00:00
|
|
|
private:
|
|
|
|
ListWidget *_fileList;
|
|
|
|
Common::String _select;
|
2016-10-30 16:25:42 +00:00
|
|
|
Common::String _selectName;
|
2009-01-02 20:03:45 +00:00
|
|
|
|
2009-01-02 21:24:13 +00:00
|
|
|
typedef Common::List<ThemeEngine::ThemeDescriptor> ThemeDescList;
|
2008-12-27 16:09:08 +00:00
|
|
|
ThemeDescList _themes;
|
2006-10-08 18:22:28 +00:00
|
|
|
|
|
|
|
void updateListing();
|
|
|
|
};
|
|
|
|
|
2009-10-04 21:26:33 +00:00
|
|
|
} // End of namespace GUI
|
2006-10-08 18:22:28 +00:00
|
|
|
|
|
|
|
#endif
|