Revert "[Tizen] keygrab & ecore-wl-window-handle c# binding" 40/134840/1
authorHeeyong Song <heeyong.song@samsung.com>
Tue, 20 Jun 2017 06:56:48 +0000 (15:56 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Tue, 20 Jun 2017 06:56:54 +0000 (15:56 +0900)
This reverts commit 3182bebfc3e7ed1716fb2995453059c75b63e0dc.

Change-Id: I486ef515a9ab18c9f7954e82bae446f23e506fd2

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 d7442b3..09a7541
@@ -417,10 +417,6 @@ private:
   IndicatorSignalType mIndicatorVisibilityChangedSignal;
   FocusSignalType     mFocusChangedSignal;
   SignalType          mDeleteRequestSignal;
-
-public:
-
-  void* GetNativeWindowHandler();
 };
 
 } // namespace Adaptor
old mode 100755 (executable)
new mode 100644 (file)
index eb830fd..b6f977c
@@ -145,11 +145,6 @@ int GetBrightness( Window window )
   return GetImplementation( window ).GetBrightness();
 }
 
-void * GetNativeWindowHandler( Window window )
-{
-  return GetImplementation( window ).GetNativeWindowHandler();
-}
-
 } // namespace DevelWindow
 
 } // namespace Dali
old mode 100755 (executable)
new mode 100644 (file)
index c8a4a26..6d07c71
@@ -293,13 +293,6 @@ DALI_IMPORT_API bool SetBrightness( Window window, int brightness );
  */
 DALI_IMPORT_API int GetBrightness( 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 f300e77..d0dbdb7
@@ -1,5 +1,5 @@
 /*
-* Copyright (c) 2017 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2017 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.
@@ -1410,11 +1410,6 @@ int Window::GetBrightness()
   return mEventHandler->mBrightness;
 }
 
-void* Window::GetNativeWindowHandler()
-{
-  return mEventHandler->mEcoreWindow;
-}
-
 } // Adaptor
 
 } // Internal
old mode 100755 (executable)
new mode 100644 (file)
index da26daf..631681f
@@ -309,6 +309,7 @@ bool Window::IsVisible() const
   return mVisible;
 }
 
+
 void Window::RotationDone( int orientation, int width, int height )
 {
 }
@@ -402,11 +403,6 @@ int Window::GetBrightness()
   return 0;
 }
 
-void* Window::GetNativeWindowHandler()
-{
-  return NULL;
-}
-
 } // Adaptor
 } // Internal
 } // Dali
old mode 100755 (executable)
new mode 100644 (file)
index c8ce7a6..710d9fb
@@ -907,11 +907,6 @@ int Window::GetBrightness()
   return 0;
 }
 
-void* Window::GetNativeWindowHandler()
-{
-  return &(mEventHandler->mEcoreWindow);
-}
-
 } // Adaptor
 
 } // Internal