1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
/* AUTOGENERATED, DO NOT EDIT DIRECTLY
* See gtk-priv/README.md for more information
*
* This file is part of gtk-layer-shell
*
* Copyright (C) 2009 Carlos Garnacho <carlosg@gnome.org>
* Copyright © 2020 gtk-priv/scripts/code.py
*
* This program 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 3 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef GDK_WAYLAND_TOUCH_DATA_PRIV_H
#define GDK_WAYLAND_TOUCH_DATA_PRIV_H
#include "common.h"
typedef struct _GdkWaylandTouchData GdkWaylandTouchData;
// Version ID 0
// Valid for GTK v3.22.0 - v3.24.25 (unreleased)
struct _GdkWaylandTouchData_v3_22_0
{
uint32_t id;
gdouble x;
gdouble y;
GdkWindow *window;
uint32_t touch_down_serial;
guint initial_touch : 1;
};
// For internal use only
int gdk_wayland_touch_data_priv_get_version_id() {
static int version_id = -1;
if (version_id == -1) {
gtk_priv_assert_gtk_version_valid();
int combo = gtk_get_minor_version() * 1000 + gtk_get_micro_version();
switch (combo) {
case 22000:
case 22001:
case 22002:
case 22003:
case 22004:
case 22005:
case 22006:
case 22007:
case 22008:
case 22009:
case 22010:
case 22011:
case 22012:
case 22013:
case 22014:
case 22015:
case 22016:
case 22017:
case 22018:
case 22019:
case 22020:
case 22021:
case 22022:
case 22023:
case 22024:
case 22025:
case 22026:
case 22027:
case 22028:
case 22029:
case 22030:
case 23000:
case 23001:
case 23002:
case 23003:
case 24000:
case 24001:
case 24002:
case 24003:
case 24004:
case 24005:
case 24006:
case 24007:
case 24008:
case 24009:
case 24010:
case 24011:
case 24012:
case 24013:
case 24014:
case 24015:
case 24016:
case 24017:
case 24018:
case 24020:
case 24021:
case 24022:
case 24023:
case 24024:
break;
default:
gtk_priv_warn_gtk_version_may_be_unsupported();
}
{
version_id = 0;
}
}
return version_id;
}
// GdkWaylandTouchData::id
uint32_t gdk_wayland_touch_data_priv_get_id(GdkWaylandTouchData * self) {
switch (gdk_wayland_touch_data_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandTouchData_v3_22_0*)self)->id;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_touch_data_priv_set_id(GdkWaylandTouchData * self, uint32_t id) {
switch (gdk_wayland_touch_data_priv_get_version_id()) {
case 0: ((struct _GdkWaylandTouchData_v3_22_0*)self)->id = id; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandTouchData::x
gdouble * gdk_wayland_touch_data_priv_get_x_ptr(GdkWaylandTouchData * self) {
switch (gdk_wayland_touch_data_priv_get_version_id()) {
case 0: return (gdouble *)&((struct _GdkWaylandTouchData_v3_22_0*)self)->x;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandTouchData::y
gdouble * gdk_wayland_touch_data_priv_get_y_ptr(GdkWaylandTouchData * self) {
switch (gdk_wayland_touch_data_priv_get_version_id()) {
case 0: return (gdouble *)&((struct _GdkWaylandTouchData_v3_22_0*)self)->y;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandTouchData::window
GdkWindow * gdk_wayland_touch_data_priv_get_window(GdkWaylandTouchData * self) {
switch (gdk_wayland_touch_data_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandTouchData_v3_22_0*)self)->window;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_touch_data_priv_set_window(GdkWaylandTouchData * self, GdkWindow * window) {
switch (gdk_wayland_touch_data_priv_get_version_id()) {
case 0: ((struct _GdkWaylandTouchData_v3_22_0*)self)->window = window; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandTouchData::touch_down_serial
uint32_t gdk_wayland_touch_data_priv_get_touch_down_serial(GdkWaylandTouchData * self) {
switch (gdk_wayland_touch_data_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandTouchData_v3_22_0*)self)->touch_down_serial;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_touch_data_priv_set_touch_down_serial(GdkWaylandTouchData * self, uint32_t touch_down_serial) {
switch (gdk_wayland_touch_data_priv_get_version_id()) {
case 0: ((struct _GdkWaylandTouchData_v3_22_0*)self)->touch_down_serial = touch_down_serial; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandTouchData::initial_touch
guint gdk_wayland_touch_data_priv_get_initial_touch(GdkWaylandTouchData * self) {
switch (gdk_wayland_touch_data_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandTouchData_v3_22_0*)self)->initial_touch;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_touch_data_priv_set_initial_touch(GdkWaylandTouchData * self, guint initial_touch) {
switch (gdk_wayland_touch_data_priv_get_version_id()) {
case 0: ((struct _GdkWaylandTouchData_v3_22_0*)self)->initial_touch = initial_touch; break;
default: g_error("Invalid version ID"); g_abort();
}
}
#endif // GDK_WAYLAND_TOUCH_DATA_PRIV_H
|