summaryrefslogtreecommitdiff
path: root/Userland/Applications/PixelPaint/Guide.h
AgeCommit message (Collapse)Author
2021-09-03AK: Rename create<T> => make_ref_counted<T>Andreas Kling
And also try_create<T> => try_make_ref_counted<T>. A global "create" was a bit much. The new name matches make<T> better, which we've used for making single-owner objects since forever.
2021-09-01PixelPaint: Add setter for the orientation of a GuideTobias Christiansen
Also add an additional value to the Orientation enum called "Unset".
2021-08-09Everywhere: Use tobyase@serenityos.org for my copyright headersTobias Christiansen
2021-08-07PixelPaint: Add Guide classTobias Christiansen
This will allow the user to add Guides to the image, that will only be visible in the Editor, not affecting the image.