Merge base & optional
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / default-controls / solid-color-actor.h
1 #ifndef __DALI_TOOLKIT_SOLID_COLOR_ACTOR_H__
2 #define __DALI_TOOLKIT_SOLID_COLOR_ACTOR_H__
3
4 /*
5  * Copyright (c) 2014 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/public-api/math/vector4.h>
23 #include <dali/public-api/actors/image-actor.h>
24
25 namespace Dali
26 {
27
28 namespace Toolkit
29 {
30
31 /**
32  * @brief Creates a Dali::ImageActor with a solid color, optionally it creates a border.
33  *
34  * If the \e border parameter is set to \e true, the Dali::ImageActor's style is set to Dali::ImageActor::STYLE_NINE_PATCH.
35  *
36  * @param[in] color The ImageActor's color.
37  * @param[in] border If \e true, a border is created. By default, the value is set to \e false.
38  * @param[in] borderColor The color for the ImageActor's border. By default, the value is set to Color::WHITE.
39  * @param[in] borderSize The size for the ImageActor's border. By default, the value is set to 1 pixel. It supports under 10 pixel for clear result of gl blend
40  * @return a handle to the new ImageActor
41  */
42 DALI_IMPORT_API ImageActor CreateSolidColorActor( const Vector4& color, bool border = false, const Vector4& borderColor = Color::WHITE, const unsigned int borderSize = 1 );
43
44 } // namespace Toolkit
45
46 } // namespace Dali
47
48 #endif // __DALI_TOOLKIT_SOLID_COLOR_ACTOR_H__