[dali_1.2.19] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / visuals / border / border-visual.h
1 #ifndef DALI_TOOLKIT_INTERNAL_BORDER_VISUAL_H
2 #define DALI_TOOLKIT_INTERNAL_BORDER_VISUAL_H
3
4 /*
5  * Copyright (c) 2016 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 // EXTERNAL INCLUDES
22 #include <dali/public-api/rendering/geometry.h>
23 #include <dali/public-api/common/intrusive-ptr.h>
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/internal/visuals/visual-base-impl.h>
27
28 namespace Dali
29 {
30
31 namespace Toolkit
32 {
33
34 namespace Internal
35 {
36
37 class BorderVisual;
38 typedef IntrusivePtr< BorderVisual > BorderVisualPtr;
39
40 /**
41  * The visual which renders a solid color to the control's quad border fixed to a specified size.
42  *
43  * The following properties are required for create a BorderRender
44  *
45  * | %Property Name  | Type        |
46  * |-----------------|-------------|
47  * | borderColor     | VECTOR4     |
48  * | borderSize      | FLOAT       |
49  * | antiAliasing    | BOOLEAN     |
50  */
51 class BorderVisual : public Visual::Base
52 {
53 public:
54
55   /**
56    * @brief Create a new border visual.
57    *
58    * @param[in] factoryCache A pointer pointing to the VisualFactoryCache object
59    * @param[in] properties A Property::Map containing settings for this visual
60    * @return A smart-pointer to the newly allocated visual.
61    */
62   static BorderVisualPtr New( VisualFactoryCache& factoryCache, const Property::Map& properties );
63
64 protected:
65
66   /**
67    * @brief Constructor.
68    *
69    * @param[in] factoryCache A pointer pointing to the VisualFactoryCache object
70    */
71   BorderVisual( VisualFactoryCache& factoryCache );
72
73   /**
74    * @brief A reference counted object may only be deleted by calling Unreference().
75    */
76   virtual ~BorderVisual();
77
78   /**
79    * @copydoc Visual::Base::DoSetProperties
80    */
81   virtual void DoSetProperties( const Property::Map& propertyMap );
82
83   /**
84    * @copydoc Visual::Base::DoSetOnStage
85    */
86   virtual void DoSetOnStage( Actor& actor );
87
88   /**
89    * @copydoc Visual::Base::CreatePropertyMap
90    */
91   virtual void DoCreatePropertyMap( Property::Map& map ) const;
92
93   /**
94    * @copydoc Visual::Base::OnSetTransform
95    */
96   virtual void OnSetTransform();
97
98 public:
99
100   /**
101    * Set the color of the border.
102    * @param[in] color The border color.
103    */
104   void SetBorderColor( const Vector4& color);
105
106   /**
107    * Set the size of the border.
108    * @param[in] size The border size.
109    */
110   void SetBorderSize( float size );
111
112   /**
113    * Enable/Disable the anti-aliasing.
114    * @param[in] enable Whether the anti-aliasing be enabled or not.
115    */
116   void RequireAntiAliasing( bool antiAliasing );
117
118 private:
119
120   /**
121    * @brief Initialize the renderer with the geometry and shader from the cache, if not available, create and save to the cache for sharing.
122    */
123   void InitializeRenderer();
124
125   /**
126    * Request the border shader from the factory cache. If fail, create tha shader and add it to cache.
127    * @return The border shader.
128    */
129   Shader GetBorderShader();
130
131   /**
132    * Create the geometry which presents the border.
133    * @return The border geometry
134    */
135   Geometry CreateBorderGeometry();
136
137   // Undefined
138   BorderVisual( const BorderVisual& borderRenderer );
139
140   // Undefined
141   BorderVisual& operator=( const BorderVisual& borderRenderer );
142
143 private:
144
145   Vector4 mBorderColor;
146   float   mBorderSize;
147
148   Property::Index mBorderColorIndex;
149   Property::Index mBorderSizeIndex;
150
151   bool mAntiAliasing;
152 };
153
154 } // namespace Internal
155
156 } // namespace Toolkit
157
158 } // namespace Dali
159
160 #endif // DALI_TOOLKIT_INTERNAL_BORDER_VISUAL_H