2015-06-17 00:10:52 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 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
|
2023-08-07 05:50:23 -04:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2015-06-17 00:10:52 -04:00
|
|
|
*
|
|
|
|
* Written by:
|
|
|
|
* Jonas Ådahl <jadahl@gmail.com>
|
|
|
|
*/
|
|
|
|
|
2023-07-21 09:37:20 -04:00
|
|
|
#pragma once
|
2015-06-17 00:10:52 -04:00
|
|
|
|
|
|
|
#include <glib-object.h>
|
2018-07-10 04:36:24 -04:00
|
|
|
|
|
|
|
#include "clutter/clutter.h"
|
2015-06-17 00:10:52 -04:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define META_TYPE_POINTER_CONSTRAINT (meta_pointer_constraint_get_type ())
|
2020-07-08 12:17:13 -04:00
|
|
|
G_DECLARE_FINAL_TYPE (MetaPointerConstraint, meta_pointer_constraint,
|
|
|
|
META, POINTER_CONSTRAINT, GObject);
|
|
|
|
|
2023-11-17 12:15:27 -05:00
|
|
|
MetaPointerConstraint * meta_pointer_constraint_new (const MtkRegion *region,
|
|
|
|
graphene_point_t origin,
|
|
|
|
double min_edge_distance);
|
2022-06-13 04:23:40 -04:00
|
|
|
|
2023-11-17 12:15:27 -05:00
|
|
|
MtkRegion * meta_pointer_constraint_get_region (MetaPointerConstraint *constraint,
|
|
|
|
graphene_point_t *origin);
|
2020-07-08 12:17:13 -04:00
|
|
|
|
2022-06-13 04:23:40 -04:00
|
|
|
double meta_pointer_constraint_get_min_edge_distance (MetaPointerConstraint *constraint);
|
|
|
|
|
2020-07-08 12:17:13 -04:00
|
|
|
#define META_TYPE_POINTER_CONSTRAINT_IMPL (meta_pointer_constraint_impl_get_type ())
|
|
|
|
G_DECLARE_DERIVABLE_TYPE (MetaPointerConstraintImpl, meta_pointer_constraint_impl,
|
|
|
|
META, POINTER_CONSTRAINT_IMPL, GObject);
|
2015-06-17 00:10:52 -04:00
|
|
|
|
2018-10-19 03:15:54 -04:00
|
|
|
/**
|
2020-07-08 12:17:13 -04:00
|
|
|
* MetaPointerConstraintImplClass:
|
2018-10-19 03:15:54 -04:00
|
|
|
* @constrain: the virtual function pointer for
|
2020-07-08 12:17:13 -04:00
|
|
|
* meta_pointer_constraint_impl_constrain().
|
2018-10-19 03:15:54 -04:00
|
|
|
*/
|
2020-07-08 12:17:13 -04:00
|
|
|
struct _MetaPointerConstraintImplClass
|
2015-06-17 00:10:52 -04:00
|
|
|
{
|
|
|
|
GObjectClass parent_class;
|
|
|
|
|
2020-07-08 12:17:13 -04:00
|
|
|
void (* constrain) (MetaPointerConstraintImpl *constraint_impl,
|
|
|
|
ClutterInputDevice *device,
|
|
|
|
uint32_t time,
|
|
|
|
float prev_x,
|
|
|
|
float prev_y,
|
|
|
|
float *x,
|
|
|
|
float *y);
|
|
|
|
void (* ensure_constrained) (MetaPointerConstraintImpl *constraint_impl,
|
|
|
|
ClutterInputDevice *device);
|
2015-06-17 00:10:52 -04:00
|
|
|
};
|
|
|
|
|
2020-07-08 12:17:13 -04:00
|
|
|
void meta_pointer_constraint_impl_constrain (MetaPointerConstraintImpl *constraint_impl,
|
|
|
|
ClutterInputDevice *device,
|
|
|
|
uint32_t time,
|
|
|
|
float prev_x,
|
|
|
|
float prev_y,
|
|
|
|
float *x,
|
|
|
|
float *y);
|
|
|
|
void meta_pointer_constraint_impl_ensure_constrained (MetaPointerConstraintImpl *constraint_impl,
|
|
|
|
ClutterInputDevice *device);
|
2015-06-17 00:10:52 -04:00
|
|
|
|
|
|
|
G_END_DECLS
|