Changeset 7aeb52cb in mainline for uspace/app/nav/types/panel.h
- Timestamp:
- 2021-10-25T00:32:45Z (3 years ago)
- Branches:
- master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 01e9991
- Parents:
- f783081
- git-author:
- Jiri Svoboda <jiri@…> (2021-10-16 21:51:33)
- git-committer:
- jxsvoboda <5887334+jxsvoboda@…> (2021-10-25 00:32:45)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/nav/types/panel.h
rf783081 r7aeb52cb 40 40 #include <gfx/color.h> 41 41 #include <gfx/coord.h> 42 #include <ipc/loc.h> 42 43 #include <ui/window.h> 43 44 #include <stdint.h> 45 46 /** Panel entry attributes */ 47 typedef struct { 48 /** File name */ 49 const char *name; 50 /** File size */ 51 uint64_t size; 52 /** @c true iff entry is a directory */ 53 bool isdir; 54 /** Service number for service special entries */ 55 service_id_t svc; 56 } panel_entry_attr_t; 44 57 45 58 /** Panel entry */ … … 55 68 /** @c true iff entry is a directory */ 56 69 bool isdir; 70 /** Service number for service special entries */ 71 service_id_t svc; 57 72 } panel_entry_t; 58 73 … … 82 97 /** Directory-type entry color */ 83 98 gfx_color_t *dir_color; 99 100 /** Service-type entry color */ 101 gfx_color_t *svc_color; 84 102 85 103 /** Panel entries (list of panel_entry_t) */
Note:
See TracChangeset
for help on using the changeset viewer.