2003-06-30 16:44:03 +04:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
|
|
* Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
|
2004-02-13 19:09:12 +03:00
|
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
2003-06-06 06:14:28 +04:00
|
|
|
*/
|
|
|
|
|
2004-02-13 19:09:12 +03:00
|
|
|
/** \file
|
|
|
|
* Option reading and saving (interface).
|
|
|
|
*
|
|
|
|
* Non-platform specific options can be added by editing this file and
|
|
|
|
* netsurf/desktop/options.c
|
|
|
|
*
|
|
|
|
* Platform specific options should be added in the platform options.h.
|
|
|
|
*
|
|
|
|
* The following types of options are supported:
|
|
|
|
* - bool (OPTION_BOOL)
|
|
|
|
* - int (OPTION_INTEGER)
|
|
|
|
* - char* (OPTION_STRING) (must be allocated on heap, may be 0, free before
|
|
|
|
* assigning a new value)
|
|
|
|
*/
|
2003-06-02 03:02:56 +04:00
|
|
|
|
|
|
|
#ifndef _NETSURF_DESKTOP_OPTIONS_H_
|
|
|
|
#define _NETSURF_DESKTOP_OPTIONS_H_
|
|
|
|
|
2004-07-27 19:49:28 +04:00
|
|
|
enum { OPTION_HTTP_PROXY_AUTH_NONE = 0, OPTION_HTTP_PROXY_AUTH_BASIC = 1,
|
|
|
|
OPTION_HTTP_PROXY_AUTH_NTLM = 2 };
|
|
|
|
|
2004-02-13 19:09:12 +03:00
|
|
|
extern bool option_http_proxy;
|
|
|
|
extern char *option_http_proxy_host;
|
|
|
|
extern int option_http_proxy_port;
|
2004-07-27 19:49:28 +04:00
|
|
|
extern int option_http_proxy_auth;
|
|
|
|
extern char *option_http_proxy_auth_user;
|
|
|
|
extern char *option_http_proxy_auth_pass;
|
2004-02-14 02:07:42 +03:00
|
|
|
extern int option_font_size;
|
|
|
|
extern int option_font_min_size;
|
2004-03-08 03:03:58 +03:00
|
|
|
extern char *option_accept_language;
|
2004-06-11 02:40:56 +04:00
|
|
|
extern bool option_ssl_verify_certificates;
|
2004-06-21 19:09:59 +04:00
|
|
|
extern int option_memory_cache_size;
|
2004-07-31 03:40:01 +04:00
|
|
|
extern bool option_block_ads;
|
2003-06-06 06:14:28 +04:00
|
|
|
|
2004-02-13 19:09:12 +03:00
|
|
|
void options_read(const char *path);
|
|
|
|
void options_write(const char *path);
|
2003-06-02 03:02:56 +04:00
|
|
|
|
|
|
|
#endif
|