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