Changeset 338d0935 in mainline for uspace/lib/display/include


Ignore:
Timestamp:
2020-03-02T11:22:01Z (5 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a2e104e
Parents:
7bb45e3
git-author:
Jiri Svoboda <jiri@…> (2020-02-01 11:18:50)
git-committer:
Jiri Svoboda <jiri@…> (2020-03-02 11:22:01)
Message:

Closing windows

Location:
uspace/lib/display/include/types
Files:
2 edited

Legend:

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

    r7bb45e3 r338d0935  
    6262/** Display window callbacks */
    6363typedef struct {
     64        /** Close event */
     65        void (*close_event)(void *);
    6466        /** Focus event */
    6567        void (*focus_event)(void *);
    66         /** Keyboard event callback */
     68        /** Keyboard event */
    6769        void (*kbd_event)(void *, kbd_event_t *);
    68         /** Position event callback */
     70        /** Position event */
    6971        void (*pos_event)(void *, pos_event_t *);
    7072        /** Unfocus event */
  • uspace/lib/display/include/types/display/event.h

    r7bb45e3 r338d0935  
    4141/** Display window event type */
    4242typedef enum {
     43        /** Request to close window */
     44        wev_close,
    4345        /** Window gained focus */
    4446        wev_focus,
Note: See TracChangeset for help on using the changeset viewer.