Changeset b4b4dafe in mainline for uspace/lib/display/include/types/display/wndparams.h
- Timestamp:
- 2021-06-03T14:02:59Z (3 years ago)
- 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)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/display/include/types/display/wndparams.h
r6baab83 rb4b4dafe 1 1 /* 2 * Copyright (c) 20 19Jiri Svoboda2 * Copyright (c) 2021 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 38 38 #include <gfx/coord.h> 39 39 40 /** Window flags */ 41 typedef enum { 42 /** Popup window (capture events, no focus) */ 43 wndf_popup = 0x1 44 } display_wnd_flags_t; 45 40 46 /** Parameters for a new window. 41 47 * … … 50 56 /** Minimum size (when being resized) */ 51 57 gfx_coord2_t min_size; 58 /** Flags */ 59 display_wnd_flags_t flags; 52 60 } display_wnd_params_t; 53 61
Note:
See TracChangeset
for help on using the changeset viewer.