Changes in uspace/lib/ui/private/ui.h [983052c:1ebcb791] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/private/ui.h
r983052c r1ebcb791 1 1 /* 2 * Copyright (c) 202 3Jiri Svoboda2 * Copyright (c) 2021 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 41 41 #include <gfx/coord.h> 42 42 #include <display.h> 43 #include <fibril_synch.h>44 43 #include <io/console.h> 45 44 #include <stdbool.h> 46 #include <types/common.h>47 45 48 46 /** Actual structure of user interface. … … 61 59 /** Output owned by UI, clean up when destroying UI */ 62 60 bool myoutput; 63 /** @c true iff UI is suspended */64 bool suspended;65 61 /** @c true if terminating */ 66 62 bool quit; 67 63 /** Windows (in stacking order, ui_window_t) */ 68 64 list_t windows; 69 /** UI lock */70 fibril_mutex_t lock;71 /** Clickmatic */72 struct ui_clickmatic *clickmatic;73 /** Default input device ID used to determine new window's seat */74 sysarg_t idev_id;75 65 }; 76 66
Note:
See TracChangeset
for help on using the changeset viewer.