Ignore:
Timestamp:
2022-11-13T10:56:43Z (18 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a130983
Parents:
a5c7b865
Message:

Taskbar should be always on top

We add support for topmost windows and make the taskbar window topmost.

File:
1 edited

Legend:

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

    ra5c7b865 r5d62130  
    4242        /** Popup window (capture events, no focus) */
    4343        wndf_popup = 0x1,
     44        /** Topmost window */
     45        wndf_topmost = 0x2,
    4446        /** Set specific initial window position */
    45         wndf_setpos = 0x2,
     47        wndf_setpos = 0x4,
    4648        /** Window is maximized */
    47         wndf_maximized = 0x4,
     49        wndf_maximized = 0x8,
    4850        /** Special system window */
    49         wndf_system = 0x8
     51        wndf_system = 0x10
    5052} display_wnd_flags_t;
    5153
Note: See TracChangeset for help on using the changeset viewer.