summaryrefslogtreecommitdiff
path: root/src/compositor/meta-compositor-view.c
blob: 5bc16de3bf00aa0bbfdd998ebbc47e57793c3da2 (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) 2022 Dor Askayo
 *
 * 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:
 *     Dor Askayo <dor.askayo@gmail.com>
 */

#include "config.h"

#include "compositor/meta-compositor-view.h"

enum
{
  PROP_0,

  PROP_STAGE_VIEW,

  N_PROPS
};

static GParamSpec *obj_props[N_PROPS];

typedef struct _MetaCompositorViewPrivate
{
  ClutterStageView *stage_view;
} MetaCompositorViewPrivate;

G_DEFINE_TYPE_WITH_PRIVATE (MetaCompositorView, meta_compositor_view,
                            G_TYPE_OBJECT)

MetaCompositorView *
meta_compositor_view_new (ClutterStageView *stage_view)
{
  g_assert (stage_view);

  return g_object_new (META_TYPE_COMPOSITOR_VIEW,
                       "stage-view", stage_view,
                       NULL);
}

ClutterStageView *
meta_compositor_view_get_stage_view (MetaCompositorView *compositor_view)
{
  MetaCompositorViewPrivate *priv =
    meta_compositor_view_get_instance_private (compositor_view);

  return priv->stage_view;
}

static void
meta_compositor_view_set_property (GObject      *object,
                                   guint         prop_id,
                                   const GValue *value,
                                   GParamSpec   *pspec)
{
  MetaCompositorView *compositor_view = META_COMPOSITOR_VIEW (object);
  MetaCompositorViewPrivate *priv =
    meta_compositor_view_get_instance_private (compositor_view);

  switch (prop_id)
    {
    case PROP_STAGE_VIEW:
      priv->stage_view = g_value_get_object (value);
      break;
    default:
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
    }
}

static void
meta_compositor_view_get_property (GObject    *object,
                                   guint       prop_id,
                                   GValue     *value,
                                   GParamSpec *pspec)
{
  MetaCompositorView *compositor_view = META_COMPOSITOR_VIEW (object);
  MetaCompositorViewPrivate *priv =
    meta_compositor_view_get_instance_private (compositor_view);

  switch (prop_id)
    {
    case PROP_STAGE_VIEW:
      g_value_set_object (value, priv->stage_view);
      break;
    default:
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
    }
}

static void
meta_compositor_view_class_init (MetaCompositorViewClass *klass)
{
  GObjectClass *object_class = G_OBJECT_CLASS (klass);

  object_class->set_property = meta_compositor_view_set_property;
  object_class->get_property = meta_compositor_view_get_property;

  obj_props[PROP_STAGE_VIEW] =
    g_param_spec_object ("stage-view",
                         "stage-view",
                         "ClutterStageView",
                         CLUTTER_TYPE_STAGE_VIEW,
                         G_PARAM_READWRITE |
                         G_PARAM_CONSTRUCT_ONLY |
                         G_PARAM_STATIC_STRINGS);
  g_object_class_install_properties (object_class, N_PROPS, obj_props);
}

static void
meta_compositor_view_init (MetaCompositorView *compositor_view)
{
}