Changes in uspace/srv/hid/display/window.h [35cffea:17c0f5d] in mainline
- File:
-
- 1 edited
-
uspace/srv/hid/display/window.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/window.h
r35cffea r17c0f5d 1 1 /* 2 * Copyright (c) 202 2Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 41 41 #include <errno.h> 42 42 #include <io/pos_event.h> 43 #include <stdbool.h> 43 44 #include <types/gfx/context.h> 44 45 #include <types/gfx/coord.h> … … 55 56 extern void ds_window_bring_to_top(ds_window_t *); 56 57 extern gfx_context_t *ds_window_get_ctx(ds_window_t *); 58 extern bool ds_window_is_visible(ds_window_t *); 57 59 extern errno_t ds_window_paint(ds_window_t *, gfx_rect_t *); 58 60 errno_t ds_window_paint_preview(ds_window_t *, gfx_rect_t *); … … 68 70 gfx_coord2_t *); 69 71 extern errno_t ds_window_resize(ds_window_t *, gfx_coord2_t *, gfx_rect_t *); 72 extern errno_t ds_window_minimize(ds_window_t *); 73 extern errno_t ds_window_unminimize(ds_window_t *); 70 74 extern errno_t ds_window_maximize(ds_window_t *); 71 75 extern errno_t ds_window_unmaximize(ds_window_t *); … … 73 77 gfx_rect_t *); 74 78 extern errno_t ds_window_set_cursor(ds_window_t *, display_stock_cursor_t); 79 extern errno_t ds_window_set_caption(ds_window_t *, const char *); 80 extern ds_window_t *ds_window_find_alt(ds_window_t *, display_wnd_flags_t); 81 extern void ds_window_unfocus(ds_window_t *); 75 82 76 83 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
