blob: 4795c6d3aa4881fefc2f678a1d0ceb91e8177ac0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* gal-view-factory-treeview.c: A View Factory
*
* Authors:
* Chris Toshok <toshok@ximian.com>
*
* (C) 2000, 2001 Ximian, Inc.
*/
#ifndef _GAL_VIEW_FACTORY_TREEVIEW_H_
#define _GAL_VIEW_FACTORY_TREEVIEW_H_
#include <gtk/gtkobject.h>
#include <gal/menus/gal-view-factory.h>
#define GAL_TYPE_VIEW_FACTORY_TREEVIEW (gal_view_factory_treeview_get_type ())
#define GAL_VIEW_FACTORY_TREEVIEW(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GAL_TYPE_VIEW_FACTORY_TREEVIEW, GalViewFactoryTreeView))
#define GAL_VIEW_FACTORY_TREEVIEW_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), GAL_TYPE_VIEW_FACTORY_TREEVIEW, GalViewFactoryTreeViewClass))
#define GAL_IS_VIEW_FACTORY_TREEVIEW(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GAL_TYPE_VIEW_FACTORY_TREEVIEW))
#define GAL_IS_VIEW_FACTORY_TREEVIEW_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GAL_TYPE_VIEW_FACTORY_TREEVIEW))
typedef struct {
GalViewFactory base;
} GalViewFactoryTreeView;
typedef struct {
GalViewFactoryClass parent_class;
} GalViewFactoryTreeViewClass;
/* Standard functions */
GType gal_view_factory_treeview_get_type (void);
GalViewFactory *gal_view_factory_treeview_new (void);
GalViewFactory *gal_view_factory_treeview_construct (GalViewFactoryTreeView *factory);
#endif /* _GAL_VIEW_FACTORY_TREEVIEW_H_ */
|