You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
382 lines
12 KiB
382 lines
12 KiB
#ifndef _EPHOTO_H_ |
|
# define _EPHOTO_H_ |
|
|
|
# ifdef HAVE_CONFIG_H |
|
# include "config.h" |
|
# endif |
|
|
|
# include <stdio.h> |
|
# include <stdlib.h> |
|
# include <string.h> |
|
# include <dirent.h> |
|
# include <unistd.h> |
|
# include <limits.h> |
|
# include <math.h> |
|
# include <Eet.h> |
|
# include <Ecore.h> |
|
# include <Ecore_Evas.h> |
|
# include <Ecore_Ipc.h> |
|
# include <Ecore_File.h> |
|
# include <Efreet_Mime.h> |
|
# include <Elementary.h> |
|
# include <Elementary_Cursor.h> |
|
# include <Eina.h> |
|
# include <Edje.h> |
|
# include <Evas.h> |
|
# include <Eio.h> |
|
|
|
# ifdef HAVE_PO |
|
# include <locale.h> |
|
# endif |
|
|
|
#if HAVE_GETTEXT && ENABLE_NLS |
|
# include <libintl.h> |
|
# define _(string) gettext (string) |
|
#else |
|
# define _(string) (string) |
|
# define ngettext(String1, String2, Var) Var == 1 ? String1 : String2 |
|
#endif |
|
|
|
# define USE_IPC |
|
|
|
/*local types*/ |
|
typedef struct _Ephoto_Config Ephoto_Config; |
|
typedef struct _Ephoto Ephoto; |
|
typedef struct _Ephoto_Entry Ephoto_Entry; |
|
typedef struct _Ephoto_Event_Entry_Create Ephoto_Event_Entry_Create; |
|
|
|
typedef enum _Ephoto_State Ephoto_State; |
|
typedef enum _Ephoto_Orient Ephoto_Orient; |
|
typedef enum _Ephoto_Sort Ephoto_Sort; |
|
typedef enum _Ephoto_Ipc_Domain Ephoto_Ipc_Domain; |
|
|
|
/*main window functions*/ |
|
Evas_Object *ephoto_window_add(const char *path); |
|
void ephoto_title_set(Ephoto *ephoto, const char *title); |
|
void ephoto_thumb_size_set(Ephoto *ephoto, int size); |
|
Evas_Object *ephoto_thumb_add(Ephoto *ephoto, Evas_Object *parent, |
|
const char *path); |
|
void ephoto_thumb_path_set(Evas_Object *obj, const char *path); |
|
void ephoto_directory_set(Ephoto *ephoto, const char *path, |
|
Elm_Object_Item *expanded, Eina_Bool dirs_only, Eina_Bool thumbs_only); |
|
void ephoto_show_folders(Ephoto *ephoto, Eina_Bool toggle); |
|
|
|
/*config panel functions*/ |
|
Eina_Bool ephoto_config_init(Ephoto *em); |
|
void ephoto_config_save(Ephoto *em); |
|
void ephoto_config_free(Ephoto *em); |
|
void ephoto_config_main(Ephoto *em); |
|
|
|
/*single image functions*/ |
|
Evas_Object *ephoto_single_browser_add(Ephoto *ephoto, Evas_Object *parent); |
|
void ephoto_single_browser_show_controls(Ephoto *ephoto); |
|
void ephoto_single_browser_entries_set(Evas_Object *obj, Eina_List *entries); |
|
void ephoto_single_browser_entry_set(Evas_Object *obj, Ephoto_Entry *entry); |
|
void ephoto_single_browser_focus_set(Ephoto *ephoto); |
|
void ephoto_single_browser_path_pending_set(Evas_Object *obj, |
|
const char *path); |
|
void ephoto_single_browser_path_pending_unset(Evas_Object *obj); |
|
void ephoto_single_browser_path_created(Evas_Object *obj, Ephoto_Entry *entry); |
|
void ephoto_single_browser_image_data_update(Evas_Object *main, |
|
Evas_Object *image, unsigned int *image_data, Evas_Coord w, Evas_Coord h); |
|
void ephoto_single_browser_image_data_done(Evas_Object *main, |
|
unsigned int *image_data, Evas_Coord w, Evas_Coord h); |
|
void ephoto_single_browser_cancel_editing(Evas_Object *main); |
|
void ephoto_single_browser_slideshow(Evas_Object *obj); |
|
void ephoto_single_browser_adjust_offsets(Ephoto *ephoto); |
|
/* smart callbacks called: "back" - the user wants to go back to the previous |
|
* screen. */ |
|
|
|
/*slideshow functions*/ |
|
Evas_Object *ephoto_slideshow_add(Ephoto *ephoto, Evas_Object *parent); |
|
void ephoto_slideshow_entries_set(Evas_Object *obj, Eina_List *entries); |
|
void ephoto_slideshow_entry_set(Evas_Object *obj, Ephoto_Entry *entry); |
|
void ephoto_slideshow_show_controls(Ephoto *ephoto); |
|
/* smart callbacks called: "back" - the user wants to go back to the previous |
|
* screen. */ |
|
|
|
/*thumbnail browser functions*/ |
|
Evas_Object *ephoto_thumb_browser_add(Ephoto *ephoto, Evas_Object *parent); |
|
void ephoto_thumb_browser_show_controls(Ephoto *ephoto); |
|
void ephoto_thumb_browser_insert(Ephoto *ephoto, Ephoto_Entry *entry); |
|
void ephoto_thumb_browser_remove(Ephoto *ephoto, Ephoto_Entry *entry); |
|
void ephoto_thumb_browser_update(Ephoto *ephoto, Ephoto_Entry *entry); |
|
void ephoto_thumb_browser_update_info_label(Ephoto *ephoto); |
|
void ephoto_thumb_browser_slideshow(Evas_Object *obj); |
|
void ephoto_thumb_browser_paste(Ephoto *ephoto, Elm_Object_Item *item); |
|
/* smart callbacks called: "selected" - an item in the thumb browser is |
|
* selected. The selected Ephoto_Entry is passed as event_info argument. */ |
|
|
|
/*directory browser functions*/ |
|
Evas_Object *ephoto_directory_browser_add(Ephoto *ephoto, Evas_Object *parent); |
|
void ephoto_directory_browser_initialize_structure(Ephoto *ephoto); |
|
void ephoto_directory_browser_top_dir_set(Ephoto *ephoto, const char *dir); |
|
|
|
/*thumbnailing functions taken from enlightenment*/ |
|
int e_thumb_init(void); |
|
int e_thumb_shutdown(void); |
|
Evas_Object *e_thumb_icon_add(Evas *evas); |
|
void e_thumb_icon_file_set(Evas_Object *obj, const char *file, const char *key); |
|
void e_thumb_icon_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h); |
|
void e_thumb_icon_begin(Evas_Object *obj); |
|
void e_thumb_icon_end(Evas_Object *obj); |
|
void e_thumb_icon_rethumb(Evas_Object *obj); |
|
const char *e_thumb_sort_id_get(Evas_Object *obj); |
|
void e_thumb_client_data(Ecore_Ipc_Event_Client_Data *e); |
|
void e_thumb_client_del(Ecore_Ipc_Event_Client_Del *e); |
|
int e_ipc_init(void); |
|
int e_ipc_shutdown(void); |
|
|
|
/*editing functions*/ |
|
Evas_Object *ephoto_editor_add(Ephoto *ephoto, const char *title, |
|
const char *data_name, void *data); |
|
void ephoto_editor_del(Evas_Object *obj); |
|
void ephoto_cropper_add(Ephoto *ephoto, Evas_Object *main, Evas_Object *parent, |
|
Evas_Object *image_parent, Evas_Object *image); |
|
void ephoto_bcg_add(Ephoto *ephoto, Evas_Object *main, Evas_Object *parent, |
|
Evas_Object *image); |
|
void ephoto_hsv_add(Ephoto *ephoto, Evas_Object *main, Evas_Object *parent, |
|
Evas_Object *image); |
|
void ephoto_color_add(Ephoto *ephoto, Evas_Object *main, Evas_Object *parent, |
|
Evas_Object *image); |
|
void ephoto_red_eye_add(Ephoto *ephoto, Evas_Object *main, Evas_Object *parent, |
|
Evas_Object *image); |
|
void ephoto_filter_blur(Evas_Object *main, Evas_Object *image); |
|
void ephoto_filter_sharpen(Evas_Object *main, Evas_Object *image); |
|
void ephoto_filter_black_and_white(Evas_Object *main, Evas_Object *image); |
|
void ephoto_filter_old_photo(Evas_Object *main, Evas_Object *image); |
|
void ephoto_filter_histogram_eq(Evas_Object *main, Evas_Object *image); |
|
|
|
/*file functions*/ |
|
void ephoto_file_save_image(Ephoto *ephoto, Ephoto_Entry *entry, |
|
Evas_Object *image); |
|
void ephoto_file_save_image_as(Ephoto *ephoto, Ephoto_Entry *entry, |
|
Evas_Object *image); |
|
void ephoto_file_upload_image(Ephoto *ephoto, Ephoto_Entry *entry); |
|
void ephoto_file_new_dir(Ephoto *ephoto, const char *path); |
|
void ephoto_file_rename(Ephoto *ephoto, const char *path); |
|
void ephoto_file_move(Ephoto *ephoto, Eina_List *files, const char *path); |
|
void ephoto_file_copy(Ephoto *ephoto, Eina_List *files, const char *path); |
|
void ephoto_file_paste(Ephoto *ephoto, Eina_List *files, Eina_Bool copy, |
|
const char *path); |
|
void ephoto_file_delete(Ephoto *ephoto, Eina_List *files, |
|
Eina_File_Type type); |
|
void ephoto_file_empty_trash(Ephoto *ephoto, Eina_List *files); |
|
|
|
/*data types and structures*/ |
|
|
|
enum _Ephoto_State |
|
{ |
|
EPHOTO_STATE_THUMB, |
|
EPHOTO_STATE_SINGLE, |
|
EPHOTO_STATE_SLIDESHOW |
|
}; |
|
|
|
enum _Ephoto_Orient |
|
{ |
|
EPHOTO_ORIENT_0 = 1, |
|
EPHOTO_ORIENT_FLIP_HORIZ = 2, |
|
EPHOTO_ORIENT_180 = 3, |
|
EPHOTO_ORIENT_FLIP_VERT = 4, |
|
EPHOTO_ORIENT_FLIP_VERT_90 = 5, |
|
EPHOTO_ORIENT_90 = 6, |
|
EPHOTO_ORIENT_FLIP_HORIZ_90 = 7, |
|
EPHOTO_ORIENT_270 = 8 |
|
}; |
|
|
|
enum _Ephoto_Sort |
|
{ |
|
EPHOTO_SORT_ALPHABETICAL_ASCENDING, |
|
EPHOTO_SORT_ALPHABETICAL_DESCENDING, |
|
EPHOTO_SORT_MODTIME_ASCENDING, |
|
EPHOTO_SORT_MODTIME_DESCENDING |
|
}; |
|
|
|
enum _Ephoto_Ipc_Domain |
|
{ |
|
EPHOTO_IPC_DOMAIN_THUMB |
|
}; |
|
|
|
struct _Ephoto_Config |
|
{ |
|
int config_version; |
|
int thumb_size; |
|
int thumb_gen_size; |
|
const char *directory; |
|
double slideshow_timeout; |
|
const char *slideshow_transition; |
|
int window_width; |
|
int window_height; |
|
Eina_Bool fsel_hide; |
|
double lpane_size; |
|
const char *open; |
|
Eina_Bool prompts; |
|
Eina_Bool drop; |
|
Evas_Object *slide_time; |
|
Evas_Object *slide_trans; |
|
Evas_Object *open_dir; |
|
Evas_Object *open_dir_custom; |
|
Evas_Object *show_prompts; |
|
Evas_Object *move_drop; |
|
}; |
|
|
|
struct _Ephoto |
|
{ |
|
Evas_Object *win; |
|
Evas_Object *layout; |
|
Evas_Object *pager; |
|
Evas_Object *statusbar; |
|
Evas_Object *controls_left; |
|
Evas_Object *controls_right; |
|
Evas_Object *infolabel; |
|
|
|
Evas_Object *thumb_browser; |
|
Evas_Object *single_browser; |
|
Evas_Object *slideshow; |
|
Evas_Object *dir_browser; |
|
Evas_Object *right_menu; |
|
Elm_Object_Item *tb; |
|
Elm_Object_Item *sb; |
|
Elm_Object_Item *sl; |
|
|
|
Eina_List *entries; |
|
Eina_List *selentries; |
|
Eina_List *searchentries; |
|
Eina_List *thumbs; |
|
|
|
Eina_Bool blocking; |
|
Eina_Bool menu_blocking; |
|
Eina_Bool hover_blocking; |
|
Eina_Bool right_blocking; |
|
Eina_Bool folders_toggle; |
|
Eina_Bool editor_blocking; |
|
|
|
Ecore_File_Monitor *monitor; |
|
Ecore_Idler *file_idler; |
|
Eina_List *file_idler_pos; |
|
Eina_List *upload_handlers; |
|
Ecore_Timer *overlay_timer; |
|
Ecore_Con_Url *url_up; |
|
char *url_ret; |
|
char *upload_error; |
|
int file_errors; |
|
|
|
const char *top_directory; |
|
|
|
int thumb_gen_size; |
|
|
|
struct |
|
{ |
|
Ecore_Timer *thumb_regen; |
|
} timer; |
|
struct |
|
{ |
|
Ecore_Job *change_dir; |
|
} job; |
|
|
|
Eio_File *ls; |
|
|
|
Evas_Object *prefs_win; |
|
Ephoto_State state, prev_state; |
|
|
|
Ephoto_Config *config; |
|
}; |
|
|
|
struct _Ephoto_Entry |
|
{ |
|
const char *path; |
|
const char *basename; |
|
const char *label; |
|
double size; |
|
Ephoto *ephoto; |
|
Ecore_File_Monitor *monitor; |
|
Elm_Object_Item *item; |
|
Elm_Object_Item *parent; |
|
Eina_List *free_listeners; |
|
Eina_Bool is_dir; |
|
Eina_Bool no_delete; |
|
Evas_Object *genlist; |
|
}; |
|
|
|
struct _Ephoto_Event_Entry_Create |
|
{ |
|
Ephoto_Entry *entry; |
|
}; |
|
|
|
/*ephoto file functions*/ |
|
Ephoto_Entry *ephoto_entry_new(Ephoto *ephoto, const char *path, |
|
const char *label, Eina_File_Type type); |
|
Eina_Bool ephoto_entry_exists(Ephoto *ephoto, const char *path); |
|
void ephoto_entry_free(Ephoto *ephoto, Ephoto_Entry *entry); |
|
void ephoto_entry_free_listener_add(Ephoto_Entry *entry, |
|
void (*cb) (void *data, const Ephoto_Entry *entry), const void *data); |
|
void ephoto_entry_free_listener_del(Ephoto_Entry *entry, |
|
void (*cb) (void *data, const Ephoto_Entry *entry), const void *data); |
|
void ephoto_entries_free(Ephoto *ephoto); |
|
int ephoto_entries_cmp(const void *pa, const void *pb); |
|
|
|
/*check if image can be loaded*/ |
|
static inline Eina_Bool |
|
_ephoto_eina_file_direct_info_image_useful(const Eina_File_Direct_Info *info) |
|
{ |
|
const char *type, *bname; |
|
int i = 0; |
|
|
|
const char *filters[] = { |
|
"png", "jpeg", "jpg", "eet", "xpm", "tiff", "gif", "svg", "webp", |
|
"pmaps", "bmp", "tga", "wbmp", "ico", "psd", "jp2k", "generic", "3fr", |
|
"ari", "arw", "bay", "crw", "cr2", "cap", "dcs", "dcr", "dng", "drf", |
|
"eip", "erf", "fff", "iiq", "k25", "kdc", "mdc", "mef", "mos", "mrw", |
|
"nef", "nrw", "obm", "orf", "pef", "ptx", "pxn", "r3d", "raf", "raw", |
|
"rwl", "rw2", "rwz", "sr2", "srf", "srw", "tif", "x3f" |
|
}; |
|
|
|
bname = info->path + info->name_start; |
|
if (bname[0] == '.') |
|
return EINA_FALSE; |
|
if ((info->type != EINA_FILE_REG) && (info->type != EINA_FILE_UNKNOWN)) |
|
return EINA_FALSE; |
|
|
|
type = strrchr(bname, '.'); |
|
if (!type) |
|
return EINA_FALSE; |
|
int count = sizeof(filters) / sizeof(filters[0]); |
|
|
|
for (i = 0; i < count; i++) |
|
{ |
|
if (!strcasecmp(type + 1, filters[i])) |
|
return evas_object_image_extension_can_load_get(bname); |
|
} |
|
return EINA_FALSE; |
|
} |
|
|
|
/*check if image can be saved*/ |
|
static inline Eina_Bool |
|
_ephoto_file_image_can_save(const char *ext) |
|
{ |
|
int i = 0; |
|
|
|
const char *filters[] = { |
|
"png", "jpeg", "jpg", "eet", "xpm", "tiff", "tif", "gif", "svg", "webp", |
|
"pmaps", "bmp", "wbmp", "ico", "generic" |
|
}; |
|
|
|
int count = sizeof(filters) / sizeof(filters[0]); |
|
for (i = 0; i < count; i++) |
|
{ |
|
if (!strcasecmp(ext, filters[i])) |
|
return EINA_TRUE; |
|
} |
|
return EINA_FALSE; |
|
} |
|
|
|
/*event types*/ |
|
extern int EPHOTO_EVENT_ENTRY_CREATE; |
|
extern int EPHOTO_EVENT_POPULATE_START; |
|
extern int EPHOTO_EVENT_POPULATE_END; |
|
extern int EPHOTO_EVENT_POPULATE_ERROR; |
|
extern int EPHOTO_EVENT_EDITOR_RESET; |
|
extern int EPHOTO_EVENT_EDITOR_APPLY; |
|
extern int EPHOTO_EVENT_EDITOR_CANCEL; |
|
|
|
#endif
|
|
|