aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Walter Seikel2016-01-20 20:40:52 +1000
committerDavid Walter Seikel2016-01-20 20:40:52 +1000
commit993d90b2c65369a12e59e5c91e99f62620b944cf (patch)
tree98a0176f7207d83b5a58e32cdd78dc670b7dba16
parentBanging on the window stuff until the menus behave (mostly). (diff)
downloadSledjHamr-993d90b2c65369a12e59e5c91e99f62620b944cf.zip
SledjHamr-993d90b2c65369a12e59e5c91e99f62620b944cf.tar.gz
SledjHamr-993d90b2c65369a12e59e5c91e99f62620b944cf.tar.bz2
SledjHamr-993d90b2c65369a12e59e5c91e99f62620b944cf.tar.xz
Commenting out no longer needed code, which I should probably just delete soon.
-rw-r--r--src/extantz/extantz.c4
-rw-r--r--src/extantz/extantz.h2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/extantz/extantz.c b/src/extantz/extantz.c
index bf721e2..1091c87 100644
--- a/src/extantz/extantz.c
+++ b/src/extantz/extantz.c
@@ -472,6 +472,8 @@ static winFang *_makeMainMenu(globals *ourGlobals)
472 return me; 472 return me;
473} 473}
474 474
475// No longer need it, but keeping it around for reference. For now.
476#if 0
475// Elm inlined image windows needs this to change focus on mouse click. 477// Elm inlined image windows needs this to change focus on mouse click.
476// Evas style event callback. 478// Evas style event callback.
477static void _cb_mouse_down_elm(void *data, Evas *evas, Evas_Object *obj, void *event_info) 479static void _cb_mouse_down_elm(void *data, Evas *evas, Evas_Object *obj, void *event_info)
@@ -523,7 +525,7 @@ void overlay_add(globals *ourGlobals)
523 evas_object_resize(elm_win_inlined_image_object_get(gld->winwin), ourGlobals->win_w, ourGlobals->win_h); 525 evas_object_resize(elm_win_inlined_image_object_get(gld->winwin), ourGlobals->win_w, ourGlobals->win_h);
524 evas_object_show(gld->winwin); 526 evas_object_show(gld->winwin);
525} 527}
526 528#endif
527 529
528// Use jobs or timers to split the init load. So that the window pops up quickly, with it's background clouds. 530// Use jobs or timers to split the init load. So that the window pops up quickly, with it's background clouds.
529// Then the rest appears a bit at a time. 531// Then the rest appears a bit at a time.
diff --git a/src/extantz/extantz.h b/src/extantz/extantz.h
index f441f54..ccafc01 100644
--- a/src/extantz/extantz.h
+++ b/src/extantz/extantz.h
@@ -280,7 +280,7 @@ EAPI void drawIrr_end(globals *ourGlobals);
280EAPI void finishIrr(globals *ourGlobals); 280EAPI void finishIrr(globals *ourGlobals);
281#endif 281#endif
282 282
283void overlay_add(globals *ourGlobals); 283//void overlay_add(globals *ourGlobals);
284 284
285Eina_Bool animateScene(globals *ourGlobals); 285Eina_Bool animateScene(globals *ourGlobals);
286 286