fix drag handle segv, new app icons
[goodguy/history.git] / cinelerra-5.1 / cinelerra / mainsession.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 MAINSESSION_H
23 #define MAINSESSION_H
24
25 #include "asset.inc"
26 #include "assets.inc"
27 #include "auto.inc"
28 #include "bchash.inc"
29 #include "edit.inc"
30 #include "edits.inc"
31 #include "edl.inc"
32 #include "guicast.h"
33 #include "indexable.inc"
34 #include "mainsession.inc"
35 #include "maxchannels.h"
36 #include "mwindow.inc"
37 #include "plugin.inc"
38 #include "pluginset.inc"
39 #include "pluginserver.inc"
40 #include "track.inc"
41 #include "vwindowgui.inc"
42
43 // Options not in EDL but not changed in preferences
44 class MainSession
45 {
46 public:
47         MainSession(MWindow *mwindow);
48         ~MainSession();
49
50         int load_defaults(BC_Hash *defaults);
51         int save_defaults(BC_Hash *defaults);
52         void save_x11_host(int play_config, const char *x11_host);
53         int set_default_x11_host(int win_config=-1);
54         void default_window_positions(int window_config=0);
55         void boundaries();
56         Track *drag_handle_track();
57
58 // For drag and drop events
59 // The entire track where the dropped asset is going to go
60         Track *track_highlighted;
61 // The edit after the point where the media is going to be dropped.
62         Edit *edit_highlighted;
63 // The plugin set where the plugin is going to be dropped.
64         PluginSet *pluginset_highlighted;
65 // The plugin after the point where the plugin is going to be dropped.
66         Plugin *plugin_highlighted;
67 // Current drag operation
68         int current_operation;
69
70 // Item being dragged
71         ArrayList <PluginServer*> *drag_pluginservers;
72         Plugin *drag_plugin;
73 // When trim should only affect the selected edits or plugins
74         Edits *trim_edits;
75         ArrayList<Indexable*> *drag_assets;
76         ArrayList<EDL*> *drag_clips;
77         Auto *drag_auto;
78         ArrayList<Auto*> *drag_auto_gang;
79
80 // Edit whose handle is being dragged
81         Edit *drag_edit;
82 // Edits who are being dragged
83         ArrayList<Edit*> *drag_edits;
84 // Button pressed during drag
85         int drag_button;
86 // Handle being dragged
87         int drag_handle;
88 // Current position of drag cursor
89         double drag_position;
90 // Starting position of drag cursor
91         double drag_start;
92 // Cursor position when button was pressed
93         int drag_origin_x, drag_origin_y;
94 // Value of keyframe when button was pressed
95         float drag_start_percentage;
96         long drag_start_position;
97 // Amount of data rendered, for drawing status in timebar
98         double brender_end;
99 // Position of cursor in CWindow output.  Used by ruler.
100         int cwindow_output_x, cwindow_output_y;
101
102 // Show controls in CWindow
103         int cwindow_controls;
104
105 // Clip number for automatic title generation
106         int clip_number;
107
108 // Audio session
109         int changes_made;
110
111 // filename of the current project for window titling and saving
112         char filename[BCTEXTLEN];
113
114         int batchrender_x, batchrender_y, batchrender_w, batchrender_h;
115
116 // Window positions
117         int window_config;
118         char a_x11_host[BCSTRLEN], b_x11_host[BCSTRLEN];
119 // level window
120         int lwindow_x, lwindow_y, lwindow_w, lwindow_h;
121 // main window
122         int mwindow_x, mwindow_y, mwindow_w, mwindow_h;
123 // viewer
124         int vwindow_x, vwindow_y, vwindow_w, vwindow_h;
125 // compositor
126         int cwindow_x, cwindow_y, cwindow_w, cwindow_h;
127         int ctool_x, ctool_y;
128 // asset window
129         int awindow_x, awindow_y, awindow_w, awindow_h;
130         int gwindow_x, gwindow_y;
131 // record monitor
132         int rmonitor_x, rmonitor_y, rmonitor_w, rmonitor_h;
133 // record status
134         int rwindow_x, rwindow_y, rwindow_w, rwindow_h;
135 // channelinfo
136         int cswindow_x, cswindow_y, cswindow_w, cswindow_h;
137 // subtitle
138         int swindow_x, swindow_y, swindow_w, swindow_h;
139 // binfolder filter window
140         int bwindow_w, bwindow_h;
141 // error window
142         int ewindow_w, ewindow_h;
143 // Channel edit window
144         int channels_x, channels_y;
145 // Picture edit window
146         int picture_x, picture_y;
147 // Recording scope window
148         int scope_x, scope_y, scope_w, scope_h;
149 // Recording histogram window
150         int histogram_x, histogram_y, histogram_w, histogram_h;
151 // Recording scopes enabled
152         int record_scope;
153 // Recording scope parameters
154         int use_hist;
155         int use_wave;
156         int use_vector;
157         int use_hist_parade;
158         int use_wave_parade;
159
160         int afolders_w;
161         int show_vwindow, show_awindow, show_cwindow, show_gwindow, show_lwindow;
162         int plugindialog_w, plugindialog_h;
163 //      int presetdialog_w, presetdialog_h;
164         int keyframedialog_w, keyframedialog_h;
165         int keyframedialog_column1;
166         int keyframedialog_column2;
167         int keyframedialog_all;
168         int menueffect_w, menueffect_h;
169         int transitiondialog_w, transitiondialog_h;
170
171         int cwindow_fullscreen;
172         int rwindow_fullscreen;
173         int vwindow_fullscreen;
174         int zwindow_fullscreen;
175         int selected_zwindow;
176
177         double actual_frame_rate;
178
179 // Tip of the day
180         int current_tip;
181
182         MWindow *mwindow;
183 };
184
185 #endif