2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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 * @file uninstaller_context.h
18 * @author Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
20 * @brief Definition file of installer tasks data structures
23 #ifndef WRT_SRC_INSTALLER_CORE_UNINSTALLER_TASKS_UNINSTALLER_CONTEXT_H_
24 #define WRT_SRC_INSTALLER_CORE_UNINSTALLER_TASKS_UNINSTALLER_CONTEXT_H_
27 #include <widget_uninstall/widget_uninstaller_struct.h>
28 #include <widget_location.h>
31 namespace WidgetUninstall {
32 class JobWidgetUninstall;
33 } //namespace WidgetUninstall
36 struct UninstallerContext
41 UNINSTALL_SMACK_ENABLE,
43 UNINSTALL_REMOVE_WIDGETDIR,
44 UNINSTALL_REMOVE_DESKTOP,
45 UNINSTALL_REMOVE_FINISHED,
47 UNINSTALL_REMOVE_OSPSVC,
51 ///< flag that indicates whether installer starts
52 //to remove files.rStruct;
54 ///< flag that indicates whether installer finishes
55 //to remove files completely.
58 DPL::Optional<WidgetLocation> locations;
60 UninstallStep uninstallStep; ///< current step of installation
61 Jobs::WidgetUninstall::JobWidgetUninstall *job;
64 bool isExternalWidget;
68 #endif // WRT_SRC_INSTALLER_CORE_UNINSTALLER_TASKS_UNINSTALLER_CONTEXT_H_