Merge "Add BuildPickingRay to devel api" into devel/master
[platform/core/uifw/dali-core.git] / dali / public-api / events / gesture.cpp
index 31c3b25..575ead0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2022 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.
 // CLASS HEADER
 #include <dali/public-api/events/gesture.h>
 
+// INTERNAL INCLUDES
+#include <dali/internal/event/events/gesture-impl.h>
+
 namespace Dali
 {
+Gesture::Gesture() = default;
 
-Gesture::Gesture( const Gesture& rhs )
-: type(rhs.type),
-  state(rhs.state),
-  time(rhs.time)
+Gesture::Gesture(Internal::Gesture* internal)
+: BaseHandle(internal)
 {
 }
 
-Gesture& Gesture::operator=( const Gesture& rhs )
+Gesture::Gesture(const Gesture& rhs) = default;
+
+Gesture::Gesture(Gesture&& rhs)noexcept = default;
+
+Gesture& Gesture::operator=(const Gesture& rhs) = default;
+
+Gesture& Gesture::operator=(Gesture&& rhs)noexcept = default;
+
+Gesture::~Gesture() = default;
+
+GestureType::Value Gesture::GetType() const
 {
-  type = rhs.type;
-  state = rhs.state;
-  time = rhs.time;
+  return GetImplementation(*this).GetType();
+}
 
-  return *this;
+GestureState Gesture::GetState() const
+{
+  return GetImplementation(*this).GetState();
+}
+
+uint32_t Gesture::GetTime() const
+{
+  return GetImplementation(*this).GetTime();
 }
 
-Gesture::~Gesture()
+GestureSourceType Gesture::GetSourceType() const
 {
+  return GetImplementation(*this).GetSourceType();
 }
 
-Gesture::Gesture(Type gestureType, State gestureState)
-: type(gestureType),
-  state(gestureState),
-  time(0)
+GestureSourceData Gesture::GetSourceData() const
 {
+  return GetImplementation(*this).GetSourceData();
 }
 
 } // namespace Dali