~ubuntu-branches/ubuntu/feisty/gnumeric/feisty-security

« back to all changes in this revision

Viewing changes to src/gnm-graph-window.h

  • Committer: Bazaar Package Importer
  • Author(s): Gauvain Pocentek
  • Date: 2006-11-14 14:02:03 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20061114140203-iv3j2aii3vch6isl
Tags: 1.7.2-1ubuntu1
* Merge with debian experimental:
  - debian/control, debian/*-gtk-*, debian/rules,
    debian/shlibs.local: Xubuntu changes for
    gtk/gnome multibuild.
  - run intltool-update in po*
  - Build Depend on intltool

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef GNM_GRAPH_WINDOW_H
 
2
#define GNM_GRAPH_WINDOW_H
 
3
 
 
4
#include <gtk/gtkwidget.h>
 
5
#include <goffice/graph/gog-graph.h>
 
6
 
 
7
#define GNM_TYPE_GRAPH_WINDOW             (gnm_graph_window_get_type ())
 
8
#define GNM_GRAPH_WINDOW(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), GNM_TYPE_GRAPH_WINDOW, GnmGraphWindow))
 
9
#define GNM_GRAPH_WINDOW_CLASS(vtable)    (G_TYPE_CHECK_CLASS_CAST ((vtable), GNM_TYPE_GRAPH_WINDOW, GnmGraphWindowClass))
 
10
#define IS_GNM_GRAPH_WINDOW(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GNM_TYPE_GRAPH_WINDOW))
 
11
#define IS_GNM_GRAPH_WINDOW_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), GNM_TYPE_GRAPH_WINDOW))
 
12
#define GNM_GRAPH_WINDOW_GET_CLASS(inst)  (G_TYPE_INSTANCE_GET_CLASS ((inst), GNM_TYPE_GRAPH_WINDOW, GnmGraphWindowClass))
 
13
 
 
14
typedef struct _GnmGraphWindow      GnmGraphWindow;
 
15
typedef struct _GnmGraphWindowClass GnmGraphWindowClass;
 
16
 
 
17
GType      gnm_graph_window_get_type (void);
 
18
 
 
19
GtkWidget *gnm_graph_window_new (GogGraph *graph,
 
20
                                 double    graph_width,
 
21
                                 double    graph_height);
 
22
 
 
23
#endif /* GNM_GRAPH_WINDOW_H */