summaryrefslogtreecommitdiff
path: root/src/bin/e_import_dialog.c
blob: 5e4ea87952d956c0dbdc187ba65f613f69ed0303 (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
#include "e.h"

static void
_fsel_path_save(E_Import_Dialog *id)
{
   const char *fdev = NULL, *fpath = NULL;

   e_widget_fsel_path_get(id->fsel_obj, &fdev, &fpath);
   if ((fdev) || (fpath))
     {
        eina_stringshare_replace(&e_config->wallpaper_import_last_dev, fdev);
        eina_stringshare_replace(&e_config->wallpaper_import_last_path, fpath);
        e_config_save_queue();
     }
}

static void
_fsel_cb_close(void *data, E_Dialog *dia __UNUSED__)
{
   E_Import_Dialog *id = data;

   e_object_ref(data);
   if (id->cancel) id->cancel(id);
   e_object_del(data);
   e_object_unref(data);
}

static void
_import_ok(void *data, void *data2)
{
   E_Import_Dialog *id;

   id = e_object_data_get(data2);
   e_object_ref(E_OBJECT(id));
   if (id->ok) id->ok(data, id);
   e_object_del(E_OBJECT(id));
   e_object_unref(E_OBJECT(id));
}

static void
_fsel_cb_ok(void *data, E_Dialog *dia __UNUSED__)
{
   E_Import_Dialog *id;
   const char *path, *p;
   int is_bg, is_theme, r;
   const char *file;
   char buf[PATH_MAX];

   id = data;
   path = e_widget_fsel_selection_path_get(id->fsel_obj);
   if (!path) return;

   p = strrchr(path, '.');
   if ((p) && (strcasecmp(p, ".edj")))
     {
        E_Import_Config_Dialog *import;
        import = e_import_config_dialog_show(id->dia->win, path, _import_ok, NULL);
        e_object_data_set(E_OBJECT(import), id);
        return;
     }
   r = 0;
   file = ecore_file_file_get(path);
   e_user_dir_snprintf(buf, sizeof(buf), "backgrounds/%s", file);

   is_bg = edje_file_group_exists(path, "e/desktop/background");
   is_theme =
     edje_file_group_exists(path, "e/widgets/border/default/border");

   if ((is_bg) && (!is_theme))
     {
        if (!ecore_file_cp(path, buf))
          {
             e_util_dialog_show(_("Import Error"),
                                _("Enlightenment was unable to "
                                  "import the image<br>due to a "
                                  "copy error."));
          }
        else
          r = 1;
     }
   else
     {
        e_util_dialog_show(_("Import Error"),
                           _("Enlightenment was unable to "
                             "import the image.<br><br>"
                             "Are you sure this is a valid "
                             "image?"));
     }

   if (r)
     {
        e_object_ref(E_OBJECT(id));
        if (id->ok) id->ok(buf, id);
        e_object_del(E_OBJECT(id));
        e_object_unref(E_OBJECT(id));
     }
   else
     _fsel_cb_close(id, NULL);
}

static void
_e_import_dia_del(void *data)
{
   E_Dialog *dia = data;
   E_Import_Dialog *id;

   id = dia->data;
   dia->data = NULL;
   e_object_del(E_OBJECT(id));
}

static void
_e_import_dialog_del(void *data)
{
   E_Import_Dialog *id = data;

   _fsel_path_save(id);
   e_object_del(E_OBJECT(id->dia));
   free(id);
}

static void
_e_import_dialog_win_del(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED)
{
   E_Dialog *dia = data;
   E_Import_Dialog *id;

   id = dia->data;
   if (id)
     e_object_del(E_OBJECT(id));
}

//////////////////////////////////////////////////////////////////////////////////

EAPI E_Import_Dialog *
e_import_dialog_show(Evas_Object *parent EINA_UNUSED, const char *dev, const char *path, Ecore_End_Cb ok, Ecore_Cb cancel)
{
   Evas *evas;
   E_Import_Dialog *id;
   Evas_Object *ofm;
   int w, h;
   const char *fdev, *fpath;
   char buf[PATH_MAX], *rpath;
   E_Dialog *dia;

   id = E_OBJECT_ALLOC(E_Import_Dialog, E_IMPORT_DIALOG_TYPE, _e_import_dialog_del);
   if (!id) return NULL;

   dia = e_dialog_new(NULL, "E", "_import_fsel_dialog");
   if (!dia)
     {
        e_object_del(E_OBJECT(id));
        return NULL;
     }
   e_dialog_resizable_set(dia, 1);

   dia->data = id;
   id->dia = dia;
   id->ok = ok, id->cancel = cancel;
   e_object_del_attach_func_set(E_OBJECT(dia), _e_import_dia_del);
   evas_object_event_callback_add(dia->win, EVAS_CALLBACK_DEL, _e_import_dialog_win_del, dia);

   evas = evas_object_evas_get(dia->win);
   e_dialog_title_set(dia, _("Select a Picture..."));

   fdev = dev ? : e_config->wallpaper_import_last_dev;
   fpath = path ? : e_config->wallpaper_import_last_path;
   if (fdev)
     snprintf(buf, sizeof(buf), "%s/%s",
              fdev, fpath);
   else
     snprintf(buf, sizeof(buf), "%s", fpath);

   rpath = ecore_file_realpath(buf);
   if (!ecore_file_exists(rpath))
     fpath = "/";
   free(rpath);

   if ((!fdev) && (!fpath))
     {
        fdev = "~/";
        fpath = "/";
     }

   //printf("LAST: [%s] '%s' '%s'\n", buf, fdev, fpath);
   /* if we ever use the second param in _fsel_cb_ok() then we will have to create a second function
    * for this callback, but as of now it's okay
    */
   ofm = e_widget_fsel_add(evas, fdev, fpath, NULL, NULL, (void *)_fsel_cb_ok, id,
                           NULL, NULL, 1);
   e_widget_fsel_window_object_set(ofm, E_OBJECT(dia->win));
   id->fsel_obj = ofm;
   e_widget_size_min_get(ofm, &w, &h);
   e_dialog_content_set(dia, ofm, w, h);

   e_dialog_button_add(dia, _("Use"), NULL, _fsel_cb_ok, id);
   e_dialog_button_add(dia, _("Cancel"), NULL, _fsel_cb_close, id);
   e_dialog_border_icon_set(dia, "enlightenment/background");
   e_dialog_show(dia);
   elm_win_center(dia->win, 1, 1);
   e_widget_focus_set(ofm, 1);

   return id;
}