]> Pileus Git - ~andy/gtk/blob - gdk/gdkrectangle.c
Merge no-flicker branch into HEAD
[~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
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-1999.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #include <gdk/gdk.h>
28
29 void
30 gdk_rectangle_union (GdkRectangle *src1,
31                      GdkRectangle *src2,
32                      GdkRectangle *dest)
33 {
34   gint dest_x, dest_y;
35   
36   g_return_if_fail (src1 != NULL);
37   g_return_if_fail (src2 != NULL);
38   g_return_if_fail (dest != NULL);
39
40   dest_x = MIN (src1->x, src2->x);
41   dest_y = MIN (src1->y, src2->y);
42   dest->width = MAX (src1->x + src1->width, src2->x + src2->width) - dest_x;
43   dest->height = MAX (src1->y + src1->height, src2->y + src2->height) - dest_y;
44   dest->x = dest_x;
45   dest->y = dest_y;
46 }
47
48 gboolean
49 gdk_rectangle_intersect (GdkRectangle *src1,
50                          GdkRectangle *src2,
51                          GdkRectangle *dest)
52 {
53   GdkRectangle *temp;
54   gint src1_x2, src1_y2;
55   gint src2_x2, src2_y2;
56   gint return_val;
57
58   g_return_val_if_fail (src1 != NULL, FALSE);
59   g_return_val_if_fail (src2 != NULL, FALSE);
60   g_return_val_if_fail (dest != NULL, FALSE);
61
62   return_val = FALSE;
63
64   if (src2->x < src1->x)
65     {
66       temp = src1;
67       src1 = src2;
68       src2 = temp;
69     }
70   src1_x2 = src1->x + src1->width;
71   src2_x2 = src2->x + src2->width;
72
73   if (src2->x < src1_x2)
74     {
75       dest->x = src2->x;
76
77       if (src1_x2 < src2_x2)
78         dest->width = src1_x2 - dest->x;
79       else
80         dest->width = src2_x2 - dest->x;
81
82       if (src2->y < src1->y)
83         {
84           temp = src1;
85           src1 = src2;
86           src2 = temp;
87         }
88       src1_y2 = src1->y + src1->height;
89       src2_y2 = src2->y + src2->height;
90
91       if (src2->y < src1_y2)
92         {
93           return_val = TRUE;
94
95           dest->y = src2->y;
96
97           if (src1_y2 < src2_y2)
98             dest->height = src1_y2 - dest->y;
99           else
100             dest->height = src2_y2 - dest->y;
101
102           if (dest->height == 0)
103             return_val = FALSE;
104           if (dest->width == 0)
105             return_val = FALSE;
106         }
107     }
108
109   if (!return_val)
110     {
111       dest->width = 0;
112       dest->height = 0;
113     }
114
115   return return_val;
116 }