Remove e_fwin.c/.h as they are in fileman module now.

SVN revision: 31259
This commit is contained in:
Christopher Michael 2007-08-12 09:58:07 +00:00
parent 7935a4da9f
commit 367a84179b
2 changed files with 0 additions and 1354 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,53 +0,0 @@
/*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#ifdef E_TYPEDEFS
typedef struct _E_Fwin E_Fwin;
typedef struct _E_Fwin_Apps_Dialog E_Fwin_Apps_Dialog;
#else
#ifndef E_FWIN_H
#define E_FWIN_H
#define E_FWIN_TYPE 0xE0b0101f
struct _E_Fwin
{
E_Object e_obj_inherit;
E_Win *win;
E_Zone *zone;
Evas_Object *scrollframe_obj;
Evas_Object *fm_obj;
Evas_Object *bg_obj;
E_Fwin_Apps_Dialog *fad;
Evas_Object *under_obj;
Evas_Object *over_obj;
struct {
Evas_Coord x, y, max_x, max_y, w, h;
} fm_pan, fm_pan_last;
const char *wallpaper_file;
const char *overlay_file;
const char *scrollframe_file;
const char *theme_file;
};
struct _E_Fwin_Apps_Dialog
{
E_Dialog *dia;
E_Fwin *fwin;
char *app1, *app2;
Evas_Object *o_ilist, *o_fm;
};
EAPI int e_fwin_init (void);
EAPI int e_fwin_shutdown (void);
EAPI E_Fwin *e_fwin_new (E_Container *con, const char *dev, const char *path);
EAPI E_Fwin *e_fwin_zone_new (E_Zone *zone, const char *dev, const char *path);
EAPI void e_fwin_all_unsel (E_Fwin *fwin);
#endif
#endif