tizen beta release
[framework/web/wrt-plugins-common.git] / src / 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
32 class WidgetDB : public Api::IWidgetDB
33 {
34   public:
35
36     explicit WidgetDB(int widgetId);
37
38     virtual int getWidgetId() const;
39
40     virtual std::string getLanguage() const;
41
42     virtual std::string getConfigValue(Api::ConfigAttribute attribute) const;
43
44     virtual std::string getUserAgent() const;
45
46     virtual Api::InstallationStatus checkInstallationStatus(
47             const std::string& gid,
48             const std::string& name,
49             const std::string& version) const;
50
51     virtual Api::Features getWidgetFeatures() const;
52
53     virtual Api::Features getRegisteredFeatures() const;
54
55     virtual std::string getWidgetInstallationPath() const;
56
57     virtual std::string getWidgetPersistentStoragePath() const;
58
59     virtual std::string getWidgetTemporaryStoragePath() const;
60
61   private:
62
63     int m_widgetId;
64
65 };
66
67 } // WidgetDB
68 } // WrtDeviceApis
69
70 #endif // WRTDEVICEAPIS_WIDGETDB_WIDGETDB_H
71
72