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
|
/*
* Copyright 2006 Richard Wilson <info@tinct.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/>.
*/
#include <stdbool.h>
#include "swis.h"
#include "oslib/osspriteop.h"
#include "oslib/wimp.h"
#include "desktop/options.h"
#include "riscos/configure/configure.h"
#include "riscos/dialog.h"
#include "riscos/menus.h"
#include "riscos/options.h"
#include "riscos/tinct.h"
#include "riscos/wimp.h"
#include "riscos/wimp_event.h"
#include "utils/log.h"
#include "utils/utils.h"
#define CONNECTION_PROXY_FIELD 3
#define CONNECTION_PROXY_MENU 4
#define CONNECTION_PROXY_HOST_LABEL 5
#define CONNECTION_PROXY_HOST 6
#define CONNECTION_PROXY_PORT_LABEL 7
#define CONNECTION_PROXY_PORT 8
#define CONNECTION_PROXY_USERNAME_LABEL 9
#define CONNECTION_PROXY_USERNAME 10
#define CONNECTION_PROXY_PASSWORD_LABEL 11
#define CONNECTION_PROXY_PASSWORD 12
#define CONNECTION_MAX_FETCH_FIELD 16
#define CONNECTION_MAX_FETCH_DEC 17
#define CONNECTION_MAX_FETCH_INC 18
#define CONNECTION_HOST_FETCH_FIELD 20
#define CONNECTION_HOST_FETCH_DEC 21
#define CONNECTION_HOST_FETCH_INC 22
#define CONNECTION_CACHE_FETCH_FIELD 24
#define CONNECTION_CACHE_FETCH_DEC 25
#define CONNECTION_CACHE_FETCH_INC 26
#define CONNECTION_DEFAULT_BUTTON 27
#define CONNECTION_CANCEL_BUTTON 28
#define CONNECTION_OK_BUTTON 29
#define http_proxy_type (option_http_proxy ? (option_http_proxy_auth + 1) : 0)
static int ro_gui_options_connection_proxy_type(wimp_w w);
static void ro_gui_options_connection_default(wimp_pointer *pointer);
static bool ro_gui_options_connection_ok(wimp_w w);
static bool ro_gui_options_connection_update(wimp_w w, wimp_i i, wimp_menu *m,
wimp_selection *s, menu_action a);
bool ro_gui_options_connection_initialise(wimp_w w)
{
int proxy_type;
/* set the current values */
proxy_type = (option_http_proxy ? (option_http_proxy_auth + 1) : 0);
ro_gui_set_icon_string(w, CONNECTION_PROXY_FIELD,
proxy_type_menu->entries[proxy_type].
data.indirected_text.text, true);
ro_gui_set_icon_string(w, CONNECTION_PROXY_HOST,
option_http_proxy_host ?
option_http_proxy_host : "", true);
ro_gui_set_icon_integer(w, CONNECTION_PROXY_PORT,
option_http_proxy_port);
ro_gui_set_icon_string(w, CONNECTION_PROXY_USERNAME,
option_http_proxy_auth_user ?
option_http_proxy_auth_user : "", true);
ro_gui_set_icon_string(w, CONNECTION_PROXY_PASSWORD,
option_http_proxy_auth_pass ?
option_http_proxy_auth_pass : "", true);
ro_gui_set_icon_integer(w, CONNECTION_MAX_FETCH_FIELD,
option_max_fetchers);
ro_gui_set_icon_integer(w, CONNECTION_HOST_FETCH_FIELD,
option_max_fetchers_per_host);
ro_gui_set_icon_integer(w, CONNECTION_CACHE_FETCH_FIELD,
option_max_cached_fetch_handles);
ro_gui_options_connection_update(w, -1, NULL, NULL, NO_ACTION);
/* register icons */
ro_gui_wimp_event_register_menu_gright(w, CONNECTION_PROXY_FIELD,
CONNECTION_PROXY_MENU, proxy_type_menu);
ro_gui_wimp_event_register_text_field(w, CONNECTION_PROXY_HOST_LABEL);
ro_gui_wimp_event_register_text_field(w, CONNECTION_PROXY_HOST);
ro_gui_wimp_event_register_text_field(w, CONNECTION_PROXY_PORT_LABEL);
ro_gui_wimp_event_register_text_field(w, CONNECTION_PROXY_PORT);
ro_gui_wimp_event_register_text_field(w, CONNECTION_PROXY_USERNAME_LABEL);
ro_gui_wimp_event_register_text_field(w, CONNECTION_PROXY_USERNAME);
ro_gui_wimp_event_register_text_field(w, CONNECTION_PROXY_PASSWORD_LABEL);
ro_gui_wimp_event_register_text_field(w, CONNECTION_PROXY_PASSWORD);
ro_gui_wimp_event_register_numeric_field(w, CONNECTION_MAX_FETCH_FIELD,
CONNECTION_MAX_FETCH_INC, CONNECTION_MAX_FETCH_DEC,
1, 99, 1, 0);
ro_gui_wimp_event_register_numeric_field(w, CONNECTION_HOST_FETCH_FIELD,
CONNECTION_HOST_FETCH_INC, CONNECTION_HOST_FETCH_DEC,
1, 99, 1, 0);
ro_gui_wimp_event_register_numeric_field(w, CONNECTION_CACHE_FETCH_FIELD,
CONNECTION_CACHE_FETCH_INC, CONNECTION_CACHE_FETCH_DEC,
1, 99, 1, 0);
ro_gui_wimp_event_register_menu_selection(w,
ro_gui_options_connection_update);
ro_gui_wimp_event_register_button(w, CONNECTION_DEFAULT_BUTTON,
ro_gui_options_connection_default);
ro_gui_wimp_event_register_cancel(w, CONNECTION_CANCEL_BUTTON);
ro_gui_wimp_event_register_ok(w, CONNECTION_OK_BUTTON,
ro_gui_options_connection_ok);
ro_gui_wimp_event_set_help_prefix(w, "HelpConnectConfig");
ro_gui_wimp_event_memorise(w);
return true;
}
bool ro_gui_options_connection_update(wimp_w w, wimp_i i, wimp_menu *m,
wimp_selection *s, menu_action a)
{
int proxy_type;
bool host, user;
/* update the shaded state */
proxy_type = ro_gui_options_connection_proxy_type(w);
host = (proxy_type > 0);
user = (proxy_type > 1);
ro_gui_set_icon_shaded_state(w, CONNECTION_PROXY_HOST_LABEL, !host);
ro_gui_set_icon_shaded_state(w, CONNECTION_PROXY_HOST, !host);
ro_gui_set_icon_shaded_state(w, CONNECTION_PROXY_PORT_LABEL, !host);
ro_gui_set_icon_shaded_state(w, CONNECTION_PROXY_PORT, !host);
ro_gui_set_icon_shaded_state(w, CONNECTION_PROXY_USERNAME_LABEL, !user);
ro_gui_set_icon_shaded_state(w, CONNECTION_PROXY_USERNAME, !user);
ro_gui_set_icon_shaded_state(w, CONNECTION_PROXY_PASSWORD_LABEL, !user);
ro_gui_set_icon_shaded_state(w, CONNECTION_PROXY_PASSWORD, !user);
return true;
}
int ro_gui_options_connection_proxy_type(wimp_w w)
{
const char *text;
int i;
text = ro_gui_get_icon_string(w, CONNECTION_PROXY_FIELD);
for (i = 0; (i < 4); i++)
if (!strcmp(text, proxy_type_menu->entries[i].
data.indirected_text.text))
return i;
assert(false);
}
void ro_gui_options_connection_default(wimp_pointer *pointer)
{
ro_gui_set_icon_string(pointer->w, CONNECTION_PROXY_FIELD,
proxy_type_menu->entries[0].
data.indirected_text.text, true);
ro_gui_set_icon_string(pointer->w, CONNECTION_PROXY_HOST, "", true);
ro_gui_set_icon_integer(pointer->w, CONNECTION_PROXY_PORT, 8080);
ro_gui_set_icon_string(pointer->w, CONNECTION_PROXY_USERNAME, "", true);
ro_gui_set_icon_string(pointer->w, CONNECTION_PROXY_PASSWORD, "", true);
ro_gui_set_icon_integer(pointer->w, CONNECTION_MAX_FETCH_FIELD, 24);
ro_gui_set_icon_integer(pointer->w, CONNECTION_HOST_FETCH_FIELD, 5);
ro_gui_set_icon_integer(pointer->w, CONNECTION_CACHE_FETCH_FIELD, 6);
ro_gui_options_connection_update(pointer->w, -1, NULL, NULL, NO_ACTION);
}
bool ro_gui_options_connection_ok(wimp_w w)
{
int proxy_type;
proxy_type = ro_gui_options_connection_proxy_type(w);
if (proxy_type == 0)
option_http_proxy = false;
else {
option_http_proxy = true;
option_http_proxy_auth = proxy_type - 1;
}
if (option_http_proxy_host)
free(option_http_proxy_host);
option_http_proxy_host = strdup(ro_gui_get_icon_string(w,
CONNECTION_PROXY_HOST));
option_http_proxy_port = ro_gui_get_icon_decimal(w,
CONNECTION_PROXY_PORT, 0);
if (option_http_proxy_auth_user)
free(option_http_proxy_auth_user);
option_http_proxy_auth_user = strdup(ro_gui_get_icon_string(w,
CONNECTION_PROXY_USERNAME));
if (option_http_proxy_auth_pass)
free(option_http_proxy_auth_pass);
option_http_proxy_auth_pass = strdup(ro_gui_get_icon_string(w,
CONNECTION_PROXY_PASSWORD));
option_max_fetchers = ro_gui_get_icon_decimal(w,
CONNECTION_MAX_FETCH_FIELD, 0);
option_max_fetchers_per_host = ro_gui_get_icon_decimal(w,
CONNECTION_HOST_FETCH_FIELD, 0);
option_max_cached_fetch_handles = ro_gui_get_icon_decimal(w,
CONNECTION_CACHE_FETCH_FIELD, 0);
ro_gui_save_options();
return true;
}
|