]> Pileus Git - ~andy/gtk/blob - gtk/gtkscrollbar.c
call the base class init fucntions from all parent types upon class
[~andy/gtk] / gtk / gtkscrollbar.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 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 #include "gtkscrollbar.h"
20
21 static void gtk_scrollbar_class_init (GtkScrollbarClass *klass);
22 static void gtk_scrollbar_init       (GtkScrollbar      *scrollbar);
23
24 guint
25 gtk_scrollbar_get_type (void)
26 {
27   static guint scrollbar_type = 0;
28
29   if (!scrollbar_type)
30     {
31       GtkTypeInfo scrollbar_info =
32       {
33         "GtkScrollbar",
34         sizeof (GtkScrollbar),
35         sizeof (GtkScrollbarClass),
36         (GtkClassInitFunc) gtk_scrollbar_class_init,
37         (GtkObjectInitFunc) gtk_scrollbar_init,
38         /* reversed_1 */ NULL,
39         /* reversed_2 */ NULL,
40         (GtkClassInitFunc) NULL,
41       };
42
43       scrollbar_type = gtk_type_unique (gtk_range_get_type (), &scrollbar_info);
44     }
45
46   return scrollbar_type;
47 }
48
49 static void
50 gtk_scrollbar_class_init (GtkScrollbarClass *class)
51 {
52 }
53
54 static void
55 gtk_scrollbar_init (GtkScrollbar *scrollbar)
56 {
57 }