I'm using `stdbool.h` for the few remaining C files. That will have to change, soon.
98 lines
4.1 KiB
C++
98 lines
4.1 KiB
C++
/*
|
|
* File: uicmd.cc
|
|
*
|
|
* Copyright (C) 2005-2011 Jorge Arellano Cid <jcid@dillo.org>
|
|
* Copyright (C) 2024 Rodrigo Arias Mallo <rodarima@gmail.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*/
|
|
|
|
#ifndef __UICMD_HH__
|
|
#define __UICMD_HH__
|
|
|
|
#include "bw.hh"
|
|
|
|
inline namespace a_UIcmd
|
|
{
|
|
|
|
BrowserWindow *a_UIcmd_browser_window_new(int ww, int wh,
|
|
uint32_t xid, const void *v_bw);
|
|
BrowserWindow *a_UIcmd_get_bw_by_widget(void *v_wid);
|
|
void a_UIcmd_send_event_to_tabs_by_wid(int e, void *v_wid);
|
|
void a_UIcmd_open_urlstr(BrowserWindow *bw, const char *urlstr);
|
|
void a_UIcmd_open_url(BrowserWindow *bw, const DilloUrl *url);
|
|
void a_UIcmd_open_url_nw(BrowserWindow *bw, const DilloUrl *url);
|
|
void a_UIcmd_open_url_nt(BrowserWindow *bw, const DilloUrl *url, int focus);
|
|
void a_UIcmd_back(void *vbw);
|
|
void a_UIcmd_back_popup(void *vbw, int x, int y);
|
|
void a_UIcmd_forw(void *vbw);
|
|
void a_UIcmd_forw_popup(void *vbw, int x, int y);
|
|
void a_UIcmd_home(void *vbw);
|
|
void a_UIcmd_zoom_in(void *vbw);
|
|
void a_UIcmd_zoom_out(void *vbw);
|
|
void a_UIcmd_zoom_reset(void *vbw);
|
|
void a_UIcmd_reload(void *vbw);
|
|
void a_UIcmd_reload_all_active();
|
|
void a_UIcmd_repush(void *vbw);
|
|
void a_UIcmd_redirection0(void *vbw, const DilloUrl *url);
|
|
void a_UIcmd_save(void *vbw);
|
|
void a_UIcmd_stop(void *vbw);
|
|
void a_UIcmd_tools(void *vbw, int x, int y);
|
|
void a_UIcmd_save_link(BrowserWindow *bw, const DilloUrl *url);
|
|
void a_UIcmd_open_file(void *vbw);
|
|
const char *a_UIcmd_select_file(void);
|
|
void a_UIcmd_search_dialog(BrowserWindow *vbw);
|
|
const char *a_UIcmd_get_passwd(const char *user);
|
|
void a_UIcmd_book(void *vbw);
|
|
void a_UIcmd_add_bookmark(BrowserWindow *bw, const DilloUrl *url);
|
|
void a_UIcmd_panels_toggle(BrowserWindow *bw);
|
|
void a_UIcmd_findtext_dialog(BrowserWindow *bw);
|
|
void a_UIcmd_findtext_search(BrowserWindow *bw,const char *key,int case_sens,
|
|
int backwards);
|
|
void a_UIcmd_findtext_reset(BrowserWindow *bw);
|
|
void a_UIcmd_findbar_toggle(BrowserWindow *bw, int on);
|
|
void a_UIcmd_focus_main_area(BrowserWindow *bw);
|
|
void a_UIcmd_focus_location(void *vbw);
|
|
void a_UIcmd_page_popup(void *vbw, bool has_bugs, std::vector< std::unique_ptr< DilloUrl > > *cssUrls);
|
|
void a_UIcmd_link_popup(void *vbw, const DilloUrl *url, const DilloUrl *page_url);
|
|
void a_UIcmd_image_popup(void *vbw, const DilloUrl *url, bool loaded_img,
|
|
DilloUrl *page_url, DilloUrl *link_url);
|
|
void a_UIcmd_form_popup(void *vbw, const DilloUrl *url, void *vform,
|
|
bool showing_hiddens);
|
|
void a_UIcmd_file_popup(void *vbw, void *v_wid);
|
|
void a_UIcmd_copy_urlstr(BrowserWindow *bw, const char *urlstr);
|
|
void a_UIcmd_view_page_source(BrowserWindow *bw, const DilloUrl *url);
|
|
void a_UIcmd_view_page_bugs(BrowserWindow *bw);
|
|
void a_UIcmd_bugmeter_popup(BrowserWindow *bw);
|
|
int *a_UIcmd_get_history(BrowserWindow *bw, int direction);
|
|
void a_UIcmd_nav_jump(BrowserWindow *bw, int offset, int new_bw);
|
|
|
|
void a_UIcmd_close_bw(BrowserWindow *bw);
|
|
void a_UIcmd_close_all_bw(void *p);
|
|
|
|
void a_UIcmd_init(void);
|
|
|
|
|
|
// UI binding functions -------------------------------------------------------
|
|
|
|
void a_UIcmd_get_wh(BrowserWindow *bw, int *w, int *h);
|
|
void a_UIcmd_get_scroll_xy(BrowserWindow *bw, int *x, int *y);
|
|
void a_UIcmd_set_scroll_xy(BrowserWindow *bw, int x, int y);
|
|
void a_UIcmd_set_scroll_by_fragment(BrowserWindow *bw, const char *f);
|
|
void a_UIcmd_scroll(BrowserWindow *bw, int icmd);
|
|
char *a_UIcmd_get_location_text(BrowserWindow *bw);
|
|
void a_UIcmd_set_location_text(void *vbw, const char *text);
|
|
void a_UIcmd_set_page_prog(BrowserWindow *bw, size_t nbytes, int cmd);
|
|
void a_UIcmd_set_img_prog(BrowserWindow *bw, int n_img, int t_img, int cmd);
|
|
void a_UIcmd_set_bug_prog(BrowserWindow *bw, int n_bug);
|
|
void a_UIcmd_set_page_title(BrowserWindow *bw, const char *label);
|
|
void a_UIcmd_set_msg(BrowserWindow *bw, const char *format, ...);
|
|
void a_UIcmd_set_buttons_sens(BrowserWindow *bw);
|
|
|
|
}
|
|
|
|
#endif // __UICMD_HH__
|