Upload initial version
[platform/core/uifw/libscl-ui-nui.git] / scl / sclimageproxy.h
1 /*
2  * Copyright (c) 2012 - 2014 Samsung Electronics Co., Ltd All Rights Reserved
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 #ifndef __SCL_IMAGE_PROXY_H__
19 #define __SCL_IMAGE_PROXY_H__
20
21 namespace scl
22 {
23 class CSCLImageProxy
24 {
25 private:
26         CSCLImageProxy();
27 public :
28     virtual ~CSCLImageProxy();
29     static CSCLImageProxy* get_instance();
30
31     sclimage get_image(const sclchar* image_path);
32     void free_images();
33
34 private:
35     static const sclint MAX_IMAGE_PATH_LEN = 255;
36     typedef struct _SclImageCacheItem {
37         sclchar image_path[MAX_IMAGE_PATH_LEN + 1];
38         sclimage image_data;
39     } SclImageCacheItem;
40
41     static const sclint IMAGE_PROXY_SIZE = 1;
42     SclImageCacheItem m_image_cache_items[IMAGE_PROXY_SIZE];
43 };
44 } /* End of scl namespace */
45 #endif