summaryrefslogtreecommitdiff
path: root/src/modules/wizard/page_070.c
blob: b681c7f6253e16a77cfc3001f4d9c4691d107684 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* Setup of default icon theme */
#include "e_wizard.h"

EAPI int
wizard_page_init(E_Wizard_Page *pg __UNUSED__, Eina_Bool *need_xdg_desktops __UNUSED__, Eina_Bool *need_xdg_icons)
{
   *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__)
{
   Eina_List *l, *themes = efreet_icon_theme_list_get();
   Efreet_Icon_Theme *th;
   int i;
   const char *selected = NULL;
   const char *search[] =
   {
      "gnome",
      "Humanity",
      "Humanity-Dark",
      "ubuntu-mono-light",
      "ubuntu-mono-dark",
      "ubuntu-mono-light",
      "unity-icon-theme",
      NULL
   };

   if (!themes) return 0;
   for (i = 0; search[i]; i++)
     {
        EINA_LIST_FOREACH(themes, l, th)
          {
             if (!strcasecmp(search[i], th->name.internal))
               {
                  selected = search[i];
                  goto done;
               }
          }
     }
done:
   if (selected)
     {
        if (e_config->icon_theme) eina_stringshare_del(e_config->icon_theme);
        e_config->icon_theme = eina_stringshare_add(selected);
     }
   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__)
{
   return 1;
}

EAPI int
wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
{
   return 1;
}
*/