summaryrefslogtreecommitdiff
path: root/desktop/browser.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2006-11-26 20:11:20 +0000
committerJames Bursa <james@netsurf-browser.org>2006-11-26 20:11:20 +0000
commit21af6f7fda78586936405538e97e02ffa198f0e8 (patch)
treedeb1af996842c50275bf5ba30fb4592bb4f7c23a /desktop/browser.h
parent699a0e34ca4f20cbeae4a1604128f5fc9177a3fa (diff)
downloadnetsurf-21af6f7fda78586936405538e97e02ffa198f0e8.tar.gz
netsurf-21af6f7fda78586936405538e97e02ffa198f0e8.tar.bz2
Move frames-related code out of browser.c into a new file. Remove some browser_window calls from html.c.
svn path=/trunk/netsurf/; revision=3070
Diffstat (limited to 'desktop/browser.h')
-rw-r--r--desktop/browser.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/desktop/browser.h b/desktop/browser.h
index f85fb03bc..41519652a 100644
--- a/desktop/browser.h
+++ b/desktop/browser.h
@@ -182,23 +182,17 @@ extern struct browser_window *current_redraw_browser;
struct browser_window * browser_window_create(const char *url,
struct browser_window *clone, char *referer, bool history_add);
-struct browser_window * browser_window_owner(struct browser_window *bw);
void browser_window_go(struct browser_window *bw, const char *url,
char *referer, bool history_add);
void browser_window_go_post(struct browser_window *bw, const char *url,
char *post_urlenc,
struct form_successful_control *post_multipart,
bool history_add, char *referer, bool download);
+void browser_window_update(struct browser_window *bw, bool scroll_to_top);
void browser_window_stop(struct browser_window *bw);
void browser_window_reload(struct browser_window *bw, bool all);
void browser_window_destroy(struct browser_window *bw);
-void browser_window_update(struct browser_window *bw, bool scroll_to_top);
-void browser_window_create_iframes(struct browser_window *bw,
- struct content_html_iframe *iframe);
-void browser_window_recalculate_iframes(struct browser_window *bw);
-void browser_window_create_frameset(struct browser_window *bw,
- struct content_html_frames *frameset);
-void browser_window_recalculate_frameset(struct browser_window *bw);
+struct browser_window * browser_window_owner(struct browser_window *bw);
void browser_window_set_scale(struct browser_window *bw, float scale, bool all);
void browser_window_mouse_click(struct browser_window *bw,