Sun, 29 Sep 2024 20:25:41 +0200
update toolkit, fix download/upload progressbar
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
1 | /* |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
3 | * |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
4 | * Copyright 2024 Olaf Wintermann. All rights reserved. |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
5 | * |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
6 | * Redistribution and use in source and binary forms, with or without |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
7 | * modification, are permitted provided that the following conditions are met: |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
8 | * |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
9 | * 1. Redistributions of source code must retain the above copyright |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
10 | * notice, this list of conditions and the following disclaimer. |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
11 | * |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
12 | * 2. Redistributions in binary form must reproduce the above copyright |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
13 | * notice, this list of conditions and the following disclaimer in the |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
14 | * documentation and/or other materials provided with the distribution. |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
15 | * |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
26 | * POSSIBILITY OF SUCH DAMAGE. |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
27 | */ |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
28 | |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
29 | #include "window.h" |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
30 | |
8
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
31 | #include "davcontroller.h" |
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
32 | |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
33 | #include <ui/stock.h> |
18
af411868ab9b
implement dnd upload (without progressbar)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
17
diff
changeset
|
34 | #include <ui/dnd.h> |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
35 | |
13
5a8762fcfecc
update toolkit / set window size
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
11
diff
changeset
|
36 | #include <libidav/utils.h> |
5a8762fcfecc
update toolkit / set window size
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
11
diff
changeset
|
37 | |
8
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
38 | static UiIcon* folder_icon; |
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
39 | static UiIcon* file_icon; |
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
40 | |
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
41 | static UiPathElm* dav_get_pathelm(const char *full_path, size_t len, size_t *ret_nelm, void* data); |
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
42 | |
8
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
43 | void window_init(void) { |
37 | 44 | folder_icon = ui_foldericon(16); |
45 | file_icon = ui_fileicon(16); | |
8
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
46 | } |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
47 | |
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
48 | UiObject* window_create(void) { |
37 | 49 | UiObject* obj = ui_window("iDAV", NULL); |
50 | ui_window_size(obj, 900, 700); | |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
51 | |
37 | 52 | MainWindow* wdata = ui_malloc(obj->ctx, sizeof (MainWindow)); |
53 | memset(wdata, 0, sizeof (MainWindow)); | |
54 | obj->window = wdata; | |
7
905ac52c910f
port more dav config code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
55 | |
37 | 56 | wdata->progress = ui_int_new(obj->ctx, "progress"); |
57 | ||
58 | // navigation bar | |
7
905ac52c910f
port more dav config code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
59 | |
45
ab71409644b0
update toolkit, fix download/upload progressbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
40
diff
changeset
|
60 | ui_hbox(obj, .fill = UI_OFF, .margin = 8, .spacing = 8) { |
ab71409644b0
update toolkit, fix download/upload progressbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
40
diff
changeset
|
61 | ui_hbox(obj, .fill = UI_OFF, .style_class="linked") { |
ab71409644b0
update toolkit, fix download/upload progressbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
40
diff
changeset
|
62 | ui_button(obj, .icon = UI_ICON_GO_BACK, .onclick = action_go_back); |
ab71409644b0
update toolkit, fix download/upload progressbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
40
diff
changeset
|
63 | ui_button(obj, .icon = UI_ICON_GO_FORWARD, .onclick = action_go_forward); |
ab71409644b0
update toolkit, fix download/upload progressbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
40
diff
changeset
|
64 | } |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
65 | |
37 | 66 | ui_path_textfield(obj, .fill = UI_ON, .getpathelm = dav_get_pathelm, .onactivate = action_path_selected, .varname = "path"); |
8
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
67 | |
37 | 68 | ui_progressspinner(obj, .value = wdata->progress); |
69 | } | |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
70 | |
37 | 71 | // main content |
72 | UiModel* model = ui_model(obj->ctx, UI_ICON_TEXT, "Name", UI_STRING, "Type", UI_STRING_FREE, "Last Modified", UI_STRING_FREE, "Size", -1); | |
73 | model->getvalue = (ui_getvaluefunc) window_resource_table_getvalue; | |
74 | ui_table(obj, .fill = UI_ON, .model = model, .onactivate = action_list_activate, .ondrop = action_dnd_drop, .varname = "reslist"); | |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
75 | |
37 | 76 | // status bar |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
77 | |
37 | 78 | ui_hbox(obj, .fill = UI_OFF) { |
79 | ui_label(obj, .label = ""); | |
80 | } | |
81 | ||
82 | return obj; | |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
83 | } |
8
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
84 | |
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
85 | void* window_resource_table_getvalue(DavResource *res, int col) { |
37 | 86 | switch (col) { |
38
acd8c4a9d3fe
fix path textfield
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
37
diff
changeset
|
87 | case 0: { // icon |
37 | 88 | return res->iscollection ? folder_icon : file_icon; |
89 | } | |
38
acd8c4a9d3fe
fix path textfield
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
37
diff
changeset
|
90 | case 1: { // resource name |
37 | 91 | return res->name; |
92 | } | |
38
acd8c4a9d3fe
fix path textfield
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
37
diff
changeset
|
93 | case 2: { // type |
37 | 94 | return res->iscollection ? "Collection" : (res->contenttype ? res->contenttype : "Resource"); |
95 | } | |
38
acd8c4a9d3fe
fix path textfield
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
37
diff
changeset
|
96 | case 3: { // last modified |
37 | 97 | return util_date_str(res->lastmodified); |
98 | } | |
38
acd8c4a9d3fe
fix path textfield
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
37
diff
changeset
|
99 | case 4: { // size |
37 | 100 | return util_size_str(res->iscollection, res->contentlength); |
101 | } | |
102 | } | |
103 | return NULL; | |
8
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
104 | } |
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
105 | |
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
106 | void window_progress(MainWindow *win, int on) { |
37 | 107 | ui_set(win->progress, on); |
8
726b24766437
implement connecting to repositories
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
7
diff
changeset
|
108 | } |
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
109 | |
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
110 | static UiPathElm* dav_get_pathelm(const char *full_path, size_t len, size_t *ret_nelm, void* data) { |
37 | 111 | cxstring fpath = cx_strn(full_path, len); |
112 | int protocol = 0; | |
113 | if (cx_strcaseprefix(fpath, CX_STR("http://"))) { | |
114 | protocol = 7; | |
115 | } else if (cx_strcaseprefix(fpath, CX_STR("https://"))) { | |
116 | protocol = 8; | |
117 | } | |
118 | ||
119 | size_t start = 0; | |
120 | size_t end = 0; | |
121 | for (size_t i = protocol; i < len; i++) { | |
122 | if (full_path[i] == '/') { | |
123 | end = i; | |
124 | break; | |
125 | } | |
126 | } | |
127 | ||
128 | int skip = 0; | |
129 | if (end == 0) { | |
130 | // no '/' found or first char is '/' | |
131 | end = len > 0 && full_path[0] == '/' ? 1 : len; | |
132 | } else if (end + 1 <= len) { | |
133 | skip++; // skip first '/' | |
134 | } | |
135 | ||
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
136 | |
37 | 137 | cxmutstr base = cx_strdup(cx_strn(full_path, end)); |
138 | cxmutstr base_path = cx_strdup(cx_strcast(base)); | |
139 | cxstring path = cx_strsubs(fpath, end + skip); | |
140 | ||
141 | cxstring *pathelms; | |
142 | size_t nelm = 0; | |
143 | ||
144 | if (path.length > 0) { | |
145 | nelm = cx_strsplit_a(cxDefaultAllocator, path, CX_STR("/"), 4096, &pathelms); | |
146 | if (nelm == 0) { | |
147 | *ret_nelm = 0; | |
148 | return NULL; | |
149 | } | |
150 | } | |
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
151 | |
37 | 152 | UiPathElm* elms = (UiPathElm*) calloc(nelm + 1, sizeof (UiPathElm)); |
153 | size_t n = nelm + 1; | |
154 | elms[0].name = base.ptr; | |
155 | elms[0].name_len = base.length; | |
156 | elms[0].path = base_path.ptr; | |
157 | elms[0].path_len = base_path.length; | |
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
158 | |
37 | 159 | int j = 1; |
160 | for (int i = 0; i < nelm; i++) { | |
161 | cxstring c = pathelms[i]; | |
162 | if (c.length == 0) { | |
163 | if (i == 0) { | |
164 | c.length = 1; | |
165 | } else { | |
166 | n--; | |
167 | continue; | |
34
98e041f2f9a2
fix dav path separator function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
33
diff
changeset
|
168 | } |
98e041f2f9a2
fix dav path separator function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
33
diff
changeset
|
169 | } |
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
170 | |
37 | 171 | cxmutstr m = cx_strdup(c); |
172 | elms[j].name = m.ptr; | |
173 | elms[j].name_len = m.length; | |
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
174 | |
37 | 175 | size_t elm_path_len = c.ptr + c.length - full_path; |
176 | cxmutstr elm_path = cx_strdup(cx_strn(full_path, elm_path_len)); | |
177 | elms[j].path = elm_path.ptr; | |
178 | elms[j].path_len = elm_path.length; | |
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
179 | |
37 | 180 | j++; |
181 | } | |
182 | *ret_nelm = n; | |
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
183 | |
37 | 184 | return elms; |
9
0676408f50ad
add path-textfield getelm function, that supports urls
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
185 | } |
11
26acbfa75c1f
add handler for the path bar activate events
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
9
diff
changeset
|
186 | |
15
78684a24dc52
implement navigation back/forward buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
13
diff
changeset
|
187 | void action_go_back(UiEvent *event, void *data) { |
37 | 188 | DavBrowser *browser = event->document; |
189 | davbrowser_navigation_back(event->obj, browser); | |
15
78684a24dc52
implement navigation back/forward buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
13
diff
changeset
|
190 | } |
78684a24dc52
implement navigation back/forward buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
13
diff
changeset
|
191 | |
78684a24dc52
implement navigation back/forward buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
13
diff
changeset
|
192 | void action_go_forward(UiEvent *event, void *data) { |
37 | 193 | DavBrowser *browser = event->document; |
194 | davbrowser_navigation_forward(event->obj, browser); | |
15
78684a24dc52
implement navigation back/forward buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
13
diff
changeset
|
195 | } |
11
26acbfa75c1f
add handler for the path bar activate events
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
9
diff
changeset
|
196 | |
26acbfa75c1f
add handler for the path bar activate events
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
9
diff
changeset
|
197 | void action_path_selected(UiEvent *event, void *data) { |
37 | 198 | DavBrowser *browser = event->document; |
199 | char *path = event->eventdata; | |
200 | if (path && strlen(path) > 0) { | |
201 | davbrowser_query_url(event->obj, browser, path); | |
202 | } | |
11
26acbfa75c1f
add handler for the path bar activate events
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
9
diff
changeset
|
203 | } |
13
5a8762fcfecc
update toolkit / set window size
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
11
diff
changeset
|
204 | |
5a8762fcfecc
update toolkit / set window size
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
11
diff
changeset
|
205 | void action_list_activate(UiEvent *event, void *data) { |
37 | 206 | UiListSelection *selection = event->eventdata; |
207 | DavBrowser *browser = event->document; | |
13
5a8762fcfecc
update toolkit / set window size
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
11
diff
changeset
|
208 | |
37 | 209 | if (selection->count == 1) { |
210 | DavResource *res = ui_list_get(browser->resources, selection->rows[0]); | |
211 | if (res) { | |
212 | if (res->iscollection) { | |
213 | davbrowser_query_path(event->obj, browser, res->path); | |
214 | } else { | |
215 | // TODO | |
216 | } | |
217 | } | |
218 | } | |
13
5a8762fcfecc
update toolkit / set window size
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
11
diff
changeset
|
219 | } |
18
af411868ab9b
implement dnd upload (without progressbar)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
17
diff
changeset
|
220 | |
af411868ab9b
implement dnd upload (without progressbar)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
17
diff
changeset
|
221 | void action_dnd_drop(UiEvent *event, void *data) { |
37 | 222 | UiListDnd *listdnd = event->eventdata; |
223 | UiDnD *dnd = listdnd->dnd; | |
224 | UiFileList files = ui_selection_geturis(dnd); | |
225 | ||
226 | davbrowser_upload_files(event->obj, event->document, files); | |
18
af411868ab9b
implement dnd upload (without progressbar)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
17
diff
changeset
|
227 | } |