The Battle for Wesnoth  1.19.5+dev
screenshot_notification.cpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2013 - 2024
3  by Iris Morelle <shadowm2006@gmail.com>
4  Part of the Battle for Wesnoth Project https://www.wesnoth.org/
5 
6  This program is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY.
12 
13  See the COPYING file for more details.
14 */
15 
16 #define GETTEXT_DOMAIN "wesnoth-lib"
17 
19 
20 #include "desktop/clipboard.hpp"
21 #include "desktop/open.hpp"
22 #include "filesystem.hpp"
23 #include "gettext.hpp"
25 #include "gui/dialogs/message.hpp"
26 #include "gui/widgets/button.hpp"
27 #include "gui/widgets/label.hpp"
28 #include "gui/widgets/text_box.hpp"
29 #include "gui/widgets/window.hpp"
30 #include "picture.hpp"
31 
32 #include <boost/filesystem/path.hpp>
33 
34 #include <functional>
35 #include <stdexcept>
36 
37 namespace gui2::dialogs
38 {
39 
40 REGISTER_DIALOG(screenshot_notification)
41 
43  : modal_dialog(window_id())
44  , path_(path)
45  , screenshots_dir_path_(filesystem::get_screenshot_dir())
46  , screenshot_(screenshot)
47 {
48 }
49 
51 {
52  set_enter_disabled(true);
53 
54  text_box& path_box = find_widget<text_box>("path");
56  path_box.set_selection(0, path_box.text().find_last_of('.')); // TODO: do this cleaner!
57  keyboard_capture(&path_box);
59  std::placeholders::_3, std::placeholders::_5));
60 
61  find_widget<label>("filesize").set_label(font::unicode_em_dash);
62 
63  button& copy_b = find_widget<button>("copy");
65  copy_b, std::bind(&desktop::clipboard::copy_to_clipboard, std::ref(path_)));
66  copy_b.set_active(false);
67 
68  button& open_b = find_widget<button>("open");
70  open_b, std::bind(&desktop::open_object, std::ref(path_)));
71  open_b.set_active(false);
72 
73  button& bdir_b = find_widget<button>("browse_dir");
75  bdir_b,
76  std::bind(&desktop::open_object,
77  std::ref(screenshots_dir_path_)));
78 
79  button& save_b = find_widget<button>("save");
81 }
82 
84 {
85  text_box& path_box = find_widget<text_box>("path");
86  std::string filename = path_box.get_value();
88  path /= filename;
89 
90  path_ = path.string();
91 
94  gui2::show_error_message(_("Unsupported image format.\n\n"
95  "Try to save the screenshot as PNG instead."));
96  } else if(res == image::save_result::save_failed) {
98  translation::dsgettext("wesnoth", "Screenshot creation failed.\n\n"
99  "Make sure there is enough space on the drive holding Wesnoth’s player resource files and that file permissions are set up correctly."));
100  } else if(res != image::save_result::success) {
101  throw std::logic_error("Unexpected error while trying to save a screenshot");
102  } else {
103  path_box.set_active(false);
104  find_widget<button>("open").set_active(true);
105  find_widget<button>("save").set_active(false);
106  find_widget<button>("copy").set_active(true);
107 
108  const int filesize = filesystem::file_size(path_);
109  const std::string sizetext = utils::si_string(filesize, true, _("unit_byte^B"));
110  find_widget<label>("filesize").set_label(sizetext);
111  }
112 }
113 
114 void screenshot_notification::keypress_callback(bool& handled, SDL_Keycode key)
115 {
116  if(key == SDLK_RETURN || key == SDLK_KP_ENTER) {
117  save_screenshot();
118  handled = true;
119  }
120 }
121 
122 } // namespace dialogs
Simple push button.
Definition: button.hpp:36
virtual void set_active(const bool active) override
See styled_widget::set_active.
Definition: button.cpp:64
Abstract base class for all modal dialogs.
void keypress_callback(bool &handled, const SDL_Keycode key)
virtual void pre_show() override
Actions to be taken before showing the window.
std::string path_
The display function.
std::string get_value() const
void set_selection(std::size_t start, int length)
Sets or clears the text selection.
const std::string & text() const
virtual void set_value(const std::string &text)
The set_value is virtual for the password_box class.
virtual void set_active(const bool active) override
See styled_widget::set_active.
A widget that allows the user to input text in single line.
Definition: text_box.hpp:125
void set_enter_disabled(const bool enter_disabled)
Disable the enter key.
Definition: window.hpp:323
void keyboard_capture(widget *widget)
Definition: window.cpp:1207
Declarations for File-IO.
static std::string _(const char *str)
Definition: gettext.hpp:93
This file contains the window object, this object is a top level container which has the event manage...
void copy_to_clipboard(const std::string &text)
Copies text to the clipboard.
Definition: clipboard.cpp:27
bool open_object([[maybe_unused]] const std::string &path_or_url)
Definition: open.cpp:46
std::string base_name(const std::string &file, const bool remove_extension)
Returns the base filename of a file, with directory name stripped.
int file_size(const std::string &fname)
Returns the size of a file, or -1 if the file doesn't exist.
std::string get_screenshot_dir()
const std::string unicode_em_dash
Definition: constants.cpp:44
std::string path
Definition: filesystem.cpp:90
REGISTER_DIALOG(editor_edit_unit)
void connect_signal_pre_key_press(dispatcher &dispatcher, const signal_keyboard &signal)
Connects the signal for 'snooping' on the keypress.
Definition: dispatcher.cpp:172
void connect_signal_mouse_left_click(dispatcher &dispatcher, const signal &signal)
Connects a signal handler for a left mouse button click.
Definition: dispatcher.cpp:177
void show_error_message(const std::string &msg, bool message_use_markup)
Shows an error message to the user.
Definition: message.cpp:201
save_result
Definition: picture.hpp:262
save_result save_image(const locator &i_locator, const std::string &filename)
Definition: picture.cpp:884
std::string dsgettext(const char *domainname, const char *msgid)
Definition: gettext.cpp:434
std::string si_string(double input, bool base2, const std::string &unit)
Convert into a string with an SI-postfix.
Desktop environment interaction functions.
std::string filename
Filename.