]> Pileus Git - ~andy/gtk/blob - gtk/gtkborder.c
stylecontext: Do invalidation on first resize container
[~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, see <http://www.gnu.org/licenses/>.
16  */
17
18 /*
19  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
20  * file for a list of people on the GTK+ Team.  See the ChangeLog
21  * files for a list of changes.  These files are distributed with
22  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
23  */
24
25 #include "config.h"
26
27 #include "gtkborder.h"
28
29 /**
30  * gtk_border_new:
31  *
32  * Allocates a new #GtkBorder structure and initializes its elements to zero.
33  *
34  * Returns: a newly allocated #GtkBorder. Free with gtk_border_free()
35  *
36  * Since: 2.14
37  */
38 GtkBorder *
39 gtk_border_new (void)
40 {
41   return g_slice_new0 (GtkBorder);
42 }
43
44 /**
45  * gtk_border_copy:
46  * @border_: a #GtkBorder
47  *
48  * Copies a #GtkBorder structure.
49  *
50  * Returns: a copy of @border_.
51  */
52 GtkBorder *
53 gtk_border_copy (const GtkBorder *border_)
54 {
55   g_return_val_if_fail (border_ != NULL, NULL);
56
57   return g_slice_dup (GtkBorder, border_);
58 }
59
60 /**
61  * gtk_border_free:
62  * @border_: a #GtkBorder
63  *
64  * Frees a #GtkBorder structure.
65  */
66 void
67 gtk_border_free (GtkBorder *border_)
68 {
69   g_slice_free (GtkBorder, border_);
70 }
71
72 G_DEFINE_BOXED_TYPE (GtkBorder, gtk_border,
73                      gtk_border_copy,
74                      gtk_border_free)