Revert "[Tizen] keygrab & ecore-wl-window-handle c# binding" 53/128153/1
authorHeeyong Song <heeyong.song@samsung.com>
Mon, 8 May 2017 03:28:58 +0000 (12:28 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Mon, 8 May 2017 03:29:03 +0000 (12:29 +0900)
This reverts commit 15137bb2a4d50455579aadd3b9fb1874577c0a1a.

Change-Id: Ib64b4c435f4435c7d4366ec001b0e8534efe1ffd

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