aboutsummaryrefslogtreecommitdiff
path: root/src/objects.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2012-06-14 16:02:15 +0100
committerThomas White <taw@bitwiz.org.uk>2012-06-14 16:02:15 +0100
commit34db1cd5f43ccd48cf672266413f608173eb838f (patch)
tree6faac72cd19c8ef3cf13211aaa900e73a118bc44 /src/objects.h
parent940337bb4e46463b794fd9779cc3e07e7e175cee (diff)
Simplify...
Diffstat (limited to 'src/objects.h')
-rw-r--r--src/objects.h103
1 files changed, 0 insertions, 103 deletions
diff --git a/src/objects.h b/src/objects.h
deleted file mode 100644
index dba19da..0000000
--- a/src/objects.h
+++ /dev/null
@@ -1,103 +0,0 @@
-/*
- * objects.h
- *
- * Colloquium - A tiny presentation program
- *
- * Copyright (c) 2011 Thomas White <taw@bitwiz.org.uk>
- *
- * 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 3 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
- * MERCHANTABILITY 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, see <http://www.gnu.org/licenses/>.
- *
- */
-
-#ifndef OBJECTS_H
-#define OBJECTS_H
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-
-#include "loadsave.h"
-
-
-enum objtype
-{
- OBJ_UNKNOWN,
- OBJ_TEXT,
- OBJ_IMAGE,
-};
-
-
-struct object
-{
- enum objtype type;
- struct slide *parent;
- struct style *style;
-
- /* Position of corner of object */
- double x;
- double y;
-
- /* Side of rectangular bounding box of object */
- double bb_width;
- double bb_height;
-
- int empty;
-
- void (*render_object)(cairo_t *cr, struct object *o);
- void (*update_object)(struct object *o);
- void (*delete_object)(struct object *o);
- void (*serialize)(struct object *o, struct serializer *ser);
-};
-
-
-struct image_store;
-
-struct image
-{
- char *filename;
- GdkPixbuf *pb;
- int width;
- int height;
-
- int refcount;
-
- struct image_store *parent;
-};
-
-
-enum corner
-{
- CORNER_NONE,
- CORNER_TL,
- CORNER_TR,
- CORNER_BL,
- CORNER_BR
-};
-
-
-extern struct image *get_image(struct image_store *is, char *filename);
-extern struct image_store *image_store_new(void);
-extern void unref_image(struct image *i);
-
-extern void notify_style_update(struct presentation *p,
- struct style *sty);
-
-extern void delete_object(struct object *o);
-
-extern void realise_everything(struct presentation *p);
-
-extern enum corner which_corner(double xp, double yp, struct object *o);
-
-#endif /* OBJECTS_H */