Changeset a927af7a in mainline for uspace/lib/ui/private/window.h


Ignore:
Timestamp:
2026-02-24T10:15:52Z (4 weeks ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master
Children:
96ef0d1e
Parents:
08fcaf2
git-author:
Jiri Svoboda <jiri@…> (2026-02-23 22:15:15)
git-committer:
Jiri Svoboda <jiri@…> (2026-02-24 10:15:52)
Message:

Reposition maximized windows, but not normal windows.

After all, they might have been moved by the user.

File:
1 edited

Legend:

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

    r08fcaf2 ra927af7a  
    5050#include <types/ui/cursor.h>
    5151#include <types/ui/window.h>
     52
     53/** UI window flags. */
     54typedef enum {
     55        /** Window is maximized */
     56        uiwf_maximized = 0x1
     57} ui_window_flags_t;
    5258
    5359/** Actual structure of window.
     
    112118        /** Window placement */
    113119        ui_wnd_placement_t placement;
     120        /** Window flags */
     121        ui_wnd_flags_t flags;
    114122};
    115123
Note: See TracChangeset for help on using the changeset viewer.