summaryrefslogtreecommitdiff
path: root/src/modules/wizard/page_170.c
blob: 0fe0dc1e1585fcf5854555dbe9b17987633df689 (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
70
71
72
73
74
75
76
77
/* Ask about updates checking */
#include "e_wizard.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__)
{
   return 1;
}

EAPI int
wizard_page_shutdown(E_Wizard_Page *pg __UNUSED__)
{
   return 1;
}
*/
EAPI int
wizard_page_show(E_Wizard_Page *pg)
{
   Evas_Object *o, *of, *ob;

   o = e_widget_list_add(pg->evas, 1, 0);
   e_wizard_title_set(_("Updates"));

   of = e_widget_framelist_add(pg->evas, _("Check for available updates"), 0);

   ob = e_widget_textblock_add(pg->evas);
   e_widget_size_min_set(ob, 260 * e_scale, 280 * e_scale);
   e_widget_textblock_markup_set
     (ob,
     _("Enlightenment can check for new<br>"
       "versions, updates, security and<br>"
       "bugfixes, as well as available add-ons.<br>"
       "<br>"
       "This is very useful, because it lets<br>"
       "you know about available bug fixes and<br>"
       "security fixes when they happen. As a<br>"
       "result, Enlightenment will connect to<br>"
       "enlightenment.org and transmit some<br>"
       "information, much like any web browser<br>"
       "might do. No personal information such as<br>"
       "username, password or any personal files<br>"
       "will be transmitted. If you don't like this,<br>"
       "please disable this below. It is highly<br>"
       "advised that you do not disable this as it<br>"
       "may leave you vulnerable or having to live<br>"
       "with bugs."
       )
     );
   e_widget_framelist_object_append(of, ob);

   ob = e_widget_check_add(pg->evas, _("Enable update checking"), &(do_up));
   e_widget_framelist_object_append(of, ob);

   e_widget_list_object_append(o, of, 0, 0, 0.5);

   evas_object_show(of);

   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__)
{
   e_config->update.check = do_up;
   e_config_save_queue();
   return 1;
}
/*
EAPI int
wizard_page_apply(E_Wizard_Page *pg __UNUSED__)
{
   return 1;
}
*/