The Battle for Wesnoth  1.19.5+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 }
32 
34 {
36  options_manager_->update_all_options();
37 }
38 
40 {
41  if(get_retval() == retval::OK) {
42  config_engine_.set_options(options_manager_->get_options_config());
43  }
44 }
45 
46 } // namespace dialogs
Abstract base class for all modal dialogs.
int get_retval() const
Returns the cached window exit code.
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_options(const config &cfg)
REGISTER_DIALOG(editor_edit_unit)
@ OK
Dialog was closed with the OK button.
Definition: retval.hpp:35