1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 05:27:45 +00:00

PixelPaint: Add level sliders for brightness, contrast and gamma

This patch adds a basic dialog to change brightness, contrast and gamma
correction for the selected layer.
This commit is contained in:
Torstennator 2022-04-24 10:46:59 +02:00 committed by Sam Atkins
parent 69c451e485
commit 5aeb6552f0
9 changed files with 303 additions and 0 deletions

View file

@ -9,6 +9,7 @@ compile_gml(PixelPaintWindow.gml PixelPaintWindowGML.h pixel_paint_window_gml)
compile_gml(EditGuideDialog.gml EditGuideDialogGML.h edit_guide_dialog_gml)
compile_gml(FilterGallery.gml FilterGalleryGML.h filter_gallery_gml)
compile_gml(ResizeImageDialog.gml ResizeImageDialogGML.h resize_image_dialog_gml)
compile_gml(LevelsDialog.gml LevelsDialogGML.h levels_dialog_gml)
set(SOURCES
CreateNewImageDialog.cpp
@ -39,6 +40,8 @@ set(SOURCES
Layer.cpp
LayerListWidget.cpp
LayerPropertiesWidget.cpp
LevelsDialogGML.h
LevelsDialog.cpp
MainWidget.cpp
Mask.cpp
PaletteWidget.cpp