Remove TypeRegistration from deprecated Image classes
[platform/core/uifw/dali-core.git] / dali / internal / event / images / image-impl.cpp
1 /*
2  * Copyright (c) 2018 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/internal/event/images/image-impl.h>
20
21 // EXTERNAL INCLUDES
22 #include <cstring> // for strcmp
23
24 // INTERNAL INCLUDES
25 #include <dali/public-api/common/dali-common.h>
26 #include <dali/public-api/object/type-registry.h>
27
28 #include <dali/integration-api/debug.h>
29 #include <dali/internal/event/common/thread-local-storage.h>
30 #include <dali/internal/event/common/stage-impl.h>
31
32 using namespace Dali::Integration;
33
34 namespace Dali
35 {
36
37 namespace Internal
38 {
39
40 unsigned int Image::GetWidth() const
41 {
42   return mWidth;
43 }
44
45 unsigned int Image::GetHeight() const
46 {
47   return mHeight;
48 }
49
50 Vector2 Image::GetNaturalSize() const
51 {
52   return Vector2( static_cast<float>( mWidth ), static_cast<float>( mHeight ) );
53 }
54
55 Image::Image()
56 : mTexture(),
57   mWidth( 0 ),
58   mHeight( 0 ),
59   mConnectionCount( 0 )
60 {
61 }
62
63 Image::~Image()
64 {
65   if( Stage::IsInstalled() )
66   {
67     UnregisterObject();
68   }
69 }
70
71 void Image::Initialize()
72 {
73   RegisterObject();
74 }
75
76 } // namespace Internal
77
78 } // namespace Dali