Just some CVS ignore stuff.
[dia.git] / app / gtkhwrapbox.h
blobcb894836dbc11f88ae360595938c428de00ab7bf
1 /* GTK - The GIMP Toolkit
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * GtkHWrapBox: Horizontal wrapping box widget
5 * Copyright (C) 1999 Tim Janik
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
17 * You should have received a copy of the GNU Library General Public
18 * License along with this library; if not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
23 #ifndef __GTK_HWRAP_BOX_H__
24 #define __GTK_HWRAP_BOX_H__
27 #include "gtkwrapbox.h"
29 G_BEGIN_DECLS
32 /* --- type macros --- */
33 #define GTK_TYPE_HWRAP_BOX (gtk_hwrap_box_get_type ())
34 #define GTK_HWRAP_BOX(obj) (GTK_CHECK_CAST ((obj), GTK_TYPE_HWRAP_BOX, GtkHWrapBox))
35 #define GTK_HWRAP_BOX_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_HWRAP_BOX, GtkHWrapBoxClass))
36 #define GTK_IS_HWRAP_BOX(obj) (GTK_CHECK_TYPE ((obj), GTK_TYPE_HWRAP_BOX))
37 #define GTK_IS_HWRAP_BOX_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_HWRAP_BOX))
38 #define GTK_HWRAP_BOX_GET_CLASS(obj) (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_HWRAP_BOX, GtkHWrapBoxClass))
41 /* --- typedefs --- */
42 typedef struct _GtkHWrapBox GtkHWrapBox;
43 typedef struct _GtkHWrapBoxClass GtkHWrapBoxClass;
46 /* --- GtkHWrapBox --- */
47 struct _GtkHWrapBox
49 GtkWrapBox parent_widget;
51 /*<h2v-off>*/
52 guint max_child_width;
53 guint max_child_height;
54 /*<h2v-on>*/
57 struct _GtkHWrapBoxClass
59 GtkWrapBoxClass parent_class;
63 /* --- prototypes --- */
64 GtkType gtk_hwrap_box_get_type (void) G_GNUC_CONST;
65 GtkWidget * gtk_hwrap_box_new (gboolean homogeneous);
68 G_END_DECLS
70 #endif /* __GTK_HWRAP_BOX_H__ */