2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2002-02-26 13:42:14 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2003-03-16 19:14:29 +08:00
|
|
|
* gimpvectorstreeview.h
|
|
|
|
* Copyright (C) 2001-2003 Michael Natterer <mitch@gimp.org>
|
2002-02-26 13:42:14 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2003-03-16 19:14:29 +08:00
|
|
|
#ifndef __GIMP_VECTORS_TREE_VIEW_H__
|
|
|
|
#define __GIMP_VECTORS_TREE_VIEW_H__
|
2002-02-26 13:42:14 +08:00
|
|
|
|
|
|
|
|
2003-03-16 19:14:29 +08:00
|
|
|
#include "gimpitemtreeview.h"
|
2002-02-26 13:42:14 +08:00
|
|
|
|
|
|
|
|
2003-03-16 19:14:29 +08:00
|
|
|
#define GIMP_TYPE_VECTORS_TREE_VIEW (gimp_vectors_tree_view_get_type ())
|
|
|
|
#define GIMP_VECTORS_TREE_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_VECTORS_TREE_VIEW, GimpVectorsTreeView))
|
|
|
|
#define GIMP_VECTORS_TREE_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_VECTORS_TREE_VIEW, GimpVectorsTreeViewClass))
|
|
|
|
#define GIMP_IS_VECTORS_TREE_VIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_VECTORS_TREE_VIEW))
|
|
|
|
#define GIMP_IS_VECTORS_TREE_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_VECTORS_TREE_VIEW))
|
|
|
|
#define GIMP_VECTORS_TREE_VIEW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_VECTORS_TREE_VIEW, GimpVectorsTreeViewClass))
|
2002-02-26 13:42:14 +08:00
|
|
|
|
|
|
|
|
2003-03-16 19:14:29 +08:00
|
|
|
typedef struct _GimpVectorsTreeViewClass GimpVectorsTreeViewClass;
|
2002-02-26 13:42:14 +08:00
|
|
|
|
2003-03-16 19:14:29 +08:00
|
|
|
struct _GimpVectorsTreeView
|
2002-02-26 13:42:14 +08:00
|
|
|
{
|
2004-05-13 02:36:33 +08:00
|
|
|
GimpItemTreeView parent_instance;
|
2002-02-26 22:40:30 +08:00
|
|
|
|
2004-05-13 02:36:33 +08:00
|
|
|
GtkWidget *toselection_button;
|
|
|
|
GtkWidget *tovectors_button;
|
|
|
|
GtkWidget *stroke_button;
|
2002-02-26 13:42:14 +08:00
|
|
|
};
|
|
|
|
|
2003-03-16 19:14:29 +08:00
|
|
|
struct _GimpVectorsTreeViewClass
|
2002-02-26 13:42:14 +08:00
|
|
|
{
|
2003-03-16 19:14:29 +08:00
|
|
|
GimpItemTreeViewClass parent_class;
|
2002-02-26 13:42:14 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-03-16 19:14:29 +08:00
|
|
|
GType gimp_vectors_tree_view_get_type (void) G_GNUC_CONST;
|
2002-02-26 13:42:14 +08:00
|
|
|
|
|
|
|
|
2003-03-16 19:14:29 +08:00
|
|
|
#endif /* __GIMP_VECTORS_TREE_VIEW_H__ */
|