2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
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
9 // http://floralicense.org/license/
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.
18 * @file FUiCtrl_PublicSplitPanelEvent.h
19 * @brief This is the header file for _PublicSplitPanelEvent class.
21 * This header file contains declaration of _PublicSplitPanelEvent class.
25 #ifndef _FUI_CTRL_INTERNAL_PUBLIC_SPLIT_PANEL_EVENT_H_
26 #define _FUI_CTRL_INTERNAL_PUBLIC_SPLIT_PANEL_EVENT_H_
28 #include <FOspConfig.h>
29 #include <FBaseResult.h>
30 #include <FUiControl.h>
31 #include <FUiCtrlISplitPanelEventListener.h>
32 #include <FBaseRt_Event.h>
34 namespace Tizen { namespace Ui { namespace Controls
39 enum SplitPanelEventStatus
41 SPLIT_PANEL_EVENT_DIVIDER_POSITION_CHANGE = 0,
42 SPLIT_PANEL_EVENT_DIVIDER_DOUBLE_PRESSED
46 * @class _PublicSplitPanelEvent
47 * @brief This class handles a text Block event event. It is inherited from Event class.
50 class _PublicSplitPanelEvent
51 : public Tizen::Base::Runtime::_Event
56 * This is the default class destructor.
59 virtual ~_PublicSplitPanelEvent(void);
61 static _PublicSplitPanelEvent* CreateInstanceN(const SplitPanel& source);
66 * This method returns the owner of this event.
68 * @return See the comment above.
70 const SplitPanel* GetSource(void) const;
75 * This is the default class constructor.
77 * @remarks After creating an instance of this class, you must explicitly call one of
78 * construction methods to initialize the instance.
81 _PublicSplitPanelEvent(const SplitPanel& source);
84 * This method checks the arg and finds out the type of event. After that this method calls appopriate
87 * @return This method returns a result code.
88 * @param[in] pListener It is a event listener related to this item event.
89 * @param[in] arg It is an argument-like instance of item event retransmitted to the listener's method
91 * @exception E_SUCCESS - The method is successful.
92 * @exception E_ARG_NULL - The listener is null.
93 * @exception E_INVALID_ARG - The argument passed to a method contains an invalid value.@n
94 * The pListener is not the instance of IItemEventListener class or
95 * the pItemEventArg is not the instance of _CustomItemEventArg class.
98 virtual void FireImpl(Tizen::Base::Runtime::IEventListener& listener, const Tizen::Base::Runtime::IEventArg& arg);
101 static Tizen::Base::Runtime::IEventArg* CreateSplitPanelEventArgN(SplitPanelEventStatus status);
105 const SplitPanel* __pSource;
106 }; // _PublicSplitPanelEvent
108 }}} // Tizen::Ui::Controls
110 #endif //_FUI_CTRL_INTERNAL_PUBLIC_SPLIT_PANEL_EVENT_H_