/* Copyright (C) 2014 - 2018 by Iris Morelle Part of the Battle for Wesnoth Project https://www.wesnoth.org/ 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. See the COPYING file for more details. */ #pragma once #include "gui/dialogs/modal_dialog.hpp" struct theme_info; namespace gui2 { namespace dialogs { class theme_list : public modal_dialog { public: explicit theme_list(const std::vector& themes, int selection = -1); /** * Returns the selected item index after displaying. * @return -1 if the dialog was canceled. */ int selected_index() const { return index_; } /** Sets the initially selected item index (-1 by default). */ void set_selected_index(int index) { index_ = index; } private: int index_; std::vector themes_; /** Inherited from modal_dialog, implemented by REGISTER_DIALOG. */ virtual const std::string& window_id() const override; /** Inherited from modal_dialog. */ virtual void pre_show(window& window) override; /** Inherited from modal_dialog. */ virtual void post_show(window& window) override; }; } // namespace dialogs } // namespace gui2