huge wizard commit:
authorMike Blumenkrantz <michael.blumenkrantz@gmail.com>
Fri, 30 Nov 2012 10:46:48 +0000 (10:46 +0000)
committerMike Blumenkrantz <michael.blumenkrantz@gmail.com>
Fri, 30 Nov 2012 10:46:48 +0000 (10:46 +0000)
* disable all dummy wizard callbacks in pages
* shutdown callbacks in pages are now actually called
* pages are no longer shown repeatedly by xdg wait callback
* first page no longer accidentally the whole second page
* scaling initially set to 1.2 so the text is actually readable
* page states added so we have some idea where the hell the pages are at
ticket #1883

SVN revision: 79879

24 files changed:
src/modules/wizard/e_mod_main.c
src/modules/wizard/e_wizard.c
src/modules/wizard/e_wizard.h
src/modules/wizard/page_000.c
src/modules/wizard/page_010.c
src/modules/wizard/page_011.c
src/modules/wizard/page_020.c
src/modules/wizard/page_030.c
src/modules/wizard/page_040.c
src/modules/wizard/page_050.c
src/modules/wizard/page_060.c
src/modules/wizard/page_070.c
src/modules/wizard/page_080.c
src/modules/wizard/page_090.c
src/modules/wizard/page_100.c
src/modules/wizard/page_110.c
src/modules/wizard/page_120.c
src/modules/wizard/page_130.c
src/modules/wizard/page_140.c
src/modules/wizard/page_150.c
src/modules/wizard/page_160.c
src/modules/wizard/page_170.c
src/modules/wizard/page_180.c
src/modules/wizard/page_200.c

index cded273..f3a607c 100644 (file)
@@ -53,6 +53,10 @@ e_modapi_init(E_Module *m)
    wiz_module = m;
    e_wizard_init();
 
+   e_config->scale.use_dpi = 0;
+   e_config->scale.use_custom = 1;
+   e_config->scale.factor = 1.2;
+   e_scale_update();
    snprintf(buf, sizeof(buf), "%s/%s", e_module_dir_get(m), MODULE_ARCH);
    files = ecore_file_ls(buf);
    files = eina_list_sort(files, 0, (Eina_Compare_Cb)_cb_sort_files);
index 86dadad..48061c6 100644 (file)
@@ -101,13 +101,17 @@ e_wizard_go(void)
    if (curpage)
      {
         if (curpage->init) curpage->init(curpage, &need_xdg_desktops, &need_xdg_icons);
+        curpage->state++;
         _e_wizard_next_eval();
         if (_e_wizard_check_xdg())
           {
              if ((curpage->show) && (!curpage->show(curpage)))
                {
+                  curpage->state++;
                   e_wizard_next();
                }
+             else
+               curpage->state++;
           }
      }
 }
@@ -116,14 +120,10 @@ EAPI void
 e_wizard_apply(void)
 {
    Eina_List *l;
+   E_Wizard_Page *pg;
 
-   for (l = pages; l; l = l->next)
-     {
-        E_Wizard_Page *pg;
-
-        pg = l->data;
-        if (pg->apply) pg->apply(pg);
-     }
+   EINA_LIST_FOREACH(pages, l, pg)
+     if (pg->apply) pg->apply(pg);
 }
 
 EAPI void
@@ -142,18 +142,25 @@ e_wizard_next(void)
                     {
                        if (curpage->hide)
                          curpage->hide(curpage);
+                       curpage->state++;
                     }
                   curpage = eina_list_data_get(eina_list_next(l));
+                  e_wizard_button_next_enable_set(1);
                   need_xdg_desktops = EINA_FALSE;
                   need_xdg_icons = EINA_FALSE;
                   if (curpage->init)
                     curpage->init(curpage, &need_xdg_desktops, &need_xdg_icons);
+                  curpage->state++;
                   if (!_e_wizard_check_xdg())
                     break;
 
                   _e_wizard_next_eval();
                   if ((curpage->show) && (curpage->show(curpage)))
-                    break;
+                    {
+                       curpage->state++;
+                       break;
+                    }
+                  curpage->state++;
                }
              else
                {
@@ -219,6 +226,7 @@ e_wizard_page_del(E_Wizard_Page *pg)
 // ther page seq.. we cant REALLY dlclose... not a problem as wizard runs
 // once only then e restarts itself with final wizard page
 //   if (pg->handle) dlclose(pg->handle);
+   if (pg->shutdown) pg->shutdown(pg);
    pages = eina_list_remove(pages, pg);
    free(pg);
 }
@@ -391,7 +399,7 @@ _e_wizard_check_xdg(void)
      {
         /* Advance within 15 secs if no xdg event */
         if (!next_timer)
-          next_timer = ecore_timer_add(15.0, _e_wizard_cb_next_page, NULL);
+          next_timer = ecore_timer_add(7.0, _e_wizard_cb_next_page, NULL);
         next_can = 0;
         _e_wizard_next_eval();
         return 0;
@@ -400,7 +408,7 @@ _e_wizard_check_xdg(void)
      {
         /* Advance within 15 secs if no xdg event */
         if (!next_timer)
-          next_timer = ecore_timer_add(15.0, _e_wizard_cb_next_page, NULL);
+          next_timer = ecore_timer_add(7.0, _e_wizard_cb_next_page, NULL);
         next_can = 0;
         _e_wizard_next_eval();
         return 0;
@@ -419,8 +427,18 @@ _e_wizard_next_xdg(void)
 
    if (next_timer) ecore_timer_del(next_timer);
    next_timer = NULL;
-   if ((curpage->show) && (!curpage->show(curpage)))
-     e_wizard_next();
+   if (curpage->state != E_WIZARD_PAGE_STATE_SHOW)
+     {
+        if (next_ok) return; // waiting for user
+        e_wizard_next();
+     }
+   else if ((curpage->show) && (!curpage->show(curpage)))
+     {
+        curpage->state++;
+        e_wizard_next();
+     }
+   else
+     curpage->state++;
 }
 
 static Eina_Bool
index 19391e9..276f372 100644 (file)
@@ -6,6 +6,14 @@ typedef struct _E_Wizard_Page E_Wizard_Page;
 #ifndef E_WIZARD_H
 #define E_WIZARD_H
 
+typedef enum
+{
+   E_WIZARD_PAGE_STATE_INIT,
+   E_WIZARD_PAGE_STATE_SHOW,
+   E_WIZARD_PAGE_STATE_HIDE,
+   E_WIZARD_PAGE_STATE_SHUTDOWN
+} E_Wizard_Page_State;
+
 struct _E_Wizard_Page
 {
    void *handle;
@@ -15,6 +23,7 @@ struct _E_Wizard_Page
    int (*show)     (E_Wizard_Page *pg);
    int (*hide)     (E_Wizard_Page *pg);
    int (*apply)    (E_Wizard_Page *pg);
+   E_Wizard_Page_State state;
 };
 
 EAPI int e_wizard_init(void);
index bf6badf..c7113f9 100644 (file)
@@ -5,6 +5,7 @@
 
 static Ecore_Timer *_next_timer = NULL;
 
+/*
 EAPI int
 wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UNUSED__, Eina_Bool *need_xdg_icons __UNUSED__)
 {
@@ -14,11 +15,9 @@ wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UN
 EAPI int
 wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
-   if (_next_timer) ecore_timer_del(_next_timer);
-   _next_timer = NULL;
    return 1;
 }
-
+*/
 static Eina_Bool
 _next_page(void *data __UNUSED__)
 {
@@ -40,19 +39,22 @@ wizard_page_show(E_Wizard_Page *pg __UNUSED__)
    e_wizard_page_show(o);
 
    /* advance in 1 sec */
-   _next_timer = ecore_timer_add(1.0, _next_page, NULL);
+   if (!_next_timer)
+     _next_timer = ecore_timer_add(1.0, _next_page, NULL);
    return 1;
 }
 
 EAPI int
 wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
 {
+   if (_next_timer) ecore_timer_del(_next_timer);
+   _next_timer = NULL;
    return 1;
 }
-
+/*
 EAPI int
 wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
index 41c0920..b26025d 100644 (file)
@@ -139,14 +139,14 @@ wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UN
      }
    return 1;
 }
-
+/*
 EAPI int
 wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
    // FIXME: free blang_list
    return 1;
 }
-
+*/
 EAPI int
 wizard_page_show(E_Wizard_Page *pg)
 {
@@ -193,6 +193,10 @@ wizard_page_show(E_Wizard_Page *pg)
         e_widget_ilist_selected_set(ob, sel);
         e_widget_ilist_nth_show(ob, sel, 0);
      }
+   else if (e_widget_ilist_count(ob) == 2) // default and one other
+     e_widget_ilist_selected_set(ob, 1);
+   else
+     e_widget_ilist_selected_set(ob, 0);
 
    e_widget_framelist_object_append(of, ob);
    e_widget_list_object_append(o, of, 1, 1, 0.5);
index 4aee3e7..51301f2 100644 (file)
@@ -117,13 +117,13 @@ wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UN
    parse_rules();
    return 1;
 }
-
+/*
 EAPI int
 wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
 EAPI int
 wizard_page_show(E_Wizard_Page *pg)
 {
index 19071a0..d0aeba8 100644 (file)
@@ -27,7 +27,7 @@ _profile_change(void *data __UNUSED__, Evas_Object *obj __UNUSED__)
    // enable next once you choose a profile
    e_wizard_button_next_enable_set(1);
 }
-
+/*
 EAPI int
 wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UNUSED__, Eina_Bool *need_xdg_icons __UNUSED__)
 {
@@ -39,7 +39,7 @@ wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
 EAPI int
 wizard_page_show(E_Wizard_Page *pg)
 {
@@ -142,10 +142,10 @@ wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
    e_config_save();
    return 1;
 }
-
+/*
 EAPI int
 wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
index 3a1b471..55f5c68 100644 (file)
@@ -1,7 +1,7 @@
 /* Menu setup */
 #include "e.h"
 #include "e_mod_main.h"
-
+/*
 EAPI int
 wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UNUSED__, Eina_Bool *need_xdg_icons __UNUSED__)
 {
@@ -13,7 +13,7 @@ wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
 EAPI int
 wizard_page_show(E_Wizard_Page *pg __UNUSED__)
 {
@@ -24,7 +24,7 @@ wizard_page_show(E_Wizard_Page *pg __UNUSED__)
    e_config->default_system_menu = eina_stringshare_add(buf);
    return 0; /* 1 == show ui, and wait for user, 0 == just continue */
 }
-
+/*
 EAPI int
 wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
 {
@@ -36,4 +36,4 @@ wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
index dce3160..b3163c1 100644 (file)
@@ -10,15 +10,13 @@ wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops, Ein
    *need_xdg_desktops = EINA_TRUE;
    return 1;
 }
-
+/*
 EAPI int
 wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
-   if (_next_timer) ecore_timer_del(_next_timer);
-   _next_timer = NULL;
    return 1;
 }
-
+*/
 static Eina_Bool
 _next_page(void *data __UNUSED__)
 {
@@ -116,12 +114,14 @@ wizard_page_show(E_Wizard_Page *pg __UNUSED__)
 EAPI int
 wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
 {
+   if (_next_timer) ecore_timer_del(_next_timer);
+   _next_timer = NULL;
    return 1;
 }
-
+/*
 EAPI int
 wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
index db552b4..1bc5027 100644 (file)
@@ -4,7 +4,7 @@
 
 static double scale = 1.0;
 static Eina_List *obs = NULL;
-
+/*
 EAPI int
 wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UNUSED__, Eina_Bool *need_xdg_icons __UNUSED__)
 {
@@ -16,7 +16,7 @@ wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
 static void
 _scale_preview_sel_set(Evas_Object *ob, int sel)
 {
@@ -184,10 +184,10 @@ wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
    e_scale_update();
    return 1;
 }
-
+/*
 EAPI int
 wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
index c7b9f46..6577c98 100644 (file)
@@ -3,7 +3,7 @@
 #include "e_mod_main.h"
 
 static int focus_mode = 1;
-
+/*
 EAPI int
 wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UNUSED__, Eina_Bool *need_xdg_icons __UNUSED__)
 {
@@ -15,7 +15,7 @@ wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
 EAPI int
 wizard_page_show(E_Wizard_Page *pg)
 {
@@ -74,10 +74,10 @@ wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
 //   evas_object_del(pg->data);
    return 1;
 }
-
+/*
 EAPI int
 wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
index 876edff..3c42795 100644 (file)
@@ -8,13 +8,13 @@ wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UN
    *need_xdg_icons = EINA_TRUE;
    return 1;
 }
-
+/*
 EAPI int
 wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
 EAPI int
 wizard_page_show(E_Wizard_Page *pg __UNUSED__)
 {
@@ -56,7 +56,7 @@ done:
    eina_list_free(themes);
    return 0; /* 1 == show ui, and wait for user, 0 == just continue */
 }
-
+/*
 EAPI int
 wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
 {
@@ -68,3 +68,4 @@ wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
+*/
index cc650f7..00c4230 100644 (file)
@@ -8,13 +8,13 @@ wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops, Ein
    *need_xdg_desktops = EINA_TRUE;
    return 1;
 }
-
+/*
 EAPI int
 wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
 EAPI int
 wizard_page_show(E_Wizard_Page *pg __UNUSED__)
 {
@@ -62,7 +62,7 @@ wizard_page_show(E_Wizard_Page *pg __UNUSED__)
    fclose(fin);
    return 0; /* 1 == show ui, and wait for user, 0 == just continue */
 }
-
+/*
 EAPI int
 wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
 {
@@ -74,3 +74,4 @@ wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
+*/
index 70a14c4..133b599 100644 (file)
@@ -31,7 +31,7 @@ read_file(const char *file)
    fclose(f);
    return strdup(buf);
 }
-
+/*
 EAPI int
 wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UNUSED__, Eina_Bool *need_xdg_icons __UNUSED__)
 {
@@ -43,7 +43,7 @@ wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
 EAPI int
 wizard_page_show(E_Wizard_Page *pg __UNUSED__)
 {
@@ -116,7 +116,7 @@ wizard_page_show(E_Wizard_Page *pg __UNUSED__)
      }
    return 0; /* 1 == show ui, and wait for user, 0 == just continue */
 }
-
+/*
 EAPI int
 wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
 {
@@ -128,4 +128,4 @@ wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
index 18b3234..ecef00c 100644 (file)
@@ -30,7 +30,7 @@ read_file(const char *file)
    return strdup(buf);
 }
 #endif
-
+/*
 EAPI int
 wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UNUSED__, Eina_Bool *need_xdg_icons __UNUSED__)
 {
@@ -42,7 +42,7 @@ wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
 EAPI int
 wizard_page_show(E_Wizard_Page *pg __UNUSED__)
 {
@@ -92,7 +92,7 @@ wizard_page_show(E_Wizard_Page *pg __UNUSED__)
      }
    return 0; /* 1 == show ui, and wait for user, 0 == just continue */
 }
-
+/*
 EAPI int
 wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
 {
@@ -104,4 +104,4 @@ wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
index d108668..fc7599a 100644 (file)
@@ -96,7 +96,7 @@ _check_connman_owner(void *data, DBusMessage *msg,
    e_wizard_next();
 }
 #endif
-
+/*
 EAPI int
 wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UNUSED__, Eina_Bool *need_xdg_icons __UNUSED__)
 {
@@ -108,7 +108,7 @@ wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
 EAPI int
 wizard_page_show(E_Wizard_Page *pg)
 {
@@ -176,10 +176,10 @@ wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
 
    return 1;
 }
-
+/*
 EAPI int
 wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
index cd0b692..69e7379 100644 (file)
@@ -30,7 +30,7 @@
    return strdup(buf);
    }
  */
-
+/*
 EAPI int
 wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UNUSED__, Eina_Bool *need_xdg_icons __UNUSED__)
 {
@@ -42,7 +42,7 @@ wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
 EAPI int
 wizard_page_show(E_Wizard_Page *pg __UNUSED__)
 {
@@ -73,7 +73,7 @@ wizard_page_show(E_Wizard_Page *pg __UNUSED__)
      }
    return 0; /* 1 == show ui, and wait for user, 0 == just continue */
 }
-
+/*
 EAPI int
 wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
 {
@@ -85,4 +85,4 @@ wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
index 9d03839..71a16b2 100644 (file)
@@ -1,7 +1,7 @@
 /* Setup if we need backlight? */
 #include "e.h"
 #include "e_mod_main.h"
-
+/*
 EAPI int
 wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UNUSED__, Eina_Bool *need_xdg_icons __UNUSED__)
 {
@@ -13,7 +13,7 @@ wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
 EAPI int
 wizard_page_show(E_Wizard_Page *pg __UNUSED__)
 {
@@ -41,7 +41,7 @@ wizard_page_show(E_Wizard_Page *pg __UNUSED__)
      }
    return 0; /* 1 == show ui, and wait for user, 0 == just continue */
 }
-
+/*
 EAPI int
 wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
 {
@@ -53,4 +53,4 @@ wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
index 7975590..c0d7de5 100644 (file)
@@ -1,7 +1,7 @@
 /* Setup if we need mixer? */
 #include "e.h"
 #include "e_mod_main.h"
-
+/*
 EAPI int
 wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UNUSED__, Eina_Bool *need_xdg_icons __UNUSED__)
 {
@@ -13,7 +13,7 @@ wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
 EAPI int
 wizard_page_show(E_Wizard_Page *pg __UNUSED__)
 {
@@ -42,7 +42,7 @@ wizard_page_show(E_Wizard_Page *pg __UNUSED__)
      }
    return 0; /* 1 == show ui, and wait for user, 0 == just continue */
 }
-
+/*
 EAPI int
 wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
 {
@@ -54,4 +54,4 @@ wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
index 8a45000..cbc68c1 100644 (file)
@@ -46,7 +46,7 @@ match_xorg_log(const char *globbing)
      }
    return 0;
 }
-
+/*
 EAPI int
 wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UNUSED__, Eina_Bool *need_xdg_icons __UNUSED__)
 {
@@ -58,7 +58,7 @@ wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
 EAPI int
 wizard_page_show(E_Wizard_Page *pg)
 {
@@ -205,10 +205,10 @@ wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
 //   if (pg->data) evas_object_del(pg->data);
    return 1;
 }
-
+/*
 EAPI int
 wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
index 5b163f2..e67f392 100644 (file)
@@ -1,7 +1,7 @@
 /* Setup favorites and desktop links */
 #include "e.h"
 #include "e_mod_main.h"
-
+/*
 EAPI int
 wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UNUSED__, Eina_Bool *need_xdg_icons __UNUSED__)
 {
@@ -13,7 +13,7 @@ wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
 EAPI int
 wizard_page_show(E_Wizard_Page *pg __UNUSED__)
 {
@@ -37,7 +37,7 @@ wizard_page_show(E_Wizard_Page *pg __UNUSED__)
 
    return 0; /* 1 == show ui, and wait for user, 0 == just continue */
 }
-
+/*
 EAPI int
 wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
 {
@@ -49,4 +49,4 @@ wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
index 8db5add..c73f78b 100644 (file)
@@ -3,7 +3,7 @@
 #include "e_mod_main.h"
 
 static int do_up = 1;
-
+/*
 EAPI int
 wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UNUSED__, Eina_Bool *need_xdg_icons __UNUSED__)
 {
@@ -15,7 +15,7 @@ wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
 EAPI int
 wizard_page_show(E_Wizard_Page *pg)
 {
@@ -69,10 +69,10 @@ wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
    e_config_save_queue();
    return 1;
 }
-
+/*
 EAPI int
 wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
index 773c863..b081ff9 100644 (file)
@@ -3,7 +3,7 @@
 #include "e_mod_main.h"
 
 static int do_tasks = 1;
-
+/*
 EAPI int
 wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UNUSED__, Eina_Bool *need_xdg_icons __UNUSED__)
 {
@@ -15,7 +15,7 @@ wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
 EAPI int
 wizard_page_show(E_Wizard_Page *pg)
 {
@@ -46,13 +46,13 @@ wizard_page_show(E_Wizard_Page *pg)
    e_wizard_page_show(o);
    return 1; /* 1 == show ui, and wait for user, 0 == just continue */
 }
-
+/*
 EAPI int
 wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+*/
 EAPI int
 wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {
index 7b0f4d4..ddabaf3 100644 (file)
@@ -2,6 +2,7 @@
 #include "e.h"
 #include "e_mod_main.h"
 
+#if 0
 EAPI int
 wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UNUSED__, Eina_Bool *need_xdg_icons __UNUSED__)
 {
@@ -25,7 +26,7 @@ wizard_page_hide(E_Wizard_Page *pg __UNUSED__)
 {
    return 1;
 }
-
+#endif
 EAPI int
 wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
 {