~aleteoryx/muditaos

ref: 9ba4d8cea949692768b4cbb0042fad7999362faa muditaos/module-gui/gui/dom/ItemDataNames.hpp -rw-r--r-- 940 bytes
9ba4d8ce — Lukasz Mastalerz [BH-1838] Relaxation plays in the background for certain song lengths 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

#pragma once

namespace gui::visitor
{

    enum Names
    {
        Item,
        Rect,
        Label,
        Text,
        StatusBar,
        NavBar,
        Window,
        Children,
        ListItem
    };

    enum Item
    {
        ItemType,
        Focus,
        Visible,
        Active,
        ChildrenCount,
        WidgetArea,
        WidgetMinimumArea,
        WidgetMaximumArea,
        DrawArea,
        Padding,
        Margins,
        Alignment
    };

    enum Rect
    {
        BorderColor,
        FillColor,
        PenWidth,
        PenFocusWidth,
        Filled,
        Edges,
        FlatEdges,
        Corners,
        Yaps,
        YapSize,
    };

    enum Text
    {
        TextValue,
    };

    enum Window
    {
        WindowName
    };

} // namespace gui::visitor