Changeset 252d03c in mainline for uspace/lib/ui/private/ui.h


Ignore:
Timestamp:
2021-04-28T09:22:39Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7470d97
Parents:
de227aba
Message:

Popping up a message, in text mode as well

File:
1 edited

Legend:

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

    rde227aba r252d03c  
    3838#define _UI_PRIVATE_UI_H
    3939
     40#include <adt/list.h>
    4041#include <display.h>
    4142#include <io/console.h>
     
    4950        /** Console */
    5051        console_ctrl_t *console;
     52        /** Console GC */
     53        struct console_gc *cgc;
    5154        /** Display */
    5255        display_t *display;
     
    5558        /** @c true if terminating */
    5659        bool quit;
    57         /** Root window (in fullscreen/console mode) */
    58         struct ui_window *root_wnd;
     60        /** Windows (in stacking order, ui_window_t) */
     61        list_t windows;
    5962};
    6063
Note: See TracChangeset for help on using the changeset viewer.