Changeset 5d466a1 in mainline for uspace/app/nav/nav.h


Ignore:
Timestamp:
2021-10-25T00:32:45Z (3 years ago)
Author:
jxsvoboda <5887334+jxsvoboda@…>
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)
Message:

Add menu, make window full-screen

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/nav/nav.h

    r748c8bd r5d466a1  
    11/*
    2  * Copyright (c) 2020 Jiri Svoboda
     2 * Copyright (c) 2021 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    3939#include <display.h>
    4040#include <ui/fixed.h>
    41 #include <ui/label.h>
    4241#include <ui/ui.h>
    4342#include <ui/window.h>
    4443
    4544/** Navigator */
    46 typedef struct {
     45typedef struct navigator {
     46        /** User interface */
    4747        ui_t *ui;
     48        /** Window */
    4849        ui_window_t *window;
     50        /** Fixed layout */
    4951        ui_fixed_t *fixed;
    50         ui_label_t *label;
     52        /** Menu */
     53        struct nav_menu *menu;
    5154} navigator_t;
    5255
Note: See TracChangeset for help on using the changeset viewer.