License conversion from Flora to Apache 2.0
[platform/core/uifw/dali-adaptor.git] / capi / dali / public-api / adaptor-framework / common / clipboard.h
1 #ifndef  __DALI_CLIPBOARD_H__
2 #define  __DALI_CLIPBOARD_H__
3
4 /*
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21
22 /**
23  * @addtogroup CAPI_DALI_ADAPTOR_MODULE
24  * @{
25  */
26
27 // EXTERNAL INCLUDES
28 #include <dali/public-api/math/rect.h>
29 #include <dali/public-api/object/base-handle.h>
30
31
32 namespace Dali DALI_IMPORT_API
33 {
34
35 namespace Internal DALI_INTERNAL
36 {
37
38 namespace Adaptor
39 {
40 class Clipboard;
41 }
42 }
43
44 /**
45  * @brief Interface to the device's clipboard.
46  *
47  * Clipboard can manage it's item and set show / hide status.
48  */
49
50 class Clipboard : public BaseHandle
51 {
52 public:
53   /**
54    * @brief Create an uninitialized Clipboard.
55    *
56    * this can be initialized with one of the derived Clipboard' New() methods
57    */
58   Clipboard();
59
60   /**
61    * @brief Virtual destructor.
62    */
63   virtual ~Clipboard();
64
65   /**
66    * @brief This constructor is used by Adaptor::GetClipboard().
67    *
68    * @param[in] clipboard A pointer to the clipboard.
69    */
70   Clipboard( Internal::Adaptor::Clipboard* clipboard );
71
72   /**
73    * @brief Retrieve a handle to the ClipboardEventNotifier instance.
74    *
75    * @return A handle to the Clipboard
76    */
77   static Clipboard Get();
78
79   /**
80    * @brief Send the given string to the clipboard.
81    *
82    * @param[in] itemData string to send to clip board
83    * @return bool true if the internal clip board sending was successful.
84    */
85   bool SetItem( const std::string& itemData );
86
87   /**
88    * @brief Retreive the string at the given index in the clipboard.
89    *
90    * @param[in] index item in clipboard list to retrieve
91    * @return string the text item at the current index.
92    */
93   std::string GetItem( unsigned int index );
94
95   /**
96    * @brief Returns the number of item currently in the clipboard.
97    *
98    * @return unsigned int number of clipboard items
99    */
100   unsigned int NumberOfItems();
101
102   /**
103    * @brief Show the clipboard window.
104    */
105   void ShowClipboard();
106
107   /**
108    * @brief Hide the clipboard window.
109    */
110   void HideClipboard();
111
112 };
113 } // namespace Dali
114
115 /**
116  * @}
117  */
118 #endif // __DALI_CLIPBOARD_H__