Implementation of BorderRenderer and apply it to Magnifier
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / renderers / border / border-renderer.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_BORDER_RENDERER_H__
2 #define __DALI_TOOLKIT_INTERNAL_BORDER_RENDERER_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 // EXTERNAL INCLUDES
21 #include <dali/devel-api/rendering/geometry.h>
22
23 // INTERNAL INCLUDES
24 #include <dali-toolkit/internal/controls/renderers/control-renderer-impl.h>
25
26 namespace Dali
27 {
28
29 namespace Toolkit
30 {
31
32 namespace Internal
33 {
34
35 /**
36  * The renderer which renders a solid color to the control's quad border fixed to a specified size.
37  *
38  * The following properties are required for create a BorderRender
39  *
40  * | %Property Name   | Type        |
41  * |------------------|-------------|
42  * | border-color     | VECTOR4     |
43  * | border-size      | FLOAT       |
44  */
45
46 class BorderRenderer : public ControlRenderer
47 {
48 public:
49
50   /**
51    * @brief Constructor.
52    */
53   BorderRenderer();
54
55   /**
56    * @brief A reference counted object may only be deleted by calling Unreference().
57    */
58   virtual ~BorderRenderer();
59
60 public:  // from ControlRenderer
61
62   /**
63    * @copydoc ControlRenderer::Initialize
64    */
65   virtual void Initialize( RendererFactoryCache& factoryCache, const Property::Map& propertyMap );
66
67   /**
68    * @copydoc ControlRenderer::SetClipRect
69    */
70   virtual void SetClipRect( const Rect<int>& clipRect );
71
72 protected:
73   /**
74    * @copydoc ControlRenderer::DoSetOnStage
75    */
76   virtual void DoSetOnStage( Actor& actor );
77
78 public:
79
80   /**
81    * Request the geometry and shader from the cache, if not available, create and save to the cache for sharing.
82    *
83    * @param[in] factoryCache A pointer pointing to the RendererFactoryCache object
84    */
85   void Initialize( RendererFactoryCache& factoryCache );
86
87   /**
88    * Set the color of the border.
89    * @param[in] color The border color.
90    */
91   void SetBorderColor( const Vector4& color);
92
93   /**
94    * Set the size of the border.
95    * @param[in] size The border size.
96    */
97   void SetBorderSize( float size );
98
99 private:
100
101   /**
102    * Create the geometry which presents the border.
103    * @return The border geometry
104    */
105   Geometry CreateBorderGeometry();
106
107   // Undefined
108   BorderRenderer( const BorderRenderer& borderRenderer );
109
110   // Undefined
111   BorderRenderer& operator=( const BorderRenderer& borderRenderer );
112
113 private:
114
115   Vector4 mBorderColor;
116   float   mBorderSize;
117
118   Property::Index mBorderColorIndex;
119   Property::Index mBorderSizeIndex;
120 };
121
122 } // namespace Internal
123
124 } // namespace Toolkit
125
126 } // namespace Dali
127
128 #endif /* __DALI_TOOLKIT_INTERNAL_BORDER_RENDERER_H__ */