summaryrefslogtreecommitdiff
path: root/Base/res/cursor-themes
AgeCommit message (Collapse)Author
2022-09-01Base: Remove an upscaled version of a Hidden cursorKarol Kosek
It was the same as the normal Hidden cursor (a transparent image).
2022-08-31Base+WindowServer+LibGfx: Add new DragCopy CursorKarol Kosek
The purpose of this cursor is to indicate if a current dragged object (file, Spreadsheet cell) can be dropped onto a widget.
2022-08-31Base: Add 2x version of Drag cursor in Dark themeKarol Kosek
Failing to load 2x cursor resulted in using the default arrow cursor instead of scaling the 1x one.
2022-02-05Base: Add missing HiDPI versions of cursorsMaciej
Note: The "hidden" cursor must be 2x upscaled because LibGfx would fail loading HiDPI images with size not divisible by scale.
2021-09-04Cursors: Add new Magnifying glass cursorMustafa Quraish
There are a few places in the system where this could be useful, such as PixelPaint and the MandelBrot demo. It seems general enough that it is probably useful to have it as a system-wide cursor rather than loading it manually each time.
2021-09-04Cursors: Add new Eyedropper cursorMustafa Quraish
This can be used immediately in PixelPaint (separate commit), but I am adding this as a system-wide cursor since it may also be useful for other applications that want to use it.
2021-08-23Base: Add "Dark" cursor themeMaciej Zygmanowski
2021-08-23WindowServer: Add support for cursor themesMaciej Zygmanowski
Now you can specify a CursorTheme key in /etc/WindowServer.ini. The cursors are loaded from /res/cursor-themes/<name> directory. This directory contains a Config.ini file with format similar to previous Cursor section, except it uses relative paths. This commit adds also Default theme, which uses cursors being previously in /res/cursors. The WidgetGallery is updated to match the new cursor path format.