
2001-02-17 Christopher James Lahey <clahey@ximian.com> From a patch submitted by Murray Cumming <Murray.Cumming@mybau.com> * gal-define-views-model.h, gal-view-collection.h, gal-view-etable.h, gal-view-factory-etable.h, gal-view-factory.h, gal-view.h: Added GNOME_DECLS. svn path=/trunk/; revision=8266
75 lines
2.0 KiB
C
75 lines
2.0 KiB
C
/* -*- 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_ */
|