]> git.armaanb.net Git - chorizo.git/blob - globals.h
draft 8
[chorizo.git] / globals.h
1 struct MainWindow {
2         GtkWidget *notebook;
3         GtkWidget *win;
4 };
5
6 struct Configuration {
7         gboolean cooperative_alone;
8         gboolean noncooperative_instances;
9         gboolean private;
10         gboolean verbose;
11 };
12
13 struct Client {
14         GtkWidget *location;
15         GtkWidget *wsearch;
16         GtkWidget *isearch;
17         GtkWidget *isearch_box;
18         GtkWidget *isearch_matches;
19         GtkWidget *tabicon;
20         GtkWidget *tablabel;
21         GtkWidget *vbox;
22         GtkWidget *web_view;
23         WebKitSettings *settings;
24         gchar *external_handler_uri;
25         gchar *feed_html;
26         gchar *hover_uri;
27 };
28
29 struct DownloadItem {
30         GtkToolButton *tb;
31         WebKitDownload *download;
32 };
33
34 extern gboolean switch_tab;