Changeset d097daca in mainline for uspace/app/nav/nav.h


Ignore:
Timestamp:
2021-10-04T12:33:59Z (3 years ago)
Author:
Jiri Svoboda <jiri@…>
Children:
68b9e540
Parents:
e0e1b3d
git-author:
Jiri Svoboda <jiri@…> (2021-10-03 17:33:47)
git-committer:
Jiri Svoboda <jiri@…> (2021-10-04 12:33:59)
Message:

Add menu, make window full-screen

File:
1 edited

Legend:

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

    re0e1b3d rd097daca  
    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.