d52bd6c216740984c4afda04a762a96cedcb33d2
[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-rw/widget_dao.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 LanguageTagsList &languageTags,
41         const DPL::String &url);
42
43 DPL::Optional<DPL::String> getFilePathInWidgetPackage(
44         WrtDB::DbWidgetHandle widgetHandle,
45         const LanguageTagsList &languageTags,
46         const DPL::String& file);
47
48 DPL::OptionalString getStartFile(WrtDB::DbWidgetHandle widgetHandle);
49 OptionalWidgetIcon getIcon(WrtDB::DbWidgetHandle widgetHandle);
50 WidgetIconList getValidIconsList(
51         WrtDB::DbWidgetHandle widgetHandle,
52         const LanguageTagsList &languageTags);
53
54 OptionalWidgetStartFileInfo getStartFileInfo(
55         WrtDB::DbWidgetHandle widgetHandle,
56         const LanguageTagsList &tagsList);
57 WrtDB::WidgetLocalizedInfo getLocalizedInfo(WrtDB::DbWidgetHandle widgetHandle);
58 }
59
60 #endif //W3C_FILE_LOCALIZATION_H