]> Pileus Git - ~andy/gtk/blob - gdk/gdkrectangle.c
Initial revision
[~andy/gtk] / gdk / gdkrectangle.c
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the Free
16  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  */
18 #include "gdk.h"
19
20
21 gint
22 gdk_rectangle_intersect (GdkRectangle *src1,
23                          GdkRectangle *src2,
24                          GdkRectangle *dest)
25 {
26   GdkRectangle *temp;
27   gint src1_x2, src1_y2;
28   gint src2_x2, src2_y2;
29   gint return_val;
30
31   g_return_val_if_fail (src1 != NULL, FALSE);
32   g_return_val_if_fail (src2 != NULL, FALSE);
33   g_return_val_if_fail (dest != NULL, FALSE);
34
35   return_val = FALSE;
36
37   if (src2->x < src1->x)
38     {
39       temp = src1;
40       src1 = src2;
41       src2 = temp;
42     }
43   dest->x = src2->x;
44
45   src1_x2 = src1->x + src1->width;
46   src2_x2 = src2->x + src2->width;
47
48   if (src2->x < src1_x2)
49     {
50       if (src1_x2 < src2_x2)
51         dest->width = src1_x2 - dest->x;
52       else
53         dest->width = src2_x2 - dest->x;
54
55       if (src2->y < src1->y)
56         {
57           temp = src1;
58           src1 = src2;
59           src2 = temp;
60         }
61       dest->y = src2->y;
62
63       src1_y2 = src1->y + src1->height;
64       src2_y2 = src2->y + src2->height;
65
66       if (src2->y < src1_y2)
67         {
68           return_val = TRUE;
69
70           if (src1_y2 < src2_y2)
71             dest->height = src1_y2 - dest->y;
72           else
73             dest->height = src2_y2 - dest->y;
74
75           if (dest->height == 0)
76             return_val = FALSE;
77           if (dest->width == 0)
78             return_val = FALSE;
79         }
80     }
81
82   return return_val;
83 }