[dali_2.3.42] Merge branch 'devel/master'
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / clipboard.h
old mode 100755 (executable)
new mode 100644 (file)
index db8ab47..707b936
@@ -1,8 +1,8 @@
-#ifndef  __DALI_CLIPBOARD_H__
-#define  __DALI_CLIPBOARD_H__
+#ifndef DALI_CLIPBOARD_H
+#define DALI_CLIPBOARD_H
 
 /*
- * Copyright (c) 2018 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2023 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.
  *
  */
 
-
 // EXTERNAL INCLUDES
-#include <dali/public-api/math/rect.h>
 #include <dali/public-api/object/base-handle.h>
+#include <dali/public-api/signals/dali-signal.h>
 
 // INTERNAL INCLUDES
 #include <dali/public-api/dali-adaptor-common.h>
 
 namespace Dali
 {
-
 namespace Internal DALI_INTERNAL
 {
-
 namespace Adaptor
 {
 class Clipboard;
 }
-}
+} // namespace DALI_INTERNAL
 
 /**
  * @brief Interface to the device's clipboard.
  *
- * Clipboard can manage it's item and set show / hide status.
+ * Clipboard class supports the copy and paste functionality for multi-window.
  */
 
 class DALI_ADAPTOR_API Clipboard : public BaseHandle
 {
 public:
   /**
+   * @brief Structure that contains information about the clipboard data information.
+   */
+  struct ClipData
+  {
+    ClipData(const char* mimeType = nullptr, const char* data = nullptr)
+    {
+      this->mimeType = mimeType;
+      this->data     = data;
+    }
+    void SetMimeType(const char* mimeType)
+    {
+      this->mimeType = mimeType;
+    }
+    const char* GetMimeType() const
+    {
+      return mimeType;
+    }
+    void SetData(const char* data)
+    {
+      this->data = data;
+    }
+    const char* GetData() const
+    {
+      return data;
+    }
+
+  private:
+    const char* mimeType {nullptr}; ///< The mime type of clipboard data.
+    const char* data {nullptr};     ///< The clipboard data.
+  };
+
+  /// @brief Data send completed signal.
+  typedef Signal<void(const char*, const char*)> DataSentSignalType;
+
+  /// @brief Data receive completed signal.
+  typedef Signal<void(uint32_t, const char*, const char*)> DataReceivedSignalType;
+
+  /// @brief To catch data selection event.
+  typedef Signal<void(const char*)> DataSelectedSignalType;
+
+  /**
    * @brief Create an uninitialized Clipboard.
-   *
-   * this can be initialized with one of the derived Clipboard' New() methods
+   * this can be initialized with one of the derived Clipboard's New() methods
    */
   Clipboard();
 
   /**
    * @brief Destructor
-   *
    * This is non-virtual since derived Handle types must not contain data or virtual methods.
    */
   ~Clipboard();
 
   /**
    * @brief This constructor is used by Adaptor::GetClipboard().
-   *
    * @param[in] clipboard A pointer to the clipboard.
    */
-  explicit DALI_INTERNAL Clipboard( Internal::Adaptor::Clipboard* clipboard );
+  explicit DALI_INTERNAL Clipboard(Internal::Adaptor::Clipboard* clipboard);
 
   /**
-   * @brief Retrieve a handle to the ClipboardEventNotifier instance.
-   *
+   * @brief Retrieve a handle to the Clipboard instance.
    * @return A handle to the Clipboard
    */
   static Clipboard Get();
 
   /**
-   * @brief Send the given string to the clipboard.
-   *
-   * @param[in] itemData string to send to clip board
-   * @return bool true if the internal clip board sending was successful.
+   * @brief Checks whether the clipboard is available.
+   * @return true if it is available, false otherwise.
+   */
+  static bool IsAvailable();
+
+  /**
+   * @brief This signal is emitted when the data send complete.
+   * @note
+   * SetData() opertion does not follow a synchronous call.
+   * It follows the sequence below.
+   * SetData() -> EcoreEventDataSend() -> SendData() -> DataSentSignal() Emit
    */
-  bool SetItem( const std::string& itemData );
+  DataSentSignalType& DataSentSignal();
 
   /**
-   * @brief Request clipboard service to retrieve an item
-   *
-   * Calling this method will trigger a signal from the clipboard event notifier.
-   * @see Dali::ClipboardEventNotifier::ContentSelectedSignal()
+   * @brief This signal is emitted when the data receive complete.
+   * @note
+   * GetData() opertion does not follow a synchronous call.
+   * It follows the sequence below.
+   * GetData() -> EcoreEventOfferDataReady() -> ReceiveData() -> DataReceivedSignal() Emit
    */
-  void RequestItem();
+  DataReceivedSignalType& DataReceivedSignal();
+
+  /**
+   * @brief This signal is emitted when the data seleted.
+   */
+  DataSelectedSignalType& DataSelectedSignal();
+
+  /**
+   * @brief Check if there is data in the clipboard with a given mime type.
+   * @param[in] mimeType mime type to search for.
+   * @return bool true if there is data, otherwise false.
+   */
+  bool HasType(const std::string& mimeType);
+
+  /**
+   * @brief Send the given data to the clipboard.
+   * @param[in] clipData data to send to the clipboard
+   * @return bool true if the internal clipboard sending was successful.
+   */
+  bool SetData(const ClipData& clipData);
+
+  /**
+   * @brief Request data from the clipboard.
+   * @param[in] mimeType mime type of data to request.
+   * @return uint32_t Returns the data request id.
+   */
+  uint32_t GetData(const std::string& mimeType);
 
   /**
    * @brief Returns the number of item currently in the clipboard.
-   *
-   * @return unsigned int number of clipboard items
+   * @return size_t number of clipboard items.
    */
-  unsigned int NumberOfItems();
+  size_t NumberOfItems();
 
   /**
    * @brief Show the clipboard window.
@@ -109,12 +176,11 @@ public:
   void HideClipboard();
 
   /**
-  * @brief Retrieves the clipboard's visibility
+  * @brief Retrieves the clipboard's visibility.
   * @return bool true if the clipboard is visible.
   */
   bool IsVisible() const;
-
 };
 } // namespace Dali
 
-#endif // __DALI_CLIPBOARD_H__
+#endif // DALI_CLIPBOARD_H