2 * Copyright 2018 Samsung Electronics Co., Ltd
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 #ifndef REMOVE_SWITCH_PAGE_HPP
18 #define REMOVE_SWITCH_PAGE_HPP
20 #include "AppContext.hpp"
24 #include "SetValuePage.hpp"
27 * View allowing to remove existing configurations of switches.
29 * Removal of multiple switch configurations is supported.
31 * @param ad global context of application
34 * replace classical callbacks with lambda expressions
36 class RemoveSwitchPage
40 void attachCallback(UniversalSwitchCb cb, void *cbData);
43 void createPopupForSwitchesRemoving();
44 static void onRemoveSelectedSwitches(void *data, Evas_Object *obj, void *event_info);
45 static void onRemovePopup(void *data, Evas_Object *obj, void *event_info);
46 void removeSwitch(size_t item_id);
49 std::unique_ptr<SetValuePage> setValuePage_;
50 UniversalSwitchCb switch_removed_cb;
51 void *switch_removed_cb_data = nullptr;
52 Button *removeSwitchPopupBtn_ = nullptr;
53 Check *allCheckbox_ = nullptr;
54 Layout *layout_ = nullptr;
55 Genlist *genlist_ = nullptr;
56 size_t switchesToRemoveCounter_ = 0;