mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.5 KiB
56 lines
1.5 KiB
/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/**
|
|
* god-anchor.h: MS Office Graphic Object support
|
|
*
|
|
* Author:
|
|
* Michael Meeks (michael@ximian.com)
|
|
* Jody Goldberg (jody@gnome.org)
|
|
* Christopher James Lahey <clahey@ximian.com>
|
|
*
|
|
* (C) 1998-2003 Michael Meeks, Jody Goldberg, Chris Lahey
|
|
**/
|
|
|
|
#ifndef GOD_ANCHOR_H
|
|
#define GOD_ANCHOR_H
|
|
|
|
#include <glib-object.h>
|
|
#include <glib.h>
|
|
#include <utils/go-units.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GOD_ANCHOR_TYPE (god_anchor_get_type ())
|
|
#define GOD_ANCHOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GOD_ANCHOR_TYPE, GodAnchor))
|
|
#define GOD_ANCHOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), GOD_ANCHOR_TYPE, GodAnchorClass))
|
|
#define GOD_ANCHOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS((o), GOD_ANCHOR_TYPE, GodAnchorClass))
|
|
#define IS_GOD_ANCHOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GOD_ANCHOR_TYPE))
|
|
#define IS_GOD_ANCHOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GOD_ANCHOR_TYPE))
|
|
|
|
typedef struct GodAnchorPrivate_ GodAnchorPrivate;
|
|
|
|
typedef struct {
|
|
GObject parent;
|
|
GodAnchorPrivate *priv;
|
|
} GodAnchor;
|
|
|
|
typedef struct {
|
|
GObjectClass parent_class;
|
|
|
|
void (*get_rect) (GodAnchor *anchor, GoRect *rect);
|
|
void (*set_rect) (GodAnchor *anchor, const GoRect *rect);
|
|
} GodAnchorClass;
|
|
|
|
GType god_anchor_get_type (void);
|
|
|
|
GodAnchor *god_anchor_new (void);
|
|
void god_anchor_get_rect (GodAnchor *anchor,
|
|
GoRect *rect);
|
|
void god_anchor_set_rect (GodAnchor *anchor,
|
|
const GoRect *anchor_value);
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* GOD_ANCHOR_H */
|