24#include <wx/nonownedwnd.h>
25#include <wx/settings.h>
32#ifdef GDK_WINDOWING_X11
36#ifdef GDK_WINDOWING_WAYLAND
37#include <gdk/gdkwayland.h>
50 wxColour bg = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW );
53 double brightness = ( bg.Red() / 255.0 ) * 0.299 +
54 ( bg.Green() / 255.0 ) * 0.587 +
55 ( bg.Blue() / 255.0 ) * 0.117;
57 return brightness < 0.5;
63 return wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE );
71#if( GTK_CHECK_VERSION( 3, 24, 0 ) )
73 GtkWidgetPath*
path = gtk_widget_path_new();
74 GtkStyleContext* sc = gtk_style_context_new();
76 gtk_widget_path_append_type(
path, GTK_TYPE_WINDOW );
77 gtk_widget_path_iter_set_object_name(
path, -1,
"infobar" );
78 gtk_widget_path_iter_add_class(
path, -1,
"info" );
80 gtk_style_context_set_path( sc,
path );
81 gtk_style_context_set_state( sc, GTK_STATE_FLAG_NORMAL );
83 gtk_style_context_get( sc, GTK_STATE_FLAG_NORMAL,
"background-color", &rgba, NULL );
84 aBgColour = wxColour( *rgba );
85 gdk_rgba_free( rgba );
87 gtk_style_context_get( sc, GTK_STATE_FLAG_NORMAL,
"color", &rgba, NULL );
88 aFgColour = wxColour( *rgba );
89 gdk_rgba_free( rgba );
94 if( aBgColour.Alpha() == 0 )
96 gtk_widget_path_append_type(
path, G_TYPE_NONE );
97 gtk_widget_path_iter_set_object_name(
path, -1,
"revealer" );
98 gtk_widget_path_append_type(
path, G_TYPE_NONE );
99 gtk_widget_path_iter_set_object_name(
path, -1,
"box" );
101 gtk_style_context_set_path( sc,
path );
102 gtk_style_context_set_state( sc, GTK_STATE_FLAG_NORMAL );
104 gtk_style_context_get( sc, GTK_STATE_FLAG_NORMAL,
"background-color", &rgba, NULL );
105 aBgColour = wxColour( *rgba );
106 gdk_rgba_free( rgba );
108 gtk_style_context_get( sc, GTK_STATE_FLAG_NORMAL,
"color", &rgba, NULL );
109 aFgColour = wxColour( *rgba );
110 gdk_rgba_free( rgba );
113 gtk_widget_path_free(
path );
114 g_object_unref( sc );
117 aBgColour = wxSystemSettings::GetColour( wxSYS_COLOUR_INFOBK );
118 aFgColour = wxSystemSettings::GetColour( wxSYS_COLOUR_INFOTEXT );
135 GtkWindow* window = GTK_WINDOW( aWindow->GetHandle() );
138 return gtk_window_is_active( window );
161 case wxCURSOR_BULLSEYE:
183 GtkMenuItem* pMenuItem = GTK_MENU_ITEM( pItem );
184 GtkWidget* child = gtk_bin_get_child( GTK_BIN( pMenuItem ) );
185 GtkCellView* pCellView = GTK_CELL_VIEW( child );
186 GtkCellLayout* pCellLayout = GTK_CELL_LAYOUT( pCellView );
187 GtkCellArea* pCellArea = gtk_cell_layout_get_area( pCellLayout );
189 g_signal_handlers_block_matched( pCellArea, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, userdata );
195 AtkObject* atkObj = gtk_combo_box_get_popup_accessible( GTK_COMBO_BOX( aChoice->m_widget ) );
197 if( !atkObj || !GTK_IS_ACCESSIBLE( atkObj ) )
200 GtkWidget* widget = gtk_accessible_get_widget( GTK_ACCESSIBLE( atkObj ) );
202 if( !widget || !GTK_IS_MENU( widget ) )
205 GtkMenu* menu = GTK_MENU( widget );
215 GList* cells = gtk_cell_layout_get_cells( GTK_CELL_LAYOUT( aChoice->m_widget ) );
220 GtkCellRenderer* cell = (GtkCellRenderer*) cells->data;
225 g_object_set( G_OBJECT( cell ),
"ellipsize", PANGO_ELLIPSIZE_END,
nullptr );
228 g_list_free( cells );
236 GtkWidget* widget =
static_cast<GtkWidget*
>( aWindow->GetHandle() );
238 if( widget && gtk_check_version( 3, 10, 0 ) == nullptr )
239 val = gtk_widget_get_scale_factor( widget );
254 return wxSize( aWindow->GetSize().GetX() - wxSystemSettings::GetMetric( wxSYS_VSCROLL_X ),
255 aWindow->GetSize().GetY() - wxSystemSettings::GetMetric( wxSYS_HSCROLL_Y ) );
261 gtk_scrolled_window_set_overlay_scrolling( GTK_SCROLLED_WINDOW( aWindow->GetHandle() ),
268 gboolean allowed = 1;
270 g_object_get( gtk_settings_get_default(),
"gtk-menu-images", &allowed, NULL );
276#if defined( GDK_WINDOWING_WAYLAND ) && defined( KICAD_WAYLAND )
278static bool wayland_warp_pointer( GtkWidget* aWidget, GdkDisplay* aDisplay, GdkWindow* aWindow,
279 GdkDevice* aPtrDev,
int aX,
int aY );
283static wxPoint s_warped_from;
284static wxPoint s_warped_to;
288 wxPoint wx_pos = wxGetMousePosition();
290 if( wx_pos == s_warped_from )
292 wxLogTrace(
traceWayland, wxS(
"Faked mouse pos %d %d -> %d %d" ), wx_pos.x, wx_pos.y,
293 s_warped_to.x, s_warped_to.y );
300 s_warped_from = wxPoint();
301 s_warped_to = wxPoint();
312 if( !wxGetEnv( wxT(
"WAYLAND_DISPLAY" ),
nullptr ) )
314 aWindow->WarpPointer( aX, aY );
319 GtkWidget* widget =
static_cast<GtkWidget*
>( aWindow->GetHandle() );
321 GdkDisplay* disp = gtk_widget_get_display( widget );
322 GdkSeat* seat = gdk_display_get_default_seat( disp );
323 GdkDevice* ptrdev = gdk_seat_get_pointer( seat );
325#if defined( GDK_WINDOWING_WAYLAND ) && defined( KICAD_WAYLAND )
326 if( GDK_IS_WAYLAND_DISPLAY( disp ) )
328 wxPoint initialPos = wxGetMousePosition();
329 GdkWindow* win = aWindow->GTKGetDrawingWindow();
331 if( wayland_warp_pointer( widget, disp, win, ptrdev, aX, aY ) )
333 s_warped_from = initialPos;
334 s_warped_to = aWindow->ClientToScreen( wxPoint( aX, aY ) );
336 wxLogTrace(
traceWayland, wxS(
"Set warped from %d %d to %d %d" ), s_warped_from.x,
337 s_warped_from.y, s_warped_to.x, s_warped_to.y );
342 wxLogTrace(
traceWayland, wxS(
"*** Warp to %d %d failed ***" ), aX, aY );
347#ifdef GDK_WINDOWING_X11
348 if( GDK_IS_X11_DISPLAY( disp ) )
350 GdkWindow* win = gdk_device_get_window_at_position( ptrdev,
nullptr,
nullptr );
351 GdkCursor* blank_cursor = gdk_cursor_new_for_display( disp, GDK_BLANK_CURSOR );
352 GdkCursor* cur_cursor = gdk_window_get_cursor( win );
355 g_object_ref( cur_cursor );
357 gdk_window_set_cursor( win, blank_cursor );
358 aWindow->WarpPointer( aX, aY );
359 gdk_window_set_cursor( win, cur_cursor );
362 g_object_unref( cur_cursor );
365 g_object_unref( blank_cursor );
383 wxWindowGTK* win =
static_cast<wxWindowGTK*
>( aWindow );
386 GtkIMContext* imContext = win->m_imContext;
389 gtk_im_context_focus_out( imContext );
403#if defined( GDK_WINDOWING_WAYLAND ) && defined( KICAD_WAYLAND )
405static bool s_wl_initialized =
false;
406static struct wl_compositor* s_wl_compositor = NULL;
407static struct zwp_pointer_constraints_v1* s_wl_pointer_constraints = NULL;
408static struct zwp_confined_pointer_v1* s_wl_confined_pointer = NULL;
409static struct wl_region* s_wl_confinement_region = NULL;
410static bool s_wl_locked_flag =
false;
412static void handle_global(
void* data,
struct wl_registry* registry, uint32_t
name,
413 const char* interface, uint32_t version )
415 wxLogTrace(
traceWayland,
"handle_global received %s name %u version %u", interface,
416 (
unsigned int)
name, (
unsigned int) version );
418 if( strcmp( interface, wl_compositor_interface.name ) == 0 )
420 s_wl_compositor =
static_cast<wl_compositor*
>(
421 wl_registry_bind( registry,
name, &wl_compositor_interface, version ) );
425 s_wl_pointer_constraints =
static_cast<zwp_pointer_constraints_v1*
>( wl_registry_bind(
430static void handle_global_remove(
void*,
struct wl_registry*, uint32_t
name )
432 wxLogTrace(
traceWayland,
"handle_global_remove name %u", (
unsigned int)
name );
435static const struct wl_registry_listener registry_listener = {
436 .global = handle_global,
437 .global_remove = handle_global_remove,
440static void confined_handler(
void* data,
struct zwp_confined_pointer_v1* zwp_confined_pointer_v1 )
445static void unconfined_handler(
void* data,
446 struct zwp_confined_pointer_v1* zwp_confined_pointer_v1 )
448 wxLogTrace(
traceWayland, wxS(
"Pointer unconfined" ) );
453 .unconfined = unconfined_handler
456static void locked_handler(
void* data,
struct zwp_locked_pointer_v1* zwp_locked_pointer_v1 )
458 s_wl_locked_flag =
true;
462static void unlocked_handler(
void* data,
struct zwp_locked_pointer_v1* zwp_locked_pointer_v1 )
469 .unlocked = unlocked_handler
476static void initialize_wayland( wl_display* wldisp )
478 if( s_wl_initialized )
483 struct wl_registry* registry = wl_display_get_registry( wldisp );
484 wl_registry_add_listener( registry, ®istry_listener, NULL );
485 wl_display_roundtrip( wldisp );
486 s_wl_initialized =
true;
490struct zwp_locked_pointer_v1* s_wl_locked_pointer = NULL;
492static int s_after_paint_handler_id = 0;
494static void on_frame_clock_after_paint( GdkFrameClock* clock, GtkWidget* widget )
496 if( s_wl_locked_pointer )
499 s_wl_locked_pointer = NULL;
501 wxLogTrace(
traceWayland, wxS(
"after-paint: locked_pointer destroyed" ) );
503 g_signal_handler_disconnect( (gpointer) clock, s_after_paint_handler_id );
504 s_after_paint_handler_id = 0;
507 if( s_wl_confinement_region != NULL )
509 wxLogTrace(
traceWayland, wxS(
"after-paint: Restoring confinement" ) );
511 GdkDisplay* disp = gtk_widget_get_display( widget );
512 GdkSeat* seat = gdk_display_get_default_seat( disp );
513 GdkDevice* ptrdev = gdk_seat_get_pointer( seat );
514 GdkWindow* window = gtk_widget_get_window( widget );
516 wl_display* wldisp = gdk_wayland_display_get_wl_display( disp );
517 wl_surface* wlsurf = gdk_wayland_window_get_wl_surface( window );
518 wl_pointer* wlptr = gdk_wayland_device_get_wl_pointer( ptrdev );
521 s_wl_pointer_constraints, wlsurf, wlptr, s_wl_confinement_region,
524 wl_display_roundtrip( wldisp );
530static bool wayland_warp_pointer( GtkWidget* aWidget, GdkDisplay* aDisplay, GdkWindow* aWindow,
531 GdkDevice* aPtrDev,
int aX,
int aY )
533 wl_display* wldisp = gdk_wayland_display_get_wl_display( aDisplay );
534 wl_surface* wlsurf = gdk_wayland_window_get_wl_surface( aWindow );
535 wl_pointer* wlptr = gdk_wayland_device_get_wl_pointer( aPtrDev );
537 if( s_after_paint_handler_id )
540 wxLogTrace(
traceWayland, wxS(
"Not warping: after-paint pending" ) );
544 initialize_wayland( wldisp );
546 if( s_wl_locked_pointer )
549 wxLogTrace(
traceWayland, wxS(
"** Destroying previous locked_pointer **" ) );
551 wl_display_roundtrip( wldisp );
552 s_wl_locked_pointer = NULL;
557 GdkFrameClock* frame_clock = gdk_window_get_frame_clock( aWindow );
558 s_after_paint_handler_id = g_signal_connect_after(
559 frame_clock,
"after-paint", G_CALLBACK( on_frame_clock_after_paint ), aWidget );
562 if( s_wl_confinement_region && s_wl_confined_pointer )
565 wl_display_roundtrip( wldisp );
566 s_wl_confined_pointer = NULL;
569 s_wl_locked_flag =
false;
571 s_wl_locked_pointer =
578 gtk_widget_translate_coordinates( aWidget, gtk_widget_get_toplevel( aWidget ), 0, 0, &wx, &wy );
581 wl_fixed_from_int( aY + wy ) );
584 wl_display_roundtrip( wldisp );
585 gtk_widget_queue_draw( aWidget );
588 return s_wl_locked_flag;
594 wxLogTrace(
traceWayland, wxS(
"InfiniteDragPrepareWindow" ) );
596 GtkWidget* widget =
static_cast<GtkWidget*
>( aWindow->GetHandle() );
597 GdkDisplay* disp = gtk_widget_get_display( widget );
599 if( GDK_IS_WAYLAND_DISPLAY( disp ) )
601 if( s_wl_confined_pointer != NULL )
606 GdkSeat* seat = gdk_display_get_default_seat( disp );
607 GdkDevice* ptrdev = gdk_seat_get_pointer( seat );
608 GdkWindow* win = aWindow->GTKGetDrawingWindow();
610 wl_display* wldisp = gdk_wayland_display_get_wl_display( disp );
611 wl_surface* wlsurf = gdk_wayland_window_get_wl_surface( win );
612 wl_pointer* wlptr = gdk_wayland_device_get_wl_pointer( ptrdev );
614 initialize_wayland( wldisp );
616 gint x, y, width, height;
617 gdk_window_get_geometry( gdk_window_get_toplevel( win ), &x, &y, &width, &height );
619 wxLogTrace(
traceWayland, wxS(
"Confine region: %d %d %d %d" ), x, y, width, height );
621 s_wl_confinement_region = wl_compositor_create_region( s_wl_compositor );
622 wl_region_add( s_wl_confinement_region, x, y, width, height );
625 s_wl_pointer_constraints, wlsurf, wlptr, s_wl_confinement_region,
631 wl_display_roundtrip( wldisp );
633 else if( wxGetEnv( wxT(
"WAYLAND_DISPLAY" ),
nullptr ) )
645 wxLogTrace(
traceWayland, wxS(
"InfiniteDragReleaseWindow" ) );
647 if( s_wl_confined_pointer )
650 s_wl_confined_pointer = NULL;
653 if( s_wl_confinement_region )
655 wl_region_destroy( s_wl_confinement_region );
656 s_wl_confinement_region = NULL;
667 return !wxGetEnv( wxT(
"WAYLAND_DISPLAY" ),
nullptr );
679 return wxGetMousePosition();
static void zwp_confined_pointer_v1_destroy(struct zwp_confined_pointer_v1 *zwp_confined_pointer_v1)
Destroy the confined pointer object.
static int zwp_confined_pointer_v1_add_listener(struct zwp_confined_pointer_v1 *zwp_confined_pointer_v1, const struct zwp_confined_pointer_v1_listener *listener, void *data)
static void zwp_locked_pointer_v1_set_cursor_position_hint(struct zwp_locked_pointer_v1 *zwp_locked_pointer_v1, wl_fixed_t surface_x, wl_fixed_t surface_y)
Set the cursor position hint relative to the top left corner of the surface.
static int zwp_locked_pointer_v1_add_listener(struct zwp_locked_pointer_v1 *zwp_locked_pointer_v1, const struct zwp_locked_pointer_v1_listener *listener, void *data)
static void zwp_locked_pointer_v1_destroy(struct zwp_locked_pointer_v1 *zwp_locked_pointer_v1)
Destroy the locked pointer object.
static struct zwp_locked_pointer_v1 * zwp_pointer_constraints_v1_lock_pointer(struct zwp_pointer_constraints_v1 *zwp_pointer_constraints_v1, struct wl_surface *surface, struct wl_pointer *pointer, struct wl_region *region, uint32_t lifetime)
The lock_pointer request lets the client request to disable movements of the virtual pointer (i....
static struct zwp_confined_pointer_v1 * zwp_pointer_constraints_v1_confine_pointer(struct zwp_pointer_constraints_v1 *zwp_pointer_constraints_v1, struct wl_surface *surface, struct wl_pointer *pointer, struct wl_region *region, uint32_t lifetime)
The confine_pointer request lets the client request to confine the pointer cursor to a given region.
@ ZWP_POINTER_CONSTRAINTS_V1_LIFETIME_ONESHOT
the pointer constraint is defunct once deactivated
std::shared_ptr< PNS_LOG_VIEWER_OVERLAY > overlay
void(* confined)(void *data, struct zwp_confined_pointer_v1 *zwp_confined_pointer_v1)
pointer confined
void(* locked)(void *data, struct zwp_locked_pointer_v1 *zwp_locked_pointer_v1)
lock activation event
const struct wl_interface zwp_pointer_constraints_v1_interface
static void disable_area_apply_attributes_cb(GtkWidget *pItem, gpointer userdata)
The following two functions are based on the "hack" contained in the attached patch at https://gitlab...
const wxString traceWayland