mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-29 23:22:35 +00:00
57 lines
1.7 KiB
C
57 lines
1.7 KiB
C
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/gtk/private/mediactrl.h
|
|
// Purpose: Wrap runtime checks to manage GTK windows with Wayland and X11
|
|
// Author: Pierluigi Passaro
|
|
// Created: 2021-03-18
|
|
// Copyright: (c) 2021 Pierluigi Passaro <pierluigi.p@variscite.com>
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_GTK_PRIVATE_MEDIACTRL_H_
|
|
#define _WX_GTK_PRIVATE_MEDIACTRL_H_
|
|
|
|
#ifdef GDK_WINDOWING_X11
|
|
#include <gdk/gdkx.h>
|
|
#endif
|
|
#ifdef GDK_WINDOWING_WAYLAND
|
|
#include <gdk/gdkwayland.h>
|
|
#endif
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// "wxGtkGetIdFromWidget" from widget
|
|
//
|
|
// Get the windows_id performing run-time checks If the window wasn't realized
|
|
// when Load was called, this is the callback for when it is - the purpose of
|
|
// which is to tell GStreamer to play the video in our control
|
|
//-----------------------------------------------------------------------------
|
|
extern "C" {
|
|
inline gpointer wxGtkGetIdFromWidget(GtkWidget* widget)
|
|
{
|
|
gdk_flush();
|
|
|
|
GdkWindow* window = gtk_widget_get_window(widget);
|
|
wxASSERT(window);
|
|
|
|
#ifdef __WXGTK3__
|
|
const char* name = g_type_name(G_TYPE_FROM_INSTANCE(window));
|
|
#endif
|
|
#ifdef GDK_WINDOWING_X11
|
|
#ifdef __WXGTK3__
|
|
if (strcmp("GdkX11Window", name) == 0)
|
|
#endif
|
|
{
|
|
return (gpointer)GDK_WINDOW_XID(window);
|
|
}
|
|
#endif
|
|
#ifdef GDK_WINDOWING_WAYLAND
|
|
if (strcmp("GdkWaylandWindow", name) == 0)
|
|
{
|
|
return (gpointer)gdk_wayland_window_get_wl_surface(window);
|
|
}
|
|
#endif
|
|
|
|
return (gpointer)NULL;
|
|
}
|
|
}
|
|
|
|
#endif // _WX_GTK_PRIVATE_MEDIACTRL_H_
|