From 13248acdefcaa88d88cb9ef493ab3e9602abc658 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Sun, 22 May 2011 22:35:10 +0200 Subject: Editing and input plumbing --- src/objects.h | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 src/objects.h (limited to 'src/objects.h') diff --git a/src/objects.h b/src/objects.h new file mode 100644 index 0000000..c220b00 --- /dev/null +++ b/src/objects.h @@ -0,0 +1,62 @@ +/* + * presentation.h + * + * Colloquium - A tiny presentation program + * + * Copyright (c) 2011 Thomas White + * + * 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 . + * + */ + +#ifndef OBJECTS_H +#define OBJECTS_H + +#ifdef HAVE_CONFIG_H +#include +#endif + + +enum objtype +{ + TEXT, +}; + + +struct object +{ + enum objtype type; + struct slide *parent; + + /* Position of object, the interpretation of which depends on + * the type of the object */ + double x; + double y; + + /* Side of rectangular bounding box of object */ + double bb_width; + double bb_height; + + int empty; + + /* For type TEXT */ + char *text; +}; + + +extern struct object *add_text_object(struct slide *s, double x, double y); +extern void delete_object(struct object *o); + + +#endif /* OBJECTS_H */ -- cgit v1.2.3