Changes in uspace/lib/ui/private/filedialog.h [b979ffb:5e109e1] in mainline
- File:
-
- 1 edited
-
uspace/lib/ui/private/filedialog.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/private/filedialog.h
rb979ffb r5e109e1 1 1 /* 2 * Copyright (c) 202 6Jiri Svoboda2 * Copyright (c) 2021 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 38 38 #define _UI_PRIVATE_FILEDIALOG_H 39 39 40 #include <gfx/coord.h>41 42 40 /** Actual structure of file dialog. 43 41 * … … 49 47 /** File name entry */ 50 48 struct ui_entry *ename; 51 /** File list */52 struct ui_file_list *flist;53 49 /** OK button */ 54 50 struct ui_pbutton *bok; … … 61 57 }; 62 58 63 /** File dialog geometry.64 *65 * Computed geometry of file dialog.66 */67 typedef struct {68 /** File name label rectangle */69 gfx_rect_t fname_label_rect;70 /** File name entry rectangle */71 gfx_rect_t entry_rect;72 /** Files label rectangle */73 gfx_rect_t files_label_rect;74 /** File list rectangle */75 gfx_rect_t flist_rect;76 /** File list rectangle */77 gfx_rect_t bok_rect;78 /** File list rectangle */79 gfx_rect_t bcancel_rect;80 } ui_file_dialog_geom_t;81 82 59 #endif 83 60
Note:
See TracChangeset
for help on using the changeset viewer.
