]> Pileus Git - ~andy/gtk/blob - gdk/gdkrectangle.c
Update to use the new g_boxed_type_register_static API.
[~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 Lesser 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  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser 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-2000.  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   gint dest_x, dest_y;
54   gint dest_w, dest_h;
55   gint return_val;
56
57   g_return_val_if_fail (src1 != NULL, FALSE);
58   g_return_val_if_fail (src2 != NULL, FALSE);
59   g_return_val_if_fail (dest != NULL, FALSE);
60
61   return_val = FALSE;
62
63   dest_x = MAX (src1->x, src2->x);
64   dest_y = MAX (src1->y, src2->y);
65   dest_w = MIN (src1->x + src1->width, src2->x + src2->width) - dest_x;
66   dest_h = MIN (src1->y + src1->height, src2->y + src2->height) - dest_y;
67
68   if (dest_w > 0 && dest_h > 0)
69     {
70       dest->x = dest_x;
71       dest->y = dest_y;
72       dest->width = dest_w;
73       dest->height = dest_h;
74       return_val = TRUE;
75     }
76   else
77     {
78       dest->width = 0;
79       dest->height = 0;
80     }
81
82   return return_val;
83 }
84
85 static GdkRectangle *
86 gdk_rectangle_copy (const GdkRectangle *rectangle)
87 {
88   GdkRectangle *result = g_new (GdkRectangle, 1);
89   *result = *rectangle;
90
91   return result;
92 }
93
94 GType
95 gdk_rectangle_get_type (void)
96 {
97   static GType our_type = 0;
98   
99   if (our_type == 0)
100     our_type = g_boxed_type_register_static ("GdkRectangle",
101                                              (GBoxedCopyFunc)gdk_rectangle_copy,
102                                              (GBoxedFreeFunc)g_free);
103   return our_type;
104 }
105