Changeset aefdccd in mainline for uspace/lib/ui/include
- Timestamp:
- 2025-10-20T06:14:54Z (3 months ago)
- Parents:
- adbd7e1 (diff), 3e41cc4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
- boba-buba <120932204+boba-buba@…> (2025-10-20 06:14:54)
- git-committer:
- GitHub <noreply@…> (2025-10-20 06:14:54)
- Location:
- uspace/lib/ui/include
- Files:
-
- 4 edited
-
types/ui/list.h (modified) (3 diffs)
-
ui/filelist.h (modified) (1 diff)
-
ui/list.h (modified) (2 diffs)
-
ui/window.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/include/types/ui/list.h
radbd7e1 raefdccd 1 1 /* 2 * Copyright (c) 202 3Jiri Svoboda2 * Copyright (c) 2025 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 38 38 39 39 #include <gfx/color.h> 40 #include <stddef.h> 40 41 41 42 struct ui_list; … … 67 68 } ui_list_cb_t; 68 69 70 /** Saved list position. */ 71 typedef struct { 72 /** Page index */ 73 size_t page_idx; 74 /** Cursor index */ 75 size_t cursor_idx; 76 } ui_list_pos_t; 77 69 78 #endif 70 79 -
uspace/lib/ui/include/ui/filelist.h
radbd7e1 raefdccd 51 51 extern errno_t ui_file_list_read_dir(ui_file_list_t *, const char *); 52 52 extern errno_t ui_file_list_activate(ui_file_list_t *); 53 extern errno_t ui_file_list_refresh(ui_file_list_t *); 53 54 extern void ui_file_list_deactivate(ui_file_list_t *); 54 55 extern errno_t ui_file_list_open(ui_file_list_t *, ui_file_list_entry_t *); -
uspace/lib/ui/include/ui/list.h
radbd7e1 raefdccd 1 1 /* 2 * Copyright (c) 202 4Jiri Svoboda2 * Copyright (c) 2025 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 71 71 extern ui_list_entry_t *ui_list_prev(ui_list_entry_t *); 72 72 extern bool ui_list_is_active(ui_list_t *); 73 extern void ui_list_save_pos(ui_list_t *, ui_list_pos_t *); 74 extern void ui_list_restore_pos(ui_list_t *, ui_list_pos_t *); 73 75 74 76 #endif -
uspace/lib/ui/include/ui/window.h
radbd7e1 raefdccd 1 1 /* 2 * Copyright (c) 202 4Jiri Svoboda2 * Copyright (c) 2025 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 56 56 extern void ui_window_add(ui_window_t *, ui_control_t *); 57 57 extern void ui_window_remove(ui_window_t *, ui_control_t *); 58 extern ui_window_t *ui_window_get_active(ui_t *);59 58 extern errno_t ui_window_resize(ui_window_t *, gfx_rect_t *); 60 59 extern ui_t *ui_window_get_ui(ui_window_t *);
Note:
See TracChangeset
for help on using the changeset viewer.
