mirror of
https://github.com/rkd77/elinks.git
synced 2024-10-13 05:43:37 -04:00
acf2ec806b
A left over from the CVS Id removal. Also, for a few files, normalize the order in which things are declared in headers.
39 lines
1.0 KiB
C
39 lines
1.0 KiB
C
#ifndef EL__BOOKMARKS_DIALOGS_H
|
|
#define EL__BOOKMARKS_DIALOGS_H
|
|
|
|
#include "bfu/dialog.h"
|
|
#include "bfu/hierbox.h"
|
|
#include "terminal/terminal.h"
|
|
#include "session/session.h"
|
|
|
|
extern struct hierbox_browser bookmark_browser;
|
|
|
|
/* Launch the bookmark manager */
|
|
void bookmark_manager(struct session *ses);
|
|
|
|
/* Launch 'Add bookmark' dialog... */
|
|
|
|
/* ...with the given title and URL */
|
|
void launch_bm_add_dialog(struct terminal *term,
|
|
struct dialog_data *parent,
|
|
struct session *ses,
|
|
unsigned char *title,
|
|
unsigned char *url);
|
|
|
|
/* ...with the current document's title and URL */
|
|
void launch_bm_add_doc_dialog(struct terminal *term,
|
|
struct dialog_data *parent,
|
|
struct session *ses);
|
|
|
|
/* ...with the selected link's title and URL */
|
|
void launch_bm_add_link_dialog(struct terminal *term,
|
|
struct dialog_data *parent,
|
|
struct session *ses);
|
|
|
|
void bookmark_terminal_tabs_dialog(struct terminal *term);
|
|
|
|
/* Free search memorization */
|
|
void free_last_searched_bookmark(void);
|
|
|
|
#endif
|