~aleteoryx/muditaos

ref: 58b11ee8dd9d4da8242836a207548bcd485cdc50 muditaos/module-apps/application-settings-new/windows/WallpaperWindow.hpp -rw-r--r-- 673 bytes
58b11ee8 — Artur Śleszyński [EGD-6563] Don't allow to edit exponent output in calculator 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
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

#pragma once

#include "BaseSettingsWindow.hpp"

namespace gui
{
    class CheckBoxWithLabel;

    class WallpaperWindow : public BaseSettingsWindow
    {
      public:
        WallpaperWindow(app::Application *app);

      private:
        void switchHandler(bool &onOffSwitch);
        auto buildOptionsList() -> std::list<Option> override;

        bool isWallpaperLogoSwitchOn   = false;
        bool isWallpaperClockSwitchOn  = false;
        bool isWallpaperQuotesSwitchOn = false;

        Item *quotes;
    };
} // namespace gui