~aleteoryx/muditaos

ref: f1465ed3b24bc6c239780bcfa80bf979504324fd muditaos/module-apps/apps-common/popups/lock-popups/phone-lock-wallpapers/WallpaperLogo.hpp -rw-r--r-- 655 bytes
f1465ed3 — Pawel Olejniczak [EGD-8055] Sort language list 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 "WallpaperBase.hpp"

#include <ImageBox.hpp>

namespace gui
{
    namespace style
    {
        namespace logo
        {
            constexpr auto y = 163;
        } // namespace logo

    } // namespace style
    class WallpaperLogo : public WallpaperBase
    {
      private:
        ImageBox *logoImage = nullptr;

      public:
        WallpaperLogo(gui::Item *parent);
        void build() override;
        void show() override;
        void hide() override;
    };

} /* namespace gui */