add asset select used to proxy list menu
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / auto.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
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.
10  *
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.
15  *
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
19  *
20  */
21
22 #ifndef AUTO_H
23 #define AUTO_H
24
25 #include "auto.inc"
26 #include "edl.inc"
27 #include "guicast.h"
28 #include "filexml.inc"
29 #include "autos.inc"
30
31
32
33
34
35
36 // The default constructor is used for menu effects.
37
38 class Auto : public ListItem<Auto>
39 {
40 public:
41         Auto();
42         Auto(EDL *edl, Autos *autos);
43         virtual ~Auto() {};
44
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);
53
54         virtual void load(FileXML *file);
55
56         virtual void get_caption(char *string) {};
57
58
59         int skip;       // if added by selection event for moves
60         EDL *edl;
61         Autos *autos;
62         int WIDTH, HEIGHT;
63 // Units native to the track
64         int is_default;
65         int64_t position;
66 private:
67         virtual int value_to_str(char *string, float value) { return 1; }
68 };
69
70 #endif