Changeset 5d62130 in mainline for uspace/lib
- Timestamp:
- 2022-11-13T10:56:43Z (3 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a130983
- Parents:
- a5c7b865
- Location:
- uspace/lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/display/include/types/display/wndparams.h
ra5c7b865 r5d62130 42 42 /** Popup window (capture events, no focus) */ 43 43 wndf_popup = 0x1, 44 /** Topmost window */ 45 wndf_topmost = 0x2, 44 46 /** Set specific initial window position */ 45 wndf_setpos = 0x 2,47 wndf_setpos = 0x4, 46 48 /** Window is maximized */ 47 wndf_maximized = 0x 4,49 wndf_maximized = 0x8, 48 50 /** Special system window */ 49 wndf_system = 0x 851 wndf_system = 0x10 50 52 } display_wnd_flags_t; 51 53 -
uspace/lib/ui/include/types/ui/window.h
ra5c7b865 r5d62130 67 67 /** Popup window */ 68 68 ui_wndf_popup = 0x1, 69 /** Topmost window */ 70 ui_wndf_topmost = 0x2, 69 71 /** Special system window */ 70 ui_wndf_system = 0x 272 ui_wndf_system = 0x4 71 73 } ui_wnd_flags_t; 72 74 -
uspace/lib/ui/src/window.c
ra5c7b865 r5d62130 228 228 if ((params->flags & ui_wndf_popup) != 0) 229 229 dparams.flags |= wndf_popup; 230 if ((params->flags & ui_wndf_topmost) != 0) 231 dparams.flags |= wndf_topmost; 230 232 if ((params->flags & ui_wndf_system) != 0) 231 233 dparams.flags |= wndf_system;
Note:
See TracChangeset
for help on using the changeset viewer.