Merge "UTC added for Text, Multi-language." into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / controls / text-controls / text-selection-popup.h
1 #ifndef __DALI_TOOLKIT_TEXT_SELECTION_POPUP_H__
2 #define __DALI_TOOLKIT_TEXT_SELECTION_POPUP_H__
3
4 /*
5  * Copyright (c) 2015 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 // INTERNAL INCLUDES
22 #include <dali-toolkit/public-api/controls/control.h>
23
24 namespace Dali
25 {
26
27 namespace Toolkit
28 {
29
30 class TextSelectionPopupCallbackInterface;
31
32 namespace Internal DALI_INTERNAL
33 {
34 class TextSelectionPopup;
35 }
36
37 /**
38  * @brief A control which provides a Popup with a number of buttons
39  *
40  * The style of the pop can be set through style sheets, this includes the images for the buttons
41  * A Show and Hide API is provided.
42  *
43  * If the buttons exceed the size constraints of the popup then it will offer scrolling.
44  *
45  *
46  */
47 class DALI_IMPORT_API TextSelectionPopup : public Control
48 {
49 public:
50
51   enum Buttons
52   {
53     CUT = 1u << 0,
54     COPY = 1u << 1,
55     PASTE = 1u << 2,
56     SELECT = 1u << 3,
57     SELECT_ALL = 1u << 4,
58     CLIPBOARD = 1u << 5,
59     NONE = 1u << 6,
60   };
61
62   /**
63    * @brief The start and end property ranges for this control.
64    */
65   enum PropertyRange
66   {
67     PROPERTY_START_INDEX = Control::CONTROL_PROPERTY_END_INDEX + 1,
68     PROPERTY_END_INDEX =   PROPERTY_START_INDEX + 1000              ///< Reserve property indices
69   };
70
71   /**
72    * @brief An enumeration of properties belonging to the TextSelectionPopup class.
73    */
74   struct Property
75   {
76     enum
77     {
78       POPUP_MAX_SIZE =  PROPERTY_START_INDEX,   ///< name "popup-max-size",                maximum size the Popup can be,                  type VECTOR2
79       POPUP_MIN_SIZE,                           ///< name "popup-min-size",                minimum size the Popup can be,                  type VECTOR2
80       OPTION_MAX_SIZE,                          ///< name "option-max-size",               maximum size an option can be,                  type VECTOR2
81       OPTION_MIN_SIZE,                          ///< name "option-min-size",               minimum size an option can be,                  type VECTOR2
82       OPTION_DIVIDER_SIZE,                      ///< name "option-divider-size",           size of the divider between options             type VECTOR2
83       POPUP_CLIPBOARD_BUTTON_ICON_IMAGE,        ///< name "popup-clipboard-button-image",  The image to use as the popup clipboard icon,   type STRING
84       POPUP_CUT_BUTTON_ICON_IMAGE,              ///< name "popup-cut-button-image",        The image to use as the popup cut icon,         type STRING
85       POPUP_COPY_BUTTON_ICON_IMAGE,             ///< name "popup-copy-button-image",       The image to use as the popup copy icon,        type STRING
86       POPUP_PASTE_BUTTON_ICON_IMAGE,            ///< name "popup-paste-button-image",      The image to use as the popup paste icon,       type STRING
87       POPUP_SELECT_BUTTON_ICON_IMAGE,           ///< name "popup-select-button-image",     The image to use as the popup select icon,      type STRING
88       POPUP_SELECT_ALL_BUTTON_ICON_IMAGE,       ///< name "popup-select-all-button-image", The image to use as the popup select all icon,  type STRING
89     };
90   };
91
92   /**
93    * Create the TextSelectionPopup control with the given set of buttons.
94    * @param[in] enabledButtons The given set of buttons to enable
95    * @param[in] callbackInterface The text popup callback interface which receives the button click callbacks.
96    * @return A handle to the TextSelectionPopup control.
97    */
98   static TextSelectionPopup New( Buttons enabledButtons,
99                                  TextSelectionPopupCallbackInterface* callbackInterface );
100
101   /**
102    * @brief Creates an empty handle.
103    */
104   TextSelectionPopup();
105
106   /**
107    * @brief Copy constructor.
108    *
109    * @param[in] handle The handle to copy from.
110    */
111   TextSelectionPopup( const TextSelectionPopup& handle );
112
113   /**
114    * @brief Assignment operator.
115    *
116    * @param[in] handle The handle to copy from.
117    * @return A reference to this.
118    */
119   TextSelectionPopup& operator=( const TextSelectionPopup& handle );
120
121   /**
122    * @brief Destructor
123    *
124    * This is non-virtual since derived Handle types must not contain data or virtual methods.
125    */
126   ~TextSelectionPopup();
127
128   /**
129    * @brief Downcast a handle to TextSelectionPopup.
130    *
131    * If the BaseHandle points is a TextSelectionPopup the downcast returns a valid handle.
132    * If not the returned handle is left empty.
133    *
134    * @param[in] handle Handle to an object
135    * @return handle to a TextSelectionPopup or an empty handle
136    */
137   static TextSelectionPopup DownCast( BaseHandle handle );
138
139 public: // Not intended for application developers
140
141   /**
142    * @brief Creates a handle using the Toolkit::Internal implementation.
143    *
144    * @param[in] implementation The Control implementation.
145    */
146   DALI_INTERNAL TextSelectionPopup( Internal::TextSelectionPopup& implementation );
147
148   /**
149    * @brief Allows the creation of this Control from an Internal::CustomActor pointer.
150    *
151    * @param[in]  internal  A pointer to the internal CustomActor.
152    */
153   explicit DALI_INTERNAL TextSelectionPopup( Dali::Internal::CustomActor* internal );
154
155 }; // Class TextSelectionPopup
156
157 } // namespace Toolkit
158
159 } // namespace Dali
160
161 #endif // __DALI_TOOLKIT_TEXT_SELECTION_POPUP_H__