License conversion from Flora to Apache 2.0
[platform/core/uifw/dali-core.git] / dali / internal / event / resources / resource-ticket-observer.h
1 #ifndef __DALI_INTERNAL_RESOURCE_TICKET_OBSERVER_H__
2 #define __DALI_INTERNAL_RESOURCE_TICKET_OBSERVER_H__
3
4 /*
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali/public-api/object/ref-object.h>
23
24 namespace Dali
25 {
26
27 namespace Internal
28 {
29
30 class ResourceTicket;
31
32 typedef IntrusivePtr<ResourceTicket> ResourceTicketPtr;
33
34 /**
35  * ResourceTicketObserver is used to observe the status of resource loading requests.
36  */
37 class ResourceTicketObserver
38 {
39 public:
40
41   /**
42    * Called when a resource loads successfully.
43    * @param[in] ticket The ticket for this resource.
44    */
45   virtual void ResourceLoadingSucceeded( const ResourceTicket& ticket ) = 0;
46
47   /**
48    * Called when a resource fails to load.
49    * @param[in] ticket The ticket for this resource.
50    */
51   virtual void ResourceLoadingFailed( const ResourceTicket& ticket ) = 0;
52
53   /**
54    * Called when a resource is uploaded to graphics memory.
55    * @param[in] ticket The ticket for this resource.
56    */
57   virtual void ResourceUploaded( const ResourceTicket& ticket ) = 0;
58
59   /**
60    * Called when a resource is saved successfully.
61    * @param[in] ticket The ticket for this resource.
62    */
63   virtual void ResourceSavingSucceeded( const ResourceTicket& ticket ) = 0;
64
65   /**
66    * Called when a resource fails to save.
67    * @param[in] ticket The ticket for this resource.
68    */
69   virtual void ResourceSavingFailed( const ResourceTicket& ticket ) = 0;
70 };
71
72 } // namespace Internal
73
74 } // namespace Dali
75
76 #endif // __DALI_INTERNAL_RESOURCE_TICKET_OBSERVER_H__