From: Keuckdo Bang Date: Wed, 12 Jun 2013 11:01:17 +0000 (+0900) Subject: Remove unnecessary file. X-Git-Tag: submit/tizen_2.2/20130714.153149~504^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8156f9d6b35cd6962d84574aa3822ae8ff22aae3;p=framework%2Fosp%2Fuifw.git Remove unnecessary file. Change-Id: I4a8a03254cac819e5ec331be5c14ac8f533afd6a --- diff --git a/src/ui/inc/FUiCtrl_IFormControlEventListener.h b/src/ui/inc/FUiCtrl_IFormControlEventListener.h deleted file mode 100644 index 80cf1e6..0000000 --- a/src/ui/inc/FUiCtrl_IFormControlEventListener.h +++ /dev/null @@ -1,107 +0,0 @@ -// -// Open Service Platform -// Copyright (c) 2012-2013 Samsung Electronics Co., Ltd. -// -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0/ -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -/** - * @file FUiCtrl_IFormControlEventListener.h - * @brief This is the header file for the _IFormControlEventListener interface. - * - * This header file contains the declarations of the _IFormControlEventListener interface. - */ -#ifndef _FUI_CTRL_INTERNAL_IFORM_CONTROL_EVENT_LISTENER_H_ -#define _FUI_CTRL_INTERNAL_IFORM_CONTROL_EVENT_LISTENER_H_ - -// includes -#include - -// namespace declaration -namespace Tizen { namespace Ui { namespace Controls -{ - -class _Form; - -/** - * @interface _IFormControlEventListener - * @brief This interface implements the listener for Form related events. - * @since 2.0 - * - * The %_IFormControlEventListener interface is the listener interface for receiving Form-related events. - * - * For more information on the class features, see Form. - */ -class _IFormControlEventListener - : virtual public Tizen::Base::Runtime::IEventListener -{ -// Lifecycle -public: - /** - * This is the destructor for this class. - * @since 2.0 - */ - virtual ~_IFormControlEventListener(void) {} - -// Operation -public: - /** - * Called when the current %Form control needs to be closed to revert back to the previous %Form control. - * - * @since 2.0 - * @param[in] source The source of the event - * @remarks This event is fired when the user clicks on the software 'back' button on the Footer control, or the hardware back button on the - * device. - */ - virtual void OnFormBackButtonRequested(Tizen::Ui::Controls::_Form& source) = 0; - - virtual void OnFormOptionButtonRequested(Tizen::Ui::Controls::_Form& source) = 0; - -// Reserves -protected: - // - //This method is for internal use only. Using this method can cause behavioral, security-related, - //and consistency-related issues in the application. - // - // Following method is reserved and may change its name at any time without - // prior notice. - // - // @since 2.0 - // - virtual void _IFormControlEventListener_Reserved1(void) { } - - // - //This method is for internal use only. Using this method can cause behavioral, security-related, - //and consistency-related issues in the application. - // - // Following method is reserved and may change its name at any time without - // prior notice. - // - // @since 2.0 - // - virtual void _IFormControlEventListener_Reserved2(void) { } - - // - //This method is for internal use only. Using this method can cause behavioral, security-related, - //and consistency-related issues in the application. - // - // Following method is reserved and may change its name at any time without - // prior notice. - // - // @since 2.0 - // - virtual void _IFormControlEventListener_Reserved3(void) { } -}; // _IFormControlEventListener - -}}} // Tizen::Ui::Controls - -#endif // _FUI_CTRL_INTERNAL_IFORM_CONTROL_EVENT_LISTENER_H_