Changeset b0a94854 in mainline for uspace/srv/hid/display/window.c


Ignore:
Timestamp:
2020-02-19T13:28:34Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0a052b0
Parents:
e1f2079
git-author:
Jiri Svoboda <jiri@…> (2020-01-18 18:28:21)
git-committer:
Jiri Svoboda <jiri@…> (2020-02-19 13:28:34)
Message:

Deliver window focus and unfocus events

File:
1 edited

Legend:

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

    re1f2079 rb0a94854  
    518518}
    519519
     520/** Post focus event to window.
     521 *
     522 * @param wnd Window
     523 */
     524errno_t ds_window_post_focus_event(ds_window_t *wnd)
     525{
     526        log_msg(LOG_DEFAULT, LVL_DEBUG, "ds_window_post_focus_event\n");
     527
     528        return ds_client_post_focus_event(wnd->client, wnd);
     529}
     530
     531/** Post unfocus event to window.
     532 *
     533 * @param wnd Window
     534 */
     535errno_t ds_window_post_unfocus_event(ds_window_t *wnd)
     536{
     537        log_msg(LOG_DEFAULT, LVL_DEBUG, "ds_window_post_unfocus_event\n");
     538
     539        return ds_client_post_unfocus_event(wnd->client, wnd);
     540}
     541
    520542/** @}
    521543 */
Note: See TracChangeset for help on using the changeset viewer.