summaryrefslogtreecommitdiff
path: root/Userland/Applications/PixelPaint/RectangleSelectTool.h
AgeCommit message (Collapse)Author
2021-06-22PixelPaint: Add more options to RectangleSelectToolDavipb
A "feather" value sets by how much the borders of the selection will be smoothed, and a "mode" value sets how the newly selected region will interact with an existing image selection (if any).
2021-06-17PixelPaint: Add new selection moving modesElliot Maisl
If you press "spacebar" while moving a selection, it will now move the origin point of the selection; and if you press "control" it will move it relatively to the center.
2021-06-14PixelPaint: Draw the current editor selection as marching antsAndreas Kling
This patch moves the marching ants painting code to Selection and unifies the timer mechanism so that all marching ants are synchronized which looks neat. :^)
2021-06-14PixelPaint: Implement basic rectangular selection (preview only)Andreas Kling
Using the rectangle select tool, you can now drag out a selection which will be drawn in the form of "marching ants" :^)
2021-06-14PixelPaint: Add a new "Rectangle Select" tool :^)Andreas Kling
This patch only adds the tool along with a toolbar icon for it. It doesn't do anything yet.