Ignore:
Timestamp:
2021-06-03T14:02:59Z (3 years ago)
Author:
Jiri Svoboda <jiri@…>
Children:
2e6394e
Parents:
6baab83
git-author:
Jiri Svoboda <jiri@…> (2021-06-02 17:00:03)
git-committer:
Jiri Svoboda <jiri@…> (2021-06-03 14:02:59)
Message:

Popup windows event delivery is special

Popup windows don't get focus, yet they still receive events.

File:
1 edited

Legend:

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

    r6baab83 rb4b4dafe  
    6363} ui_wnd_placement_t;
    6464
     65/** Window flags */
     66typedef enum {
     67        /** Popup window */
     68        ui_wndf_popup = 0x1
     69} ui_wnd_flags_t;
     70
    6571/** Window parameters */
    6672typedef struct {
     
    7379        /** Window placement */
    7480        ui_wnd_placement_t placement;
     81        /** Window flags */
     82        ui_wnd_flags_t flags;
    7583        /** Parent rectangle for popup windows */
    7684        gfx_rect_t prect;
Note: See TracChangeset for help on using the changeset viewer.