2015-07-03 07:01:58 +00: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 09:50:23 +00:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2015-07-03 07:01:58 +00:00
|
|
|
*
|
|
|
|
* Written by:
|
|
|
|
* Jonas Ådahl <jadahl@gmail.com>
|
|
|
|
*/
|
|
|
|
|
2023-07-21 13:37:20 +00:00
|
|
|
#pragma once
|
2015-07-03 07:01:58 +00:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
META_BORDER_MOTION_DIRECTION_POSITIVE_X = 1 << 0,
|
|
|
|
META_BORDER_MOTION_DIRECTION_POSITIVE_Y = 1 << 1,
|
|
|
|
META_BORDER_MOTION_DIRECTION_NEGATIVE_X = 1 << 2,
|
|
|
|
META_BORDER_MOTION_DIRECTION_NEGATIVE_Y = 1 << 3,
|
|
|
|
} MetaBorderMotionDirection;
|
|
|
|
|
|
|
|
typedef struct _MetaVector2
|
|
|
|
{
|
|
|
|
float x;
|
|
|
|
float y;
|
|
|
|
} MetaVector2;
|
|
|
|
|
|
|
|
typedef struct _MetaLine2
|
|
|
|
{
|
|
|
|
MetaVector2 a;
|
|
|
|
MetaVector2 b;
|
|
|
|
} MetaLine2;
|
|
|
|
|
|
|
|
typedef struct _MetaBorder
|
|
|
|
{
|
|
|
|
MetaLine2 line;
|
|
|
|
MetaBorderMotionDirection blocking_directions;
|
|
|
|
} MetaBorder;
|
|
|
|
|
|
|
|
static inline MetaVector2
|
|
|
|
meta_vector2_subtract (const MetaVector2 a,
|
|
|
|
const MetaVector2 b)
|
|
|
|
{
|
|
|
|
return (MetaVector2) {
|
|
|
|
.x = a.x - b.x,
|
|
|
|
.y = a.y - b.y,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
meta_line2_intersects_with (const MetaLine2 *line1,
|
|
|
|
const MetaLine2 *line2,
|
|
|
|
MetaVector2 *intersection);
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
meta_border_is_horizontal (MetaBorder *border);
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
meta_border_is_blocking_directions (MetaBorder *border,
|
|
|
|
MetaBorderMotionDirection directions);
|
|
|
|
|
|
|
|
unsigned int
|
|
|
|
meta_border_get_allows_directions (MetaBorder *border);
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_border_set_allows_directions (MetaBorder *border, unsigned int directions);
|