Changeset 5bf9ca21 in mainline
- Timestamp:
- 2025-10-31T09:19:00Z (19 hours ago)
- Parents:
- 3e41cc4 (diff), cbaf408 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
- Matěj Volf <mat.volfik@…> (2025-10-31 09:19:00)
- git-committer:
- GitHub <noreply@…> (2025-10-31 09:19:00)
- Location:
- uspace
- Files:
-
- 4 edited
-
lib/display/include/types/display/cursor.h (modified) (1 diff)
-
lib/ui/include/types/ui/cursor.h (modified) (1 diff)
-
lib/ui/src/window.c (modified) (1 diff)
-
srv/hid/display/cursimg.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/display/include/types/display/cursor.h
r3e41cc4 r5bf9ca21 49 49 dcurs_size_urdl, 50 50 /** I-beam (suggests editable text) */ 51 dcurs_ibeam 51 dcurs_ibeam, 52 /** Pointer (suggests clickable object) */ 53 dcurs_pointer, 52 54 } display_stock_cursor_t; 53 55 54 56 enum { 55 57 /** Number of stock cursor types */ 56 dcurs_limit = dcurs_ ibeam+ 158 dcurs_limit = dcurs_pointer + 1 57 59 }; 58 60 -
uspace/lib/ui/include/types/ui/cursor.h
r3e41cc4 r5bf9ca21 49 49 ui_curs_size_urdl, 50 50 /** I-beam (suggests editable text) */ 51 ui_curs_ibeam 51 ui_curs_ibeam, 52 /** Pointer (suggests clickable object) */ 53 ui_curs_pointer, 52 54 } ui_stock_cursor_t; 53 55 -
uspace/lib/ui/src/window.c
r3e41cc4 r5bf9ca21 1283 1283 dcursor = dcurs_ibeam; 1284 1284 break; 1285 case ui_curs_pointer: 1286 dcursor = dcurs_pointer; 1287 break; 1285 1288 } 1286 1289 -
uspace/srv/hid/display/cursimg.c
r3e41cc4 r5bf9ca21 159 159 }; 160 160 161 static uint8_t pointer_img[] = { 162 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163 0, 0, 0, 0, 1, 2, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164 0, 0, 0, 0, 1, 2, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165 0, 0, 0, 0, 1, 2, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166 0, 0, 0, 0, 1, 2, 2, 2, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 167 0, 1, 1, 0, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 1, 1, 1, 0, 168 1, 2, 2, 1, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 1, 2, 2, 1, 169 1, 2, 2, 1, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 1, 2, 2, 1, 170 1, 2, 2, 1, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 1, 2, 2, 1, 171 1, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 172 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 173 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 174 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 175 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 176 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 177 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 178 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 179 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 180 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 0, 181 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 0, 0, 182 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0 183 }; 184 161 185 ds_cursimg_t ds_cursimg[dcurs_limit] = { 162 186 { … … 183 207 .rect = { -5, -9, 6, 10 }, 184 208 .image = ibeam_img 209 }, 210 { 211 .rect = { -6, 0, 13, 21 }, 212 .image = pointer_img 185 213 } 186 214 };
Note:
See TracChangeset
for help on using the changeset viewer.
