aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/variables.h
blob: 6aa0ab0d7eeeac0896207f5130666ea2bd929d79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Uzbl Variables
 */

#ifndef __VARIABLES__
#define __VARIABLES__

#include <glib.h>
#include <webkit/webkit.h>

gboolean    set_var_value(const gchar *name, gchar *val);
void        expand_variable(GString *buf, const gchar *name);
void        variables_hash();
void        dump_config();
void        dump_config_as_events();

void        uri_change_cb (WebKitWebView *web_view, GParamSpec param_spec);
void        set_show_status();
void        set_geometry();

#endif