summaryrefslogtreecommitdiff
path: root/src/ui/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/util.c')
-rw-r--r--src/ui/util.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/ui/util.c b/src/ui/util.c
index 603a65cc..5fb3e9f3 100644
--- a/src/ui/util.c
+++ b/src/ui/util.c
@@ -1177,6 +1177,8 @@ iWidget *makePreferences_Widget(void) {
1177 addChild_Widget(headings, iClob(makeHeading_Widget("Downloads folder:"))); 1177 addChild_Widget(headings, iClob(makeHeading_Widget("Downloads folder:")));
1178 setId_Widget(addChild_Widget(values, iClob(new_InputWidget(0))), "prefs.downloads"); 1178 setId_Widget(addChild_Widget(values, iClob(new_InputWidget(0))), "prefs.downloads");
1179#endif 1179#endif
1180 addChild_Widget(headings, iClob(makeHeading_Widget("Search URL:")));
1181 setId_Widget(addChild_Widget(values, iClob(new_InputWidget(0))), "prefs.searchurl");
1180 addChild_Widget(headings, iClob(makeHeading_Widget("Show URL on hover:"))); 1182 addChild_Widget(headings, iClob(makeHeading_Widget("Show URL on hover:")));
1181 addChild_Widget(values, iClob(makeToggle_Widget("prefs.hoverlink"))); 1183 addChild_Widget(values, iClob(makeToggle_Widget("prefs.hoverlink")));
1182 addChild_Widget(headings, iClob(makeHeading_Widget("Vertical centering:"))); 1184 addChild_Widget(headings, iClob(makeHeading_Widget("Vertical centering:")));
@@ -1300,8 +1302,6 @@ iWidget *makePreferences_Widget(void) {
1300 } 1302 }
1301 /* Network. */ { 1303 /* Network. */ {
1302 appendTwoColumnPage_(tabs, "Network", '5', &headings, &values); 1304 appendTwoColumnPage_(tabs, "Network", '5', &headings, &values);
1303 addChild_Widget(headings, iClob(makeHeading_Widget("Search URL:")));
1304 setId_Widget(addChild_Widget(values, iClob(new_InputWidget(0))), "prefs.searchurl");
1305 addChild_Widget(headings, iClob(makeHeading_Widget("Decode URLs:"))); 1305 addChild_Widget(headings, iClob(makeHeading_Widget("Decode URLs:")));
1306 addChild_Widget(values, iClob(makeToggle_Widget("prefs.decodeurls"))); 1306 addChild_Widget(values, iClob(makeToggle_Widget("prefs.decodeurls")));
1307 addChild_Widget(headings, iClob(makeHeading_Widget("Cache size:"))); 1307 addChild_Widget(headings, iClob(makeHeading_Widget("Cache size:")));
@@ -1312,6 +1312,11 @@ iWidget *makePreferences_Widget(void) {
1312 addChildFlags_Widget(cacheGroup, iClob(new_LabelWidget("MB", NULL)), frameless_WidgetFlag); 1312 addChildFlags_Widget(cacheGroup, iClob(new_LabelWidget("MB", NULL)), frameless_WidgetFlag);
1313 } 1313 }
1314 addChildFlags_Widget(values, iClob(cacheGroup), arrangeHorizontal_WidgetFlag | arrangeSize_WidgetFlag); 1314 addChildFlags_Widget(values, iClob(cacheGroup), arrangeHorizontal_WidgetFlag | arrangeSize_WidgetFlag);
1315 makeTwoColumnHeading_("CERTIFICATES", headings, values);
1316 addChild_Widget(headings, iClob(makeHeading_Widget("CA file:")));
1317 setId_Widget(addChild_Widget(values, iClob(new_InputWidget(0))), "prefs.ca.file");
1318 addChild_Widget(headings, iClob(makeHeading_Widget("CA path:")));
1319 setId_Widget(addChild_Widget(values, iClob(new_InputWidget(0))), "prefs.ca.path");
1315 makeTwoColumnHeading_("PROXIES", headings, values); 1320 makeTwoColumnHeading_("PROXIES", headings, values);
1316 addChild_Widget(headings, iClob(makeHeading_Widget("Gemini proxy:"))); 1321 addChild_Widget(headings, iClob(makeHeading_Widget("Gemini proxy:")));
1317 setId_Widget(addChild_Widget(values, iClob(new_InputWidget(0))), "prefs.proxy.gemini"); 1322 setId_Widget(addChild_Widget(values, iClob(new_InputWidget(0))), "prefs.proxy.gemini");
@@ -1331,6 +1336,8 @@ iWidget *makePreferences_Widget(void) {
1331 /* Set input field sizes. */ { 1336 /* Set input field sizes. */ {
1332 expandInputFieldWidth_(findChild_Widget(tabs, "prefs.searchurl")); 1337 expandInputFieldWidth_(findChild_Widget(tabs, "prefs.searchurl"));
1333 expandInputFieldWidth_(findChild_Widget(tabs, "prefs.downloads")); 1338 expandInputFieldWidth_(findChild_Widget(tabs, "prefs.downloads"));
1339 expandInputFieldWidth_(findChild_Widget(tabs, "prefs.ca.file"));
1340 expandInputFieldWidth_(findChild_Widget(tabs, "prefs.ca.path"));
1334 expandInputFieldWidth_(findChild_Widget(tabs, "prefs.proxy.gemini")); 1341 expandInputFieldWidth_(findChild_Widget(tabs, "prefs.proxy.gemini"));
1335 expandInputFieldWidth_(findChild_Widget(tabs, "prefs.proxy.gopher")); 1342 expandInputFieldWidth_(findChild_Widget(tabs, "prefs.proxy.gopher"));
1336 expandInputFieldWidth_(findChild_Widget(tabs, "prefs.proxy.http")); 1343 expandInputFieldWidth_(findChild_Widget(tabs, "prefs.proxy.http"));