aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/extantz/extantz.c
diff options
context:
space:
mode:
authorDavid Walter Seikel2016-01-21 20:29:45 +1000
committerDavid Walter Seikel2016-01-21 20:29:45 +1000
commite77157ca1b62d6e282bfdf17a7f4eb44d9a5ba86 (patch)
tree2867e76072186b58132ee9d461350c6ed5c744fa /src/extantz/extantz.c
parentRejig the structure of windows a lot. (diff)
downloadSledjHamr-e77157ca1b62d6e282bfdf17a7f4eb44d9a5ba86.zip
SledjHamr-e77157ca1b62d6e282bfdf17a7f4eb44d9a5ba86.tar.gz
SledjHamr-e77157ca1b62d6e282bfdf17a7f4eb44d9a5ba86.tar.bz2
SledjHamr-e77157ca1b62d6e282bfdf17a7f4eb44d9a5ba86.tar.xz
Random cleanups.
Diffstat (limited to 'src/extantz/extantz.c')
-rw-r--r--src/extantz/extantz.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/extantz/extantz.c b/src/extantz/extantz.c
index 7fc2d81..f55fa16 100644
--- a/src/extantz/extantz.c
+++ b/src/extantz/extantz.c
@@ -687,7 +687,6 @@ EAPI_MAIN int elm_main(int argc, char **argv)
687 Eventually uses WF_GRID for widget layout, though could in future use WF_BOX for some of them. 687 Eventually uses WF_GRID for widget layout, though could in future use WF_BOX for some of them.
688 files.c 688 files.c
689 winFang A normally hidden window with a file requestor, and other Elm widgets. 689 winFang A normally hidden window with a file requestor, and other Elm widgets.
690? elm_layout_box_append(me->win, WF_BOX, vbox);
691 scenriAdd() 690 scenriAdd()
692 3D scene and node stuff 691 3D scene and node stuff
693 ELM_IMAGE_CLASS Evas_3D render target. 692 ELM_IMAGE_CLASS Evas_3D render target.
@@ -703,18 +702,17 @@ EAPI_MAIN int elm_main(int argc, char **argv)
703 winFang World manager internal window, with it's own menu and toolbar stuff. 702 winFang World manager internal window, with it's own menu and toolbar stuff.
704 Uses the same menu code as the main menus below. 703 Uses the same menu code as the main menus below.
705 But with added pager stuff. 704 But with added pager stuff.
706 elm_layout_box_append(me->win, WF_BOX, nf); Elm naviframe for the tab pages.
707 elm_layout_box_append(me->win, WF_BOX, bt); Elm Login button.
708 love 705 love
709 main menus 706 main menus
710 makeMainMenu() 707 makeMainMenu()
711 ELM_TOOLBAR_CLASS Holder toolbar. 708 ELM_TOOLBAR_CLASS Holder toolbar.
709 Swallowed by WF_TOOLBAR
712 menuAdd() 710 menuAdd()
713? various calls to various object creation functions, TODO - which maybe I can replace with EO stuff? 711? various calls to various object creation functions, TODO - which maybe I can replace with EO stuff?
714 elm_toolbar_item_append() 712 elm_toolbar_item_append()
715 elm_menu_item_add() 713 elm_menu_item_add()
716 makeMainMenuFinish() 714 makeMainMenuFinish()
717 elm_object_part_content_set(win->layout, WF_TOOLBAR, tb); 715 The swallow.
718 isToolbar signal sent to layout. 716 isToolbar signal sent to layout.
719 elm_toolbar_item_append() 717 elm_toolbar_item_append()
720 718
@@ -739,9 +737,9 @@ EAPI_MAIN int elm_main(int argc, char **argv)
739 widgetAdd Will either append it to WF_BOX, or pack it into WF_GRID using supplied coords and size. 737 widgetAdd Will either append it to WF_BOX, or pack it into WF_GRID using supplied coords and size.
740 Used by skang for creating widgets. 738 Used by skang for creating widgets.
741 Used by purkle for it's main widgets (in C), in WF_BOX. 739 Used by purkle for it's main widgets (in C), in WF_BOX.
742? Used by files for WT_FILES, but not the rest, this ends up inside WF_BOX, though it has it's own vbox. 740 Used by woMan for it's main widgets (in C), in WF_BOX.
743?? This vbox is an ELM_BOX_CLASS, er but - 741 Used by files for WT_FILES, but not the rest, this ends up inside WF_BOX, along with a hbox at the end.
744??? elm_obj_box_horizontal_set(EINA_TRUE) 742 Used by LSLGuiMess for the widgets (in Lua) in WF_GRID.
745 TODO - what happens when we mix BOX and GRID widgets? Perhaps GRID should live inside BOX? 743 TODO - what happens when we mix BOX and GRID widgets? Perhaps GRID should live inside BOX?
746 744
747 */ 745 */