Merge "Fix dimming issue on KeepScreenOnState function" into tizen_2.2
[platform/framework/native/appfw.git] / inc / FAppIAppControlResponseListener.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                        FAppIAppControlResponseListener.h
19  * @brief                       This is the header file for the %IAppControlResponseListener interface.
20  *
21  * This header file contains the declarations of the %IAppControlResponseListener interface.
22  */
23
24 #ifndef _FAPP_IAPP_CONTROL_RESPONSE_LISTENER_H_
25 #define _FAPP_IAPP_CONTROL_RESPONSE_LISTENER_H_
26
27 #include <FBaseRtIEventListener.h>
28
29 namespace Tizen { namespace Base {
30 class String;
31 namespace Collection {
32 class IMap;
33 }
34 }}
35
36 namespace Tizen { namespace App
37 {
38
39 /**
40 * @interface    IAppControlResponseListener
41 * @brief                This interface defines a listener for the %AppControl response events.
42 *
43 * @since        2.0
44 *
45 * The %IAppControlResponseListener interface defines a listener for the AppControl response events.
46 */
47 class _OSP_EXPORT_ IAppControlResponseListener
48         : virtual public Tizen::Base::Runtime::IEventListener
49 {
50 public:
51         /**
52          * This polymorphic destructor should be overridden if required.
53          * This way, the destructors of the derived classes are called when the destructor of this interface is called.
54          *
55          * @since       2.0
56          */
57         virtual ~IAppControlResponseListener(void) {}
58
59         /**
60          * Called when the response for application control completion is received.
61          *
62          * @since       2.0
63          *
64          * @param[in]   appId                   The ID of the requested application
65          * @param[in]   operationId             The operation ID used in application control invocation
66          * @param[in]   appControlResult        The application control result
67          * @param[in]   pExtraData              A pointer to an result map of key and value pair where the key of type Tizen::Base::String and the value of 
68          *                                                      type %Tizen::Base::String or of type Tizen::Base::ArrayList of %Tizen::Base::String
69          * @remarks     The application control completion result is received when the requested application control
70          *                      sends the result using AppControlProviderManager::SendAppControlResult().
71          * @see         AppControl
72          * @see         AppControlProviderManager::SendAppControlResult()
73          */
74         virtual void OnAppControlCompleteResponseReceived(const AppId& appId, const Tizen::Base::String& operationId, AppCtrlResult appControlResult, const Tizen::Base::Collection::IMap* pExtraData) = 0;
75
76         /**
77          * Called when the application control is about to start or to be canceled by the user resolution. @n
78          * The calling application can get the result of the resolution by implementing this empty body method.
79          *
80          * @since       2.0
81          *
82          * @param[in]   appId                   The ID of the requested application
83          * @param[in]   operationId             The operation ID used in application control invocation
84          * @param[in]   r                               The result of the application control start response @n
85          *                                                              The exception code may be given through this parameter.
86          * @exception   E_SUCCESS               The method is successful.
87          * @exception   E_OPERATION_CANCELED    The application control resolve request is canceled by a user operation.
88          * @exception   E_PRIVILEGE_DENIED      The application does not have the privilege to call this method.
89          * @exception   E_SYSTEM                A system error has occurred.
90          * @remarks             This method is invoked only for the implicit AppControl resolution.
91          * @see AppControl
92          * @see AppControl::FindAndStart()
93          */
94         virtual void OnAppControlStartResponseReceived(const AppId& appId, const Tizen::Base::String& operationId, result r) {}
95
96 protected:
97         //
98         // This method is for internal use only.
99         // Using this method can cause behavioral, security-related, and consistency-related issues in the application.
100         //
101         // This method is reserved and may change its name at any time without prior notice.
102         //
103         // @since       2.0
104         //
105         virtual void IAppControlResponseListener_Reserved1(void) {}
106
107         //
108         // This method is for internal use only.
109         // Using this method can cause behavioral, security-related, and consistency-related issues in the application.
110         //
111         // This method is reserved and may change its name at any time without prior notice.
112         //
113         // @since       2.0
114         //
115         virtual void IAppControlResponseListener_Reserved2(void) {}
116
117         //
118         // This method is for internal use only.
119         // Using this method can cause behavioral, security-related, and consistency-related issues in the application.
120         //
121         // This method is reserved and may change its name at any time without prior notice.
122         //
123         // @since       2.0
124         //
125         virtual void IAppControlResponseListener_Reserved3(void) {}
126
127         //
128         // This method is for internal use only.
129         // Using this method can cause behavioral, security-related, and consistency-related issues in the application.
130         //
131         // This method is reserved and may change its name at any time without prior notice.
132         //
133         // @since       2.0
134         //
135         virtual void IAppControlResponseListener_Reserved4(void) {}
136
137         //
138         // This method is for internal use only.
139         // Using this method can cause behavioral, security-related, and consistency-related issues in the application.
140         //
141         // This method is reserved and may change its name at any time without prior notice.
142         //
143         // @since       2.0
144         //
145         virtual void IAppControlResponseListener_Reserved5(void) {}
146 }; // IAppControlResponseListener
147
148 } } // Tizen::App
149
150 #endif // _FAPP_IAPP_CONTROL_RESPONSE_LISTENER_H_