]> Pileus Git - ~andy/gtk/blob - gtk/gtkborder.c
Some header cleanups
[~andy/gtk] / gtk / gtkborder.c
1 /* GTK - The GIMP Toolkit
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 "config.h"
28
29 #include "gtkborder.h"
30
31 /**
32  * gtk_border_new:
33  *
34  * Allocates a new #GtkBorder structure and initializes its elements to zero.
35  *
36  * Returns: a newly allocated #GtkBorder. Free with gtk_border_free()
37  *
38  * Since: 2.14
39  */
40 GtkBorder *
41 gtk_border_new (void)
42 {
43   return g_slice_new0 (GtkBorder);
44 }
45
46 /**
47  * gtk_border_copy:
48  * @border_: a #GtkBorder
49  *
50  * Copies a #GtkBorder structure.
51  *
52  * Returns: a copy of @border_.
53  */
54 GtkBorder *
55 gtk_border_copy (const GtkBorder *border_)
56 {
57   g_return_val_if_fail (border_ != NULL, NULL);
58
59   return g_slice_dup (GtkBorder, border_);
60 }
61
62 /**
63  * gtk_border_free:
64  * @border_: a #GtkBorder
65  *
66  * Frees a #GtkBorder structure.
67  */
68 void
69 gtk_border_free (GtkBorder *border_)
70 {
71   g_slice_free (GtkBorder, border_);
72 }
73
74 G_DEFINE_BOXED_TYPE (GtkBorder, gtk_border,
75                      gtk_border_copy,
76                      gtk_border_free)