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 27 NSOPTION_STRING(atari_font_driver, "freetype") 28 NSOPTION_INTEGER(atari_font_monochrom, 0) 29 NSOPTION_INTEGER(atari_transparency, 1) 30 NSOPTION_INTEGER(atari_dither, 1) 31 NSOPTION_INTEGER(atari_gui_poll_timeout, 0) 32 NSOPTION_STRING(atari_editor, NULL) 33 NSOPTION_STRING(font_face_sans_serif, NULL) 34 NSOPTION_STRING(font_face_sans_serif_bold, NULL) 35 NSOPTION_STRING(font_face_sans_serif_italic, NULL) 36 NSOPTION_STRING(font_face_sans_serif_italic_bold, NULL) 37 NSOPTION_STRING(font_face_monospace, NULL) 38 NSOPTION_STRING(font_face_monospace_bold, NULL) 39 NSOPTION_STRING(font_face_serif, NULL) 40 NSOPTION_STRING(font_face_serif_bold, NULL) 41 NSOPTION_STRING(font_face_cursive, NULL) 42 NSOPTION_STRING(font_face_fantasy, NULL) 43 NSOPTION_STRING(downloads_path, "downloads") 44 NSOPTION_STRING(url_file, "url.db") 45 NSOPTION_STRING(hotlist_file, "hotlist") 46 NSOPTION_STRING(tree_icons_path, "./res/icons") 47 48 49