~ubuntu-branches/ubuntu/precise/pcb/precise

« back to all changes in this revision

Viewing changes to src/undo.h

  • Committer: Bazaar Package Importer
  • Author(s): Hamish Moffatt
  • Date: 2005-02-20 13:14:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050220131400-pfz66g5vhx0azl8f
Tags: 1.99j+20050127-2
* Improved package description: (closes: #295405)
* Fixed dependency: tk84 -> tk8.4 (closes: #295404)
* Updated README.debian (closes: #269578)
* Applied patch to src/djopt.c to allow compilation with gcc-4.0
  (closes: #294319), thanks to Andreas Jochens for the patch.
* Prevent example files from being compressed

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 *  Thomas Nau, Schlehenweg 15, 88471 Baustetten, Germany
23
23
 *  Thomas.Nau@rz.uni-ulm.de
24
24
 *
25
 
 *  RCS: $Id: undo.h,v 1.1 1998/02/19 18:06:34 sync Exp $
 
25
 *  RCS: $Id: undo.h,v 1.3 2005/01/03 12:57:00 danmc Exp $
26
26
 */
27
27
 
28
28
/* prototypes for undo routines
38
38
 
39
39
                                                                                        /* different layers */
40
40
 
41
 
int     Undo(void);
42
 
int     Redo(void);
 
41
int     Undo(Boolean);
 
42
int     Redo(Boolean);
43
43
void    IncrementUndoSerialNumber(void);
44
44
void    SaveUndoSerialNumber(void);
45
45
void    RestoreUndoSerialNumber(void);
48
48
void    AddObjectToRemovePointUndoList(int, void *, void *, Cardinal);
49
49
void    AddObjectToInsertPointUndoList(int, void *, void *, void *);
50
50
void    AddObjectToMoveUndoList(int, void *, void *, void *,
51
 
                        Position, Position);
 
51
                        LocationType, LocationType);
52
52
void    AddObjectToChangeNameUndoList(int, void *,void *, void *, char *);
53
53
void    AddObjectToRotateUndoList(int, void *, void *,void *,
54
 
                        Position, Position, BYTE);
 
54
                        LocationType, LocationType, BYTE);
55
55
void    AddObjectToCreateUndoList(int, void *, void *,void *);
56
 
void    AddObjectToMirrorUndoList(int, void *, void *,void *, Position);
 
56
void    AddObjectToMirrorUndoList(int, void *, void *,void *, LocationType);
57
57
void    AddObjectToMoveToLayerUndoList(int, void *, void *, void *);
58
58
void    AddObjectToFlagUndoList(int, void *, void *, void *);
59
59
void    AddObjectToSizeUndoList(int, void *, void *, void *);
60
60
void    AddObjectTo2ndSizeUndoList(int, void *, void *, void *);
61
61
void    AddObjectToClearSizeUndoList(int, void *, void *, void *);
 
62
void    AddObjectToMaskSizeUndoList(int, void *, void *, void *);
62
63
void    LockUndo(void);
63
64
void    UnlockUndo(void);
64
65
Boolean Undoing(void);