abcb7a242c11aff4f2900030751b0fa4f64b981e
[platform/framework/native/appfw.git] / inc / FAppIAppControlProviderEventListener.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  * @file    FAppIAppControlProviderEventListener.h
18  * @brief   This is the header file for the %IAppControlProviderEventListener interface.
19  *
20  * This header file contains the declarations of the %IAppControlProviderEventListener interface.
21  */
22
23 #ifndef _FAPP_IAPPCONTROL_PROVIDER_EVENT_LISTENER_H_
24 #define _FAPP_IAPPCONTROL_PROVIDER_EVENT_LISTENER_H_
25
26 #include <FBaseObject.h>
27 #include <FBaseRtIEventListener.h>
28 #include <FAppTypes.h>
29
30
31 namespace Tizen { namespace Base { namespace Collection {
32 class IList;
33 class IMap;
34 }}}
35
36 namespace Tizen { namespace App
37 {
38
39 /**
40 *   @interface  IAppControlProviderEventListener
41 *   @brief      This interface defines the provider listener for the %AppControl request.
42 *
43 *   @since      2.0
44 *
45 * The %IAppControlProviderEventListener interface defines a listener for the AppControl request events.
46 * Applications that provide the %AppControl functionality must implement this interface.
47 *
48 * @see AppControlProviderManager
49 */
50 class _OSP_EXPORT_ IAppControlProviderEventListener
51         : virtual public Tizen::Base::Runtime::IEventListener
52 {
53 public:
54         /**
55          * This polymorphic destructor should be overridden if required.
56          * This way, the destructors of the derived classes are called when the destructor of this interface is called.
57          *
58          * @since       2.0
59          */
60         virtual ~IAppControlProviderEventListener(void) {}
61
62         /**
63          * Called when the application control request is received from the caller application. @n
64          * The application control provider must implement this listener for exporting its own functionality.
65          *
66          * @since       2.0
67          *
68          * @param[in]   reqId  The application control request ID
69          * @param[in]   operationId     The application control operation ID
70          * @param[in]   pUriData        A pointer to the URI data
71          * @param[in]   pMimeType       A pointer to the MIME type (RFC 2046) data
72          * @param[in]   pExtraData      A pointer to an argument map of key and value pair where the key is of type Tizen::Base::String and the value is of type %Tizen::Base::String or of type Tizen::Base::Collection::ArrayList of %Tizen::Base::String
73          * @remarks     To reply to the application control request, use AppControlProviderManager::SendAppControlResult() with the given request ID.
74          * @remarks     When the application receives the AppControl request on the background,
75          *                      %OnAppControlRequestReceived() is invoked before UiApp::OnForeground().
76          * @remarks     When the application control is resolved with the file extension with AppControl::FindAndStart(),
77          *                      the delivered file extension is converted to the corresponding MIME type in the @c pMimeType parameter.
78          */
79         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) = 0;
80
81 protected:
82         //
83         // This method is for internal use only. Using this method can cause behavioral,
84         // security-related, and consistency-related issues in the application.
85         //
86         // @since       2.0
87         //
88         virtual void IAppControlProviderEventListener_Reserved1(void) {}
89
90         //
91         // This method is for internal use only. Using this method can cause behavioral,
92         // security-related, and consistency-related issues in the application.
93         //
94         // @since       2.0
95         //
96         virtual void IAppControlProviderEventListener_Reserved2(void) {}
97
98         //
99         // This method is for internal use only. Using this method can cause behavioral,
100         // security-related, and consistency-related issues in the application.
101         //
102         // @since       2.0
103         //
104         virtual void IAppControlProviderEventListener_Reserved3(void) {}
105
106 }; // IAppControlProviderEventListener
107
108 }} // Tizen::App
109
110 #endif // _FAPP_IAPPCONTROL_PROVIDER_EVENT_LISTENER_H_