1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
/*
* FIG : Facility for Interactive Generation of figures
* Copyright (c) 1985-1988 by Supoj Sutanthavibul
* Parts Copyright (c) 1989-2002 by Brian V. Smith
* Parts Copyright (c) 1991 by Paul King
*
* Any party obtaining a copy of these files is granted, free of charge, a
* full and unrestricted irrevocable, world-wide, paid up, royalty-free,
* nonexclusive right and license to deal in this software and documentation
* files (the "Software"), including without limitation the rights to use,
* copy, modify, merge, publish distribute, sublicense and/or sell copies of
* the Software, and to permit persons who receive copies from any such
* party to do so, with the only requirement being that the above copyright
* and this permission notice remain intact.
*
*/
#include "fig.h"
#include "resources.h"
#include "mode.h"
#include "object.h"
#include "paintop.h"
#include "w_setup.h"
/************************ Objects **********************/
F_compound objects = {0, 0, { 0, 0 }, { 0, 0 },
NULL, NULL, NULL, NULL, NULL,
(char*) NULL, NULL, NULL, False, NULL, NULL};
/************ global object pointers ************/
F_line *cur_l, *new_l, *old_l;
F_arc *cur_a, *new_a, *old_a;
F_ellipse *cur_e, *new_e, *old_e;
F_text *cur_t, *new_t, *old_t;
F_spline *cur_s, *new_s, *old_s;
F_compound *cur_c, *new_c, *old_c;
F_point *first_point=NULL, *cur_point=NULL;
F_linkinfo *cur_links=NULL;
struct _pics *pictures=NULL; /* common repository to share imported pictures */
|