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 <dali/public-api/common/dali-common.h>
23 #include <dali/public-api/object/type-registry.h>
25 #include <dali/integration-api/debug.h>
26 #include <dali/internal/event/resources/resource-ticket.h>
27 #include <dali/internal/event/common/thread-local-storage.h>
28 #include <dali/internal/event/resources/resource-client.h>
29 #include <dali/internal/event/common/stage-impl.h>
31 using namespace Dali::Integration;
44 const char* const SIGNAL_IMAGE_UPLOADED = "uploaded";
46 TypeRegistration mType( typeid( Dali::Image ), typeid( Dali::BaseHandle ), NULL );
48 Dali::SignalConnectorType signalConnector1( mType, SIGNAL_IMAGE_UPLOADED, &Image::DoConnectSignal );
52 ImagePtr Image::New( NativeImage& nativeImg )
54 ImagePtr image = new Image;
57 ResourceClient &resourceClient = ThreadLocalStorage::Get().GetResourceClient();
59 image->mWidth = nativeImg.GetWidth();
60 image->mHeight = nativeImg.GetHeight();
62 const ResourceTicketPtr& ticket = resourceClient.AddNativeImage( nativeImg );
63 DALI_ASSERT_DEBUG( dynamic_cast<ImageTicket*>( ticket.Get() ) && "Resource ticket not ImageTicket subclass for image resource.\n" );
64 image->mTicket = static_cast<ImageTicket*>(ticket.Get());
65 image->mTicket->AddObserver( *image );
70 bool Image::DoConnectSignal( BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor )
72 bool connected( true );
73 DALI_ASSERT_DEBUG( dynamic_cast<Image*>( object ) && "Resource ticket not ImageTicket subclass for image resource.\n" );
74 Image* image = static_cast<Image*>(object);
76 if( 0 == strcmp( signalName.c_str(), SIGNAL_IMAGE_UPLOADED ) )
78 image->UploadedSignal().Connect( tracker, functor );
82 // signalName does not match any signal
89 ResourceId Image::GetResourceId() const
91 ResourceId ret = mTicket ? mTicket->GetId() : 0;
96 void Image::ResourceLoadingFailed(const ResourceTicket& ticket)
101 void Image::ResourceLoadingSucceeded(const ResourceTicket& ticket)
106 void Image::ResourceUploaded(const ResourceTicket& ticket)
108 mUploaded.Emit( Dali::Image( this ) );
111 void Image::ResourceSavingSucceeded( const ResourceTicket& ticket )
116 void Image::ResourceSavingFailed( const ResourceTicket& ticket )
121 unsigned int Image::GetWidth() const
126 unsigned int Image::GetHeight() const
131 Vector2 Image::GetNaturalSize() const
133 return Vector2( mWidth, mHeight );
136 Image::Image( ReleasePolicy releasePol )
139 mConnectionCount( 0 ),
140 mReleasePolicy( releasePol )
148 mTicket->RemoveObserver( *this );
152 if( Stage::IsInstalled() )
158 void Image::Initialize()
163 } // namespace Internal