Add update of GenlistItem fields when text and description are changed
[profile/mobile/apps/native/accessibility-setting.git] / src / ScreenReaderPage.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 SCREEN_READER_PAGE_HPP
18 #define SCREEN_READER_PAGE_HPP
19
20 #include "AppContext.hpp"
21 #include "GenlistItem.hpp"
22 #include "ScreenReaderSettingsPage.hpp"
23 #include "VConf.hpp"
24
25 #include <Elementary.h>
26 #include <vconf.h>
27
28 /**
29  * View allowing to turn on/off Screen Reader feature 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 ScreenReaderPage
37 {
38         public:
39         ScreenReaderPage();
40
41         private:
42         AppContext &context_;
43         std::unique_ptr<ScreenReaderSettingsPage> screenReaderSettingsPage_;
44         GenlistItem *screenReaderItem_ = nullptr;
45         VConfInterface::CallbackHandle screenReaderStateHandle_;
46 };
47
48 #endif