main.cpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  1. /*
  2. * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
  3. * Copyright (c) 2021, Jakob-Niklas See <git@nwex.de>
  4. * Copyright (c) 2021-2022, Sam Atkins <atkinssj@serenityos.org>
  5. * Copyright (c) 2021, Antonio Di Stefano <tonio9681@gmail.com>
  6. * Copyright (c) 2022, Filiph Sandström <filiph.sandstrom@filfatstudios.com>
  7. *
  8. * SPDX-License-Identifier: BSD-2-Clause
  9. */
  10. #include "PreviewWidget.h"
  11. #include <Applications/ThemeEditor/ThemeEditorGML.h>
  12. #include <LibCore/ArgsParser.h>
  13. #include <LibCore/ConfigFile.h>
  14. #include <LibCore/System.h>
  15. #include <LibFileSystemAccessClient/Client.h>
  16. #include <LibGUI/ActionGroup.h>
  17. #include <LibGUI/Application.h>
  18. #include <LibGUI/BoxLayout.h>
  19. #include <LibGUI/Button.h>
  20. #include <LibGUI/CheckBox.h>
  21. #include <LibGUI/ColorInput.h>
  22. #include <LibGUI/ComboBox.h>
  23. #include <LibGUI/FilePicker.h>
  24. #include <LibGUI/Icon.h>
  25. #include <LibGUI/ItemListModel.h>
  26. #include <LibGUI/Menu.h>
  27. #include <LibGUI/Menubar.h>
  28. #include <LibGUI/MessageBox.h>
  29. #include <LibGUI/SpinBox.h>
  30. #include <LibGUI/TextBox.h>
  31. #include <LibGUI/Window.h>
  32. #include <LibGfx/Filters/ColorBlindnessFilter.h>
  33. #include <LibMain/Main.h>
  34. #include <unistd.h>
  35. template<typename T>
  36. class RoleModel final : public GUI::ItemListModel<T> {
  37. public:
  38. static ErrorOr<NonnullRefPtr<RoleModel>> try_create(Vector<T> const& data)
  39. {
  40. return adopt_nonnull_ref_or_enomem(new (nothrow) RoleModel<T>(data));
  41. }
  42. virtual GUI::Variant data(GUI::ModelIndex const& index, GUI::ModelRole role) const override
  43. {
  44. if (role == GUI::ModelRole::Display)
  45. return Gfx::to_string(this->m_data[index.row()]);
  46. if (role == GUI::ModelRole::Custom)
  47. return this->m_data[index.row()];
  48. return GUI::ItemListModel<T>::data(index, role);
  49. }
  50. private:
  51. explicit RoleModel(Vector<T> const& data)
  52. : GUI::ItemListModel<T>(data)
  53. {
  54. }
  55. };
  56. class AlignmentModel final : public GUI::Model {
  57. public:
  58. static ErrorOr<NonnullRefPtr<AlignmentModel>> try_create()
  59. {
  60. return adopt_nonnull_ref_or_enomem(new (nothrow) AlignmentModel());
  61. }
  62. virtual ~AlignmentModel() = default;
  63. virtual int row_count(GUI::ModelIndex const& = GUI::ModelIndex()) const override { return 3; }
  64. virtual int column_count(GUI::ModelIndex const& = GUI::ModelIndex()) const override { return 2; }
  65. virtual GUI::Variant data(GUI::ModelIndex const& index, GUI::ModelRole role) const override
  66. {
  67. if (role == GUI::ModelRole::Display)
  68. return m_alignments[index.row()].title;
  69. if (role == GUI::ModelRole::Custom)
  70. return m_alignments[index.row()].setting_value;
  71. return {};
  72. }
  73. private:
  74. AlignmentModel() = default;
  75. struct AlignmentValue {
  76. String title;
  77. Gfx::TextAlignment setting_value;
  78. };
  79. Vector<AlignmentValue> m_alignments {
  80. { "Center", Gfx::TextAlignment::Center },
  81. { "Left", Gfx::TextAlignment::CenterLeft },
  82. { "Right", Gfx::TextAlignment::CenterRight },
  83. };
  84. };
  85. ErrorOr<int> serenity_main(Main::Arguments arguments)
  86. {
  87. TRY(Core::System::pledge("stdio recvfd sendfd thread rpath cpath wpath unix"));
  88. auto app = TRY(GUI::Application::try_create(arguments));
  89. char const* file_to_edit = nullptr;
  90. Core::ArgsParser parser;
  91. parser.add_positional_argument(file_to_edit, "Theme file to edit", "file", Core::ArgsParser::Required::No);
  92. parser.parse(arguments);
  93. Optional<String> path = {};
  94. if (file_to_edit) {
  95. path = Core::File::absolute_path(file_to_edit);
  96. if (Core::File::exists(*path)) {
  97. dbgln("unveil for: {}", *path);
  98. if (unveil(path->characters(), "r") < 0) {
  99. perror("unveil");
  100. return 1;
  101. }
  102. }
  103. }
  104. TRY(Core::System::pledge("stdio recvfd sendfd thread rpath unix"));
  105. TRY(Core::System::unveil("/tmp/portal/filesystemaccess", "rw"));
  106. TRY(Core::System::unveil("/res", "r"));
  107. TRY(Core::System::unveil(nullptr, nullptr));
  108. auto app_icon = GUI::Icon::default_icon("app-theme-editor");
  109. Gfx::Palette startup_preview_palette = file_to_edit ? Gfx::Palette(Gfx::PaletteImpl::create_with_anonymous_buffer(Gfx::load_system_theme(*path))) : app->palette();
  110. auto window = GUI::Window::construct();
  111. auto last_modified_time = Time::now_monotonic();
  112. Vector<Gfx::ColorRole> color_roles;
  113. #define __ENUMERATE_COLOR_ROLE(role) color_roles.append(Gfx::ColorRole::role);
  114. ENUMERATE_COLOR_ROLES(__ENUMERATE_COLOR_ROLE)
  115. #undef __ENUMERATE_COLOR_ROLE
  116. Vector<Gfx::AlignmentRole> alignment_roles;
  117. #define __ENUMERATE_ALIGNMENT_ROLE(role) alignment_roles.append(Gfx::AlignmentRole::role);
  118. ENUMERATE_ALIGNMENT_ROLES(__ENUMERATE_ALIGNMENT_ROLE)
  119. #undef __ENUMERATE_ALIGNMENT_ROLE
  120. Vector<Gfx::FlagRole> flag_roles;
  121. #define __ENUMERATE_FLAG_ROLE(role) flag_roles.append(Gfx::FlagRole::role);
  122. ENUMERATE_FLAG_ROLES(__ENUMERATE_FLAG_ROLE)
  123. #undef __ENUMERATE_FLAG_ROLE
  124. Vector<Gfx::MetricRole> metric_roles;
  125. #define __ENUMERATE_METRIC_ROLE(role) metric_roles.append(Gfx::MetricRole::role);
  126. ENUMERATE_METRIC_ROLES(__ENUMERATE_METRIC_ROLE)
  127. #undef __ENUMERATE_METRIC_ROLE
  128. Vector<Gfx::PathRole> path_roles;
  129. #define __ENUMERATE_PATH_ROLE(role) path_roles.append(Gfx::PathRole::role);
  130. ENUMERATE_PATH_ROLES(__ENUMERATE_PATH_ROLE)
  131. #undef __ENUMERATE_PATH_ROLE
  132. auto main_widget = TRY(window->try_set_main_widget<GUI::Widget>());
  133. main_widget->load_from_gml(theme_editor_gml);
  134. auto& preview_widget = main_widget->find_descendant_of_type_named<GUI::Frame>("preview_frame")
  135. ->add<ThemeEditor::PreviewWidget>(startup_preview_palette);
  136. auto& color_combo_box = *main_widget->find_descendant_of_type_named<GUI::ComboBox>("color_combo_box");
  137. auto& color_input = *main_widget->find_descendant_of_type_named<GUI::ColorInput>("color_input");
  138. auto& alignment_combo_box = *main_widget->find_descendant_of_type_named<GUI::ComboBox>("alignment_combo_box");
  139. auto& alignment_input = *main_widget->find_descendant_of_type_named<GUI::ComboBox>("alignment_input");
  140. auto& flag_combo_box = *main_widget->find_descendant_of_type_named<GUI::ComboBox>("flag_combo_box");
  141. auto& flag_input = *main_widget->find_descendant_of_type_named<GUI::CheckBox>("flag_input");
  142. auto& metric_combo_box = *main_widget->find_descendant_of_type_named<GUI::ComboBox>("metric_combo_box");
  143. auto& metric_input = *main_widget->find_descendant_of_type_named<GUI::SpinBox>("metric_input");
  144. auto& path_combo_box = *main_widget->find_descendant_of_type_named<GUI::ComboBox>("path_combo_box");
  145. auto& path_input = *main_widget->find_descendant_of_type_named<GUI::TextBox>("path_input");
  146. auto& path_picker_button = *main_widget->find_descendant_of_type_named<GUI::Button>("path_picker_button");
  147. color_combo_box.set_model(TRY(RoleModel<Gfx::ColorRole>::try_create(color_roles)));
  148. color_combo_box.on_change = [&](auto&, auto& index) {
  149. auto role = index.model()->data(index, GUI::ModelRole::Custom).to_color_role();
  150. color_input.set_color(preview_widget.preview_palette().color(role), GUI::AllowCallback::No);
  151. };
  152. color_combo_box.set_selected_index((size_t)Gfx::ColorRole::Window - 1);
  153. color_input.on_change = [&] {
  154. auto role = color_combo_box.model()->index(color_combo_box.selected_index()).data(GUI::ModelRole::Custom).to_color_role();
  155. auto preview_palette = preview_widget.preview_palette();
  156. preview_palette.set_color(role, color_input.color());
  157. preview_widget.set_preview_palette(preview_palette);
  158. };
  159. color_input.set_color(startup_preview_palette.color(Gfx::ColorRole::Window), GUI::AllowCallback::No);
  160. alignment_combo_box.set_model(TRY(RoleModel<Gfx::AlignmentRole>::try_create(alignment_roles)));
  161. alignment_combo_box.on_change = [&](auto&, auto& index) {
  162. auto role = index.model()->data(index, GUI::ModelRole::Custom).to_alignment_role();
  163. alignment_input.set_selected_index((size_t)preview_widget.preview_palette().alignment(role), GUI::AllowCallback::No);
  164. };
  165. alignment_combo_box.set_selected_index((size_t)Gfx::AlignmentRole::TitleAlignment - 1);
  166. alignment_input.set_only_allow_values_from_model(true);
  167. alignment_input.set_model(TRY(AlignmentModel::try_create()));
  168. alignment_input.set_selected_index((size_t)startup_preview_palette.alignment(Gfx::AlignmentRole::TitleAlignment), GUI::AllowCallback::No);
  169. alignment_input.on_change = [&](auto&, auto& index) {
  170. auto role = alignment_combo_box.model()->index(alignment_combo_box.selected_index()).data(GUI::ModelRole::Custom).to_alignment_role();
  171. auto preview_palette = preview_widget.preview_palette();
  172. preview_palette.set_alignment(role, index.data(GUI::ModelRole::Custom).to_text_alignment(Gfx::TextAlignment::CenterLeft));
  173. preview_widget.set_preview_palette(preview_palette);
  174. };
  175. flag_combo_box.set_model(TRY(RoleModel<Gfx::FlagRole>::try_create(flag_roles)));
  176. flag_combo_box.on_change = [&](auto&, auto& index) {
  177. auto role = index.model()->data(index, GUI::ModelRole::Custom).to_flag_role();
  178. flag_input.set_checked(preview_widget.preview_palette().flag(role), GUI::AllowCallback::No);
  179. };
  180. flag_combo_box.set_selected_index((size_t)Gfx::FlagRole::IsDark - 1);
  181. flag_input.on_checked = [&](bool checked) {
  182. auto role = flag_combo_box.model()->index(flag_combo_box.selected_index()).data(GUI::ModelRole::Custom).to_flag_role();
  183. auto preview_palette = preview_widget.preview_palette();
  184. preview_palette.set_flag(role, checked);
  185. preview_widget.set_preview_palette(preview_palette);
  186. };
  187. flag_input.set_checked(startup_preview_palette.flag(Gfx::FlagRole::IsDark), GUI::AllowCallback::No);
  188. metric_combo_box.set_model(TRY(RoleModel<Gfx::MetricRole>::try_create(metric_roles)));
  189. metric_combo_box.on_change = [&](auto&, auto& index) {
  190. auto role = index.model()->data(index, GUI::ModelRole::Custom).to_metric_role();
  191. metric_input.set_value(preview_widget.preview_palette().metric(role), GUI::AllowCallback::No);
  192. };
  193. metric_combo_box.set_selected_index((size_t)Gfx::MetricRole::TitleButtonHeight - 1);
  194. metric_input.on_change = [&](int value) {
  195. auto role = metric_combo_box.model()->index(metric_combo_box.selected_index()).data(GUI::ModelRole::Custom).to_metric_role();
  196. auto preview_palette = preview_widget.preview_palette();
  197. preview_palette.set_metric(role, value);
  198. preview_widget.set_preview_palette(preview_palette);
  199. };
  200. metric_input.set_value(startup_preview_palette.metric(Gfx::MetricRole::TitleButtonHeight), GUI::AllowCallback::No);
  201. path_combo_box.set_model(TRY(RoleModel<Gfx::PathRole>::try_create(path_roles)));
  202. path_combo_box.on_change = [&](auto&, auto& index) {
  203. auto role = index.model()->data(index, GUI::ModelRole::Custom).to_path_role();
  204. path_input.set_text(preview_widget.preview_palette().path(role), GUI::AllowCallback::No);
  205. };
  206. path_combo_box.set_selected_index((size_t)Gfx::PathRole::TitleButtonIcons - 1);
  207. path_input.on_change = [&] {
  208. auto role = path_combo_box.model()->index(path_combo_box.selected_index()).data(GUI::ModelRole::Custom).to_path_role();
  209. auto preview_palette = preview_widget.preview_palette();
  210. preview_palette.set_path(role, path_input.text());
  211. preview_widget.set_preview_palette(preview_palette);
  212. };
  213. path_input.set_text(startup_preview_palette.path(Gfx::PathRole::TitleButtonIcons), GUI::AllowCallback::No);
  214. path_picker_button.on_click = [&](auto) {
  215. auto role = path_combo_box.model()->index(path_combo_box.selected_index()).data(GUI::ModelRole::Custom).to_path_role();
  216. bool open_folder = (role == Gfx::PathRole::TitleButtonIcons);
  217. auto window_title = String::formatted(open_folder ? "Select {} folder" : "Select {} file", path_combo_box.text());
  218. auto target_path = path_input.text();
  219. if (Core::File::exists(target_path)) {
  220. if (!Core::File::is_directory(target_path))
  221. target_path = LexicalPath::dirname(target_path);
  222. } else {
  223. target_path = "/res/icons";
  224. }
  225. auto result = GUI::FilePicker::get_open_filepath(window, window_title, target_path, open_folder);
  226. if (!result.has_value())
  227. return;
  228. path_input.set_text(*result);
  229. };
  230. auto file_menu = TRY(window->try_add_menu("&File"));
  231. auto update_window_title = [&] {
  232. window->set_title(String::formatted("{}[*] - Theme Editor", path.value_or("Untitled")));
  233. };
  234. preview_widget.on_palette_change = [&] {
  235. window->set_modified(true);
  236. };
  237. preview_widget.on_theme_load_from_file = [&](String const& new_path) {
  238. path = new_path;
  239. update_window_title();
  240. auto selected_color_role = color_combo_box.model()->index(color_combo_box.selected_index()).data(GUI::ModelRole::Custom).to_color_role();
  241. color_input.set_color(preview_widget.preview_palette().color(selected_color_role), GUI::AllowCallback::No);
  242. auto selected_alignment_role = alignment_combo_box.model()->index(alignment_combo_box.selected_index()).data(GUI::ModelRole::Custom).to_alignment_role();
  243. alignment_input.set_selected_index((size_t)(preview_widget.preview_palette().alignment(selected_alignment_role), GUI::AllowCallback::No));
  244. auto selected_flag_role = flag_combo_box.model()->index(flag_combo_box.selected_index()).data(GUI::ModelRole::Custom).to_flag_role();
  245. flag_input.set_checked(preview_widget.preview_palette().flag(selected_flag_role), GUI::AllowCallback::No);
  246. auto selected_metric_role = metric_combo_box.model()->index(metric_combo_box.selected_index()).data(GUI::ModelRole::Custom).to_metric_role();
  247. metric_input.set_value(preview_widget.preview_palette().metric(selected_metric_role), GUI::AllowCallback::No);
  248. auto selected_path_role = path_combo_box.model()->index(path_combo_box.selected_index()).data(GUI::ModelRole::Custom).to_path_role();
  249. path_input.set_text(preview_widget.preview_palette().path(selected_path_role), GUI::AllowCallback::No);
  250. last_modified_time = Time::now_monotonic();
  251. window->set_modified(false);
  252. };
  253. auto save_to_result = [&](auto const& response) {
  254. if (response.is_error())
  255. return;
  256. update_window_title();
  257. auto file = response.value();
  258. auto theme = Core::ConfigFile::open(file->filename(), file->leak_fd()).release_value_but_fixme_should_propagate_errors();
  259. for (auto role : color_roles) {
  260. theme->write_entry("Colors", to_string(role), preview_widget.preview_palette().color(role).to_string());
  261. }
  262. for (auto role : flag_roles) {
  263. theme->write_bool_entry("Flags", to_string(role), preview_widget.preview_palette().flag(role));
  264. }
  265. for (auto role : metric_roles) {
  266. theme->write_num_entry("Metrics", to_string(role), preview_widget.preview_palette().metric(role));
  267. }
  268. for (auto role : path_roles) {
  269. theme->write_entry("Paths", to_string(role), preview_widget.preview_palette().path(role));
  270. }
  271. auto sync_result = theme->sync();
  272. if (sync_result.is_error()) {
  273. GUI::MessageBox::show_error(window, String::formatted("Failed to save theme file: {}", sync_result.error()));
  274. } else {
  275. last_modified_time = Time::now_monotonic();
  276. window->set_modified(false);
  277. }
  278. };
  279. TRY(file_menu->try_add_action(GUI::CommonActions::make_open_action([&](auto&) {
  280. auto response = FileSystemAccessClient::Client::the().try_open_file(window, "Select theme file", "/res/themes");
  281. if (response.is_error())
  282. return;
  283. preview_widget.set_theme_from_file(*response.value());
  284. })));
  285. auto save_action = GUI::CommonActions::make_save_action([&](auto&) {
  286. if (path.has_value()) {
  287. save_to_result(FileSystemAccessClient::Client::the().try_request_file(window, *path, Core::OpenMode::ReadWrite | Core::OpenMode::Truncate));
  288. } else {
  289. save_to_result(FileSystemAccessClient::Client::the().try_save_file(window, "Theme", "ini", Core::OpenMode::ReadWrite | Core::OpenMode::Truncate));
  290. }
  291. });
  292. TRY(file_menu->try_add_action(save_action));
  293. TRY(file_menu->try_add_action(GUI::CommonActions::make_save_as_action([&](auto&) {
  294. save_to_result(FileSystemAccessClient::Client::the().try_save_file(window, "Theme", "ini", Core::OpenMode::ReadWrite | Core::OpenMode::Truncate));
  295. })));
  296. TRY(file_menu->try_add_separator());
  297. TRY(file_menu->try_add_action(GUI::CommonActions::make_quit_action([&](auto&) { app->quit(); })));
  298. auto accessibility_menu = TRY(window->try_add_menu("&Accessibility"));
  299. auto default_accessibility_action = GUI::Action::create_checkable("Default - non-impaired", { Mod_AltGr, Key_1 }, [&](auto&) {
  300. preview_widget.set_color_filter(nullptr);
  301. });
  302. default_accessibility_action->set_checked(true);
  303. auto pratanopia_accessibility_action = GUI::Action::create_checkable("Protanopia", { Mod_AltGr, Key_2 }, [&](auto&) {
  304. preview_widget.set_color_filter(Gfx::ColorBlindnessFilter::create_protanopia());
  305. });
  306. auto pratanomaly_accessibility_action = GUI::Action::create_checkable("Protanomaly", { Mod_AltGr, Key_3 }, [&](auto&) {
  307. preview_widget.set_color_filter(Gfx::ColorBlindnessFilter::create_protanomaly());
  308. });
  309. auto tritanopia_accessibility_action = GUI::Action::create_checkable("Tritanopia", { Mod_AltGr, Key_4 }, [&](auto&) {
  310. preview_widget.set_color_filter(Gfx::ColorBlindnessFilter::create_tritanopia());
  311. });
  312. auto tritanomaly_accessibility_action = GUI::Action::create_checkable("Tritanomaly", { Mod_AltGr, Key_5 }, [&](auto&) {
  313. preview_widget.set_color_filter(Gfx::ColorBlindnessFilter::create_tritanomaly());
  314. });
  315. auto deuteranopia_accessibility_action = GUI::Action::create_checkable("Deuteranopia", { Mod_AltGr, Key_6 }, [&](auto&) {
  316. preview_widget.set_color_filter(Gfx::ColorBlindnessFilter::create_deuteranopia());
  317. });
  318. auto deuteranomaly_accessibility_action = GUI::Action::create_checkable("Deuteranomaly", { Mod_AltGr, Key_7 }, [&](auto&) {
  319. preview_widget.set_color_filter(Gfx::ColorBlindnessFilter::create_deuteranomaly());
  320. });
  321. auto achromatopsia_accessibility_action = GUI::Action::create_checkable("Achromatopsia", { Mod_AltGr, Key_8 }, [&](auto&) {
  322. preview_widget.set_color_filter(Gfx::ColorBlindnessFilter::create_achromatopsia());
  323. });
  324. auto achromatomaly_accessibility_action = GUI::Action::create_checkable("Achromatomaly", { Mod_AltGr, Key_9 }, [&](auto&) {
  325. preview_widget.set_color_filter(Gfx::ColorBlindnessFilter::create_achromatomaly());
  326. });
  327. auto preview_type_action_group = make<GUI::ActionGroup>();
  328. preview_type_action_group->set_exclusive(true);
  329. preview_type_action_group->add_action(*default_accessibility_action);
  330. preview_type_action_group->add_action(*pratanopia_accessibility_action);
  331. preview_type_action_group->add_action(*pratanomaly_accessibility_action);
  332. preview_type_action_group->add_action(*tritanopia_accessibility_action);
  333. preview_type_action_group->add_action(*tritanomaly_accessibility_action);
  334. preview_type_action_group->add_action(*deuteranopia_accessibility_action);
  335. preview_type_action_group->add_action(*deuteranomaly_accessibility_action);
  336. preview_type_action_group->add_action(*achromatopsia_accessibility_action);
  337. preview_type_action_group->add_action(*achromatomaly_accessibility_action);
  338. TRY(accessibility_menu->try_add_action(default_accessibility_action));
  339. TRY(accessibility_menu->try_add_action(pratanopia_accessibility_action));
  340. TRY(accessibility_menu->try_add_action(pratanomaly_accessibility_action));
  341. TRY(accessibility_menu->try_add_action(tritanopia_accessibility_action));
  342. TRY(accessibility_menu->try_add_action(tritanomaly_accessibility_action));
  343. TRY(accessibility_menu->try_add_action(deuteranopia_accessibility_action));
  344. TRY(accessibility_menu->try_add_action(deuteranomaly_accessibility_action));
  345. TRY(accessibility_menu->try_add_action(achromatopsia_accessibility_action));
  346. TRY(accessibility_menu->try_add_action(achromatomaly_accessibility_action));
  347. auto help_menu = TRY(window->try_add_menu("&Help"));
  348. TRY(help_menu->try_add_action(GUI::CommonActions::make_about_action("Theme Editor", app_icon, window)));
  349. update_window_title();
  350. window->on_close_request = [&]() -> GUI::Window::CloseRequestDecision {
  351. if (!window->is_modified())
  352. return GUI::Window::CloseRequestDecision::Close;
  353. auto result = GUI::MessageBox::ask_about_unsaved_changes(window, path.value_or(""), last_modified_time);
  354. if (result == GUI::MessageBox::ExecResult::Yes) {
  355. save_action->activate();
  356. if (window->is_modified())
  357. return GUI::Window::CloseRequestDecision::StayOpen;
  358. return GUI::Window::CloseRequestDecision::Close;
  359. }
  360. if (result == GUI::MessageBox::ExecResult::No)
  361. return GUI::Window::CloseRequestDecision::Close;
  362. return GUI::Window::CloseRequestDecision::StayOpen;
  363. };
  364. window->resize(480, 520);
  365. window->set_resizable(false);
  366. window->show();
  367. window->set_icon(app_icon.bitmap_for_size(16));
  368. return app->exec();
  369. }