Tizen 2.1 base
[platform/framework/native/app-service.git] / inc / FSys_SystemService.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file         FSys_SystemService.h
20  * @brief       This is the header file of the _SystemService class.
21  *
22  * This header file contains the declarations of the _SystemService class.
23  */
24 #include <FApp.h>
25 #include <FBase.h>
26 #include "FApp_ICommunicationRequestListener.h"
27
28 #ifndef _FSYS_INTERNAL_SYSTEM_SERVICE_H_
29 #define _FSYS_INTERNAL_SYSTEM_SERVICE_H_
30
31 namespace Tizen { namespace System {
32
33 /**
34  * @class       _SystemService
35  * @brief       This class contains implementaion of device control.
36  * @since 2.1
37  */
38 class _SystemService
39         : public Tizen::App::_ICommunicationRequestListener
40         , public Tizen::App::IActiveAppEventListener
41 {
42 private:
43         _SystemService(void);
44         virtual ~_SystemService(void);
45 public:
46         virtual Tizen::Base::String GetId(void);
47         virtual void OnRequestOccured(Tizen::App::AppId appId, Tizen::Base::Collection::ArrayList* request, Tizen::Base::Collection::ArrayList* response);
48         virtual void OnApplicationTerminated(const Tizen::App::AppId& appId, Tizen::App::_AppType type);
49         static _SystemService* GetInstance(void);
50         void RestoreBrightness(void);
51         virtual void OnActiveAppChanged(const Tizen::App::AppId& appId);
52
53 private:
54         Tizen::App::_CommunicationDispatcher*   __pCommunicationDispatcher;
55         Tizen::Base::Collection::HashMap        __appBrightnessList;
56         Tizen::App::AppId                       __activeAppId;
57         static _SystemService*                  __pSystemService;
58
59 };      //_SystemService
60
61 }} //Tizen::System
62 #endif /* _FSYS_INTERNAL_SYSTEM_SERVICE_H_ */