aboutsummaryrefslogtreecommitdiffstats
path: root/src/web2.h
blob: 3c333ef4300c2b2834949d50f174a25e78ac8305 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef WEB2_H
#define WEB2_H

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

typedef struct {
	GtkWidget *main_window;
	GtkWidget *pages_notebook;
	
	GtkToolItem *go_button;
	GtkToolItem *back_button;
	GtkToolItem *forward_button;
	GtkToolItem *bookmark_button;
	GtkToolItem *find_button;
	/*GtkToolItem *edit_button;*/
	GtkToolItem *zoomout_button;
	GtkToolItem *zoomin_button;
	
	GtkWidget *header;
	GtkWidget *nav_box;
	GtkWidget *nav_go_button;
	GtkWidget *progress_box;
	GtkWidget *url_entry;
	GtkWidget *progress_bar;

	WebKitWebView *current_page;
} Web2Data;

#endif /* WEB2_H */