6f504db82b27cd33c11ef4a1cd4388fcb4285a52
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / awindowgui.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 1997-2012 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 #include "arender.h"
23 #include "asset.h"
24 #include "assetedit.h"
25 #include "assetpopup.h"
26 #include "assetremove.h"
27 #include "assets.h"
28 #include "audiodevice.h"
29 #include "awindow.h"
30 #include "awindowgui.h"
31 #include "bccmodels.h"
32 #include "bcsignals.h"
33 #include "bchash.h"
34 #include "binfolder.h"
35 #include "cache.h"
36 #include "cstrdup.h"
37 #include "clip.h"
38 #include "clipedls.h"
39 #include "clippopup.h"
40 #include "cursors.h"
41 #include "cwindowgui.h"
42 #include "cwindow.h"
43 #include "edits.h"
44 #include "edit.h"
45 #include "edl.h"
46 #include "edlsession.h"
47 #include "effectlist.h"
48 #include "file.h"
49 #include "filesystem.h"
50 #include "folderlistmenu.h"
51 #include "indexable.h"
52 #include "keys.h"
53 #include "language.h"
54 #include "labels.h"
55 #include "labelpopup.h"
56 #include "localsession.h"
57 #include "mainerror.h"
58 #include "mainmenu.h"
59 #include "mainsession.h"
60 #include "mwindowgui.h"
61 #include "mwindow.h"
62 #include "preferences.h"
63 #include "proxy.h"
64 #include "proxypopup.h"
65 #include "renderengine.h"
66 #include "samples.h"
67 #include "theme.h"
68 #include "tracks.h"
69 #include "track.h"
70 #include "transportque.h"
71 #include "vframe.h"
72 #include "vicon.h"
73 #include "vrender.h"
74 #include "vwindowgui.h"
75 #include "vwindow.h"
76
77 #include "data/lad_picon_png.h"
78 #include "data/ff_audio_png.h"
79 #include "data/ff_video_png.h"
80
81 #include<stdio.h>
82 #include<unistd.h>
83 #include<fcntl.h>
84
85
86 const char *AWindowGUI::folder_names[] =
87 {
88         N_("Audio Effects"),
89         N_("Video Effects"),
90         N_("Audio Transitions"),
91         N_("Video Transitions"),
92         N_("Labels"),
93         N_("Clips"),
94         N_("Media"),
95         N_("Proxy"),
96 };
97
98 const char *AVIconDrawing::avicon_names[] =
99 {
100         N_("Full Play"),
101         N_("Mouse Over"),
102         N_("Src Target"),
103         N_("No Play"),
104 };
105
106 AssetVIcon::AssetVIcon(AssetPicon *picon, int w, int h, double framerate, int64_t length)
107  : VIcon(w, h, framerate), Garbage("AssetVIcon")
108 {
109         this->picon = picon;
110         this->length = length;
111         temp = 0;
112 }
113
114 AssetVIcon::~AssetVIcon()
115 {
116         picon->gui->vicon_thread->del_vicon(this);
117         delete temp;
118 }
119
120 VFrame *AssetVIcon::frame()
121 {
122         AssetVIconThread *avt = picon->gui->vicon_thread;
123         Asset *asset = (Asset *)picon->indexable;
124         if( !asset ) return vframes()>0 ? (VFrame*)*images[0] : 0;
125         if( !asset->video_data && audio_data && audio_size && length > 0 ) {
126                 if( !temp ) temp = new VFrame(0, -1, w, h, BC_RGB888, -1);
127                 temp->clear_frame();
128                 int sample_rate = asset->get_sample_rate();
129                 int64_t audio_samples = asset->get_audio_samples();
130                 double duration = (double)audio_samples / sample_rate;
131                 picon->draw_hue_bar(temp, duration);
132                 int secs = length / frame_rate + 0.5;
133                 if( !secs ) secs = 1;
134                 int bfrsz = VICON_SAMPLE_RATE;
135                 int samples = audio_size/sizeof(vicon_audio_t);
136                 double line_pos = (double)seq_no/(length-1);
137                 int audio_pos = samples * line_pos * (secs-1)/secs;
138                 vicon_audio_t *audio_data = ((vicon_audio_t *)this->audio_data) + audio_pos;
139                 static const int mx = (1<<(8*sizeof(*audio_data)-1)) - 1;
140                 double data[bfrsz], sample_scale = 1./mx;
141                 int len = samples - audio_pos;
142                 if( len > bfrsz ) len = bfrsz;
143                 int i = 0;
144                 while( i < len ) data[i++] = *audio_data++ * sample_scale;
145                 while( i < bfrsz ) data[i++] = 0;
146                 picon->draw_wave(temp, data, bfrsz, RED, GREEN);
147                 int x = (w-1) * line_pos;
148                 temp->pixel_rgb = RED;
149                 temp->draw_line(x,0, x,h);
150                 return temp;
151         }
152         int vw = avt->vw, vh = avt->vh, vicon_cmodel = avt->vicon_cmodel;
153         if( !asset->video_data ) {
154                 if( !temp ) {
155                         temp = new VFrame(0, -1, vw, vh, BC_RGB888, -1);
156                         temp->clear_frame();
157                 }
158                 return temp;
159         }
160         if( seq_no >= images.size() ) {
161                 MWindow *mwindow = picon->mwindow;
162                 File *file = mwindow->video_cache->check_out(asset, mwindow->edl, 1);
163                 if( !file ) return 0;
164                 if( temp && (temp->get_w() != asset->width || temp->get_h() != asset->height) ) {
165                         delete temp;  temp = 0;
166                 }
167                 if( !temp )
168                         temp = new VFrame(0, -1, asset->width, asset->height, BC_RGB888, -1);
169                 while( seq_no >= images.size() ) {
170                         mwindow->video_cache->check_in(asset);
171                         Thread::yield();
172                         file = mwindow->video_cache->check_out(asset, mwindow->edl, 0);
173                         if( !file ) { usleep(1000);  continue; }
174                         file->set_layer(0);
175                         int64_t pos = images.size() / picon->gui->vicon_thread->refresh_rate * frame_rate;
176                         file->set_video_position(pos,0);
177                         if( file->read_frame(temp) ) temp->clear_frame();
178                         add_image(temp, vw, vh, vicon_cmodel);
179                 }
180                 mwindow->video_cache->check_in(asset);
181         }
182         return *images[seq_no];
183 }
184
185 int64_t AssetVIcon::set_seq_no(int64_t no)
186 {
187         if( no >= length ) no = 0;
188         return seq_no = no;
189 }
190
191 int AssetVIcon::get_vx()
192 {
193         BC_ListBox *lbox = picon->gui->asset_list;
194         return lbox->get_icon_x(picon);
195 }
196 int AssetVIcon::get_vy()
197 {
198         BC_ListBox *lbox = picon->gui->asset_list;
199         return lbox->get_icon_y(picon);
200 }
201
202 void AssetVIcon::load_audio()
203 {
204         MWindow *mwindow = picon->mwindow;
205         Asset *asset = (Asset *)picon->indexable;
206         File *file = mwindow->audio_cache->check_out(asset, mwindow->edl, 1);
207         int channels = asset->get_audio_channels();
208         if( channels > 2 ) channels = 2;
209         int sample_rate = asset->get_sample_rate();
210         int bfrsz = sample_rate;
211         Samples samples(bfrsz);
212         double time_scale = (double)sample_rate / VICON_SAMPLE_RATE;
213         vicon_audio_t *audio_data = (vicon_audio_t *)this->audio_data;
214         static const int mx = (1<<(8*sizeof(*audio_data)-1)) - 1;
215         double sample_scale = (double)mx / channels;
216         int audio_pos = 0, audio_len = audio_size/sizeof(vicon_audio_t);
217         while( audio_pos < audio_len ) {
218                 int64_t pos = audio_pos * time_scale;
219                 for( int ch=0; ch<channels; ++ch ) {
220                         file->set_channel(ch);
221                         file->set_audio_position(pos);
222                         file->read_samples(&samples, bfrsz);
223                         double *data = samples.get_data();
224                         for( int64_t k=audio_pos; k<audio_len; ++k ) {
225                                 int i = k * time_scale - pos;
226                                 if( i >= bfrsz ) break;
227                                 int v = audio_data[k] + data[i] * sample_scale;
228                                 audio_data[k] = CLIP(v, -mx,mx);
229                         }
230                 }
231                 audio_pos = (pos + bfrsz) / time_scale;
232         }
233         mwindow->audio_cache->check_in(asset);
234 }
235
236
237 AssetVIconAudio::AssetVIconAudio(AWindowGUI *gui)
238  : Thread(1, 0, 0)
239 {
240         this->gui = gui;
241         audio = new AudioDevice(gui->mwindow);
242         interrupted = 0;
243         vicon = 0;
244 }
245 AssetVIconAudio::~AssetVIconAudio()
246 {
247         delete audio;
248 }
249
250 void AssetVIconAudio::run()
251 {
252         int channels = 2;
253         int64_t bfrsz = VICON_SAMPLE_RATE;
254         MWindow *mwindow = gui->mwindow;
255         EDL *edl = mwindow->edl;
256         EDLSession *session = edl->session;
257         AudioOutConfig *aconfig = session->playback_config->aconfig;
258         audio->open_output(aconfig, VICON_SAMPLE_RATE, bfrsz, channels, 0);
259         audio->start_playback();
260         double out0[bfrsz], out1[bfrsz], *out[2] = { out0, out1 };
261         vicon_audio_t *audio_data = (vicon_audio_t *)vicon->audio_data;
262         static const int mx = (1<<(8*sizeof(*audio_data)-1)) - 1;
263
264         int audio_len = vicon->audio_size/sizeof(vicon_audio_t);
265         while( !interrupted ) {
266                 int len = audio_len - audio_pos;
267                 if( len <= 0 ) break;
268                 if( len > bfrsz ) len = bfrsz;
269                 int k = audio_pos;
270                 for( int i=0; i<len; ++i,++k )
271                         out0[i] = out1[i] = (double)audio_data[k] / mx;
272                 audio_pos = k;
273                 audio->write_buffer(out, channels, len);
274         }
275
276         if( !interrupted )
277                 audio->set_last_buffer();
278         audio->stop_audio(interrupted ? 0 : 1);
279         audio->close_all();
280 }
281
282 void AssetVIconAudio::start(AssetVIcon *vicon)
283 {
284         if( running() ) return;
285         interrupted = 0;
286         double pos = vicon->length > 0 ? (double)vicon->seq_no/vicon->length : 0;
287         int audio_len = vicon->audio_size/sizeof(vicon_audio_t);
288         audio_pos = pos * audio_len;
289         this->vicon = vicon;
290         Thread::start();
291 }
292
293 void AssetVIconAudio::stop(int wait)
294 {
295         if( running() && !interrupted ) {
296                 interrupted = 1;
297                 audio->stop_audio(wait);
298         }
299         Thread::join();
300         if( vicon ) {
301                 vicon->playing_audio = 0;
302                 vicon = 0;
303         }
304 }
305
306 void AssetVIcon::start_audio()
307 {
308         if( playing_audio < 0 ) return;
309         picon->gui->vicon_audio->stop(0);
310         playing_audio = 1;
311         picon->gui->vicon_audio->start(this);
312 }
313
314 void AssetVIcon::stop_audio()
315 {
316         if( playing_audio > 0 ) {
317                 picon->gui->vicon_audio->stop(0);
318                 playing_audio = 0;
319         }
320 }
321
322 AssetViewPopup::AssetViewPopup(VIconThread *vt, int draw_mode,
323                 int x, int y, int w, int h)
324  : ViewPopup(vt, x, y, w, h)
325 {
326         this->draw_mode = draw_mode;
327         this->bar_h = (VIEW_POPUP_BAR_H * h) / 200;
328         dragging = 0;
329 }
330
331 AssetViewPopup::~AssetViewPopup()
332 {
333 }
334
335 int AssetViewPopup::reposition_window(int x, int y, int w, int h)
336 {
337         this->bar_h = (VIEW_POPUP_BAR_H * h) / 200;
338         return ViewPopup::reposition_window(x, y, w, h);
339 }
340
341 int AssetViewPopup::button_press_event()
342 {
343         if( !is_event_win() ) return 0;
344         AssetVIconThread *avt = (AssetVIconThread *)vt;
345         if( !avt->vicon ) return 0;
346
347         int dir = 1;
348         switch( get_buttonpress() ) {
349         case LEFT_BUTTON:
350                 break;
351         case MIDDLE_BUTTON:
352                 avt->set_view_popup(0);
353                 return 1;
354         case WHEEL_DOWN:
355                 dir = -1; // fall thru
356         case WHEEL_UP:
357                 switch( draw_mode ) {
358                 case ASSET_VIEW_MEDIA:
359                 case ASSET_VIEW_MEDIA_MAP:
360                         avt->zoom_scale(dir);
361                         return 1;
362                 } // fall thru
363         default:
364                 return 0;
365         }
366
367         int x = get_cursor_x(), y = get_cursor_y();
368         AssetVIcon *vicon = (AssetVIcon *)avt->vicon;
369         AssetPicon *picon = vicon->picon;
370         MWindow *mwindow = picon->mwindow;
371         EDL *edl = mwindow->edl;
372         dragging = 0;
373         if( y < get_h()/2 ) {
374                 Indexable *idxbl =
375                         picon->indexable ? picon->indexable :
376                         picon->edl ? picon->edl : 0;
377                 if( !idxbl ) return 0;
378                 double sample_rate = idxbl->get_sample_rate();
379                 double audio_length = sample_rate > 0 && idxbl->have_audio() ?
380                         idxbl->get_audio_samples() / sample_rate : 0;
381                 double frame_rate = idxbl->get_frame_rate();
382                 double video_length = frame_rate > 0 && idxbl->have_video() ?
383                         idxbl->get_video_frames() / frame_rate : 0;
384                 double idxbl_length = bmax(audio_length, video_length);
385                 double pos = x * idxbl_length / get_w();
386                 double start = 0, end = idxbl_length;
387                 double lt = DBL_MAX, rt = DBL_MAX;
388                 for( Track *track=edl->tracks->first; track!=0; track=track->next ) {
389                         for( Edit *edit=track->edits->first; edit!=0; edit=edit->next ) {
390                                 Indexable *indexable = (Indexable *)edit->asset;
391                                 if( !indexable ) indexable = (Indexable *)edit->nested_edl;
392                                 if( !indexable ) continue;
393                                 if( indexable->id == idxbl->id ||
394                                     (!indexable->is_asset == !idxbl->is_asset &&
395                                      !strcmp(indexable->path, idxbl->path)) ) {
396                                         double start_pos = track->from_units(edit->startsource);
397                                         double end_pos = track->from_units(edit->startsource + edit->length);
398                                         double dlt = pos - start_pos, drt = end_pos - pos;
399                                         if( dlt >= 0 &&  dlt < lt ) { lt = dlt;  start = start_pos; }
400                                         else if( dlt < 0 && -dlt < rt ) { rt = -dlt;  end = start_pos; }
401                                         if( drt >= 0 &&  drt < rt ) { rt = drt;  end = end_pos; }
402                                         else if( drt < 0 && -drt < lt ) { lt = -drt; start = end_pos; }
403                                 }
404                         }
405                 }
406                 mwindow->gui->lock_window("AssetVIcon::popup_button_press");
407                 VWindow *vwindow = mwindow->get_viewer(1, 0);
408                 vwindow->change_source(idxbl);
409                 mwindow->gui->unlock_window();
410                 EDL *vedl = vwindow->get_edl();
411                 vedl->set_inpoint(start);
412                 vedl->set_outpoint(end);
413                 vedl->local_session->set_selectionstart(start);
414                 vedl->local_session->set_selectionend(start);
415                 vwindow->gui->lock_window("AssetViewPopup::button_press_event");
416                 vwindow->update_position();
417                 vwindow->gui->unlock_window();
418                 return 1;
419         }
420         else {
421                 dragging = 1;
422                 if( !ctrl_down() && !shift_down() )
423                         return cursor_motion_event();
424                 Indexable *idxbl =
425                         picon->indexable ? picon->indexable :
426                         picon->edl ? picon->edl : 0;
427                 if( !idxbl ) return 0;
428                 double total_length = mwindow->edl->tracks->total_length();
429                 double pos = x * total_length / get_w();
430                 double start = 0, end = total_length;
431                 double lt = DBL_MAX, rt = DBL_MAX;
432                 for( Track *track=edl->tracks->first; track!=0; track=track->next ) {
433                         for( Edit *edit=track->edits->first; edit!=0; edit=edit->next ) {
434                                 Indexable *indexable = (Indexable *)edit->asset;
435                                 if( !indexable ) indexable = (Indexable *)edit->nested_edl;
436                                 if( !indexable ) continue;
437                                 if( indexable->id == idxbl->id ||
438                                     (!indexable->is_asset == !idxbl->is_asset &&
439                                      !strcmp(indexable->path, idxbl->path)) ) {
440                                         double start_pos = track->from_units(edit->startproject);
441                                         double end_pos = track->from_units(edit->startproject + edit->length);
442                                         double dlt = pos - start_pos, drt = end_pos - pos;
443                                         if( dlt >= 0 &&  dlt < lt ) { lt = dlt;  start = start_pos; }
444                                         else if( dlt < 0 && -dlt < rt ) { rt = -dlt;  end = start_pos; }
445                                         if( drt >= 0 &&  drt < rt ) { rt = drt;  end = end_pos; }
446                                         else if( drt < 0 && -drt < lt ) { lt = -drt; start = end_pos; }
447                                 }
448                         }
449                 }
450                 mwindow->gui->lock_window("AssetVIcon::popup_button_press");
451                 mwindow->select_point(start);
452                 edl->local_session->set_selectionstart(start);
453                 edl->local_session->set_selectionend(!shift_down() ? start : end);
454                 mwindow->zoom_sample(edl->local_session->zoom_sample);
455                 mwindow->gui->unlock_window();
456                 return 1;
457         }
458         return 0;
459 }
460
461 int AssetViewPopup::button_release_event()
462 {
463         if( !is_event_win() ) return 0;
464         dragging = 0;
465         return 1;
466 }
467
468 int AssetViewPopup::cursor_motion_event()
469 {
470         AssetVIconThread *avt = (AssetVIconThread *)vt;
471         AssetVIcon *vicon = (AssetVIcon *)avt->vicon;
472         if( vicon && dragging && is_event_win() &&
473             get_button_down() && get_buttonpress() == LEFT_BUTTON &&
474             !ctrl_down() && !alt_down() && !shift_down() ) {
475                 switch( draw_mode ) {
476                 case ASSET_VIEW_MEDIA_MAP:
477                 case ASSET_VIEW_FULL:
478                         MWindow *mwindow = vicon->picon->mwindow;
479                         EDL *edl = mwindow->edl;
480                         int x = get_cursor_x();
481                         double total_length = edl->tracks->total_length();
482                         double pos = x * total_length / get_w();
483                         mwindow->gui->lock_window("AssetVIcon::popup_cursor_motion");
484                         mwindow->select_point(pos);
485                         mwindow->zoom_sample(edl->local_session->zoom_sample);
486                         mwindow->gui->unlock_window();
487                         return 1;
488                 }
489         }
490         return 0;
491 }
492
493 void AssetViewPopup::draw_vframe(VFrame *vframe) 
494 {
495         switch( draw_mode ) {
496         case ASSET_VIEW_MEDIA:
497         case ASSET_VIEW_ICON:
498                 ViewPopup::draw_vframe(vframe);
499         case ASSET_VIEW_NONE:
500         default:
501                 return;
502         case ASSET_VIEW_MEDIA_MAP:
503         case ASSET_VIEW_FULL:
504                 break;
505         }
506         set_color(BLACK);
507         draw_box(0,0,get_w(),get_h());
508         int y1 = bar_h;
509         int y2 = get_h()-bar_h;
510         BC_WindowBase::draw_vframe(vframe, 0,y1, get_w(),y2-y1);
511         AssetVIconThread *avt = (AssetVIconThread *)vt;
512         AssetVIcon *vicon = (AssetVIcon *)avt->vicon;
513         AssetPicon *picon = (AssetPicon *)vicon->picon;
514         Indexable *idxbl =
515                 picon->indexable ? picon->indexable :
516                 picon->edl ? picon->edl : 0;
517         if( !idxbl ) return;
518         double sample_rate = idxbl->get_sample_rate();
519         double audio_length = sample_rate > 0 && idxbl->have_audio() ?
520                 idxbl->get_audio_samples() / sample_rate : 0;
521         double frame_rate = idxbl->get_frame_rate();
522         double video_length = frame_rate > 0 && idxbl->have_video() ?
523                 idxbl->get_video_frames() / frame_rate : 0;
524         double idxbl_length = bmax(audio_length, video_length);
525         if( !idxbl_length ) idxbl_length = 1;
526
527         EDL *edl = picon->mwindow->edl;
528         double total_length = edl->tracks->total_length();
529         if( !total_length ) total_length = 1;
530         for( Track *track=edl->tracks->first; track!=0; track=track->next ) {
531                 if( !track->record ) continue;
532                 for( Edit *edit=track->edits->first; edit!=0; edit=edit->next ) {
533                         Indexable *indexable = (Indexable *)edit->asset;
534                         if( !indexable ) indexable = (Indexable *)edit->nested_edl;
535                         if( !indexable ) continue;
536                         if( indexable->id == idxbl->id ||
537                             (!indexable->is_asset == !idxbl->is_asset &&
538                              !strcmp(indexable->path, idxbl->path)) ) {
539                                 double pos1 = track->from_units(edit->startsource);
540                                 double pos2 = track->from_units(edit->startsource + edit->length);
541                                 double xscale = get_w() / idxbl_length;
542                                 int ex1 = pos1 * xscale, ex2 = pos2 * xscale;
543                                 set_color(WHITE);
544                                 draw_box(ex1,0, ex2-ex1,y1);
545                                 set_color(BLACK);
546                                 draw_line(ex1,0, ex1,y1);
547                                 draw_line(ex2,0, ex2,y1);
548                                 pos1 = track->from_units(edit->startproject);
549                                 pos2 = track->from_units(edit->startproject + edit->length);
550                                 xscale = get_w() / total_length;
551                                 int px1 = pos1 * xscale, px2 = pos2 * xscale;
552                                 set_color(RED);
553                                 draw_box(px1,y2, px2-px1,get_h()-y2);
554                                 set_color(BLACK);
555                                 draw_line(px1,y2, px1,get_h()-1);
556                                 draw_line(px2,y2, px2,get_h()-1);
557
558                                 set_color(YELLOW);
559                                 draw_line(ex1,y1, px1,y2);
560                                 draw_line(ex2,y1, px2,y2);
561                         }
562                 }
563         }
564 }
565
566 int AssetViewPopup::keypress_event()
567 {
568         int result = 0;
569         AssetVIconThread *avt = (AssetVIconThread *)vt;
570         switch( avt->draw_mode ) {
571         case ASSET_VIEW_MEDIA_MAP:
572                 switch( get_keypress() ) {
573                 case 'f':
574                 case 'F':
575                         avt->draw_mode = ASSET_VIEW_FULL;
576                         result = 1;
577                 }
578                 break;
579         case ASSET_VIEW_FULL:
580                 avt->draw_mode = ASSET_VIEW_MEDIA_MAP;
581                 result = 1;
582         }
583         if( result ) // zero change for refresh
584                 avt->zoom_scale(0);
585         return ViewPopup::keypress_event();
586 }
587
588
589 AssetVIconThread::AssetVIconThread(AWindowGUI *gui, Preferences *preferences)
590  : VIconThread(gui->asset_list, preferences->vicon_size * 16/9, preferences->vicon_size,
591         4*preferences->awindow_picon_h * 16/9, 4*preferences->awindow_picon_h)
592 {
593         this->gui = gui;
594         draw_mode = ASSET_VIEW_NONE;
595         int vicon_cmodel = BC_RGB8;
596         switch( preferences->vicon_color_mode ) {
597         case VICON_COLOR_MODE_LOW:   vicon_cmodel = BC_RGB8;    break;
598         case VICON_COLOR_MODE_MED:   vicon_cmodel = BC_RGB565;  break;
599         case VICON_COLOR_MODE_HIGH:  vicon_cmodel = BC_RGB888;  break;
600         }
601         this->vicon_cmodel = vicon_cmodel;
602         this->draw_lock = new Mutex("AssetVIconThread::draw_lock");
603 }
604
605 AssetVIconThread::~AssetVIconThread()
606 {
607         delete draw_lock;
608 }
609
610 void AssetVIconThread::drawing_started()
611 {
612         draw_lock->lock("AssetVIconThread::drawing_started");
613 }
614
615 void AssetVIconThread::drawing_stopped()
616 {
617         draw_lock->unlock();
618 }
619
620 void AssetVIconThread::set_view_popup(AssetVIcon *v, int draw_mode)
621 {
622         gui->stop_vicon_drawing();
623         this->draw_mode = draw_mode;
624         set_view_popup(v);
625         gui->start_vicon_drawing();
626 }
627
628 void AssetVIconThread::set_view_popup(AssetVIcon *v)
629 {
630         if( !v ) draw_mode = ASSET_VIEW_NONE;
631         VIconThread::set_view_popup(v);
632 }
633
634 ViewPopup *AssetVIconThread::new_view_window(ViewPopup *vpopup)
635 {
636         BC_WindowBase *parent = wdw->get_parent();
637         int rx = 0, ry = 0, rw = 0, rh = 0;
638         if( draw_mode != ASSET_VIEW_FULL ) {
639                 XineramaScreenInfo *info = parent->get_xinerama_info(-1);
640                 int cx = info ? info->x_org + info->width/2 : parent->get_root_w(0)/2;
641                 int cy = info ? info->y_org + info->height/2 : parent->get_root_h(0)/2;
642                 int vx = viewing->get_vx(), vy = viewing->get_vy();
643                 wdw->get_root_coordinates(vx, vy, &rx, &ry);
644                 rx += (rx >= cx ? -view_w+viewing->w/4 : viewing->w-viewing->w/4);
645                 ry += (ry >= cy ? -view_h+viewing->h/4 : viewing->h-viewing->h/4);
646                 rw = view_w;  rh = view_h;
647         }
648         else
649                 parent->get_fullscreen_geometry(rx, ry, rw, rh);
650         AssetViewPopup *av_popup = (AssetViewPopup *)vpopup;
651         if( av_popup )
652                 av_popup->reposition_window(rx, ry, rw, rh);
653         else
654                 av_popup = new AssetViewPopup(this, draw_mode, rx, ry, rw, rh);
655         int playing_audio = gui->play_off ? -1 : 0;
656         if( !playing_audio ) {
657                 switch( draw_mode ) {
658                 case ASSET_VIEW_NONE:
659                 case ASSET_VIEW_ICON:
660                 case ASSET_VIEW_MEDIA_MAP:
661                 case ASSET_VIEW_FULL:
662                         playing_audio = -1;
663                         break;
664                 case ASSET_VIEW_MEDIA:
665                         switch( gui->vicon_drawing ) {
666                         case AVICON_SRC_TARGET:
667                         case AVICON_NO_PLAY:
668                                 playing_audio = -1;
669                                 break;
670                         }
671                 }
672         }
673         vicon->playing_audio = playing_audio;
674         wdw->set_active_subwindow(av_popup);
675         return av_popup;
676 }
677
678 void AssetVIconThread::close_view_popup()
679 {
680         stop_drawing();
681         drawing_started(); // waits for draw lock
682         drawing_stopped();
683 }
684
685
686 AWindowFolderItem::AWindowFolderItem()
687  : BC_ListBoxItem()
688 {
689         parent = 0;
690 }
691
692 AWindowFolderItem::AWindowFolderItem(const char *text, int color)
693  : BC_ListBoxItem(text, color)
694 {
695         parent = 0;
696 }
697
698 AWindowFolderItem::AWindowFolderItem(const char *text, BC_Pixmap *icon, int color)
699  : BC_ListBoxItem(text, icon, color)
700 {
701         parent = 0;
702 }
703
704 AssetPicon *AWindowFolderItem::get_picon()
705 {
706         AWindowFolderItem *item = this;
707         while( item->parent ) { item = (AWindowFolderItem*)item->parent; }
708         return (AssetPicon*)item;
709 }
710
711 int AWindowFolderSubItems::matches(const char *text)
712 {
713         int i = names.size();
714         while( --i >= 0 && strcmp(names[i], text) );
715         if( i < 0 ) {
716                 ArrayList<BC_ListBoxItem *> *sublist = get_sublist();
717                 i = sublist ? sublist->size() : 0;
718                 while( --i >= 0 ) {
719                         AWindowFolderSubItems *item = (AWindowFolderSubItems *)sublist->get(i);
720                         if( item->matches(text) ) break;
721                 }
722         }
723         return i >= 0 ? 1 : 0;
724 }
725
726
727 AssetPicon::AssetPicon(MWindow *mwindow,
728         AWindowGUI *gui, Indexable *indexable)
729  : AWindowFolderItem()
730 {
731         reset();
732         this->mwindow = mwindow;
733         this->gui = gui;
734         this->indexable = indexable;
735         indexable->add_user();
736         this->id = indexable->id;
737 }
738
739 AssetPicon::AssetPicon(MWindow *mwindow,
740         AWindowGUI *gui, EDL *edl)
741  : AWindowFolderItem()
742 {
743         reset();
744         this->mwindow = mwindow;
745         this->gui = gui;
746         this->edl = edl;
747         edl->add_user();
748         this->id = edl->id;
749 }
750
751 AssetPicon::AssetPicon(MWindow *mwindow,
752         AWindowGUI *gui, int folder, int persist)
753  : AWindowFolderItem(_(AWindowGUI::folder_names[folder]),
754         folder>=0 && folder<AWINDOW_FOLDERS ?
755                 gui->folder_icons[folder] : gui->folder_icon)
756 {
757         reset();
758         foldernum = folder;
759         this->mwindow = mwindow;
760         this->gui = gui;
761         persistent = persist;
762 }
763
764 AssetPicon::AssetPicon(MWindow *mwindow,
765         AWindowGUI *gui, int folder, const char *title)
766  : AWindowFolderItem(title, gui->folder_icon)
767 {
768         reset();
769         foldernum = folder;
770         this->mwindow = mwindow;
771         this->gui = gui;
772         persistent = 0;
773 }
774
775 AssetPicon::AssetPicon(MWindow *mwindow,
776         AWindowGUI *gui, PluginServer *plugin)
777  : AWindowFolderItem()
778 {
779         reset();
780         this->mwindow = mwindow;
781         this->gui = gui;
782         this->plugin = plugin;
783 }
784
785 AssetPicon::AssetPicon(MWindow *mwindow,
786         AWindowGUI *gui, Label *label)
787  : AWindowFolderItem()
788 {
789         reset();
790         this->mwindow = mwindow;
791         this->gui = gui;
792         this->label = label;
793         indexable = 0;
794         icon = 0;
795         id = 0;
796 }
797
798 AssetPicon::~AssetPicon()
799 {
800         if( vicon ) vicon->remove_user();
801         delete vicon_frame;
802         if( indexable ) indexable->remove_user();
803         if( edl ) edl->remove_user();
804         if( icon && !gui->protected_pixmap(icon) ) {
805                 delete icon;
806                 if( !plugin ) delete icon_vframe;
807         }
808 }
809
810 void AssetPicon::draw_hue_bar(VFrame *frame, double duration)
811 {
812         float t = duration > 1 ? (log(duration) / log(3600.f)) : 0;
813         if( t > 1 ) t = 1;
814         float h = 300 * t, s = 1., v = 1.;
815         float r, g, b; // duration, 0..1hr == hue red..magenta
816         HSV::hsv_to_rgb(r,g,b, h,s,v);
817         int ih = frame->get_h()/8, iw = frame->get_w();
818         int ir = r * 256;  CLAMP(ir, 0,255);
819         int ig = g * 256;  CLAMP(ig, 0,255);
820         int ib = b * 256;  CLAMP(ib, 0,255);
821         unsigned char **rows = frame->get_rows();
822         for( int y=0; y<ih; ++y ) {
823                 unsigned char *rp = rows[y];
824                 for( int x=0; x<iw; rp+=3,++x ) {
825                         rp[0] = ir;  rp[1] = ig;  rp[2] = ib;
826                 }
827         }
828 }
829
830 void AssetPicon::draw_wave(VFrame *frame, double *dp, int len,
831                 int base_color, int line_color, int x, int y, int w, int h)
832 {
833         int h1 = h-1, h2 = h/2, iy = h2;
834         int rgb_color = frame->pixel_rgb;
835         for( int ix=0,x1=0,x2=0; ix<w; ++ix,x1=x2 ) {
836                 double min = *dp, max = min;
837                 x2 = (len * (ix+1))/w;
838                 for( int i=x1; i<x2; ++i ) {
839                         double value = *dp++;
840                         if( value < min ) min = value;
841                         if( value > max ) max = value;
842                 }
843                 int ctr = (min + max) / 2;
844                 int y0 = (int)(h2 - ctr*h2);  CLAMP(y0, 0,h1);
845                 int y1 = (int)(h2 - min*h2);  CLAMP(y1, 0,h1);
846                 int y2 = (int)(h2 - max*h2);  CLAMP(y2, 0,h1);
847                 frame->pixel_rgb = line_color;
848                 frame->draw_line(ix+x,y1+y, ix+x,y2+y);
849                 frame->pixel_rgb = base_color;
850                 frame->draw_line(ix+x,iy+y, ix+x,y0+y);
851                 iy = y0;
852         }
853         frame->pixel_rgb = rgb_color;
854 }
855
856 void AssetPicon::reset()
857 {
858         plugin = 0;
859         label = 0;
860         indexable = 0;
861         edl = 0;
862         parent = 0;
863         sub_items = 0;
864         foldernum = AW_NO_FOLDER;
865         sort_key = -1;
866         icon = 0;
867         icon_vframe = 0;
868         vicon = 0;
869         vicon_frame = 0;
870         in_use = 1;
871         comments_time = 0;
872         comments_rate = -1;
873         comments_ffmt = ' ';
874         comments_type = "";
875         id = 0;
876         persistent = 0;
877 }
878
879 void AssetPicon::open_render_engine(EDL *edl, int is_audio)
880 {
881         TransportCommand command;
882         command.command = is_audio ? NORMAL_FWD : CURRENT_FRAME;
883         command.get_edl()->copy_all(edl);
884         command.change_type = CHANGE_ALL;
885         command.realtime = 0;
886         render_engine = new RenderEngine(0, mwindow->preferences, 0, 0);
887         render_engine->set_vcache(mwindow->video_cache);
888         render_engine->set_acache(mwindow->audio_cache);
889         render_engine->arm_command(&command);
890 }
891 void AssetPicon::close_render_engine()
892 {
893         delete render_engine;  render_engine = 0;
894 }
895 void AssetPicon::render_video(int64_t pos, VFrame *vfrm)
896 {
897         if( !render_engine || !render_engine->vrender ) return;
898         render_engine->vrender->process_buffer(vfrm, pos, 0);
899 }
900 void AssetPicon::render_audio(int64_t pos, Samples **samples, int len)
901 {
902         if( !render_engine || !render_engine->arender ) return;
903         render_engine->arender->process_buffer(samples, len, pos);
904 }
905
906 void AssetPicon::create_objects()
907 {
908         FileSystem fs;
909         char name[BCTEXTLEN];
910         int pixmap_w, pixmap_h;
911
912         int picon_h = mwindow->preferences->awindow_picon_h;
913         pixmap_h = picon_h * BC_WindowBase::get_resources()->icon_scale;
914
915         Asset *asset = 0;
916         EDL *edl = 0;
917         int is_clip = 0;
918
919         if( this->indexable ) {
920                 fs.extract_name(name, indexable->path);
921                 set_text(name);
922                 if( this->indexable->is_asset )
923                         asset = (Asset *)indexable;
924                 else
925                         edl = (EDL *)indexable;
926         }
927         else if( this->edl ) {
928                 edl = this->edl;
929                 set_text(strcpy(name, edl->local_session->clip_title));
930                 set_text(name);
931                 is_clip = 1;
932         }
933
934         if( asset ) {
935                 if( asset->video_data ) {
936                         if( mwindow->preferences->use_thumbnails ) {
937                                 gui->unlock_window();
938                                 File *file = mwindow->video_cache->check_out(asset,
939                                         mwindow->edl,
940                                         1);
941
942                                 if( file ) {
943                                         int height = asset->height > 0 ? asset->height : 1;
944                                         pixmap_w = pixmap_h * asset->width / height;
945
946                                         file->set_layer(0);
947                                         file->set_video_position(0, 0);
948
949                                         if( gui->temp_picon &&
950                                                 (gui->temp_picon->get_w() != asset->width ||
951                                                 gui->temp_picon->get_h() != asset->height) ) {
952                                                 delete gui->temp_picon;
953                                                 gui->temp_picon = 0;
954                                         }
955
956                                         if( !gui->temp_picon ) {
957                                                 gui->temp_picon = new VFrame(0, -1,
958                                                         asset->width, asset->height,
959                                                         BC_RGB888, -1);
960                                         }
961                                         { char string[BCTEXTLEN];
962                                         sprintf(string, _("Reading %s"), name);
963                                         mwindow->gui->lock_window("AssetPicon::create_objects");
964                                         mwindow->gui->show_message(string);
965                                         mwindow->gui->unlock_window(); }
966                                         file->read_frame(gui->temp_picon);
967                                         mwindow->video_cache->check_in(asset);
968
969                                         gui->lock_window("AssetPicon::create_objects 0");
970                                         icon = new BC_Pixmap(gui, pixmap_w, pixmap_h);
971                                         icon->draw_vframe(gui->temp_picon,
972                                                 0, 0, pixmap_w, pixmap_h, 0, 0);
973                                         icon_vframe = new VFrame(0,
974                                                 -1, pixmap_w, pixmap_h, BC_RGB888, -1);
975                                         icon_vframe->transfer_from(gui->temp_picon);
976                                         if( asset->folder_no == AW_MEDIA_FOLDER ||
977                                             asset->folder_no == AW_PROXY_FOLDER ) {
978 // vicon images
979                                                 double framerate = asset->get_frame_rate();
980                                                 if( !framerate ) framerate = VICON_RATE;
981                                                 int64_t frames = asset->get_video_frames();
982                                                 double secs = frames / framerate;
983                                                 if( secs > 5 ) secs = 5;
984                                                 int64_t length = secs * gui->vicon_thread->refresh_rate;
985                                                 vicon = new AssetVIcon(this, pixmap_w, pixmap_h, framerate, length);
986                                                 if( asset->audio_data && secs > 0 ) {
987                                                         gui->unlock_window();
988                                                         int audio_len = VICON_SAMPLE_RATE*secs+0.5;
989                                                         vicon->init_audio(audio_len*sizeof(vicon_audio_t));
990                                                         vicon->load_audio();
991                                                         gui->lock_window("AssetPicon::create_objects 1");
992                                                 }
993                                                 gui->vicon_thread->add_vicon(vicon);
994                                         }
995                                 }
996                                 else {
997                                         eprintf("Unable to open %s\nin asset: %s",asset->path, get_text());
998                                         gui->lock_window("AssetPicon::create_objects 2");
999                                         icon = gui->video_icon;
1000                                         icon_vframe = gui->video_vframe;
1001                                 }
1002                         }
1003                         else {
1004                                 icon = gui->video_icon;
1005                                 icon_vframe = gui->video_vframe;
1006                         }
1007                 }
1008                 else
1009                 if( asset->audio_data ) {
1010                         if( mwindow->preferences->use_thumbnails ) {
1011                                 gui->unlock_window();
1012                                 File *file = mwindow->audio_cache->check_out(asset,
1013                                         mwindow->edl,
1014                                         1);
1015                                 if( file ) {
1016                                         pixmap_w = pixmap_h * 16/9;
1017                                         icon_vframe = new VFrame(0,
1018                                                 -1, pixmap_w, pixmap_h, BC_RGB888, -1);
1019                                         icon_vframe->clear_frame();
1020                                         { char string[BCTEXTLEN];
1021                                         sprintf(string, _("Reading %s"), name);
1022                                         mwindow->gui->lock_window("AssetPicon::create_objects 3");
1023                                         mwindow->gui->show_message(string);
1024                                         mwindow->gui->unlock_window(); }
1025                                         int sample_rate = asset->get_sample_rate();
1026                                         int channels = asset->get_audio_channels();
1027                                         if( channels > 2 ) channels = 2;
1028                                         int64_t audio_samples = asset->get_audio_samples();
1029                                         double duration = (double)audio_samples / sample_rate;
1030                                         draw_hue_bar(icon_vframe, duration);
1031                                         int bfrsz = sample_rate;
1032                                         Samples samples(bfrsz);
1033                                         static int line_colors[2] = { GREEN, YELLOW };
1034                                         static int base_colors[2] = { RED, PINK };
1035                                         for( int i=channels; --i>=0; ) {
1036                                                 file->set_channel(i);
1037                                                 file->set_audio_position(0);
1038                                                 file->read_samples(&samples, bfrsz);
1039                                                 draw_wave(icon_vframe, samples.get_data(), bfrsz,
1040                                                         base_colors[i], line_colors[i]);
1041                                         }
1042                                         mwindow->audio_cache->check_in(asset);
1043                                         if( asset->folder_no == AW_MEDIA_FOLDER ) {
1044                                                 double secs = duration;
1045                                                 if( secs > 5 ) secs = 5;
1046                                                 double refresh_rate = gui->vicon_thread->refresh_rate;
1047                                                 int64_t length = secs * refresh_rate;
1048                                                 vicon = new AssetVIcon(this, pixmap_w, pixmap_h, refresh_rate, length);
1049                                                 int audio_len = VICON_SAMPLE_RATE*secs+0.5;
1050                                                 vicon->init_audio(audio_len*sizeof(vicon_audio_t));
1051                                                 vicon->load_audio();
1052                                                 gui->vicon_thread->add_vicon(vicon);
1053                                         }
1054                                         gui->lock_window("AssetPicon::create_objects 4");
1055                                         icon = new BC_Pixmap(gui, pixmap_w, pixmap_h);
1056                                         icon->draw_vframe(icon_vframe,
1057                                                 0, 0, pixmap_w, pixmap_h, 0, 0);
1058                                 }
1059                                 else {
1060                                         eprintf("Unable to open %s\nin asset: %s",asset->path, get_text());
1061                                         gui->lock_window("AssetPicon::create_objects 5");
1062                                         icon = gui->audio_icon;
1063                                         icon_vframe = gui->audio_vframe;
1064                                 }
1065                         }
1066                         else {
1067                                 icon = gui->audio_icon;
1068                                 icon_vframe = gui->audio_vframe;
1069                         }
1070
1071                 }
1072                 struct stat st;
1073                 comments_time = !stat(asset->path, &st) ? st.st_mtime : 0;
1074                 comments_rate = asset->get_frame_rate();
1075                 comments_ffmt = asset->format == FILE_FFMPEG ? '=' : '-';
1076                 comments_type = asset->format == FILE_FFMPEG ?
1077                                 asset->vcodec : File::formattostr(asset->format);
1078         }
1079         else if( edl ) {
1080                 if( edl->tracks->playable_video_tracks() ) {
1081                         if( mwindow->preferences->use_thumbnails ) {
1082                                 gui->unlock_window();
1083                                 AssetVIconThread *avt = gui->vicon_thread;
1084                                 char clip_icon_path[BCTEXTLEN];
1085                                 char *clip_icon = edl->local_session->clip_icon;
1086                                 VFrame *vframe = 0;
1087                                 if( is_clip && clip_icon[0] ) {
1088                                         snprintf(clip_icon_path, sizeof(clip_icon_path),
1089                                                 "%s/%s", File::get_config_path(), clip_icon);
1090                                         vframe = VFramePng::vframe_png(clip_icon_path);
1091                                 }
1092                                 if( vframe &&
1093                                     ( vframe->get_w() != avt->vw || vframe->get_h() != avt->vh ) ) {
1094                                         delete vframe;  vframe = 0;
1095                                 }
1096                                 int edl_h = edl->get_h(), edl_w = edl->get_w();
1097                                 int height = edl_h > 0 ? edl_h : 1;
1098                                 int width = edl_w > 0 ? edl_w : 1;
1099                                 int color_model = edl->session->color_model;
1100                                 if( !vframe ) {
1101 //printf("render clip: %s\n", name);
1102                                         VFrame::get_temp(gui->temp_picon, width, height, color_model);
1103                                         char string[BCTEXTLEN];
1104                                         sprintf(string, _("Rendering %s"), name);
1105                                         mwindow->gui->lock_window("AssetPicon::create_objects");
1106                                         mwindow->gui->show_message(string);
1107                                         mwindow->gui->unlock_window();
1108                                         open_render_engine(edl, 0);
1109                                         render_video(0, gui->temp_picon);
1110                                         close_render_engine();
1111                                         vframe = new VFrame(avt->vw, avt->vh, BC_RGB888);
1112                                         vframe->transfer_from(gui->temp_picon);
1113                                         if( this->edl && clip_icon[0] )
1114                                                 vframe->write_png(clip_icon_path);
1115                                 }
1116                                 pixmap_w = pixmap_h * width / height;
1117                                 vicon = new AssetVIcon(this, pixmap_w, pixmap_h, VICON_RATE, 1);
1118                                 vicon->add_image(vframe, avt->vw, avt->vh, avt->vicon_cmodel);
1119                                 icon_vframe = new VFrame(pixmap_w, pixmap_h, BC_RGB888);
1120                                 icon_vframe->transfer_from(vframe);
1121                                 delete vframe;
1122                                 gui->lock_window("AssetPicon::create_objects 0");
1123                                 icon = new BC_Pixmap(gui, pixmap_w, pixmap_h);
1124                                 icon->draw_vframe(icon_vframe,
1125                                         0, 0, pixmap_w, pixmap_h, 0, 0);
1126                         }
1127                         else if( is_clip ) {
1128                                 icon = gui->clip_icon;
1129                                 icon_vframe = gui->clip_vframe;
1130                         }
1131                         else {
1132                                 icon = gui->video_icon;
1133                                 icon_vframe = gui->video_vframe;
1134                         }
1135                 }
1136                 else
1137                 if( edl->tracks->playable_audio_tracks() ) {
1138                         if( mwindow->preferences->use_thumbnails ) {
1139                                 gui->unlock_window();
1140                                 char clip_icon_path[BCTEXTLEN];
1141                                 char *clip_icon = edl->local_session->clip_icon;
1142                                 if( is_clip && clip_icon[0] ) {
1143                                         snprintf(clip_icon_path, sizeof(clip_icon_path),
1144                                                 "%s/%s", File::get_config_path(), clip_icon);
1145                                         icon_vframe = VFramePng::vframe_png(clip_icon_path);
1146                                 }
1147                                 if( !icon_vframe ) {
1148                                         pixmap_w = pixmap_h * 16/9;
1149                                         icon_vframe = new VFrame(0,
1150                                                 -1, pixmap_w, pixmap_h, BC_RGB888, -1);
1151                                         icon_vframe->clear_frame();
1152                                         char string[BCTEXTLEN];
1153                                         sprintf(string, _("Rendering %s"), name);
1154                                         mwindow->gui->lock_window("AssetPicon::create_objects 3");
1155                                         mwindow->gui->show_message(string);
1156                                         mwindow->gui->unlock_window();
1157                                         int sample_rate = edl->get_sample_rate();
1158                                         int channels = edl->get_audio_channels();
1159                                         if( channels > 2 ) channels = 2;
1160                                         int64_t audio_samples = edl->get_audio_samples();
1161                                         double duration = (double)audio_samples / sample_rate;
1162                                         draw_hue_bar(icon_vframe, duration);
1163                                         Samples *samples[MAX_CHANNELS];
1164                                         int bfrsz = sample_rate;
1165                                         for( int i=0; i<MAX_CHANNELS; ++i )
1166                                                 samples[i] = i<channels ? new Samples(bfrsz) : 0;
1167                                         open_render_engine(edl, 1);
1168                                         render_audio(0, samples, bfrsz);
1169                                         close_render_engine();
1170                                         gui->lock_window("AssetPicon::create_objects 4");
1171                                         static int line_colors[2] = { GREEN, YELLOW };
1172                                         static int base_colors[2] = { RED, PINK };
1173                                         for( int i=channels; --i>=0; ) {
1174                                                 draw_wave(icon_vframe, samples[i]->get_data(), bfrsz,
1175                                                         base_colors[i], line_colors[i]);
1176                                         }
1177                                         for( int i=0; i<channels; ++i ) delete samples[i];
1178                                         if( is_clip && clip_icon[0] )
1179                                                 icon_vframe->write_png(clip_icon_path);
1180                                 }
1181                                 else {
1182                                         pixmap_w = icon_vframe->get_w();
1183                                         pixmap_h = icon_vframe->get_h();
1184                                 }
1185                                 icon = new BC_Pixmap(gui, pixmap_w, pixmap_h);
1186                                 icon->draw_vframe(icon_vframe,
1187                                         0, 0, pixmap_w, pixmap_h, 0, 0);
1188                         }
1189                         else if( !indexable ) {
1190                                 icon = gui->clip_icon;
1191                                 icon_vframe = gui->clip_vframe;
1192                         }
1193                         else {
1194                                 icon = gui->audio_icon;
1195                                 icon_vframe = gui->audio_vframe;
1196                         }
1197                 }
1198         }
1199         else if( plugin ) {
1200                 strcpy(name, _(plugin->title));
1201                 set_text(name);
1202                 icon_vframe = plugin->get_picon();
1203                 if( icon_vframe )
1204                         icon = gui->create_pixmap(icon_vframe);
1205                 else if( plugin->audio ) {
1206                         if( plugin->transition ) {
1207                                 icon = gui->atransition_icon;
1208                                 icon_vframe = gui->atransition_vframe;
1209                         }
1210                         else if( plugin->is_ffmpeg() ) {
1211                                 icon = gui->ff_aud_icon;
1212                                 icon_vframe = gui->ff_aud_vframe;
1213                         }
1214                         else if( plugin->is_ladspa() ) {
1215                                 icon = gui->ladspa_icon;
1216                                 icon_vframe = gui->ladspa_vframe;
1217                         }
1218                         else {
1219                                 icon = gui->aeffect_icon;
1220                                 icon_vframe = gui->aeffect_vframe;
1221                         }
1222                 }
1223                 else if( plugin->video ) {
1224                         if( plugin->transition ) {
1225                                 icon = gui->vtransition_icon;
1226                                 icon_vframe = gui->vtransition_vframe;
1227                         }
1228                         else if( plugin->is_ffmpeg() ) {
1229                                 icon = gui->ff_vid_icon;
1230                                 icon_vframe = gui->ff_vid_vframe;
1231                         }
1232                         else {
1233                                 icon = gui->veffect_icon;
1234                                 icon_vframe = gui->veffect_vframe;
1235                         }
1236                 }
1237         }
1238         else if( label ) {
1239                 Units::totext(name,
1240                               label->position,
1241                               mwindow->edl->session->time_format,
1242                               mwindow->edl->session->sample_rate,
1243                               mwindow->edl->session->frame_rate,
1244                               mwindow->edl->session->frames_per_foot);
1245                 set_text(name);
1246                 icon = gui->label_icon;
1247                 icon_vframe = gui->label_vframe;
1248         }
1249         if( !icon ) {
1250                 icon = gui->file_icon;
1251                 icon_vframe = BC_WindowBase::get_resources()->type_to_icon[ICON_UNKNOWN];
1252         }
1253         set_icon(icon);
1254         set_icon_vframe(icon_vframe);
1255 }
1256
1257 AWindowGUI::AWindowGUI(MWindow *mwindow, AWindow *awindow)
1258  : BC_Window(_(PROGRAM_NAME ": Resources"),
1259         mwindow->session->awindow_x, mwindow->session->awindow_y,
1260         mwindow->session->awindow_w, mwindow->session->awindow_h,
1261         xS(100), yS(100), 1, 1, 1)
1262 {
1263         this->mwindow = mwindow;
1264         this->awindow = awindow;
1265
1266         file_vframe = 0;                file_icon = 0;
1267         folder_vframe = 0;              folder_icon = 0;
1268         audio_vframe = 0;               audio_icon = 0;
1269         video_vframe = 0;               video_icon = 0;
1270         label_vframe = 0;               label_icon = 0;
1271
1272         aeffect_folder_vframe = 0;      aeffect_folder_icon = 0;
1273         atransition_folder_vframe = 0;  atransition_folder_icon = 0;
1274         clip_folder_vframe = 0;         clip_folder_icon = 0;
1275         label_folder_vframe = 0;        label_folder_icon = 0;
1276         media_folder_vframe = 0;        media_folder_icon = 0;
1277         proxy_folder_vframe = 0;        proxy_folder_icon = 0;
1278         veffect_folder_vframe = 0;      veffect_folder_icon = 0;
1279         vtransition_folder_vframe = 0;  vtransition_folder_icon = 0;
1280
1281         ladspa_vframe = 0;              ladspa_icon = 0;
1282         ff_aud_vframe = 0;              ff_aud_icon = 0;
1283         ff_vid_vframe = 0;              ff_vid_icon = 0;
1284
1285         clip_vframe = 0;                clip_icon = 0;
1286         atransition_vframe = 0;         atransition_icon = 0;
1287         vtransition_vframe = 0;         vtransition_icon = 0;
1288         aeffect_vframe = 0;             aeffect_icon = 0;
1289         veffect_vframe = 0;             veffect_icon = 0;
1290
1291         plugin_visibility = ((uint64_t)1<<(8*sizeof(uint64_t)-1))-1;
1292         asset_menu = 0;
1293         effectlist_menu = 0;
1294         assetlist_menu = 0;
1295         cliplist_menu = 0;
1296         proxylist_menu = 0;
1297         labellist_menu = 0;
1298         folderlist_menu = 0;
1299         temp_picon = 0;
1300         search_text = 0;
1301         allow_iconlisting = 1;
1302         remove_plugin = 0;
1303         vicon_thread = 0;
1304         vicon_audio = 0;
1305         vicon_drawing = AVICON_FULL_PLAY;
1306         play_off = 0;
1307         tip_info = 0;
1308         displayed_folder = AW_NO_FOLDER;
1309         new_folder_thread = 0;
1310         modify_folder_thread = 0;
1311         folder_lock = new Mutex("AWindowGUI::folder_lock");
1312 }
1313
1314 AWindowGUI::~AWindowGUI()
1315 {
1316         assets.remove_all_objects();
1317         folders.remove_all_objects();
1318         aeffects.remove_all_objects();
1319         veffects.remove_all_objects();
1320         atransitions.remove_all_objects();
1321         vtransitions.remove_all_objects();
1322         labellist.remove_all_objects();
1323         displayed_assets[1].remove_all_objects();
1324
1325         delete new_folder_thread;
1326         delete modify_folder_thread;
1327         delete vicon_thread;
1328         delete vicon_audio;
1329
1330         delete search_text;
1331         delete temp_picon;
1332         delete remove_plugin;
1333
1334         delete file_vframe;             delete file_icon;
1335         delete folder_vframe;           delete folder_icon;
1336         delete audio_vframe;            delete audio_icon;
1337         delete video_vframe;            delete video_icon;
1338         delete label_vframe;            delete label_icon;
1339         delete clip_vframe;             delete clip_icon;
1340         delete aeffect_folder_vframe;   delete aeffect_folder_icon;
1341         delete atransition_folder_vframe; delete atransition_folder_icon;
1342         delete veffect_folder_vframe;   delete veffect_folder_icon;
1343         delete vtransition_folder_vframe; delete vtransition_folder_icon;
1344         delete clip_folder_vframe;      delete clip_folder_icon;
1345         delete label_folder_vframe;     delete label_folder_icon;
1346         delete media_folder_vframe;     delete media_folder_icon;
1347         delete proxy_folder_vframe;     delete proxy_folder_icon;
1348         delete ladspa_vframe;           delete ladspa_icon;
1349         delete ff_aud_vframe;           delete ff_aud_icon;
1350         delete ff_vid_vframe;           delete ff_vid_icon;
1351         delete atransition_vframe;      delete atransition_icon;
1352         delete vtransition_vframe;      delete vtransition_icon;
1353         delete aeffect_vframe;          delete aeffect_icon;
1354         delete veffect_vframe;          delete veffect_icon;
1355         delete folder_lock;
1356 }
1357
1358 bool AWindowGUI::protected_pixmap(BC_Pixmap *icon)
1359 {
1360         return  icon == file_icon ||
1361                 icon == folder_icon ||
1362                 icon == audio_icon ||
1363                 icon == video_icon ||
1364                 icon == clip_icon ||
1365                 icon == label_icon ||
1366                 icon == vtransition_icon ||
1367                 icon == atransition_icon ||
1368                 icon == veffect_icon ||
1369                 icon == aeffect_icon ||
1370                 icon == ladspa_icon ||
1371                 icon == ff_aud_icon ||
1372                 icon == ff_vid_icon ||
1373                 icon == aeffect_folder_icon ||
1374                 icon == veffect_folder_icon ||
1375                 icon == atransition_folder_icon ||
1376                 icon == vtransition_folder_icon ||
1377                 icon == label_folder_icon ||
1378                 icon == clip_folder_icon ||
1379                 icon == media_folder_icon ||
1380                 icon == proxy_folder_icon;
1381 }
1382
1383 VFrame *AWindowGUI::get_picon(const char *name, const char *plugin_icons)
1384 {
1385         char png_path[BCTEXTLEN];
1386         char *pp = png_path, *ep = pp + sizeof(png_path)-1;
1387         snprintf(pp, ep-pp, "%s/picon/%s/%s.png",
1388                 File::get_plugin_path(), plugin_icons, name);
1389         if( access(png_path, R_OK) ) return 0;
1390         return VFramePng::vframe_png(png_path,0,0);
1391 }
1392
1393 VFrame *AWindowGUI::get_picon(const char *name)
1394 {
1395         VFrame *vframe = get_picon(name, mwindow->preferences->plugin_icons);
1396         if( !vframe ) {
1397                 char png_name[BCSTRLEN], *pp = png_name, *ep = pp + sizeof(png_name)-1;
1398                 snprintf(pp, ep-pp, "%s.png", name);
1399                 unsigned char *data = mwindow->theme->get_image_data(png_name);
1400                 if( data ) vframe = new VFramePng(data, 0.);
1401         }
1402         return vframe;
1403 }
1404
1405 void AWindowGUI::resource_icon(VFrame *&vfrm, BC_Pixmap *&icon, const char *fn, int idx)
1406 {
1407         vfrm = get_picon(fn);
1408         if( !vfrm ) vfrm = BC_WindowBase::get_resources()->type_to_icon[idx];
1409         icon = new BC_Pixmap(this, vfrm, PIXMAP_ALPHA);
1410 }
1411 void AWindowGUI::theme_icon(VFrame *&vfrm, BC_Pixmap *&icon, const char *fn)
1412 {
1413         vfrm = get_picon(fn);
1414         if( !vfrm ) vfrm = mwindow->theme->get_image(fn);
1415         icon = new BC_Pixmap(this, vfrm, PIXMAP_ALPHA);
1416 }
1417 void AWindowGUI::plugin_icon(VFrame *&vfrm, BC_Pixmap *&icon, const char *fn, unsigned char *png)
1418 {
1419         vfrm = get_picon(fn);
1420         if( !vfrm ) vfrm = new VFramePng(png);
1421         icon = new BC_Pixmap(this, vfrm, PIXMAP_ALPHA);
1422 }
1423
1424 void AWindowGUI::create_objects()
1425 {
1426         int ys5 = yS(5), ys10 = yS(10);
1427         lock_window("AWindowGUI::create_objects");
1428         asset_titles[0] = C_("Title");
1429         asset_titles[1] = _("Comments");
1430
1431         set_icon(mwindow->theme->get_image("awindow_icon"));
1432
1433         resource_icon(file_vframe,   file_icon,   "film_icon",   ICON_UNKNOWN);
1434         resource_icon(folder_vframe, folder_icon, "folder_icon", ICON_FOLDER);
1435         resource_icon(audio_vframe,  audio_icon,  "audio_icon",  ICON_SOUND);
1436         resource_icon(video_vframe,  video_icon,  "video_icon",  ICON_FILM);
1437         resource_icon(label_vframe,  label_icon,  "label_icon",  ICON_LABEL);
1438
1439         theme_icon(aeffect_folder_vframe,      aeffect_folder_icon,     "aeffect_folder");
1440         theme_icon(atransition_folder_vframe,  atransition_folder_icon, "atransition_folder");
1441         theme_icon(clip_folder_vframe,         clip_folder_icon,        "clip_folder");
1442         theme_icon(label_folder_vframe,        label_folder_icon,       "label_folder");
1443         theme_icon(media_folder_vframe,        media_folder_icon,       "media_folder");
1444         theme_icon(proxy_folder_vframe,        proxy_folder_icon,       "proxy_folder");
1445         theme_icon(veffect_folder_vframe,      veffect_folder_icon,     "veffect_folder");
1446         theme_icon(vtransition_folder_vframe,  vtransition_folder_icon, "vtransition_folder");
1447
1448         folder_icons[AW_AEFFECT_FOLDER] = aeffect_folder_icon;
1449         folder_icons[AW_VEFFECT_FOLDER] = veffect_folder_icon;
1450         folder_icons[AW_ATRANSITION_FOLDER] = atransition_folder_icon;
1451         folder_icons[AW_VTRANSITION_FOLDER] = vtransition_folder_icon;
1452         folder_icons[AW_LABEL_FOLDER] = label_folder_icon;
1453         folder_icons[AW_CLIP_FOLDER] = clip_folder_icon;
1454         folder_icons[AW_MEDIA_FOLDER] = media_folder_icon;
1455         folder_icons[AW_PROXY_FOLDER] = proxy_folder_icon;
1456
1457         theme_icon(clip_vframe,        clip_icon,        "clip_icon");
1458         theme_icon(atransition_vframe, atransition_icon, "atransition_icon");
1459         theme_icon(vtransition_vframe, vtransition_icon, "vtransition_icon");
1460         theme_icon(aeffect_vframe,     aeffect_icon,     "aeffect_icon");
1461         theme_icon(veffect_vframe,     veffect_icon,     "veffect_icon");
1462
1463         plugin_icon(ladspa_vframe, ladspa_icon, "lad_picon", lad_picon_png);
1464         plugin_icon(ff_aud_vframe, ff_aud_icon, "ff_audio",  ff_audio_png);
1465         plugin_icon(ff_vid_vframe, ff_vid_icon, "ff_video",  ff_video_png);
1466         folder_lock->lock("AWindowGUI::create_objects");
1467 // Mandatory folders
1468         folders.append(new AssetPicon(mwindow, this, AW_AEFFECT_FOLDER, 1));
1469         folders.append(new AssetPicon(mwindow, this, AW_VEFFECT_FOLDER, 1));
1470         folders.append(new AssetPicon(mwindow, this, AW_ATRANSITION_FOLDER, 1));
1471         folders.append(new AssetPicon(mwindow, this, AW_VTRANSITION_FOLDER, 1));
1472         folders.append(new AssetPicon(mwindow, this, AW_LABEL_FOLDER, 1));
1473         folders.append(new AssetPicon(mwindow, this, AW_CLIP_FOLDER, 1));
1474         folders.append(new AssetPicon(mwindow, this, AW_PROXY_FOLDER, 1));
1475         folders.append(new AssetPicon(mwindow, this, AW_MEDIA_FOLDER, 1));
1476
1477         create_label_folder();
1478         folder_lock->unlock();
1479
1480         mwindow->theme->get_awindow_sizes(this);
1481         load_defaults(mwindow->defaults);
1482         new_folder_thread = new NewFolderThread(this);
1483         modify_folder_thread = new ModifyFolderThread(this);
1484
1485         int x1 = mwindow->theme->alist_x, y1 = mwindow->theme->alist_y;
1486         int w1 = mwindow->theme->alist_w, h1 = mwindow->theme->alist_h;
1487         search_text = new AWindowSearchText(mwindow, this, x1, y1+ys5);
1488         search_text->create_objects();
1489         int dy = search_text->get_h() + ys10;
1490         y1 += dy;  h1 -= dy;
1491         add_subwindow(asset_list = new AWindowAssets(mwindow, this, x1, y1, w1, h1));
1492
1493         vicon_thread = new AssetVIconThread(this, mwindow->preferences);
1494         asset_list->update_vicon_area();
1495         vicon_thread->start();
1496         vicon_audio = new AssetVIconAudio(this);
1497
1498         add_subwindow(divider = new AWindowDivider(mwindow, this,
1499                 mwindow->theme->adivider_x, mwindow->theme->adivider_y,
1500                 mwindow->theme->adivider_w, mwindow->theme->adivider_h));
1501
1502         divider->set_cursor(HSEPARATE_CURSOR, 0, 0);
1503
1504         int fx = mwindow->theme->afolders_x, fy = mwindow->theme->afolders_y;
1505         int fw = mwindow->theme->afolders_w, fh = mwindow->theme->afolders_h;
1506         int n = sizeof(AVIconDrawing::avicon_names)/sizeof(AVIconDrawing::avicon_names[0]);
1507         int tw = 0;  const char **av_names = AVIconDrawing::avicon_names;
1508         for( int i=0; i<n; ++i ) {
1509                 int nw = get_text_width(MEDIUMFONT, _(av_names[i]));
1510                 if( tw < nw )  tw = nw;
1511         }
1512         int pw = BC_PopupMenu::calculate_w(xS(16), tw, 1);
1513         const char *text = _(AVIconDrawing::avicon_names[vicon_drawing]);
1514         add_subwindow(avicon_drawing = new AVIconDrawing(this, fw, fy, pw, text));
1515         avicon_drawing->create_objects();
1516         add_subwindow(add_tools = new AddTools(mwindow, this, fx, fy, _("Visibility")));
1517         add_tools->create_objects();
1518         fy += add_tools->get_h();  fh -= add_tools->get_h();
1519         add_subwindow(folder_list = new AWindowFolders(mwindow,
1520                 this, fx, fy, fw, fh));
1521         update_effects();
1522         folder_list->load_expanders();
1523
1524         //int x = mwindow->theme->abuttons_x;
1525         //int y = mwindow->theme->abuttons_y;
1526
1527         add_subwindow(asset_menu = new AssetPopup(mwindow, this));
1528         asset_menu->create_objects();
1529         add_subwindow(clip_menu = new ClipPopup(mwindow, this));
1530         clip_menu->create_objects();
1531         add_subwindow(label_menu = new LabelPopup(mwindow, this));
1532         label_menu->create_objects();
1533         add_subwindow(proxy_menu = new ProxyPopup(mwindow, this));
1534         proxy_menu->create_objects();
1535
1536         add_subwindow(effectlist_menu = new EffectListMenu(mwindow, this));
1537         effectlist_menu->create_objects();
1538         add_subwindow(assetlist_menu = new AssetListMenu(mwindow, this));
1539         assetlist_menu->create_objects();
1540         add_subwindow(cliplist_menu = new ClipListMenu(mwindow, this));
1541         cliplist_menu->create_objects();
1542         add_subwindow(labellist_menu = new LabelListMenu(mwindow, this));
1543         labellist_menu->create_objects();
1544         add_subwindow(proxylist_menu = new ProxyListMenu(mwindow, this));
1545         proxylist_menu->create_objects();
1546
1547         add_subwindow(folderlist_menu = new FolderListMenu(mwindow, this));
1548         folderlist_menu->create_objects();
1549
1550         create_custom_xatoms();
1551         unlock_window();
1552 }
1553
1554 int AWindowGUI::resize_event(int w, int h)
1555 {
1556         mwindow->session->awindow_x = get_x();
1557         mwindow->session->awindow_y = get_y();
1558         mwindow->session->awindow_w = w;
1559         mwindow->session->awindow_h = h;
1560
1561         mwindow->theme->get_awindow_sizes(this);
1562         mwindow->theme->draw_awindow_bg(this);
1563         reposition_objects();
1564
1565 //      int x = mwindow->theme->abuttons_x;
1566 //      int y = mwindow->theme->abuttons_y;
1567 //      new_bin->reposition_window(x, y);
1568 //      x += new_bin->get_w();
1569 //      delete_bin->reposition_window(x, y);
1570 //      x += delete_bin->get_w();
1571 //      rename_bin->reposition_window(x, y);
1572 //      x += rename_bin->get_w();
1573 //      delete_disk->reposition_window(x, y);
1574 //      x += delete_disk->get_w();
1575 //      delete_project->reposition_window(x, y);
1576 //      x += delete_project->get_w();
1577 //      info->reposition_window(x, y);
1578 //      x += info->get_w();
1579 //      redraw_index->reposition_window(x, y);
1580 //      x += redraw_index->get_w();
1581 //      paste->reposition_window(x, y);
1582 //      x += paste->get_w();
1583 //      append->reposition_window(x, y);
1584 //      x += append->get_w();
1585 //      view->reposition_window(x, y);
1586
1587         BC_WindowBase::resize_event(w, h);
1588         asset_list->update_vicon_area();
1589         return 1;
1590 }
1591
1592 int AWindowGUI::translation_event()
1593 {
1594         mwindow->session->awindow_x = get_x();
1595         mwindow->session->awindow_y = get_y();
1596         return 0;
1597 }
1598
1599 void AWindowGUI::reposition_objects()
1600 {
1601         int ys5 = yS(5), ys10 = yS(10);
1602         int x1 = mwindow->theme->alist_x, y1 = mwindow->theme->alist_y;
1603         int w1 = mwindow->theme->alist_w, h1 = mwindow->theme->alist_h;
1604         search_text->reposition_window(x1, y1+ys5, w1);
1605         int dy = search_text->get_h() + ys10;
1606         y1 += dy;  h1 -= dy;
1607         asset_list->reposition_window(x1, y1, w1, h1);
1608         divider->reposition_window(
1609                 mwindow->theme->adivider_x, mwindow->theme->adivider_y,
1610                 mwindow->theme->adivider_w, mwindow->theme->adivider_h);
1611         int fx = mwindow->theme->afolders_x, fy = mwindow->theme->afolders_y;
1612         int fw = mwindow->theme->afolders_w, fh = mwindow->theme->afolders_h;
1613         add_tools->resize_event(fw-avicon_w, add_tools->get_h());
1614         avicon_drawing->reposition_window(fw-avicon_drawing->get_w(), fy);
1615         fy += add_tools->get_h();  fh -= add_tools->get_h();
1616         folder_list->reposition_window(fx, fy, fw, fh);
1617 }
1618
1619 int AWindowGUI::save_defaults(BC_Hash *defaults)
1620 {
1621         defaults->update("PLUGIN_VISIBILTY", plugin_visibility);
1622         defaults->update("VICON_DRAWING", vicon_drawing);
1623         defaults->update("TIP_INFO", tip_info);
1624         return 0;
1625 }
1626
1627 int AWindowGUI::load_defaults(BC_Hash *defaults)
1628 {
1629         plugin_visibility = defaults->get("PLUGIN_VISIBILTY", plugin_visibility);
1630         vicon_drawing = defaults->get("VICON_DRAWING", vicon_drawing);
1631         tip_info = defaults->get("TIP_INFO", tip_info);
1632         return 0;
1633 }
1634
1635 int AWindowGUI::close_event()
1636 {
1637         hide_window();
1638         mwindow->session->show_awindow = 0;
1639         unlock_window();
1640
1641         mwindow->gui->lock_window("AWindowGUI::close_event");
1642         mwindow->gui->mainmenu->show_awindow->set_checked(0);
1643         mwindow->gui->unlock_window();
1644
1645         lock_window("AWindowGUI::close_event");
1646         save_defaults(mwindow->defaults);
1647         mwindow->save_defaults();
1648         return 1;
1649 }
1650
1651 int AWindowGUI::start_vicon_drawing()
1652 {
1653         if( play_off ) return stop_vicon_drawing();
1654         if( !vicon_thread->interrupted ) return 1;
1655         switch( vicon_drawing ) {
1656         case AVICON_FULL_PLAY:  // all vicons, viewing, target
1657                 break;
1658         case AVICON_MOUSE_OVER: // one vicon, viewing, target
1659                 if( vicon_thread->solo ) break;
1660         // fall thru
1661         case AVICON_SRC_TARGET: // no vicons, no view, target
1662         case AVICON_NO_PLAY:    // no vicons, no view, no target
1663                 return 0;
1664         }
1665         if( mwindow->edl->session->awindow_folder == AW_MEDIA_FOLDER ||
1666             mwindow->edl->session->awindow_folder == AW_PROXY_FOLDER ||
1667             mwindow->edl->session->awindow_folder == AW_CLIP_FOLDER ||
1668             mwindow->edl->session->awindow_folder >= AWINDOW_USER_FOLDERS ) {
1669                 switch( mwindow->edl->session->assetlist_format ) {
1670                 case ASSETS_ICONS:
1671                 case ASSETS_ICONS_PACKED:
1672                 case ASSETS_ICON_LIST:
1673                         asset_list->update_vicon_area();
1674                         vicon_thread->start_drawing();
1675                         break;
1676                 default:
1677                         break;
1678                 }
1679         }
1680         return 1;
1681 }
1682
1683 int AWindowGUI::stop_vicon_drawing()
1684 {
1685         if( !vicon_thread->interrupted )
1686                 vicon_thread->stop_drawing();
1687         return 0;
1688 }
1689
1690 void AWindowGUI::close_view_popup()
1691 {
1692         vicon_thread->close_view_popup();
1693 }
1694
1695 VFrame *AssetPicon::get_vicon_frame()
1696 {
1697         if( !vicon ) return 0;
1698         if( gui->vicon_thread->interrupted ) return 0;
1699         VFrame *frame = vicon->frame();
1700         if( !frame ) return 0;
1701         if( !vicon_frame )
1702                 vicon_frame = new VFrame(vicon->w, vicon->h, frame->get_color_model());
1703         vicon_frame->transfer_from(frame);
1704         return vicon_frame;
1705 }
1706
1707 int AWindowGUI::cycle_assetlist_format()
1708 {
1709         EDLSession *session = mwindow->edl->session;
1710         int format = ASSETS_TEXT;
1711         if( allow_iconlisting ) {
1712                 switch( session->assetlist_format ) {
1713                 case ASSETS_TEXT:
1714                         format = ASSETS_ICONS;
1715                         break;
1716                 case ASSETS_ICONS:
1717                         format = ASSETS_ICONS_PACKED;
1718                         break;
1719                 case ASSETS_ICONS_PACKED:
1720                         format = ASSETS_ICON_LIST;
1721                         break;
1722                 case ASSETS_ICON_LIST:
1723                         format = ASSETS_TEXT;
1724                         break;
1725                 }
1726         }
1727         stop_vicon_drawing();
1728         session->assetlist_format = format;
1729         asset_list->update_format(session->assetlist_format, 0);
1730         async_update_assets();
1731         start_vicon_drawing();
1732         return 1;
1733 }
1734
1735 void AWindowGUI::hide_tip_info()
1736 {
1737         asset_list->hide_tooltip();
1738 }
1739
1740
1741 AWindowRemovePluginGUI::
1742 AWindowRemovePluginGUI(AWindow *awindow, AWindowRemovePlugin *thread,
1743         int x, int y, PluginServer *plugin)
1744  : BC_Window(_(PROGRAM_NAME ": Remove plugin"), x,y,
1745                 xS(500),yS(200), xS(50), yS(50),
1746                 1, 0, 1, -1, "", 1)
1747 {
1748         this->awindow = awindow;
1749         this->thread = thread;
1750         this->plugin = plugin;
1751         VFrame *vframe = plugin->get_picon();
1752         icon = vframe ? create_pixmap(vframe) : 0;
1753         plugin_list.append(new BC_ListBoxItem(plugin->title, icon));
1754 }
1755
1756 AWindowRemovePluginGUI::
1757 ~AWindowRemovePluginGUI()
1758 {
1759         if( !awindow->gui->protected_pixmap(icon) )
1760                 delete icon;
1761         plugin_list.remove_all();
1762 }
1763
1764 void AWindowRemovePluginGUI::create_objects()
1765 {
1766         int xs10 = xS(10), xs20 = xS(20);
1767         int ys5 = yS(5), ys10 = yS(10);
1768         lock_window("AWindowRemovePluginGUI::create_objects");
1769         BC_Button *ok_button = new BC_OKButton(this);
1770         add_subwindow(ok_button);
1771         BC_Button *cancel_button = new BC_CancelButton(this);
1772         add_subwindow(cancel_button);
1773         int x = xs10, y = ys10;
1774         BC_Title *title = new BC_Title(x, y, _("remove plugin?"));
1775         add_subwindow(title);
1776         y += title->get_h() + ys5;
1777         list = new BC_ListBox(x, y,
1778                 get_w() - xs20, ok_button->get_y() - y - ys5, LISTBOX_TEXT, &plugin_list,
1779                 0, 0, 1, 0, 0, LISTBOX_SINGLE, ICON_LEFT, 0);
1780         add_subwindow(list);
1781         show_window();
1782         unlock_window();
1783 }
1784
1785 int AWindowRemovePlugin::remove_plugin(PluginServer *plugin, ArrayList<BC_ListBoxItem*> &folder)
1786 {
1787         int ret = 0;
1788         for( int i=0; i<folder.size(); ) {
1789                 AssetPicon *picon = (AssetPicon *)folder[i];
1790                 if( picon->plugin == plugin ) {
1791                         folder.remove_object_number(i);
1792                         ++ret;
1793                         continue;
1794                 }
1795                 ++i;
1796         }
1797         return ret;
1798 }
1799
1800 void AWindowRemovePlugin::handle_close_event(int result)
1801 {
1802         if( !result ) {
1803                 printf(_("remove %s\n"), plugin->path);
1804                 awindow->gui->lock_window("AWindowRemovePlugin::handle_close_event");
1805                 ArrayList<BC_ListBoxItem*> *folder =
1806                         plugin->audio ? plugin->transition ?
1807                                 &awindow->gui->atransitions :
1808                                 &awindow->gui->aeffects :
1809                         plugin->video ?  plugin->transition ?
1810                                 &awindow->gui->vtransitions :
1811                                 &awindow->gui->veffects :
1812                         0;
1813                 if( folder ) remove_plugin(plugin, *folder);
1814                 MWindow *mwindow = awindow->mwindow;
1815                 awindow->gui->unlock_window();
1816                 char plugin_path[BCTEXTLEN];
1817                 strcpy(plugin_path, plugin->path);
1818                 mwindow->plugindb->remove(plugin);
1819                 remove(plugin_path);
1820                 char index_path[BCTEXTLEN];
1821                 mwindow->create_defaults_path(index_path, PLUGIN_FILE);
1822                 remove(index_path);
1823                 char picon_path[BCTEXTLEN];
1824                 FileSystem fs;
1825                 snprintf(picon_path, sizeof(picon_path), "%s/picon",
1826                         File::get_plugin_path());
1827                 char png_name[BCSTRLEN], png_path[BCTEXTLEN];
1828                 plugin->get_plugin_png_name(png_name);
1829                 fs.update(picon_path);
1830                 for( int i=0; i<fs.dir_list.total; ++i ) {
1831                         char *fs_path = fs.dir_list[i]->path;
1832                         if( !fs.is_dir(fs_path) ) continue;
1833                         snprintf(png_path, sizeof(picon_path), "%s/%s",
1834                                 fs_path, png_name);
1835                         remove(png_path);
1836                 }
1837                 delete plugin;  plugin = 0;
1838                 awindow->gui->async_update_assets();
1839         }
1840 }
1841
1842 AWindowRemovePlugin::
1843 AWindowRemovePlugin(AWindow *awindow, PluginServer *plugin)
1844  : BC_DialogThread()
1845 {
1846         this->awindow = awindow;
1847         this->plugin = plugin;
1848 }
1849
1850 AWindowRemovePlugin::
1851 ~AWindowRemovePlugin()
1852 {
1853         close_window();
1854 }
1855
1856 BC_Window* AWindowRemovePlugin::new_gui()
1857 {
1858         int x = awindow->gui->get_abs_cursor_x(0);
1859         int y = awindow->gui->get_abs_cursor_y(0);
1860         AWindowRemovePluginGUI *gui = new AWindowRemovePluginGUI(awindow, this, x, y, plugin);
1861         gui->create_objects();
1862         return gui;
1863 }
1864
1865 int AWindowGUI::keypress_event()
1866 {
1867         switch( get_keypress() ) {
1868         case 'w': case 'W':
1869                 if( ctrl_down() ) {
1870                         close_event();
1871                         return 1;
1872                 }
1873                 break;
1874         case 'i':
1875                 tip_info = !tip_info ? 1 : 0;
1876                 if( !tip_info ) hide_tip_info();
1877                 return 1;
1878         case 'o':
1879                 if( !ctrl_down() && !shift_down() ) {
1880                         assetlist_menu->load_file->handle_event();
1881                         return 1;
1882                 }
1883                 break;
1884         case 'v':
1885                 return cycle_assetlist_format();
1886         case DELETE:
1887                 if( shift_down() && ctrl_down() ) {
1888                         PluginServer* plugin = selected_plugin();
1889                         if( !plugin ) break;
1890                         remove_plugin = new AWindowRemovePlugin(awindow, plugin);
1891                         unlock_window();
1892                         remove_plugin->start();
1893                         lock_window("AWindowGUI::keypress_event 1");
1894                         return 1;
1895                 }
1896                 collect_assets();
1897                 if( shift_down() ) {
1898                         mwindow->awindow->asset_remove->start();
1899                         return 1;
1900                 }
1901                 unlock_window();
1902                 mwindow->remove_assets_from_project(1, 1, 1,
1903                         mwindow->session->drag_assets,
1904                         mwindow->session->drag_clips);
1905                 lock_window("AWindowGUI::keypress_event 2");
1906                 return 1;
1907         case KEY_F1:
1908         case KEY_F2:
1909         case KEY_F3:
1910         case KEY_F4:
1911                 if( shift_down() && ctrl_down() ) {
1912                         resend_event(mwindow->gui);
1913                         return 1;
1914                 }
1915                 break;
1916         }
1917         return 0;
1918 }
1919
1920
1921
1922 int AWindowGUI::create_custom_xatoms()
1923 {
1924         UpdateAssetsXAtom = create_xatom("CWINDOWGUI_UPDATE_ASSETS");
1925         return 0;
1926 }
1927 int AWindowGUI::receive_custom_xatoms(xatom_event *event)
1928 {
1929         if( event->message_type == UpdateAssetsXAtom ) {
1930                 update_assets();
1931                 return 1;
1932         }
1933         return 0;
1934 }
1935
1936 void AWindowGUI::async_update_assets()
1937 {
1938         xatom_event event;
1939         event.message_type = UpdateAssetsXAtom;
1940         send_custom_xatom(&event);
1941 }
1942
1943
1944 void AWindowGUI::update_folder_list()
1945 {
1946         for( int i = 0; i < folders.total; i++ ) {
1947                 AssetPicon *picon = (AssetPicon*)folders.values[i];
1948                 picon->in_use = 0;
1949         }
1950
1951 // Search assets for folders
1952         for( int i = 0; i < mwindow->edl->folders.total; i++ ) {
1953                 BinFolder *bin_folder = mwindow->edl->folders[i];
1954                 int exists = 0;
1955
1956                 for( int j = 0; j < folders.total; j++ ) {
1957                         AssetPicon *picon = (AssetPicon*)folders[j];
1958                         if( !strcasecmp(picon->get_text(), bin_folder->title) ) {
1959                                 exists = 1;
1960                                 picon->in_use = 1;
1961                                 break;
1962                         }
1963                 }
1964
1965                 if( !exists ) {
1966                         const char *title = bin_folder->title;
1967                         int folder = bin_folder->awindow_folder;
1968                         AssetPicon *picon = new AssetPicon(mwindow, this, folder, title);
1969                         picon->create_objects();
1970                         folders.append(picon);
1971                 }
1972         }
1973
1974 // Delete unused non-persistent folders
1975         int do_autoplace = 0;
1976         for( int i=folders.total; --i>=0; ) {
1977                 AssetPicon *picon = (AssetPicon*)folders.values[i];
1978                 if( !picon->in_use && !picon->persistent ) {
1979                         delete picon;
1980                         folders.remove_number(i);
1981                         do_autoplace = 1;
1982                 }
1983         }
1984         if( do_autoplace )
1985                 folder_list->set_autoplacement(&folders, 0, 1);
1986 }
1987
1988 void AWindowGUI::create_persistent_folder(ArrayList<BC_ListBoxItem*> *output,
1989         int do_audio, int do_video, int is_realtime, int is_transition)
1990 {
1991         ArrayList<PluginServer*> plugin_list;
1992 // Get pointers to plugindb entries
1993         mwindow->search_plugindb(do_audio, do_video, is_realtime, is_transition,
1994                         0, plugin_list);
1995
1996         for( int i = 0; i < plugin_list.total; i++ ) {
1997                 PluginServer *server = plugin_list.values[i];
1998                 int visible = plugin_visibility & (1<<server->dir_idx);
1999                 if( !visible ) continue;
2000 // Create new listitem
2001                 AssetPicon *picon = new AssetPicon(mwindow, this, server);
2002                 picon->create_objects();
2003                 output->append(picon);
2004         }
2005 }
2006
2007 void AWindowGUI::create_label_folder()
2008 {
2009         Label *current;
2010         for( current = mwindow->edl->labels->first; current; current = NEXT ) {
2011                 AssetPicon *picon = new AssetPicon(mwindow, this, current);
2012                 picon->create_objects();
2013                 labellist.append(picon);
2014         }
2015 }
2016
2017
2018 void AWindowGUI::update_asset_list()
2019 {
2020         ArrayList<AssetPicon *> new_assets;
2021         for( int i = 0; i < assets.total; i++ ) {
2022                 AssetPicon *picon = (AssetPicon*)assets.values[i];
2023                 picon->in_use = 0;
2024         }
2025
2026         mwindow->gui->lock_window("AWindowGUI::update_asset_list");
2027 // Synchronize EDL clips
2028         for( int i=0; i<mwindow->edl->clips.size(); ++i ) {
2029                 int exists = 0;
2030
2031 // Look for clip in existing listitems
2032                 for( int j = 0; j < assets.total && !exists; j++ ) {
2033                         AssetPicon *picon = (AssetPicon*)assets.values[j];
2034
2035                         if( picon->id == mwindow->edl->clips[i]->id ) {
2036                                 picon->edl = mwindow->edl->clips[i];
2037                                 picon->set_text(mwindow->edl->clips[i]->local_session->clip_title);
2038                                 exists = 1;
2039                                 picon->in_use = 1;
2040                         }
2041                 }
2042
2043 // Create new listitem
2044                 if( !exists ) {
2045                         AssetPicon *picon = new AssetPicon(mwindow,
2046                                 this, mwindow->edl->clips[i]);
2047                         new_assets.append(picon);
2048                 }
2049         }
2050
2051 // Synchronize EDL assets
2052         for( Asset *current=mwindow->edl->assets->first; current; current=NEXT ) {
2053                 int exists = 0;
2054
2055 // Look for asset in existing listitems
2056                 for( int j = 0; j < assets.total && !exists; j++ ) {
2057                         AssetPicon *picon = (AssetPicon*)assets.values[j];
2058
2059                         if( picon->id == current->id ) {
2060                                 picon->indexable = current;
2061                                 picon->in_use = 1;
2062                                 exists = 1;
2063                         }
2064                 }
2065
2066 // Create new listitem
2067                 if( !exists ) {
2068                         AssetPicon *picon = new AssetPicon(mwindow,
2069                                 this, current);
2070                         new_assets.append(picon);
2071                 }
2072         }
2073
2074 // Synchronize nested EDLs
2075         for( int i=0; i<mwindow->edl->nested_edls.size(); ++i ) {
2076                 int exists = 0;
2077                 EDL *nested_edl = mwindow->edl->nested_edls[i];
2078
2079 // Look for asset in existing listitems
2080                 for( int j=0; j<assets.total && !exists; ++j ) {
2081                         AssetPicon *picon = (AssetPicon*)assets.values[j];
2082
2083                         if( picon->id == nested_edl->id ) {
2084                                 picon->indexable = nested_edl;
2085                                 picon->in_use = 1;
2086                                 exists = 1;
2087                         }
2088                 }
2089
2090 // Create new listitem
2091                 if( !exists ) {
2092                         AssetPicon *picon = new AssetPicon(mwindow,
2093                                 this, (Indexable*)nested_edl);
2094                         new_assets.append(picon);
2095                 }
2096         }
2097         mwindow->gui->unlock_window();
2098
2099         for( int i=0; i<new_assets.size(); ++i ) {
2100                 AssetPicon *picon = new_assets[i];
2101                 picon->create_objects();
2102                 if( picon->indexable )
2103                         picon->foldernum = AW_MEDIA_FOLDER;
2104                 else if( picon->edl )
2105                         picon->foldernum = AW_CLIP_FOLDER;
2106                 assets.append(picon);
2107         }
2108
2109         mwindow->gui->lock_window();
2110         mwindow->gui->default_message();
2111         mwindow->gui->unlock_window();
2112
2113         for( int i = assets.size() - 1; i >= 0; i-- ) {
2114                 AssetPicon *picon = (AssetPicon*)assets.get(i);
2115                 if( !picon->in_use ) {
2116                         delete picon;
2117                         assets.remove_number(i);
2118                         continue;
2119                 }
2120                 if( picon->indexable && picon->indexable->is_asset ) {
2121                         Asset *asset = (Asset *)picon->indexable;
2122                         struct stat st;
2123                         picon->comments_time = !stat(asset->path, &st) ? st.st_mtime : 0;
2124                         picon->comments_rate = asset->get_frame_rate();
2125                         picon->comments_ffmt = asset->format == FILE_FFMPEG ? '=' : '-';
2126                         picon->comments_type = asset->format == FILE_FFMPEG ?
2127                                 asset->vcodec : File::formattostr(asset->format);
2128                 }
2129         }
2130 }
2131
2132 void AWindowGUI::update_picon(Indexable *indexable)
2133 {
2134         VIcon *vicon = 0;
2135         for( int i = 0; i < assets.total; i++ ) {
2136                 AssetPicon *picon = (AssetPicon*)assets.values[i];
2137                 if( picon->indexable == indexable ||
2138                     picon->edl == (EDL *)indexable ) {
2139                         char name[BCTEXTLEN];
2140                         FileSystem fs;
2141                         fs.extract_name(name, indexable->path);
2142                         picon->set_text(name);
2143                         vicon = picon->vicon;
2144                         break;
2145                 }
2146         }
2147         if( vicon ) {
2148                 stop_vicon_drawing();
2149                 vicon->clear_images();
2150                 vicon->reset(indexable->get_frame_rate());
2151                 start_vicon_drawing();
2152         }
2153 }
2154
2155 void AWindowGUI::sort_assets()
2156 {
2157         folder_lock->lock("AWindowGUI::sort_assets");
2158         switch( mwindow->edl->session->awindow_folder ) {
2159         case AW_AEFFECT_FOLDER:
2160                 sort_picons(&aeffects);
2161                 break;
2162         case AW_VEFFECT_FOLDER:
2163                 sort_picons(&veffects);
2164                 break;
2165         case AW_ATRANSITION_FOLDER:
2166                 sort_picons(&atransitions);
2167                 break;
2168         case AW_VTRANSITION_FOLDER:
2169                 sort_picons(&vtransitions);
2170                 break;
2171         case AW_LABEL_FOLDER:
2172                 sort_picons(&labellist);
2173                 break;
2174         default:
2175                 sort_picons(&assets);
2176                 break;
2177         }
2178 // reset xyposition
2179         asset_list->update_format(asset_list->get_format(), 0);
2180         folder_lock->unlock();
2181         update_assets();
2182 }
2183
2184 void AWindowGUI::sort_folders()
2185 {
2186         folder_lock->lock("AWindowGUI::update_assets");
2187 //      folder_list->collapse_recursive(&folders, 0);
2188         folder_list->set_autoplacement(&folders, 0, 1);
2189         sort_picons(&folders);
2190         folder_list->update_format(folder_list->get_format(), 0);
2191         folder_lock->unlock();
2192         update_assets();
2193 }
2194
2195 EDL *AWindowGUI::collect_proxy(Indexable *indexable)
2196 {
2197         Asset *proxy_asset = (Asset *)indexable;
2198         char path[BCTEXTLEN];
2199         int proxy_scale = mwindow->edl->session->proxy_scale;
2200         ProxyRender::from_proxy_path(path, proxy_asset, proxy_scale);
2201         Asset *unproxy_asset = mwindow->edl->assets->get_asset(path);
2202         if( !unproxy_asset || !unproxy_asset->layers ) return 0;
2203 // make a clip from proxy video tracks and unproxy audio tracks
2204         EDL *proxy_edl = new EDL(mwindow->edl);
2205         proxy_edl->create_objects();
2206         proxy_edl->set_path(proxy_asset->path);
2207         FileSystem fs;  fs.extract_name(path, proxy_asset->path);
2208         strcpy(proxy_edl->local_session->clip_title, path);
2209         strcpy(proxy_edl->local_session->clip_notes, _("Proxy clip"));
2210         proxy_edl->session->video_tracks = proxy_asset->layers;
2211         proxy_edl->session->audio_tracks = unproxy_asset->channels;
2212         proxy_edl->create_default_tracks();
2213         double length = proxy_asset->frame_rate > 0 ?
2214                 ( proxy_asset->video_length >= 0 ?
2215                         ( proxy_asset->video_length / proxy_asset->frame_rate ) :
2216                         ( proxy_edl->session->si_useduration ?
2217                                 proxy_edl->session->si_duration :
2218                                 1.0 / proxy_asset->frame_rate ) ) :
2219                 1.0 / proxy_edl->session->frame_rate;
2220         Track *current = proxy_edl->tracks->first;
2221         for( int vtrack=0; current; current=NEXT ) {
2222                 if( current->data_type != TRACK_VIDEO ) continue;
2223                 current->insert_asset(proxy_asset, 0, length, 0, vtrack++);
2224         }
2225         length = (double)unproxy_asset->audio_length / unproxy_asset->sample_rate;
2226         current = proxy_edl->tracks->first;
2227         for( int atrack=0; current; current=NEXT ) {
2228                 if( current->data_type != TRACK_AUDIO ) continue;
2229                 current->insert_asset(unproxy_asset, 0, length, 0, atrack++);
2230         }
2231         proxy_edl->folder_no = AW_PROXY_FOLDER;
2232         return proxy_edl;
2233 }
2234
2235
2236 void AWindowGUI::collect_assets(int proxy)
2237 {
2238         mwindow->session->drag_assets->remove_all();
2239         mwindow->session->drag_clips->remove_all();
2240         int i = 0;  AssetPicon *result;
2241         while( (result = (AssetPicon*)asset_list->get_selection(0, i++)) != 0 ) {
2242                 Indexable *indexable = result->indexable;
2243                 if( proxy && indexable && indexable->is_asset &&
2244                     indexable->folder_no == AW_PROXY_FOLDER ) {
2245                         EDL *drag_edl = collect_proxy(indexable);
2246                         if( drag_edl ) mwindow->session->drag_clips->append(drag_edl);
2247                         continue;
2248                 }
2249                 if( indexable ) {
2250                         mwindow->session->drag_assets->append(indexable);
2251                         continue;
2252                 }
2253                 if( result->edl ) {
2254                         mwindow->session->drag_clips->append(result->edl);
2255                         continue;
2256                 }
2257         }
2258 }
2259
2260 void AWindowGUI::copy_picons(AssetPicon *picon, ArrayList<BC_ListBoxItem*> *src)
2261 {
2262 // Remove current pointers
2263         ArrayList<BC_ListBoxItem*> *dst = displayed_assets;
2264         dst[0].remove_all();
2265         dst[1].remove_all_objects();
2266
2267         AWindowFolderSubItems *sub_items = picon ? picon->sub_items : 0;
2268         int folder = mwindow->edl->session->awindow_folder;
2269         BinFolder *bin_folder = folder < AWINDOW_USER_FOLDERS ? 0 :
2270                 mwindow->edl->get_folder(folder);
2271
2272 // Create new pointers
2273         for( int i = 0; i < src->total; i++ ) {
2274                 int visible = folder >= AW_CLIP_FOLDER ? 0 : 1;
2275                 picon = (AssetPicon*)src->values[i];
2276                 picon->sort_key = -1;
2277                 if( !visible && bin_folder ) {
2278                         Indexable *idxbl = bin_folder->is_clips ? (Indexable *)picon->edl :
2279                             picon->indexable ? picon->indexable :
2280                             picon->edl ? picon->edl->get_proxy_asset() : 0;
2281                         if( idxbl ) {
2282                                 picon->sort_key = mwindow->edl->folders.matches_indexable(folder, idxbl);
2283                                 if( picon->sort_key < 0 ) continue;
2284                                 visible = 1;
2285                         }
2286                 }
2287                 if( !visible && picon->indexable && picon->indexable->folder_no == folder )
2288                         visible = 1;
2289                 if( !visible && picon->edl && picon->edl->folder_no == folder )
2290                         visible = 1;
2291                 if( visible && sub_items ) {
2292                         if( !sub_items->matches(picon->get_text()) )
2293                                 visible = 0;
2294                 }
2295                 if( visible ) {
2296                         const char *text = search_text->get_text();
2297                         if( text && text[0] )
2298                                 visible = bstrcasestr(picon->get_text(), text) ? 1 : 0;
2299                 }
2300                 if( visible && picon->vicon && picon->vicon->hidden )
2301                         picon->vicon->hidden = 0;
2302                 if( visible ) {
2303                         BC_ListBoxItem *item2, *item1;
2304                         dst[0].append(item1 = picon);
2305                         if( picon->edl )
2306                                 dst[1].append(item2 = new BC_ListBoxItem(picon->edl->local_session->clip_notes));
2307                         else
2308                         if( picon->label )
2309                                 dst[1].append(item2 = new BC_ListBoxItem(picon->label->textstr));
2310                         else if( picon->comments_time ) {
2311                                 char date_time[BCSTRLEN];
2312                                 struct tm stm;  localtime_r(&picon->comments_time, &stm);
2313                                 sprintf(date_time,"%04d.%02d.%02d %02d:%02d:%02d @%0.2f %c%s",
2314                                          stm.tm_year+1900, stm.tm_mon+1, stm.tm_mday,
2315                                          stm.tm_hour, stm.tm_min, stm.tm_sec,
2316                                         picon->comments_rate, picon->comments_ffmt,
2317                                         picon->comments_type);
2318                                 dst[1].append(item2 = new BC_ListBoxItem(date_time));
2319                         }
2320                         else
2321                                 dst[1].append(item2 = new BC_ListBoxItem(""));
2322                         item1->set_autoplace_text(1);  item1->set_autoplace_icon(1);
2323                         item2->set_autoplace_text(1);  item2->set_autoplace_icon(1);
2324                 }
2325         }
2326 }
2327
2328 void AWindowGUI::sort_picons(ArrayList<BC_ListBoxItem*> *src)
2329 {
2330         int done = 0, changed = 0;
2331         while( !done ) {
2332                 done = 1;
2333                 for( int i=0; i<src->total-1; ++i ) {
2334                         AssetPicon *item1 = (AssetPicon *)src->values[i];
2335                         AssetPicon *item2 = (AssetPicon *)src->values[i + 1];
2336                         double v = item2->sort_key - item1->sort_key;
2337                         if( v > 0 ) continue;
2338                         if( v == 0 ) {
2339                                 const char *cp1 = item1->get_text();
2340                                 const char *bp1 = strrchr(cp1, '/');
2341                                 if( bp1 ) cp1 = bp1 + 1;
2342                                 const char *cp2 = item2->get_text();
2343                                 const char *bp2 = strrchr(cp2, '/');
2344                                 if( bp2 ) cp2 = bp2 + 1;
2345                                 if( strcmp(cp2, cp1) >= 0 ) continue;
2346                         }
2347                         src->values[i + 1] = item1;
2348                         src->values[i] = item2;
2349                         done = 0;  changed = 1;
2350                 }
2351         }
2352         if( changed ) {
2353                 for( int i=0; i<src->total; ++i ) {
2354                         AssetPicon *item = (AssetPicon *)src->values[i];
2355                         item->set_autoplace_icon(1);
2356                         item->set_autoplace_text(1);
2357                 }
2358         }
2359 }
2360
2361 void AWindowGUI::filter_displayed_assets()
2362 {
2363         //allow_iconlisting = 1;
2364         asset_titles[0] = C_("Title");
2365         asset_titles[1] = _("Comments");
2366         AssetPicon *picon = 0;
2367         int selected_folder = mwindow->edl->session->awindow_folder;
2368         // Ensure the current folder icon is highlighted
2369         for( int i = 0; i < folders.total; i++ ) {
2370                 AssetPicon *folder_item = (AssetPicon *)folders.values[i];
2371                 int selected = folder_item->foldernum == selected_folder ? 1 : 0;
2372                 folder_item->set_selected(selected);
2373                 if( selected ) picon = folder_item;
2374         }
2375
2376         ArrayList<BC_ListBoxItem*> *src = &assets;
2377         switch( selected_folder ) {
2378         case AW_AEFFECT_FOLDER:  src = &aeffects;  break;
2379         case AW_VEFFECT_FOLDER:  src = &veffects;  break;
2380         case AW_ATRANSITION_FOLDER:  src = &atransitions;  break;
2381         case AW_VTRANSITION_FOLDER:  src = &vtransitions;  break;
2382         case AW_LABEL_FOLDER:  src = &labellist;
2383                 asset_titles[0] = _("Time Stamps");
2384                 asset_titles[1] = C_("Title");
2385                 //allow_iconlisting = 0;
2386                 break;
2387         }
2388         copy_picons(picon, src);
2389 }
2390
2391
2392 void AWindowGUI::update_assets()
2393 {
2394         stop_vicon_drawing();
2395         folder_lock->lock("AWindowGUI::update_assets");
2396         update_folder_list();
2397         update_asset_list();
2398         labellist.remove_all_objects();
2399         create_label_folder();
2400
2401         if( displayed_folder != mwindow->edl->session->awindow_folder )
2402                 search_text->clear();
2403         vicon_thread->hide_vicons();
2404         filter_displayed_assets();
2405         folder_lock->unlock();
2406
2407         if( mwindow->edl->session->folderlist_format != folder_list->get_format() ) {
2408                 folder_list->update_format(mwindow->edl->session->folderlist_format, 0);
2409         }
2410         int folder_xposition = folder_list->get_xposition();
2411         int folder_yposition = folder_list->get_yposition();
2412         folder_list->update(&folders, 0, 0, 1, folder_xposition, folder_yposition, -1);
2413
2414         if( mwindow->edl->session->assetlist_format != asset_list->get_format() ) {
2415                 asset_list->update_format(mwindow->edl->session->assetlist_format, 0);
2416         }
2417         int asset_xposition = asset_list->get_xposition();
2418         int asset_yposition = asset_list->get_yposition();
2419         if( displayed_folder != mwindow->edl->session->awindow_folder ) {
2420                 displayed_folder = mwindow->edl->session->awindow_folder;
2421                 asset_xposition = asset_yposition = 0;
2422         }
2423         asset_list->update(displayed_assets, asset_titles,
2424                 mwindow->edl->session->asset_columns, ASSET_COLUMNS,
2425                 asset_xposition, asset_yposition, -1, 0);
2426         asset_list->center_selection();
2427
2428         flush();
2429         start_vicon_drawing();
2430         return;
2431 }
2432
2433 void AWindowGUI::update_effects()
2434 {
2435         aeffects.remove_all_objects();
2436         create_persistent_folder(&aeffects, 1, 0, 1, 0);
2437         veffects.remove_all_objects();
2438         create_persistent_folder(&veffects, 0, 1, 1, 0);
2439         atransitions.remove_all_objects();
2440         create_persistent_folder(&atransitions, 1, 0, 0, 1);
2441         vtransitions.remove_all_objects();
2442         create_persistent_folder(&vtransitions, 0, 1, 0, 1);
2443 }
2444
2445 int AWindowGUI::drag_motion()
2446 {
2447         if( get_hidden() ) return 0;
2448
2449         int result = 0;
2450         return result;
2451 }
2452
2453 int AWindowGUI::drag_stop()
2454 {
2455         if( get_hidden() ) return 0;
2456         return 0;
2457 }
2458
2459 Indexable* AWindowGUI::selected_asset()
2460 {
2461         AssetPicon *picon = (AssetPicon*)asset_list->get_selection(0, 0);
2462         return picon ? picon->indexable : 0;
2463 }
2464
2465 PluginServer* AWindowGUI::selected_plugin()
2466 {
2467         AssetPicon *picon = (AssetPicon*)asset_list->get_selection(0, 0);
2468         return picon ? picon->plugin : 0;
2469 }
2470
2471 AssetPicon* AWindowGUI::selected_folder()
2472 {
2473         AssetPicon *picon = (AssetPicon*)folder_list->get_selection(0, 0);
2474         return picon;
2475 }
2476
2477
2478
2479
2480
2481
2482
2483
2484 AWindowDivider::AWindowDivider(MWindow *mwindow, AWindowGUI *gui, int x, int y, int w, int h)
2485  : BC_SubWindow(x, y, w, h)
2486 {
2487         this->mwindow = mwindow;
2488         this->gui = gui;
2489 }
2490 AWindowDivider::~AWindowDivider()
2491 {
2492 }
2493
2494 int AWindowDivider::button_press_event()
2495 {
2496         if( is_event_win() && cursor_inside() ) {
2497                 mwindow->session->current_operation = DRAG_PARTITION;
2498                 return 1;
2499         }
2500         return 0;
2501 }
2502
2503 int AWindowDivider::cursor_motion_event()
2504 {
2505         if( mwindow->session->current_operation == DRAG_PARTITION ) {
2506                 int wmin = xS(25);
2507                 int wmax = mwindow->session->awindow_w - mwindow->theme->adivider_w - wmin;
2508                 int fw = gui->get_relative_cursor_x();
2509                 if( fw > wmax ) fw = wmax;
2510                 if( fw < wmin ) fw = wmin;
2511                 mwindow->session->afolders_w = fw;
2512                 mwindow->theme->get_awindow_sizes(gui);
2513                 gui->reposition_objects();
2514                 gui->flush();
2515         }
2516         return 0;
2517 }
2518
2519 int AWindowDivider::button_release_event()
2520 {
2521         if( mwindow->session->current_operation == DRAG_PARTITION ) {
2522                 mwindow->session->current_operation = NO_OPERATION;
2523                 return 1;
2524         }
2525         return 0;
2526 }
2527
2528
2529
2530
2531
2532
2533 AWindowFolders::AWindowFolders(MWindow *mwindow, AWindowGUI *gui, int x, int y, int w, int h)
2534  : BC_ListBox(x, y, w, h,
2535                 mwindow->edl->session->folderlist_format == FOLDERS_ICONS ?
2536                         LISTBOX_ICONS : LISTBOX_TEXT,
2537                 &gui->folders,    // Each column has an ArrayList of BC_ListBoxItems.
2538                 0,                // Titles for columns.  Set to 0 for no titles
2539                 0,                // width of each column
2540                 1,                // Total columns.
2541                 0,                // Pixel of top of window.
2542                 0,                // If this listbox is a popup window
2543                 LISTBOX_SINGLE,   // Select one item or multiple items
2544                 ICON_TOP,         // Position of icon relative to text of each item
2545                 1)                // Allow drags
2546 {
2547         this->mwindow = mwindow;
2548         this->gui = gui;
2549         set_drag_scroll(0);
2550         last_item0 = 0;
2551         last_item1 = 0;
2552 }
2553
2554 AWindowFolders::~AWindowFolders()
2555 {
2556 }
2557
2558 int AWindowFolders::selection_changed()
2559 {
2560         AWindowFolderItem *item0 = (AWindowFolderItem*)get_selection(0, 0);
2561         AWindowFolderItem *item1 = (AWindowFolderItem*)get_selection(0, 1);
2562 // prefer expanded entry
2563         AWindowFolderItem *item = item1 ? item1 : item0;
2564         if( item0 && item1 && last_item0 == item0 && last_item1 == item1 ) {
2565                 item1->set_selected(0);
2566                 item1 = 0;
2567                 item = item0;
2568         }
2569         last_item0 = item0;
2570         last_item1 = item1;
2571         if( item ) {
2572                 AssetPicon *picon = item->get_picon();
2573                 picon->sub_items = (AWindowFolderSubItems*)(!item->parent ? 0 : item);
2574
2575                 gui->stop_vicon_drawing();
2576
2577                 if( get_button_down() && get_buttonpress() == RIGHT_BUTTON ) {
2578                         gui->folderlist_menu->update_titles();
2579                         gui->folderlist_menu->activate_menu();
2580                 }
2581
2582                 mwindow->edl->session->awindow_folder = picon->foldernum;
2583                 gui->asset_list->draw_background();
2584                 gui->async_update_assets();
2585
2586                 gui->start_vicon_drawing();
2587         }
2588         return 1;
2589 }
2590
2591 int AWindowFolders::button_press_event()
2592 {
2593         gui->hide_tip_info();
2594         int result = BC_ListBox::button_press_event();
2595
2596         if( !result ) {
2597                 if( get_buttonpress() == RIGHT_BUTTON &&
2598                     is_event_win() && cursor_inside() ) {
2599                         gui->folderlist_menu->update_titles();
2600                         gui->folderlist_menu->activate_menu();
2601                         result = 1;
2602                 }
2603         }
2604
2605         return result;
2606 }
2607
2608 int AWindowFolders::drag_stop()
2609 {
2610         int result = 0;
2611         if( get_hidden() ) return 0;
2612         if( mwindow->session->current_operation == DRAG_ASSET &&
2613             gui->folder_list->cursor_above() ) { // check user folder
2614                 int item_no = gui->folder_list->get_cursor_data_item_no();
2615                 AssetPicon *picon = (AssetPicon *)(item_no < 0 ? 0 : gui->folders[item_no]);
2616                 if( picon && picon->foldernum >= AWINDOW_USER_FOLDERS ) {
2617                         BinFolder *folder = mwindow->edl->get_folder(picon->foldernum);
2618                         ArrayList<Indexable *> *drags = folder->is_clips ?
2619                                 ((ArrayList<Indexable *> *)mwindow->session->drag_clips) :
2620                                 ((ArrayList<Indexable *> *)mwindow->session->drag_assets);
2621                         if( folder && drags && !folder->add_patterns(drags, shift_down()) )
2622                                 flicker(1,30);
2623                         mwindow->session->current_operation = ::NO_OPERATION;
2624                         result = 1;
2625                 }
2626         }
2627         return result;
2628 }
2629
2630 AWindowFolderSubItems::AWindowFolderSubItems(AWindowFolderItem *parent, const char *text)
2631  : AWindowFolderItem(text)
2632 {
2633         this->parent = parent;
2634 }
2635
2636 int AWindowFolders::load_expanders()
2637 {
2638         char expanders_path[BCTEXTLEN];
2639         mwindow->create_defaults_path(expanders_path, EXPANDERS_FILE);
2640         FILE *fp = fopen(expanders_path, "r");
2641         if( !fp ) {
2642                 snprintf(expanders_path, sizeof(expanders_path), "%s/%s",
2643                         File::get_cindat_path(), EXPANDERS_FILE);
2644                 fp = fopen(expanders_path, "r");
2645         }
2646
2647         if( !fp ) return 1;
2648         const char tab = '\t';
2649         char line[BCTEXTLEN];   line[0] = 0;
2650         AWindowFolderItem *item = 0, *parent;
2651         AWindowFolderSubItems *sub_items = 0;
2652         int k = 0;
2653         while( fgets(line,sizeof(line),fp) ) {
2654                 if( line[0] == '#' ) continue;
2655                 int i = strlen(line);
2656                 if( i > 0 && line[i-1] == '\n' ) line[--i] = 0;
2657                 if( i == 0 ) continue;
2658                 i = 0;
2659                 for( char *cp=line; *cp==tab; ++cp ) ++i;
2660                 if( i == 0 ) {
2661                         int i = gui->folders.size();
2662                         while( --i >= 0 ) {
2663                                 AssetPicon *folder = (AssetPicon *)gui->folders[i];
2664                                 if( !strcmp(folder->get_text(),_(line)) ) break;
2665                         }
2666                         item = (AWindowFolderItem*)(i >= 0 ? gui->folders[i] : 0);
2667                         sub_items = 0;
2668                         k = 0;
2669                         continue;
2670                 }
2671                 if( i > k+1 ) continue;
2672                 if( i == k+1 ) {
2673                         if( line[i] != '-' && sub_items ) {
2674                                 sub_items->names.append(cstrdup(_(&line[i])));
2675                                 continue;
2676                         }
2677                         parent = item;
2678                         k = i;
2679                 }
2680                 else {
2681                         while( i < k ) {
2682                                 item = item->parent;
2683                                 --k;
2684                         }
2685                         parent = item->parent;
2686                 }
2687                 ArrayList<BC_ListBoxItem*> *sublist = parent->get_sublist();
2688                 if( !sublist ) sublist = parent->new_sublist(1);
2689                 sub_items = new AWindowFolderSubItems(parent, &line[i]);
2690                 sublist->append(item = sub_items);
2691         }
2692         fclose(fp);
2693         return 0;
2694 }
2695
2696
2697 AWindowAssets::AWindowAssets(MWindow *mwindow, AWindowGUI *gui, int x, int y, int w, int h)
2698  : BC_ListBox(x, y, w, h, !gui->allow_iconlisting ? LISTBOX_TEXT :
2699                 mwindow->edl->session->assetlist_format == ASSETS_ICONS ? LISTBOX_ICONS :
2700                 mwindow->edl->session->assetlist_format == ASSETS_ICONS_PACKED ? LISTBOX_ICONS_PACKED :
2701                 mwindow->edl->session->assetlist_format == ASSETS_ICON_LIST ? LISTBOX_ICON_LIST :
2702                         LISTBOX_TEXT,
2703                 &gui->assets,     // Each column has an ArrayList of BC_ListBoxItems.
2704                 gui->asset_titles,// Titles for columns.  Set to 0 for no titles
2705                 mwindow->edl->session->asset_columns, // width of each column
2706                 1,                // Total columns.
2707                 0,                // Pixel of top of window.
2708                 0,                // If this listbox is a popup window
2709                 LISTBOX_MULTIPLE, // Select one item or multiple items
2710                 ICON_TOP,         // Position of icon relative to text of each item
2711                 -1)               // Allow drags, require shift for scrolling
2712 {
2713         this->mwindow = mwindow;
2714         this->gui = gui;
2715         this->info_tip = -1;
2716         set_drag_scroll(0);
2717         set_scroll_stretch(1, 1);
2718 }
2719
2720 AWindowAssets::~AWindowAssets()
2721 {
2722 }
2723
2724 int AWindowAssets::button_press_event()
2725 {
2726         hide_tip_info();
2727         AssetVIconThread *avt = gui->vicon_thread;
2728         if( avt->draw_mode != ASSET_VIEW_NONE && is_event_win() ) {
2729                 int dir = 1, button = get_buttonpress();
2730                 switch( button ) {
2731                 case WHEEL_DOWN: dir = -1;  // fall thru
2732                 case WHEEL_UP: {
2733                         int x = get_cursor_x(), y = get_cursor_y();
2734                         if( avt->cursor_inside(x, y) && avt->view_win )
2735                                 avt->zoom_scale(dir);
2736                         return 1; }
2737                 }
2738         }
2739
2740         int result = BC_ListBox::button_press_event();
2741
2742         if( !result && get_buttonpress() == RIGHT_BUTTON &&
2743             is_event_win() && cursor_inside() ) {
2744                 BC_ListBox::deactivate_selection();
2745                 int folder = mwindow->edl->session->awindow_folder;
2746                 switch( folder ) {
2747                 case AW_AEFFECT_FOLDER:
2748                 case AW_VEFFECT_FOLDER:
2749                 case AW_ATRANSITION_FOLDER:
2750                 case AW_VTRANSITION_FOLDER:
2751                         gui->effectlist_menu->update();
2752                         gui->effectlist_menu->activate_menu();
2753                         break;
2754                 case AW_LABEL_FOLDER:
2755                         gui->labellist_menu->update();
2756                         gui->labellist_menu->activate_menu();
2757                         break;
2758                 case AW_CLIP_FOLDER:
2759                         gui->cliplist_menu->update();
2760                         gui->cliplist_menu->activate_menu();
2761                         break;
2762                 case AW_PROXY_FOLDER:
2763                         gui->proxylist_menu->update();
2764                         gui->proxylist_menu->activate_menu();
2765                         break;
2766                 default:
2767                 case AW_MEDIA_FOLDER: {
2768                         int shots =  folder==AW_MEDIA_FOLDER || folder>=AWINDOW_USER_FOLDERS;
2769                         gui->assetlist_menu->update_titles(shots);
2770                         gui->assetlist_menu->activate_menu();
2771                         break; }
2772                 }
2773                 result = 1;
2774         }
2775
2776         return result;
2777 }
2778
2779
2780 int AWindowAssets::handle_event()
2781 {
2782         AssetPicon *asset_picon = (AssetPicon *)get_selection(0, 0);
2783         if( !asset_picon ) return 0;
2784         Indexable *picon_idxbl = asset_picon->indexable;
2785         EDL *picon_edl = asset_picon->edl;
2786         int proxy = 0;
2787         VWindow *vwindow = 0;
2788         switch( mwindow->edl->session->awindow_folder ) {
2789         case AW_AEFFECT_FOLDER:
2790         case AW_VEFFECT_FOLDER:
2791         case AW_ATRANSITION_FOLDER:
2792         case AW_VTRANSITION_FOLDER: return 1;
2793         case AW_PROXY_FOLDER:
2794                 proxy = 1; // fall thru
2795         default:
2796                 if( mwindow->vwindows.size() > DEFAULT_VWINDOW )
2797                         vwindow = mwindow->vwindows.get(DEFAULT_VWINDOW);
2798                 break;
2799         }
2800         if( !vwindow || !vwindow->is_running() ) return 1;
2801         if( proxy && picon_idxbl ) {
2802                 picon_edl = gui->collect_proxy(picon_idxbl);
2803                 picon_idxbl = 0;
2804         }
2805
2806         if( picon_idxbl ) vwindow->change_source(picon_idxbl);
2807         else if( picon_edl ) vwindow->change_source(picon_edl);
2808         return 1;
2809 }
2810
2811 int AWindowAssets::selection_changed()
2812 {
2813 // Show popup window
2814         AssetPicon *item;
2815         int folder = mwindow->edl->session->awindow_folder;
2816         if( get_button_down() && get_buttonpress() == RIGHT_BUTTON &&
2817             (item = (AssetPicon*)get_selection(0, 0)) ) {
2818                 switch( folder ) {
2819                 case AW_AEFFECT_FOLDER:
2820                 case AW_VEFFECT_FOLDER:
2821                 case AW_ATRANSITION_FOLDER:
2822                 case AW_VTRANSITION_FOLDER:
2823                         gui->effectlist_menu->update();
2824                         gui->effectlist_menu->activate_menu();
2825                         break;
2826                 case AW_LABEL_FOLDER:
2827                         if( !item->label ) break;
2828                         gui->label_menu->activate_menu();
2829                         break;
2830                 case AW_CLIP_FOLDER:
2831                         if( !item->indexable && !item->edl ) break;
2832                         gui->clip_menu->update();
2833                         gui->clip_menu->activate_menu();
2834                         break;
2835                 case AW_PROXY_FOLDER:
2836                         if( !item->indexable && !item->edl ) break;
2837                         gui->proxy_menu->update();
2838                         gui->proxy_menu->activate_menu();
2839                         break;
2840                 default:
2841                         if( !item->indexable && !item->edl ) break;
2842                         gui->asset_menu->update();
2843                         gui->asset_menu->activate_menu();
2844                         break;
2845                 }
2846
2847                 deactivate_selection();
2848         }
2849         else if( get_button_down() && !gui->play_off &&
2850                  mwindow->edl->session->assetlist_format != ASSETS_TEXT ) {
2851                 item = (AssetPicon*)get_selection(0, 0);
2852                 if( item && !get_selection(0, 1) ) {
2853                         switch( folder ) {
2854                         case AW_MEDIA_FOLDER:
2855                         case AW_PROXY_FOLDER:
2856                         case AWINDOW_USER_FOLDERS:
2857                                 if( get_buttonpress() == LEFT_BUTTON ||
2858                                     get_buttonpress() == MIDDLE_BUTTON ) {
2859                                         AssetVIcon *vicon = 0;
2860                                         AssetVIconThread *avt = gui->vicon_thread;
2861                                         if( !avt->vicon && gui->vicon_drawing != AVICON_NO_PLAY )
2862                                                 vicon = item->vicon;
2863                                         int draw_mode = !vicon ?
2864                                                         ASSET_VIEW_NONE :
2865                                                 get_buttonpress() == MIDDLE_BUTTON ?
2866                                                         ASSET_VIEW_MEDIA_MAP : ASSET_VIEW_MEDIA;
2867                                         avt->set_view_popup(vicon, draw_mode);
2868                                 }
2869                                 break;
2870                         case AW_CLIP_FOLDER:
2871                                 if( get_buttonpress() == LEFT_BUTTON ) {
2872                                         AssetVIcon *vicon = 0;
2873                                         AssetVIconThread *avt = gui->vicon_thread;
2874                                         if( !avt->vicon && gui->vicon_drawing != AVICON_NO_PLAY )
2875                                                 vicon = item->vicon;
2876                                         gui->vicon_thread->set_view_popup(vicon, ASSET_VIEW_ICON);
2877                                 }
2878                                 break;
2879                         }
2880                 }
2881                 else {
2882                         gui->vicon_thread->set_view_popup(0);
2883                         if( gui->vicon_drawing != AVICON_FULL_PLAY )
2884                                 gui->stop_vicon_drawing();
2885                 }
2886         }
2887         return 1;
2888 }
2889
2890 void AWindowAssets::draw_background()
2891 {
2892         clear_box(0,0,get_w(),get_h(),get_bg_surface());
2893         set_color(BC_WindowBase::get_resources()->audiovideo_color);
2894         set_font(LARGEFONT);
2895         int folder = mwindow->edl->session->awindow_folder;
2896         const char *title = mwindow->edl->get_folder_name(folder);
2897         draw_text(get_w() - get_text_width(LARGEFONT, title) - xS(4), yS(30),
2898                 title, -1, get_bg_surface());
2899 }
2900
2901 int AWindowAssets::drag_start_event()
2902 {
2903         gui->vicon_thread->set_view_popup(0);
2904         int collect_pluginservers = 0;
2905         int collect_assets = 0, proxy = 0;
2906
2907         if( BC_ListBox::drag_start_event() ) {
2908                 switch( mwindow->edl->session->awindow_folder ) {
2909                 case AW_AEFFECT_FOLDER:
2910                         mwindow->session->current_operation = DRAG_AEFFECT;
2911                         collect_pluginservers = 1;
2912                         break;
2913                 case AW_VEFFECT_FOLDER:
2914                         mwindow->session->current_operation = DRAG_VEFFECT;
2915                         collect_pluginservers = 1;
2916                         break;
2917                 case AW_ATRANSITION_FOLDER:
2918                         mwindow->session->current_operation = DRAG_ATRANSITION;
2919                         collect_pluginservers = 1;
2920                         break;
2921                 case AW_VTRANSITION_FOLDER:
2922                         mwindow->session->current_operation = DRAG_VTRANSITION;
2923                         collect_pluginservers = 1;
2924                         break;
2925                 case AW_LABEL_FOLDER:
2926                         // do nothing!
2927                         break;
2928                 case AW_PROXY_FOLDER:
2929                         proxy = 1; // fall thru
2930                 case AW_MEDIA_FOLDER:
2931                 default:
2932                         mwindow->session->current_operation = DRAG_ASSET;
2933                         collect_assets = 1;
2934                         break;
2935                 }
2936
2937                 if( collect_pluginservers ) {
2938                         int i = 0;
2939                         mwindow->session->drag_pluginservers->remove_all();
2940                         while(1)
2941                         {
2942                                 AssetPicon *result = (AssetPicon*)get_selection(0, i++);
2943                                 if( !result ) break;
2944
2945                                 mwindow->session->drag_pluginservers->append(result->plugin);
2946                         }
2947                 }
2948
2949                 if( collect_assets ) {
2950                         gui->collect_assets(proxy);
2951                 }
2952
2953                 return 1;
2954         }
2955         return 0;
2956 }
2957
2958 int AWindowAssets::drag_motion_event()
2959 {
2960         BC_ListBox::drag_motion_event();
2961         unlock_window();
2962
2963         mwindow->gui->lock_window("AWindowAssets::drag_motion_event");
2964         mwindow->gui->drag_motion();
2965         mwindow->gui->unlock_window();
2966
2967         for( int i = 0; i < mwindow->vwindows.size(); i++ ) {
2968                 VWindow *vwindow = mwindow->vwindows.get(i);
2969                 if( !vwindow->is_running() ) continue;
2970                 vwindow->gui->lock_window("AWindowAssets::drag_motion_event");
2971                 vwindow->gui->drag_motion();
2972                 vwindow->gui->unlock_window();
2973         }
2974
2975         mwindow->cwindow->gui->lock_window("AWindowAssets::drag_motion_event");
2976         mwindow->cwindow->gui->drag_motion();
2977         mwindow->cwindow->gui->unlock_window();
2978
2979         lock_window("AWindowAssets::drag_motion_event");
2980         if( mwindow->session->current_operation == DRAG_ASSET &&
2981             gui->folder_list->cursor_above() ) { // highlight user folder
2982                 BC_ListBoxItem *item = 0;
2983                 int item_no = gui->folder_list->get_cursor_data_item_no(&item);
2984                 if( item_no >= 0 ) {
2985                         AssetPicon *folder = (AssetPicon *)gui->folders[item_no];
2986                         if( folder->foldernum < AWINDOW_USER_FOLDERS ) item_no = -1;
2987                 }
2988                 if( item_no >= 0 )
2989                         item_no = gui->folder_list->item_to_index(&gui->folders, item);
2990                 int folder_xposition = gui->folder_list->get_xposition();
2991                 int folder_yposition = gui->folder_list->get_yposition();
2992                 gui->folder_list->update(&gui->folders, 0, 0, 1,
2993                         folder_xposition, folder_yposition, item_no, 0, 1);
2994         }
2995         return 0;
2996 }
2997
2998 int AWindowAssets::drag_stop_event()
2999 {
3000         int result = 0;
3001
3002         result = gui->drag_stop();
3003
3004         unlock_window();
3005
3006         if( !result ) {
3007                 mwindow->gui->lock_window("AWindowAssets::drag_stop_event");
3008                 result = mwindow->gui->drag_stop();
3009                 mwindow->gui->unlock_window();
3010         }
3011
3012         if( !result ) {
3013                 for( int i = 0; !result && i < mwindow->vwindows.size(); i++ ) {
3014                         VWindow *vwindow = mwindow->vwindows.get(i);
3015                         if( !vwindow ) continue;
3016                         if( !vwindow->is_running() ) continue;
3017                         if( vwindow->gui->is_hidden() ) continue;
3018                         vwindow->gui->lock_window("AWindowAssets::drag_stop_event");
3019                         if( vwindow->gui->cursor_above() &&
3020                             vwindow->gui->get_cursor_over_window() ) {
3021                                 result = vwindow->gui->drag_stop();
3022                         }
3023                         vwindow->gui->unlock_window();
3024                 }
3025         }
3026
3027         if( !result ) {
3028                 mwindow->cwindow->gui->lock_window("AWindowAssets::drag_stop_event");
3029                 result = mwindow->cwindow->gui->drag_stop();
3030                 mwindow->cwindow->gui->unlock_window();
3031         }
3032
3033         lock_window("AWindowAssets::drag_stop_event");
3034         if( !result ) {
3035                 result = gui->folder_list->drag_stop();
3036         }
3037
3038
3039         if( result )
3040                 get_drag_popup()->set_animation(0);
3041
3042         BC_ListBox::drag_stop_event();
3043 // since NO_OPERATION is also defined in listbox, we have to reach for global scope...
3044         mwindow->session->current_operation = ::NO_OPERATION;
3045
3046         return 1;
3047 }
3048
3049 int AWindowAssets::column_resize_event()
3050 {
3051         mwindow->edl->session->asset_columns[0] = get_column_width(0);
3052         mwindow->edl->session->asset_columns[1] = get_column_width(1);
3053         return 1;
3054 }
3055
3056 int AWindowAssets::cursor_enter_event()
3057 {
3058         int ret = BC_ListBox::cursor_enter_event();
3059         switch( gui->vicon_drawing ) {
3060         case AVICON_FULL_PLAY:
3061                 gui->start_vicon_drawing();
3062                 break;
3063         case AVICON_MOUSE_OVER:
3064         case AVICON_SRC_TARGET:
3065         case AVICON_NO_PLAY:
3066         default:
3067                 break;
3068         }
3069         return ret;
3070 }
3071
3072 int AWindowAssets::cursor_leave_event()
3073 {
3074         hide_tip_info();
3075         if( !is_event_win() ) return 0;
3076         if( !gui->vicon_thread->viewing )
3077                 gui->stop_vicon_drawing();
3078         return BC_ListBox::cursor_leave_event();
3079 }
3080
3081 int AWindowAssets::focus_out_event()
3082 {
3083         gui->stop_vicon_drawing();
3084         gui->vicon_thread->set_view_popup(0);
3085         return BC_ListBox::focus_out_event();
3086 }
3087
3088 void AWindowAssets::update_vicon_area()
3089 {
3090         int x0 = 0, x1 = get_w();
3091         int y0 = get_title_h();
3092         int y1 = get_h();
3093         if( is_highlighted() ) {
3094                 x0 += LISTBOX_BORDER;  x1 -= LISTBOX_BORDER;
3095                 y0 += LISTBOX_BORDER;  y1 -= LISTBOX_BORDER;
3096         }
3097         gui->vicon_thread->set_drawing_area(x0,y0, x1,y1);
3098 }
3099
3100 int AWindowAssets::mouse_over_event(int no)
3101 {
3102         AssetPicon *picon = no >= 0 && no < gui->displayed_assets[0].size() ?
3103                 (AssetPicon *)gui->displayed_assets[0][no] : 0;
3104         AssetVIcon *vicon = !picon ? 0 : picon->vicon;
3105         switch( gui->vicon_drawing ) {
3106         case AVICON_FULL_PLAY:
3107                 gui->vicon_thread->solo = 0;
3108                 if( vicon && gui->vicon_thread->viewing )
3109                         gui->vicon_thread->set_view_popup(vicon);
3110                 break;
3111         case AVICON_MOUSE_OVER:
3112                 if( !vicon ) break;
3113                 gui->vicon_thread->solo = vicon;
3114                 gui->start_vicon_drawing();
3115         // fall thru
3116         case AVICON_SRC_TARGET:
3117                 if( !vicon ) break;
3118                 if( gui->vicon_thread->viewing )
3119                         gui->vicon_thread->set_view_popup(vicon);
3120                 break;
3121         case AVICON_NO_PLAY:
3122         default:
3123                 break;
3124         }
3125         if( no < 0 && info_tip >= 0 ) {
3126                 hide_tip_info();
3127         }
3128         if( gui->tip_info && no >= 0 &&
3129             info_tip != no && picon && picon->plugin ) {
3130                 const char *info = picon->plugin->tip;
3131                 if( !info ) info = _("No info available");
3132                 show_tip_info(info, no);
3133         }
3134         return 1;
3135 }
3136
3137 void AWindowAssets::show_tip_info(const char *info, int no)
3138 {
3139         int tw = get_text_width(MEDIUMFONT, info) + TOOLTIP_MARGIN * 2;
3140         int th = get_text_height(MEDIUMFONT, info) + TOOLTIP_MARGIN * 2;
3141         int tx = get_w() - (tw + xS(28));
3142         int ty = get_h() - (th + yS(28));
3143         show_tooltip(info, tx, ty, tw, th);
3144         info_tip = no;
3145 }
3146
3147 void AWindowAssets::hide_tip_info()
3148 {
3149         hide_tooltip();
3150         info_tip = -1;
3151 }
3152
3153
3154 AWindowSearchTextBox::AWindowSearchTextBox(AWindowSearchText *search_text, int x, int y, int w)
3155  : BC_TextBox(x, y, w, 1, "")
3156 {
3157         this->search_text = search_text;
3158 }
3159
3160 int AWindowSearchTextBox::handle_event()
3161 {
3162         return search_text->handle_event();
3163 }
3164
3165 AWindowSearchText::AWindowSearchText(MWindow *mwindow, AWindowGUI *gui, int x, int y)
3166 {
3167         this->mwindow = mwindow;
3168         this->gui = gui;
3169         this->x = x;
3170         this->y = y;
3171 }
3172
3173 void AWindowSearchText::create_objects()
3174 {
3175         int xs10 = xS(10);
3176         int x1 = x, y1 = y;
3177         gui->add_subwindow(text_title = new BC_Title(x1, y1, _("Search:")));
3178         x1 += text_title->get_w() + xs10;
3179         int w1 = gui->get_w() - x1 - 2*xs10;
3180         gui->add_subwindow(text_box = new AWindowSearchTextBox(this, x1, y1, w1));
3181 }
3182
3183 int AWindowSearchText::handle_event()
3184 {
3185         gui->async_update_assets();
3186         return 1;
3187 }
3188
3189 int AWindowSearchText::get_w()
3190 {
3191         return text_box->get_w() + text_title->get_w() + xS(10);
3192 }
3193
3194 int AWindowSearchText::get_h()
3195 {
3196         return bmax(text_box->get_h(),text_title->get_h());
3197 }
3198
3199 void AWindowSearchText::reposition_window(int x, int y, int w)
3200 {
3201         int xs10 = xS(10);
3202         int x1 = x, y1 = y;
3203         text_title->reposition_window(x1, y1);
3204         x1 += text_title->get_w() + xs10;
3205         int w1 = gui->get_w() - x1 - 2*xs10;
3206         text_box->reposition_window(x1, y1, w1);
3207 }
3208
3209 const char *AWindowSearchText::get_text()
3210 {
3211         return text_box->get_text();
3212 }
3213
3214 void AWindowSearchText::clear()
3215 {
3216         text_box->update("");
3217 }
3218
3219 AWindowDeleteDisk::AWindowDeleteDisk(MWindow *mwindow, AWindowGUI *gui, int x, int y)
3220  : BC_Button(x, y, mwindow->theme->deletedisk_data)
3221 {
3222         this->mwindow = mwindow;
3223         this->gui = gui;
3224         set_tooltip(_("Delete asset from disk"));
3225 }
3226
3227 int AWindowDeleteDisk::handle_event()
3228 {
3229         return 1;
3230 }
3231
3232 AWindowDeleteProject::AWindowDeleteProject(MWindow *mwindow, AWindowGUI *gui, int x, int y)
3233  : BC_Button(x, y, mwindow->theme->deleteproject_data)
3234 {
3235         this->mwindow = mwindow;
3236         this->gui = gui;
3237         set_tooltip(_("Delete asset from project"));
3238 }
3239
3240 int AWindowDeleteProject::handle_event()
3241 {
3242         return 1;
3243 }
3244
3245 // AWindowInfo::AWindowInfo(MWindow *mwindow, AWindowGUI *gui, int x, int y)
3246 //  : BC_Button(x, y, mwindow->theme->infoasset_data)
3247 // {
3248 //      this->mwindow = mwindow;
3249 //      this->gui = gui;
3250 //      set_tooltip(_("Edit information on asset"));
3251 // }
3252 // 
3253 // int AWindowInfo::handle_event()
3254 // {
3255 //      int cur_x, cur_y;
3256 //      gui->get_abs_cursor(cur_x, cur_y, 0);
3257 //      gui->awindow->asset_edit->edit_asset(gui->selected_asset(), cur_x, cur_y);
3258 //      return 1;
3259 // }
3260
3261 AWindowRedrawIndex::AWindowRedrawIndex(MWindow *mwindow, AWindowGUI *gui, int x, int y)
3262  : BC_Button(x, y, mwindow->theme->redrawindex_data)
3263 {
3264         this->mwindow = mwindow;
3265         this->gui = gui;
3266         set_tooltip(_("Redraw index"));
3267 }
3268
3269 int AWindowRedrawIndex::handle_event()
3270 {
3271         return 1;
3272 }
3273
3274 AWindowPaste::AWindowPaste(MWindow *mwindow, AWindowGUI *gui, int x, int y)
3275  : BC_Button(x, y, mwindow->theme->pasteasset_data)
3276 {
3277         this->mwindow = mwindow;
3278         this->gui = gui;
3279         set_tooltip(_("Paste asset on recordable tracks"));
3280 }
3281
3282 int AWindowPaste::handle_event()
3283 {
3284         return 1;
3285 }
3286
3287 AWindowAppend::AWindowAppend(MWindow *mwindow, AWindowGUI *gui, int x, int y)
3288  : BC_Button(x, y, mwindow->theme->appendasset_data)
3289 {
3290         this->mwindow = mwindow;
3291         this->gui = gui;
3292         set_tooltip(_("Append asset in new tracks"));
3293 }
3294
3295 int AWindowAppend::handle_event()
3296 {
3297         return 1;
3298 }
3299
3300 AWindowView::AWindowView(MWindow *mwindow, AWindowGUI *gui, int x, int y)
3301  : BC_Button(x, y, mwindow->theme->viewasset_data)
3302 {
3303         this->mwindow = mwindow;
3304         this->gui = gui;
3305         set_tooltip(_("View asset"));
3306 }
3307
3308 int AWindowView::handle_event()
3309 {
3310         return 1;
3311 }
3312
3313 AddTools::AddTools(MWindow *mwindow, AWindowGUI *gui, int x, int y, const char *title)
3314  : BC_PopupMenu(x, y, title, -1, 0)
3315 {
3316         this->mwindow = mwindow;
3317         this->gui = gui;
3318 }
3319
3320 void AddTools::create_objects()
3321 {
3322         uint64_t vis = 0;
3323         add_item(new AddPluginItem(this, "ffmpeg", PLUGIN_FFMPEG_ID));
3324         vis |= 1 << PLUGIN_FFMPEG_ID;
3325         add_item(new AddPluginItem(this, "ladspa", PLUGIN_LADSPA_ID));
3326         vis |= 1 << PLUGIN_LADSPA_ID;
3327 #ifdef HAVE_LV2
3328         add_item(new AddPluginItem(this, "lv2", PLUGIN_LV2_ID));
3329         vis |= 1 << PLUGIN_LV2_ID;
3330 #endif
3331         for( int i=0; i<MWindow::plugindb->size(); ++i ) {
3332                 PluginServer *plugin = MWindow::plugindb->get(i);
3333                 if( !plugin->audio && !plugin->video ) continue;
3334                 int idx = plugin->dir_idx;
3335                 uint32_t msk = 1 << idx;
3336                 if( (msk & vis) != 0 ) continue;
3337                 vis |= msk;
3338                 char parent[BCTEXTLEN];
3339                 strcpy(parent, plugin->path);
3340                 char *bp = strrchr(parent, '/');
3341                 if( bp ) { *bp = 0;  bp = strrchr(parent, '/'); }
3342                 if( !bp ) bp = parent; else ++bp;
3343                 add_item(new AddPluginItem(this, bp, idx));
3344         }
3345 }
3346
3347 #if 0
3348 // plugin_dirs list from toplevel makefile include plugin_defs
3349 N_("ffmpeg")
3350 N_("ladspa")
3351 N_("lv2")
3352 N_("audio_tools")
3353 N_("audio_transitions")
3354 N_("blending")
3355 N_("colors")
3356 N_("exotic")
3357 N_("transforms")
3358 N_("tv_effects")
3359 N_("video_tools")
3360 N_("video_transitions")
3361 #endif
3362
3363 AddPluginItem::AddPluginItem(AddTools *menu, char const *text, int idx)
3364  : BC_MenuItem(_(text))
3365 {
3366         this->menu = menu;
3367         this->idx = idx;
3368         uint64_t msk = (uint64_t)1 << idx, vis = menu->gui->plugin_visibility;
3369         int chk = (msk & vis) ? 1 : 0;
3370         set_checked(chk);
3371 }
3372
3373 int AddPluginItem::handle_event()
3374 {
3375         int chk = get_checked() ^ 1;
3376         set_checked(chk);
3377         uint64_t msk = (uint64_t)1 << idx, vis = menu->gui->plugin_visibility;
3378         menu->gui->plugin_visibility = chk ? vis | msk : vis & ~msk;
3379         menu->gui->update_effects();
3380         menu->gui->save_defaults(menu->mwindow->defaults);
3381         menu->gui->async_update_assets();
3382         return 1;
3383 }
3384
3385 AVIconDrawingItem::AVIconDrawingItem(AVIconDrawing *avicon, const char *text, int id)
3386  : BC_MenuItem(text)
3387 {
3388         this->avicon = avicon;
3389         this->id = id;
3390 }
3391
3392 int AVIconDrawingItem::handle_event()
3393 {
3394         for( int i=0; i<AVICON_PLAY_MODES; ++i ) {
3395                 AVIconDrawingItem *item = (AVIconDrawingItem *) avicon->get_item(i);
3396                 item->set_checked(id == i);
3397         }
3398         AWindowGUI *agui = avicon->agui;
3399         agui->play_off = 0;
3400         avicon->set_text(get_text());
3401         agui->stop_vicon_drawing();
3402         agui->vicon_thread->set_view_popup(0);
3403         agui->vicon_thread->solo = 0;
3404         agui->vicon_drawing = id;
3405         agui->start_vicon_drawing();
3406         return 1;
3407 }
3408
3409 int AVIconDrawing::draw_face(int dx, int color)
3410 {
3411         int ret = BC_PopupMenu::draw_face(dx, color);
3412         if( agui->play_off && agui->vicon_drawing != AVICON_NO_PLAY ) {
3413                 int lx = get_margin(), ly = get_h()/2;
3414                 draw_line(lx,ly, get_w()-2*lx,ly);
3415         }
3416         return ret;
3417 }
3418
3419 AVIconDrawing::AVIconDrawing(AWindowGUI *agui, int x, int y, int w, const char *text)
3420  : BC_PopupMenu(x-w, y, w, text, 1, 0, 4)
3421 {
3422         this->agui = agui;
3423 }
3424
3425 AVIconDrawing::~AVIconDrawing()
3426 {
3427 }
3428
3429 void AVIconDrawing::create_objects()
3430 {
3431         AVIconDrawingItem *item;
3432         for( int i=0; i<AVICON_PLAY_MODES; ++i ) {
3433                 add_item(item = new AVIconDrawingItem(this, avicon_names[i], i));
3434                 item->set_checked(agui->vicon_drawing == i);
3435         }
3436 }
3437
3438 int AVIconDrawing::button_press_event()
3439 {
3440         if( !is_event_win() ) return 0;
3441         if( get_buttonpress() == MIDDLE_BUTTON ) {
3442                 agui->play_off = !agui->play_off ? 1 : 0;
3443                 draw_face(0, -1);
3444                 flash(1);
3445                 agui->start_vicon_drawing();
3446                 return 1;
3447         }
3448         return BC_PopupMenu::button_press_event();
3449 }
3450
3451 AWindowListFormat::AWindowListFormat(MWindow *mwindow, AWindowGUI *gui)
3452  : BC_MenuItem("","v",'v')
3453 {
3454         this->mwindow = mwindow;
3455         this->gui = gui;
3456 }
3457
3458 int AWindowListFormat::handle_event()
3459 {
3460         return gui->cycle_assetlist_format();
3461 }
3462
3463 void AWindowListFormat::update()
3464 {
3465         EDLSession *session = mwindow->edl->session;
3466         const char *text = 0;
3467         switch( session->assetlist_format ) {
3468         case ASSETS_TEXT:
3469                 text = _("Display icons");
3470                 break;
3471         case ASSETS_ICONS:
3472                 text = _("Display icons packed");
3473                 break;
3474         case ASSETS_ICONS_PACKED:
3475                 text = _("Display icon list");
3476                 break;
3477         case ASSETS_ICON_LIST:
3478                 text = _("Display text");
3479                 break;
3480         }
3481         set_text(text);
3482 }
3483
3484 AWindowListSort::AWindowListSort(MWindow *mwindow, AWindowGUI *gui)
3485  : BC_MenuItem(_("Sort items"))
3486 {
3487         this->mwindow = mwindow;
3488         this->gui = gui;
3489 }
3490
3491 int AWindowListSort::handle_event()
3492 {
3493         gui->sort_assets();
3494         return 1;
3495 }
3496
3497 AssetSelectUsedItem::AssetSelectUsedItem(AssetSelectUsed *select_used, const char *text, int action)
3498  : BC_MenuItem(text)
3499 {
3500         this->select_used = select_used;
3501         this->action = action;
3502 }
3503
3504 int AssetSelectUsedItem::handle_event()
3505 {
3506         MWindow *mwindow = select_used->mwindow;
3507         AWindowGUI *gui = select_used->gui;
3508         AWindowAssets *asset_list = gui->asset_list;
3509         ArrayList<BC_ListBoxItem*> *data = gui->displayed_assets;
3510
3511         switch( action ) {
3512         case SELECT_ALL:
3513         case SELECT_NONE:
3514                 asset_list->set_all_selected(data, action==SELECT_ALL ? 1 : 0);
3515                 break;
3516         case SELECT_USED:
3517         case SELECT_UNUSED:
3518                 asset_list->set_all_selected(data, 0);
3519                 for( int i = 0; i < data->total; i++ ) {
3520                         AssetPicon *picon = (AssetPicon*)data->values[i];
3521                         Indexable *idxbl = picon->indexable ? picon->indexable :
3522                             picon->edl ? picon->edl->get_proxy_asset() : 0;
3523                         int used = idxbl && mwindow->edl->in_use(idxbl) ? 1 : 0;
3524                         asset_list->set_selected(data, i, action==SELECT_USED ? used : !used);
3525                 }
3526                 break;
3527         }
3528
3529         int asset_xposition = asset_list->get_xposition();
3530         int asset_yposition = asset_list->get_yposition();
3531         asset_list->update(gui->displayed_assets, gui->asset_titles,
3532                 mwindow->edl->session->asset_columns, ASSET_COLUMNS,
3533                 asset_xposition, asset_yposition, -1, 0);
3534         asset_list->center_selection();
3535         return 1;
3536 }
3537
3538 AssetSelectUsed::AssetSelectUsed(MWindow *mwindow, AWindowGUI *gui)
3539  : BC_MenuItem(_("Select"))
3540 {
3541         this->mwindow = mwindow;
3542         this->gui = gui;
3543 }
3544