Changes in / [f6905b6:08499f0] in mainline


Ignore:
Location:
uspace
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/display/include/types/display/cursor.h

    rf6905b6 r08499f0  
    4949        dcurs_size_urdl,
    5050        /** I-beam (suggests editable text) */
    51         dcurs_ibeam,
    52         /** Pointer (suggests clickable object) */
    53         dcurs_pointer,
     51        dcurs_ibeam
    5452} display_stock_cursor_t;
    5553
    5654enum {
    5755        /** Number of stock cursor types */
    58         dcurs_limit = dcurs_pointer + 1
     56        dcurs_limit = dcurs_ibeam + 1
    5957};
    6058
  • uspace/lib/ui/include/types/ui/cursor.h

    rf6905b6 r08499f0  
    4949        ui_curs_size_urdl,
    5050        /** I-beam (suggests editable text) */
    51         ui_curs_ibeam,
    52         /** Pointer (suggests clickable object) */
    53         ui_curs_pointer,
     51        ui_curs_ibeam
    5452} ui_stock_cursor_t;
    5553
  • uspace/lib/ui/src/window.c

    rf6905b6 r08499f0  
    13461346                dcursor = dcurs_ibeam;
    13471347                break;
    1348         case ui_curs_pointer:
    1349                 dcursor = dcurs_pointer;
    1350                 break;
    13511348        }
    13521349
  • uspace/srv/hid/display/cursimg.c

    rf6905b6 r08499f0  
    159159};
    160160
    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 
    185161ds_cursimg_t ds_cursimg[dcurs_limit] = {
    186162        {
     
    207183                .rect = { -5, -9, 6, 10 },
    208184                .image = ibeam_img
    209         },
    210         {
    211                 .rect = { -6, 0, 13, 21 },
    212                 .image = pointer_img
    213185        }
    214186};
Note: See TracChangeset for help on using the changeset viewer.