c28b0419d96214fb598df660b18c0adc883d030c
[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) 2019 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   void DoSetProperties( const Property::Map& propertyMap ) override;
82
83   /**
84    * @copydoc Visual::Base::DoSetOnStage
85    */
86   void DoSetOnStage( Actor& actor ) override;
87
88   /**
89    * @copydoc Visual::Base::CreatePropertyMap
90    */
91   void DoCreatePropertyMap( Property::Map& map ) const override;
92
93   /**
94    * @copydoc Visual::Base::CreateInstancePropertyMap
95    */
96   void DoCreateInstancePropertyMap( Property::Map& map ) const override;
97
98   /**
99    * @copydoc Visual::Base::OnSetTransform
100    */
101   void OnSetTransform() override;
102
103 private:
104
105   /**
106    * @brief Initialize the renderer with the geometry and shader from the cache, if not available, create and save to the cache for sharing.
107    */
108   void InitializeRenderer();
109
110   /**
111    * Request the border shader from the factory cache. If fail, create tha shader and add it to cache.
112    * @return The border shader.
113    */
114   Shader GetBorderShader();
115
116   /**
117    * Create the geometry which presents the border.
118    * @return The border geometry
119    */
120   Geometry CreateBorderGeometry();
121
122   /**
123    * Helper method to set individual values by index key.
124    * @param[in] index The index key of the value
125    * @param[in] value The value
126    */
127   void DoSetProperty( Property::Index index, const Property::Value& value );
128
129   // Undefined
130   BorderVisual( const BorderVisual& borderRenderer );
131
132   // Undefined
133   BorderVisual& operator=( const BorderVisual& borderRenderer );
134
135 private:
136
137   Vector4 mBorderColor;
138   float   mBorderSize;
139
140   Property::Index mBorderColorIndex;
141   Property::Index mBorderSizeIndex;
142
143   bool mAntiAliasing;
144 };
145
146 } // namespace Internal
147
148 } // namespace Toolkit
149
150 } // namespace Dali
151
152 #endif // DALI_TOOLKIT_INTERNAL_BORDER_VISUAL_H