1
0
mirror of git://projects.qi-hardware.com/fped.git synced 2024-07-03 11:07:17 +03:00
fped/delete.h
werner 3db91b5c1b Added delete/undelete.
- when moving a point, we no longer restrict the area around the original
  position once the drag radius has been left
- objects can now be deleted by selecting them and pressing Delete
- deleted objects can be restored by pressing "u"



git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5387 99fdad57-331a-0410-800a-d7fa5415bdb3
2009-08-05 00:32:38 +00:00

27 lines
556 B
C

/*
* delete.h - Object deletion
*
* Written 2009 by Werner Almesberger
* Copyright 2009 by Werner Almesberger
*
* 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 2 of the License, or
* (at your option) any later version.
*/
#ifndef DELETE_H
#define DELETE_H
#include "obj.h"
int delete_vec(struct vec *vec);
int delete_obj(struct obj *obj);
int destroy(void);
int undelete(void);
#endif /* !OBJ_H */