Add update of GenlistItem fields when text and description are changed
[profile/mobile/apps/native/accessibility-setting.git] / src / UniversalSwitchPage.hpp
1 /*
2  * Copyright 2018 Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *  http://www.apache.org/licenses/LICENSE-2.0
9
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef UNIVERSAL_SWITCH_PAGE_HPP
18 #define UNIVERSAL_SWITCH_PAGE_HPP
19
20 #include "AppContext.hpp"
21 #include "Button.hpp"
22 #include "GenlistItem.hpp"
23 #include "UniversalSwitchSettingsPage.hpp"
24 #include "VConf.hpp"
25
26 #include <vconf.h>
27
28 /**
29  * View allowing to turn on/off Universal Switch and to start configuration of its options
30  *
31  * @param ad global context of application
32  *
33  * TODO:
34  *  replace classical callbacks with lambda expressions
35  */
36 class UniversalSwitchPage
37 {
38         public:
39         UniversalSwitchPage();
40
41         private:
42         void addNewSwitch();
43         void displayAddSwitchPopup();
44         static void onNewSwitchAddition(
45                 void *data, const std::string &switch_id, const std::string &switch_action, const std::string &switch_name);
46         void stopUniversalSwitch();
47         void startUniversalSwitch();
48         static void onUniversalSwitchStarting(void *data);
49         static void onVconfKeyChange(keynode_t *node, void *user_data);
50
51         AppContext &context_;
52         std::unique_ptr<UniversalSwitchSettingsPage> universalSwitchSettingsPage_;
53         GenlistItem *universalSwitchOffCheckbox_;
54         Button *usSettingsBtn_ = nullptr;
55         std::unique_ptr<AddSwitchPage> addSwitchPage_;
56         VConfInterface::CallbackHandle universalSwitchStateHandle_;
57 };
58
59 #endif