Conversion to Apache 2.0 license
[platform/core/uifw/dali-core.git] / dali / internal / event / images / image-connector.cpp
1 /*
2  * Copyright (c) 2014 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-connector.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/public-api/common/dali-common.h>
23
24 namespace Dali
25 {
26
27 namespace Internal
28 {
29
30 ImageConnector::ImageConnector()
31 {
32 }
33
34 ImageConnector::~ImageConnector()
35 {
36 }
37
38 Image* ImageConnector::Get() const
39 {
40   return mImage.Get();
41 }
42
43 void ImageConnector::Set( Image* image, bool onStage )
44 {
45   if ( mImage.Get() != image )
46   {
47     // Disconnect from old image
48     if ( mImage && onStage )
49     {
50       mImage->Disconnect();
51     }
52
53     mImage.Reset(image);
54
55     // Connect to new image
56     if ( mImage && onStage )
57     {
58       mImage->Connect();
59     }
60   }
61 }
62
63 void ImageConnector::OnStageConnect()
64 {
65   if ( mImage )
66   {
67     mImage->Connect();
68   }
69 }
70
71 void ImageConnector::OnStageDisconnect()
72 {
73   if ( mImage )
74   {
75     mImage->Disconnect();
76   }
77 }
78
79 } // namespace Internal
80
81 } // namespace Dali