Changeset 77ffa01 in mainline for uspace/lib/ui/private/ui.h


Ignore:
Timestamp:
2021-02-27T21:34:15Z (3 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9c7dc8e
Parents:
b433f68
Message:

Allow UI to run in the console

Note that everything is way too large.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ui/private/ui.h

    rb433f68 r77ffa01  
    11/*
    2  * Copyright (c) 2020 Jiri Svoboda
     2 * Copyright (c) 2021 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    3939
    4040#include <display.h>
     41#include <io/console.h>
    4142#include <stdbool.h>
    4243
     
    4647 */
    4748struct ui {
     49        /** Console */
     50        console_ctrl_t *console;
    4851        /** Display */
    4952        display_t *display;
     
    5255        /** @c true if terminating */
    5356        bool quit;
     57        /** Root window (in fullscreen/console mode) */
     58        struct ui_window *root_wnd;
    5459};
    5560
Note: See TracChangeset for help on using the changeset viewer.