forked from AuroraMiddleware/gtk
391727bd0d
This renames the GdkWindow class and related classes (impl, backend subclasses) to surface. Additionally it renames related types: GdkWindowAttr, GdkWindowPaint, GdkWindowWindowClass, GdkWindowType, GdkWindowTypeHint, GdkWindowHints, GdkWindowState, GdkWindowEdge This is an automatic conversion using the below commands: git sed -f g GdkWindowWindowClass GdkSurfaceSurfaceClass git sed -f g GdkWindow GdkSurface git sed -f g "gdk_window\([ _\(\),;]\|$\)" "gdk_surface\1" # Avoid hitting gdk_windowing git sed -f g "GDK_WINDOW\([ _\(]\|$\)" "GDK_SURFACE\1" # Avoid hitting GDK_WINDOWING git sed "GDK_\([A-Z]*\)IS_WINDOW\([_ (]\|$\)" "GDK_\1IS_SURFACE\2" git sed GDK_TYPE_WINDOW GDK_TYPE_SURFACE git sed -f g GdkPointerWindowInfo GdkPointerSurfaceInfo git sed -f g "BROADWAY_WINDOW" "BROADWAY_SURFACE" git sed -f g "broadway_window" "broadway_surface" git sed -f g "BroadwayWindow" "BroadwaySurface" git sed -f g "WAYLAND_WINDOW" "WAYLAND_SURFACE" git sed -f g "wayland_window" "wayland_surface" git sed -f g "WaylandWindow" "WaylandSurface" git sed -f g "X11_WINDOW" "X11_SURFACE" git sed -f g "x11_window" "x11_surface" git sed -f g "X11Window" "X11Surface" git sed -f g "WIN32_WINDOW" "WIN32_SURFACE" git sed -f g "win32_window" "win32_surface" git sed -f g "Win32Window" "Win32Surface" git sed -f g "QUARTZ_WINDOW" "QUARTZ_SURFACE" git sed -f g "quartz_window" "quartz_surface" git sed -f g "QuartzWindow" "QuartzSurface" git checkout NEWS* po-properties
89 lines
2.9 KiB
C
89 lines
2.9 KiB
C
/*
|
|
* Copyright © 2010 Codethink Limited
|
|
* Copyright © 2013 Canonical Limited
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the licence, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Author: Ryan Lortie <desrt@desrt.ca>
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include "gtkapplicationprivate.h"
|
|
|
|
#include <gdk/wayland/gdkwayland.h>
|
|
|
|
typedef GtkApplicationImplDBusClass GtkApplicationImplWaylandClass;
|
|
|
|
typedef struct
|
|
{
|
|
GtkApplicationImplDBus dbus;
|
|
|
|
} GtkApplicationImplWayland;
|
|
|
|
G_DEFINE_TYPE (GtkApplicationImplWayland, gtk_application_impl_wayland, GTK_TYPE_APPLICATION_IMPL_DBUS)
|
|
|
|
static void
|
|
gtk_application_impl_wayland_handle_window_realize (GtkApplicationImpl *impl,
|
|
GtkWindow *window)
|
|
{
|
|
GtkApplicationImplClass *impl_class =
|
|
GTK_APPLICATION_IMPL_CLASS (gtk_application_impl_wayland_parent_class);
|
|
GtkApplicationImplDBus *dbus = (GtkApplicationImplDBus *) impl;
|
|
GdkSurface *gdk_surface;
|
|
gchar *window_path;
|
|
|
|
gdk_surface = gtk_widget_get_window (GTK_WIDGET (window));
|
|
|
|
if (!GDK_IS_WAYLAND_SURFACE (gdk_surface))
|
|
return;
|
|
|
|
window_path = gtk_application_impl_dbus_get_window_path (dbus, window);
|
|
|
|
gdk_wayland_surface_set_dbus_properties_libgtk_only (gdk_surface,
|
|
dbus->application_id, dbus->app_menu_path, dbus->menubar_path,
|
|
window_path, dbus->object_path, dbus->unique_name);
|
|
|
|
g_free (window_path);
|
|
|
|
impl_class->handle_window_realize (impl, window);
|
|
}
|
|
|
|
static void
|
|
gtk_application_impl_wayland_before_emit (GtkApplicationImpl *impl,
|
|
GVariant *platform_data)
|
|
{
|
|
const char *startup_notification_id = NULL;
|
|
|
|
g_variant_lookup (platform_data, "desktop-startup-id", "&s", &startup_notification_id);
|
|
|
|
gdk_wayland_display_set_startup_notification_id (gdk_display_get_default (), startup_notification_id);
|
|
}
|
|
|
|
static void
|
|
gtk_application_impl_wayland_init (GtkApplicationImplWayland *wayland)
|
|
{
|
|
}
|
|
|
|
static void
|
|
gtk_application_impl_wayland_class_init (GtkApplicationImplWaylandClass *class)
|
|
{
|
|
GtkApplicationImplClass *impl_class = GTK_APPLICATION_IMPL_CLASS (class);
|
|
|
|
impl_class->handle_window_realize =
|
|
gtk_application_impl_wayland_handle_window_realize;
|
|
impl_class->before_emit =
|
|
gtk_application_impl_wayland_before_emit;
|
|
}
|