diff options
author | nobody <nobody@localhost> | 2001-02-22 03:34:27 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2001-02-22 03:34:27 +0800 |
commit | 19d71e1c5029e8c4048d9b8ace72affc28f2d04f (patch) | |
tree | f1ea97702781d0b26bb97bd28213ed46368377b6 /widgets/menus/gal-view.h | |
parent | 535fea211a9a35f5b04017124a71764daf926723 (diff) | |
download | gsoc2013-evolution-GNUMERIC_0_63.tar gsoc2013-evolution-GNUMERIC_0_63.tar.gz gsoc2013-evolution-GNUMERIC_0_63.tar.bz2 gsoc2013-evolution-GNUMERIC_0_63.tar.lz gsoc2013-evolution-GNUMERIC_0_63.tar.xz gsoc2013-evolution-GNUMERIC_0_63.tar.zst gsoc2013-evolution-GNUMERIC_0_63.zip |
This commit was manufactured by cvs2svn to create tagGNUMERIC_0_63
'GNUMERIC_0_63'.
svn path=/tags/GNUMERIC_0_63/; revision=8333
Diffstat (limited to 'widgets/menus/gal-view.h')
-rw-r--r-- | widgets/menus/gal-view.h | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/widgets/menus/gal-view.h b/widgets/menus/gal-view.h deleted file mode 100644 index 5cc7cc679c..0000000000 --- a/widgets/menus/gal-view.h +++ /dev/null @@ -1,74 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -#ifndef _GAL_VIEW_H_ -#define _GAL_VIEW_H_ - -#include <gtk/gtkobject.h> -#include <gnome-xml/tree.h> - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -#define GAL_VIEW_TYPE (gal_view_get_type ()) -#define GAL_VIEW(o) (GTK_CHECK_CAST ((o), GAL_VIEW_TYPE, GalView)) -#define GAL_VIEW_CLASS(k) (GTK_CHECK_CLASS_CAST((k), GAL_VIEW_TYPE, GalViewClass)) -#define GAL_IS_VIEW(o) (GTK_CHECK_TYPE ((o), GAL_VIEW_TYPE)) -#define GAL_IS_VIEW_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), GAL_VIEW_TYPE)) - -typedef struct { - GtkObject base; -} GalView; - -typedef struct { - GtkObjectClass parent_class; - - /* - * Virtual methods - */ - void (*edit) (GalView *view); - void (*load) (GalView *view, - const char *filename); - void (*save) (GalView *view, - const char *filename); - const char *(*get_title) (GalView *view); - void (*set_title) (GalView *view, - const char *title); - const char *(*get_type_code) (GalView *view); - GalView *(*clone) (GalView *view); - - /* Signals */ - void (*changed) (GalView *view); -} GalViewClass; - -/* Standard functions */ -GtkType gal_view_get_type (void); - -/* Open an editor dialog for this view. */ -void gal_view_edit (GalView *view); - -/* xml load and save functions */ -void gal_view_load (GalView *view, - const char *filename); -void gal_view_save (GalView *view, - const char *filename); - -/* Title functions */ -const char *gal_view_get_title (GalView *view); -void gal_view_set_title (GalView *view, - const char *title); - -/* View type. */ -const char *gal_view_get_type_code (GalView *view); - -/* Cloning the view */ -GalView *gal_view_clone (GalView *view); - -/* Changed signal */ -void gal_view_changed (GalView *view); - - -#ifdef __cplusplus -} -#endif /* __cplusplus */ - -#endif /* _GAL_VIEW_H_ */ |