Changeset fd777a2 in mainline for uspace/srv/hid/display/seat.c


Ignore:
Timestamp:
2019-11-29T23:58:15Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
879d7245
Parents:
cf32dbd
Message:

Add list of all windows on a display, in stacking order

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/display/seat.c

    rcf32dbd rfd777a2  
    8282
    8383        if (seat->focus == wnd) {
    84                 /* Focus a different window. XXX Need list of all windows */
    85                 nwnd = ds_client_next_window(wnd);
     84                /* Focus a different window. XXX Delegate to WM */
     85                nwnd = ds_display_next_window(wnd);
    8686                if (nwnd == NULL)
    87                         nwnd = ds_client_first_window(wnd->client);
     87                        nwnd = ds_display_first_window(wnd->display);
    8888                if (nwnd == wnd)
    8989                        nwnd = NULL;
Note: See TracChangeset for help on using the changeset viewer.