Revision 15509,
1.5 KB
checked in by ghudson, 24 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r15508,
which included commits to RCS files with non-trunk default branches.
|
Line | |
---|
1 | /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ |
---|
2 | /** |
---|
3 | * bonobo-ui-toolbar-separator-item.h |
---|
4 | * |
---|
5 | * Author: |
---|
6 | * Ettore Perazzoli |
---|
7 | * |
---|
8 | * Copyright (C) 2000 Helix Code, Inc. |
---|
9 | */ |
---|
10 | |
---|
11 | #ifndef _BONOBO_UI_TOOLBAR_SEPARATOR_ITEM_H_ |
---|
12 | #define _BONOBO_UI_TOOLBAR_SEPARATOR_ITEM_H_ |
---|
13 | |
---|
14 | #include <libgnome/gnome-defs.h> |
---|
15 | #include "bonobo-ui-toolbar-item.h" |
---|
16 | |
---|
17 | BEGIN_GNOME_DECLS |
---|
18 | |
---|
19 | #define BONOBO_TYPE_UI_TOOLBAR_SEPARATOR_ITEM (bonobo_ui_toolbar_separator_item_get_type ()) |
---|
20 | #define BONOBO_UI_TOOLBAR_SEPARATOR_ITEM(obj) (GTK_CHECK_CAST ((obj), BONOBO_TYPE_UI_TOOLBAR_SEPARATOR_ITEM, BonoboUIToolbarSeparatorItem)) |
---|
21 | #define BONOBO_UI_TOOLBAR_SEPARATOR_ITEM_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), BONOBO_TYPE_UI_TOOLBAR_SEPARATOR_ITEM, BonoboUIToolbarSeparatorItemClass)) |
---|
22 | #define BONOBO_IS_UI_TOOLBAR_SEPARATOR_ITEM(obj) (GTK_CHECK_TYPE ((obj), BONOBO_TYPE_UI_TOOLBAR_SEPARATOR_ITEM)) |
---|
23 | #define BONOBO_IS_UI_TOOLBAR_SEPARATOR_ITEM_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), BONOBO_TYPE_UI_TOOLBAR_SEPARATOR_ITEM)) |
---|
24 | |
---|
25 | |
---|
26 | typedef struct _BonoboUIToolbarSeparatorItemPrivate BonoboUIToolbarSeparatorItemPrivate; |
---|
27 | |
---|
28 | typedef struct { |
---|
29 | BonoboUIToolbarItem parent; |
---|
30 | |
---|
31 | BonoboUIToolbarSeparatorItemPrivate *priv; |
---|
32 | } BonoboUIToolbarSeparatorItem; |
---|
33 | |
---|
34 | typedef struct { |
---|
35 | BonoboUIToolbarItemClass parent_class; |
---|
36 | } BonoboUIToolbarSeparatorItemClass; |
---|
37 | |
---|
38 | |
---|
39 | GtkType bonobo_ui_toolbar_separator_item_get_type (void); |
---|
40 | GtkWidget *bonobo_ui_toolbar_separator_item_new (void); |
---|
41 | |
---|
42 | END_GNOME_DECLS |
---|
43 | |
---|
44 | #endif /* _BONOBO_UI_TOOLBAR_SEPARATOR_ITEM_H_ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.