4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #include "filexml.inc"
36 // The default constructor is used for menu effects.
38 class Auto : public ListItem<Auto>
42 Auto(EDL *edl, Autos *autos);
45 virtual Auto& operator=(Auto &that);
46 virtual int operator==(Auto &that);
47 virtual void copy_from(Auto *that);
48 virtual bool is_floatauto() { return false; }
49 /* create an interpolation using a1 and a2, (defaulting to previous and next) */
50 /* if not possible, just fill from a1 (or from template if given) and return 0 */
51 virtual int interpolate_from(Auto *a1, Auto *a2, int64_t new_position, Auto *templ=0);
52 virtual void copy(int64_t start, int64_t end, FileXML *file, int default_only);
54 virtual void load(FileXML *file);
56 virtual void get_caption(char *string) {};
59 int skip; // if added by selection event for moves
63 // Units native to the track
67 virtual int value_to_str(char *string, float value) { return 1; }