From 6d474e74e6a967563ea1b85f4d8576ebc41153f1 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Mon, 16 Nov 2015 21:05:01 +0000 Subject: Prettier hotlist toolbar --- amiga/gui.c | 37 ++++++++++++++++++++++++++++++++++--- amiga/gui.h | 2 +- 2 files changed, 35 insertions(+), 4 deletions(-) diff --git a/amiga/gui.c b/amiga/gui.c index 31339fbbe..f9dcec8cf 100644 --- a/amiga/gui.c +++ b/amiga/gui.c @@ -59,6 +59,7 @@ #include #include #include +#include #include #include #include @@ -77,6 +78,7 @@ #include #include #include +#include #include @@ -3038,15 +3040,44 @@ static bool ami_gui_hotlist_add(void *userdata, int level, int item, const char { struct ami_gui_tb_userdata *tb_userdata = (struct ami_gui_tb_userdata *)userdata; struct Node *speed_button_node; + char menu_icon[1024]; if(level != 1) return false; if(item > AMI_GUI_TOOLBAR_MAX) return false; if(is_folder == true) return false; - tb_userdata->gw->hotlist_toolbar_lab[item] = ami_utf8_easy(title); + char *utf8title = ami_utf8_easy(title); + if(utf8title == NULL) return false; + + char *iconname = ami_gui_get_cache_favicon_name(url, true); + if (iconname == NULL) iconname = ASPrintf("icons/content.png"); + ami_locate_resource(menu_icon, iconname); + + tb_userdata->gw->hotlist_toolbar_lab[item] = BitMapObj, + IA_Scalable, TRUE, + BITMAP_Screen, scrn, + BITMAP_SourceFile, menu_icon, + BITMAP_Masking, TRUE, + BitMapEnd; + + /* \todo make this scale the bitmap to these dimensions */ + SetAttrs(tb_userdata->gw->hotlist_toolbar_lab[item], + BITMAP_Width, 16, + BITMAP_Height, 16, + TAG_DONE); + + Object *lab_item = LabelObj, + // LABEL_DrawInfo, dri, + LABEL_DisposeImage, TRUE, + LABEL_Image, tb_userdata->gw->hotlist_toolbar_lab[item], + LABEL_Text, " ", + LABEL_Text, utf8title, + LabelEnd; + + free(utf8title); speed_button_node = AllocSpeedButtonNode(item, - SBNA_Text, tb_userdata->gw->hotlist_toolbar_lab[item], + SBNA_Image, lab_item, SBNA_UserData, (void *)url, TAG_DONE); @@ -3134,7 +3165,7 @@ static void ami_gui_hotlist_toolbar_free(struct gui_window_2 *gwin, struct List for(i = 0; i < AMI_GUI_TOOLBAR_MAX; i++) { if(gwin->hotlist_toolbar_lab[i]) { - free(gwin->hotlist_toolbar_lab[i]); + DisposeObject(gwin->hotlist_toolbar_lab[i]); gwin->hotlist_toolbar_lab[i] = NULL; } } diff --git a/amiga/gui.h b/amiga/gui.h index 6a010828c..86dedcbc4 100644 --- a/amiga/gui.h +++ b/amiga/gui.h @@ -117,7 +117,7 @@ struct gui_window_2 { UBYTE *menutype; struct NewMenu *menu; ULONG hotlist_items; - char *hotlist_toolbar_lab[AMI_GUI_TOOLBAR_MAX]; + Object *hotlist_toolbar_lab[AMI_GUI_TOOLBAR_MAX]; struct List hotlist_toolbar_list; struct List *web_search_list; Object *search_bm; -- cgit v1.2.3