Changeset 5d466a1 in mainline for uspace/app/nav/nav.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:
- 6aa85c1
- Parents:
- 748c8bd
- git-author:
- Jiri Svoboda <jiri@…> (2021-10-03 17:33:47)
- git-committer:
- jxsvoboda <5887334+jxsvoboda@…> (2021-10-25 00:32:45)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/nav/nav.h
r748c8bd r5d466a1 1 1 /* 2 * Copyright (c) 202 0Jiri Svoboda2 * Copyright (c) 2021 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 39 39 #include <display.h> 40 40 #include <ui/fixed.h> 41 #include <ui/label.h>42 41 #include <ui/ui.h> 43 42 #include <ui/window.h> 44 43 45 44 /** Navigator */ 46 typedef struct { 45 typedef struct navigator { 46 /** User interface */ 47 47 ui_t *ui; 48 /** Window */ 48 49 ui_window_t *window; 50 /** Fixed layout */ 49 51 ui_fixed_t *fixed; 50 ui_label_t *label; 52 /** Menu */ 53 struct nav_menu *menu; 51 54 } navigator_t; 52 55
Note:
See TracChangeset
for help on using the changeset viewer.