Remove unnecessary file.
authorKeuckdo Bang <keuckdo.bang@samsung.net>
Wed, 12 Jun 2013 11:01:17 +0000 (20:01 +0900)
committerKeuckdo Bang <keuckdo.bang@samsung.net>
Wed, 12 Jun 2013 11:01:17 +0000 (20:01 +0900)
Change-Id: I4a8a03254cac819e5ec331be5c14ac8f533afd6a

src/ui/inc/FUiCtrl_IFormControlEventListener.h [deleted file]

diff --git a/src/ui/inc/FUiCtrl_IFormControlEventListener.h b/src/ui/inc/FUiCtrl_IFormControlEventListener.h
deleted file mode 100644 (file)
index 80cf1e6..0000000
+++ /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 <FBaseRtIEventListener.h>
-
-// 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 <a href="../com.osp.cppappprogramming.help/html/dev_guide/ui/implementing_form.htm">Form</a>.
- */
-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_