3cb121b1326519da3a770ce35a448d0c80abe2aa
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / toolkit-clipboard.h
1 #ifndef  __TOOLKIT_CLIPBOARD_H__
2 #define  __TOOLKIT_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 #define __DALI_CLIPBOARD_H__
22
23 // EXTERNAL INCLUDES
24 #include <dali/public-api/math/rect.h>
25 #include <dali/public-api/object/base-handle.h>
26
27 namespace Dali DALI_IMPORT_API
28 {
29
30 namespace Internal DALI_INTERNAL
31 {
32
33 namespace Adaptor
34 {
35 class Clipboard;
36 }
37 }
38
39 /**
40  * The Clipboard can operate using various funtion.
41  * Clipboard can manage it's item and set show / hide status.
42  */
43 class Clipboard : public BaseHandle
44 {
45 public:
46   /**
47    * Create an uninitialized Clipboard;
48    *  this can be initialized with one of the derived Clipboard' New() methods
49    */
50   Clipboard();
51
52   /**
53    * Virtual destructor.
54    */
55   virtual ~Clipboard();
56
57   /**
58    * This constructor is used by Adaptor::GetClipboard().
59    * @param[in] clipboard A pointer to the clipboard.
60    */
61   Clipboard( Internal::Adaptor::Clipboard* clipboard );
62
63   /**
64    * Retrieve a handle to the ClipboardEventNotifier instance
65    * @return A handle to the Clipboard
66    */
67   static Clipboard Get();
68
69   /**
70    * Send the given string to the clipboard
71    * @param[in] itemData string to send to clip board
72    * @return bool true if the internal clip board sending was successful.
73    */
74   bool SetItem( const std::string& itemData );
75
76   /**
77    * Retreive the string at the given index in the clip board.
78    * @param[in] index item in clipboard list to retrieve
79    * @return string the text item at the current index.
80    */
81   std::string GetItem( unsigned int index );
82
83   /**
84    * Returns the number of item currently in the clipboard
85    * @return unsigned int number of clipboard items
86    */
87   unsigned int NumberOfItems();
88
89   /**
90    * Show the clipboard window
91    */
92   void ShowClipboard();
93
94   /**
95    * Hide the clipboard window
96    */
97   void HideClipboard();
98
99 };
100 } // namespace Dali
101
102 #endif // __TOOLKIT_CLIPBOARD_H__