Merge "Add APIs for intercepting http request in web view." into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / controls / canvas-view / canvas-view.h
1 #ifndef DALI_TOOLKIT_CANVAS_VIEW_H
2 #define DALI_TOOLKIT_CANVAS_VIEW_H
3
4 /*
5  * Copyright (c) 2021 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 // EXTERNAL INCLUDES
25 #include <dali/devel-api/adaptor-framework/canvas-renderer-drawable.h>
26 #include <dali/devel-api/adaptor-framework/canvas-renderer-shape.h>
27
28 namespace Dali
29 {
30 namespace Toolkit
31 {
32 namespace Internal DALI_INTERNAL
33 {
34 class CanvasView;
35 }
36 /**
37  * @addtogroup dali_toolkit_controls_canvas_view
38  * @{
39  */
40
41 /**
42  * @brief CanvasView is a class for displaying an vector primitives.
43  *
44  * @code
45  *    auto myCanvasView = CanvasView::New( viewBox ) ); //The viewBox is the size of viewbox of CanvasView.
46  *
47  *    //Create shape and set properties.
48  *    auto shape = Dali::CanvasRenderer::Shape::New();
49  *    shape.AddRect( 0, 0, 10, 10, 0, 0 );
50  *    shape.SetFillColor( Vector4( 1.0, 1.0, 1.0, 1.0 ) );
51  *    myCanvasView.AddDrawable( shape );
52  * @endcode
53  *
54  *
55  */
56 class DALI_TOOLKIT_API CanvasView : public Control
57 {
58 public:
59   /**
60    * @brief Creates an uninitialized CanvasView.
61    */
62   CanvasView();
63
64   /**
65    * @brief Creates an initialized CanvasView
66    *
67    * @param [in] viewBox The width and height.
68    * @return A handle to a newly allocated CanvasView
69    */
70   static CanvasView New(const Vector2& viewBox);
71
72   /**
73    * @brief Destructor.
74    *
75    * This is non-virtual since derived Handle types must not contain data or virtual methods.
76    */
77   ~CanvasView();
78
79   /**
80    * @brief Copy constructor.
81    *
82    * @param[in] canvasView CanvasView to copy. The copied CanvasView will point at the same implementation
83    */
84   CanvasView(const CanvasView& canvasView);
85
86   /**
87    * @brief Move constructor
88    *
89    * @param[in] rhs A reference to the moved handle
90    */
91   CanvasView(CanvasView&& rhs);
92
93   /**
94    * @brief Assignment operator.
95    *
96    * @param[in] canvasView The CanvasView to assign from
97    * @return The updated CanvasView
98    */
99   CanvasView& operator=(const CanvasView& canvasView);
100
101   /**
102    * @brief Move assignment
103    *
104    * @param[in] rhs A reference to the moved handle
105    * @return A reference to this
106    */
107   CanvasView& operator=(CanvasView&& rhs);
108
109   /**
110    * @brief Downcasts a handle to CanvasView handle.
111    *
112    * If handle points to a CanvasView, the downcast produces valid handle.
113    * If not, the returned handle is left uninitialized.
114    *
115    * @param[in] handle Handle to an object
116    * @return Handle to a CanvasView or an uninitialized handle
117    */
118   static CanvasView DownCast(BaseHandle handle);
119
120   /**
121    * @brief Add drawable object to the CanvasView.
122    * This method is similar to registration. The added shape is drawn on the inner canvas.
123    */
124   void AddDrawable(Dali::CanvasRenderer::Drawable& drawable);
125
126 public: // Not intended for application developers
127   /// @cond internal
128   /**
129    * @brief Creates a handle using the Toolkit::Internal implementation.
130    *
131    * @param[in] implementation The CanvasView implementation
132    */
133   DALI_INTERNAL CanvasView(Internal::CanvasView& implementation);
134
135   /**
136    * @brief Allows the creation of this CanvasView from an Internal::CustomActor pointer.
137    *
138    * @param[in] internal A pointer to the internal CustomActor
139    */
140   DALI_INTERNAL CanvasView(Dali::Internal::CustomActor* internal);
141   /// @endcond
142 };
143
144 /**
145  * @}
146  */
147 } // namespace Toolkit
148
149 } // namespace Dali
150
151 #endif // DALI_TOOLKIT_CANVAS_VIEW_H