MS Windows - window surface fix. 13/227513/7
authorVictor Cebollada <v.cebollada@samsung.com>
Thu, 12 Mar 2020 07:34:23 +0000 (07:34 +0000)
committerVictor Cebollada <v.cebollada@samsung.com>
Thu, 2 Apr 2020 15:43:53 +0000 (16:43 +0100)
* Does a 'wiring' connection between the Windows callbacks
  and the given render surface.

Change-Id: I2a1354e2dfbbbd3c8fff6e9d251b51b5326e26f9
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
dali/internal/window-system/windows/platform-implement-win.cpp
dali/internal/window-system/windows/platform-implement-win.h
dali/internal/window-system/windows/window-base-win.cpp
dali/internal/window-system/windows/window-base-win.h

index 1816ae1..84bb736 100755 (executable)
@@ -1,34 +1,34 @@
-/*\r
-* Copyright (c) 2018 Samsung Electronics Co., Ltd.\r
-*\r
-* Licensed under the Apache License, Version 2.0 (the "License");\r
-* you may not use this file except in compliance with the License.\r
-* You may obtain a copy of the License at\r
-*\r
-* http://www.apache.org/licenses/LICENSE-2.0\r
-*\r
-* Unless required by applicable law or agreed to in writing, software\r
-* distributed under the License is distributed on an "AS IS" BASIS,\r
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
-* See the License for the specific language governing permissions and\r
-* limitations under the License.\r
-*\r
-*/\r
-\r
-// CLASS HEADER\r
-#include <dali/internal/window-system/windows/platform-implement-win.h>\r
-\r
-// EXTERNAL INCLUDES\r
-#include <map>\r
-#include <windows.h>\r
-\r
-// INTERNAL INCLUDES\r
-#include <dali/internal/window-system/windows/event-system-win.h>\r
-\r
-static constexpr float INCH = 25.4;\r
-\r
-using namespace std;\r
-\r
+/*
+* Copyright (c) 2018 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.
+*
+*/
+
+// CLASS HEADER
+#include <dali/internal/window-system/windows/platform-implement-win.h>
+
+// EXTERNAL INCLUDES
+#include <map>
+#include <windows.h>
+
+// INTERNAL INCLUDES
+#include <dali/internal/window-system/windows/event-system-win.h>
+
+static constexpr float INCH = 25.4;
+
+using namespace std;
+
 namespace Dali
 {
 
@@ -37,356 +37,375 @@ namespace Internal
 
 namespace Adaptor
 {
-\r
-namespace WindowsPlatformImplementation\r
-{\r
-\r
-void RunLoop()\r
-{\r
-  MSG nMsg = { 0 };\r
-\r
-  while( GetMessage( &nMsg, 0, NULL, NULL ) )\r
-  {\r
-    if( WIN_CALLBACK_EVENT == nMsg.message )\r
-    {\r
-      Dali::CallbackBase *callback = ( Dali::CallbackBase* )nMsg.wParam;\r
-      Dali::CallbackBase::Execute( *callback );\r
-    }\r
-\r
-    TranslateMessage( &nMsg );\r
-    DispatchMessage( &nMsg );\r
-\r
-    if( WM_CLOSE == nMsg.message )\r
-    {\r
-      break;\r
-    }\r
-  }\r
-}\r
-\r
-LRESULT CALLBACK WinProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )\r
-{\r
-  WindowImpl::ProcWinMessge( reinterpret_cast<uint64_t>( hWnd ), uMsg, wParam, lParam );\r
-\r
-  LRESULT ret = DefWindowProc( hWnd, uMsg, wParam, lParam );\r
-  return ret;\r
-}\r
-\r
-std::map<uint64_t, WindowImpl*> mHWndToListener;\r
-\r
-WindowImpl::WindowImpl()\r
-{\r
-  colorDepth = -1;\r
-  mHWnd = 0;\r
-  mHdc = 0;\r
-  listener = NULL;\r
-  windowStyle = WS_OVERLAPPED;\r
-}\r
-\r
-WindowImpl::~WindowImpl()\r
-{\r
-  mHWndToListener.erase( mHWnd );\r
-}\r
-\r
-void WindowImpl::ProcWinMessge( uint64_t hWnd, uint32_t uMsg, uint64_t wParam, uint64_t lParam )\r
-{\r
-  std::map<uint64_t, WindowImpl*>::iterator x = mHWndToListener.find( hWnd );\r
-\r
-  if( mHWndToListener.end() != x )\r
-  {\r
-    CallbackBase* listener = x->second->listener;\r
-\r
-    if( NULL != listener )\r
-    {\r
-      TWinEventInfo eventInfo( hWnd, uMsg, wParam, lParam );\r
-      CallbackBase::Execute( *listener, &eventInfo );\r
-    }\r
-  }\r
-}\r
-\r
-void WindowImpl::GetDPI( float &xDpi, float &yDpi )\r
-{\r
-  HDC hdcScreen = GetDC( reinterpret_cast<HWND>( mHWnd ) );\r
-\r
-  int32_t iX = GetDeviceCaps( hdcScreen, HORZRES );    // pixel\r
-  int32_t iY = GetDeviceCaps( hdcScreen, VERTRES );    // pixel\r
-  int32_t iPhsX = GetDeviceCaps( hdcScreen, HORZSIZE );    // mm\r
-  int32_t iPhsY = GetDeviceCaps( hdcScreen, VERTSIZE );    // mm\r
-\r
-  xDpi = static_cast<float>( iX ) / static_cast<float>( iPhsX ) * INCH;\r
-  yDpi = static_cast<float>( iY ) / static_cast<float>( iPhsY ) * INCH;\r
-}\r
-\r
-int WindowImpl::GetColorDepth()\r
-{\r
-  DALI_ASSERT_DEBUG( colorDepth >= 0 && "HWND hasn't been created, no color depth" );\r
-  return colorDepth;\r
-}\r
-\r
-uint64_t WindowImpl::CreateHwnd(\r
-  _In_opt_ const char *lpClassName,\r
-  _In_opt_ const char *lpWindowName,\r
-  _In_ int X,\r
-  _In_ int Y,\r
-  _In_ int nWidth,\r
-  _In_ int nHeight,\r
-  _In_opt_ uint64_t parent )\r
-{\r
-  WNDCLASS cs = { 0 };\r
-  cs.cbClsExtra = 0;\r
-  cs.cbWndExtra = 0;\r
-  cs.hbrBackground = (HBRUSH)( COLOR_WINDOW + 2 );\r
-  cs.hCursor = NULL;\r
-  cs.hIcon = NULL;\r
-  cs.hInstance = GetModuleHandle( NULL );\r
-  cs.lpfnWndProc = (WNDPROC)WinProc;\r
-  cs.lpszClassName = lpClassName;\r
-  cs.lpszMenuName = NULL;\r
-  cs.style = CS_VREDRAW | CS_HREDRAW;\r
-  RegisterClass( &cs );\r
-\r
-  HWND hWnd = CreateWindow( lpClassName, lpWindowName, windowStyle, X, Y, nWidth + 2 * GetEdgeWidth(), nHeight + 2 * GetEdgeHeight(), NULL, NULL, cs.hInstance, NULL );\r
-  ::ShowWindow( hWnd, SW_SHOW );\r
-\r
-  SetHWND( reinterpret_cast<uint64_t>(hWnd) );\r
-\r
-  return mHWnd;\r
-}\r
-\r
-void WindowImpl::SetListener( CallbackBase *callback )\r
-{\r
-  listener = callback;\r
-}\r
-\r
-bool WindowImpl::PostWinMessage(\r
-  _In_ uint32_t Msg,\r
-  _In_ uint32_t wParam,\r
-  _In_ uint64_t lParam )\r
-{\r
-  return (bool)PostMessage( reinterpret_cast<HWND>( mHWnd ), Msg, wParam, lParam );\r
-}\r
-\r
-int32_t WindowImpl::GetEdgeWidth()\r
-{\r
-  switch( windowStyle )\r
-  {\r
-  case WS_OVERLAPPED:\r
-  {\r
-    return 8;\r
-  }\r
-  default:\r
-  {\r
-    return 0;\r
-  }\r
-  }\r
-}\r
-\r
-int32_t WindowImpl::GetEdgeHeight()\r
-{\r
-  switch( windowStyle )\r
-  {\r
-  case WS_OVERLAPPED:\r
-  {\r
-    return 18;\r
-  }\r
-  default:\r
-  {\r
-    return 0;\r
-  }\r
-  }\r
-}\r
-\r
-void WindowImpl::SetHWND( uint64_t inHWnd )\r
-{\r
-  if( mHWnd != inHWnd )\r
-  {\r
-    mHWnd = inHWnd;\r
-    mHdc = reinterpret_cast<uint64_t>( GetDC( reinterpret_cast<HWND>( mHWnd ) ) );\r
-    colorDepth = GetDeviceCaps( reinterpret_cast<HDC>( mHdc ), BITSPIXEL ) * GetDeviceCaps( reinterpret_cast<HDC>( mHdc ), PLANES );\r
-\r
-    std::map<uint64_t, WindowImpl*>::iterator x = mHWndToListener.find( mHWnd );\r
-\r
-    if( mHWndToListener.end() == x )\r
-    {\r
-      mHWndToListener.insert( std::make_pair( mHWnd, this ) );\r
-    }\r
-    else\r
-    {\r
-      x->second = this;\r
-    }\r
-  }\r
-}\r
-\r
-bool PostWinThreadMessage(\r
-  _In_ uint32_t Msg,\r
-  _In_ uint32_t wParam,\r
-  _In_ uint64_t lParam,\r
-  _In_ uint64_t threadID/* = -1*/ )\r
-{\r
-  if( -1 == threadID )\r
-  {\r
-    threadID = GetCurrentThreadId();\r
-  }\r
-\r
-  return (bool)PostThreadMessage( threadID, Msg, wParam, lParam );\r
-}\r
-\r
-struct TTimerCallbackInfo\r
-{\r
-  void *data;\r
-  timerCallback callback;\r
-  HWND hWnd;\r
-};\r
-\r
-void CALLBACK TimerProc(HWND hWnd, UINT nMsg, UINT_PTR nTimerid, DWORD dwTime)\r
-{\r
-  TTimerCallbackInfo *info = (TTimerCallbackInfo*)nTimerid;\r
-  info->callback( info->data );\r
-}\r
-\r
-int SetTimer(int interval, timerCallback callback, void *data)\r
-{\r
-  TTimerCallbackInfo *callbackInfo = new TTimerCallbackInfo;\r
-  callbackInfo->data = data;\r
-  callbackInfo->callback = callback;\r
-  callbackInfo->hWnd = ::GetActiveWindow();\r
-\r
-  UINT_PTR timerID = (UINT_PTR)callbackInfo;\r
-  ::SetTimer( callbackInfo->hWnd, timerID, interval, TimerProc );\r
-\r
-  return timerID;\r
-}\r
-\r
-void KillTimer(int id)\r
-{\r
-  TTimerCallbackInfo *info = (TTimerCallbackInfo*)id;\r
-  ::KillTimer( info->hWnd, id );\r
-  delete info;\r
-}\r
-\r
-const char* GetKeyName( int keyCode )\r
-{\r
-  switch( keyCode )\r
-  {\r
-    case VK_BACK:\r
-    {\r
-      return "Backspace";\r
-    }\r
-    case VK_TAB:\r
-    {\r
-      return "Tab";\r
-    }\r
-    case VK_RETURN:\r
-    {\r
-      return "Return";\r
-    }\r
-    case VK_ESCAPE:\r
-    {\r
-      return "Escape";\r
-    }\r
-    case VK_SPACE:\r
-    {\r
-      return "Space";\r
-    }\r
-    case VK_LEFT:\r
-    {\r
-      return "Left";\r
-    }\r
-    case VK_UP:\r
-    {\r
-      return "Up";\r
-    }\r
-    case VK_RIGHT:\r
-    {\r
-      return "Right";\r
-    }\r
-    case VK_DOWN:\r
-    {\r
-      return "Down";\r
-    }\r
-    case 48:\r
-    {\r
-      return "0";\r
-    }\r
-    case 49:\r
-    {\r
-      return "1";\r
-    }\r
-    case 50:\r
-    {\r
-      return "2";\r
-    }\r
-    case 51:\r
-    {\r
-      return "3";\r
-    }\r
-    case 52:\r
-    {\r
-      return "4";\r
-    }\r
-    case 53:\r
-    {\r
-      return "5";\r
-    }\r
-    case 54:\r
-    {\r
-      return "6";\r
-    }\r
-    case 55:\r
-    {\r
-      return "7";\r
-    }\r
-    case 56:\r
-    {\r
-      return "8";\r
-    }\r
-    case 57:\r
-    {\r
-      return "9";\r
-    }\r
-    default:\r
-    {\r
-      break;\r
-    }\r
-  }\r
-\r
-  return "";\r
-}\r
-
-static LARGE_INTEGER cpuFrequency;\r
-static LARGE_INTEGER *pCpuFrequency = NULL;\r
-\r
-uint64_t GetCurrentThreadId()\r
-{\r
-  return ::GetCurrentThreadId();\r
-}\r
-\r
-void GetNanoseconds( uint64_t& timeInNanoseconds )\r
-{\r
-  if( NULL == pCpuFrequency )\r
-  {\r
-    pCpuFrequency = &cpuFrequency;\r
-    QueryPerformanceFrequency( pCpuFrequency );\r
-  }\r
-\r
-  LARGE_INTEGER curTime;\r
-  QueryPerformanceCounter( &curTime );\r
-\r
-  timeInNanoseconds = static_cast<double>(curTime.QuadPart) / static_cast<double>(pCpuFrequency->QuadPart) * 1000000000;\r
-}\r
-\r
-unsigned int GetCurrentMilliSeconds( void )\r
-{\r
-  if( NULL == pCpuFrequency )\r
-  {\r
-    pCpuFrequency = &cpuFrequency;\r
-    QueryPerformanceFrequency( pCpuFrequency );\r
-  }\r
-\r
-  LARGE_INTEGER curTime;\r
-  QueryPerformanceCounter( &curTime );\r
-\r
-  return curTime.QuadPart * 1000 / pCpuFrequency->QuadPart;\r
-}\r
+
+namespace WindowsPlatformImplementation
+{
+
+void RunLoop()
+{
+  MSG nMsg = { 0 };
+
+  while( GetMessage( &nMsg, 0, NULL, NULL ) )
+  {
+    if( WIN_CALLBACK_EVENT == nMsg.message )
+    {
+      Dali::CallbackBase *callback = ( Dali::CallbackBase* )nMsg.wParam;
+      Dali::CallbackBase::Execute( *callback );
+    }
+
+    TranslateMessage( &nMsg );
+    DispatchMessage( &nMsg );
+
+    if( WM_CLOSE == nMsg.message )
+    {
+      break;
+    }
+  }
+}
+
+LRESULT CALLBACK WinProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
+{
+  WindowImpl::ProcWinMessge( reinterpret_cast<uint64_t>( hWnd ), uMsg, wParam, lParam );
+
+  LRESULT ret = DefWindowProc( hWnd, uMsg, wParam, lParam );
+  return ret;
+}
+
+std::map<uint64_t, WindowImpl*> mHWndToListener;
+
+WindowImpl::WindowImpl()
+{
+  colorDepth = -1;
+  mHWnd = 0;
+  mHdc = 0;
+  listener = NULL;
+  windowStyle = WS_OVERLAPPED;
+}
+
+WindowImpl::~WindowImpl()
+{
+  mHWndToListener.erase( mHWnd );
+}
+
+void WindowImpl::ProcWinMessge( uint64_t hWnd, uint32_t uMsg, uint64_t wParam, uint64_t lParam )
+{
+  std::map<uint64_t, WindowImpl*>::iterator x = mHWndToListener.find( hWnd );
+
+  if( mHWndToListener.end() != x )
+  {
+    CallbackBase* listener = x->second->listener;
+
+    if( NULL != listener )
+    {
+      TWinEventInfo eventInfo( hWnd, uMsg, wParam, lParam );
+      CallbackBase::Execute( *listener, &eventInfo );
+    }
+  }
+}
+
+void WindowImpl::GetDPI( float &xDpi, float &yDpi )
+{
+  HDC hdcScreen = GetDC( reinterpret_cast<HWND>( mHWnd ) );
+
+  int32_t iX = GetDeviceCaps( hdcScreen, HORZRES );    // pixel
+  int32_t iY = GetDeviceCaps( hdcScreen, VERTRES );    // pixel
+  int32_t iPhsX = GetDeviceCaps( hdcScreen, HORZSIZE );    // mm
+  int32_t iPhsY = GetDeviceCaps( hdcScreen, VERTSIZE );    // mm
+
+  xDpi = static_cast<float>( iX ) / static_cast<float>( iPhsX ) * INCH;
+  yDpi = static_cast<float>( iY ) / static_cast<float>( iPhsY ) * INCH;
+}
+
+int WindowImpl::GetColorDepth()
+{
+  DALI_ASSERT_DEBUG( colorDepth >= 0 && "HWND hasn't been created, no color depth" );
+  return colorDepth;
+}
+
+uint64_t WindowImpl::CreateHwnd(
+  _In_opt_ const char *lpClassName,
+  _In_opt_ const char *lpWindowName,
+  _In_ int X,
+  _In_ int Y,
+  _In_ int nWidth,
+  _In_ int nHeight,
+  _In_opt_ uint64_t parent )
+{
+  WNDCLASS cs = { 0 };
+  cs.cbClsExtra = 0;
+  cs.cbWndExtra = 0;
+  cs.hbrBackground = (HBRUSH)( COLOR_WINDOW + 2 );
+  cs.hCursor = NULL;
+  cs.hIcon = NULL;
+  cs.hInstance = GetModuleHandle( NULL );
+  cs.lpfnWndProc = (WNDPROC)WinProc;
+  cs.lpszClassName = lpClassName;
+  cs.lpszMenuName = NULL;
+  cs.style = CS_VREDRAW | CS_HREDRAW;
+  RegisterClass( &cs );
+
+  HWND hWnd = CreateWindow( lpClassName, lpWindowName, windowStyle, X, Y, nWidth + 2 * GetEdgeWidth(), nHeight + 2 * GetEdgeHeight(), NULL, NULL, cs.hInstance, NULL );
+  ::ShowWindow( hWnd, SW_SHOW );
+
+  SetHWND( reinterpret_cast<uint64_t>(hWnd) );
+
+  return mHWnd;
+}
+
+void WindowImpl::SetListener( CallbackBase *callback )
+{
+  listener = callback;
+}
+
+bool WindowImpl::PostWinMessage(
+  _In_ uint32_t Msg,
+  _In_ uint32_t wParam,
+  _In_ uint64_t lParam )
+{
+  return (bool)PostMessage( reinterpret_cast<HWND>( mHWnd ), Msg, wParam, lParam );
+}
+
+int32_t WindowImpl::GetEdgeWidth()
+{
+  switch( windowStyle )
+  {
+  case WS_OVERLAPPED:
+  {
+    return 8;
+  }
+  default:
+  {
+    return 0;
+  }
+  }
+}
+
+int32_t WindowImpl::GetEdgeHeight()
+{
+  switch( windowStyle )
+  {
+  case WS_OVERLAPPED:
+  {
+    return 18;
+  }
+  default:
+  {
+    return 0;
+  }
+  }
+}
+
+void WindowImpl::SetHWND( uint64_t inHWnd )
+{
+  if (mHWnd != inHWnd)
+  {
+    mHWnd = inHWnd;
+    mHdc = reinterpret_cast<uint64_t>(GetDC(reinterpret_cast<HWND>(mHWnd)));
+    colorDepth = GetDeviceCaps(reinterpret_cast<HDC>(mHdc), BITSPIXEL) * GetDeviceCaps(reinterpret_cast<HDC>(mHdc), PLANES);
+
+    std::map<uint64_t, WindowImpl*>::iterator x = mHWndToListener.find(mHWnd);
+
+    if (mHWndToListener.end() == x)
+    {
+      mHWndToListener.insert(std::make_pair(mHWnd, this));
+    }
+    else
+    {
+      x->second = this;
+    }
+  }
+}
+
+void WindowImpl::SetWinProc()
+{
+  // Sets the WinProc function.
+  LONG_PTR ret = SetWindowLongPtr((HWND)mHWnd,
+                                  GWLP_WNDPROC,
+                                  reinterpret_cast<LONG_PTR>(&WinProc));
+
+  if (0 == ret)
+  {
+    DWORD error = GetLastError();
+    return;
+  }
+
+  HMODULE module = GetModuleHandle(nullptr);
+  ret = SetWindowLongPtr((HWND)mHWnd,
+                         GWLP_HINSTANCE,
+                         reinterpret_cast<LONG_PTR>(&module));
+}
+
+bool PostWinThreadMessage(
+  _In_ uint32_t Msg,
+  _In_ uint32_t wParam,
+  _In_ uint64_t lParam,
+  _In_ uint64_t threadID/* = -1*/ )
+{
+  if( -1 == threadID )
+  {
+    threadID = GetCurrentThreadId();
+  }
+
+  return (bool)PostThreadMessage( threadID, Msg, wParam, lParam );
+}
+
+struct TTimerCallbackInfo
+{
+  void *data;
+  timerCallback callback;
+  HWND hWnd;
+};
+
+void CALLBACK TimerProc(HWND hWnd, UINT nMsg, UINT_PTR nTimerid, DWORD dwTime)
+{
+  TTimerCallbackInfo *info = (TTimerCallbackInfo*)nTimerid;
+  info->callback( info->data );
+}
+
+int SetTimer(int interval, timerCallback callback, void *data)
+{
+  TTimerCallbackInfo *callbackInfo = new TTimerCallbackInfo;
+  callbackInfo->data = data;
+  callbackInfo->callback = callback;
+  callbackInfo->hWnd = ::GetActiveWindow();
+
+  UINT_PTR timerID = (UINT_PTR)callbackInfo;
+  ::SetTimer( callbackInfo->hWnd, timerID, interval, TimerProc );
+
+  return timerID;
+}
+
+void KillTimer(int id)
+{
+  TTimerCallbackInfo *info = (TTimerCallbackInfo*)id;
+  ::KillTimer( info->hWnd, id );
+  delete info;
+}
+
+const char* GetKeyName( int keyCode )
+{
+  switch( keyCode )
+  {
+    case VK_BACK:
+    {
+      return "Backspace";
+    }
+    case VK_TAB:
+    {
+      return "Tab";
+    }
+    case VK_RETURN:
+    {
+      return "Return";
+    }
+    case VK_ESCAPE:
+    {
+      return "Escape";
+    }
+    case VK_SPACE:
+    {
+      return "Space";
+    }
+    case VK_LEFT:
+    {
+      return "Left";
+    }
+    case VK_UP:
+    {
+      return "Up";
+    }
+    case VK_RIGHT:
+    {
+      return "Right";
+    }
+    case VK_DOWN:
+    {
+      return "Down";
+    }
+    case 48:
+    {
+      return "0";
+    }
+    case 49:
+    {
+      return "1";
+    }
+    case 50:
+    {
+      return "2";
+    }
+    case 51:
+    {
+      return "3";
+    }
+    case 52:
+    {
+      return "4";
+    }
+    case 53:
+    {
+      return "5";
+    }
+    case 54:
+    {
+      return "6";
+    }
+    case 55:
+    {
+      return "7";
+    }
+    case 56:
+    {
+      return "8";
+    }
+    case 57:
+    {
+      return "9";
+    }
+    default:
+    {
+      break;
+    }
+  }
+
+  return "";
+}
+
+static LARGE_INTEGER cpuFrequency;
+static LARGE_INTEGER *pCpuFrequency = NULL;
+
+uint64_t GetCurrentThreadId()
+{
+  return ::GetCurrentThreadId();
+}
+
+void GetNanoseconds( uint64_t& timeInNanoseconds )
+{
+  if( NULL == pCpuFrequency )
+  {
+    pCpuFrequency = &cpuFrequency;
+    QueryPerformanceFrequency( pCpuFrequency );
+  }
+
+  LARGE_INTEGER curTime;
+  QueryPerformanceCounter( &curTime );
+
+  timeInNanoseconds = static_cast<double>(curTime.QuadPart) / static_cast<double>(pCpuFrequency->QuadPart) * 1000000000;
+}
+
+unsigned int GetCurrentMilliSeconds( void )
+{
+  if( NULL == pCpuFrequency )
+  {
+    pCpuFrequency = &cpuFrequency;
+    QueryPerformanceFrequency( pCpuFrequency );
+  }
+
+  LARGE_INTEGER curTime;
+  QueryPerformanceCounter( &curTime );
+
+  return curTime.QuadPart * 1000 / pCpuFrequency->QuadPart;
+}
 
 } // namespace WindowsPlatformImplement
 
@@ -394,4 +413,4 @@ unsigned int GetCurrentMilliSeconds( void )
 
 } // namespace internal
 
-} // namespace Dali\r
+} // namespace Dali
index 4ba8799..1425e29 100755 (executable)
@@ -92,12 +92,13 @@ public:
 \r
   int32_t GetEdgeHeight();\r
 \r
+  void SetHWND(uint64_t inHWnd);\r
+  void SetWinProc();\r
+\r
 protected:\r
 \r
 private:\r
 \r
-  void SetHWND( uint64_t inHWnd );\r
-\r
   unsigned long windowStyle;\r
 \r
   int colorDepth;\r
index 2ad916c..c968bea 100755 (executable)
@@ -78,8 +78,7 @@ void WindowBaseWin::Initialize( PositionSize positionSize, Any surface, bool isT
   }
   else
   {
-    // XLib should already be initialized so no point in calling XInitThreads
-    mWin32Window = static_cast< WinWindowHandle >( surfaceId );
+    SetWinWindow( surfaceId );
   }
 
   mWindowImpl.SetListener( MakeCallback( this, &WindowBaseWin::EventEntry ) );
@@ -482,10 +481,22 @@ void WindowBaseWin::CreateWinWindow( PositionSize positionSize, bool isTranspare
 {
   long hWnd = mWindowImpl.CreateHwnd( "Demo", "Demo", positionSize.x, positionSize.y, positionSize.width, positionSize.height, NULL );
 
-  mWin32Window = (WinWindowHandle)hWnd;
+  mWin32Window = static_cast<WinWindowHandle>(hWnd);
+
   DALI_ASSERT_ALWAYS( mWin32Window != 0 && "There is no Windows window" );
 }
 
+void WindowBaseWin::SetWinWindow( unsigned int surfaceId )
+{
+  HWND hWnd = (HWND)surfaceId;
+
+  mWin32Window = static_cast<WinWindowHandle>(surfaceId);
+
+  mWindowImpl.SetHWND( reinterpret_cast<uint64_t>(hWnd));
+
+  mWindowImpl.SetWinProc();
+}
+
 void WindowBaseWin::EventEntry( TWinEventInfo *event )
 {
   unsigned int uMsg = event->uMsg;
index 460d28f..c0a17dc 100755 (executable)
@@ -360,6 +360,11 @@ private:
    */
   void CreateWinWindow( PositionSize positionSize, bool isTransparent );
 
+  /**
+   * @brief Sets up an already created window.
+   */
+  void SetWinWindow( unsigned int surfaceId );
+
 private:
 
   // Undefined