2014-10-06 10:50:15 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
/*
|
|
|
|
* meta-feedback-actor-private.h: Actor for painting user interaction feedback
|
|
|
|
*
|
|
|
|
* Copyright 2014 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
|
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Author: Carlos Garnacho <carlosg@gnome.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_FEEDBACK_ACTOR_PRIVATE_H
|
|
|
|
#define META_FEEDBACK_ACTOR_PRIVATE_H
|
|
|
|
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "clutter/clutter.h"
|
2022-05-27 16:17:13 -04:00
|
|
|
#include "meta/types.h"
|
2014-10-06 10:50:15 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* MetaFeedbackActor:
|
|
|
|
*
|
|
|
|
* This class handles the rendering of user interaction feedback
|
|
|
|
*/
|
|
|
|
|
2018-10-31 06:47:17 -04:00
|
|
|
#define META_TYPE_FEEDBACK_ACTOR (meta_feedback_actor_get_type ())
|
|
|
|
G_DECLARE_DERIVABLE_TYPE (MetaFeedbackActor,
|
|
|
|
meta_feedback_actor,
|
|
|
|
META, FEEDBACK_ACTOR,
|
|
|
|
ClutterActor)
|
2014-10-06 10:50:15 -04:00
|
|
|
|
|
|
|
|
|
|
|
struct _MetaFeedbackActorClass
|
|
|
|
{
|
|
|
|
/*< private >*/
|
|
|
|
ClutterActorClass parent_class;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2022-05-27 16:17:13 -04:00
|
|
|
ClutterActor * meta_feedback_actor_new (MetaCompositor *compositor,
|
|
|
|
float anchor_x,
|
|
|
|
float anchor_y);
|
2014-10-06 10:50:15 -04:00
|
|
|
|
|
|
|
void meta_feedback_actor_set_anchor (MetaFeedbackActor *actor,
|
2019-08-26 07:14:18 -04:00
|
|
|
float anchor_x,
|
|
|
|
float anchor_y);
|
2014-10-06 10:50:15 -04:00
|
|
|
void meta_feedback_actor_get_anchor (MetaFeedbackActor *actor,
|
2019-08-26 07:14:18 -04:00
|
|
|
float *anchor_x,
|
|
|
|
float *anchor_y);
|
2014-10-06 10:50:15 -04:00
|
|
|
|
|
|
|
void meta_feedback_actor_set_position (MetaFeedbackActor *self,
|
2019-08-26 07:14:18 -04:00
|
|
|
float x,
|
|
|
|
float y);
|
2014-10-06 10:50:15 -04:00
|
|
|
|
|
|
|
void meta_feedback_actor_update (MetaFeedbackActor *self,
|
|
|
|
const ClutterEvent *event);
|
|
|
|
|
2021-01-22 08:14:50 -05:00
|
|
|
void meta_feedback_actor_set_geometry_scale (MetaFeedbackActor *self,
|
|
|
|
int geometry_scale);
|
|
|
|
|
|
|
|
int meta_feedback_actor_get_geometry_scale (MetaFeedbackActor *self);
|
|
|
|
|
2014-10-06 10:50:15 -04:00
|
|
|
#endif /* META_FEEDBACK_ACTOR_PRIVATE_H */
|