formatting

SVN revision: 73502
This commit is contained in:
Mike Blumenkrantz 2012-07-09 11:50:08 +00:00
parent 0410c64a87
commit 5546f4109d
1 changed files with 181 additions and 173 deletions

View File

@ -14,7 +14,8 @@ static E_Fm2_Mime_Handler *bg_hdl = NULL;
struct _E_Bg_Image_Import_Handle
{
struct {
struct
{
void (*func)(void *data, const char *edje_file);
void *data;
} cb;
@ -106,13 +107,17 @@ e_bg_config_get(int container_num, int zone_num, int desk_x, int desk_y)
if (!cfbg) continue;
spec = 0;
if (cfbg->container == container_num) spec++;
else if (cfbg->container >= 0) continue;
else if (cfbg->container >= 0)
continue;
if (cfbg->zone == zone_num) spec++;
else if (cfbg->zone >= 0) continue;
else if (cfbg->zone >= 0)
continue;
if (cfbg->desk_x == desk_x) spec++;
else if (cfbg->desk_x >= 0) continue;
else if (cfbg->desk_x >= 0)
continue;
if (cfbg->desk_y == desk_y) spec++;
else if (cfbg->desk_y >= 0) continue;
else if (cfbg->desk_y >= 0)
continue;
if (spec <= current_spec) continue;
bgfile = cfbg->file;
@ -207,7 +212,8 @@ e_bg_file_get(int container_num, int zone_num, int desk_x, int desk_y)
edje_file_collection_list_free(entries);
}
}
else if ((bgfile) && (bgfile[0])) ok = 1;
else if ((bgfile) && (bgfile[0]))
ok = 1;
if (!ok)
bgfile = e_theme_edje_file_get("base/theme/background",
"e/desktop/background");
@ -225,8 +231,10 @@ e_bg_zone_update(E_Zone *zone, E_Bg_Transition transition)
E_Desk *desk;
if (transition == E_BG_TRANSITION_START) trans = e_config->transition_start;
else if (transition == E_BG_TRANSITION_DESK) trans = e_config->transition_desk;
else if (transition == E_BG_TRANSITION_CHANGE) trans = e_config->transition_change;
else if (transition == E_BG_TRANSITION_DESK)
trans = e_config->transition_desk;
else if (transition == E_BG_TRANSITION_CHANGE)
trans = e_config->transition_change;
if ((!trans) || (!trans[0])) transition = E_BG_TRANSITION_NONE;
desk = e_desk_current_get(zone);
@ -615,7 +623,6 @@ e_bg_handler_set(Evas_Object *obj __UNUSED__, const char *path, void *data __UNU
EAPI int
e_bg_handler_test(Evas_Object *obj __UNUSED__, const char *path, void *data __UNUSED__)
{
if (!path) return 0;
if (_e_bg_file_edje_check(path))
@ -728,3 +735,4 @@ _e_bg_handler_image_imported(void *data __UNUSED__, const char *image_path)
e_bg_update();
e_config_save_queue();
}