#include <Ecore_Job.h>
#include <Ecore_Txt.h>
#include <Ecore_Config.h>
+#include <Ecore_File.h>
#include <Ecore_X_Atoms.h>
#include <Eet.h>
#include <Edje.h>
/* FIXME: if first_map is 1 then we should ignore the first hide event
* or ensure the window is alreayd hidden and events flushed before we
- * create a border for it
- */
+ * create a border for it */
if (first_map)
{
printf("##- FIRST MAP\n");
#include "e.h"
#include <dirent.h>
+#if 0
/* externally accessible functions */
time_t
e_file_mod_time(char *file)
return list;
}
+#endif
#ifndef E_FILE_H
#define E_FILE_H
+#if 0
EAPI time_t e_file_mod_time(char *file);
EAPI int e_file_exists(char *file);
EAPI int e_file_is_dir(char *file);
EAPI int e_file_can_exec(struct stat *st);
EAPI char *e_file_readlink(char *link);
EAPI Evas_List *e_file_ls(char *dir);
+#endif
#endif
#endif
gmc->y = gmc->zone->y + ((gmc->zone->h - gmc->h) * gmc->ay);
_e_gadman_client_callback_call(gmc, E_GADMAN_CHANGE_MOVE_RESIZE);
_e_gadman_client_geometry_apply(gmc);
+ _e_gadman_client_geometry_to_align(gmc);
}
void
}
_e_main_shutdown_push(ecore_shutdown);
/* setup my args */
- ecore_app_args_set((int)argc, (const char **)argv);
+ ecore_app_args_set(argc, (const char **)argv);
/* setup a handler for when e is asked to exit via a system signal */
if (!ecore_event_handler_add(ECORE_EVENT_SIGNAL_EXIT, _e_main_cb_signal_exit, NULL))
{
for (i = 0; i < (int)(sizeof(dirs) / sizeof(char *)); i++)
{
snprintf(buf, sizeof(buf), dirs[i], homedir);
- if (!e_file_mkpath(buf))
+ if (!ecore_file_mkpath(buf))
{
e_error_message_show("Error creating directory:\n"
"%s",
/* outside e's main source to populate these directories from gnome/kde */
/* app menu data etc. */
snprintf(buf, sizeof(buf), "%s/.e/e/applications/all/eterm.eapp", homedir);
- if (!e_file_exists(buf))
+ if (!ecore_file_exists(buf))
{
printf("GETTING YOU STARTED!\n");
snprintf(buf, sizeof(buf),
}
_e_modules = evas_list_append(_e_modules, m);
m->name = strdup(name);
- s = e_file_get_dir(modpath);
+ s = ecore_file_get_dir(modpath);
if (s)
{
- m->dir = e_file_get_dir(s);
+ m->dir = ecore_file_get_dir(s);
free(s);
}
m->func.info(m);
if (p)
{
snprintf(_e_path_buf, sizeof(_e_path_buf), "%s/%s", p, file);
- rp = e_file_realpath(_e_path_buf);
+ rp = ecore_file_realpath(_e_path_buf);
if ((rp) && (rp[0] != 0))
{
strcpy(_e_path_buf, rp);
int x, y, w, h;
char *name;
/* num matches the id of the xinerama screen
- * this zone belongs to.
- */
+ * this zone belongs to. */
int num;
E_Container *container;