Initialize Tizen 2.3
[framework/web/wrt-plugins-common.git] / src_wearable / modules / tizen / WidgetDB / WidgetDB.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        WidgetDB.h
18  * @author      Andrzej Surdej (a.surdej@samsung.com)
19  * @version     0.1
20  * @brief
21  */
22
23 #ifndef WRTDEVICEAPIS_WIDGETDB_WIDGETDB_H_
24 #define WRTDEVICEAPIS_WIDGETDB_WIDGETDB_H_
25
26 #include <string>
27 #include <WidgetDB/IWidgetDB.h>
28
29 namespace WrtDeviceApis {
30 namespace WidgetDB {
31 class WidgetDB : public Api::IWidgetDB
32 {
33   public:
34
35     explicit WidgetDB(int widgetId);
36
37     virtual int getWidgetId() const;
38
39     virtual std::string getLanguage() const;
40
41     virtual std::string getConfigValue(Api::ConfigAttribute attribute) const;
42
43     virtual std::string getUserAgent() const;
44
45     virtual Api::InstallationStatus checkInstallationStatus(
46         const std::string& gid,
47         const std::string& name,
48         const std::string& version) const;
49
50     virtual Api::Features getWidgetFeatures() const;
51
52     virtual Api::Features getRegisteredFeatures() const;
53
54     virtual std::string getWidgetInstallationPath() const;
55
56     virtual std::string getWidgetPersistentStoragePath() const;
57
58     virtual std::string getWidgetTemporaryStoragePath() const;
59
60   private:
61
62     int m_widgetId;
63 };
64 } // WidgetDB
65 } // WrtDeviceApis
66
67 #endif // WRTDEVICEAPIS_WIDGETDB_WIDGETDB_H
68