#ifndef __PREFS_H__ #define __PREFS_H__ #include "url.h" #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /* Panel sizes */ enum { P_tiny = 0, P_small, P_medium, P_large }; typedef struct _DilloPrefs DilloPrefs; struct _DilloPrefs { int width; int height; int xpos; int ypos; DilloUrl *http_proxy; char *http_proxyuser; char *http_referer; char *no_proxy; DilloUrl *start_page; DilloUrl *home; int32_t link_color; int32_t visited_color; int32_t bg_color; int32_t text_color; bool_t allow_white_bg; bool_t use_oblique; bool_t force_my_colors; bool_t contrast_visited_color; bool_t standard_widget_colors; bool_t show_tooltip; int panel_size; bool_t small_icons; bool_t limit_text_width; bool_t w3c_plus_heuristics; double font_factor; bool_t use_dicache; bool_t show_back; bool_t show_forw; bool_t show_home; bool_t show_reload; bool_t show_save; bool_t show_stop; bool_t show_bookmarks; bool_t show_menubar; bool_t show_clear_url; bool_t show_url; bool_t show_search; bool_t show_progress_box; bool_t fullwindow_start; bool_t load_images; bool_t transient_dialogs; char *vw_fontname; char *fw_fontname; bool_t generate_submit; bool_t enterpress_forces_submit; char *search_url; char *save_dir; bool_t show_msg; bool_t show_extra_warnings; }; /* Global Data */ extern DilloPrefs prefs; void a_Prefs_init(void); void a_Prefs_freeall(void); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __PREFS_H__ */