Revert "Overload methods to run with tizen id instead of widgetHandle"
[framework/web/wrt-commons.git] / modules / localization / include / dpl / localization / w3c_file_localization.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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  * @file    w3c_file_localization.h
18  * @author  Lukasz Wrzosek (l.wrzosek@samsung.com)
19  * @version 1.0
20  */
21
22 #ifndef W3C_FILE_LOCALIZATION_H
23 #define W3C_FILE_LOCALIZATION_H
24
25 #include <dpl/wrt-dao-ro/widget_dao_read_only.h>
26 #include <dpl/optional.h>
27 #include <dpl/string.h>
28 #include <list>
29
30 #include <dpl/localization/localization_utils.h>
31
32 // WrtDB::DbWidgetHandle
33 #include <dpl/wrt-dao-ro/common_dao_types.h>
34
35 namespace W3CFileLocalization {
36 typedef std::list<WidgetIcon> WidgetIconList;
37
38 DPL::Optional<DPL::String> getFilePathInWidgetPackageFromUrl(
39         WrtDB::DbWidgetHandle widgetHandle,
40         const DPL::String &url);
41
42 DPL::Optional<DPL::String> getFilePathInWidgetPackage(
43         WrtDB::DbWidgetHandle widgetHandle,
44         const DPL::String& file);
45
46 DPL::OptionalString getStartFile(WrtDB::DbWidgetHandle handle);
47 DPL::OptionalString getStartFile(const WrtDB::WidgetPkgName & pkgname);
48 DPL::OptionalString getStartFile(WrtDB::WidgetDAOReadOnlyPtr dao);
49
50 OptionalWidgetIcon getIcon(WrtDB::DbWidgetHandle widgetHandle);
51 OptionalWidgetIcon getIcon(const WrtDB::WidgetPkgName & pkgname);
52 OptionalWidgetIcon getIcon(WrtDB::WidgetDAOReadOnlyPtr dao);
53
54 WidgetIconList getValidIconsList(
55         WrtDB::DbWidgetHandle widgetHandle);
56
57 OptionalWidgetStartFileInfo getStartFileInfo(
58         WrtDB::DbWidgetHandle widgetHandle);
59
60 WrtDB::WidgetLocalizedInfo getLocalizedInfo(WrtDB::DbWidgetHandle widgetHandle);
61 WrtDB::WidgetLocalizedInfo getLocalizedInfo(const WrtDB::WidgetPkgName & pkgname);
62 WrtDB::WidgetLocalizedInfo getLocalizedInfo(WrtDB::WidgetDAOReadOnlyPtr dao);
63 }
64
65 #endif //W3C_FILE_LOCALIZATION_H