|
|
|
#ifdef E_TYPEDEFS
|
|
|
|
|
|
|
|
/* IGNORE this code for now! */
|
|
|
|
|
|
|
|
typedef enum _E_Fm2_View_Mode
|
|
|
|
{
|
|
|
|
E_FM2_VIEW_MODE_ICONS, /* regular layout row by row like text */
|
|
|
|
E_FM2_VIEW_MODE_GRID_ICONS, /* regular grid layout */
|
|
|
|
E_FM2_VIEW_MODE_CUSTOM_ICONS, /* icons go anywhere u drop them (desktop) */
|
|
|
|
|
|
|
|
/* FIXME: not going to implement this at this stage */
|
|
|
|
E_FM2_VIEW_MODE_CUSTOM_GRID_ICONS, /* icons go anywhere u drop them but align to a grid */
|
|
|
|
/* FIXME: not going to implement this at this stage */
|
|
|
|
E_FM2_VIEW_MODE_CUSTOM_SMART_GRID_ICONS, /* icons go anywhere u drop them but try align to icons nearby */
|
|
|
|
/* FIXME: not going to implement this at this stage */
|
|
|
|
E_FM2_VIEW_MODE_LIST /* vertical fileselector list */
|
|
|
|
} E_Fm2_View_Mode;
|
|
|
|
|
|
|
|
typedef enum _E_Fm2_Menu_Flags
|
|
|
|
{
|
|
|
|
E_FM2_MENU_NO_REFRESH = (1 << 0),
|
|
|
|
E_FM2_MENU_NO_SHOW_HIDDEN = (1 << 1),
|
|
|
|
E_FM2_MENU_NO_REMEMBER_ORDERING = (1 << 2),
|
|
|
|
E_FM2_MENU_NO_NEW_DIRECTORY = (1 << 3),
|
|
|
|
E_FM2_MENU_NO_DELETE = (1 << 4),
|
|
|
|
E_FM2_MENU_NO_RENAME = (1 << 5),
|
|
|
|
E_FM2_MENU_NO_CUT = (1 << 6),
|
|
|
|
E_FM2_MENU_NO_COPY = (1 << 7),
|
|
|
|
E_FM2_MENU_NO_PASTE = (1 << 8),
|
|
|
|
E_FM2_MENU_NO_SYMLINK = (1 << 9),
|
|
|
|
E_FM2_MENU_NO_VIEW_MENU = (1 << 10),
|
|
|
|
E_FM2_MENU_NO_INHERIT_PARENT = (1 << 11)
|
|
|
|
} E_Fm2_Menu_Flags;
|
|
|
|
|
|
|
|
typedef enum _E_Fm2_View_Flags
|
|
|
|
{
|
|
|
|
E_FM2_VIEW_NO_FLAGS = 0,
|
|
|
|
E_FM2_VIEW_LOAD_DIR_CUSTOM = (1 << 0),
|
|
|
|
E_FM2_VIEW_SAVE_DIR_CUSTOM = (1 << 1),
|
|
|
|
E_FM2_VIEW_INHERIT_DIR_CUSTOM = (1 << 2),
|
|
|
|
E_FM2_VIEW_DIR_CUSTOM = (E_FM2_VIEW_LOAD_DIR_CUSTOM |
|
|
|
|
E_FM2_VIEW_SAVE_DIR_CUSTOM |
|
|
|
|
E_FM2_VIEW_INHERIT_DIR_CUSTOM)
|
|
|
|
} E_Fm2_View_Flags;
|
|
|
|
|
|
|
|
typedef struct _E_Fm2_Config E_Fm2_Config;
|
|
|
|
typedef struct _E_Fm2_Icon E_Fm2_Icon;
|
|
|
|
typedef struct _E_Fm2_Icon_Info E_Fm2_Icon_Info;
|
|
|
|
|
|
|
|
#define E_FM_SHARED_DATATYPES
|
|
|
|
#include "e_fm_shared.h"
|
|
|
|
#undef E_FM_SHARED_DATATYPES
|
|
|
|
|
|
|
|
#else
|
|
|
|
#ifndef E_FM_H
|
|
|
|
#define E_FM_H
|
|
|
|
|
|
|
|
struct _E_Fm2_Config
|
|
|
|
{
|
|
|
|
/* general view mode */
|
|
|
|
struct {
|
|
|
|
E_Fm2_View_Mode mode;
|
|
|
|
unsigned char open_dirs_in_place;
|
|
|
|
unsigned char selector;
|
|
|
|
unsigned char single_click;
|
|
|
|
unsigned char no_subdir_jump;
|
|
|
|
unsigned char no_subdir_drop;
|
|
|
|
unsigned char always_order;
|
|
|
|
unsigned char link_drop;
|
|
|
|
unsigned char fit_custom_pos;
|
|
|
|
unsigned int single_click_delay;
|
|
|
|
} view;
|
|
|
|
/* display of icons */
|
|
|
|
struct {
|
|
|
|
struct {
|
|
|
|
int w, h;
|
|
|
|
} icon, list;
|
|
|
|
struct {
|
|
|
|
unsigned char w, h;
|
|
|
|
} fixed;
|
|
|
|
struct {
|
|
|
|
unsigned char show;
|
|
|
|
} extension;
|
|
|
|
const char *key_hint;
|
|
|
|
} icon;
|
|
|
|
/* how to sort files */
|
|
|
|
struct {
|
|
|
|
struct {
|
|
|
|
unsigned char no_case;
|
|
|
|
struct {
|
|
|
|
unsigned char first;
|
|
|
|
unsigned char last;
|
|
|
|
} dirs;
|
|
|
|
} sort;
|
|
|
|
} list;
|
|
|
|
/* control how you can select files */
|
|
|
|
struct {
|
|
|
|
unsigned char single, windows_modifiers;
|
|
|
|
} selection;
|
|
|
|
/* the background - if any, and how to handle it */
|
|
|
|
/* FIXME: not implemented yet */
|
|
|
|
struct {
|
|
|
|
const char *background, *frame, *icons;
|
|
|
|
unsigned char fixed;
|
|
|
|
} theme;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _E_Fm2_Icon_Info
|
|
|
|
{
|
|
|
|
Evas_Object *fm;
|
|
|
|
E_Fm2_Icon *ic;
|
|
|
|
const char *file;
|
|
|
|
const char *mime;
|
|
|
|
const char *label;
|
|
|
|
const char *comment;
|
|
|
|
const char *generic;
|
|
|
|
const char *icon;
|
|
|
|
const char *link;
|
|
|
|
const char *real_link;
|
|
|
|
const char *category;
|
|
|
|
struct stat statinfo;
|
|
|
|
unsigned char icon_type;
|
|
|
|
unsigned char mount : 1;
|
|
|
|
unsigned char removable : 1;
|
|
|
|
unsigned char removable_full : 1;
|
|
|
|
unsigned char deleted : 1;
|
|
|
|
unsigned char broken_link : 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
EAPI int e_fm2_init(void);
|
|
|
|
EAPI int e_fm2_shutdown(void);
|
|
|
|
EAPI Evas_Object *e_fm2_add(Evas *evas);
|
|
|
|
EAPI void e_fm2_path_set(Evas_Object *obj, const char *dev, const char *path);
|
|
|
|
EAPI void e_fm2_custom_theme_set(Evas_Object *obj, const char *path);
|
|
|
|
EAPI void e_fm2_custom_theme_content_set(Evas_Object *obj, const char *content);
|
|
|
|
EAPI void e_fm2_underlay_show(Evas_Object *obj);
|
|
|
|
EAPI void e_fm2_underlay_hide(Evas_Object *obj);
|
|
|
|
EAPI void e_fm2_all_unsel(Evas_Object *obj);
|
|
|
|
EAPI void e_fm2_all_sel(Evas_Object *obj);
|
|
|
|
EAPI void e_fm2_path_get(Evas_Object *obj, const char **dev, const char **path);
|
|
|
|
EAPI void e_fm2_refresh(Evas_Object *obj);
|
|
|
|
EAPI const char *e_fm2_real_path_get(Evas_Object *obj);
|
|
|
|
EAPI int e_fm2_has_parent_get(Evas_Object *obj);
|
|
|
|
EAPI void e_fm2_parent_go(Evas_Object *obj);
|
|
|
|
EAPI void e_fm2_config_set(Evas_Object *obj, E_Fm2_Config *cfg);
|
|
|
|
EAPI E_Fm2_Config *e_fm2_config_get(Evas_Object *obj);
|
|
|
|
EAPI Eina_List *e_fm2_selected_list_get(Evas_Object *obj);
|
|
|
|
EAPI Eina_List *e_fm2_all_list_get(Evas_Object *obj);
|
|
|
|
EAPI void e_fm2_select_set(Evas_Object *obj, const char *file, int select);
|
|
|
|
EAPI void e_fm2_file_show(Evas_Object *obj, const char *file);
|
|
|
|
EAPI void e_fm2_icon_menu_replace_callback_set(Evas_Object *obj, void (*func) (void *data, Evas_Object *obj, E_Menu *m, E_Fm2_Icon_Info *info), void *data);
|
|
|
|
EAPI void e_fm2_icon_menu_start_extend_callback_set(Evas_Object *obj, void (*func) (void *data, Evas_Object *obj, E_Menu *m, E_Fm2_Icon_Info *info), void *data);
|
|
|
|
EAPI void e_fm2_icon_menu_end_extend_callback_set(Evas_Object *obj, void (*func) (void *data, Evas_Object *obj, E_Menu *m, E_Fm2_Icon_Info *info), void *data);
|
|
|
|
EAPI void e_fm2_icon_menu_flags_set(Evas_Object *obj, E_Fm2_Menu_Flags flags);
|
|
|
|
EAPI E_Fm2_Menu_Flags e_fm2_icon_menu_flags_get(Evas_Object *obj);
|
|
|
|
EAPI void e_fm2_view_flags_set(Evas_Object *obj, E_Fm2_View_Flags flags);
|
|
|
|
EAPI E_Fm2_View_Flags e_fm2_view_flags_get(Evas_Object *obj);
|
|
|
|
EAPI void e_fm2_window_object_set(Evas_Object *obj, E_Object *eobj);
|
|
|
|
EAPI void e_fm2_icons_update(Evas_Object *obj);
|
|
|
|
|
|
|
|
EAPI void e_fm2_pan_set(Evas_Object *obj, Evas_Coord x, Evas_Coord y);
|
|
|
|
EAPI void e_fm2_pan_get(Evas_Object *obj, Evas_Coord *x, Evas_Coord *y);
|
|
|
|
EAPI void e_fm2_pan_max_get(Evas_Object *obj, Evas_Coord *x, Evas_Coord *y);
|
|
|
|
EAPI void e_fm2_pan_child_size_get(Evas_Object *obj, Evas_Coord *w, Evas_Coord *h);
|
|
|
|
|
|
|
|
EAPI void e_fm2_all_icons_update(void);
|
|
|
|
|
List of changes:
1. Gadcon sities:
-- 'E_Gadcon_Site' enum to list all available sities,
-- added 'is_site' callback for distinguish gadcon sities,
-- 'e_gadcon_site_is_*' helpers written to use in gadget modules,
-- gadcon config dialogs modified to show only gadgets that appropriate
to selected gadcon site,
-- all gadget modules updated for using new callback.
When callback is not provided in module, then gadget can be used in
any gadcon site.
2. Filemanager:
-- added error icon to unexisting path dialog,
-- added callback 'func.abort' to 'E_Fm2_Op_Registry_Entry' to specify
abort operation sequence (if not provided, then operation is not
cancelable),
-- added parameter to 'e_fm2_op_registry_entry_add' to specify abort
method on construct 'E_Fm2_Op_Registry_Entry' or make non-cancelable
operation if this function is not provided,
-- added 'e_fm2_operation_abort' call to cancel efm2 operation,
-- added method '_e_fm2_operation_abort_internal' that represent efm2
default handler of operation cancelling,
-- 'done' and 'total' fields of 'E_Fm2_Op_Registry_Entry' changed to
off_t type, also all message handlers modified to work with it
(to show progress for large files correctly),
-- improved file operation progress processing,
-- added cancel button to operation progress gadget in filemanager window,
-- added delete file glyph to operation progress gadget,
-- improved status message for efm2 operation progress.
3. Filemanager slave:
-- fixed critical bug in message handling via stdin/stdout,
-- fixed critical bug in removing task from list,
-- improved 'E_FM_OP_ABORT' handling,
-- fix rollback counting on moving files.
4. Fileman_opinfo module:
-- a new theme writed: status string and gadget for view operation status
in summary and detail modes,
-- summary mode: operation glyph, state message, progressbar, abort button,
-- detail mode: all for summary + from filename, to filename,
-- summary/detailed button works as trigger,
-- added source of module theme and used images.
4. Pathbar module:
-- non-critical fix, just for safety.
Also patch contains several minor updates to serve main task.
SVN revision: 41224
14 years ago
|
|
|
EAPI void e_fm2_operation_abort(int id);
|
|
|
|
|
|
|
|
EAPI Evas_Object *
|
|
|
|
e_fm2_icon_get(Evas *evas, E_Fm2_Icon *ic,
|
|
|
|
void (*gen_func) (void *data, Evas_Object *obj, void *event_info),
|
|
|
|
void *data, int force_gen, const char **type_ret);
|
|
|
|
EAPI E_Fm2_Icon_Info *e_fm2_icon_file_info_get(E_Fm2_Icon *ic);
|
|
|
|
EAPI void e_fm2_icon_geometry_get(E_Fm2_Icon *ic, int *x, int *y, int *w, int *h);
|
|
|
|
|
|
|
|
EAPI void e_fm2_client_data(Ecore_Ipc_Event_Client_Data *e);
|
|
|
|
EAPI void e_fm2_client_del(Ecore_Ipc_Event_Client_Del *e);
|
|
|
|
|
|
|
|
EAPI int _e_fm2_client_mount(const char *udi, const char *mountpoint);
|
|
|
|
EAPI int _e_fm2_client_unmount(const char *udi);
|
|
|
|
EAPI void _e_fm2_file_force_update(const char *path);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|