prevent popup deactivation while button_down
[goodguy/history.git] / cinelerra-5.0 / cinelerra / edits.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008-2013 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 EDITS_H
23 #define EDITS_H
24
25
26 #include "asset.inc"
27 #include "assets.inc"
28 #include "edl.inc"
29 #include "guicast.h"
30 #include "edit.h"
31 #include "filexml.inc"
32 #include "linklist.h"
33 #include "track.inc"
34 #include "transition.inc"
35
36 // Generic list of edits of something
37
38 class Edits : public List<Edit>
39 {
40 public:
41         Edits(EDL *edl, Track *track);
42         virtual ~Edits();       
43
44         void equivalent_output(Edits *edits, int64_t *result);
45         virtual void copy_from(Edits *edits);
46         virtual Edits& operator=(Edits& edits);
47 // Insert edits from different EDL
48         void insert_edits(Edits *edits, 
49                 int64_t position,
50                 int64_t min_length,
51                 int edit_autos);
52 // Insert asset from same EDL
53         void insert_asset(Asset *asset, 
54                 EDL *nested_edl,
55                 int64_t length, 
56                 int64_t sample, 
57                 int track_number);
58 // Split edit containing position.
59         Edit* split_edit(int64_t position);
60 // Return the second edit in the split.
61         Edit* split_edit(Edit *edit, int64_t position);
62 // Create a blank edit in the native data format
63         int clear_handle(double start, 
64                 double end, 
65                 int edit_plugins, 
66                 int edit_autos,
67                 double &distance);
68         virtual Edit* create_edit() { return 0; };
69 // Insert a 0 length edit at the position
70         Edit* insert_new_edit(int64_t sample);
71         int save(FileXML *xml, const char *output_path);
72         int copy(int64_t start, int64_t end, FileXML *xml, const char *output_path);
73 // Clear region of edits
74         virtual void clear(int64_t start, int64_t end);
75 // Clear edits and plugins for a handle modification
76         virtual void clear_recursive(int64_t start, 
77                 int64_t end, 
78                 int edit_edits,
79                 int edit_labels, 
80                 int edit_plugins,
81                 int edit_autos,
82                 Edits *trim_edits);
83         virtual void shift_keyframes_recursive(int64_t position, int64_t length);
84         virtual void shift_effects_recursive(int64_t position, int64_t length, int edit_autos);
85 // Returns the newly created edit
86         Edit* paste_silence(int64_t start, int64_t end);
87         void resample(double old_rate, double new_rate);
88 // Shift edits on or after position by distance
89 // Return the edit now on the position.
90         virtual Edit* shift(int64_t position, int64_t difference);
91
92         EDL *edl;
93         Track *track;
94
95
96
97
98
99
100
101
102
103
104 // ============================= initialization commands ====================
105         Edits() { printf("default edits constructor called\n"); };
106
107 // ================================== file operations
108
109         int load(FileXML *xml, int track_offset);
110         int load_edit(FileXML *xml, int64_t &startproject, int track_offset);
111
112         virtual Edit* append_new_edit() { return 0; }
113         virtual Edit* insert_edit_after(Edit *previous_edit) { return 0; }
114         virtual int load_edit_properties(FileXML *xml) { return 0; }
115
116
117 // ==================================== accounting
118
119         Edit* editof(int64_t position, int direction, int use_nudge);
120 // Return an edit if position is over an edit and the edit has a source file
121         Edit* get_playable_edit(int64_t position, int use_nudge);
122 //      int64_t total_length();
123         int64_t length();         // end position of last edit
124
125 // ==================================== editing
126
127         int modify_handles(double oldposition, 
128                 double newposition, 
129                 int currentend,
130                 int edit_mode, 
131                 int edit_edits,
132                 int edit_labels,
133                 int edit_plugins,
134                 int edit_autos,
135                 Edits *trim_edits);
136         virtual int optimize();
137
138
139 private:
140         virtual int clone_derived(Edit* new_edit, Edit* old_edit) { return 0; }
141 };
142
143
144
145 #endif