evas_object_resize( mWebView, mWidth, mHeight );
}
- bool SendTouchEvent( const TouchData& touch )
+ bool SendTouchEvent( const TouchEvent& touch )
{
Ewk_Touch_Event_Type type = EWK_TOUCH_START;
Evas_Touch_Point_State state = EVAS_TOUCH_POINT_DOWN;
}
}
-bool TizenWebEngineChromium::SendTouchEvent( const Dali::TouchData& touch )
+bool TizenWebEngineChromium::SendTouchEvent( const Dali::TouchEvent& touch )
{
if( mWebViewContainer )
{
#define DALI_TIZEN_WEB_ENGINE_CHROMIUM_H
/*
- * Copyright (c) 2018 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2020 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.
/**
* @copydoc Dali::WebEnginePlugin::SendTouchEvent()
*/
- bool SendTouchEvent( const Dali::TouchData& touch ) override;
+ bool SendTouchEvent( const Dali::TouchEvent& touch ) override;
/**
* @copydoc Dali::WebEnginePlugin::SendKeyEvent()
#include <dali/integration-api/debug.h>
#include <dali/devel-api/common/stage.h>
#include <dali/public-api/events/key-event.h>
-#include <dali/public-api/events/touch-data.h>
+#include <dali/public-api/events/touch-event.h>
#include <dali/devel-api/adaptor-framework/application-devel.h>
#include <unistd.h>
: LWE::MouseButtonsValue::NoButtonDown, x, y );
}
-bool TizenWebEngineLWE::SendTouchEvent( const TouchData& touch )
+bool TizenWebEngineLWE::SendTouchEvent( const TouchEvent& touch )
{
size_t pointCount = touch.GetPointCount();
if( pointCount == 1 )
#define DALI_TIZEN_WEB_ENGINE_LWE_H
/*
- * Copyright (c) 2018 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2020 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.
/**
* @copydoc Dali::WebEnginePlugin::SendTouchEvent()
*/
- bool SendTouchEvent( const Dali::TouchData& touch ) override;
+ bool SendTouchEvent( const Dali::TouchEvent& touch ) override;
/**
* @copydoc Dali::WebEnginePlugin::SendKeyEvent()