diff options
author | Tristan Van Berkom <tvb@src.gnome.org> | 2007-01-23 19:49:04 +0000 |
---|---|---|
committer | Tristan Van Berkom <tvb@src.gnome.org> | 2007-01-23 19:49:04 +0000 |
commit | eb33dd583ddd72a13648958b76f91c988f2907fb (patch) | |
tree | 2dc9f85a792cf9e7873a6526d7da8367948416ec /gladeui/glade-design-view.h | |
parent | 7b9410c2c87bab548f924c24a1addfbce5e0b78b (diff) | |
download | glade-eb33dd583ddd72a13648958b76f91c988f2907fb.tar.gz |
Reorganised package structure, moved a lot of files and directories.
* Reorganised package structure, moved a lot of files
and directories. Modified the Makefile.am in most directories.
* po/POTFILES.in, po/POTFILES.skip: Update for reorganisation.
* configure.ac: Add files to AC_CONFIG_FILES. Change AC_CONFIG_SRCDIR.
svn path=/trunk/; revision=1050
Diffstat (limited to 'gladeui/glade-design-view.h')
-rw-r--r-- | gladeui/glade-design-view.h | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/gladeui/glade-design-view.h b/gladeui/glade-design-view.h new file mode 100644 index 00000000..5f3a4b84 --- /dev/null +++ b/gladeui/glade-design-view.h @@ -0,0 +1,78 @@ +/* + * glade-design-view.h + * + * Copyright (C) 2006 Vincent Geddes + * + * Authors: + * Vincent Geddes <vincent.geddes@gmail.com> + * + * 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 + * MERCHANDESIGN_VIEWILITY 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#ifndef __GLADE_DESIGN_VIEW_H__ +#define __GLADE_DESIGN_VIEW_H__ + +#include "glade.h" +#include "glade-project.h" +#include "glade-design-layout.h" + +#include <gtk/gtkvbox.h> + +G_BEGIN_DECLS + +#define GLADE_TYPE_DESIGN_VIEW (glade_design_view_get_type ()) +#define GLADE_DESIGN_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GLADE_TYPE_DESIGN_VIEW, GladeDesignView)) +#define GLADE_DESIGN_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GLADE_TYPE_DESIGN_VIEW, GladeDesignViewClass)) +#define GLADE_IS_DESIGN_VIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GLADE_TYPE_DESIGN_VIEW)) +#define GLADE_IS_DESIGN_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GLADE_TYPE_DESIGN_VIEW)) +#define GLADE_DESIGN_VIEW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GLADE_TYPE_DESIGN_VIEW, GladeDesignViewClass)) + +typedef struct _GladeDesignView GladeDesignView; +typedef struct _GladeDesignViewPrivate GladeDesignViewPrivate; +typedef struct _GladeDesignViewClass GladeDesignViewClass; + +struct _GladeDesignView +{ + GtkVBox vbox; /* The parent is a box */ + + GladeDesignViewPrivate *priv; +}; + +struct _GladeDesignViewClass +{ + GtkVBoxClass parent_class; + +}; + +LIBGLADEUI_API +GType glade_design_view_get_type (void) G_GNUC_CONST; + +LIBGLADEUI_API +GtkWidget *glade_design_view_new (GladeProject *project); + +LIBGLADEUI_API +GladeProject *glade_design_view_get_project (GladeDesignView *view); + +LIBGLADEUI_API +GladeDesignView *glade_design_view_get_from_project (GladeProject *project); + +LIBGLADEUI_API +GladeDesignLayout *glade_design_view_get_layout (GladeDesignView *view); + + +G_END_DECLS + +#endif /* __GLADE_DESIGN_VIEW_H__ */ |