Merge "Remove fallback functions for timezone and locales." into tizen_2.2
[platform/framework/native/appfw.git] / src / app / inc / FApp_AppUserEvent.h
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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 /**
18  * @file        FApp_AppUserEvent.h
19  * @brief       This is the header file for the _AppUserEvent class.
20  *
21  * This file contains the declarations of _AppUserEvent.
22  */
23
24
25 #ifndef _FAPP_INTERNAL_APP_USER_EVENT_H_
26 #define _FAPP_INTERNAL_APP_USER_EVENT_H_
27
28 #include <FBaseLog.h>
29 #include <FBaseResult.h>
30 #include <FBaseRtIEventListener.h>
31 #include <FBaseRtIEventArg.h>
32
33 #include <FBaseRt_Event.h>
34
35 #include "FApp_IAppUserEventListener.h"
36 #include "FApp_AppUserEventArg.h"
37
38
39 namespace Tizen { namespace App
40 {
41
42 class _AppUserEvent
43         : public Tizen::Base::Runtime::_Event
44 {
45 // Lifecycle
46 public:
47         result Construct(void)
48         {
49                 return _Event::Initialize();
50         }
51
52 protected:
53         virtual void FireImpl(Tizen::Base::Runtime::IEventListener& listener, const Tizen::Base::Runtime::IEventArg& arg)
54         {
55                 _IAppUserEventListener* pAppUserEventListener = dynamic_cast<_IAppUserEventListener*>(&listener);
56                 const _AppUserEventArg* pAppUserEventArg = dynamic_cast<const _AppUserEventArg*>(&arg);
57                 SysTryReturnVoidResult(NID_APP, pAppUserEventArg != null && pAppUserEventListener != null, E_INVALID_ARG,
58                                 "[E_INVALID_ARG] Listener or argument is null.");
59
60                 pAppUserEventListener->OnUserEventReceivedN(pAppUserEventArg->GetRequestId(), pAppUserEventArg->GetArgs(), pAppUserEventArg->IsPublic());
61         }
62 };
63
64
65 } } // Tizen::App
66
67 #endif // _FAPP_INTERNAL_APP_USER_EVENT_H_