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
33 #include "indexable.inc"
34 #include "mainsession.inc"
35 #include "maxchannels.h"
36 #include "mwindow.inc"
38 #include "pluginset.inc"
39 #include "pluginserver.inc"
42 // Options not in EDL but not changed in preferences
46 MainSession(MWindow *mwindow);
49 int load_defaults(BC_Hash *defaults);
50 int save_defaults(BC_Hash *defaults);
51 void save_x11_host(int play_config, const char *x11_host);
52 int set_default_x11_host(int win_config=-1);
53 void default_window_positions(int window_config=0);
60 // For drag and drop events
61 // The entire track where the dropped asset is going to go
62 Track *track_highlighted;
63 // The edit after the point where the media is going to be dropped.
64 Edit *edit_highlighted;
65 // The plugin set where the plugin is going to be dropped.
66 PluginSet *pluginset_highlighted;
67 // The plugin after the point where the plugin is going to be dropped.
68 Plugin *plugin_highlighted;
69 // Viewer canvas highlighted
70 int vcanvas_highlighted;
71 // Compositor canvas highlighted
72 int ccanvas_highlighted;
73 // Current drag operation
74 int current_operation;
77 ArrayList <PluginServer*> *drag_pluginservers;
79 // When trim should only affect the selected edits or plugins
81 ArrayList<Indexable*> *drag_assets;
82 ArrayList<EDL*> *drag_clips;
84 ArrayList<Auto*> *drag_auto_gang;
86 // Edit whose handle is being dragged
88 // Edits who are being dragged
89 ArrayList<Edit*> *drag_edits;
90 // Button pressed during drag
92 // Handle being dragged
94 // Current position of drag cursor
96 // Starting position of drag cursor
98 // Cursor position when button was pressed
99 int drag_origin_x, drag_origin_y;
100 // Value of keyframe when button was pressed
101 float drag_start_percentage;
102 long drag_start_position;
103 // Amount of data rendered, for drawing status in timebar
105 // Position of cursor in CWindow output. Used by ruler.
106 int cwindow_output_x, cwindow_output_y;
108 // Show controls in CWindow
109 int cwindow_controls;
111 // Clip number for automatic title generation
117 // filename of the current project for window titling and saving
118 char filename[BCTEXTLEN];
120 int batchrender_x, batchrender_y, batchrender_w, batchrender_h;
124 char a_x11_host[BCSTRLEN], b_x11_host[BCSTRLEN];
126 int lwindow_x, lwindow_y, lwindow_w, lwindow_h;
128 int mwindow_x, mwindow_y, mwindow_w, mwindow_h;
130 int vwindow_x, vwindow_y, vwindow_w, vwindow_h;
132 int cwindow_x, cwindow_y, cwindow_w, cwindow_h;
133 int ctool_x, ctool_y;
135 int awindow_x, awindow_y, awindow_w, awindow_h;
136 int gwindow_x, gwindow_y;
138 int rmonitor_x, rmonitor_y, rmonitor_w, rmonitor_h;
140 int rwindow_x, rwindow_y, rwindow_w, rwindow_h;
142 int cswindow_x, cswindow_y, cswindow_w, cswindow_h;
144 int swindow_x, swindow_y, swindow_w, swindow_h;
146 int ewindow_w, ewindow_h;
147 // Channel edit window
148 int channels_x, channels_y;
149 // Picture edit window
150 int picture_x, picture_y;
151 // Recording scope window
152 int scope_x, scope_y, scope_w, scope_h;
153 // Recording histogram window
154 int histogram_x, histogram_y, histogram_w, histogram_h;
155 // Recording scopes enabled
157 // Recording scope parameters
166 int show_vwindow, show_awindow, show_cwindow, show_gwindow, show_lwindow;
167 int plugindialog_w, plugindialog_h;
168 // int presetdialog_w, presetdialog_h;
169 int keyframedialog_w, keyframedialog_h;
170 int keyframedialog_column1;
171 int keyframedialog_column2;
172 int keyframedialog_all;
173 int menueffect_w, menueffect_h;
174 int transitiondialog_w, transitiondialog_h;
176 int cwindow_fullscreen;
177 int rwindow_fullscreen;
178 int vwindow_fullscreen;
181 double actual_frame_rate;