[AT-SPI] simplify dbus
[platform/core/uifw/dali-adaptor.git] / plugins / dali-feedback.h
index 330da6a..03b9de2 100644 (file)
@@ -1,46 +1,36 @@
-#ifndef __FEEDBACK_PLUGIN_H__
-#define __FEEDBACK_PLUGIN_H__
-
-//
-// Copyright (c) 2014 Samsung Electronics Co., Ltd.
-//
-// Licensed under the Flora License, Version 1.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://floralicense.org/license/
-//
-// 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.
-//
-
-// EXTERNAL INCLUDES
-#if defined(DALI_PROFILE_MOBILE)
-#include <dd-haptic.h>
-#else
-#include <haptic.h>
-#endif
+#ifndef FEEDBACK_PLUGIN_H
+#define FEEDBACK_PLUGIN_H
+
+/*
+ * Copyright (c) 2021 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.
+ *
+ */
 
 // INTERNAL INCLUDES
-#include <public-api/adaptor-framework/common/feedback-plugin.h>
+#include <dali/devel-api/adaptor-framework/feedback-plugin.h>
 
 namespace Dali
 {
-
 namespace Plugin
 {
-
 /**
  * Plays feedback effects for Dali-Toolkit UI Controls.
  */
 class DaliFeedback : public Dali::FeedbackPlugin
 {
-
 public: // Construction & Destruction
-
   /**
    * Constructor
    */
@@ -52,16 +42,15 @@ public: // Construction & Destruction
   virtual ~DaliFeedback();
 
 public: // FeedbackPlugin overrides
-
   /**
    * @copydoc Dali::Integration::FeedbackPlugin::PlayHaptic()
    */
-  void PlayHaptic( const std::string& filePath );
+  void PlayHaptic(const std::string& filePath);
 
   /**
    * @copydoc Dali::FeedbackPlugin::PlayHapticMonotone()
    */
-  void PlayHapticMonotone( unsigned int duration );
+  void PlayHapticMonotone(unsigned int duration);
 
   /**
    * @copydoc Dali::FeedbackPlugin::StopHaptic()
@@ -71,27 +60,21 @@ public: // FeedbackPlugin overrides
   /**
    * @copydoc Dali::FeedbackPlugin::PlaySound()
    */
-  int PlaySound( const std::string& fileName );
+  int PlaySound(const std::string& fileName);
 
   /**
    * @copydoc Dali::FeedbackPlugin::StopSound()
    */
-  void StopSound( int handle );
+  void StopSound(int handle);
 
   /**
    * @copydoc Dali::FeedbackPlugin::PlayFeedbackPattern()
    */
-  void PlayFeedbackPattern( int type, int pattern );
-
-private:
-
-  haptic_device_h mDeviceHandle;
-
-  bool mHapticInitialized;
+  void PlayFeedbackPattern(int type, int pattern);
 };
 
-}  // namespace Plugin
+} // namespace Plugin
 
-}  // namespace Dali
+} // namespace Dali
 
-#endif // __FEEDBACK_PLUGIN_H__
+#endif // FEEDBACK_PLUGIN_H