9a666e23a8be9083afdab385020afb90bbb12bb5
[framework/osp/appwidget-service.git] / inc / OspAppWidgetService.h
1 //
2 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.1 (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://floralicense.org/license/
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 /**
18  * @file        OspAppWidgetService.h
19  * @brief       This is the header file for the OspAppWidgetService class.
20  *
21  * This header file contains the declarations of the OspAppWidgetService class.
22  */
23
24 #ifndef _OSP_APPWIDGET_SERVICE_H_
25 #define _OSP_APPWIDGET_SERVICE_H_
26
27 #include <FApp.h>
28 #include <FBase.h>
29 #include <FSystem.h>
30
31 /**
32  * [OspAppWidgetService] ServiceApp must inherit from ServiceApp class
33  * which provides basic features necessary to define an ServiceApp.
34  */
35 class OspAppWidgetService
36         : public Tizen::App::ServiceApp
37         ,public Tizen::App::IAppControlProviderEventListener
38 {
39 public:
40
41         /**
42          * [OspAppWidgetService] ServiceApp must have a factory method that creates an instance of itself.
43          */
44         static Tizen::App::ServiceApp* CreateInstance(void);
45
46 public:
47
48         OspAppWidgetService(void);
49         ~OspAppWidgetService(void);
50
51 public:
52
53         // Called when the ServiceApp is initializing.
54         bool OnAppInitializing(Tizen::App::AppRegistry& appRegistry);
55
56         // Called when the ServiceApp initializing is finished.
57         bool OnAppInitialized(void); 
58
59         // Called when the ServiceApp is requested to terminate.
60         bool OnAppWillTerminate(void);
61
62         // Called when the ServiceApp is terminating.
63         bool OnAppTerminating(Tizen::App::AppRegistry& appRegistry, bool forcedTermination = false);
64
65         // Called when the system memory is not sufficient to run the ServiceApp any further.
66         void OnLowMemory(void);
67
68         // Called when the battery level changes.
69         void OnBatteryLevelChanged(Tizen::System::BatteryLevel batteryLevel);
70
71 private:
72         virtual void OnAppControlRequestReceived(RequestId reqId, const Tizen::Base::String& operationId, const Tizen::Base::String* pUriData, const Tizen::Base::String* pMimeType, const Tizen::Base::Collection::IMap* pExtraData);
73 };      // class OspAppWidgetService
74
75 #endif // _OSP_APPWIDGET_SERVICE_H_