summaryrefslogtreecommitdiff
path: root/src/xwidget.c
Commit message (Collapse)AuthorAgeFilesLines
* ; Add 2024 to copyright yearsPo Lu2024-01-021-1/+1
|
* Improvements to xwidget on macOS (bug#60703)Andrew De Angelis2023-03-021-25/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | * src/nsxwidget.m () ([XwWebView initWithFrame:configuration:xwidget:]) (nsxwidget_init): Fixed memory leaks: when sending an alloc message to an object, send an autorelease message to any objects we won't explictly release. ([XwWebView webView:didFinishNavigation:]): Second string to store in 'store_xwidget_event_string' is "load finished" rather than empty string. ([XwWebView webView:didStartProvisionalNavigation:]) ([XwWebView webView:didReceiveServerRedirectForProvisionalNavigation:]) ([XwWebView webView:didCommitNavigation:]): New functions. (nsxwidget_webkit_estimated_load_progress): New function. (nsxwidget_webkit_stop_loading): New function. * src/xwidget.c (Fxwidget_webkit_estimated_load_progress): Call 'nsxwidget_webkit_estimated_load_progress' if we're on MacOS. (Fxwidget_webkit_stop_loading): Call 'nsxwidget_webkit_stop_loading' if we're on MacOS. (syms_of_xwidget): Define symbol for function. 'xwidget_webkit_estimated_load_progress' if we're on MacOS. * src/nsxwidget.h: Signature for functions 'nsxwidget_webkit_estimated_load_progress' and 'nsxwidget_webkit_stop_loading'. * lisp/xwidget.el (xwidget-webkit-current-url): Message URL rather than return value of 'kill-new' (which is always nil).
* ; Add 2023 to copyright years.Eli Zaretskii2023-01-011-1/+1
|
* Fix xwidget smooth scrolling when the default pointer is not a touchpadPo Lu2022-04-071-18/+49
| | | | | | | | | | | * xwidget.c (find_suitable_pointer): New argument `need_smooth'. Try to find a touchpad if that is set. (xwidget_button_1, xwidget_button, xwidget_motion_notify) (xwidget_scroll, xwidget_pinch, xw_notify_virtual_upwards_until) (xw_notify_virtual_downwards_until): (xw_maybe_synthesize_crossing): (xwidget_motion_or_crossing, synthesize_focus_in_event): Set parameter accordingly.
* ; * src/xwidget.c: Add missing part of last change.Po Lu2022-03-011-1/+1
|
* Improve XInput2 version checkingPo Lu2022-02-221-1/+1
| | | | | | | | | | | | | | * configure.ac: Check for various important structures from all versions of libXi. * src/xfns.c (setup_xi_event_mask): * src/xwidget.c (x_draw_xwidget_glyph_string): * src/xterm.c (x_init_master_valuators, handle_one_xevent) (x_term_init): Replace XI version checks based on protocol headers with new constants. * src/xterm.h (HAVE_XINPUT2_1, HAVE_XINPUT2_2, HAVE_XINPUT2_3) (HAVE_XINPUT2_4): New definitions.
* Fix recent change in xwidget.cPo Lu2022-02-161-4/+2
| | | | | * src/xwidget.c (xwidget_init_view): Don't assume ttip_widget is NULL if tooltips have not been initialized.
* Work around tooltip bug on new versions of WebKitGTKPo Lu2022-02-131-0/+19
| | | | | | | * src/xwidget.c (dummy_tooltip_string): New variable. (xw_maybe_synthesize_crossing): Call `xg_prepare_tooltip' to disable tooltips on WebKitGTK 2.34 or later. (syms_of_xwidget): Make dummy string.
* * src/xwidget.c (xwidget_button): Always let button events through.Po Lu2022-02-041-5/+0
| | | | | Filtering out emulated events is done in handle_one_xevent, so all this accomplishes is to filter out legitimate button events.
* Improve correctness of generated xwidget eventsPo Lu2022-02-021-21/+75
| | | | | | | | | | | * src/xwidget.c (xw_maybe_synthesize_crossing): Add new parameters for controlling the crossing mode. Also improve the accuracy of generated crossing events when the mouse pointer moves outside the toplevel from an inferior of it. All callers changed. (xw_notify_virtual_upwards_until): (xw_notify_virtual_downwards_until): New parameters for crossing mode. All callers changed.
* Send button events before setting xwidget passive grabPo Lu2022-02-021-18/+19
| | | | | * src/xwidget.c (xwidget_button_1): Send button event before any grab processing.
* Prevent duplicate grab setting with xwidgetsPo Lu2022-01-281-1/+1
| | | | | * src/xwidget.c (xwidget_show_view): Don't set passive grab if already set.
* Use the real cursor beneath the pointer on xwidgetsPo Lu2022-01-281-13/+59
| | | | | | | | | | | | | | | * src/xwidget.c (define_cursors): Make manual cursor definition code PGTK-only. (xw_update_cursor_for_view): (xw_last_crossing_cursor_cb): New functions. (xw_maybe_synthesize_crossing): Attach and disconnect cursor signal handler where appropriate. (xwidget_init_view): Set the default cursor to the nontext cursor. (Fxwidget_delete_view): Disconnect last crossing signal if appropriate. * src/xwidget.h (struct xwidget_view): New field `last_crossing_cursor_signal'.
* Fix xwidget build on PGTKPo Lu2022-01-281-4/+4
| | | | | * src/xwidget.c (xw_forward_event_translate): Adjust calls to `find_widget_at_pos' for recent changes.
* Fix duplicate scroll events without XI2Po Lu2022-01-281-35/+38
| | | | | * src/xwidget.c (xwidget_button): Only generate scroll events when the button was released.
* Clear xwidget passive grab whenever a drag beginsPo Lu2022-01-281-0/+25
| | | | | | | | * src/xwidget.c (xv_drag_begin_cb): New function. (xwidget_view_from_window): Attach said function to grab widget when a grab starts. * src/xwidget.h (struct xwidget_view): New field `passive_grab_drag_signal'.
* Fix inappropriate use of killed xwidgetsPo Lu2022-01-281-2/+5
| | | | | * src/xwidget.c (x_draw_xwidget_webkit_view): Don't record embedder or synthesize focus events if the widget is killed.
* Implement xwidget passive grabsPo Lu2022-01-281-33/+163
| | | | | | | | | | | * src/xwidget.c (find_widget_at_pos): New parameters for controlling whether to respect grabs. All callers changed. (window_coords_from_toplevel): Make work when the widget is the toplevel. (find_widget): Fix coding style. (xwidget_button_1): Set and clear passive grabs if appropriate. (xw_maybe_synthesize_crossing): Allow current_window to be NULL if the mode is XW_CROSSING_LEFT.
* Improve xwidget window ancestry calculationsPo Lu2022-01-271-7/+177
| | | | | | | | * src/xwidget.c (xw_find_common_ancestor): (xw_notify_virtual_upwards_until) (xw_notify_virtual_downwards_until): New functions. (xw_maybe_synthesize_crossing): Synthesize virtual events like GTK does for non-linear changes.
* Implement crossing event generation between windows for xwidgets on XPo Lu2022-01-271-20/+168
| | | | | | | | | | | | | | * src/xwidget.c (enum xw_crossing_mode): New enum. (xwidget_motion_notify): (xwidget_motion_or_crossing): Synthesize crossing events if the pointer moved between different windows. (window_coords_from_toplevel): (xw_maybe_synthesize_crossing): New functions. (xwidget_init_view): Initialize new field to NULL. (Fdelete_xwidget_view): Clear last crossing window. * src/xwidget.h (struct xwidget_view): New field `last_crossing_window'.
* Fix PGTK build with xwidgetsPo Lu2022-01-221-1/+1
| | | | | * src/xwidget.c: Swap some preprocessor definitions around. Reported by IƱigo Serna <inigoserna@gmail.com>.
* Make xwidgets work on builds that don't use Cairo drawingPo Lu2022-01-211-0/+1
| | | | | | | | | * configure.ac: Check for the parts of Cairo that are needed for xwidgets when they are enabled without cairo drawing. * src/xterm.c: * src/xwidget.c: Always include cairo-xlib headers when xwidgets are enabled.
* Use Cairo XCB surfaces when XCB is availablePo Lu2022-01-191-1/+1
| | | | | | | | | | | | | | | This lets us get at goodies such as shm support, which aren't available with the xlib surface. (bug#52120) * configure.ac: Test for cairo-xcb if cairo is available on X. * src/xterm.c (USE_CAIRO_XCB_SURFACE): New define. (x_begin_cr_clip): Create XCB surfaces if available. (x_try_cr_xlib_drawable): (x_scroll_run): Handle XCB surfaces. (x_term_init): Find XCB visualtype structure. * src/xterm.h (struct x_display_info): New field `xcb_visual'. * src/xwidget.c (x_draw_xwidget_glyph_string): Fix integer overflow.
* * src/xwidget.c (webkit_js_to_lisp): Use correct constant to check size.Po Lu2022-01-161-1/+1
|
* Use correct coordinates when translating XI2 crossing eventsPo Lu2022-01-121-2/+2
| | | | | * src/xwidget.c (xwidget_motion_or_crossing): Use displaced position instead of event position.
* Fix xwidgets setting their own signal handlersPo Lu2022-01-051-0/+4
| | | | | | | | | * src/xgselect.c (release_select_lock): (acquire_select_lock): Fix coding style. (xg_select): Call `catch_child_signal' if xwidgets are enabled. * src/xwidget.c (kill_xwidget): (kill_buffer_xwidgets): Call `catch_child_signal'. (bug#53013)
* Translate more modifiers to GDK ones in xwidgetsPo Lu2022-01-041-0/+4
| | | | | * src/xwidget.c (xw_translate_x_modifiers): Also handle Control and ShiftMask.
* Stop assuming X kbd state works with GDK when forwarding events to xwidgetsPo Lu2022-01-041-0/+34
| | | | | | * src/xwidget.c (xw_translate_x_modifiers): New function. (Fxwidget_perform_lispy_event): Translate X modifiers to GDK modifiers before sending them to the xwidget.
* Merge from origin/emacs-28Eli Zaretskii2022-01-011-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 836be7a112 ; * etc/refcards/ru-refcard.tex: Update Copyright year. 86cbc6ee4a * lisp/net/tramp-sh.el: Adapt copyright year ebe8772f65 ; Minor fixes related to copyright years 23c1ee6989 ; * test/manual/etags/ETAGS.good_N: Adjust to copyright ye... 8d3fc7ec89 * src/xfaces.c (face_for_font): Make 'hash' be uintptr_t. 19dcb237b5 ; Add 2022 to copyright years. # Conflicts: # etc/NEWS # etc/refcards/ru-refcard.tex # lib/cdefs.h # lisp/erc/erc-dcc.el # lisp/erc/erc-imenu.el # lisp/erc/erc-replace.el # lisp/image-dired.el # lisp/progmodes/xref.el # m4/alloca.m4 # m4/byteswap.m4 # m4/errno_h.m4 # m4/getopt.m4 # m4/gnulib-common.m4 # m4/inttypes.m4 # m4/stddef_h.m4 # m4/stdint.m4 # m4/sys_socket_h.m4
| * ; Add 2022 to copyright years.Eli Zaretskii2022-01-011-1/+1
| |
* | Don't select for gesture events on xwidgets if the server is too oldPo Lu2021-12-311-3/+6
| | | | | | | | | | * src/xwidget.c (x_draw_xwidget_glyph_string): Only select for XI gesture events if the server supports XI 2.4 or later.
* | Add pinch event support to xwidgetsPo Lu2021-12-311-3/+74
| | | | | | | | | | | | | | | | | | | | | | * src/xterm.c (handle_one_xevent): Pass through pinch events to xwidgets and provide root coordinates when translating motion events. * src/xwidget.c (xwidget_motion_notify): Use provided root window coordinates. (xwidget_pinch): New function. * src/xwidget.h (xwidget_motion_notify): Update prototype. (xwidget_pinch): New function prototype.
* | Restore original xwidget embedder after performing a lispy eventPo Lu2021-12-311-3/+23
| | | | | | | | | | | | | | * src/xwidget.c (Fxwidget_perform_lispy_event): Restore original embedder after performing event. (Fdelete_xwidget_view): Block input around non-reentrant section.
* | * src/xwidget.c (Fxwidget_perform_lispy_event): Use FRAME_WINDOW_P.Po Lu2021-12-311-1/+1
| |
* | Make xwidget motion commands hscroll the window of wide widgetsPo Lu2021-12-301-2/+4
| | | | | | | | | | | | | | | | | | | | * lisp/xwidget.el (xwidget-info): New function declaration. (xwidget-webkit-scroll-forward): (xwidget-webkit-scroll-backward): Hscroll the window if the widget is wider than the text area. (bug#52885) * src/xwidget.c (xwidget_scroll, xwidget_motion_notify): Apply clip offsets to coordinates.
* | Translate crossing event mode when sending them to xwidgetsPo Lu2021-12-301-5/+6
| | | | | | | | | | | | * src/xwidget.c (xi_translate_notify_detail): Use XI constants instead. (xwidget_motion_or_crossing): Translate XI entry event mode.
* | Translate state of XI2 entry events when sending them to xwidgetsPo Lu2021-12-291-0/+35
| | | | | | | | | | | | * src/xwidget.c (xi_translate_notify_detail): New function. (xwidget_motion_or_crossing): Translate detail and state of GenericEvents before sending them to the widget.
* | Get rid of obsolete xwidget-related code on PGTKPo Lu2021-12-291-0/+2
| | | | | | | | | | | | | | | | | | | | | | * src/emacsgtkfixed.c (emacs_fixed_class_init): Stop setting obsolete methods. (EMACS_FIXED_GET_CLASS, struct GtkFixedPrivateL): (emacs_fixed_gtk_widget_size_allocate): Delete obsolete things. * src/xwidget.c (x_draw_xwidget_glyph_string): Work around mysterious bug.
* | Queue xwidget views for allocation in more placesPo Lu2021-12-291-0/+2
| | | | | | | | | | | | * src/xwidget.c (Fmake_xwidget) [HAVE_PGTK]: (Fxwidget_resize) [HAVE_PGTK]: Queue xwidgets and views for allocation.
* | Improve xwidget event handling on XI2Po Lu2021-12-291-37/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | * src/xterm.c (handle_one_xevent): Pass XI2 entry and leave events to xwidgets and fix scroll valuator reset logic for xwidgets. * src/xwidget.c (xwidget_button_1): Stop ungrabbing all devices XI2 builds. (xwidget_motion_or_crossing): Learn to pass through XI2 crossing events. (x_draw_xwidget_glyph_string): Add crossing events to the XI2 event mask.
* | Use XI2 to handle xwidget button eventsPo Lu2021-12-291-0/+2
| | | | | | | | | | | | | | * src/xterm.c (handle_one_xevent): Handle xwidget views when handling XI_ButtonPress or XI_ButtonRelease events. * src/xwidget.c (x_draw_xwidget_glyph_string): Add appropriate values to the XI2 event mask.
* | Fix embedder calculation for xwidgets on PGTKPo Lu2021-12-291-3/+16
| | | | | | | | | | | | | | | | | | * src/xwidget.c (Fmake_xwidget): (x_draw_xwidget_glyph_string): Defer focus event synthesis on PGTK as well. (record_osr_embedder): Use view window on PGTK. (to_embedder): (from_embedder): Rectify accordingly.
* | Fix NS xwidget buildPo Lu2021-12-291-0/+2
| | | | | | | | | | * src/xwidget.c (kill_frame_xwidget_views): * src/xwidget.h (kill_frame_xwidget_views): Disable on NS.
* | * src/xwidget.c (syms_of_xwidget): Fix typo.Po Lu2021-12-291-1/+1
| |
* | Add support for xwidgets to the PGTK portPo Lu2021-12-291-14/+237
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * src/emacsgtkfixed.c (EMACS_FIXED_GET_CLASS): New function. (struct GtkFixedPrivateL): New struct. (emacs_fixed_gtk_widget_size_allocate): (emacs_fixed_class_init): New functions. * src/keyboard.h: Declare lispy_function_keys also when HAVE_PGTK. * src/pgtkterm.c (x_free_frame_resources): Destroy all xwidget views. (pgtk_scroll_run): Move xwidget views that overlap with the scrolled area. (pgtk_emacs_to_gtk_modifiers): Expose function. * src/pgtkterm.h: Wrap in include guard. (pgtk_emacs_to_gtk_modifiers): New prototype. * src/xwidget.c (xw_forward_event_translate): (xw_forward_event_from_view): New functions. (Fmake_xwidget): Remove obsolete PGTK specific code. (Fxwidget_perform_lispy_event): Convert modifiers correctly on PGTK. (define_cursors): Use GDK functions to define cursors on PGTK. (xwidget_view_from_window): Disable on non-PGTK builds. (xwidget_show_view): (xwidget_hide_view): Implement on PGTK. (xv_do_draw): Disable on non-PGTK builds. (offscreen_damage_event): Queue xwidget views for draw. (xwidget_expose): Disable on non-PGTK builds. (xwidget_init_view): (x_draw_xwidget_glyph_string): (Fdelete_xwidget_view): Implement for PGTK. (syms_of_xwidget): Don't initialize XID to widget table on PGTK. (lower_frame_xwidget_views): Disable on PGTK. * src/xwidget.h (struct xwidget_view): New fields for PGTK builds. (kill_frame_xwidget_views): Enable on PGTK.
* | Merge remote-tracking branch 'origin/master' into feature/pgtkPo Lu2021-12-161-0/+2
|\ \
| * | Require xwidget.el in `make-xwidget'Po Lu2021-12-161-0/+2
| | | | | | | | | | | | * src/xwidget.c (Fmake_xwidget): Require `xwidget'.
* | | Merge remote-tracking branch 'origin/master' into feature/pgtkPo Lu2021-12-081-4/+3
|\| |
| * | Send scroll stop events to xwidgets correctlyPo Lu2021-12-081-4/+3
| | | | | | | | | | | | | | | | | | | | | * src/xterm.c (handle_one_xevent): Record stop events manually. * src/xwidget.h (xwidget_scroll): * src/xwidget.c (xwidget_scroll): New parameter `stop_p'.
* | | Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs into feature/pgtkYuuki Harano2021-12-041-0/+3
|\| |