Update copyright year to 2015 for public api: core
[platform/core/uifw/dali-core.git] / dali / public-api / images / nine-patch-image.cpp
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali/public-api/images/nine-patch-image.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/common/image-attributes.h>
23 #include <dali/public-api/math/vector2.h>
24 #include <dali/internal/event/images/nine-patch-image-impl.h>
25
26
27 namespace Dali
28 {
29
30 NinePatchImage::NinePatchImage()
31 {
32 }
33
34 NinePatchImage::NinePatchImage(Internal::NinePatchImage* internal)
35 : ResourceImage(internal)
36 {
37 }
38
39 NinePatchImage::~NinePatchImage()
40 {
41 }
42
43 NinePatchImage::NinePatchImage(const NinePatchImage& handle)
44 : ResourceImage(handle)
45 {
46 }
47
48 NinePatchImage& NinePatchImage::operator=(const NinePatchImage& rhs)
49 {
50   BaseHandle::operator=(rhs);
51   return *this;
52 }
53
54 NinePatchImage NinePatchImage::New( const std::string& filename )
55 {
56   Internal::ImageAttributes defaultAttrs;
57
58   Internal::NinePatchImagePtr internal = Internal::NinePatchImage::New( filename, defaultAttrs, Image::NEVER );
59   return NinePatchImage(internal.Get());
60 }
61
62 NinePatchImage NinePatchImage::DownCast( BaseHandle handle )
63 {
64   return NinePatchImage( dynamic_cast<Dali::Internal::NinePatchImage*>(handle.GetObjectPtr()) );
65 }
66
67 Vector4 NinePatchImage::GetStretchBorders()
68 {
69   return GetImplementation(*this).GetStretchBorders();
70 }
71
72 Rect<int> NinePatchImage::GetChildRectangle()
73 {
74   return GetImplementation(*this).GetChildRectangle();
75 }
76
77 BufferImage NinePatchImage::CreateCroppedBufferImage()
78 {
79   Internal::BufferImagePtr internal = GetImplementation(*this).CreateCroppedBufferImage();
80   return BufferImage(internal.Get());
81 }
82
83
84 } // namespace Dali