~aleteoryx/muditaos

ref: 20e0437d15787fc7b635490d2c73bf3082feea38 muditaos/module-apps/application-settings/include/application-settings/ApplicationSettings.hpp -rw-r--r-- 9.5 KiB
20e0437d — Lefucjusz [MOS-000] Update Pure 1.8.0 changelog 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
// Copyright (c) 2017-2022, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

#pragma once

#include <Application.hpp>

#include <application-settings/windows/WindowNames.hpp>
#include <apps-common/audio/SoundsPlayer.hpp>
#include <bsp/common.hpp>
#include <bsp/keypad_backlight/keypad_backlight.hpp>
#include <service-evtmgr/screen-light-control/ScreenLightControl.hpp>
#include <EventStore.hpp>
#include <application-settings/models/bluetooth/BluetoothSettingsModel.hpp>
#include <application-settings/data/WallpaperOption.hpp>
#include <module-services/service-cellular/service-cellular/VolteState.hpp>

class AudioStopNotification; // Forward declaration

namespace app
{
    inline constexpr auto name_settings = "ApplicationSettings";

    namespace settingsInterface
    {
        class SimParams
        {
          public:
            virtual ~SimParams()                                     = default;
            virtual void updateSimParam()                            = 0;
            virtual void setSelectedSim(Store::GSM::SelectedSIM sim) = 0;
            virtual Store::GSM::SelectedSIM getSelectedSim()         = 0;
            virtual Store::GSM::SIM getSimState()                    = 0;
            virtual std::string getNumber()                          = 0;
        };
        class OperatorsSettings
        {
          public:
            virtual ~OperatorsSettings()                               = default;
            virtual void setOperatorsOn(bool value)                    = 0;
            [[nodiscard]] virtual bool getOperatorsOn() const noexcept = 0;
        };
        class ScreenLightSettings
        {
          public:
            struct Values
            {
                bool lightOn;
                screen_light_control::ScreenLightMode mode;
                screen_light_control::ManualModeParameters parameters;
            };

            virtual ~ScreenLightSettings()                      = default;
            virtual auto getCurrentValues() -> Values           = 0;
            virtual void setBrightness(float brightnessValue)   = 0;
            virtual void setMode(bool isAutoLightSwitchOn)      = 0;
            virtual void setStatus(bool isDisplayLightSwitchOn) = 0;
        };

        class KeypdBacklightSettings
        {
          public:
            virtual ~KeypdBacklightSettings()                                        = default;
            virtual auto getKeypadBacklightState() -> bsp::keypad_backlight::State   = 0;
            virtual void setKeypadBacklightState(bsp::keypad_backlight::State state) = 0;
        };

        class WallpaperSettings
        {
          public:
            virtual ~WallpaperSettings()                                 = default;
            virtual auto getWallpaperOption() -> gui::WallpaperOption    = 0;
            virtual void setWallpaperOption(gui::WallpaperOption option) = 0;
        };

        class DndSettings
        {
          public:
            virtual ~DndSettings() = default;

            virtual auto getNotificationsWhenLocked() const noexcept -> bool = 0;
            virtual void setNotificationsWhenLocked(bool on) noexcept        = 0;
            virtual auto getCallsFromFavourite() const noexcept -> bool      = 0;
            virtual void setCallsFromFavourite(bool on) noexcept             = 0;
        };

        class ConnectionSettings
        {
          public:
            virtual ~ConnectionSettings() = default;

            virtual auto getConnectionFrequency() const noexcept -> uint8_t = 0;
            virtual void setConnectionFrequency(uint8_t val) noexcept       = 0;
        };

        class OfflineSettings
        {
          public:
            virtual auto isFlightMode() const noexcept -> bool     = 0;
            virtual void setFlightMode(bool flightModeOn) noexcept = 0;
        };

        class AutoLockSettings
        {
          public:
            virtual auto getAutoLockTime() -> std::chrono::seconds      = 0;
            virtual void setAutoLockTime(std::chrono::seconds lockTime) = 0;
        };

        class PhoneModeSettings
        {
          public:
            virtual auto getCurrentPhoneMode() const noexcept -> sys::phone_modes::PhoneMode = 0;
        };

    }; // namespace settingsInterface

    class ApplicationSettings : public app::Application,
                                public settingsInterface::SimParams,
                                public settingsInterface::OperatorsSettings,
                                public settingsInterface::ScreenLightSettings,
                                public settingsInterface::KeypdBacklightSettings,
                                public settingsInterface::WallpaperSettings,
                                public settingsInterface::DndSettings,
                                public settingsInterface::OfflineSettings,
                                public settingsInterface::ConnectionSettings,
                                public settingsInterface::AutoLockSettings,
                                public settingsInterface::PhoneModeSettings,
                                public AsyncCallbackReceiver
    {
      public:
        explicit ApplicationSettings(std::string name                    = name_settings,
                                     std::string parent                  = {},
                                     StatusIndicators statusIndicators   = StatusIndicators{},
                                     StartInBackground startInBackground = {false});
        ~ApplicationSettings() override;
        auto DataReceivedHandler(sys::DataMessage *msgl, sys::ResponseMessage *resp) -> sys::MessagePointer override;
        auto InitHandler() -> sys::ReturnCodes override;

        auto SwitchPowerModeHandler(const sys::ServicePowerMode mode) -> sys::ReturnCodes final
        {
            return sys::ReturnCodes::Success;
        }

        void createUserInterface() override;
        void destroyUserInterface() override;
        void returnToPreviousWindow() override;

        void updateSimParam() override;
        void setSelectedSim(Store::GSM::SelectedSIM sim) override;
        Store::GSM::SelectedSIM getSelectedSim() override;
        Store::GSM::SIM getSimState() override;
        std::string getNumber() override;

        void operatorOnChanged(const std::string &value);
        void setOperatorsOn(bool value) override;
        bool getOperatorsOn() const noexcept override;
        void setOsUpdateVersion(const std::string &value);

        ScreenLightSettings::Values getCurrentValues() override;
        void setBrightness(float brightnessValue) override;
        void setMode(bool isAutoLightSwitchOn) override;
        void setStatus(bool isDisplayLightSwitchOn) override;

        auto getKeypadBacklightState() -> bsp::keypad_backlight::State override;
        void setKeypadBacklightState(bsp::keypad_backlight::State keypadLightState) override;

        auto getWallpaperOption() -> gui::WallpaperOption override;
        void setWallpaperOption(gui::WallpaperOption option) override;

        auto getNotificationsWhenLocked() const noexcept -> bool override;
        void setNotificationsWhenLocked(bool on) noexcept override;
        auto getCallsFromFavourite() const noexcept -> bool override;
        void setCallsFromFavourite(bool on) noexcept override;

        auto isFlightMode() const noexcept -> bool override;
        void setFlightMode(bool flightModeOn) noexcept override;

        auto getConnectionFrequency() const noexcept -> uint8_t override;
        void setConnectionFrequency(uint8_t val) noexcept override;

        auto getAutoLockTime() -> std::chrono::seconds override;
        void setAutoLockTime(std::chrono::seconds lockTime) override;

        auto getCurrentPhoneMode() const noexcept -> sys::phone_modes::PhoneMode override;

        auto getVolteState() const noexcept -> cellular::VolteState;
        void sendVolteChangeRequest(bool enable);

      private:
        void attachQuotesWindows();
        void switchToAllDevicesViaBtErrorPrompt(std::shared_ptr<sys::DataMessage> msg, const std::string &errorMsg);

        auto handleSimNotification() -> sys::MessagePointer;
        auto handleAudioStop(AudioStopNotification *notification) -> sys::MessagePointer;
        auto handleVolteState(sys::Message *msg) -> sys::MessagePointer;

        std::shared_ptr<SoundsPlayer> soundsPlayer;
        Store::GSM::SelectedSIM selectedSim = Store::GSM::get()->selected;
        Store::GSM::SIM simState            = Store::GSM::get()->sim;
        std::string selectedSimNumber       = {};

        bool operatorsOn                                               = false;
        bool notificationsWhenLocked                                   = true;
        bool callsFromFavorites                                        = false;
        int connectionFrequency                                        = 0;
        bool flightModeOn                                              = true;
        cellular::VolteState volteState;
        std::shared_ptr<BluetoothSettingsModel> bluetoothSettingsModel = nullptr;
    };

    template <>
    struct ManifestTraits<ApplicationSettings>
    {
        static auto GetManifest() -> manager::ApplicationManifest
        {
            return {{manager::actions::Launch,
                     manager::actions::PhoneModeChanged,
                     manager::actions::BluetoothModeChanged,
                     manager::actions::AlarmClockStatusChanged,
                     manager::actions::DisplayFactoryResetInProgressScreen}};
        }
    };
} /* namespace app */