Removed On(...)Event()
[platform/core/uifw/dali-core.git] / dali / public-api / actors / custom-actor-impl.cpp
index f084c96..1486ba8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2016 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.
 namespace Dali
 {
 
-CustomActorImpl::~CustomActorImpl()
-{
-}
-
 CustomActor CustomActorImpl::Self() const
 {
   return CustomActor(mOwner);
@@ -44,6 +40,10 @@ CustomActorImpl::CustomActorImpl( ActorFlags flags )
 {
 }
 
+CustomActorImpl::~CustomActorImpl()
+{
+}
+
 void CustomActorImpl::Initialize(Internal::CustomActor& owner)
 {
   DALI_ASSERT_DEBUG(mOwner == NULL); // should not already be owned
@@ -56,21 +56,6 @@ Internal::CustomActor* CustomActorImpl::GetOwner() const
   return mOwner;
 }
 
-bool CustomActorImpl::RequiresTouchEvents() const
-{
-  return ( mFlags & REQUIRES_TOUCH_EVENTS );
-}
-
-bool CustomActorImpl::RequiresHoverEvents() const
-{
-  return ( mFlags & REQUIRES_HOVER_EVENTS );
-}
-
-bool CustomActorImpl::RequiresMouseWheelEvents() const
-{
-  return ( mFlags & REQUIRES_MOUSE_WHEEL_EVENTS );
-}
-
 bool CustomActorImpl::IsRelayoutEnabled() const
 {
   return ( mFlags & DISABLE_SIZE_NEGOTIATION ) == 0;