Add update of GenlistItem fields when text and description are changed
[profile/mobile/apps/native/accessibility-setting.git] / src / ActionPage.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 ACTION_PAGE_HPP
18 #define ACTION_PAGE_HPP
19
20 #include "AppContext.hpp"
21 #include "SetValuePage.hpp"
22
23 #include <memory>
24
25 /**
26  * View allowing to select action and bind it to currently selected switch
27  *
28  * @param ad global context of application
29  *
30  * TODO:
31  *  replace classical callbacks with lambda expressions
32  */
33 class ActionPage
34 {
35         public:
36         using switch_action_cb = void (*)(const std::string &action, void *user_data); // TODO probably to remove
37         ActionPage(NaviframeItem targetItem = {});
38         void attachCallback(switch_action_cb cb, void *user_data);
39
40         private:
41         void actionChangedCb(size_t item_id);
42
43         AppContext &context_;
44         switch_action_cb actionCb_ = nullptr;
45         void *actionCbData_ = nullptr;
46         std::unique_ptr<SetValuePage> setValuePage_;
47 };
48
49 #endif