4 * PCB, interactive printed circuit board design
5 * Copyright (C) 1994,1995,1996 Thomas Nau
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 * Contact addresses for paper mail and Email:
22 * Thomas Nau, Schlehenweg 15, 88471 Baustetten, Germany
23 * Thomas.Nau@rz.uni-ulm.de
28 /* prototypes for undo routines
36 #define DRAW_FLAGS (RATFLAG | SELECTEDFLAG | SQUAREFLAG \
37 | HIDENAMEFLAG | HOLEFLAG | OCTAGONFLAG | FOUNDFLAG | CLEARLINEFLAG)
39 /* different layers */
43 void IncrementUndoSerialNumber (void);
44 void SaveUndoSerialNumber (void);
45 void RestoreUndoSerialNumber (void);
46 void ClearUndoList (bool);
47 void MoveObjectToRemoveUndoList (int, void *, void *, void *);
48 void AddObjectToRemovePointUndoList (int, void *, void *, Cardinal
);
49 void AddObjectToInsertPointUndoList (int, void *, void *, void *);
50 void AddObjectToRemoveContourUndoList (int, LayerType
*, PolygonType
*);
51 void AddObjectToInsertContourUndoList (int, LayerType
*, PolygonType
*);
52 void AddObjectToMoveUndoList (int, void *, void *, void *,
54 void AddObjectToChangeNameUndoList (int, void *, void *, void *, char *);
55 void AddObjectToRotateUndoList (int, void *, void *, void *,
57 void AddObjectToCreateUndoList (int, void *, void *, void *);
58 void AddObjectToMirrorUndoList (int, void *, void *, void *, Coord
);
59 void AddObjectToMoveToLayerUndoList (int, void *, void *, void *);
60 void AddObjectToFlagUndoList (int, void *, void *, void *);
61 void AddObjectToSizeUndoList (int, void *, void *, void *);
62 void AddObjectTo2ndSizeUndoList (int, void *, void *, void *);
63 void AddObjectToClearSizeUndoList (int, void *, void *, void *);
64 void AddObjectToMaskSizeUndoList (int, void *, void *, void *);
65 void AddObjectToChangeAnglesUndoList (int, void *, void *, void *);
66 void AddObjectToClearPolyUndoList (int, void *, void *, void *, bool);
67 void AddLayerChangeToUndoList (int, int);
68 void AddNetlistLibToUndoList (LibraryTypePtr
);
70 void UnlockUndo (void);