The Battle for Wesnoth  1.19.8+dev
sp_options_configure.cpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2008 - 2024
3  Part of the Battle for Wesnoth Project https://www.wesnoth.org/
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  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY.
11 
12  See the COPYING file for more details.
13 */
14 
15 #define GETTEXT_DOMAIN "wesnoth-lib"
16 
18 
19 
20 namespace gui2::dialogs
21 {
22 
23 REGISTER_DIALOG(sp_options_configure)
24 
25 sp_options_configure::sp_options_configure(ng::create_engine& create_engine, ng::configure_engine& config_engine)
26  : modal_dialog(window_id())
27  , create_engine_(create_engine)
28  , config_engine_(config_engine)
29  , options_manager_()
30 {
31  set_show_even_without_video(true);
32  set_allow_plugin_skip(false);
33 }
34 
36 {
38  options_manager_->update_all_options();
39 
40  plugins_context_.reset(new plugins_context("Campaign Configure"));
41  plugins_context_->set_callback("launch", [this](const config&) { set_retval(retval::OK); }, false);
42 }
43 
45 {
46  if(get_retval() == retval::OK) {
47  config_engine_.set_options(options_manager_->get_options_config());
48  }
49 }
50 
51 } // namespace dialogs
A config object defines a single node in a WML file, with access to child nodes.
Definition: config.hpp:158
Abstract base class for all modal dialogs.
std::unique_ptr< plugins_context > plugins_context_
virtual void pre_show() override
Actions to be taken before showing the window.
virtual void post_show() override
Actions to be taken after the window has been shown.
std::unique_ptr< mp_options_helper > options_manager_
void set_retval(const int retval, const bool close_window=true)
Sets there return value of the window.
Definition: window.hpp:395
int get_retval()
Definition: window.hpp:402
void set_options(const config &cfg)
REGISTER_DIALOG(editor_edit_unit)
@ OK
Dialog was closed with the OK button.
Definition: retval.hpp:35