X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fdevel-api%2Fadaptor-framework%2Ftext-clipboard-event-notifier.h;fp=dali%2Fdevel-api%2Fadaptor-framework%2Fclipboard-event-notifier.h;h=f8e42972d0fb04cb421bb8745d2ae4157c23a04b;hb=bf28ece887a0b3d854fb7059f0dca17f1ac4259a;hp=490ee2c6fc5f3978cb52c20f8df388a7f9cb0d88;hpb=c915fa05d7bee89cd6f2244aa495dcfe292ed365;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/dali/devel-api/adaptor-framework/clipboard-event-notifier.h b/dali/devel-api/adaptor-framework/text-clipboard-event-notifier.h similarity index 66% rename from dali/devel-api/adaptor-framework/clipboard-event-notifier.h rename to dali/devel-api/adaptor-framework/text-clipboard-event-notifier.h index 490ee2c..f8e4297 100644 --- a/dali/devel-api/adaptor-framework/clipboard-event-notifier.h +++ b/dali/devel-api/adaptor-framework/text-clipboard-event-notifier.h @@ -1,8 +1,8 @@ -#ifndef DALI_CLIPBOARD_EVENT_NOTIFIER_H -#define DALI_CLIPBOARD_EVENT_NOTIFIER_H +#ifndef DALI_TEXT_CLIPBOARD_EVENT_NOTIFIER_H +#define DALI_TEXT_CLIPBOARD_EVENT_NOTIFIER_H /* - * Copyright (c) 2020 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. @@ -31,43 +31,43 @@ namespace Internal DALI_INTERNAL { namespace Adaptor { -class ClipboardEventNotifier; +class TextClipboardEventNotifier; } } // namespace DALI_INTERNAL /** - * @brief The ClipboardEventNotifier provides signals when clipboard events are received from the device. + * @brief The TextClipboardEventNotifier provides signals when clipboard events are received from the device. */ -class DALI_ADAPTOR_API ClipboardEventNotifier : public BaseHandle +class DALI_ADAPTOR_API TextClipboardEventNotifier : public BaseHandle { public: // Typedefs /** - * @brief Clipboard event + * @brief TextClipboard event */ - typedef Signal ClipboardEventSignalType; + typedef Signal TextClipboardEventSignalType; /** * @brief Create an uninitialized handle. * * This can be initialized by getting the notifier from Dali::Adaptor. */ - ClipboardEventNotifier(); + TextClipboardEventNotifier(); /** - * @brief Retrieve a handle to the ClipboardEventNotifier instance. + * @brief Retrieve a handle to the TextClipboardEventNotifier instance. * - * @return A handle to the ClipboardEventNotifier + * @return A handle to the TextClipboardEventNotifier */ - static ClipboardEventNotifier Get(); + static TextClipboardEventNotifier Get(); /** * @brief Destructor * * This is non-virtual since derived Handle types must not contain data or virtual methods. */ - ~ClipboardEventNotifier(); + ~TextClipboardEventNotifier(); /** * @brief Returns the selected content. @@ -97,21 +97,21 @@ public: // Signals * * A callback of the following type may be connected: * @code - * void YourCallback( ClipboardEventNotifier& notifier ); + * void YourCallback( TextClipboardEventNotifier& notifier ); * @endcode * @return The signal to connect to. */ - ClipboardEventSignalType& ContentSelectedSignal(); + TextClipboardEventSignalType& ContentSelectedSignal(); public: // Not intended for application developers /** - * @brief This constructor is used by ClipboardEventNotifier::Get(). + * @brief This constructor is used by TextClipboardEventNotifier::Get(). * * @param[in] notifier A pointer to the drag and drop notifier. */ - explicit DALI_INTERNAL ClipboardEventNotifier(Internal::Adaptor::ClipboardEventNotifier* notifier); + explicit DALI_INTERNAL TextClipboardEventNotifier(Internal::Adaptor::TextClipboardEventNotifier* notifier); }; } // namespace Dali -#endif // DALI_CLIPBOARD_EVENT_NOTIFIER_H +#endif // DALI_TEXT_CLIPBOARD_EVENT_NOTIFIER_H