summaryrefslogtreecommitdiff
path: root/frontends/gtk/hotlist.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2016-08-10 18:36:41 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2016-08-10 18:57:36 +0100
commit9aecf47408f22f4f0a01e41648f25e1a7307b332 (patch)
tree4a351d67f53edb81096bd8720b79b07179919532 /frontends/gtk/hotlist.c
parentb63443b243bec435c1650aef2068299674b2a209 (diff)
downloadnetsurf-9aecf47408f22f4f0a01e41648f25e1a7307b332.tar.gz
netsurf-9aecf47408f22f4f0a01e41648f25e1a7307b332.tar.bz2
Treeview: Rationalise initialisation and finalisation.
Previously the expected behaviour for front ends using the correct API for hotlist, global history, cookie manager, and ssl cert viewer was that the front end would initialise the treeview module on startup and finalise it on application exit. However, this meant that the front ends had to include the core treeview header, which they didn't otherwise need. Since the tree module provided access to the new treeview utilities through the old tree API, and was used by front ends with no changes for the new treeview API, the tree layer refcounted initialisations of treeview-based widgets, and only called the underlying treeview init/fini functions when needed. This change moves that refcounting into the treeview module. Now the hotlist, global history, cookie manager, and ssl cert viewer widgets call call treeview init/fini as part of their own initialisation and finalisation. This means that front ends using the correct APIs for treeview-based widgets don't need to know anything about the underlying treeview, and the tree module compatibility layer has had its treeview refcounting removed. Finally, the treeview_init function took a font size parameter. Now it does not and lit gets font size from config. We probably want to add a new `treeview_font_size` option to nsoptions, and have differnent defaults on different platforms. 12pt on RISC OS, and 11pt elsewhere, most likely.
Diffstat (limited to 'frontends/gtk/hotlist.c')
-rw-r--r--frontends/gtk/hotlist.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/frontends/gtk/hotlist.c b/frontends/gtk/hotlist.c
index 2d0641ff2..c47d1da3f 100644
--- a/frontends/gtk/hotlist.c
+++ b/frontends/gtk/hotlist.c
@@ -31,7 +31,6 @@
#include "netsurf/keypress.h"
#include "netsurf/plotters.h"
#include "desktop/hotlist.h"
-#include "desktop/treeview.h"
#include "gtk/compat.h"
#include "gtk/plotters.h"
@@ -318,11 +317,6 @@ static nserror nsgtk_hotlist_init(void)
return NSERROR_OK;
}
- res = treeview_init(0);
- if (res != NSERROR_OK) {
- return res;
- }
-
ncwin = malloc(sizeof(struct nsgtk_hotlist_window));
if (ncwin == NULL) {
return NSERROR_NOMEM;