Changes in uspace/lib/ui/private/ui.h [3583ffb:983052c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/private/ui.h
r3583ffb r983052c 1 1 /* 2 * Copyright (c) 202 0Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 38 38 #define _UI_PRIVATE_UI_H 39 39 40 #include <adt/list.h> 41 #include <gfx/coord.h> 40 42 #include <display.h> 43 #include <fibril_synch.h> 44 #include <io/console.h> 41 45 #include <stdbool.h> 46 #include <types/common.h> 42 47 43 48 /** Actual structure of user interface. … … 46 51 */ 47 52 struct ui { 53 /** Console */ 54 console_ctrl_t *console; 55 /** Console GC */ 56 struct console_gc *cgc; 48 57 /** Display */ 49 58 display_t *display; 59 /** UI rectangle (only used in fullscreen mode) */ 60 gfx_rect_t rect; 50 61 /** Output owned by UI, clean up when destroying UI */ 51 62 bool myoutput; 63 /** @c true iff UI is suspended */ 64 bool suspended; 52 65 /** @c true if terminating */ 53 66 bool quit; 67 /** Windows (in stacking order, ui_window_t) */ 68 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; 54 75 }; 55 76
Note:
See TracChangeset
for help on using the changeset viewer.