diff options
author | Thomas White <taw@bitwiz.org.uk> | 2011-05-22 22:35:10 +0200 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2011-05-22 22:35:10 +0200 |
commit | 13248acdefcaa88d88cb9ef493ab3e9602abc658 (patch) | |
tree | 595b7b05e0692464e00b3299931a2d4dc1f05f2a /src/objects.h | |
parent | 18285193ab891014089227a459cfab7c2560af02 (diff) |
Editing and input plumbing
Diffstat (limited to 'src/objects.h')
-rw-r--r-- | src/objects.h | 62 |
1 files changed, 62 insertions, 0 deletions
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 <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 + + +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 */ |