summaryrefslogtreecommitdiffstats
path: root/src/about/preferences.c
blob: 8b5c2e0587076c1c724d4bb1559d719ff1e7e0b7 (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
/*
 * about:preferences
 *
 * Copyright (C) 2017  Patrick McDermott
 *
 * This file is part of Marquee.
 *
 * Marquee 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, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Marquee 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 Marquee.  If not, see <http://www.gnu.org/licenses/>.
 */

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

#include "paths.h"
#include "../application.h"
#include "../config.h"
#include "../about.h"
#include "../html.h"

static void
save_pref(gchar *key, gchar *value, MqConfig *config)
{
	mq_config_set(config, key, value);
}

#define GEN_BOOL(NAME, LABEL) mq_html_input_checkbox(NAME, LABEL, \
	mq_config_get_boolean(config, NAME))
#define GEN_INT( NAME, LABEL, MIN, STEP, MAX) mq_html_input_number_i( \
	NAME, LABEL, MIN, STEP, MAX, mq_config_get_integer(config, NAME))
#define GEN_DBL( NAME, LABEL, MIN, STEP, MAX) mq_html_input_number_d( \
	NAME, LABEL, MIN, STEP, MAX, mq_config_get_double(config, NAME))
#define GEN_STR( NAME, LABEL) mq_html_input_text(NAME, LABEL, \
	"")  /* TODO */
#define GEN_STRL(NAME, LABEL) mq_html_input_text(NAME, LABEL, \
	"")  /* TODO */

static gchar *
gen_page_general(MqConfig *config)
{
	return mq_html_container("div",
		mq_html_h3(NULL, "Web Browsing"),
		GEN_STR ("tabs.new",
			"New Tab Page"),
		GEN_STR ("tabs.home",
			"Home Page"),
		GEN_BOOL("tabs.background",
			"Open New Tabs in the Background"),
		GEN_BOOL("tabs.warn-on-close",
			"Warn When Closing Multiple Tabs or Windows"),

		mq_html_h3(NULL, "Navigation and Accessibility"),
		GEN_BOOL("navigation.smooth-scrolling",
			"Smooth Scrolling"),
		GEN_BOOL("navigation.tabbing",
			"Enable Tabbing Navigation (Cycling Focus by Tab Key)"),
		GEN_BOOL("navigation.caret",
			"Enable Caret (Text Cursor) Navigation"),
		GEN_BOOL("navigation.spatial",
			"Enable Spatial Navigation Between Elements By Arrow "
			"Keys"),

		mq_html_h3(NULL, "Spell Checking"),
		GEN_BOOL("spell.enable",
			"Enable Spell Checking"),
		GEN_STRL("spell.langs",
			"Spell Checking Languages"),

		mq_html_h3(NULL, "Miscellaneous"),
		GEN_BOOL("display.textarea.resize.enable",
			"Enable Resizable Text Areas"),
		GEN_BOOL("devtools.enable",
			"Enable Developer Tools"),

		mq_html_h3(NULL, "Compatibility"),
		GEN_STR ("compatibility.user-agent",
			"User Agent Identity"),
		GEN_BOOL("compatibility.quirks",
			"Enable Site-Specific Quirks"),
		NULL);
}

static gchar *
gen_page_display(MqConfig *config)
{
	return mq_html_container("div",
		mq_html_h3(NULL, "Fonts"),
		GEN_STR ("font.family.default",
			"Default Font Family"),
		GEN_STR ("font.family.monospace",
			"Default Monospace Font Family"),
		GEN_STR ("font.family.serif",
			"Default Serif Font Family"),
		GEN_STR ("font.family.sans-serif",
			"Default Sans-serif Font Family"),
		GEN_STR ("font.family.cursive",
			"Cursive Font Family"),
		GEN_STR ("font.family.fantasy",
			"Fantasy Font Family"),
		GEN_STR ("font.family.pictograph",
			"Pictograph Font Family"),
		GEN_INT ("font.size.default",
			"Default Font Size", 5, 1, 72),
		GEN_INT ("font.size.monospace-default",
			"Default Monospace Font Size", 5, 1, 72),
		GEN_INT ("font.size.minimum",
			"Minimum Font Size", 0, 1, 72),

		mq_html_h3(NULL, "Languages"),
		GEN_STRL("intl.accept-languages",
			"Preferred Web Site Languages"),
		GEN_STR ("intl.default-charset",
			"Default Character Set"),

		mq_html_h3(NULL, "Zoom"),
		GEN_DBL ("zoom.default",
			"Default Zoom Level", 0.00, 0.10, 10.00),
		GEN_BOOL("zoom.text-only",
			"Zoom Text Only"),
		NULL);
}

#undef GEN_BOOL
#undef GEN_INT
#undef GEN_DBL
#undef GEN_STR
#undef GEN_STRL

void
mq_about_preferences_response(MqApplication *application, GHashTable *query,
	WebKitURISchemeRequest *request)
{
	MqConfig *config;
	gchar    *document;

	config = mq_application_get_config(application);

	if (query) {
		g_hash_table_foreach(query, (GHFunc) save_pref, config);
		mq_config_save(config);
		mq_about_redirect(request, "mq-about:preferences");
	} else {
		document = mq_html_document("Preferences",
			mq_html_form("Save", "Cancel",
				mq_html_notebook(FALSE, "notebook1", 0,
					gen_page_general(config),
					"General",
					gen_page_display(config),
					"Display",
					NULL),
				NULL),
			NULL);
		mq_about_response(request, document);
	}
}