0
|
1 #ifndef __MENU_HH__
|
|
2 #define __MENU_HH__
|
|
3
|
|
4 #include "bw.h"
|
|
5
|
|
6 #ifdef __cplusplus
|
|
7 extern "C" {
|
|
8 #endif /* __cplusplus */
|
|
9
|
|
10 void a_Menu_page_popup(BrowserWindow *bw, DilloUrl *url, const char *bugs_txt);
|
|
11 void a_Menu_link_popup(BrowserWindow *bw, DilloUrl *url);
|
|
12 void a_Menu_bugmeter_popup(BrowserWindow *bw, DilloUrl *url);
|
|
13 void a_Menu_history_popup(BrowserWindow *bw, int direction);
|
|
14
|
|
15 //---------------------
|
|
16 void a_Menu_popup_set_url(BrowserWindow *bw, const DilloUrl *url);
|
|
17 void a_Menu_popup_set_url2(BrowserWindow *bw, const DilloUrl *url);
|
|
18 void a_Menu_popup_clear_url2(void *menu_popup);
|
|
19
|
|
20 DilloUrl *a_Menu_popup_get_url(BrowserWindow *bw);
|
|
21
|
|
22 void a_Menu_pagemarks_new (BrowserWindow *bw);
|
|
23 void a_Menu_pagemarks_destroy (BrowserWindow *bw);
|
|
24 void a_Menu_pagemarks_add(BrowserWindow *bw, void *page, void *style,
|
|
25 int level);
|
|
26 void a_Menu_pagemarks_set_text(BrowserWindow *bw, const char *str);
|
|
27
|
|
28
|
|
29 #ifdef __cplusplus
|
|
30 }
|
|
31 #endif /* __cplusplus */
|
|
32
|
|
33 #endif /* MENU_HH */
|
|
34
|