summaryrefslogtreecommitdiff
path: root/gtk/cookies.c
blob: dd62d568eb196c946337b315817802cfd403a4da (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
/*
 * Copyright 2009 Paul Blokus <paul_pl@users.sourceforge.net>
 *
 * This file is part of NetSurf, http://www.netsurf-browser.org/
 *
 * NetSurf is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * NetSurf is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

/** \file
 * Cookies (implementation).
 */


#include "desktop/cookies.h"
#include "desktop/plotters.h"
#include "desktop/tree.h"
#include "utils/log.h"
#include "gtk/gui.h"
#include "gtk/cookies.h"
#include "gtk/plotters.h"
#include "gtk/scaffolding.h"
#include "gtk/treeview.h"

#define GLADE_NAME "cookies.glade"

#define MENUPROTO(x) static gboolean nsgtk_on_##x##_activate( \
		GtkMenuItem *widget, gpointer g)
#define MENUEVENT(x) { #x, G_CALLBACK(nsgtk_on_##x##_activate) }		
#define MENUHANDLER(x) gboolean nsgtk_on_##x##_activate(GtkMenuItem *widget, \
		gpointer g)

struct menu_events {
	const char *widget;
	GCallback handler;
};

static void nsgtk_cookies_init_menu(void);

/* edit menu */
MENUPROTO(delete_selected);
MENUPROTO(delete_all);
MENUPROTO(select_all);
MENUPROTO(clear_selection);

/* view menu*/
MENUPROTO(expand_all);
MENUPROTO(expand_domains);
MENUPROTO(expand_cookies);
MENUPROTO(collapse_all);
MENUPROTO(collapse_domains);
MENUPROTO(collapse_cookies);


static struct menu_events menu_events[] = {
	
	/* edit menu */
	MENUEVENT(delete_selected),
	MENUEVENT(delete_all),
	MENUEVENT(select_all),
	MENUEVENT(clear_selection),
	
	/* view menu*/
	MENUEVENT(expand_all),
	MENUEVENT(expand_domains),
	MENUEVENT(expand_cookies),		  
	MENUEVENT(collapse_all),
	MENUEVENT(collapse_domains),
	MENUEVENT(collapse_cookies),
		  
	{NULL, NULL}
};

static struct nsgtk_treeview *cookies_window;
static GtkBuilder *gladeFile;
GtkWindow *wndCookies;

/**
 * Creates the window for the cookies tree.
 */
bool nsgtk_cookies_init(const char *glade_file_location)
{
	GtkWindow *window;
	GtkScrolledWindow *scrolled;
	GtkDrawingArea *drawing_area;

	GError* error = NULL;
	gladeFile = gtk_builder_new ();
	if (!gtk_builder_add_from_file(gladeFile, glade_file_location, &error)) {
		g_warning ("Couldn't load builder file: %s", error->message);
		g_error_free (error);
		return false;
	}
	
	gtk_builder_connect_signals(gladeFile, NULL);
	
	wndCookies = GTK_WINDOW(gtk_builder_get_object(gladeFile, "wndCookies"));
	window = wndCookies;
	
	scrolled = GTK_SCROLLED_WINDOW(gtk_builder_get_object(gladeFile,
			"cookiesScrolled"));

	drawing_area = GTK_DRAWING_AREA(gtk_builder_get_object(gladeFile,
			"cookiesDrawingArea"));
	
	cookies_window = nsgtk_treeview_create(cookies_get_tree_flags(), window,
			scrolled, drawing_area);
	
	if (cookies_window == NULL)
		return false;
	
#define CONNECT(obj, sig, callback, ptr) \
	g_signal_connect(G_OBJECT(obj), (sig), G_CALLBACK(callback), (ptr))	
	
	CONNECT(window, "delete_event", gtk_widget_hide_on_delete, NULL);
	CONNECT(window, "hide", nsgtk_tree_window_hide, cookies_window);
	
	cookies_initialise(nsgtk_treeview_get_tree(cookies_window),
			   tree_directory_icon_name,
			   tree_content_icon_name);
		
	nsgtk_cookies_init_menu();

	return true;
}

/**
 * Connects menu events in the cookies window.
 */
void nsgtk_cookies_init_menu()
{
	struct menu_events *event = menu_events;
	GtkWidget *w;

	while (event->widget != NULL) {
		w = GTK_WIDGET(gtk_builder_get_object(gladeFile, event->widget));
		if (w == NULL) {
			LOG(("Unable to connect menu widget ""%s""", event->widget));		} else {
			g_signal_connect(G_OBJECT(w), "activate", event->handler, cookies_window);
		}
		event++;
	}
}

/**
 * Destroys the cookies window and performs any other necessary cleanup actions.
 */
void nsgtk_cookies_destroy(void)
{
	/* TODO: what about gladeFile? */
	cookies_cleanup();
	nsgtk_treeview_destroy(cookies_window);
}


/* edit menu */
MENUHANDLER(delete_selected)
{
	cookies_delete_selected();
	return TRUE;
}

MENUHANDLER(delete_all)
{
	cookies_delete_all();
	return TRUE;
}

MENUHANDLER(select_all)
{
	cookies_select_all();
	return TRUE;
}

MENUHANDLER(clear_selection)
{
	cookies_clear_selection();
	return TRUE;
}

/* view menu*/
MENUHANDLER(expand_all)
{
	cookies_expand_all();
	return TRUE;
}

MENUHANDLER(expand_domains)
{
	cookies_expand_domains();
	return TRUE;
}

MENUHANDLER(expand_cookies)
{
	cookies_expand_cookies();
	return TRUE;
}

MENUHANDLER(collapse_all)
{
	cookies_collapse_all();
	return TRUE;
}

MENUHANDLER(collapse_domains)
{
	cookies_collapse_domains();
	return TRUE;
}

MENUHANDLER(collapse_cookies)
{
	cookies_collapse_cookies();
	return TRUE;
}