Revert "[Tizen] keygrab & ecore-wl-window-handle c# binding" 58/126758/1
authortaeyoon0.lee <taeyoon0.lee@samsung.com>
Tue, 25 Apr 2017 04:55:58 +0000 (13:55 +0900)
committertaeyoon0.lee <taeyoon0.lee@samsung.com>
Tue, 25 Apr 2017 04:56:13 +0000 (13:56 +0900)
This reverts commit 8bef7d5c946d0c759db35c56a731cbbae5b694a8.

Change-Id: Ied6163c3ac299415e4920eab8f8025e7d6b600d6

adaptors/common/window-impl.h [changed mode: 0755->0644]
adaptors/devel-api/adaptor-framework/window-devel.cpp [changed mode: 0755->0644]
adaptors/devel-api/adaptor-framework/window-devel.h [changed mode: 0755->0644]
adaptors/ecore/wayland/window-impl-ecore-wl.cpp [changed mode: 0755->0644]
adaptors/wayland/window-impl-wl.cpp [changed mode: 0755->0644]
adaptors/x11/window-impl-x.cpp [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index 13a2349..0cf251b
@@ -328,10 +328,6 @@ private:
   IndicatorSignalType mIndicatorVisibilityChangedSignal;
   FocusSignalType     mFocusChangedSignal;
   SignalType          mDeleteRequestSignal;
-
-public:
-
-  void* GetNativeWindowHandler();
 };
 
 } // namespace Adaptor
old mode 100755 (executable)
new mode 100644 (file)
index 30c3d0a..70ad18e
@@ -55,11 +55,6 @@ bool IsVisible( Window window )
   return GetImplementation( window ).IsVisible();
 }
 
-void * GetNativeWindowHandler( Window window )
-{
-  return GetImplementation( window ).GetNativeWindowHandler();
-}
-
 } // namespace DevelWindow
 
 } // namespace Dali
old mode 100755 (executable)
new mode 100644 (file)
index b12c0b9..db6c6ac
@@ -82,13 +82,6 @@ DALI_IMPORT_API void Hide( Window window );
  */
 DALI_IMPORT_API bool IsVisible( Window window );
 
-/**
- * @brief Returns native Ecore Wayland Window handle only for c# binding
- * @param[in] window The window where Ecore Wayland window handle is extracted
- * @return void * of native Ecore Wayland Window
- */
-DALI_IMPORT_API void * GetNativeWindowHandler( Window window );
-
 } // namespace DevelWindow
 
 } // namespace Dali
old mode 100755 (executable)
new mode 100644 (file)
index 1408fab..5c0523c
@@ -676,12 +676,6 @@ void Window::RotationDone( int orientation, int width, int height )
   ecore_wl_window_rotation_change_done_send( mEventHandler->mEcoreWindow );
 }
 
-void* Window::GetNativeWindowHandler()
-{
-  return mEventHandler->mEcoreWindow;
-}
-
-
 } // Adaptor
 } // Internal
 } // Dali
old mode 100755 (executable)
new mode 100644 (file)
index 7b3303d..e9ec667
@@ -305,16 +305,11 @@ bool Window::IsVisible() const
   return mVisible;
 }
 
-void Window::RotationDone( int orientation, int width, int height )
-{
-}
 
-void* Window::GetNativeWindowHandler()
+void Window::RotationDone( int orientation, int width, int height )
 {
-  return NULL;
 }
 
-
 } // Adaptor
 } // Internal
 } // Dali
old mode 100755 (executable)
new mode 100644 (file)
index 4f07fc6..63069b2
@@ -811,11 +811,6 @@ void Window::RotationDone( int orientation, int width, int height )
   }
 }
 
-void* Window::GetNativeWindowHandler()
-{
-  return mEventHandler->mEcoreWindow;
-}
-
 
 } // Adaptor
 } // Internal