2 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 #include <dali/internal/event/images/image-impl.h>
22 #include <cstring> // for strcmp
25 #include <dali/public-api/common/dali-common.h>
26 #include <dali/public-api/object/type-registry.h>
28 #include <dali/integration-api/debug.h>
29 #include <dali/internal/event/resources/resource-ticket.h>
30 #include <dali/internal/event/common/thread-local-storage.h>
31 #include <dali/internal/event/resources/resource-client.h>
32 #include <dali/internal/event/common/stage-impl.h>
34 using namespace Dali::Integration;
47 const char* const SIGNAL_IMAGE_UPLOADED = "uploaded";
49 TypeRegistration mType( typeid( Dali::Image ), typeid( Dali::BaseHandle ), NULL );
51 Dali::SignalConnectorType signalConnector1( mType, SIGNAL_IMAGE_UPLOADED, &Image::DoConnectSignal );
55 bool Image::DoConnectSignal( BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor )
57 bool connected( true );
58 DALI_ASSERT_DEBUG( dynamic_cast<Image*>( object ) && "Resource ticket not ImageTicket subclass for image resource.\n" );
59 Image* image = static_cast<Image*>(object);
61 if( 0 == strcmp( signalName.c_str(), SIGNAL_IMAGE_UPLOADED ) )
63 image->UploadedSignal().Connect( tracker, functor );
67 // signalName does not match any signal
74 ResourceId Image::GetResourceId() const
76 ResourceId ret = mTicket ? mTicket->GetId() : 0;
81 void Image::ResourceLoadingFailed(const ResourceTicket& ticket)
86 void Image::ResourceLoadingSucceeded(const ResourceTicket& ticket)
91 void Image::ResourceUploaded(const ResourceTicket& ticket)
93 mUploaded.Emit( Dali::Image( this ) );
96 unsigned int Image::GetWidth() const
101 unsigned int Image::GetHeight() const
106 Vector2 Image::GetNaturalSize() const
108 return Vector2( mWidth, mHeight );
111 Image::Image( ReleasePolicy releasePol )
114 mConnectionCount( 0 ),
115 mReleasePolicy( releasePol )
123 mTicket->RemoveObserver( *this );
127 if( Stage::IsInstalled() )
133 void Image::Initialize()
138 } // namespace Internal