[Tizen] Add codes for Dali Windows Backend
[platform/core/uifw/dali-adaptor.git] / dali / internal / system / windows / trigger-event.cpp
index 77e82ff..88643a3 100755 (executable)
 #include <dali/internal/system/common/trigger-event.h>
 
 // EXTERNAL INCLUDES
-#include <Win32WindowSystem.h>
 #include <unistd.h>
 
 #include <dali/integration-api/debug.h>
 
 // INTERNAL INCLUDES
-
 #include <dali/internal/system/common/file-descriptor-monitor.h>
+#include <dali/internal/window-system/windows/platform-implement-win.h>
 
 #define MESSAGE_TYPE_OFFSET     10000
 
@@ -61,7 +60,7 @@ TriggerEvent::TriggerEvent( CallbackBase* callback, TriggerEventInterface::Optio
 {
   // Create accompanying file descriptor.
   mFileDescriptor = SetTriggerEvent( this );
-  Win32WindowSystem::AddListener( mFileDescriptor + MESSAGE_TYPE_OFFSET, mCallback );
+  WindowsPlatformImplement::AddListener( mFileDescriptor + MESSAGE_TYPE_OFFSET, mCallback );
 
   if (mFileDescriptor >= 0)
   {
@@ -91,7 +90,7 @@ void TriggerEvent::Trigger()
     // Writing to the file descriptor triggers the Dispatch() method in the other thread
     // (if in multi-threaded environment).
 
-    Win32WindowSystem::PostWinMessage( mFileDescriptor + MESSAGE_TYPE_OFFSET, 0, 0 ); 
+    WindowsPlatformImplement::PostWinMessage( mFileDescriptor + MESSAGE_TYPE_OFFSET, 0, 0 );
   }
   else
   {