Changeset 0d00e53 in mainline for uspace/lib/ui/include
- Timestamp:
- 2024-11-07T10:38:29Z (14 months ago)
- Branches:
- master
- Children:
- 9a07ee3, 9e7e1dc
- Parents:
- ad9e225
- git-author:
- Jiri Svoboda <jiri@…> (2024-10-06 18:37:25)
- git-committer:
- Jiri Svoboda <jiri@…> (2024-11-07 10:38:29)
- File:
-
- 1 edited
-
uspace/lib/ui/include/types/ui/window.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/include/types/ui/window.h
rad9e225 r0d00e53 58 58 /** Place window to the bottom-right corner of the screen */ 59 59 ui_wnd_place_bottom_right, 60 /** Place window to the center of the screen */ 61 ui_wnd_place_center, 60 62 /** Place window accross the entire screen */ 61 63 ui_wnd_place_full_screen, … … 68 70 /** Popup window */ 69 71 ui_wndf_popup = 0x1, 72 /** Window does not receive focus */ 73 ui_wndf_nofocus = 0x2, 70 74 /** Topmost window */ 71 ui_wndf_topmost = 0x 2,75 ui_wndf_topmost = 0x4, 72 76 /** Special system window */ 73 ui_wndf_system = 0x 4,77 ui_wndf_system = 0x8, 74 78 /** Maximized windows should avoid this window */ 75 ui_wndf_avoid = 0x 879 ui_wndf_avoid = 0x10 76 80 } ui_wnd_flags_t; 77 81
Note:
See TracChangeset
for help on using the changeset viewer.
