Changeset 1b92d4b in mainline for uspace/app/taskbar/wndlist.h


Ignore:
Timestamp:
2022-11-01T13:22:48Z (2 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fc00f0d
Parents:
913add60
git-author:
Jiri Svoboda <jiri@…> (2022-10-31 18:22:34)
git-committer:
Jiri Svoboda <jiri@…> (2022-11-01 13:22:48)
Message:

Update window buttons based on window added/removed events

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/taskbar/wndlist.h

    r913add60 r1b92d4b  
    3838
    3939#include <errno.h>
     40#include <stdbool.h>
    4041#include <ui/fixed.h>
    41 #include <ui/resource.h>
     42#include <ui/window.h>
    4243#include <wndmgt.h>
    4344#include "types/wndlist.h"
    4445
    45 extern errno_t wndlist_create(ui_resource_t *, ui_fixed_t *, wndlist_t **);
    46 extern errno_t wndlist_attach_wm(wndlist_t *, wndmgt_t *);
     46extern errno_t wndlist_create(ui_window_t *, ui_fixed_t *, wndlist_t **);
     47extern errno_t wndlist_open_wm(wndlist_t *, const char *);
    4748extern void wndlist_destroy(wndlist_t *);
    48 extern errno_t wndlist_append(wndlist_t *, const char *);
     49extern errno_t wndlist_append(wndlist_t *, sysarg_t, const char *, bool);
     50extern errno_t wndlist_remove(wndlist_t *, wndlist_entry_t *, bool);
     51extern void wndlist_set_entry_rect(wndlist_t *, wndlist_entry_t *);
     52extern wndlist_entry_t *wndlist_entry_by_id(wndlist_t *, sysarg_t);
     53extern wndlist_entry_t *wndlist_first(wndlist_t *);
     54extern wndlist_entry_t *wndlist_next(wndlist_entry_t *);
     55extern errno_t wndlist_repaint(wndlist_t *);
    4956
    5057#endif
Note: See TracChangeset for help on using the changeset viewer.