The Battle for Wesnoth  1.19.0-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(window.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.
virtual void pre_show(window &window) override
Actions to be taken before showing the window.
virtual void post_show(window &window) override
Actions to be taken after the window has been shown.
std::unique_ptr< mp_options_helper > options_manager_
base class of top level items, the only item which needs to store the final canvases to draw on.
Definition: window.hpp:63
int get_retval()
Definition: window.hpp:406
void set_options(const config &cfg)
REGISTER_DIALOG(tod_new_schedule)
@ OK
Dialog was closed with the OK button.
Definition: retval.hpp:35