tizen 2.3 release
[framework/web/wearable/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     const WrtDB::TizenAppId &tzAppId,
40     const DPL::String &url);
41 DPL::Optional<DPL::String> getFilePathInWidgetPackageFromUrl(
42     WrtDB::WidgetDAOReadOnlyPtr dao,
43     const DPL::String &url);
44 std::string getFilePathInWidgetPackageFromUrl(const std::string &tzAppId, const std::string &url);
45
46 DPL::Optional<DPL::String> getFilePathInWidgetPackage(
47     const WrtDB::TizenAppId &tzAppId,
48     const DPL::String& file);
49 DPL::Optional<DPL::String> getFilePathInWidgetPackage(
50     WrtDB::WidgetDAOReadOnlyPtr dao,
51     const DPL::String& file);
52
53 DPL::OptionalString getStartFile(const WrtDB::TizenAppId & tzAppId);
54 DPL::OptionalString getStartFile(WrtDB::WidgetDAOReadOnlyPtr dao);
55
56 OptionalWidgetIcon getIcon(const WrtDB::TizenAppId & tzAppId);
57 OptionalWidgetIcon getIcon(WrtDB::WidgetDAOReadOnlyPtr dao);
58
59 WidgetIconList getValidIconsList(
60     const WrtDB::TizenAppId &tzAppId);
61 WidgetIconList getValidIconsList(
62     WrtDB::WidgetDAOReadOnlyPtr dao);
63
64 OptionalWidgetStartFileInfo getStartFileInfo(
65     const WrtDB::TizenAppId &tzAppId);
66 OptionalWidgetStartFileInfo getStartFileInfo(
67     WrtDB::WidgetDAOReadOnlyPtr dao);
68
69 WrtDB::WidgetLocalizedInfo getLocalizedInfo(
70     const WrtDB::TizenAppId & tzAppId);
71 WrtDB::WidgetLocalizedInfo getLocalizedInfo(WrtDB::WidgetDAOReadOnlyPtr dao);
72 }
73
74 #endif //W3C_FILE_LOCALIZATION_H