Changeset 8e9781f in mainline


Ignore:
Timestamp:
2019-12-16T16:29:15Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a40ae0d
Parents:
fb420e48
git-author:
Jiri Svoboda <jiri@…> (2019-12-15 16:27:45)
git-committer:
Jiri Svoboda <jiri@…> (2019-12-16 16:29:15)
Message:

Remove references to window manager

We will introduce the concept of a separate WM (display server plugin)
only if we find that it is actually needed.

Location:
uspace/srv/hid/display
Files:
3 edited

Legend:

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

    rfb420e48 r8e9781f  
    7474        wnd->dpos.y = ((wnd->id - 1) & 2) / 2 * 300;
    7575
    76         /*
    77          * XXX This should be performed by window manager. It needs to determine
    78          * whether the new window should get focus and which seat should
    79          * focus on it.
    80          */
    8176        seat = ds_display_first_seat(client->display);
    8277        ds_seat_set_focus(seat, wnd);
  • uspace/srv/hid/display/seat.c

    rfb420e48 r8e9781f  
    9898
    9999        if (seat->focus == wnd) {
    100                 /* Focus a different window. XXX Delegate to WM */
    101100                nwnd = ds_display_next_window(wnd);
    102101                if (nwnd == NULL)
  • uspace/srv/hid/display/window.c

    rfb420e48 r8e9781f  
    210210 * Create graphics context for rendering into a window.
    211211 *
    212  * @param client Client owning the window=
     212 * @param client Client owning the window
    213213 * @param params Window parameters
    214214 * @param rgc Place to store pointer to new GC.
Note: See TracChangeset for help on using the changeset viewer.