NetSurf
options.h
Go to the documentation of this file.
1/*
2 * Copyright 2012 Vincent Sanders <vince@netsurf-browser.org>
3 *
4 * This file is part of NetSurf, http://www.netsurf-browser.org/
5 *
6 * NetSurf is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * NetSurf is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19#ifndef NS_ATARI_OPTIONS_H_
20#define NS_ATARI_OPTIONS_H_
21
22/* setup longer default reflow time */
23#define DEFAULT_REFLOW_PERIOD 350 /* time in cs */
24
25#endif
26
27NSOPTION_STRING(atari_font_driver, "freetype")
28NSOPTION_INTEGER(atari_font_monochrom, 0)
29NSOPTION_INTEGER(atari_transparency, 1)
30NSOPTION_INTEGER(atari_dither, 1)
31NSOPTION_INTEGER(atari_gui_poll_timeout, 0)
32NSOPTION_STRING(atari_editor, NULL)
33NSOPTION_STRING(font_face_sans_serif, NULL)
34NSOPTION_STRING(font_face_sans_serif_bold, NULL)
35NSOPTION_STRING(font_face_sans_serif_italic, NULL)
36NSOPTION_STRING(font_face_sans_serif_italic_bold, NULL)
37NSOPTION_STRING(font_face_monospace, NULL)
38NSOPTION_STRING(font_face_monospace_bold, NULL)
39NSOPTION_STRING(font_face_serif, NULL)
40NSOPTION_STRING(font_face_serif_bold, NULL)
41NSOPTION_STRING(font_face_cursive, NULL)
42NSOPTION_STRING(font_face_fantasy, NULL)
43NSOPTION_STRING(downloads_path, "downloads")
44NSOPTION_STRING(url_file, "url.db")
45NSOPTION_STRING(hotlist_file, "hotlist")
46NSOPTION_STRING(tree_icons_path, "./res/icons")
47
48
#define NSOPTION_INTEGER(NAME, DEFAULT)
Definition: nsoption.c:54
#define NSOPTION_STRING(NAME, DEFAULT)
Definition: nsoption.c:51