Changeset 1ebcb791 in mainline for uspace/lib/ui/private


Ignore:
Timestamp:
2021-09-01T19:44:37Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f7c12b3
Parents:
45004f3
Message:

Fill text UI background with color

Location:
uspace/lib/ui/private
Files:
2 edited

Legend:

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

    r45004f3 r1ebcb791  
    11/*
    2  * Copyright (c) 2020 Jiri Svoboda
     2 * Copyright (c) 2021 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    5959        bool textmode;
    6060
     61        /** UI background color */
     62        gfx_color_t *ui_bg_color;
     63
    6164        /** Button frame color */
    6265        gfx_color_t *btn_frame_color;
  • uspace/lib/ui/private/ui.h

    r45004f3 r1ebcb791  
    3939
    4040#include <adt/list.h>
     41#include <gfx/coord.h>
    4142#include <display.h>
    4243#include <io/console.h>
     
    5455        /** Display */
    5556        display_t *display;
     57        /** UI rectangle (only used in fullscreen mode) */
     58        gfx_rect_t rect;
    5659        /** Output owned by UI, clean up when destroying UI */
    5760        bool myoutput;
Note: See TracChangeset for help on using the changeset viewer.