~aleteoryx/muditaos

ref: a7fba1b3438cfcf5cb8831de1cc9fc1244c1c330 muditaos/module-apps/apps-common/widgets/IceBox.hpp -rw-r--r-- 671 bytes
a7fba1b3 — Paweł Joński [BH-374] Librarize application-antenna 4 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
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

#pragma once

#include <BoxLayout.hpp>
#include <Label.hpp>
#include <Image.hpp>

namespace style::window::ice
{
    constexpr inline auto x = 25;
    constexpr inline auto y = 53;
    constexpr inline auto w = 60;
    constexpr inline auto h = 38;

    constexpr inline auto margin = 3;

    namespace text
    {
        constexpr inline auto w = 40;
    }
} // namespace style::window::ice

namespace gui
{
    class IceBox : public HBox
    {
      public:
        explicit IceBox(Item *parent = nullptr);
    };
} // namespace gui