1 /*! \brief different kind of snapping mechanisms used in LeptonToplevel */
2 typedef enum {SNAP_OFF, SNAP_GRID, SNAP_RESNAP, SNAP_STATE_COUNT} SNAP_STATE;
3 
4 typedef struct st_stretch STRETCH;
5 
6 struct st_stretch
7 {
8   LeptonObject *object;
9   int whichone;
10 };
11