Changes in / [f6905b6:08499f0] in mainline
- 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
rf6905b6 r08499f0 49 49 dcurs_size_urdl, 50 50 /** I-beam (suggests editable text) */ 51 dcurs_ibeam, 52 /** Pointer (suggests clickable object) */ 53 dcurs_pointer, 51 dcurs_ibeam 54 52 } display_stock_cursor_t; 55 53 56 54 enum { 57 55 /** Number of stock cursor types */ 58 dcurs_limit = dcurs_ pointer+ 156 dcurs_limit = dcurs_ibeam + 1 59 57 }; 60 58 -
uspace/lib/ui/include/types/ui/cursor.h
rf6905b6 r08499f0 49 49 ui_curs_size_urdl, 50 50 /** I-beam (suggests editable text) */ 51 ui_curs_ibeam, 52 /** Pointer (suggests clickable object) */ 53 ui_curs_pointer, 51 ui_curs_ibeam 54 52 } ui_stock_cursor_t; 55 53 -
uspace/lib/ui/src/window.c
rf6905b6 r08499f0 1346 1346 dcursor = dcurs_ibeam; 1347 1347 break; 1348 case ui_curs_pointer:1349 dcursor = dcurs_pointer;1350 break;1351 1348 } 1352 1349 -
uspace/srv/hid/display/cursimg.c
rf6905b6 r08499f0 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, 0183 };184 185 161 ds_cursimg_t ds_cursimg[dcurs_limit] = { 186 162 { … … 207 183 .rect = { -5, -9, 6, 10 }, 208 184 .image = ibeam_img 209 },210 {211 .rect = { -6, 0, 13, 21 },212 .image = pointer_img213 185 } 214 186 };
Note:
See TracChangeset
for help on using the changeset viewer.
