summaryrefslogtreecommitdiff
path: root/atari/toolbar.h
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2013-01-15 01:31:35 +0100
committerOle Loots <ole@monochrom.net>2013-01-15 01:31:35 +0100
commit4f64d85dfa2029eed0e5746ec421ef70a091c91c (patch)
tree0eefa75c871ebc4532fa5363e02fea682dd2ad3c /atari/toolbar.h
parenta0227890e917681daa771a3b2f8499305fd0136e (diff)
downloadnetsurf-4f64d85dfa2029eed0e5746ec421ef70a091c91c.tar.gz
netsurf-4f64d85dfa2029eed0e5746ec421ef70a091c91c.tar.bz2
Make toolbar height configurable,
started to use extended AES Object types.
Diffstat (limited to 'atari/toolbar.h')
-rw-r--r--atari/toolbar.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/atari/toolbar.h b/atari/toolbar.h
index 81949796a..24ea9e26a 100644
--- a/atari/toolbar.h
+++ b/atari/toolbar.h
@@ -48,8 +48,6 @@ void toolbar_init(void);
struct s_toolbar *toolbar_create(struct s_gui_win_root *owner);
void toolbar_destroy(struct s_toolbar * tb);
void toolbar_exit( void );
-void toolbar_set_dimensions(struct s_toolbar *tb, GRECT *area);
-void toolbar_set_url(struct s_toolbar *tb, const char *text);
bool toolbar_text_input(struct s_toolbar *tb, char *text);
bool toolbar_key_input(struct s_toolbar *tb, short nkc);
void toolbar_mouse_input(struct s_toolbar *tb, short obj, short mbut);
@@ -62,6 +60,10 @@ void toolbar_set_throbber_state(struct s_toolbar *tb, bool active);
void toolbar_set_attached(struct s_toolbar *tb, bool attached);
void toolbar_set_visible(struct s_toolbar *tb, short area, bool visible);
void toolbar_set_reflow(struct s_toolbar *tb, bool do_reflow);
+void toolbar_set_width(struct s_toolbar *tb, short w);
+void toolbar_set_origin(struct s_toolbar *tb, short x, short y);
+void toolbar_set_dimensions(struct s_toolbar *tb, GRECT *area);
+void toolbar_set_url(struct s_toolbar *tb, const char *text);
void toolbar_redraw(struct s_toolbar *tb, GRECT *clip);
void toolbar_throbber_progress(struct s_toolbar *tb);
/* public events handlers: */