/* WebkitGTK xwidget for embedding a graphical web browser. Copyright (C) 2011-2024 Free Software Foundation, Inc. This file is part of GNU Emacs. GNU Emacs 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. GNU Emacs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Emacs. If not, see . */ #ifndef XWIDGET_WEBKIT_H_INCLUDED #define XWIDGET_WEBKIT_H_INCLUDED #include "xwidget.h" #ifdef HAVE_XWIDGETS void xwidget_webkit_make_widget (struct xwidget *xw, Lisp_Object related); void xwidget_webkit_connect_signals (struct xwidget *xw); void syms_of_xwidget_webkit (void); #ifdef HAVE_PGTK Emacs_Cursor xwidget_webkit_cursor_for_hit (guint result, struct frame *frame); #endif #endif #endif /* XWIDGET_WEBKIT_H_INCLUDED */