mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-08 20:22:55 +00:00
Now that we use RectMask internally to store the selection, we can expose more powerful APIs to allow for better control over the image selection.
607 lines
24 KiB
C++
607 lines
24 KiB
C++
/*
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "CreateNewImageDialog.h"
|
|
#include "CreateNewLayerDialog.h"
|
|
#include "FilterParams.h"
|
|
#include "Image.h"
|
|
#include "ImageEditor.h"
|
|
#include "Layer.h"
|
|
#include "LayerListWidget.h"
|
|
#include "LayerPropertiesWidget.h"
|
|
#include "PaletteWidget.h"
|
|
#include "Tool.h"
|
|
#include "ToolPropertiesWidget.h"
|
|
#include "ToolboxWidget.h"
|
|
#include <Applications/PixelPaint/PixelPaintWindowGML.h>
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <LibCore/File.h>
|
|
#include <LibGUI/Action.h>
|
|
#include <LibGUI/Application.h>
|
|
#include <LibGUI/Clipboard.h>
|
|
#include <LibGUI/FilePicker.h>
|
|
#include <LibGUI/Icon.h>
|
|
#include <LibGUI/Menubar.h>
|
|
#include <LibGUI/MessageBox.h>
|
|
#include <LibGUI/Statusbar.h>
|
|
#include <LibGUI/TabWidget.h>
|
|
#include <LibGUI/Toolbar.h>
|
|
#include <LibGUI/Window.h>
|
|
#include <LibGfx/Bitmap.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
if (pledge("stdio thread recvfd sendfd rpath unix wpath cpath", nullptr) < 0) {
|
|
perror("pledge");
|
|
return 1;
|
|
}
|
|
|
|
auto app = GUI::Application::construct(argc, argv);
|
|
|
|
const char* image_file = nullptr;
|
|
Core::ArgsParser args_parser;
|
|
args_parser.add_positional_argument(image_file, "Image file to open", "path", Core::ArgsParser::Required::No);
|
|
args_parser.parse(argc, argv);
|
|
|
|
auto app_icon = GUI::Icon::default_icon("app-pixel-paint");
|
|
|
|
auto window = GUI::Window::construct();
|
|
window->set_title("Pixel Paint");
|
|
window->resize(800, 510);
|
|
window->set_icon(app_icon.bitmap_for_size(16));
|
|
|
|
auto& main_widget = window->set_main_widget<GUI::Widget>();
|
|
main_widget.load_from_gml(pixel_paint_window_gml);
|
|
|
|
auto& toolbox = *main_widget.find_descendant_of_type_named<PixelPaint::ToolboxWidget>("toolbox");
|
|
auto& tab_widget = *main_widget.find_descendant_of_type_named<GUI::TabWidget>("tab_widget");
|
|
tab_widget.set_container_margins({ 4, 4, 5, 5 });
|
|
tab_widget.set_close_button_enabled(true);
|
|
|
|
auto& palette_widget = *main_widget.find_descendant_of_type_named<PixelPaint::PaletteWidget>("palette_widget");
|
|
|
|
auto current_image_editor = [&]() -> PixelPaint::ImageEditor* {
|
|
if (!tab_widget.active_widget())
|
|
return nullptr;
|
|
return downcast<PixelPaint::ImageEditor>(tab_widget.active_widget());
|
|
};
|
|
|
|
Function<PixelPaint::ImageEditor&(NonnullRefPtr<PixelPaint::Image>)> create_new_editor;
|
|
|
|
auto& layer_list_widget = *main_widget.find_descendant_of_type_named<PixelPaint::LayerListWidget>("layer_list_widget");
|
|
layer_list_widget.on_layer_select = [&](auto* layer) {
|
|
if (auto* editor = current_image_editor())
|
|
editor->set_active_layer(layer);
|
|
};
|
|
|
|
auto& layer_properties_widget = *main_widget.find_descendant_of_type_named<PixelPaint::LayerPropertiesWidget>("layer_properties_widget");
|
|
|
|
auto& tool_properties_widget = *main_widget.find_descendant_of_type_named<PixelPaint::ToolPropertiesWidget>("tool_properties_widget");
|
|
|
|
toolbox.on_tool_selection = [&](auto* tool) {
|
|
if (auto* editor = current_image_editor())
|
|
editor->set_active_tool(tool);
|
|
tool_properties_widget.set_active_tool(tool);
|
|
};
|
|
|
|
auto new_image_action = GUI::Action::create(
|
|
"&New Image...", { Mod_Ctrl, Key_N }, Gfx::Bitmap::load_from_file("/res/icons/16x16/new.png"), [&](auto&) {
|
|
auto dialog = PixelPaint::CreateNewImageDialog::construct(window);
|
|
if (dialog->exec() == GUI::Dialog::ExecOK) {
|
|
auto image = PixelPaint::Image::try_create_with_size(dialog->image_size());
|
|
auto bg_layer = PixelPaint::Layer::try_create_with_size(*image, image->size(), "Background");
|
|
VERIFY(bg_layer);
|
|
image->add_layer(*bg_layer);
|
|
bg_layer->bitmap().fill(Color::White);
|
|
auto image_title = dialog->image_name().trim_whitespace();
|
|
image->set_title(image_title.is_empty() ? "Untitled" : image_title);
|
|
|
|
auto& image_editor = create_new_editor(*image);
|
|
layer_list_widget.set_image(image);
|
|
image_editor.set_active_layer(bg_layer);
|
|
}
|
|
},
|
|
window);
|
|
|
|
auto open_image_file = [&](auto& path) {
|
|
auto image_or_error = PixelPaint::Image::try_create_from_file(path);
|
|
if (image_or_error.is_error()) {
|
|
GUI::MessageBox::show_error(window, String::formatted("Unable to open file: {}", path));
|
|
return;
|
|
}
|
|
auto& image = *image_or_error.value();
|
|
create_new_editor(image);
|
|
layer_list_widget.set_image(&image);
|
|
};
|
|
|
|
auto open_image_action = GUI::CommonActions::make_open_action([&](auto&) {
|
|
Optional<String> open_path = GUI::FilePicker::get_open_filepath(window);
|
|
if (!open_path.has_value())
|
|
return;
|
|
open_image_file(open_path.value());
|
|
});
|
|
|
|
auto save_image_as_action = GUI::CommonActions::make_save_as_action([&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
if (!editor)
|
|
return;
|
|
auto save_path = GUI::FilePicker::get_save_filepath(window, "untitled", "pp");
|
|
if (!save_path.has_value())
|
|
return;
|
|
auto result = editor->image().write_to_file(save_path.value());
|
|
if (result.is_error()) {
|
|
GUI::MessageBox::show_error(window, String::formatted("Could not save {}: {}", save_path.value(), result.error()));
|
|
return;
|
|
}
|
|
editor->image().set_path(save_path.value());
|
|
});
|
|
|
|
auto menubar = GUI::Menubar::construct();
|
|
auto& file_menu = menubar->add_menu("&File");
|
|
|
|
file_menu.add_action(new_image_action);
|
|
file_menu.add_action(open_image_action);
|
|
file_menu.add_action(save_image_as_action);
|
|
auto& export_submenu = file_menu.add_submenu("&Export");
|
|
export_submenu.add_action(
|
|
GUI::Action::create(
|
|
"As &BMP", [&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
if (!editor)
|
|
return;
|
|
auto save_path = GUI::FilePicker::get_save_filepath(window, "untitled", "bmp");
|
|
if (!save_path.has_value())
|
|
return;
|
|
auto result = editor->image().export_bmp_to_file(save_path.value());
|
|
if (result.is_error())
|
|
GUI::MessageBox::show_error(window, String::formatted("Export to BMP failed: {}", result.error()));
|
|
},
|
|
window));
|
|
export_submenu.add_action(
|
|
GUI::Action::create(
|
|
"As &PNG", [&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
auto save_path = GUI::FilePicker::get_save_filepath(window, "untitled", "png");
|
|
if (!save_path.has_value())
|
|
return;
|
|
auto result = editor->image().export_bmp_to_file(save_path.value());
|
|
if (result.is_error())
|
|
GUI::MessageBox::show_error(window, String::formatted("Export to PNG failed: {}", result.error()));
|
|
},
|
|
window));
|
|
|
|
file_menu.add_separator();
|
|
file_menu.add_action(GUI::CommonActions::make_quit_action([](auto&) {
|
|
GUI::Application::the()->quit();
|
|
}));
|
|
|
|
auto& edit_menu = menubar->add_menu("&Edit");
|
|
|
|
auto copy_action = GUI::CommonActions::make_copy_action([&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
if (!editor)
|
|
return;
|
|
if (!editor->active_layer()) {
|
|
dbgln("Cannot copy with no active layer selected");
|
|
return;
|
|
}
|
|
auto bitmap = editor->active_layer()->try_copy_bitmap(editor->selection());
|
|
if (!bitmap) {
|
|
dbgln("try_copy_bitmap() from Layer failed");
|
|
return;
|
|
}
|
|
GUI::Clipboard::the().set_bitmap(*bitmap);
|
|
});
|
|
|
|
auto paste_action = GUI::CommonActions::make_paste_action([&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
if (!editor)
|
|
return;
|
|
auto bitmap = GUI::Clipboard::the().bitmap();
|
|
if (!bitmap)
|
|
return;
|
|
|
|
auto layer = PixelPaint::Layer::try_create_with_bitmap(editor->image(), *bitmap, "Pasted layer");
|
|
VERIFY(layer);
|
|
editor->image().add_layer(*layer);
|
|
editor->set_active_layer(layer);
|
|
editor->selection().clear();
|
|
});
|
|
GUI::Clipboard::the().on_change = [&](auto& mime_type) {
|
|
paste_action->set_enabled(mime_type == "image/x-serenityos");
|
|
};
|
|
paste_action->set_enabled(GUI::Clipboard::the().mime_type() == "image/x-serenityos");
|
|
|
|
edit_menu.add_action(copy_action);
|
|
edit_menu.add_action(paste_action);
|
|
|
|
auto undo_action = GUI::CommonActions::make_undo_action([&](auto&) {
|
|
if (auto* editor = current_image_editor())
|
|
editor->undo();
|
|
});
|
|
edit_menu.add_action(undo_action);
|
|
|
|
auto redo_action = GUI::CommonActions::make_redo_action([&](auto&) {
|
|
if (auto* editor = current_image_editor())
|
|
editor->redo();
|
|
});
|
|
edit_menu.add_action(redo_action);
|
|
|
|
edit_menu.add_separator();
|
|
edit_menu.add_action(GUI::CommonActions::make_select_all_action([&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
if (!editor->active_layer())
|
|
return;
|
|
editor->selection().merge(editor->active_layer()->relative_rect(), PixelPaint::Selection::MergeMode::Set);
|
|
}));
|
|
edit_menu.add_action(GUI::Action::create(
|
|
"Clear &Selection", { Mod_Ctrl | Mod_Shift, Key_A }, [&](auto&) {
|
|
if (auto* editor = current_image_editor())
|
|
editor->selection().clear();
|
|
},
|
|
window));
|
|
|
|
edit_menu.add_separator();
|
|
edit_menu.add_action(GUI::Action::create(
|
|
"&Swap Colors", { Mod_None, Key_X }, [&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
if (!editor)
|
|
return;
|
|
auto old_primary_color = editor->primary_color();
|
|
editor->set_primary_color(editor->secondary_color());
|
|
editor->set_secondary_color(old_primary_color);
|
|
},
|
|
window));
|
|
edit_menu.add_action(GUI::Action::create(
|
|
"&Default Colors", { Mod_None, Key_D }, [&](auto&) {
|
|
if (auto* editor = current_image_editor()) {
|
|
editor->set_primary_color(Color::Black);
|
|
editor->set_secondary_color(Color::White);
|
|
}
|
|
},
|
|
window));
|
|
edit_menu.add_action(GUI::Action::create(
|
|
"&Load Color Palette", [&](auto&) {
|
|
auto open_path = GUI::FilePicker::get_open_filepath(window, "Load Color Palette");
|
|
if (!open_path.has_value())
|
|
return;
|
|
|
|
auto result = PixelPaint::PaletteWidget::load_palette_file(open_path.value());
|
|
if (result.is_error()) {
|
|
GUI::MessageBox::show_error(window, String::formatted("Loading color palette failed: {}", result.error()));
|
|
return;
|
|
}
|
|
|
|
palette_widget.display_color_list(result.value());
|
|
},
|
|
window));
|
|
edit_menu.add_action(GUI::Action::create(
|
|
"Sa&ve Color Palette", [&](auto&) {
|
|
auto save_path = GUI::FilePicker::get_save_filepath(window, "untitled", "palette");
|
|
if (!save_path.has_value())
|
|
return;
|
|
|
|
auto result = PixelPaint::PaletteWidget::save_palette_file(palette_widget.colors(), save_path.value());
|
|
if (result.is_error())
|
|
GUI::MessageBox::show_error(window, String::formatted("Writing color palette failed: {}", result.error()));
|
|
},
|
|
window));
|
|
|
|
auto& view_menu = menubar->add_menu("&View");
|
|
|
|
auto zoom_in_action = GUI::CommonActions::make_zoom_in_action(
|
|
[&](auto&) {
|
|
if (auto* editor = current_image_editor())
|
|
editor->scale_by(0.1f);
|
|
},
|
|
window);
|
|
|
|
auto zoom_out_action = GUI::CommonActions::make_zoom_out_action(
|
|
[&](auto&) {
|
|
if (auto* editor = current_image_editor())
|
|
editor->scale_by(-0.1f);
|
|
},
|
|
window);
|
|
|
|
auto reset_zoom_action = GUI::CommonActions::make_reset_zoom_action(
|
|
[&](auto&) {
|
|
if (auto* editor = current_image_editor())
|
|
editor->reset_scale_and_position();
|
|
},
|
|
window);
|
|
|
|
view_menu.add_action(zoom_in_action);
|
|
view_menu.add_action(zoom_out_action);
|
|
view_menu.add_action(reset_zoom_action);
|
|
|
|
auto& tool_menu = menubar->add_menu("&Tool");
|
|
toolbox.for_each_tool([&](auto& tool) {
|
|
if (tool.action())
|
|
tool_menu.add_action(*tool.action());
|
|
return IterationDecision::Continue;
|
|
});
|
|
|
|
auto& layer_menu = menubar->add_menu("&Layer");
|
|
layer_menu.add_action(GUI::Action::create(
|
|
"New &Layer...", { Mod_Ctrl | Mod_Shift, Key_N }, [&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
if (!editor)
|
|
return;
|
|
auto dialog = PixelPaint::CreateNewLayerDialog::construct(editor->image().size(), window);
|
|
if (dialog->exec() == GUI::Dialog::ExecOK) {
|
|
auto layer = PixelPaint::Layer::try_create_with_size(editor->image(), dialog->layer_size(), dialog->layer_name());
|
|
if (!layer) {
|
|
GUI::MessageBox::show_error(window, String::formatted("Unable to create layer with size {}", dialog->size().to_string()));
|
|
return;
|
|
}
|
|
editor->image().add_layer(layer.release_nonnull());
|
|
editor->layers_did_change();
|
|
}
|
|
},
|
|
window));
|
|
|
|
layer_menu.add_separator();
|
|
layer_menu.add_action(GUI::Action::create(
|
|
"Select &Previous Layer", { 0, Key_PageUp }, [&](auto&) {
|
|
layer_list_widget.move_selection(1);
|
|
},
|
|
window));
|
|
layer_menu.add_action(GUI::Action::create(
|
|
"Select &Next Layer", { 0, Key_PageDown }, [&](auto&) {
|
|
layer_list_widget.move_selection(-1);
|
|
},
|
|
window));
|
|
layer_menu.add_action(GUI::Action::create(
|
|
"Select &Top Layer", { 0, Key_Home }, [&](auto&) {
|
|
layer_list_widget.select_top_layer();
|
|
},
|
|
window));
|
|
layer_menu.add_action(GUI::Action::create(
|
|
"Select &Bottom Layer", { 0, Key_End }, [&](auto&) {
|
|
layer_list_widget.select_bottom_layer();
|
|
},
|
|
window));
|
|
layer_menu.add_separator();
|
|
layer_menu.add_action(GUI::Action::create(
|
|
"Move Active Layer &Up", { Mod_Ctrl, Key_PageUp }, [&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
if (!editor)
|
|
return;
|
|
auto active_layer = editor->active_layer();
|
|
if (!active_layer)
|
|
return;
|
|
editor->image().move_layer_up(*active_layer);
|
|
},
|
|
window));
|
|
layer_menu.add_action(GUI::Action::create(
|
|
"Move Active Layer &Down", { Mod_Ctrl, Key_PageDown }, [&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
if (!editor)
|
|
return;
|
|
auto active_layer = editor->active_layer();
|
|
if (!active_layer)
|
|
return;
|
|
editor->image().move_layer_down(*active_layer);
|
|
},
|
|
window));
|
|
layer_menu.add_separator();
|
|
layer_menu.add_action(GUI::Action::create(
|
|
"&Remove Active Layer", { Mod_Ctrl, Key_D }, [&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
if (!editor)
|
|
return;
|
|
auto active_layer = editor->active_layer();
|
|
if (!active_layer)
|
|
return;
|
|
editor->image().remove_layer(*active_layer);
|
|
editor->set_active_layer(nullptr);
|
|
},
|
|
window));
|
|
|
|
auto& filter_menu = menubar->add_menu("&Filter");
|
|
auto& spatial_filters_menu = filter_menu.add_submenu("&Spatial");
|
|
|
|
auto& edge_detect_submenu = spatial_filters_menu.add_submenu("&Edge Detect");
|
|
edge_detect_submenu.add_action(GUI::Action::create("Laplacian (&Cardinal)", [&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
if (!editor)
|
|
return;
|
|
if (auto* layer = editor->active_layer()) {
|
|
Gfx::LaplacianFilter filter;
|
|
if (auto parameters = PixelPaint::FilterParameters<Gfx::LaplacianFilter>::get(false)) {
|
|
filter.apply(layer->bitmap(), layer->rect(), layer->bitmap(), layer->rect(), *parameters);
|
|
editor->did_complete_action();
|
|
}
|
|
}
|
|
}));
|
|
edge_detect_submenu.add_action(GUI::Action::create("Laplacian (&Diagonal)", [&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
if (!editor)
|
|
return;
|
|
if (auto* layer = editor->active_layer()) {
|
|
Gfx::LaplacianFilter filter;
|
|
if (auto parameters = PixelPaint::FilterParameters<Gfx::LaplacianFilter>::get(true)) {
|
|
filter.apply(layer->bitmap(), layer->rect(), layer->bitmap(), layer->rect(), *parameters);
|
|
editor->did_complete_action();
|
|
}
|
|
}
|
|
}));
|
|
auto& blur_submenu = spatial_filters_menu.add_submenu("&Blur and Sharpen");
|
|
blur_submenu.add_action(GUI::Action::create("&Gaussian Blur (3x3)", [&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
if (!editor)
|
|
return;
|
|
if (auto* layer = editor->active_layer()) {
|
|
Gfx::SpatialGaussianBlurFilter<3> filter;
|
|
if (auto parameters = PixelPaint::FilterParameters<Gfx::SpatialGaussianBlurFilter<3>>::get()) {
|
|
filter.apply(layer->bitmap(), layer->rect(), layer->bitmap(), layer->rect(), *parameters);
|
|
editor->did_complete_action();
|
|
}
|
|
}
|
|
}));
|
|
blur_submenu.add_action(GUI::Action::create("G&aussian Blur (5x5)", [&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
if (!editor)
|
|
return;
|
|
if (auto* layer = editor->active_layer()) {
|
|
Gfx::SpatialGaussianBlurFilter<5> filter;
|
|
if (auto parameters = PixelPaint::FilterParameters<Gfx::SpatialGaussianBlurFilter<5>>::get()) {
|
|
filter.apply(layer->bitmap(), layer->rect(), layer->bitmap(), layer->rect(), *parameters);
|
|
editor->did_complete_action();
|
|
}
|
|
}
|
|
}));
|
|
blur_submenu.add_action(GUI::Action::create("&Box Blur (3x3)", [&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
if (!editor)
|
|
return;
|
|
if (auto* layer = editor->active_layer()) {
|
|
Gfx::BoxBlurFilter<3> filter;
|
|
if (auto parameters = PixelPaint::FilterParameters<Gfx::BoxBlurFilter<3>>::get()) {
|
|
filter.apply(layer->bitmap(), layer->rect(), layer->bitmap(), layer->rect(), *parameters);
|
|
editor->did_complete_action();
|
|
}
|
|
}
|
|
}));
|
|
blur_submenu.add_action(GUI::Action::create("B&ox Blur (5x5)", [&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
if (!editor)
|
|
return;
|
|
if (auto* layer = editor->active_layer()) {
|
|
Gfx::BoxBlurFilter<5> filter;
|
|
if (auto parameters = PixelPaint::FilterParameters<Gfx::BoxBlurFilter<5>>::get()) {
|
|
filter.apply(layer->bitmap(), layer->rect(), layer->bitmap(), layer->rect(), *parameters);
|
|
editor->did_complete_action();
|
|
}
|
|
}
|
|
}));
|
|
blur_submenu.add_action(GUI::Action::create("&Sharpen", [&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
if (!editor)
|
|
return;
|
|
if (auto* layer = editor->active_layer()) {
|
|
Gfx::SharpenFilter filter;
|
|
if (auto parameters = PixelPaint::FilterParameters<Gfx::SharpenFilter>::get()) {
|
|
filter.apply(layer->bitmap(), layer->rect(), layer->bitmap(), layer->rect(), *parameters);
|
|
editor->did_complete_action();
|
|
}
|
|
}
|
|
}));
|
|
|
|
spatial_filters_menu.add_separator();
|
|
spatial_filters_menu.add_action(GUI::Action::create("Generic 5x5 &Convolution", [&](auto&) {
|
|
auto* editor = current_image_editor();
|
|
if (!editor)
|
|
return;
|
|
if (auto* layer = editor->active_layer()) {
|
|
Gfx::GenericConvolutionFilter<5> filter;
|
|
if (auto parameters = PixelPaint::FilterParameters<Gfx::GenericConvolutionFilter<5>>::get(window)) {
|
|
filter.apply(layer->bitmap(), layer->rect(), layer->bitmap(), layer->rect(), *parameters);
|
|
editor->did_complete_action();
|
|
}
|
|
}
|
|
}));
|
|
|
|
auto& help_menu = menubar->add_menu("&Help");
|
|
help_menu.add_action(GUI::CommonActions::make_about_action("Pixel Paint", app_icon, window));
|
|
|
|
window->set_menubar(move(menubar));
|
|
|
|
auto& toolbar = *main_widget.find_descendant_of_type_named<GUI::Toolbar>("toolbar");
|
|
toolbar.add_action(new_image_action);
|
|
toolbar.add_action(open_image_action);
|
|
toolbar.add_action(save_image_as_action);
|
|
toolbar.add_separator();
|
|
toolbar.add_action(copy_action);
|
|
toolbar.add_action(paste_action);
|
|
toolbar.add_action(undo_action);
|
|
toolbar.add_action(redo_action);
|
|
toolbar.add_separator();
|
|
toolbar.add_action(zoom_in_action);
|
|
toolbar.add_action(zoom_out_action);
|
|
toolbar.add_action(reset_zoom_action);
|
|
|
|
create_new_editor = [&](NonnullRefPtr<PixelPaint::Image> image) -> PixelPaint::ImageEditor& {
|
|
auto& image_editor = tab_widget.add_tab<PixelPaint::ImageEditor>("Untitled", image);
|
|
|
|
image_editor.on_active_layer_change = [&](auto* layer) {
|
|
if (current_image_editor() != &image_editor)
|
|
return;
|
|
layer_list_widget.set_selected_layer(layer);
|
|
layer_properties_widget.set_layer(layer);
|
|
};
|
|
|
|
image_editor.on_image_title_change = [&](auto const& title) {
|
|
tab_widget.set_tab_title(image_editor, title);
|
|
};
|
|
|
|
// NOTE: We invoke the above hook directly here to make sure the tab title is set up.
|
|
image_editor.on_image_title_change(image->title());
|
|
|
|
if (image->layer_count())
|
|
image_editor.set_active_layer(&image->layer(0));
|
|
|
|
tab_widget.set_active_widget(&image_editor);
|
|
image_editor.set_focus(true);
|
|
return image_editor;
|
|
};
|
|
|
|
tab_widget.on_tab_close_click = [&](auto& widget) {
|
|
auto& image_editor = downcast<PixelPaint::ImageEditor>(widget);
|
|
tab_widget.deferred_invoke([&](auto&) {
|
|
tab_widget.remove_tab(image_editor);
|
|
});
|
|
};
|
|
|
|
tab_widget.on_change = [&](auto& widget) {
|
|
auto& image_editor = downcast<PixelPaint::ImageEditor>(widget);
|
|
palette_widget.set_image_editor(image_editor);
|
|
layer_list_widget.set_image(&image_editor.image());
|
|
layer_properties_widget.set_layer(nullptr);
|
|
// FIXME: This is badly factored. It transfers tools from the previously active editor to the new one.
|
|
toolbox.template for_each_tool([&](auto& tool) {
|
|
if (tool.editor()) {
|
|
tool.editor()->set_active_tool(nullptr);
|
|
image_editor.set_active_tool(&tool);
|
|
}
|
|
});
|
|
};
|
|
|
|
auto image_file_real_path = Core::File::real_path_for(image_file);
|
|
if (Core::File::exists(image_file_real_path)) {
|
|
open_image_file(image_file_real_path);
|
|
} else {
|
|
auto image = PixelPaint::Image::try_create_with_size({ 480, 360 });
|
|
|
|
auto bg_layer = PixelPaint::Layer::try_create_with_size(*image, image->size(), "Background");
|
|
VERIFY(bg_layer);
|
|
image->add_layer(*bg_layer);
|
|
bg_layer->bitmap().fill(Color::White);
|
|
|
|
layer_list_widget.set_image(image);
|
|
|
|
auto& editor = create_new_editor(*image);
|
|
editor.set_active_layer(bg_layer);
|
|
}
|
|
|
|
auto& statusbar = *main_widget.find_descendant_of_type_named<GUI::Statusbar>("statusbar");
|
|
|
|
app->on_action_enter = [&statusbar](GUI::Action& action) {
|
|
auto text = action.status_tip();
|
|
if (text.is_empty())
|
|
text = Gfx::parse_ampersand_string(action.text());
|
|
statusbar.set_override_text(move(text));
|
|
};
|
|
|
|
app->on_action_leave = [&statusbar](GUI::Action&) {
|
|
statusbar.set_override_text({});
|
|
};
|
|
|
|
window->show();
|
|
return app->exec();
|
|
}
|