You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.1 KiB
54 lines
1.1 KiB
Config { |
|
allow_popup : uchar; |
|
enable_auto_load_images : uchar; |
|
enable_auto_shrink_images : uchar; |
|
enable_javascript : uchar; |
|
enable_mouse_cursor : uchar; |
|
enable_plugins : uchar; |
|
enable_private_mode : uchar; |
|
enable_touch_interface : uchar; |
|
home_page : str default "http://www.google.com"; |
|
proxy : str; |
|
restore_state : uchar; |
|
user_agent : str default "eve"; |
|
frame_flattening : uchar; |
|
text_only_zoom : uchar; |
|
minimum_font_size : int; |
|
} |
|
|
|
Hist_Item { |
|
title : str default "Untitled"; |
|
url : str default "about:blank"; |
|
visit_count : uint; |
|
last_visit : double; |
|
} |
|
|
|
Hist { |
|
items : hash of Hist_Item by url; |
|
} |
|
|
|
Fav_Item { |
|
url : str; |
|
title : str; |
|
visit_count : uint; |
|
} |
|
|
|
Fav { |
|
items : hash of Fav_Item by url; |
|
} |
|
|
|
Session_Item { |
|
url : str; |
|
focused : uchar; |
|
scroll_x : int; |
|
scroll_y : int; |
|
} |
|
|
|
Session_Window { |
|
tabs : list of Session_Item; |
|
focused : uchar; |
|
} |
|
|
|
Session { |
|
windows : list of Session_Window; |
|
}
|
|
|