Adapt setstyle()

We can't anymore pass a simple path to a stylefile, we have to read the
entire file to create a stylesheet and apply it to the view.
This commit is contained in:
Quentin Rameau 2015-11-20 00:13:07 +01:00
parent 701815a5f2
commit ba8617e4ee
1 changed files with 16 additions and 4 deletions

20
surf.c
View File

@ -135,7 +135,7 @@ static void gettogglestat(Client *c);
static void getpagestat(Client *c);
static char *geturi(Client *c);
static const gchar *getstyle(const char *uri);
static void setstyle(Client *c, const char *style);
static void setstyle(Client *c, const char *stylefile);
static void handleplumb(Client *c, const gchar *uri);
@ -670,11 +670,23 @@ getstyle(const char *uri)
}
void
setstyle(Client *c, const char *style)
setstyle(Client *c, const char *stylefile)
{
WebKitWebSettings *settings = webkit_web_view_get_settings(c->view);
gchar *style;
g_object_set(G_OBJECT(settings), "user-stylesheet-uri", style, NULL);
if (!g_file_get_contents(stylefile, &style, NULL, NULL)) {
fprintf(stderr, "Could not read style file: %s\n", stylefile);
return;
}
webkit_user_content_manager_add_style_sheet(
webkit_web_view_get_user_content_manager(c->view),
webkit_user_style_sheet_new(style,
WEBKIT_USER_CONTENT_INJECT_ALL_FRAMES,
WEBKIT_USER_STYLE_LEVEL_USER,
NULL, NULL));
g_free(style);
}
void