rework android-rmt display, add a few buttons
[goodguy/history.git] / cinelerra-5.0 / 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 void copy(int64_t start, 
49                 int64_t end, 
50                 FileXML *file, 
51                 int default_only);
52
53         virtual void load(FileXML *file);
54
55         virtual void get_caption(char *string) {};
56
57         virtual float value_to_percentage();
58         virtual float invalue_to_percentage();
59         virtual float outvalue_to_percentage();
60
61
62         int skip;       // if added by selection event for moves
63         EDL *edl;
64         Autos *autos;
65         int WIDTH, HEIGHT;
66 // Units native to the track
67         int is_default;
68         int64_t position;
69 // Calculation to use for floats
70         int mode;
71         enum
72         {
73                 BEZIER,
74                 LINEAR
75         }; 
76
77 private:
78         virtual int value_to_str(char *string, float value) { return 1; }
79 };
80
81
82
83 #endif