Add update of GenlistItem fields when text and description are changed
[profile/mobile/apps/native/accessibility-setting.git] / src / ScreenReaderSettingsPage.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_SETTINGS_PAGE_HPP
18 #define SCREEN_READER_SETTINGS_PAGE_HPP
19
20 #include "AppContext.hpp"
21 #include "GenlistItem.hpp"
22 #include "Popup.hpp"
23
24 #include <Elementary.h>
25 #include <vector>
26
27 /**
28  * View allowing to configure main options of Screen Reader
29  *
30  * @param ad global context of application
31  *
32  * TODO:
33  *  replace classical callbacks with lambda expressions
34  */
35 class ScreenReaderSettingsPage
36 {
37         public:
38         ScreenReaderSettingsPage();
39
40         private:
41         void mouseUpGendialListCb();
42         void createSpeechRatePopup();
43         std::string calculateSpeedPercentage();
44         static void onPopupDel(void *data, Evas *e, Evas_Object *obj, void *event_info);
45
46         AppContext &context_;
47         Popup *popup_ = nullptr;
48         GenlistItem *speechRateItem_ = nullptr;
49 };
50
51 #endif