Changeset f03d1308 in mainline for uspace/lib/ui/include


Ignore:
Timestamp:
2020-10-28T12:42:11Z (5 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8009dc27
Parents:
d284ce9
git-author:
Jiri Svoboda <jiri@…> (2020-10-28 12:41:11)
git-committer:
Jiri Svoboda <jiri@…> (2020-10-28 12:42:11)
Message:

Convert terminal to using ui_window

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ui/include/types/ui/window.h

    rd284ce9 rf03d1308  
    3737#define _UI_TYPES_WINDOW_H
    3838
     39#include <io/kbd_event.h>
    3940#include <io/pos_event.h>
    4041
     
    5354typedef struct ui_window_cb {
    5455        void (*close)(ui_window_t *, void *);
     56        void (*focus)(ui_window_t *, void *);
     57        void (*kbd)(ui_window_t *, void *, kbd_event_t *);
    5558        void (*pos)(ui_window_t *, void *, pos_event_t *);
     59        void (*unfocus)(ui_window_t *, void *);
    5660} ui_window_cb_t;
    5761
Note: See TracChangeset for help on using the changeset viewer.