Changeset 34aad53d in mainline for uspace/app/aboutos/aboutos.h


Ignore:
Timestamp:
2024-04-07T09:45:45Z (6 weeks ago)
Author:
Nataliia Korop <n.corop08@…>
Children:
c37c24c
Parents:
e4cc266 (diff), 522eecf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

merge master to topic/packet-capture

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/app/aboutos/aboutos.h

    re4cc266 r34aad53d  
    11/*
    2  * Copyright (c) 2023 Jiri Svoboda
     2 * Copyright (c) 2024 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 /** @addtogroup launcher
     29/** @addtogroup aboutos
    3030 * @{
    3131 */
    3232/**
    33  * @file Launcher
     33 * @file About HelenOS
    3434 */
    3535
    36 #ifndef LAUNCHER_H
    37 #define LAUNCHER_H
     36#ifndef ABOUTOS_H
     37#define ABOUTOS_H
    3838
    39 #include <display.h>
    40 #include <types/common.h>
    4139#include <ui/fixed.h>
    4240#include <ui/image.h>
     
    4644#include <ui/window.h>
    4745
    48 /** Launcher */
     46/** About HelenOS */
    4947typedef struct {
    5048        ui_t *ui;
     
    5351
    5452        ui_image_t *image;
    55         ui_label_t *label;
     53        ui_label_t *lrelease;
     54        ui_label_t *lcopy;
     55        ui_label_t *larch;
    5656
    57         ui_pbutton_t *pb1;
    58         ui_pbutton_t *pb2;
    59         ui_pbutton_t *pb3;
    60         ui_pbutton_t *pb4;
    61         ui_pbutton_t *pb5;
    62         ui_pbutton_t *pb6;
    63 
    64         /** ID of device that sent last position event */
    65         sysarg_t ev_pos_id;
    66 } launcher_t;
     57        ui_pbutton_t *pbok;
     58} aboutos_t;
    6759
    6860#endif
Note: See TracChangeset for help on using the changeset viewer.