Tizen 2.1 base
[framework/osp/uifw.git] / src / ui / inc / FUiCtrl_EditCopyPasteEvent.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Flora License, Version 1.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://floralicense.org/license/
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 * @file                 FUiCtrl_EditCopyPasteEvent.h
19 * @brief                This is the header file for _EditCopyPasteEvent class.
20 *
21 * This header file contains declaration of _EditCopyPasteEvent class.
22 */
23
24 #ifndef _FUI_CTRL_INTERNAL_EDIT_COPY_PASTE_EVENT_H_
25 #define _FUI_CTRL_INTERNAL_EDIT_COPY_PASTE_EVENT_H_
26
27 #include <FBaseResult.h>
28 #include <FBaseRt_Event.h>
29 #include <FOspConfig.h>
30 #include "FUiCtrl_IEditCopyPasteEventListener.h"
31
32 namespace Tizen { namespace Ui { namespace Controls
33 {
34
35 //forward declaration
36 class _EditCopyPasteManager;
37
38 /**
39 * @class        _EditCopyPasteEvent
40 * @brief        This class handles an EditCopyPaste event. It is inherited from Event class.
41 *
42 */
43 class _EditCopyPasteEvent
44         : public Tizen::Base::Runtime::_Event
45 {
46 // Lifecycle
47 public:
48         /**
49         * This is the default class destructor.
50         *
51         */
52         virtual ~_EditCopyPasteEvent(void);
53
54         static _EditCopyPasteEvent* CreateInstanceN(const Tizen::Ui::Controls::_EditCopyPasteManager& source);
55
56 // Accessors
57 public:
58         /**
59         * This method returns the owner of this event.
60         *
61         * @return               See the comment above.
62         */
63         const Tizen::Ui::Controls::_EditCopyPasteManager* GetSource(void) const;
64
65 // Operations
66 protected:
67
68         /**
69         * This is the default class constructor.
70         *
71         * @remarks              After creating an instance of this class, you must explicitly call one of
72         *                               construction methods to initialize the instance.
73         *
74         */
75         _EditCopyPasteEvent(const Tizen::Ui::Controls::_EditCopyPasteManager& source);
76
77         /**
78         * This method checks the arg and finds out the type of event. After that this method calls appopriate
79         * pListener's method.
80         *
81         * @param[in]    listener        It is a event listener related to this item event.
82         * @param[in]    arg                     It is an argument-like instance of item event retransmitted to the listener's method
83         *                                                       as an argument.
84         * @exception    E_SUCCESS               - The method is successful.
85         * @exception    E_ARG_NULL              - The listener is null.
86         * @exception    E_INVALID_ARG   - The argument passed to a method contains an invalid value.@n
87         *                                                                 &nbsp;&nbsp;The pListener is not the instance of IItemEventListener class or
88         *                                                                 the pItemEventArg is not the instance of _CustomItemEventArg class.
89         *
90         */
91         virtual void FireImpl(Tizen::Base::Runtime::IEventListener& listener, const Tizen::Base::Runtime::IEventArg& arg);
92
93 public:
94         static Tizen::Base::Runtime::IEventArg* CreateCopyPasteEventArgN(Tizen::Ui::Controls::CoreCopyPasteStatus status, Tizen::Ui::Controls::CoreCopyPasteAction action );
95
96         //Attributess
97 private:
98         const Tizen::Ui::Controls::_EditCopyPasteManager* __pSource;
99 }; // _EditCopyPasteEvent
100
101 }}} // Tizen::Ui::Controls
102
103 #endif // _FUI_CTRL_INTERNAL_EDIT_COPY_PASTE_EVENT_H_