mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-08 17:50:10 +00:00
062902c003
Add a few pure, const and malloc annotations. These were suggested by the gcc -Wsuggest-attribute option.
93 lines
3.4 KiB
C
93 lines
3.4 KiB
C
/*
|
|
* Copyright © 2023 Red Hat, Inc.
|
|
*
|
|
* This library 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 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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 library. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Authors: Matthias Clasen <mclasen@redhat.com>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#if !defined (__GSK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
|
#error "Only <gsk/gsk.h> can be included directly."
|
|
#endif
|
|
|
|
|
|
#include <gsk/gsktypes.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GSK_TYPE_PATH_POINT (gsk_path_point_get_type ())
|
|
|
|
typedef struct _GskPathPoint GskPathPoint;
|
|
|
|
G_GNUC_EXTENSION struct _GskPathPoint
|
|
{
|
|
/*< private >*/
|
|
union {
|
|
struct {
|
|
gsize contour;
|
|
gsize idx;
|
|
float t;
|
|
};
|
|
gpointer padding[8];
|
|
graphene_vec4_t alignment;
|
|
};
|
|
};
|
|
|
|
GDK_AVAILABLE_IN_4_14
|
|
GType gsk_path_point_get_type (void) G_GNUC_CONST;
|
|
|
|
GDK_AVAILABLE_IN_4_14
|
|
GskPathPoint * gsk_path_point_copy (GskPathPoint *point);
|
|
|
|
GDK_AVAILABLE_IN_4_14
|
|
void gsk_path_point_free (GskPathPoint *point);
|
|
|
|
GDK_AVAILABLE_IN_4_14
|
|
gboolean gsk_path_point_equal (const GskPathPoint *point1,
|
|
const GskPathPoint *point2) G_GNUC_PURE;
|
|
|
|
GDK_AVAILABLE_IN_4_14
|
|
int gsk_path_point_compare (const GskPathPoint *point1,
|
|
const GskPathPoint *point2) G_GNUC_PURE;
|
|
|
|
GDK_AVAILABLE_IN_4_14
|
|
void gsk_path_point_get_position (const GskPathPoint *point,
|
|
GskPath *path,
|
|
graphene_point_t *position);
|
|
|
|
GDK_AVAILABLE_IN_4_14
|
|
void gsk_path_point_get_tangent (const GskPathPoint *point,
|
|
GskPath *path,
|
|
GskPathDirection direction,
|
|
graphene_vec2_t *tangent);
|
|
|
|
GDK_AVAILABLE_IN_4_14
|
|
float gsk_path_point_get_rotation (const GskPathPoint *point,
|
|
GskPath *path,
|
|
GskPathDirection direction);
|
|
|
|
GDK_AVAILABLE_IN_4_14
|
|
float gsk_path_point_get_curvature (const GskPathPoint *point,
|
|
GskPath *path,
|
|
GskPathDirection direction,
|
|
graphene_point_t *center);
|
|
|
|
GDK_AVAILABLE_IN_4_14
|
|
float gsk_path_point_get_distance (const GskPathPoint *point,
|
|
GskPathMeasure *measure);
|
|
|
|
G_END_DECLS
|