diff options
author | jcid <devnull@localhost> | 2007-10-07 00:36:34 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2007-10-07 00:36:34 +0200 |
commit | 93715c46a99c96d6c866968312691ec9ab0f6a03 (patch) | |
tree | 573f19ec6aa740844f53a7c0eb7114f04096bf64 /src/menu.hh |
Initial revision
Diffstat (limited to 'src/menu.hh')
-rw-r--r-- | src/menu.hh | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/menu.hh b/src/menu.hh new file mode 100644 index 00000000..b9a2eb99 --- /dev/null +++ b/src/menu.hh @@ -0,0 +1,34 @@ +#ifndef __MENU_HH__ +#define __MENU_HH__ + +#include "bw.h" + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +void a_Menu_page_popup(BrowserWindow *bw, DilloUrl *url, const char *bugs_txt); +void a_Menu_link_popup(BrowserWindow *bw, DilloUrl *url); +void a_Menu_bugmeter_popup(BrowserWindow *bw, DilloUrl *url); +void a_Menu_history_popup(BrowserWindow *bw, int direction); + +//--------------------- +void a_Menu_popup_set_url(BrowserWindow *bw, const DilloUrl *url); +void a_Menu_popup_set_url2(BrowserWindow *bw, const DilloUrl *url); +void a_Menu_popup_clear_url2(void *menu_popup); + +DilloUrl *a_Menu_popup_get_url(BrowserWindow *bw); + +void a_Menu_pagemarks_new (BrowserWindow *bw); +void a_Menu_pagemarks_destroy (BrowserWindow *bw); +void a_Menu_pagemarks_add(BrowserWindow *bw, void *page, void *style, + int level); +void a_Menu_pagemarks_set_text(BrowserWindow *bw, const char *str); + + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* MENU_HH */ + |