mirror of
https://github.com/RGBCube/serenity
synced 2025-07-07 16:47:36 +00:00

Each tool can have its own set of properties that can be modified through a panel on the right side. The tools I've added properties for are: Pen: Thickness Brush: Size Hardness Spray: Thickness Density Bucket: Threshold
26 lines
502 B
CMake
26 lines
502 B
CMake
set(SOURCES
|
|
BrushTool.cpp
|
|
BucketTool.cpp
|
|
CreateNewLayerDialog.cpp
|
|
EllipseTool.cpp
|
|
EraseTool.cpp
|
|
Image.cpp
|
|
ImageEditor.cpp
|
|
Layer.cpp
|
|
LayerListWidget.cpp
|
|
LayerPropertiesWidget.cpp
|
|
LineTool.cpp
|
|
main.cpp
|
|
MoveTool.cpp
|
|
PaletteWidget.cpp
|
|
PenTool.cpp
|
|
PickerTool.cpp
|
|
RectangleTool.cpp
|
|
SprayTool.cpp
|
|
ToolboxWidget.cpp
|
|
ToolPropertiesWidget.cpp
|
|
Tool.cpp
|
|
)
|
|
|
|
serenity_bin(PixelPaint)
|
|
target_link_libraries(PixelPaint LibGUI LibGfx)
|