Changeset b1397ab in mainline for uspace/lib/tbarcfg/private


Ignore:
Timestamp:
2023-11-09T13:02:16Z (2 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, topic/msim-upgrade, topic/simplify-dev-export
Children:
e0d874b7
Parents:
40eab9f
git-author:
Jiri Svoboda <jiri@…> (2023-11-08 18:01:53)
git-committer:
Jiri Svoboda <jiri@…> (2023-11-09 13:02:16)
Message:

Start menu editor is editing

You can change an entry and it will be saved to the configuration repo.
(Cannot create/delete yet). To see the change in the editor, you need
to restart it. To see the change in the taskbar, you need to restart it.

File:
1 edited

Legend:

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

    r40eab9f rb1397ab  
    4444/** Taskbar configuration */
    4545struct tbarcfg {
     46        /** Repository session */
     47        sif_sess_t *repo;
    4648        /** List of start menu entries (smenu_entry_t) */
    4749        list_t entries;
     
    5456        /** Link to @c smenu->entries */
    5557        link_t lentries;
     58        /** SIF node (persistent storage) */
     59        sif_node_t *nentry;
    5660        /** Entry caption (with accelerator markup) */
    5761        char *caption;
     
    6064};
    6165
    62 extern errno_t smenu_entry_create(tbarcfg_t *, const char *,
     66extern errno_t smenu_entry_create(tbarcfg_t *, sif_node_t *, const char *,
    6367    const char *);
    6468
Note: See TracChangeset for help on using the changeset viewer.