summaryrefslogtreecommitdiff
path: root/navit/gui/internal/gui_internal_menu.c
blob: 6a0d6a52bdec63b6bf6098e517d8c81aeb04351f (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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
#include <glib.h>
#include "color.h"
#include "coord.h"
#include "point.h"
#include "callback.h"
#include "graphics.h"
#include "debug.h"
#include "navit.h"
#include "navit_nls.h"
#include "xmlconfig.h"
#include "gui_internal.h"
#include "gui_internal_widget.h"
#include "gui_internal_priv.h"
#include "gui_internal_html.h"
#include "gui_internal_search.h"
#include "gui_internal_menu.h"

extern char *version;

/**
 * @brief Utility function to check if a menu widget is adapted to the display size or needs resizing (if so, the widget dimensions will be set to match those of the display
 *
 * @param this The GUI instance
 * @param w The menu widget (top widget that should spawn over the entire display)
 * @param wdisp The width of the display to check the widget against
 * @param hdisp The width of the display to check the widget against
 *
 * @return true if widget w has the same size as the provided display dimensions
 */

int gui_internal_menu_needs_resizing(struct gui_priv *this, struct widget *w, int wdisp, int hdisp) {
    if (w->w != wdisp || w->h != hdisp) {
        w->w=wdisp;
        w->h=hdisp;
        return 1;
    } else {
        return 0;
    }
}

/**
 * @brief destroy a menu widget and perform the associated cleanup in the menu & submenu list
 *
 * @param this The GUI instance
 * @param w The menu widget to destroy
 */
void gui_internal_menu_destroy(struct gui_priv *this, struct widget *w) {
    struct menu_data *menu_data=w->menu_data;
    if (menu_data) {
        if (menu_data->refresh_callback_obj.type) {
            struct object_func *func;
            func=object_func_lookup(menu_data->refresh_callback_obj.type);
            if (func && func->remove_attr)
                func->remove_attr(menu_data->refresh_callback_obj.u.data, &menu_data->refresh_callback);
        }
        if (menu_data->refresh_callback.u.callback)
            callback_destroy(menu_data->refresh_callback.u.callback);

        g_free(menu_data->href);
        g_free(menu_data);
    }
    gui_internal_widget_destroy(this, w);
    this->root.children=g_list_remove(this->root.children, w);
}

/**
 * @brief Retrieve then html anchor (href) from a menu widger
 *
 * @param w A widget corresponding to a menu (this widget should be an html menu)
 *
 * @return the string for the href, or NULL if this menu has no href (or the widget is not a menu)
 */
static char *gui_internal_widget_get_href(struct widget *w) {
    if (w && w->menu_data)
        return w->menu_data->href;
    else
        return NULL;
}

/**
 * @brief Reload a menu from its anchor (href)
 *
 * @param this The internal GUI context
 * @param w A widget corresponding to the menu to redraw (this widget should be an html menu, thus it should have a href)
 *
 * @return 1 in case of success, 0 if no menu could be reloaded
 * @note If the widget provided in @p w has no href, we will return 0
 */
int gui_internal_widget_reload_href(struct gui_priv *this, struct widget *w) {
    char *ohref = gui_internal_widget_get_href(w);
    if (ohref) {
        char *href=g_strdup(ohref);
        gui_internal_menu_destroy(this, w);
        gui_internal_html_load_href(this, href, 0);
        g_free(href);
        return 1;
    }
    return 0;
}

/**
 * @brief Destroy (discard) all menu screens that have been placed after widget @p w
 *
 * @param this The internal GUI instance
 * @param w A widget corresponding to the last menu to keep (all subsequent menus in the list will be destroyed). NULL if all menus should be destroyed.
 * @param render whether we should render the menu indicated by widget w (render!=0) or not (render==0)
 */
static void gui_internal_prune_menu_do(struct gui_priv *this, struct widget *w, int render) {
    GList *l;
    struct widget *wr,*wd;
    gui_internal_search_idle_end(this);
    /* Destroy all menus, backwards, starting from the end until we reach widget w, and redraw widget w */
    while ((l = g_list_last(this->root.children))) {
        wd=l->data;
        if (wd == w) {	/* This is the widget we want to bring back to display (all subsequent widgets will be destroyed in the loop) */
            void (*redisplay)(struct gui_priv *priv, struct widget *widget, void *data);
            if (!render)
                return;
            gui_internal_say(this, w, 0);
            redisplay=w->menu_data->redisplay;
            if (redisplay) {
                gui_internal_menu_destroy(this, w);
                wr=w->menu_data->redisplay_widget;
                redisplay(this, wr, wr->data);
            } else {
                /* Make sure the new menu we are going to display spawns the whole display (in case there was a resize while a submenu was being displayed) */
                w->w=this->root.w;
                w->h=this->root.h;
                /* If the foremost widget is a HTML menu, reload & redraw it from its href using gui_internal_widget_reload_href() */
                if (!gui_internal_widget_reload_href(this,w)) {
                    /* If not, resize the foremost widget */
                    gui_internal_menu_resize(this, this->root.w, this->root.h);
                }
                gui_internal_menu_render(this);
            }
            return;
        } else
            gui_internal_menu_destroy(this, wd);
    }
}

/**
 * @brief Destroy (discard) all menu screens that have been placed after widget @p w and redraw the display, showing widget @w
 *
 * @param this The internal GUI instance
 * @param w A widget corresponding to the last menu to keep, and to draw (all subsequent menus in the list will be destroyed). NULL if all menus should be destroyed.
 */
void gui_internal_prune_menu(struct gui_priv *this, struct widget *w) {
    gui_internal_prune_menu_do(this, w, 1);
}

/**
 * @brief Destroy (discard) the last @p count menu screens
 *
 * @param this The internal GUI instance
 * @param count The number of menus to destroy at the tail of the menu/submenu stack (if <=0, no menu will be destroyed)
 * @param render whether we should render the new last menu in the stack (render!=0) or not (render==0)
 */
void gui_internal_prune_menu_count(struct gui_priv *this, int count, int render) {
    GList *l=g_list_last(this->root.children);
    struct widget *w=NULL;
    while (l && count-- > 0)
        l=g_list_previous(l);
    if (l) {
        w=l->data;
        gui_internal_prune_menu_do(this, w, render);
    }
}

/**
 * @brief Resize the box widget (and its children) corresponding to a menu
 *
 * Menus are stored in a main box (topbox) that spawn the entire screen, thus, once the topbox has been resized, it will in turn resize its children,
 * effectively resizing the whole menu display size
 *
 * Note: once this function has been run, widget @p w and its children have been resized, a call to gui_internal_box_render() needs to be done by the caller
 *
 * @param this The internal GUI instance
 * @param w A box widget corresponding to the menu widget
 * @param data Some data to pass to the box resize handler
 * @param neww The new width of the display
 * @param newh The new height of the display
 */
void gui_internal_menu_menu_resize(struct gui_priv *this, struct widget *w, void *data, int neww, int newh) {
    struct padding *padding = NULL;

    if (w->type != widget_box) {
        dbg(lvl_warning, "Called on a non-box widget, ignoring");
        return;
    }
    if (this->gra) {
        padding = graphics_get_data(this->gra, "padding");
    } else
        dbg(lvl_warning, "cannot get padding: this->gra is NULL");
    if (padding) {
        w->p.x = padding->left;
        w->p.y = padding->top;
        w->w = neww - padding->left - padding->right;
        w->h = newh - padding->top - padding->bottom;
    } else {
        w->p.x = 0;
        w->p.y = 0;
        w->w = neww;
        w->h = newh;
    }
    gui_internal_box_resize(this, w, data, w->w, w->h);
}

/**
 * @brief Initializes a GUI menu screen
 *
 * This method initializes the internal GUI's screen on which all other elements (such as HTML menus,
 * dialogs or others) are displayed.
 *
 * It sets up a view hierarchy, which includes a title bar and a client area to hold widgets defined by
 * the caller.
 *
 * @param this The GUI instance
 * @param label The label to display in the top bar
 *
 * @return The container for caller-defined widgets
 */
struct widget *
gui_internal_menu(struct gui_priv *this, const char *label) {
    struct widget *menu,*w,*w1,*topbox;

    gui_internal_search_idle_end(this);
    topbox=gui_internal_box_new_with_label(this, 0, label);
    gui_internal_widget_append(&this->root, topbox);
    menu=gui_internal_box_new(this, gravity_left_center|orientation_vertical);
    menu->on_resize=gui_internal_menu_menu_resize;
    topbox->on_resize(this, topbox, NULL, this->root.w, this->root.h);
    /* We also have to invoke onresize() handler on menu because it is not (yet) set as a child of topbox */
    menu->on_resize(this, menu, NULL, topbox->w, topbox->h);
    menu->background=this->background;
    gui_internal_apply_config(this);
    topbox->menu_data=g_new0(struct menu_data, 1);
    gui_internal_widget_append(topbox, menu);
    w=gui_internal_top_bar(this);
    gui_internal_widget_append(menu, w);
    w=gui_internal_box_new(this, gravity_center|orientation_horizontal_vertical|flags_expand|flags_fill);
    w->spx=4*this->spacing;
    w->w=menu->w;
    gui_internal_widget_append(menu, w);
    if (this->flags & 16 && !(this->flags & 1024)) {
        struct widget *wlb,*wb,*wm=w;
        wm->flags=gravity_center|orientation_vertical|flags_expand|flags_fill;
        w=gui_internal_box_new(this, gravity_center|orientation_horizontal|flags_expand|flags_fill);
        dbg(lvl_info,"topbox->menu_data=%p", topbox->menu_data);
        gui_internal_widget_append(wm, w);
        wb=gui_internal_box_new(this, gravity_right_center|orientation_horizontal|flags_fill);
        wb->bl=6;
        wb->br=6;
        wb->bb=6;
        wb->bt=6;
        wb->spx=6;
        topbox->menu_data->button_bar=wb;
        gui_internal_widget_append(wm, wb);
        wlb=gui_internal_button_label(this,_("Back"),1);
        wlb->func=gui_internal_back;
        wlb->state |= STATE_SENSITIVE;
    }
    if (this->flags & 192) {
        menu=gui_internal_box_new(this, gravity_left_center|orientation_vertical);
        menu->on_resize=gui_internal_menu_menu_resize;
        menu->on_resize(this, menu, NULL, topbox->w, topbox->h);
        w1=gui_internal_time_help(this);
        gui_internal_widget_append(menu, w1);
        w1=gui_internal_box_new(this, gravity_center|orientation_horizontal_vertical|flags_expand|flags_fill);
        gui_internal_widget_append(menu, w1);
        gui_internal_widget_append(topbox, menu);
        menu->background=NULL;
    }
    gui_internal_widget_pack(this, topbox);
    gui_internal_widget_reset_pack(this, topbox);
    if (topbox->on_resize)
        topbox->on_resize(this, topbox, NULL, this->root.w, this->root.h);
    return w;
}

struct menu_data *
gui_internal_menu_data(struct gui_priv *this) {
    GList *l;
    struct widget *menu;

    l=g_list_last(this->root.children);
    menu=l->data;
    return menu->menu_data;
}

void gui_internal_menu_reset_pack(struct gui_priv *this) {
    GList *l;
    struct widget *top_box;

    l=g_list_last(this->root.children);
    top_box=l->data;
    gui_internal_widget_reset_pack(this, top_box);
}

/**
 * @brief Renders a menu GUI on the display
 *
 * @note The whole sequence of menus is kept in this->root.children (when going back one page, we just move to the previous child in the list)
 * Thus, only the last child of this->root.children is actually displayed
 *
 * @param this The internal GUI instance
 */
void gui_internal_menu_render(struct gui_priv *this) {
    GList *l;
    struct widget *menu;

    l=g_list_last(this->root.children);
    menu=l->data;
    gui_internal_say(this, menu, 0);
    gui_internal_widget_pack(this, menu);
    gui_internal_widget_render(this, menu);
}

/**
 * @brief Resize the currently displayed menu
 *
 * @param this The internal GUI instance
 * @param w The new width of the display
 * @param h the new height of the display
 */
void gui_internal_menu_resize(struct gui_priv *this, int w, int h) {
    GList *l;
    struct widget *menu_topwidget;

    gui_internal_apply_config(this);
    l=g_list_last(this->root.children);
    menu_topwidget=l->data;
    if (menu_topwidget->on_resize) {
        dbg(lvl_debug, "Invoking resize handler for menu_topwidget at %p", menu_topwidget);
        menu_topwidget->on_resize(this, menu_topwidget, NULL, this->root.w, this->root.h);
    }
}

/**
 * @brief Resize a top bar created using gui_internal_top_bar()
 *
 * @param this The internal GUI instance
 * @param data Some data to pass to the box resize handler
 * @param neww The new width of the display
 * @param newh The new height of the display
 */
static void gui_internal_top_bar_resize(struct gui_priv *this, struct widget *w, void *data, int neww, int newh) {
    struct widget *new_top_bar;

    if (w->type != widget_box) {
        dbg(lvl_warning, "Called on a non-box widget, ignoring");
        return;
    }
    new_top_bar=gui_internal_top_bar(this);
    gui_internal_widget_move(this, w, new_top_bar);
}

/**
 * @brief Create an GUI top bar (containing the history of GUI menus and submenus)
 *
 * @param this The internal GUI instance
 *
 * @return The newly created top bar widget
 */
struct widget *
gui_internal_top_bar(struct gui_priv *this) {
    struct widget *w,*wm,*wh,*wc,*wcn;
    int dots_len, sep_len;
    GList *res=NULL,*l;
    int width,width_used=0,use_sep=0,incomplete=0;
    struct graphics_gc *foreground=(this->flags & 256 ? this->background : this->text_foreground);
    /* flags
            1:Don't expand bar to screen width
            2:Don't show Map Icon
            4:Don't show Home Icon
            8:Show only current menu
            16:Don't use menu titles as button
            32:Show navit version
    	64:Show time
    	128:Show help
    	256:Use background for menu headline
    	512:Set osd_configuration and zoom to route when setting position
    	1024:Don't show back button
    	2048:No highlighting of keyboard
    	4096:Center menu title
    */

    w=gui_internal_box_new(this, (this->flags & 4096 ? gravity_center : gravity_left_center)|orientation_horizontal|
                           (this->flags & 1 ? 0:flags_fill));
    w->bl=this->spacing;
    w->spx=this->spacing;
    w->background=this->background2;
    if ((this->flags & 6) == 6) {
        w->bl=10;
        w->br=10;
        w->bt=6;
        w->bb=6;
    }
    w->on_resize=gui_internal_top_bar_resize;
    width=this->root.w-w->bl;
    if (! (this->flags & 2)) {
        wm=gui_internal_button_new_with_callback(this, NULL,
                image_new_s(this, "gui_map"), gravity_center|orientation_vertical,
                gui_internal_cmd_return, NULL);
        wm->speech=g_strdup(_("Back to map"));
        gui_internal_widget_pack(this, wm);
        gui_internal_widget_append(w, wm);
        width-=wm->w;
    }
    if (! (this->flags & 4)) {
        wh=gui_internal_button_new_with_callback(this, NULL,
                image_new_s(this, "gui_home"), gravity_center|orientation_vertical,
                gui_internal_cmd_main_menu, NULL);
        wh->speech=g_strdup(_("Main Menu"));
        gui_internal_widget_pack(this, wh);
        gui_internal_widget_append(w, wh);
        width-=wh->w;
    }
    if (!(this->flags & 6))
        width-=w->spx;
    l=g_list_last(this->root.children);
    wcn=gui_internal_label_new(this,".. »");
    wcn->foreground=foreground;
    dots_len=wcn->w;
    gui_internal_widget_destroy(this, wcn);
    wcn=gui_internal_label_new(this,"»");
    wcn->foreground=foreground;
    sep_len=wcn->w;
    gui_internal_widget_destroy(this, wcn);
    while (l) {
        if (g_list_previous(l) || !g_list_next(l)) {
            wc=l->data;
            wcn=gui_internal_label_new(this, wc->text);
            wcn->foreground=foreground;
            if (g_list_next(l))
                use_sep=1;
            else
                use_sep=0;
            dbg(lvl_debug,"%d (%s) + %d + %d + %d > %d", wcn->w, wc->text, width_used, w->spx, use_sep ? sep_len : 0, width);
            if (wcn->w + width_used + w->spx + (use_sep ? sep_len : 0) + (g_list_previous(l) ? dots_len : 0) > width) {
                incomplete=1;
                gui_internal_widget_destroy(this, wcn);
                break;
            }
            if (use_sep) {
                struct widget *wct=gui_internal_label_new(this, "»");
                wct->foreground=foreground;
                res=g_list_prepend(res, wct);
                width_used+=sep_len+w->spx;
            }
            width_used+=wcn->w;
            if (!(this->flags & 16)) {
                wcn->func=gui_internal_cmd_return;
                wcn->data=wc;
                wcn->state |= STATE_SENSITIVE;
            }
            res=g_list_prepend(res, wcn);
            if (this->flags & 8)
                break;
        }
        l=g_list_previous(l);
    }
    if (incomplete) {
        if (! res) {
            wcn=gui_internal_label_new_abbrev(this, wc->text, width-width_used-w->spx-dots_len);
            wcn->foreground=foreground;
            wcn->func=gui_internal_cmd_return;
            wcn->data=wc;
            wcn->state |= STATE_SENSITIVE;
            res=g_list_prepend(res, wcn);
            l=g_list_previous(l);
            wc=l?l->data:NULL;
        }
        if(wc) {
            wcn=gui_internal_label_new(this, ".. »");
            wcn->foreground=foreground;
            wcn->func=gui_internal_cmd_return;
            wcn->data=wc;
            wcn->state |= STATE_SENSITIVE;
            res=g_list_prepend(res, wcn);
        }
    }
    l=res;
    while (l) {
        gui_internal_widget_append(w, l->data);
        l=g_list_next(l);
    }
    if (this->flags & 32) {
        char *version_text=g_strdup_printf("Navit %s",version);
        wcn=gui_internal_label_new(this, version_text);
        g_free(version_text);
        wcn->flags=gravity_right_center|flags_expand;
        gui_internal_widget_append(w, wcn);
    }
#if 0
    if (dots)
        gui_internal_widget_destroy(this, dots);
#endif
    return w;
}