682 lines
19 KiB
C
682 lines
19 KiB
C
/*
|
|
* Copyright 2009 Mark Benjamin <netsurf-browser.org.MarkBenjamin@dfgh.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 <windows.h>
|
|
#include <commctrl.h>
|
|
|
|
#include "desktop/options.h"
|
|
#include "utils/log.h"
|
|
#include "utils/messages.h"
|
|
#include "utils/utils.h"
|
|
#include "windows/gui.h"
|
|
#include "windows/prefs.h"
|
|
#include "windows/resourceid.h"
|
|
#include "windows/windbg.h"
|
|
|
|
#define NSWS_PREFS_WINDOW_WIDTH 600
|
|
#define NSWS_PREFS_WINDOW_HEIGHT 400
|
|
|
|
static CHOOSEFONT *nsws_prefs_font_prepare(int fontfamily, HWND parent)
|
|
{
|
|
CHOOSEFONT *cf = malloc(sizeof(CHOOSEFONT));
|
|
if (cf == NULL) {
|
|
warn_user(messages_get("NoMemory"),0);
|
|
return NULL;
|
|
}
|
|
LOGFONT *lf = malloc(sizeof(LOGFONT));
|
|
if (lf == NULL) {
|
|
warn_user(messages_get("NoMemory"),0);
|
|
free(cf);
|
|
return NULL;
|
|
}
|
|
switch(fontfamily) {
|
|
case FF_ROMAN:
|
|
snprintf(lf->lfFaceName, LF_FACESIZE, "%s",
|
|
option_font_serif);
|
|
break;
|
|
case FF_MODERN:
|
|
snprintf(lf->lfFaceName, LF_FACESIZE, "%s",
|
|
option_font_mono);
|
|
break;
|
|
case FF_SCRIPT:
|
|
snprintf(lf->lfFaceName, LF_FACESIZE, "%s",
|
|
option_font_cursive);
|
|
break;
|
|
case FF_DECORATIVE:
|
|
snprintf(lf->lfFaceName, LF_FACESIZE, "%s",
|
|
option_font_fantasy);
|
|
break;
|
|
case FF_SWISS:
|
|
default:
|
|
snprintf(lf->lfFaceName, LF_FACESIZE, "%s",
|
|
option_font_sans);
|
|
break;
|
|
}
|
|
cf->lStructSize = sizeof(CHOOSEFONT);
|
|
cf->hwndOwner = parent;
|
|
cf->lpLogFont = lf;
|
|
cf->Flags = CF_SCREENFONTS | CF_INITTOLOGFONTSTRUCT | CF_LIMITSIZE;
|
|
cf->nSizeMin = 16;
|
|
cf->nSizeMax = 24;
|
|
|
|
return cf;
|
|
}
|
|
|
|
static void change_spinner(HWND sub, double change, double minval, double maxval)
|
|
{
|
|
char *temp, number[6];
|
|
int len;
|
|
double value = 0;
|
|
|
|
len = SendMessage(sub, WM_GETTEXTLENGTH, 0, 0);
|
|
temp = malloc(len + 1);
|
|
|
|
if (temp == NULL)
|
|
return;
|
|
|
|
SendMessage(sub, WM_GETTEXT, (WPARAM)(len + 1), (LPARAM) temp);
|
|
|
|
value = strtod(temp, NULL) - change;
|
|
|
|
free(temp);
|
|
value = max(value, minval);
|
|
value = min(value, maxval);
|
|
|
|
if ((change == 1.0) || (change == -1.0))
|
|
snprintf(number, 6, "%.0f", value);
|
|
else
|
|
snprintf(number, 6, "%.1f", value);
|
|
|
|
SendMessage(sub, WM_SETTEXT, 0, (LPARAM)number);
|
|
}
|
|
|
|
|
|
static BOOL CALLBACK options_appearance_dialog_handler(HWND hwnd,
|
|
UINT msg, WPARAM wparam, LPARAM lParam)
|
|
{
|
|
int len;
|
|
char *temp, number[6];
|
|
HWND sub;
|
|
|
|
LOG_WIN_MSG(hwnd, msg, wparam, lParam);
|
|
|
|
switch (msg) {
|
|
case WM_INITDIALOG:
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_FONTDEF);
|
|
SendMessage(sub, CB_ADDSTRING, 0, (LPARAM)"Sans serif");
|
|
SendMessage(sub, CB_ADDSTRING, 0, (LPARAM)"Serif");
|
|
SendMessage(sub, CB_ADDSTRING, 0, (LPARAM)"Monospace");
|
|
SendMessage(sub, CB_ADDSTRING, 0, (LPARAM)"Cursive");
|
|
SendMessage(sub, CB_ADDSTRING, 0, (LPARAM)"Fantasy");
|
|
SendMessage(sub, CB_SETCURSEL,
|
|
(WPARAM) (option_font_default - 1), 0);
|
|
|
|
if ((option_font_sans != NULL) &&
|
|
(option_font_sans[0] != '\0')) {
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_SANS);
|
|
SendMessage(sub, WM_SETTEXT, 0,
|
|
(LPARAM)option_font_sans);
|
|
}
|
|
if ((option_font_serif != NULL) &&
|
|
(option_font_serif[0] != '\0')) {
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_SERIF);
|
|
SendMessage(sub, WM_SETTEXT, 0,
|
|
(LPARAM)option_font_serif);
|
|
}
|
|
if ((option_font_mono != NULL) &&
|
|
(option_font_mono[0] != '\0')) {
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_MONO);
|
|
SendMessage(sub, WM_SETTEXT, 0,
|
|
(LPARAM)option_font_mono);
|
|
}
|
|
if ((option_font_cursive != NULL) &&
|
|
(option_font_cursive[0] != '\0')) {
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_CURSIVE);
|
|
SendMessage(sub, WM_SETTEXT, 0,
|
|
(LPARAM)option_font_cursive);
|
|
}
|
|
if ((option_font_fantasy != NULL) &&
|
|
(option_font_fantasy[0] != '\0')) {
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_FANTASY);
|
|
SendMessage(sub, WM_SETTEXT, 0,
|
|
(LPARAM)option_font_fantasy);
|
|
}
|
|
if (option_font_min_size != 0) {
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_FONT_MINSIZE);
|
|
snprintf(number, 6, "%.1f", option_font_min_size /
|
|
10.0);
|
|
SendMessage(sub, WM_SETTEXT, 0, (LPARAM)number);
|
|
}
|
|
if (option_font_size != 0) {
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_FONT_SIZE);
|
|
snprintf(number, 6, "%.1f", option_font_size / 10.0);
|
|
SendMessage(sub, WM_SETTEXT, 0, (LPARAM)number);
|
|
}
|
|
if (option_max_fetchers != 0) {
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_FETCHERS);
|
|
snprintf(number, 6, "%d", option_max_fetchers);
|
|
SendMessage(sub, WM_SETTEXT, 0, (LPARAM)number);
|
|
}
|
|
if (option_max_fetchers_per_host != 0) {
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_FETCH_HOST);
|
|
snprintf(number, 6, "%d",
|
|
option_max_fetchers_per_host);
|
|
SendMessage(sub, WM_SETTEXT, 0, (LPARAM)number);
|
|
}
|
|
if (option_max_cached_fetch_handles != 0) {
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_FETCH_HANDLES);
|
|
snprintf(number, 6, "%d",
|
|
option_max_cached_fetch_handles);
|
|
SendMessage(sub, WM_SETTEXT, 0, (LPARAM)number);
|
|
}
|
|
|
|
|
|
/* animation */
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_NOANIMATION);
|
|
SendMessage(sub, BM_SETCHECK, (WPARAM)((option_animate_images)
|
|
? BST_UNCHECKED : BST_CHECKED), 0);
|
|
|
|
if (option_minimum_gif_delay != 0) {
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_ANIMATIONDELAY);
|
|
snprintf(number, 6, "%.1f", option_minimum_gif_delay /
|
|
100.0);
|
|
SendMessage(sub, WM_SETTEXT, 0, (LPARAM)number);
|
|
}
|
|
break;
|
|
|
|
case WM_NOTIFY:
|
|
switch (((NMHDR FAR *)lParam)->code) {
|
|
case PSN_APPLY:
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_FONT_SIZE);
|
|
len = SendMessage(sub, WM_GETTEXTLENGTH, 0, 0);
|
|
temp = malloc(len + 1);
|
|
if (temp != NULL) {
|
|
SendMessage(sub, WM_GETTEXT, (WPARAM)
|
|
(len + 1), (LPARAM) temp);
|
|
option_font_size = (int)
|
|
(10 * strtod(temp, NULL));
|
|
free(temp);
|
|
}
|
|
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_FONT_MINSIZE);
|
|
len = SendMessage(sub, WM_GETTEXTLENGTH, 0, 0);
|
|
temp = malloc(len + 1);
|
|
if (temp != NULL) {
|
|
SendMessage(sub, WM_GETTEXT, (WPARAM)
|
|
(len + 1), (LPARAM) temp);
|
|
option_font_min_size = (int)
|
|
(10 * strtod(temp, NULL));
|
|
free(temp);
|
|
}
|
|
|
|
/* animation */
|
|
option_animate_images = (IsDlgButtonChecked(hwnd, IDC_PREFS_NOANIMATION) == BST_CHECKED) ? true : false;
|
|
|
|
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_ANIMATIONDELAY);
|
|
len = SendMessage(sub, WM_GETTEXTLENGTH, 0, 0);
|
|
temp = malloc(len + 1);
|
|
if (temp != NULL) {
|
|
SendMessage(sub, WM_GETTEXT, (WPARAM)
|
|
(len + 1), (LPARAM) temp);
|
|
option_minimum_gif_delay = (int)
|
|
(100 * strtod(temp, NULL));
|
|
free(temp);
|
|
}
|
|
|
|
break;
|
|
|
|
case UDN_DELTAPOS: {
|
|
NMUPDOWN *ud = (NMUPDOWN *)lParam;
|
|
switch(((NMHDR *)lParam)->idFrom) {
|
|
case IDC_PREFS_FONT_SIZE_SPIN:
|
|
change_spinner(GetDlgItem(hwnd, IDC_PREFS_FONT_SIZE), 0.1 * ud->iDelta, 1.0, 50.0);
|
|
return TRUE;
|
|
|
|
case IDC_PREFS_FONT_MINSIZE_SPIN:
|
|
change_spinner(GetDlgItem(hwnd, IDC_PREFS_FONT_MINSIZE), 0.1 * ud->iDelta, 1.0, 50.0);
|
|
return TRUE;
|
|
|
|
case IDC_PREFS_ANIMATIONDELAY_SPIN:
|
|
change_spinner(GetDlgItem(hwnd, IDC_PREFS_ANIMATIONDELAY), 0.1 * ud->iDelta, 0.1, 100.0);
|
|
return TRUE;
|
|
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
|
|
|
|
case WM_COMMAND:
|
|
LOG(("WM_COMMAND Identifier 0x%x",LOWORD(wparam)));
|
|
switch(LOWORD(wparam)) {
|
|
case IDC_PREFS_PROXYTYPE:
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_PROXYTYPE);
|
|
option_http_proxy_auth = SendMessage(sub,
|
|
CB_GETCURSEL, 0, 0) - 1;
|
|
option_http_proxy = (option_http_proxy_auth != -1);
|
|
option_http_proxy_auth += (option_http_proxy) ? 0 : 1;
|
|
break;
|
|
|
|
case IDC_PREFS_SANS: {
|
|
CHOOSEFONT *cf = nsws_prefs_font_prepare(FF_SWISS,
|
|
hwnd);
|
|
if (cf == NULL)
|
|
break;
|
|
if (ChooseFont(cf) == TRUE) {
|
|
if (option_font_sans != NULL)
|
|
free(option_font_sans);
|
|
option_font_sans = strdup(
|
|
cf->lpLogFont->lfFaceName);
|
|
}
|
|
free(cf->lpLogFont);
|
|
free(cf);
|
|
if ((option_font_sans != NULL) &&
|
|
(option_font_sans[0] != '\0')) {
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_SANS);
|
|
SendMessage(sub, WM_SETTEXT, 0,
|
|
(LPARAM)option_font_sans);
|
|
}
|
|
break;
|
|
}
|
|
|
|
case IDC_PREFS_SERIF: {
|
|
CHOOSEFONT *cf = nsws_prefs_font_prepare(FF_ROMAN,
|
|
hwnd);
|
|
if (cf == NULL)
|
|
break;
|
|
|
|
if (ChooseFont(cf) == TRUE) {
|
|
if (option_font_serif != NULL)
|
|
free(option_font_serif);
|
|
option_font_serif = strdup(
|
|
cf->lpLogFont->lfFaceName);
|
|
}
|
|
free(cf->lpLogFont);
|
|
free(cf);
|
|
if ((option_font_serif != NULL) &&
|
|
(option_font_serif[0] != '\0')) {
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_SERIF);
|
|
SendMessage(sub, WM_SETTEXT, 0,
|
|
(LPARAM)option_font_serif);
|
|
}
|
|
break;
|
|
}
|
|
case IDC_PREFS_MONO: {
|
|
CHOOSEFONT *cf = nsws_prefs_font_prepare(FF_MODERN,
|
|
hwnd);
|
|
if (cf == NULL)
|
|
break;
|
|
|
|
if (ChooseFont(cf) == TRUE) {
|
|
if (option_font_mono != NULL)
|
|
free(option_font_mono);
|
|
option_font_mono = strdup(
|
|
cf->lpLogFont->lfFaceName);
|
|
}
|
|
free(cf->lpLogFont);
|
|
free(cf);
|
|
if ((option_font_mono != NULL) &&
|
|
(option_font_mono[0] != '\0')) {
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_MONO);
|
|
SendMessage(sub, WM_SETTEXT, 0,
|
|
(LPARAM)option_font_mono);
|
|
}
|
|
break;
|
|
}
|
|
case IDC_PREFS_CURSIVE: {
|
|
CHOOSEFONT *cf = nsws_prefs_font_prepare(FF_SCRIPT,
|
|
hwnd);
|
|
if (cf == NULL)
|
|
break;
|
|
|
|
if (ChooseFont(cf) == TRUE) {
|
|
if (option_font_cursive != NULL)
|
|
free(option_font_cursive);
|
|
option_font_cursive = strdup(
|
|
cf->lpLogFont->lfFaceName);
|
|
}
|
|
free(cf->lpLogFont);
|
|
free(cf);
|
|
if ((option_font_cursive != NULL) &&
|
|
(option_font_cursive[0] != '\0')) {
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_CURSIVE);
|
|
SendMessage(sub, WM_SETTEXT, 0,
|
|
(LPARAM)option_font_cursive);
|
|
}
|
|
break;
|
|
}
|
|
case IDC_PREFS_FANTASY: {
|
|
CHOOSEFONT *cf = nsws_prefs_font_prepare(FF_DECORATIVE,
|
|
hwnd);
|
|
if (cf == NULL)
|
|
break;
|
|
if (ChooseFont(cf) == TRUE) {
|
|
if (option_font_fantasy != NULL)
|
|
free(option_font_fantasy);
|
|
option_font_fantasy = strdup(
|
|
cf->lpLogFont->lfFaceName);
|
|
}
|
|
free(cf->lpLogFont);
|
|
free(cf);
|
|
if ((option_font_fantasy != NULL) &&
|
|
(option_font_fantasy[0] != '\0')) {
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_FANTASY);
|
|
SendMessage(sub, WM_SETTEXT, 0,
|
|
(LPARAM)option_font_fantasy);
|
|
}
|
|
break;
|
|
}
|
|
|
|
case IDC_PREFS_FONTDEF:
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_FONTDEF);
|
|
option_font_default = SendMessage(sub, CB_GETCURSEL, 0, 0) + 1;
|
|
break;
|
|
|
|
|
|
}
|
|
break;
|
|
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
static BOOL CALLBACK options_connections_dialog_handler(HWND hwnd,
|
|
UINT msg, WPARAM wparam, LPARAM lParam)
|
|
{
|
|
int len;
|
|
char *temp, number[6];
|
|
HWND sub;
|
|
|
|
LOG_WIN_MSG(hwnd, msg, wparam, lParam);
|
|
|
|
switch (msg) {
|
|
case WM_INITDIALOG:
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_PROXYTYPE);
|
|
SendMessage(sub, CB_ADDSTRING, 0, (LPARAM)"None");
|
|
SendMessage(sub, CB_ADDSTRING, 0, (LPARAM)"Simple");
|
|
SendMessage(sub, CB_ADDSTRING, 0, (LPARAM)"Basic Auth");
|
|
SendMessage(sub, CB_ADDSTRING, 0, (LPARAM)"NTLM Auth");
|
|
if (option_http_proxy)
|
|
SendMessage(sub, CB_SETCURSEL, (WPARAM)
|
|
(option_http_proxy_auth + 1), 0);
|
|
else
|
|
SendMessage(sub, CB_SETCURSEL, 0, 0);
|
|
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_PROXYHOST);
|
|
if ((option_http_proxy_host != NULL) &&
|
|
(option_http_proxy_host[0] != '\0'))
|
|
SendMessage(sub, WM_SETTEXT, 0,
|
|
(LPARAM)option_http_proxy_host);
|
|
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_PROXYPORT);
|
|
if (option_http_proxy_port != 0) {
|
|
snprintf(number, 6, "%d", option_http_proxy_port);
|
|
SendMessage(sub, WM_SETTEXT, 0, (LPARAM)number);
|
|
}
|
|
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_PROXYNAME);
|
|
if ((option_http_proxy_auth_user != NULL) &&
|
|
(option_http_proxy_auth_user[0] != '\0'))
|
|
SendMessage(sub, WM_SETTEXT, 0,
|
|
(LPARAM)option_http_proxy_auth_user);
|
|
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_PROXYPASS);
|
|
if ((option_http_proxy_auth_pass != NULL) &&
|
|
(option_http_proxy_auth_pass[0] != '\0'))
|
|
SendMessage(sub, WM_SETTEXT, 0,
|
|
(LPARAM)option_http_proxy_auth_pass);
|
|
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_FETCHERS);
|
|
snprintf(number, 6, "%d", option_max_fetchers);
|
|
SendMessage(sub, WM_SETTEXT, 0, (LPARAM)number);
|
|
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_FETCH_HOST);
|
|
snprintf(number, 6, "%d", option_max_fetchers_per_host);
|
|
SendMessage(sub, WM_SETTEXT, 0, (LPARAM)number);
|
|
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_FETCH_HANDLES);
|
|
snprintf(number, 6, "%d", option_max_cached_fetch_handles);
|
|
SendMessage(sub, WM_SETTEXT, 0, (LPARAM)number);
|
|
|
|
break;
|
|
|
|
case WM_NOTIFY:
|
|
switch (((NMHDR FAR *)lParam)->code) {
|
|
case PSN_APPLY:
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_PROXYHOST);
|
|
len = SendMessage(sub, WM_GETTEXTLENGTH, 0, 0);
|
|
temp = malloc(len + 1);
|
|
if (temp != NULL) {
|
|
if (option_http_proxy_host != NULL)
|
|
free(option_http_proxy_host);
|
|
SendMessage(sub, WM_GETTEXT, (WPARAM)(len + 1),
|
|
(LPARAM)temp);
|
|
option_http_proxy_host = strdup(temp);
|
|
free(temp);
|
|
}
|
|
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_PROXYPORT);
|
|
len = SendMessage(sub, WM_GETTEXTLENGTH, 0, 0);
|
|
temp = malloc(len + 1);
|
|
if (temp != NULL) {
|
|
SendMessage(sub, WM_GETTEXT, (WPARAM)(len + 1),
|
|
(LPARAM)temp);
|
|
option_http_proxy_port = atoi(temp);
|
|
free(temp);
|
|
}
|
|
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_PROXYNAME);
|
|
len = SendMessage(sub, WM_GETTEXTLENGTH, 0, 0);
|
|
temp = malloc(len + 1);
|
|
if (temp != NULL) {
|
|
if (option_http_proxy_auth_user != NULL)
|
|
free(option_http_proxy_auth_user);
|
|
SendMessage(sub, WM_GETTEXT, (WPARAM)(len + 1),
|
|
(LPARAM)temp);
|
|
option_http_proxy_auth_user = strdup(temp);
|
|
free(temp);
|
|
}
|
|
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_PROXYPASS);
|
|
len = SendMessage(sub, WM_GETTEXTLENGTH, 0, 0);
|
|
temp = malloc(len + 1);
|
|
if (temp != NULL) {
|
|
if (option_http_proxy_auth_pass != NULL)
|
|
free(option_http_proxy_auth_pass);
|
|
SendMessage(sub, WM_GETTEXT, (WPARAM)(len + 1),
|
|
(LPARAM)temp);
|
|
option_http_proxy_auth_pass = strdup(temp);
|
|
free(temp);
|
|
}
|
|
|
|
/* fetchers */
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_FETCHERS);
|
|
len = SendMessage(sub, WM_GETTEXTLENGTH, 0, 0);
|
|
temp = malloc(len + 1);
|
|
if (temp != NULL) {
|
|
SendMessage(sub, WM_GETTEXT, (WPARAM)(len + 1),
|
|
(LPARAM)temp);
|
|
option_max_fetchers = atoi(temp);
|
|
free(temp);
|
|
}
|
|
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_FETCH_HOST);
|
|
len = SendMessage(sub, WM_GETTEXTLENGTH, 0, 0);
|
|
temp = malloc(len + 1);
|
|
if (temp != NULL) {
|
|
SendMessage(sub, WM_GETTEXT, (WPARAM)(len + 1),
|
|
(LPARAM)temp);
|
|
option_max_fetchers_per_host = atoi(temp);
|
|
free(temp);
|
|
}
|
|
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_FETCH_HANDLES);
|
|
len = SendMessage(sub, WM_GETTEXTLENGTH, 0, 0);
|
|
temp = malloc(len + 1);
|
|
if (temp != NULL) {
|
|
SendMessage(sub, WM_GETTEXT, (WPARAM)(len + 1),
|
|
(LPARAM)temp);
|
|
option_max_cached_fetch_handles = atoi(temp);
|
|
free(temp);
|
|
}
|
|
break;
|
|
|
|
case UDN_DELTAPOS: {
|
|
NMUPDOWN *ud = (NMUPDOWN *)lParam;
|
|
switch(((NMHDR *)lParam)->idFrom) {
|
|
case IDC_PREFS_FETCHERS_SPIN:
|
|
change_spinner(GetDlgItem(hwnd, IDC_PREFS_FETCHERS), 1.0 * ud->iDelta, 1.0, 100.0);
|
|
return TRUE;
|
|
|
|
case IDC_PREFS_FETCH_HOST_SPIN:
|
|
change_spinner(GetDlgItem(hwnd, IDC_PREFS_FETCH_HOST), 1.0 * ud->iDelta, 1.0, 100.0);
|
|
return TRUE;
|
|
|
|
case IDC_PREFS_FETCH_HANDLES_SPIN:
|
|
change_spinner(GetDlgItem(hwnd, IDC_PREFS_FETCH_HANDLES), 1.0 * ud->iDelta, 1.0, 100.0);
|
|
return TRUE;
|
|
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
static BOOL CALLBACK options_general_dialog_handler(HWND hwnd,
|
|
UINT msg, WPARAM wparam, LPARAM lParam)
|
|
{
|
|
HWND sub;
|
|
|
|
LOG_WIN_MSG(hwnd, msg, wparam, lParam);
|
|
|
|
switch (msg) {
|
|
case WM_INITDIALOG:
|
|
/* homepage url */
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_HOMEPAGE);
|
|
SendMessage(sub, WM_SETTEXT, 0, (LPARAM)option_homepage_url);
|
|
|
|
/* Display images */
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_IMAGES);
|
|
SendMessage(sub, BM_SETCHECK,
|
|
(WPARAM) ((option_suppress_images) ?
|
|
BST_CHECKED : BST_UNCHECKED), 0);
|
|
|
|
/* advert blocking */
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_ADVERTS);
|
|
SendMessage(sub, BM_SETCHECK,
|
|
(WPARAM) ((option_block_ads) ?
|
|
BST_CHECKED : BST_UNCHECKED), 0);
|
|
|
|
/* Referrer sending */
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_REFERER);
|
|
SendMessage(sub, BM_SETCHECK,
|
|
(WPARAM)((option_send_referer) ?
|
|
BST_CHECKED : BST_UNCHECKED), 0);
|
|
break;
|
|
|
|
case WM_NOTIFY:
|
|
switch (((NMHDR FAR *)lParam)->code) {
|
|
case PSN_APPLY:
|
|
/* homepage */
|
|
sub = GetDlgItem(hwnd, IDC_PREFS_HOMEPAGE);
|
|
if (sub != NULL) {
|
|
int text_length;
|
|
char *text;
|
|
text_length = SendMessage(sub,
|
|
WM_GETTEXTLENGTH, 0, 0);
|
|
text = malloc(text_length + 1);
|
|
if (text != NULL) {
|
|
SendMessage(sub, WM_GETTEXT,
|
|
(WPARAM)text_length + 1,
|
|
(LPARAM)text);
|
|
free(option_homepage_url);
|
|
option_homepage_url = text;
|
|
}
|
|
}
|
|
|
|
option_suppress_images = (IsDlgButtonChecked(hwnd,
|
|
IDC_PREFS_IMAGES) == BST_CHECKED) ? true : false;
|
|
|
|
option_block_ads = (IsDlgButtonChecked(hwnd,
|
|
IDC_PREFS_ADVERTS) == BST_CHECKED) ? true : false;
|
|
|
|
option_send_referer = (IsDlgButtonChecked(hwnd,
|
|
IDC_PREFS_REFERER) == BST_CHECKED) ? true : false;
|
|
|
|
break;
|
|
|
|
}
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
void nsws_prefs_dialog_init(HINSTANCE hinst, HWND parent)
|
|
{
|
|
int ret;
|
|
PROPSHEETPAGE psp[3];
|
|
PROPSHEETHEADER psh;
|
|
|
|
psp[0].dwSize = sizeof(PROPSHEETPAGE);
|
|
psp[0].dwFlags = 0;/*PSP_USEICONID*/
|
|
psp[0].hInstance = hinst;
|
|
psp[0].pszTemplate = MAKEINTRESOURCE(IDD_DLG_OPTIONS_GENERAL);
|
|
psp[0].pfnDlgProc = options_general_dialog_handler;
|
|
psp[0].lParam = 0;
|
|
psp[0].pfnCallback = NULL;
|
|
|
|
psp[1].dwSize = sizeof(PROPSHEETPAGE);
|
|
psp[1].dwFlags = 0;/*PSP_USEICONID*/
|
|
psp[1].hInstance = hinst;
|
|
psp[1].pszTemplate = MAKEINTRESOURCE(IDD_DLG_OPTIONS_CONNECTIONS);
|
|
psp[1].pfnDlgProc = options_connections_dialog_handler;
|
|
psp[1].lParam = 0;
|
|
psp[1].pfnCallback = NULL;
|
|
|
|
psp[2].dwSize = sizeof(PROPSHEETPAGE);
|
|
psp[2].dwFlags = 0;/*PSP_USEICONID*/
|
|
psp[2].hInstance = hinst;
|
|
psp[2].pszTemplate = MAKEINTRESOURCE(IDD_DLG_OPTIONS_APPERANCE);
|
|
psp[2].pfnDlgProc = options_appearance_dialog_handler;
|
|
psp[2].lParam = 0;
|
|
psp[2].pfnCallback = NULL;
|
|
|
|
|
|
psh.dwSize = sizeof(PROPSHEETHEADER);
|
|
psh.dwFlags = PSH_NOAPPLYNOW | PSH_USEICONID | PSH_PROPSHEETPAGE;
|
|
psh.hwndParent = parent;
|
|
psh.hInstance = hinst;
|
|
psh.pszIcon = MAKEINTRESOURCE(IDR_NETSURF_ICON);
|
|
psh.pszCaption = (LPSTR) "NetSurf Options";
|
|
psh.nPages = sizeof(psp) / sizeof(PROPSHEETPAGE);
|
|
psh.nStartPage = 0;
|
|
psh.ppsp = (LPCPROPSHEETPAGE) &psp;
|
|
psh.pfnCallback = NULL;
|
|
|
|
ret = PropertySheet(&psh);
|
|
if (ret == -1) {
|
|
win_perror("PropertySheet");
|
|
} else if (ret > 0) {
|
|
/* user saved changes */
|
|
options_write(options_file_location);
|
|
}
|
|
|
|
}
|