Changeset 95fc538 in mainline


Ignore:
Timestamp:
2023-10-26T11:51:50Z (6 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, topic/msim-upgrade, topic/simplify-dev-export
Children:
d28bdbe
Parents:
cb2894e
Message:

It should be Taskbar not Task Bar

Location:
uspace
Files:
17 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/taskbar/clock.c

    rcb2894e r95fc538  
    3030 * @{
    3131 */
    32 /** @file Task bar clock.
     32/** @file Taskbar clock.
    3333 *
    3434 * Displays the current time in an inset frame.
     
    5353static void taskbar_clock_timer(void *);
    5454
    55 /** Task bar clock control ops */
     55/** Taskbar clock control ops */
    5656static ui_control_ops_t taskbar_clock_ctl_ops = {
    5757        .destroy = taskbar_clock_ctl_destroy,
     
    6161};
    6262
    63 /** Create task bar clock.
     63/** Create taskbar clock.
    6464 *
    6565 * @param window Containing window
     
    102102}
    103103
    104 /** Destroy task bar clock.
    105  *
    106  * @param clock Task bar clock
     104/** Destroy taskbar clock.
     105 *
     106 * @param clock Taskbar clock
    107107 */
    108108void taskbar_clock_destroy(taskbar_clock_t *clock)
     
    149149}
    150150
    151 /** Paint task bar clock.
    152  *
    153  * @param clock Task bar clock
     151/** Paint taskbar clock.
     152 *
     153 * @param clock Taskbar clock
    154154 */
    155155errno_t taskbar_clock_paint(taskbar_clock_t *clock)
     
    208208}
    209209
    210 /** Handle task bar clock keyboard event.
    211  *
    212  * @param clock Task bar clock
     210/** Handle taskbar clock keyboard event.
     211 *
     212 * @param clock Taskbar clock
    213213 * @param event Keyboard event
    214214 * @return ui_claimed iff event was claimed
     
    219219}
    220220
    221 /** Handle task bar clock position event.
    222  *
    223  * @param clock Task bar clock
     221/** Handle taskbar clock position event.
     222 *
     223 * @param clock Taskbar clock
    224224 * @param event Position event
    225225 * @return ui_claimed iff event was claimed
     
    237237}
    238238
    239 /** Get base control for task bar clock.
    240  *
    241  * @param clock Task bar clock
     239/** Get base control for taskbar clock.
     240 *
     241 * @param clock Taskbar clock
    242242 * @return Base UI control
    243243 */
     
    247247}
    248248
    249 /** Set task bar clock rectangle.
    250  *
    251  * @param clock Task bar clock
     249/** Set taskbar clock rectangle.
     250 *
     251 * @param clock Taskbar clock
    252252 * @param rect Rectangle
    253253 */
     
    277277}
    278278
    279 /** Paint task bar clock control.
     279/** Paint taskbar clock control.
    280280 *
    281281 * @param arg Argument (taskbar_clock_t *)
     
    289289}
    290290
    291 /** Handle task bar clock control keyboard event.
     291/** Handle taskbar clock control keyboard event.
    292292 *
    293293 * @param arg Argument (taskbar_clock_t *)
     
    302302}
    303303
    304 /** Handle task bar clock control position event.
     304/** Handle taskbar clock control position event.
    305305 *
    306306 * @param arg Argument (taskbar_clock_t *)
  • uspace/app/taskbar/clock.h

    rcb2894e r95fc538  
    3131 */
    3232/**
    33  * @file Task bar clock
     33 * @file Taskbar clock
    3434 */
    3535
  • uspace/app/taskbar/doc/doxygroups.h

    rcb2894e r95fc538  
    11/** @addtogroup taskbar taskbar
    2  * @brief Task bar
     2 * @brief Taskbar
    33 * @ingroup apps
    44 */
  • uspace/app/taskbar/main.c

    rcb2894e r95fc538  
    3030 * @{
    3131 */
    32 /** @file Task Bar
     32/** @file Taskbar
    3333 */
    3434
  • uspace/app/taskbar/taskbar.c

    rcb2894e r95fc538  
    3030 * @{
    3131 */
    32 /** @file Task Bar
     32/** @file Taskbar
    3333 */
    3434
     
    114114}
    115115
    116 /** Create task bar.
     116/** Create taskbar.
    117117 *
    118118 * @param display_spec Display specification
    119119 * @param wndmgt_svc Window management service (or WNDMGT_DEFAULT)
    120  * @param rtaskbar Place to store pointer to new task bar
     120 * @param rtaskbar Place to store pointer to new taskbar
    121121 * @return @c EOK on success or an error coe
    122122 */
     
    157157
    158158        ui_wnd_params_init(&params);
    159         params.caption = "Task Bar";
     159        params.caption = "Taskbar";
    160160        params.placement = ui_wnd_place_bottom_left;
    161161
     
    302302}
    303303
    304 /** Destroy task bar. */
     304/** Destroy taskbar. */
    305305void taskbar_destroy(taskbar_t *taskbar)
    306306{
  • uspace/app/taskbar/taskbar.h

    rcb2894e r95fc538  
    3131 */
    3232/**
    33  * @file Task Bar
     33 * @file Taskbar
    3434 */
    3535
  • uspace/app/taskbar/tbsmenu.c

    rcb2894e r95fc538  
    3030 * @{
    3131 */
    32 /** @file Task bar start menu
     32/** @file Taskbar start menu
    3333 */
    3434
     
    6565static errno_t tbsmenu_entry_start(tbsmenu_entry_t *);
    6666
    67 /** Create task bar start menu.
     67/** Create taskbar start menu.
    6868 *
    6969 * @param window Containing window
     
    199199}
    200200
    201 /** Destroy task bar start menu.
     201/** Destroy taskbar start menu.
    202202 *
    203203 * @param tbsmenu Start menu
  • uspace/app/taskbar/tbsmenu.h

    rcb2894e r95fc538  
    3131 */
    3232/**
    33  * @file Task bar start menu
     33 * @file Taskbar start menu
    3434 */
    3535
  • uspace/app/taskbar/types/clock.h

    rcb2894e r95fc538  
    3131 */
    3232/**
    33  * @file Task bar clock
     33 * @file Taskbar clock
    3434 */
    3535
     
    4141#include <ui/window.h>
    4242
    43 /** Task bar clock
     43/** Taskbar clock
    4444 *
    4545 * This is a custom UI control.
  • uspace/app/taskbar/types/taskbar.h

    rcb2894e r95fc538  
    3131 */
    3232/**
    33  * @file Task Bar types
     33 * @file Taskbar types
    3434 */
    3535
     
    4646#include "wndlist.h"
    4747
    48 /** Task bar */
     48/** Taskbar */
    4949typedef struct taskbar {
    5050        /** User interface */
  • uspace/app/taskbar/types/tbsmenu.h

    rcb2894e r95fc538  
    3131 */
    3232/**
    33  * @file Task bar start menu
     33 * @file Taskbar start menu
    3434 */
    3535
     
    6060} tbsmenu_entry_t;
    6161
    62 /** Task bar start menu */
     62/** Taskbar start menu */
    6363typedef struct tbsmenu {
    6464        /** Containing window */
  • uspace/app/taskbar/types/wndlist.h

    rcb2894e r95fc538  
    3131 */
    3232/**
    33  * @file Task bar window list
     33 * @file Taskbar window list
    3434 */
    3535
     
    6161} wndlist_entry_t;
    6262
    63 /** Task bar window list */
     63/** Taskbar window list */
    6464typedef struct wndlist {
    6565        /** Base control object */
  • uspace/app/taskbar/wndlist.c

    rcb2894e r95fc538  
    3030 * @{
    3131 */
    32 /** @file Task bar window list
     32/** @file Taskbar window list
    3333 */
    3434
     
    8080};
    8181
    82 /** Create task bar window list.
     82/** Create taskbar window list.
    8383 *
    8484 * @param window Containing window
     
    176176}
    177177
    178 /** Destroy task bar window list.
     178/** Destroy taskbar window list.
    179179 *
    180180 * @param wndlist Window list
  • uspace/app/taskbar/wndlist.h

    rcb2894e r95fc538  
    3131 */
    3232/**
    33  * @file Task bar window list
     33 * @file Taskbar window list
    3434 */
    3535
  • uspace/lib/tbarcfg/private/tbarcfg.h

    rcb2894e r95fc538  
    3131 */
    3232/**
    33  * @file Task bar configuration
     33 * @file Taskbar configuration
    3434 *
    3535 */
     
    4242#include <types/tbarcfg/tbarcfg.h>
    4343
    44 /** Task bar configuration */
     44/** Taskbar configuration */
    4545struct tbarcfg {
    4646        /** List of start menu entries (smenu_entry_t) */
  • uspace/lib/tbarcfg/src/tbarcfg.c

    rcb2894e r95fc538  
    3131 */
    3232/**
    33  * @file Task bar configuration
     33 * @file Taskbar configuration
    3434 */
    3535
     
    4141#include "../private/tbarcfg.h"
    4242
    43 /** Open task bar configuration.
     43/** Open taskbar configuration.
    4444 *
    4545 * @param repopath Pathname of the menu repository
    46  * @param rtbcfg Place to store pointer to task bar configuration
     46 * @param rtbcfg Place to store pointer to taskbar configuration
    4747 * @return EOK on success or an error code
    4848 */
     
    116116}
    117117
    118 /** Close task bar configuration.
     118/** Close taskbar configuration.
    119119 *
    120120 * @param tbcfg Start menu
     
    126126/** Get first start menu entry.
    127127 *
    128  * @param tbcfg Task bar configuration
     128 * @param tbcfg Taskbar configuration
    129129 * @return First entry or @c NULL if the menu is empty
    130130 */
  • uspace/lib/tbarcfg/test/tbarcfg.c

    rcb2894e r95fc538  
    3636PCUT_TEST_SUITE(tbarcfg);
    3737
    38 /** Opening and closing task bar configuration */
     38/** Opening and closing taskbar configuration */
    3939PCUT_TEST(open_close)
    4040{
Note: See TracChangeset for help on using the changeset viewer.