mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:37:43 +00:00
PixelPaint: Add actions to flip image vertically/horizontally
This commit is contained in:
parent
0c56f06994
commit
6a8c408856
3 changed files with 33 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
/*
|
||||
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
||||
* Copyright (c) 2021, Mustafa Quraish <mustafa@cs.toronto.edu>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
@ -406,6 +407,24 @@ int main(int argc, char** argv)
|
|||
return IterationDecision::Continue;
|
||||
});
|
||||
|
||||
auto& image_menu = window->add_menu("&Image");
|
||||
image_menu.add_action(GUI::Action::create(
|
||||
"Flip &Vertically", [&](auto&) {
|
||||
auto* editor = current_image_editor();
|
||||
if (!editor)
|
||||
return;
|
||||
editor->image().flip(Gfx::Orientation::Vertical);
|
||||
},
|
||||
window));
|
||||
image_menu.add_action(GUI::Action::create(
|
||||
"Flip &Horizontally", [&](auto&) {
|
||||
auto* editor = current_image_editor();
|
||||
if (!editor)
|
||||
return;
|
||||
editor->image().flip(Gfx::Orientation::Horizontal);
|
||||
},
|
||||
window));
|
||||
|
||||
auto& layer_menu = window->add_menu("&Layer");
|
||||
layer_menu.add_action(GUI::Action::create(
|
||||
"New &Layer...", { Mod_Ctrl | Mod_Shift, Key_N }, [&](auto&) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue