#include <assert.h>
-
-/*
- Category :
- FATAL
- ERROR
- WARN
- HIGH
- MED
- LOW
- DEBUG
-*/
-
-
enum {
DBG_MSG_LOW = 0,
DBG_MSG_MED = 1,
#define __IVUG_BASE_H__
#include <Elementary.h>
-#include "ivug-parameter.h"
#include "ivug-slideshow-view.h"
-#include "ivug-crop-ug.h"
#include "ivug-main-view.h"
typedef struct _ug_data ug_data;
callback_handle_t * ivug_callback_register(void);
-void ivug_callback_set_callback(callback_handle_t *handle, callback_func_t callback, void *data);
-
-void ivug_callback_call(callback_handle_t *handle, void *data1, void *data2, void *data3);
-
void ivug_callback_unregister(callback_handle_t *handle);
#ifdef __cplusplus
#ifndef __IVUG_COMMON_H__
#define __IVUG_COMMON_H__
+#include <Elementary.h>
+#include <assert.h>
#include "ivug-define.h"
#include "ivug-datatypes.h"
#include "ivug-uuid.h"
-
-#include <Elementary.h>
-#include <assert.h>
-
#include "ivug-debug.h"
#include "ivug-string.h"
#include "ivug-util.h"
#define IMAGE_PATH full_path(UG_RES_PATH, "edje/images")
#define DATA_PATH DATADIR"/"
-/*
- Home screen and Lock screen image should be put in DATA_PATH.
-*/
-
-
-#define NAVI_OPTION_BTN_STYLE "naviframe/title/default"//"multiline"
-
-#define WHITE_THEME
-
-#ifdef WHITE_THEME
-#define IVUG_DEFAULT_BG_COLOR 249
-#else
-#define IVUG_DEFAULT_BG_COLOR 48
-#endif
-
-#define USE_DEFAULT_DOWNLOADS_FOLDER
#define DEFAULT_THUMBNAIL "/opt/usr/share/media/.thumb/thumb_default.png"
#define DEFAULT_THUMBNAIL_PATH full_path(IMAGE_PATH, "/T01_Nocontents_broken.png")
#define MENUBAR_TIMEOUT_SEC (2.0f)
-/*
- Final image path
-*/
-#define IVUG_HOME_SCREEN_PATH DATA_PATH"/.homescreen.jpg";
-#define IVUG_LOCK_SCREEN_PATH DATA_PATH"/.lockscreen.jpg";
-
-/*
- Screen path for APPSVC
-*/
-#define IVUG_APPSVC_HOME_SCREEN_PATH DATA_PATH"/.iv_homescreen.jpg";
-
#endif /* __IVUG_COMMON_H__ */
#ifndef __IVUG_CONFIG_H__
#define __IVUG_CONFIG_H__
-#include "ivug-define.h"
-
typedef enum {
SLIDE_SHOW_MODE_NORMAL = 0x00,
SLIDE_SHOW_MODE_REPEAT = 0x01,
double * /* OUT */ interval_time,
ivug_effect_type * /* OUT */ effect_type);
-bool ivug_config_set_playspeed(eConfigPlaySpeed speed);
-//bool ivug_config_get_playspeed(eConfigPlaySpeed *speed);
-
#ifdef __cplusplus
}
#endif
#ifndef __IVUG_CONTEXT_H__
#define __IVUG_CONTEXT_H__
-#include "ivug-define.h"
-
+#include <stdbool.h>
+#include <app.h>
#include "ivug-callback.h"
-
#include "ivug-language-mgr.h"
#include "ivug-common.h"
-#include "ivug-util.h"
-
#include "ivug-db.h"
-#include "ivug-language-mgr.h"
-
/*
Managing context(instance)
*/
#ifndef __IVUG_CROP_CIRCULAR_H__
#define __IVUG_CROP_CIRCULAR_H__
-#include "ivug-crop-view.h"
-#include "ivug-main-view.h"
#include "ivug-main-view-priv.h"
#ifdef __cplusplus
#ifndef __IVUG_CROP_UG_H__
#define __IVUG_CROP_UG_H__
-#include "ivug-crop-view.h"
-#include "ivug-main-view.h"
#include "ivug-main-view-priv.h"
#ifdef __cplusplus
#ifndef __IVUG_DATA_LIST_H__
#define __IVUG_DATA_LIST_H__
-#include "ivug-define.h"
#include "ivug-medialist.h"
#ifdef __cplusplus
#ifndef __IVUG_DB_H__
#define __IVUG_DB_H__
-#include <stdbool.h>
-
-#include "ivug-datatypes.h"
-#include <time.h> // localtime_r
+#include <time.h>
#include "ivug-uuid.h"
#ifdef __cplusplus
*/
bool EnumFilesInDir(const char *dir, EnumFilesCB pFunc, void *data);
-/*
- Retrieve file count in @dir.
- return -1 when error occured.
-*/
-int GetFilesCountInDir(const char *dir);
-
#ifdef __cplusplus
}
#include <stdbool.h>
#include <notification.h>
-#include "ivug-define.h"
#ifdef __cplusplus
extern "C" {
#include <string.h>
#include <sys/stat.h>
#include <dirent.h>
-#include <Elementary.h>
-
+#include <unistd.h>
#ifdef __cplusplus
extern "C" {
const char* ivug_file_get(const char path[]);
char* ivug_dir_get(const char path[]);
int ivug_file_exists(const char *path);
-Eina_Bool ivug_is_dir(const char *path);
+int ivug_is_dir(const char *path);
int ivug_is_dir_empty(const char *path);
int ivug_mkdir(const char *dir);
int ivug_mkpath(const char *path);
#define __IVUG_FILTER_H__
#include <Eina.h>
-#include "ivug-define.h"
typedef enum {
FILTER_DB,
#ifndef __IVUG_MAINVIEW_MENU_H__
#define __IVUG_MAINVIEW_MENU_H__
-#include "ivug-define.h"
#include "ivug-main-view.h"
#define MAX_BUTTON (3)
#ifndef __IVUG_MAIN_VIEW_TOOLBAR_H__
#define __IVUG_MAIN_VIEW_TOOLBAR_H__
+#include "ivug-main-view-priv.h"
/*
Enable / Disable buttons on tool bar
*/
#define __IVUG_MAIN_VIEWER_H__
#include "ivug-common.h"
-#include "ivug-parameter.h"
-#include "ivug-medialist.h"
#include "ivug-base.h"
-
#define MAX_CTRL_ITEM_CNT 5
//control bar type
#ifndef __IVUG_MEDIADATA_H__
#define __IVUG_MEDIADATA_H__
-#include "ivug-define.h"
-
#include "ivug-media.h"
#ifdef __cplusplus
#ifndef __IVUG_MEDIALIST_H__
#define __IVUG_MEDIALIST_H__
-#include "ivug-define.h"
-#include "ivug-datatypes.h"
#include "ivug-media.h"
-
#include "ivug-filter.h"
-//typedef void *Media_Item;
-//typedef void Media_List;
typedef struct _Media_Data Media_Data;
typedef bool (*ivug_medialist_cb)(Media_List *mList, void *data);
#include <stdbool.h>
#include <app.h>
#include <Elementary.h>
-
-#include "ivug-define.h"
#include "ivug-datatypes.h"
#include "ivug-filter.h"
#ifndef __IVUG_PHOTOCAM_H__
#define __IVUG_PHOTOCAM_H__
-#include "ivug-common.h"
-#include "ivug-parameter.h"
-#include "ivug-medialist.h"
+//#include "ivug-common.h"
#include "Evas.h"
enum {
PC_POSITION_LEFT = 0,
#define __IVUG_POPUP_H__
#include "ivug-common.h"
-//#include "ivug-widgets.h"
typedef enum _Popup_Response {
POPUP_RESPONSE_NONE = -1,
Evas_Object* ivug_deletepopup_show(Evas_Object* parent,
const char* file_type, Evas_Smart_Cb response, void* user_data);
-Evas_Object *ivug_tag_buddy_access_popup_show(Evas_Object *parent, Evas_Smart_Cb check_response,
- Evas_Smart_Cb response, void *data);
-
-Evas_Object *ivug_nearby_popup_show(Evas_Object *parent, Evas_Smart_Cb check_response, bool state,
- Evas_Smart_Cb response, void *data);
-
#ifdef __cplusplus
}
#endif
#ifndef __IVUG_SLIDER_NEW_H__
#define __IVUG_SLIDER_NEW_H__
-#include "ivug-define.h"
-
#include <Elementary.h>
#include "ivug-media.h"
#pragma once
-// Slide Show
-
-/*
- Start slide show.
-
- if bSlideFirst == EINA_TRUE, slide and then wait interval time
- if bSlideFirst == EINA_FALSE, wait interval time and then slide
-*/
#include <Elementary.h>
-#include <player.h>
-#include <glib.h>
-
-#include "ivug-define.h"
-#include "ivug-medialist.h"
-#include "ivug-config.h"
#include "ivug-effect.h"
#include "ivug-main-view.h"
-//using namespace std;
-
#define DATA_PATH DATADIR"/"
typedef struct {
Ecore_Event_Handler *visibility_handler;
Media_Item *cur_item;
- GList *face_record_list;
void *dali_viewer_handle; /*3D slidehshow image view handle*/
Media_Item *downloading_item; /* only used for web image*/
int xPixmapId;
- player_h vmpHandle; /*Used for video and music*/
Slide_Layout sLayout[2];
Evas_Object *pauseLayout;
#include "ivug-parameter.h"
#include "ivug-medialist.h"
-
#include "ivug-slideshow.h"
-
typedef struct {
Evas_Object *parent;
#pragma once
-// Slide Show
-
-/*
- Start slide show.
-
- if bSlideFirst == EINA_TRUE, slide and then wait interval time
- if bSlideFirst == EINA_FALSE, wait interval time and then slide
-*/
#include <Elementary.h>
-#include "ivug-define.h"
#include "ivug-medialist.h"
#include "ivug-config.h"
SLIDE_SHOW_PAUSE,
} slideshow_state_t;
-/*
-Signals
- "slideshow,finished" with slideshow_state_t
-*/
-
typedef struct _SlideShow SlideShow;
#ifdef __cplusplus
#ifndef __IVUG_STRING_H__
#define __IVUG_STRING_H__
-#include <libintl.h>
+#include <stdio.h>
#include <app.h>
-#include "ivug-define.h"
-
static inline char * ivug_get_resource_path()
{
#include "ivug-datatypes.h"
#include <stdbool.h>
-
-
#ifdef __cplusplus
extern "C" {
#endif
-
UUID uuid_assign(UUID id);
void uuid_free(UUID id);
*/
#include <stdio.h>
-#include <stdarg.h>
#include <stdbool.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <time.h> // localtime_r
-#include <sys/time.h> // gettimeofday
-#include <unistd.h>
-#include <string.h> // strrchr
+#include <time.h>
#include <dlog.h>
-#undef ECORE_TIMER
+#include "debug.h"
+#undef ECORE_TIMER
#undef PRINT_TID
#ifndef __G_LIB_H__
*/
#undef IV_FATURE_LOGGING_FATAL
-#include "debug.h"
-
enum {
_DEBUG_OUTPUT_DIRECTION_CONSOLE = (1 << 0),
_DEBUG_OUTPUT_DIRECTION_SYSLOG = (1 << 1),
// console message slower than dlog about 30~40 ms
#define _DEBUG_OUTPUT_DIRECTION (_DEBUG_OUTPUT_DIRECTION_DLOG)
-#include <dlog.h>
-
#ifndef INI_PATH
#define INI_PATH "/var/log"
#endif
}
-
-
#include "ivug-callback.h"
#include <stdlib.h>
-//callback_func_t g_callback;
callback_handle_t * ivug_callback_register()
{
return callback_handle;
}
-void ivug_callback_set_callback(callback_handle_t *handle, callback_func_t callback, void *data)
-{
- IV_ASSERT(handle != NULL);
- handle->CBFunc = callback;
- handle->data = data;
-}
-
-void ivug_callback_call(callback_handle_t *handle, void *data1, void *data2, void *data3)
-{
- IV_ASSERT(handle != NULL);
- if (handle->CBFunc) {
- (handle->CBFunc)(data1, data2, data3, handle->data);
- }
-}
-
void ivug_callback_unregister(callback_handle_t *handle)
{
IV_ASSERT(handle != NULL);
* limitations under the License.
*/
-#include "ivug-define.h"
-#include "ivug-datatypes.h"
-#include "ivug-uuid.h"
-
-#include <Elementary.h>
-#include <assert.h>
-#include <system_settings.h>
+#include <stdlib.h>
#include <app_preference.h>
#include "ivug-debug.h"
* limitations under the License.
*/
-#include "ivug-define.h"
+#include <stdio.h>
+#include <stdlib.h>
+#include <media_content.h>
#include "ivug-debug.h"
#include "ivug-util.h"
#include "ivug-db.h"
-#include <Elementary.h>
-#include <media_content.h>
-
-#include <time.h>
-
#define DB_QUERY_STORAGE_ALL "(MEDIA_STORAGE_TYPE=0 OR MEDIA_STORAGE_TYPE=1 OR MEDIA_STORAGE_TYPE=101 OR MEDIA_STORAGE_TYPE=121)"
#define LOG_LVL DBG_MSG_LVL_HIGH
#define LOG_CAT "IV-DB"
* limitations under the License.
*/
-#include "ivug-dir.h"
-
#include <stdio.h>
#include <dirent.h>
-#include <stdlib.h>
#include "ivug-debug.h"
-#include <linux/limits.h>
+#include "ivug-dir.h"
bool EnumFilesInDir(const char *dir, EnumFilesCB pFunc, void *data)
{
return true;
}
-
-int GetFilesCountInDir(const char *dir)
-{
- struct dirent ent_struct;
- struct dirent *dptr;
- DIR *dirp;
-
- if ((dirp = opendir(dir)) == NULL) {
- MSG_UTIL_ERROR("Cannot open dir : %s", dir);
- return -1;
- }
-
- int nCount = 0;
-
- while ((readdir_r(dirp, &ent_struct, &dptr) == 0) && dptr) {
- if (dptr->d_type == DT_REG) { // Only for gegular file
- nCount++;
- }
- }
-
- closedir(dirp);
-
- return nCount;
-}
* limitations under the License.
*/
+#include <stdlib.h>
+#include <time.h>
#include "ivug-debug.h"
#include "ivug-exif.h"
#include "ivug-file-util.h"
} \
} while (0)
-
-#include <stdlib.h>
-#include <string.h>
-#include <stdbool.h>
-#include <time.h>
-#include <Elementary.h>
-
#define IV_EXIF_BUF_LEN_MAX 65536L
#define IV_EXIF_BUF_TIME_LEN_MAX 20
#define IV_EXIF_DEFAULT_YEAR 1900
* limitations under the License.
*/
-#include "ivug-define.h"
+#include <stdlib.h>
+#include <metadata_extractor.h>
+#include <mime_type.h>
#include "ivug-file-info.h"
#include "ivug-debug.h"
#include "ivug-util.h"
#include "ivug-file-util.h"
-#include <metadata_extractor.h>
-#include <string.h>
-#include <Evas.h>
-#include <Ecore_Evas.h>
-#include <Ecore_File.h>
-#include <Evas.h>
-
-#include <mime_type.h>
-
#define BUF_LEN (255)
static const char *_conver_error(int err)
}
}
-Eina_Bool ivug_is_dir(const char *path)
+int ivug_is_dir(const char *path)
{
struct stat info = {0,};
if (!path) {
* limitations under the License.
*/
-#include "ivug-define.h"
+#include <glib.h>
#include "ivug-debug.h"
-#include "ivug-util.h"
-#include "ivug-db.h"
-
-#include <libintl.h>
-
#include "ivug-language-mgr.h"
-#include <glib.h>
-
-#include <Elementary.h>
#define LOG_LVL DBG_MSG_LVL_HIGH
#define LOG_CAT "IV-LANGUAGE"
* limitations under the License.
*/
-
-#include "ivug-define.h"
-#include "ivug-uuid.h"
-
-#include "ivug-util.h"
-#include "ivug-file-util.h"
-#include "ivug-debug.h"
-#include "ivug-file-info.h"
-#include "ivug-db.h"
-
+#include <glib.h>
#include <unistd.h>
#include <stdlib.h>
-#include <math.h>
#include <string.h>
-#include <sys/stat.h>
-#include <sys/types.h>
-#include <glib.h>
-#include<limits.h>
-
#include <system_settings.h>
#include <storage/storage.h>
#include <utils_i18n.h>
-
-#include <unicode/udat.h>
-#include <unicode/ustring.h>
-#include <unicode/uloc.h>
-#include <unicode/ucal.h>
-#include <unicode/udatpg.h>
-#include <unicode/utmscale.h>
+#include "ivug-define.h"
+#include "ivug-util.h"
+#include "ivug-file-util.h"
+#include "ivug-debug.h"
+#include "ivug-file-info.h"
static int device_id = -1;
static int mmc_id = -1;
* limitations under the License.
*/
-#include <stdio.h>
#include <stdlib.h>
#include <string.h>
* limitations under the License.
*/
-#include <sys/time.h> // gettimeofday
-
-#include <stdio.h>
+#include <sys/time.h>
#include <malloc.h>
#include <string.h>
#include <assert.h>
#include <time.h>
-#include "debug.h"
-
+#include <unistd.h>
+#include <stdarg.h>
+#include "statistics.h"
#ifdef STANDALONE
#define EXPORT_API
#endif
-#include <sys/time.h>
-#include <sys/utsname.h>
-#include <sys/resource.h>
-#include <unistd.h>
-
-#include <stdarg.h>
-#include "statistics.h"
-
#define MAX_UINT32 (0xFFFFFFFFL)
#define MAX_UINT64 (0xFFFFFFFFFFFFFFFFLL)
* limitations under the License.
*/
+#include <image_util.h>
+#include <storage.h>
+#include <media_info.h>
+#include <media_content.h>
+#include <string>
#include <Elementary.h>
-
#include "ivug-crop-circular.h"
-#include "ivug-crop-view.h"
-
#include "ivug-debug.h"
-#include "ivug-string.h"
#include "ivug-context.h"
-#include "ivug-db.h"
#include "ivug-exif.h"
-#include "ivug-language-mgr.h"
-#include "ivug-common.h"
#include "ivug-file-info.h"
+#ifdef INSERT_TO_DB
+#include "ivug-db.h"
+#endif
+
#undef LOG_LVL
#define LOG_LVL DBG_MSG_LVL_MED
#undef LOG_CAT
#define LOG_CAT "IV-CROP-UG"
-
-
-#include <image_util.h>
-#include <storage.h>
-#include <media_info.h>
-#include <media_content.h>
-#include <string>
#define SMALL_RECT_LEN (35)
#define DRAG_TOLERANCE (400)
* limitations under the License.
*/
+#include <image_util.h>
+#include <storage.h>
+#include <media_info.h>
+#include <media_content.h>
+#include <string>
#include <Elementary.h>
-
#include "ivug-crop-ug.h"
-#include "ivug-crop-view.h"
-
#include "ivug-debug.h"
-#include "ivug-string.h"
#include "ivug-context.h"
-#include "ivug-db.h"
#include "ivug-exif.h"
-#include "ivug-language-mgr.h"
-#include "ivug-common.h"
#include "ivug-file-info.h"
#undef LOG_LVL
#undef LOG_CAT
#define LOG_CAT "IV-CROP-UG"
-
-
-#include <image_util.h>
-#include <storage.h>
-#include <media_info.h>
-#include <media_content.h>
-#include <string>
#define SMALL_LEN (30)
static media_packet_h packet_h;
*/
#include <app.h>
-#include <Elementary.h>
-
#include "ivug-ext-ug.h"
-#include "ivug-util.h"
#include "ivug-debug.h"
-#include "ivug-db.h"
-#include "ivug-context.h"
+#include "ivug-string.h"
+#include "ivug-language-mgr.h"
void ivug_ext_app_control_reply_cb(app_control_h request, app_control_h reply, app_control_result_e result, void *user_data)
{
#include <string.h>
#include <system_settings.h>
-#include <limits.h>
-
-#include "ivug-common.h"
+#include <notification.h>
#include "ivug-debug.h"
#include "ivug-parameter.h"
-#include "ivug-file-info.h"
-#include "ivug-base.h"
#include "ivug-main-view.h"
-#include "ivug-crop-ug.h"
-#include "ivug-context.h"
-#include <notification.h>
-
-#include "ivug-db.h"
-#include "ivug-util.h"
+#include "ivug-main-view-priv.h"
//bundle key
#define IVUG_BUNDLE_KEY_VIEW_MODE "View Mode"
* limitations under the License.
*/
-#include <Elementary.h>
-#include <app.h>
#include <storage.h>
#include <efl_extension.h>
-#include "ivug-common.h"
-#include "ivug-util.h"
-#include "ivug-popup.h"
-#include "ivug-callback.h"
#include "ivug-context.h"
-#include "ivug-language-mgr.h"
#include "ivug-base.h"
static Eina_Bool _on_exit_timer_expired(void *data)
*/
#include <efl_extension.h>
-
#include "ivug-popup.h"
-#include "ivug-name-view.h"
-
-#include "ivug-language-mgr.h"
-#include "ivug-context.h"
#define NOTIFY_TIMEOUT 3.0
-
#define IVUG_POPUP_EDJ_NAME full_path(EDJ_PATH, "/ivug-popup.edj")
-
#define TAG_BUDDY_ACCESS_FONT_SIZE 40
#define TAG_BUDDY_ACCESS_FONT_COLOR "#FFFFFFFF"
#define TAG_BUDDY_ACCESS_BUFFER 1024
*/
#include <algorithm>
-
-#include <pthread.h>
-
+#include <notification.h>
#include "ivug-common.h"
#include "ivug-slider-new.h"
-
-#include "ivug-parameter.h"
-#include "ivug-define.h"
-#include "ivug-config.h"
-
-#include "ivug-util.h"
-
#include "ivug-main-view.h"
#include "ivug-main-view-priv.h"
-#include <notification.h>
-
#define ICON_PLAY_SIZE 100
#define LOGNTAP_THRESHOLD (100) // allow moving distance(pixel)
#define TILT_THRESHOLD (3) // allow tilt value
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-#include <efl_extension.h>
+#include <efl_extension.h>
#include "ivug-detail-view.h"
#include "ivug-file-info.h"
-#include "ivug-file-util.h"
#include "ivug-name-view.h"
-#include "ivug-util.h"
#include "ivug-main-view-menu.h"
#define FILE_SIZE_LEN_MAX 64
* limitations under the License.
*/
+#include <string>
+#include <storage/storage.h>
+#include <efl_extension.h>
+#include <app_manager.h>
+#include <notification.h>
#include "ivug-common.h"
-#include "ivug-main-view.h"
-#include "ivug-main-view-toolbar.h"
#include "ivug-main-view-menu.h"
#include "ivug-main-view-priv.h"
-
-#include "ivug-ext-ug.h"
#include "ivug-popup.h"
-
-#include "ivug-media.h"
#include "ivug-slideshow.h"
-
#include "ivug-file-info.h"
#include "ivug-detail-view.h"
-#include <storage/storage.h>
-#include <shortcut_manager.h>
-#include <efl_extension.h>
-#include <app_manager.h>
-#include <efl_extension.h>
-#include <notification.h>
-#include <string>
-#include <glib.h>
-
-#include "ivug-db.h"
-#include "ivug-crop-view.h"
-#include "ivug-util.h"
-#include "ivug-config.h"
-#include "ivug-language-mgr.h"
-
-#define GALLERY_PKG_NAME "com.samsung.gallery"
-#define SHORTCUT_PREFIX "gallery:imageviewer:"
-#define SHORTCUT_PREFIX_LEN strlen(SHORTCUT_PREFIX)
-#define ICON_NEAR_BY_PHONE "icon.nearby.phone"
-#define ICON_NEAR_BY_UNKNOWN "icon.nearby.unknown"
-
static void
ivug_notification_popup_create(Evas_Object * pParent, const char* text)
{
*/
#include "ivug-common.h"
-
-#include "ivug-main-view.h"
-#include "ivug-main-view-menu.h"
-#include "ivug-main-view-priv.h"
+#include "ivug-main-view-toolbar.h"
+//#include "ivug-main-view.h"
+//#include "ivug-main-view-menu.h"
+//#include "ivug-main-view-priv.h"
#include <mime_type.h>
#include <media_content.h>
#include <Ecore.h>
#include <Ecore_IMF.h>
-
-#include "ivug-common.h"
-#include "ivug-parameter.h"
#include "ivug-main-view.h"
#include "ivug-main-view-toolbar.h"
#include "ivug-main-view-menu.h"
#include "ivug-photocam.h"
-#include "ivug-filter.h"
-#include "ivug-ext-ug.h"
-#include "ivug-db.h"
-#include "ivug-util.h"
-#include "ivug-media.h"
-#include "ivug-popup.h"
-#include "ivug-name-view.h"
-#include "ivug-slideshow.h"
#include "ivug-ext-ug.h"
-#include "ivug-language-mgr.h"
-#include "ivug-file-info.h"
-#include "ivug-main-view-priv.h"
#include "ivug-popup.h"
#include "ivug-crop-ug.h"
#include "ivug-crop-circular.h"
#include <efl_extension.h>
#include <notification.h>
-
-#include "ivug-common.h"
#include "ivug-name-view.h"
#include "ivug-popup.h"
-#include "ivug-media.h"
-#include "ivug-util.h"
-#include "ivug-language-mgr.h"
#undef LOG_LVL
#define LOG_LVL DBG_MSG_LVL_HIGH
* limitations under the License.
*/
-
#include "ivug-main-view.h"
#include "ivug-photocam.h"
#include "ivug-main-view-priv.h"
-#include "ivug-main-view-toolbar.h"
#include "ivug-file-info.h"
#define ABS(x) ((x) < 0 ? -(x) : (x))
* limitations under the License.
*/
+#include <device/power.h>
#include "ivug-common.h"
-#include "ivug-parameter.h"
-
#include "ivug-slideshow-view.h"
#include "ivug-main-view.h"
-#include <device/power.h>
-
-#include "ivug-filter.h"
-
-#include "ivug-popup.h"
-
-#include "ivug-language-mgr.h"
-
-
#undef LOG_LVL
#define LOG_LVL DBG_MSG_LVL_MED
* limitations under the License.
*/
-#include "ivug-define.h"
+#include <Eina.h>
+#include <media_content.h>
#include "ivug-data-list.h"
-#include "ivug-uuid.h"
#include "ivug-debug.h"
-#include "ivug-media.h"
#include "ivug-mediadata.h"
#include "ivug-file-info.h"
#include "ivug-db.h"
#include "ivug-dir.h"
#include "ivug-util.h"
-#include "ivug-filter.h"
-
-#include <Eina.h>
-#include <media_content.h>
static char *_strerror_db(int error)
{
#include "ivug-datatypes.h"
#include "ivug-filter.h"
-
-#include <Eina.h>
-
#include "ivug-debug.h"
#include "ivug-uuid.h"
-#include "ivug-util.h"
void ivug_data_filter_delete(Filter_struct *filter_str)
{
* limitations under the License.
*/
-#include "ivug-define.h"
-#include "ivug-datatypes.h"
+#include <aul.h>
+#include <app.h>
#include "ivug-uuid.h"
#include "ivug-debug.h"
-#include "ivug-medialist.h"
#include "ivug-mediadata.h"
#include "ivug-util.h"
#include "ivug-file-info.h"
-
-#include "ivug-db.h"
#include <media_content.h>
-#include <aul.h>
-#include <app.h>
static inline char * ivug_get_resource_path()
{
* limitations under the License.
*/
-#include "ivug-define.h"
-
+#include <Ecore.h>
+#include <pthread.h>
+#include <algorithm>
#include "ivug-debug.h"
#include "ivug-medialist.h"
-
#include "ivug-mediadata.h"
-
#include "ivug-data-list.h"
-
-
#include "ivug-db.h"
-#include <Ecore.h>
-#include <pthread.h>
-#include <algorithm>
-
-
#undef DEBUG_DUMP_LIST
#define LOAD_BLOCK_COUNT (100)
* limitations under the License.
*/
-#include <stdlib.h>
-
+#include <device/power.h>
+#include <assert.h>
#include <efl_extension.h>
-
#include "ivug-string.h"
-#include "ivug-anim.h"
#include "ivug-slideshow.h"
#include "ivug-slideshow-priv.h"
-
#include "ivug-debug.h"
-#include "ivug-config.h"
-#include "ivug-define.h"
-#include "ivug-datatypes.h"
-#include "ivug-uuid.h"
-#include "ivug-util.h"
-#include "ivug-context.h"
-
-#include <Elementary.h>
-#include <device/power.h>
-#include <assert.h>
-
#define DEFAULT_THUMBNAIL "/opt/usr/share/media/.thumb/thumb_default.png"
#undef LOG_LVL
#include <stddef.h> /* for NULL */
-#include <memory.h>
#include <stdlib.h>
#include "ivug-debug.h"
* limitations under the License.
*/
-#include <Elementary.h>
#include <app.h>
#include "ivug-debug.h"
-#include "ivug-define.h"
#include "ivug-base.h"
#define _CONSTRUCTOR __attribute__ ((constructor))