(no commit message)
[geda-pcb/pcjc2.git] / src / undo.h
blob18117cb3c8d7f7091e57003ac99b1d60b7edd371
1 /*
2 * COPYRIGHT
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
27 /* prototypes for undo routines
30 #ifndef PCB_UNDO_H
31 #define PCB_UNDO_H
33 #include "global.h"
35 #define DRAW_FLAGS (RATFLAG | SELECTEDFLAG | SQUAREFLAG | \
36 HIDENAMEFLAG | HOLEFLAG | OCTAGONFLAG | \
37 CONNECTEDFLAG | FOUNDFLAG | CLEARLINEFLAG)
39 /* different layers */
41 int Undo (bool);
42 int Redo (bool);
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 *,
53 Coord, Coord);
54 void AddObjectToChangeNameUndoList (int, void *, void *, void *, char *);
55 void AddObjectToRotateUndoList (int, void *, void *, void *,
56 Coord, Coord, BYTE);
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 (LibraryType *);
69 void LockUndo (void);
70 void UnlockUndo (void);
71 bool Undoing (void);
73 #endif