diff options
author | Kim Kibum <kb0929.kim@samsung.com> | 2012-06-08 14:54:16 +0900 |
---|---|---|
committer | Kim Kibum <kb0929.kim@samsung.com> | 2012-06-08 14:54:16 +0900 |
commit | 8b42d4bb33943903b7160bb963bf7e7c6824e9ef (patch) | |
tree | 021a596daee9f7e379b8914aad343a2342528e47 /main/src/common/ivug-config.h | |
parent | 7164c202e81bc53033dce636367d92b93265b915 (diff) | |
download | ug-image-viewer-efl-8b42d4bb33943903b7160bb963bf7e7c6824e9ef.tar.gz ug-image-viewer-efl-8b42d4bb33943903b7160bb963bf7e7c6824e9ef.tar.bz2 ug-image-viewer-efl-8b42d4bb33943903b7160bb963bf7e7c6824e9ef.zip |
apply FSL(Flora Software License)
Diffstat (limited to 'main/src/common/ivug-config.h')
-rwxr-xr-x | main/src/common/ivug-config.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/main/src/common/ivug-config.h b/main/src/common/ivug-config.h new file mode 100755 index 0000000..31d9533 --- /dev/null +++ b/main/src/common/ivug-config.h @@ -0,0 +1,50 @@ +/* + * Copyright 2012 Samsung Electronics Co., Ltd + * + * Licensed under the Flora License, Version 1.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.tizenopensource.org/license + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +#ifndef __IVUG_CONFIG_H__ +#define __IVUG_CONFIG_H__ + +typedef enum { + SLIDE_SHOW_MODE_NORMAL = 0x00, + SLIDE_SHOW_MODE_REPEAT = 0x01, + SLIDE_SHOW_MODE_SHUFFLE = 0x02, + SLIDE_SHOW_MODE_SHUFFLE_REPEAT = 0x03, +} slide_show_mode; + +typedef enum { + IVUG_EFFECT_TYPE_SLIDE = 0x00, + IVUG_EFFECT_TYPE_MAX, +} ivug_effect_type; + +#ifdef __cplusplus +extern "C" { +#endif + +bool ivug_config_set_lockscreen_image(const char* filepath); + +bool ivug_config_set_homescreen_image(const char* filepath); + +void ivug_config_get_slideshow_setting(slide_show_mode * /* OUT */ mode, + double * /* OUT */ interval_time, + ivug_effect_type * /* OUT */ effect_type); + +#ifdef __cplusplus +} +#endif + + +#endif // __IVUG_CONFIG_H__ |