Changeset 8e9781f in mainline
- Timestamp:
- 2019-12-16T16:29:15Z (5 years ago)
- 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)
- Location:
- uspace/srv/hid/display
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/dsops.c
rfb420e48 r8e9781f 74 74 wnd->dpos.y = ((wnd->id - 1) & 2) / 2 * 300; 75 75 76 /*77 * XXX This should be performed by window manager. It needs to determine78 * whether the new window should get focus and which seat should79 * focus on it.80 */81 76 seat = ds_display_first_seat(client->display); 82 77 ds_seat_set_focus(seat, wnd); -
uspace/srv/hid/display/seat.c
rfb420e48 r8e9781f 98 98 99 99 if (seat->focus == wnd) { 100 /* Focus a different window. XXX Delegate to WM */101 100 nwnd = ds_display_next_window(wnd); 102 101 if (nwnd == NULL) -
uspace/srv/hid/display/window.c
rfb420e48 r8e9781f 210 210 * Create graphics context for rendering into a window. 211 211 * 212 * @param client Client owning the window =212 * @param client Client owning the window 213 213 * @param params Window parameters 214 214 * @param rgc Place to store pointer to new GC.
Note:
See TracChangeset
for help on using the changeset viewer.