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 );
78 GtkWindow* window = GTK_WINDOW( aWindow->GetHandle() );
81 return gtk_window_is_active( window );
104 case wxCURSOR_BULLSEYE:
126 GtkMenuItem* pMenuItem = GTK_MENU_ITEM( pItem );
127 GtkWidget* child = gtk_bin_get_child( GTK_BIN( pMenuItem ) );
128 GtkCellView* pCellView = GTK_CELL_VIEW( child );
129 GtkCellLayout* pCellLayout = GTK_CELL_LAYOUT( pCellView );
130 GtkCellArea* pCellArea = gtk_cell_layout_get_area( pCellLayout );
132 g_signal_handlers_block_matched( pCellArea, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, userdata );
138 AtkObject* atkObj = gtk_combo_box_get_popup_accessible( GTK_COMBO_BOX( aChoice->m_widget ) );
140 if( !atkObj || !GTK_IS_ACCESSIBLE( atkObj ) )
143 GtkWidget* widget = gtk_accessible_get_widget( GTK_ACCESSIBLE( atkObj ) );
145 if( !widget || !GTK_IS_MENU( widget ) )
148 GtkMenu* menu = GTK_MENU( widget );
158 GList* cells = gtk_cell_layout_get_cells( GTK_CELL_LAYOUT( aChoice->m_widget ) );
163 GtkCellRenderer* cell = (GtkCellRenderer*) cells->data;
168 g_object_set( G_OBJECT( cell ),
"ellipsize", PANGO_ELLIPSIZE_END,
nullptr );
171 g_list_free( cells );
179 GtkWidget* widget =
static_cast<GtkWidget*
>( aWindow->GetHandle() );
181 if( widget && gtk_check_version( 3, 10, 0 ) == nullptr )
182 val = gtk_widget_get_scale_factor( widget );
197 return wxSize( aWindow->GetSize().GetX() - wxSystemSettings::GetMetric( wxSYS_VSCROLL_X ),
198 aWindow->GetSize().GetY() - wxSystemSettings::GetMetric( wxSYS_HSCROLL_Y ) );
204 gtk_scrolled_window_set_overlay_scrolling( GTK_SCROLLED_WINDOW( aWindow->GetHandle() ),
211 gboolean allowed = 1;
213 g_object_get( gtk_settings_get_default(),
"gtk-menu-images", &allowed, NULL );
219#if defined( GDK_WINDOWING_WAYLAND ) && defined( KICAD_WAYLAND )
221static bool wayland_warp_pointer( GtkWidget* aWidget, GdkDisplay* aDisplay, GdkWindow* aWindow,
222 GdkDevice* aPtrDev,
int aX,
int aY );
226static wxPoint s_warped_from;
227static wxPoint s_warped_to;
231 wxPoint wx_pos = wxGetMousePosition();
233 if( wx_pos == s_warped_from )
235 wxLogTrace(
traceWayland, wxS(
"Faked mouse pos %d %d -> %d %d" ), wx_pos.x, wx_pos.y,
236 s_warped_to.x, s_warped_to.y );
243 s_warped_from = wxPoint();
244 s_warped_to = wxPoint();
255 if( !wxGetEnv( wxT(
"WAYLAND_DISPLAY" ),
nullptr ) )
257 aWindow->WarpPointer( aX, aY );
262 GtkWidget* widget =
static_cast<GtkWidget*
>( aWindow->GetHandle() );
264 GdkDisplay* disp = gtk_widget_get_display( widget );
265 GdkSeat* seat = gdk_display_get_default_seat( disp );
266 GdkDevice* ptrdev = gdk_seat_get_pointer( seat );
268#if defined( GDK_WINDOWING_WAYLAND ) && defined( KICAD_WAYLAND )
269 if( GDK_IS_WAYLAND_DISPLAY( disp ) )
271 wxPoint initialPos = wxGetMousePosition();
272 GdkWindow* win = aWindow->GTKGetDrawingWindow();
274 if( wayland_warp_pointer( widget, disp, win, ptrdev, aX, aY ) )
276 s_warped_from = initialPos;
277 s_warped_to = aWindow->ClientToScreen( wxPoint( aX, aY ) );
279 wxLogTrace(
traceWayland, wxS(
"Set warped from %d %d to %d %d" ), s_warped_from.x,
280 s_warped_from.y, s_warped_to.x, s_warped_to.y );
285 wxLogTrace(
traceWayland, wxS(
"*** Warp to %d %d failed ***" ), aX, aY );
290#ifdef GDK_WINDOWING_X11
291 if( GDK_IS_X11_DISPLAY( disp ) )
293 GdkWindow* win = gdk_device_get_window_at_position( ptrdev,
nullptr,
nullptr );
294 GdkCursor* blank_cursor = gdk_cursor_new_for_display( disp, GDK_BLANK_CURSOR );
295 GdkCursor* cur_cursor = gdk_window_get_cursor( win );
298 g_object_ref( cur_cursor );
300 gdk_window_set_cursor( win, blank_cursor );
301 aWindow->WarpPointer( aX, aY );
302 gdk_window_set_cursor( win, cur_cursor );
305 g_object_unref( cur_cursor );
308 g_object_unref( blank_cursor );
326 wxWindowGTK* win =
static_cast<wxWindowGTK*
>( aWindow );
329 GtkIMContext* imContext = win->m_imContext;
332 gtk_im_context_focus_out( imContext );
346#if defined( GDK_WINDOWING_WAYLAND ) && defined( KICAD_WAYLAND )
348static bool s_wl_initialized =
false;
349static struct wl_compositor* s_wl_compositor = NULL;
350static struct zwp_pointer_constraints_v1* s_wl_pointer_constraints = NULL;
351static struct zwp_confined_pointer_v1* s_wl_confined_pointer = NULL;
352static struct wl_region* s_wl_confinement_region = NULL;
353static bool s_wl_locked_flag =
false;
355static void handle_global(
void* data,
struct wl_registry* registry, uint32_t
name,
356 const char* interface, uint32_t version )
358 wxLogTrace(
traceWayland,
"handle_global received %s name %u version %u", interface,
359 (
unsigned int)
name, (
unsigned int) version );
361 if( strcmp( interface, wl_compositor_interface.name ) == 0 )
363 s_wl_compositor =
static_cast<wl_compositor*
>(
364 wl_registry_bind( registry,
name, &wl_compositor_interface, version ) );
368 s_wl_pointer_constraints =
static_cast<zwp_pointer_constraints_v1*
>( wl_registry_bind(
373static void handle_global_remove(
void*,
struct wl_registry*, uint32_t
name )
375 wxLogTrace(
traceWayland,
"handle_global_remove name %u", (
unsigned int)
name );
378static const struct wl_registry_listener registry_listener = {
379 .global = handle_global,
380 .global_remove = handle_global_remove,
383static void confined_handler(
void* data,
struct zwp_confined_pointer_v1* zwp_confined_pointer_v1 )
388static void unconfined_handler(
void* data,
389 struct zwp_confined_pointer_v1* zwp_confined_pointer_v1 )
391 wxLogTrace(
traceWayland, wxS(
"Pointer unconfined" ) );
396 .unconfined = unconfined_handler
399static void locked_handler(
void* data,
struct zwp_locked_pointer_v1* zwp_locked_pointer_v1 )
401 s_wl_locked_flag =
true;
405static void unlocked_handler(
void* data,
struct zwp_locked_pointer_v1* zwp_locked_pointer_v1 )
412 .unlocked = unlocked_handler
419static void initialize_wayland( wl_display* wldisp )
421 if( s_wl_initialized )
426 struct wl_registry* registry = wl_display_get_registry( wldisp );
427 wl_registry_add_listener( registry, ®istry_listener, NULL );
428 wl_display_roundtrip( wldisp );
429 s_wl_initialized =
true;
433struct zwp_locked_pointer_v1* s_wl_locked_pointer = NULL;
435static int s_after_paint_handler_id = 0;
437static void on_frame_clock_after_paint( GdkFrameClock* clock, GtkWidget* widget )
439 if( s_wl_locked_pointer )
442 s_wl_locked_pointer = NULL;
444 wxLogTrace(
traceWayland, wxS(
"after-paint: locked_pointer destroyed" ) );
446 g_signal_handler_disconnect( (gpointer) clock, s_after_paint_handler_id );
447 s_after_paint_handler_id = 0;
450 if( s_wl_confinement_region != NULL )
452 wxLogTrace(
traceWayland, wxS(
"after-paint: Restoring confinement" ) );
454 GdkDisplay* disp = gtk_widget_get_display( widget );
455 GdkSeat* seat = gdk_display_get_default_seat( disp );
456 GdkDevice* ptrdev = gdk_seat_get_pointer( seat );
457 GdkWindow* window = gtk_widget_get_window( widget );
459 wl_display* wldisp = gdk_wayland_display_get_wl_display( disp );
460 wl_surface* wlsurf = gdk_wayland_window_get_wl_surface( window );
461 wl_pointer* wlptr = gdk_wayland_device_get_wl_pointer( ptrdev );
464 s_wl_pointer_constraints, wlsurf, wlptr, s_wl_confinement_region,
467 wl_display_roundtrip( wldisp );
473static bool wayland_warp_pointer( GtkWidget* aWidget, GdkDisplay* aDisplay, GdkWindow* aWindow,
474 GdkDevice* aPtrDev,
int aX,
int aY )
476 wl_display* wldisp = gdk_wayland_display_get_wl_display( aDisplay );
477 wl_surface* wlsurf = gdk_wayland_window_get_wl_surface( aWindow );
478 wl_pointer* wlptr = gdk_wayland_device_get_wl_pointer( aPtrDev );
480 if( s_after_paint_handler_id )
483 wxLogTrace(
traceWayland, wxS(
"Not warping: after-paint pending" ) );
487 initialize_wayland( wldisp );
489 if( s_wl_locked_pointer )
492 wxLogTrace(
traceWayland, wxS(
"** Destroying previous locked_pointer **" ) );
494 wl_display_roundtrip( wldisp );
495 s_wl_locked_pointer = NULL;
500 GdkFrameClock* frame_clock = gdk_window_get_frame_clock( aWindow );
501 s_after_paint_handler_id = g_signal_connect_after(
502 frame_clock,
"after-paint", G_CALLBACK( on_frame_clock_after_paint ), aWidget );
505 if( s_wl_confinement_region && s_wl_confined_pointer )
508 wl_display_roundtrip( wldisp );
509 s_wl_confined_pointer = NULL;
512 s_wl_locked_flag =
false;
514 s_wl_locked_pointer =
521 gtk_widget_translate_coordinates( aWidget, gtk_widget_get_toplevel( aWidget ), 0, 0, &wx, &wy );
524 wl_fixed_from_int( aY + wy ) );
527 wl_display_roundtrip( wldisp );
528 gtk_widget_queue_draw( aWidget );
531 return s_wl_locked_flag;
537 wxLogTrace(
traceWayland, wxS(
"InfiniteDragPrepareWindow" ) );
539 GtkWidget* widget =
static_cast<GtkWidget*
>( aWindow->GetHandle() );
540 GdkDisplay* disp = gtk_widget_get_display( widget );
542 if( GDK_IS_WAYLAND_DISPLAY( disp ) )
544 if( s_wl_confined_pointer != NULL )
549 GdkSeat* seat = gdk_display_get_default_seat( disp );
550 GdkDevice* ptrdev = gdk_seat_get_pointer( seat );
551 GdkWindow* win = aWindow->GTKGetDrawingWindow();
553 wl_display* wldisp = gdk_wayland_display_get_wl_display( disp );
554 wl_surface* wlsurf = gdk_wayland_window_get_wl_surface( win );
555 wl_pointer* wlptr = gdk_wayland_device_get_wl_pointer( ptrdev );
557 initialize_wayland( wldisp );
559 gint x, y, width, height;
560 gdk_window_get_geometry( gdk_window_get_toplevel( win ), &x, &y, &width, &height );
562 wxLogTrace(
traceWayland, wxS(
"Confine region: %d %d %d %d" ), x, y, width, height );
564 s_wl_confinement_region = wl_compositor_create_region( s_wl_compositor );
565 wl_region_add( s_wl_confinement_region, x, y, width, height );
568 s_wl_pointer_constraints, wlsurf, wlptr, s_wl_confinement_region,
574 wl_display_roundtrip( wldisp );
576 else if( wxGetEnv( wxT(
"WAYLAND_DISPLAY" ),
nullptr ) )
588 wxLogTrace(
traceWayland, wxS(
"InfiniteDragReleaseWindow" ) );
590 if( s_wl_confined_pointer )
593 s_wl_confined_pointer = NULL;
596 if( s_wl_confinement_region )
598 wl_region_destroy( s_wl_confinement_region );
599 s_wl_confinement_region = NULL;
610 return !wxGetEnv( wxT(
"WAYLAND_DISPLAY" ),
nullptr );
622 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