2016-05-12 13:56:12 +00:00
|
|
|
/*
|
|
|
|
* Wayland Support
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2023-08-07 09:50:23 +00:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2016-05-12 13:56:12 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2018-07-10 08:36:24 +00:00
|
|
|
#include "wayland/meta-wayland-tablet-cursor-surface.h"
|
2018-04-19 19:51:31 +00:00
|
|
|
|
|
|
|
struct _MetaWaylandTabletCursorSurface
|
2016-05-12 13:56:12 +00:00
|
|
|
{
|
2018-04-19 19:51:31 +00:00
|
|
|
MetaWaylandCursorSurface parent;
|
2016-05-12 13:56:12 +00:00
|
|
|
};
|
|
|
|
|
2018-04-19 19:51:31 +00:00
|
|
|
G_DEFINE_TYPE (MetaWaylandTabletCursorSurface,
|
|
|
|
meta_wayland_tablet_cursor_surface,
|
|
|
|
META_TYPE_WAYLAND_CURSOR_SURFACE)
|
2016-05-12 13:56:12 +00:00
|
|
|
|
|
|
|
static void
|
2018-04-19 19:51:31 +00:00
|
|
|
meta_wayland_tablet_cursor_surface_init (MetaWaylandTabletCursorSurface *role)
|
2016-05-12 13:56:12 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-04-19 19:51:31 +00:00
|
|
|
meta_wayland_tablet_cursor_surface_class_init (MetaWaylandTabletCursorSurfaceClass *klass)
|
2016-05-12 13:56:12 +00:00
|
|
|
{
|
|
|
|
}
|