summaryrefslogtreecommitdiff
path: root/src/wayland/meta-wayland-input-device.c
blob: b1e449db1d1d2175840bf61b904630c80de47f90 (plain)
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
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */

/*
 * Copyright (C) 2016 Red Hat
 *
 * 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
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 *
 * Written by:
 *     Jonas Ã…dahl <jadahl@gmail.com>
 */

#include "config.h"

#include "wayland/meta-wayland-input-device.h"

#include <wayland-server.h>

#include "wayland/meta-wayland-seat.h"

enum
{
  PROP_0,

  PROP_SEAT
};

typedef struct _MetaWaylandInputDevicePrivate
{
  MetaWaylandSeat *seat;
} MetaWaylandInputDevicePrivate;

G_DEFINE_TYPE_WITH_PRIVATE (MetaWaylandInputDevice,
                            meta_wayland_input_device,
                            G_TYPE_OBJECT)

MetaWaylandSeat *
meta_wayland_input_device_get_seat (MetaWaylandInputDevice * input_device)
{
  MetaWaylandInputDevicePrivate *priv =
    meta_wayland_input_device_get_instance_private (input_device);

  return priv->seat;
}

uint32_t
meta_wayland_input_device_next_serial (MetaWaylandInputDevice *input_device)
{
  MetaWaylandSeat *seat = meta_wayland_input_device_get_seat (input_device);

  return wl_display_next_serial (seat->wl_display);
}

static void
meta_wayland_input_device_set_property (GObject      *object,
                                        guint         prop_id,
                                        const GValue *value,
                                        GParamSpec   *pspec)
{
  MetaWaylandInputDevice *input_device = META_WAYLAND_INPUT_DEVICE (object);
  MetaWaylandInputDevicePrivate *priv =
    meta_wayland_input_device_get_instance_private (input_device);

  switch (prop_id)
    {
    case PROP_SEAT:
      priv->seat = g_value_get_pointer (value);
      break;

    default:
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
    }
}

static void
meta_wayland_input_device_get_property (GObject    *object,
                                        guint       prop_id,
                                        GValue     *value,
                                        GParamSpec *pspec)
{
  MetaWaylandInputDevice *input_device = META_WAYLAND_INPUT_DEVICE (object);
  MetaWaylandInputDevicePrivate *priv =
    meta_wayland_input_device_get_instance_private (input_device);

  switch (prop_id)
    {
    case PROP_SEAT:
      g_value_set_pointer (value, priv->seat);
      break;

    default:
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
    }
}

static void
meta_wayland_input_device_init (MetaWaylandInputDevice *input_device)
{
}

static void
meta_wayland_input_device_class_init (MetaWaylandInputDeviceClass *klass)
{
  GObjectClass *object_class = G_OBJECT_CLASS (klass);
  GParamSpec *pspec;

  object_class->set_property = meta_wayland_input_device_set_property;
  object_class->get_property = meta_wayland_input_device_get_property;

  pspec = g_param_spec_pointer ("seat",
                                "MetaWaylandSeat",
                                "The seat",
                                G_PARAM_READWRITE |
                                G_PARAM_STATIC_STRINGS |
                                G_PARAM_CONSTRUCT_ONLY);
  g_object_class_install_property (object_class, PROP_SEAT, pspec);
}