The Battle for Wesnoth  1.19.7+dev
edit_pbl.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2023 - 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 #pragma once
16 
18 
19 namespace gui2::dialogs
20 {
22 {
23 public:
24  editor_edit_pbl(const std::string& pbl, const std::string& current_addon);
25 
26  /** The execute function. See @ref modal_dialog for more information. */
28 
29 private:
30  virtual void pre_show() override;
31  virtual void post_show() override;
32 
33  virtual const std::string& window_id() const override;
34 
35  void toggle_auth();
36  void add_translation();
37  void delete_translation();
38  void validate();
39  void update_icon_preview();
40  void update_url_preview();
41  void select_icon_file();
43 
44  std::string pbl_;
45  std::string current_addon_;
46  std::vector<std::string> dirs_;
47 };
48 
49 } // namespace gui2::dialogs
A config object defines a single node in a WML file, with access to child nodes.
Definition: config.hpp:172
editor_edit_pbl(const std::string &pbl, const std::string &current_addon)
Definition: edit_pbl.cpp:71
virtual void pre_show() override
The execute function.
Definition: edit_pbl.cpp:98
virtual void post_show() override
Actions to be taken after the window has been shown.
Definition: edit_pbl.cpp:227
virtual const std::string & window_id() const override
The ID of the window to build.
std::vector< std::string > dirs_
Definition: edit_pbl.hpp:46
Abstract base class for all modal dialogs.
#define DEFINE_SIMPLE_EXECUTE_WRAPPER(dialog)
Adds a bare-bonesstatic execute function to a dialog class that immediately invokes and return the re...