summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-01-12 10:27:41 +0000
committerVincent Sanders <vince@kyllikki.org>2014-01-12 10:27:41 +0000
commit56bb9582b16dfd45bbd1665adaf87c6c5986aed3 (patch)
treec92b65226b16977ddd0649a9be38d3ebdf06b6c0 /amiga
parentc8496df3df7d059528f2d5e735be5c55bfa75ef6 (diff)
downloadnetsurf-56bb9582b16dfd45bbd1665adaf87c6c5986aed3.tar.gz
netsurf-56bb9582b16dfd45bbd1665adaf87c6c5986aed3.tar.bz2
move set title, set url, start and stop throbber window operations to gui table
Diffstat (limited to 'amiga')
-rw-r--r--amiga/gui.c10
-rw-r--r--amiga/theme.h5
2 files changed, 13 insertions, 2 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index 3a655f52d..463334676 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -3896,7 +3896,7 @@ static void gui_window_destroy(struct gui_window *g)
win_destroyed = true;
}
-void gui_window_set_title(struct gui_window *g, const char *title)
+static void gui_window_set_title(struct gui_window *g, const char *title)
{
struct Node *node;
ULONG cur_tab = 0;
@@ -4592,7 +4592,7 @@ void gui_window_set_status(struct gui_window *g, const char *text)
}
}
-void gui_window_set_url(struct gui_window *g, const char *url)
+static void gui_window_set_url(struct gui_window *g, const char *url)
{
ULONG cur_tab = 0;
@@ -5095,8 +5095,14 @@ void gui_file_gadget_open(struct gui_window *g, hlcache_handle *hl,
static struct gui_table ami_gui_table = {
.poll = gui_poll,
.quit = gui_quit,
+
.window_create = gui_window_create,
.window_destroy = gui_window_destroy,
+
+ .window_set_title = gui_window_set_title,
+ .window_set_url = gui_window_set_url,
+ .window_start_throbber = gui_window_start_throbber,
+ .window_stop_throbber = gui_window_stop_throbber,
};
/** Normal entry point from OS */
diff --git a/amiga/theme.h b/amiga/theme.h
index 3c3931c12..b47c015e1 100644
--- a/amiga/theme.h
+++ b/amiga/theme.h
@@ -41,4 +41,9 @@ void ami_reset_pointer(struct gui_window_2 *gwin);
* and ALWAYS in preference to SetWindowPointer(), as it features more pointers and uses
* the correct ones specified in user preferences. */
void ami_update_pointer(struct Window *win, gui_pointer_shape shape);
+
+void gui_window_start_throbber(struct gui_window *g);
+void gui_window_stop_throbber(struct gui_window *g);
+
+
#endif