4 * Copyright (C) 1997-2012 Adam Williams <broadcast at earthling dot net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "assetedit.h"
24 #include "assetpopup.h"
26 #include "awindowgui.h"
28 #include "bccmodels.h"
29 #include "bcsignals.h"
34 #include "clippopup.h"
36 #include "cwindowgui.h"
39 #include "edlsession.h"
40 #include "effectlist.h"
42 #include "filesystem.h"
43 #include "folderlistmenu.h"
44 #include "indexable.h"
48 #include "labelpopup.h"
49 #include "localsession.h"
51 #include "mainsession.h"
52 #include "mwindowgui.h"
54 #include "nestededls.h"
55 #include "newfolder.h"
56 #include "preferences.h"
60 #include "vwindowgui.h"
63 #include "data/lad_picon_png.h"
64 #include "data/ff_audio_png.h"
65 #include "data/ff_video_png.h"
72 const char *AWindowGUI::folder_names[] =
76 N_("Audio Transitions"),
77 N_("Video Transitions"),
85 AssetVIcon::AssetVIcon(AssetPicon *picon, int w, int h, double framerate, int64_t length)
86 : VIcon(w, h, framerate)
89 this->length = length;
93 AssetVIcon::~AssetVIcon()
98 VFrame *AssetVIcon::frame()
100 if( seq_no >= images.size() ) {
101 MWindow *mwindow = picon->mwindow;
102 Asset *asset = (Asset *)picon->indexable;
103 File *file = mwindow->video_cache->check_out(asset, mwindow->edl, 1);
104 if( !file ) return 0;
105 if( temp && (temp->get_w() != asset->width || temp->get_h() != asset->height) ) {
106 delete temp; temp = 0;
109 temp = new VFrame(asset->width, asset->height, BC_RGB888, 0);
110 int ww = picon->gui->vicon_thread->view_w;
111 int hh = picon->gui->vicon_thread->view_h;
112 while( seq_no >= images.size() ) {
114 int64_t pos = images.size() / picon->gui->vicon_thread->refresh_rate * frame_rate;
115 file->set_video_position(pos,0);
116 file->read_frame(temp);
117 add_image(temp, ww, hh, BC_RGB8);
119 mwindow->video_cache->check_in(asset);
121 return *images[seq_no];
124 int64_t AssetVIcon::set_seq_no(int64_t no)
126 if( no >= length ) no = 0;
130 int AssetVIcon::get_vx()
132 BC_ListBox *lbox = picon->gui->asset_list;
133 return lbox->get_item_x(picon);
135 int AssetVIcon::get_vy()
137 BC_ListBox *lbox = picon->gui->asset_list;
138 return lbox->get_item_y(picon) + lbox->get_title_h();
142 AssetPicon::AssetPicon(MWindow *mwindow,
143 AWindowGUI *gui, Indexable *indexable)
147 this->mwindow = mwindow;
149 this->indexable = indexable;
150 indexable->add_user();
151 this->id = indexable->id;
154 AssetPicon::AssetPicon(MWindow *mwindow,
155 AWindowGUI *gui, EDL *edl)
159 this->mwindow = mwindow;
166 AssetPicon::AssetPicon(MWindow *mwindow,
167 AWindowGUI *gui, int folder, int persist)
168 : BC_ListBoxItem(_(AWindowGUI::folder_names[folder]),
169 folder>=0 && folder<AWINDOW_FOLDERS ?
170 gui->folder_icons[folder]: gui->folder_icon)
174 this->mwindow = mwindow;
176 persistent = persist;
179 AssetPicon::AssetPicon(MWindow *mwindow,
180 AWindowGUI *gui, PluginServer *plugin)
184 this->mwindow = mwindow;
186 this->plugin = plugin;
189 AssetPicon::AssetPicon(MWindow *mwindow,
190 AWindowGUI *gui, Label *label)
194 this->mwindow = mwindow;
202 AssetPicon::~AssetPicon()
205 gui->vicon_thread->del_vicon(vicon);
206 if( indexable ) indexable->remove_user();
207 if( edl ) edl->remove_user();
208 if( icon && !gui->protected_pixmap(icon) ) {
210 if( !plugin ) delete icon_vframe;
214 void AssetPicon::reset()
220 foldernum = AW_NO_FOLDER;
229 void AssetPicon::create_objects()
232 char name[BCTEXTLEN];
233 int pixmap_w, pixmap_h;
235 pixmap_h = 50 * BC_WindowBase::get_resources()->icon_scale;
238 fs.extract_name(name, indexable->path);
242 if( indexable && indexable->is_asset ) {
243 Asset *asset = (Asset*)indexable;
244 if( asset->video_data ) {
245 if( mwindow->preferences->use_thumbnails ) {
246 gui->unlock_window();
247 File *file = mwindow->video_cache->check_out(asset,
252 int height = asset->height > 0 ? asset->height : 1;
253 pixmap_w = pixmap_h * asset->width / height;
256 file->set_video_position(0, 0);
258 if( gui->temp_picon &&
259 (gui->temp_picon->get_w() != asset->width ||
260 gui->temp_picon->get_h() != asset->height) ) {
261 delete gui->temp_picon;
265 if( !gui->temp_picon ) {
266 gui->temp_picon = new VFrame(0, -1,
267 asset->width, asset->height,
270 { char string[BCTEXTLEN];
271 sprintf(string, _("Reading %s"), name);
272 mwindow->gui->lock_window("AssetPicon::create_objects");
273 mwindow->gui->show_message(string);
274 mwindow->gui->unlock_window(); }
275 file->read_frame(gui->temp_picon);
276 mwindow->video_cache->check_in(asset);
278 gui->lock_window("AssetPicon::create_objects 1");
279 icon = new BC_Pixmap(gui, pixmap_w, pixmap_h);
280 icon->draw_vframe(gui->temp_picon,
281 0, 0, pixmap_w, pixmap_h, 0, 0);
282 icon_vframe = new VFrame(0,
283 -1, pixmap_w, pixmap_h, BC_RGB888, -1);
284 icon_vframe->transfer_from(gui->temp_picon);
285 if( asset->awindow_folder == AW_MEDIA_FOLDER ) {
287 double framerate = asset->get_frame_rate();
288 if( !framerate ) framerate = VICON_RATE;
289 int64_t frames = asset->get_video_frames();
290 double secs = frames / framerate;
291 if( secs > 5 ) secs = 5;
292 int64_t length = secs * gui->vicon_thread->refresh_rate;
293 vicon = new AssetVIcon(this, pixmap_w, pixmap_h, framerate, length);
294 gui->vicon_thread->add_vicon(vicon);
299 gui->lock_window("AssetPicon::create_objects 2");
300 icon = gui->video_icon;
301 icon_vframe = gui->video_vframe;
305 icon = gui->video_icon;
306 icon_vframe = gui->video_vframe;
310 if( asset->audio_data ) {
311 icon = gui->audio_icon;
312 icon_vframe = gui->audio_vframe;
317 if( indexable && !indexable->is_asset ) {
318 icon = gui->video_icon;
319 icon_vframe = gui->video_vframe;
323 set_text(strcpy(name, edl->local_session->clip_title));
324 icon = gui->clip_icon;
325 icon_vframe = gui->clip_vframe;
329 strcpy(name, plugin->title);
331 icon_vframe = plugin->get_picon();
333 icon = gui->create_pixmap(icon_vframe);
334 else if( plugin->audio ) {
335 if( plugin->transition ) {
336 icon = gui->atransition_icon;
337 icon_vframe = gui->atransition_vframe;
339 else if( plugin->is_ffmpeg() ) {
340 icon = gui->ff_aud_icon;
341 icon_vframe = gui->ff_aud_vframe;
343 else if( plugin->is_ladspa() ) {
344 icon = gui->ladspa_icon;
345 icon_vframe = gui->ladspa_vframe;
348 icon = gui->aeffect_icon;
349 icon_vframe = gui->aeffect_vframe;
352 else if( plugin->video ) {
353 if( plugin->transition ) {
354 icon = gui->vtransition_icon;
355 icon_vframe = gui->vtransition_vframe;
357 else if( plugin->is_ffmpeg() ) {
358 icon = gui->ff_vid_icon;
359 icon_vframe = gui->ff_vid_vframe;
362 icon = gui->veffect_icon;
363 icon_vframe = gui->veffect_vframe;
371 mwindow->edl->session->time_format,
372 mwindow->edl->session->sample_rate,
373 mwindow->edl->session->frame_rate,
374 mwindow->edl->session->frames_per_foot);
376 icon = gui->label_icon;
377 icon_vframe = gui->label_vframe;
380 icon = gui->file_icon;
381 icon_vframe = BC_WindowBase::get_resources()->type_to_icon[ICON_UNKNOWN];
384 set_icon_vframe(icon_vframe);
387 AWindowGUI::AWindowGUI(MWindow *mwindow, AWindow *awindow)
388 : BC_Window(_(PROGRAM_NAME ": Resources"),
389 mwindow->session->awindow_x, mwindow->session->awindow_y,
390 mwindow->session->awindow_w, mwindow->session->awindow_h,
393 this->mwindow = mwindow;
394 this->awindow = awindow;
396 file_vframe = 0; file_icon = 0;
397 folder_vframe = 0; folder_icon = 0;
398 audio_vframe = 0; audio_icon = 0;
399 video_vframe = 0; video_icon = 0;
400 label_vframe = 0; label_icon = 0;
402 atransition_vframe = 0; atransition_icon = 0;
403 vtransition_vframe = 0; vtransition_icon = 0;
404 aeffect_vframe = 0; aeffect_icon = 0;
405 ladspa_vframe = 0; ladspa_icon = 0;
406 veffect_vframe = 0; veffect_icon = 0;
407 ff_aud_vframe = 0; ff_aud_icon = 0;
408 ff_vid_vframe = 0; ff_vid_icon = 0;
410 aeffect_folder_vframe = 0; aeffect_folder_icon = 0;
411 atransition_folder_vframe = 0; atransition_folder_icon = 0;
412 clip_folder_vframe = 0; clip_folder_icon = 0;
413 label_folder_vframe = 0; label_folder_icon = 0;
414 media_folder_vframe = 0; media_folder_icon = 0;
415 proxy_folder_vframe = 0; proxy_folder_icon = 0;
416 veffect_folder_vframe = 0; veffect_folder_icon = 0;
417 vtransition_folder_vframe = 0; vtransition_folder_icon = 0;
419 ladspa_vframe = 0; ladspa_icon = 0;
420 ff_aud_vframe = 0; ff_aud_icon = 0;
421 ff_vid_vframe = 0; ff_vid_icon = 0;
423 clip_vframe = 0; clip_icon = 0;
424 atransition_vframe = 0; atransition_icon = 0;
425 vtransition_vframe = 0; vtransition_icon = 0;
426 aeffect_vframe = 0; aeffect_icon = 0;
427 veffect_vframe = 0; veffect_icon = 0;
429 plugin_visibility = ((uint64_t)1<<(8*sizeof(uint64_t)-1))-1;
430 newfolder_thread = 0;
439 allow_iconlisting = 1;
443 displayed_folder = AW_NO_FOLDER;
446 AWindowGUI::~AWindowGUI()
448 assets.remove_all_objects();
449 folders.remove_all_objects();
450 aeffects.remove_all_objects();
451 veffects.remove_all_objects();
452 atransitions.remove_all_objects();
453 vtransitions.remove_all_objects();
454 labellist.remove_all_objects();
455 displayed_assets[1].remove_all_objects();
458 delete newfolder_thread;
463 delete effectlist_menu;
464 delete assetlist_menu;
465 delete cliplist_menu;
466 delete labellist_menu;
467 delete folderlist_menu;
470 delete remove_plugin;
472 delete file_vframe; delete file_icon;
473 delete folder_vframe; delete folder_icon;
474 delete audio_vframe; delete audio_icon;
475 delete video_vframe; delete video_icon;
476 delete label_vframe; delete label_icon;
477 delete clip_vframe; delete clip_icon;
478 delete aeffect_folder_vframe; delete aeffect_folder_icon;
479 delete atransition_folder_vframe; delete atransition_folder_icon;
480 delete veffect_folder_vframe; delete veffect_folder_icon;
481 delete vtransition_folder_vframe; delete vtransition_folder_icon;
482 delete clip_folder_vframe; delete clip_folder_icon;
483 delete label_folder_vframe; delete label_folder_icon;
484 delete media_folder_vframe; delete media_folder_icon;
485 delete proxy_folder_vframe; delete proxy_folder_icon;
486 delete ladspa_vframe; delete ladspa_icon;
487 delete ff_aud_vframe; delete ff_aud_icon;
488 delete ff_vid_vframe; delete ff_vid_icon;
489 delete atransition_vframe; delete atransition_icon;
490 delete vtransition_vframe; delete vtransition_icon;
491 delete aeffect_vframe; delete aeffect_icon;
492 delete veffect_vframe; delete veffect_icon;
495 bool AWindowGUI::protected_pixmap(BC_Pixmap *icon)
497 return icon == file_icon ||
498 icon == folder_icon ||
499 icon == audio_icon ||
500 icon == video_icon ||
502 icon == label_icon ||
503 icon == vtransition_icon ||
504 icon == atransition_icon ||
505 icon == veffect_icon ||
506 icon == aeffect_icon ||
507 icon == ladspa_icon ||
508 icon == ff_aud_icon ||
509 icon == ff_vid_icon ||
510 icon == aeffect_folder_icon ||
511 icon == veffect_folder_icon ||
512 icon == atransition_folder_icon ||
513 icon == vtransition_folder_icon ||
514 icon == label_folder_icon ||
515 icon == clip_folder_icon ||
516 icon == media_folder_icon ||
517 icon == proxy_folder_icon;
520 VFrame *AWindowGUI::get_picon(const char *name, const char *plugin_icons)
522 char png_path[BCTEXTLEN];
523 char *pp = png_path, *ep = pp + sizeof(png_path)-1;
524 snprintf(pp, ep-pp, "%s/picon/%s/%s.png",
525 File::get_plugin_path(), plugin_icons, name);
526 if( access(png_path, R_OK) ) return 0;
527 return VFramePng::vframe_png(png_path,0,0);
530 VFrame *AWindowGUI::get_picon(const char *name)
532 VFrame *vframe = get_picon(name, mwindow->preferences->plugin_icons);
534 char png_name[BCSTRLEN], *pp = png_name, *ep = pp + sizeof(png_name)-1;
535 snprintf(pp, ep-pp, "%s.png", name);
536 unsigned char *data = mwindow->theme->get_image_data(png_name);
537 if( data ) vframe = new VFramePng(data, 0.);
542 void AWindowGUI::resource_icon(VFrame *&vfrm, BC_Pixmap *&icon, const char *fn, int idx)
544 vfrm = get_picon(fn);
545 if( !vfrm ) vfrm = BC_WindowBase::get_resources()->type_to_icon[idx];
546 icon = new BC_Pixmap(this, vfrm, PIXMAP_ALPHA);
548 void AWindowGUI::theme_icon(VFrame *&vfrm, BC_Pixmap *&icon, const char *fn)
550 vfrm = get_picon(fn);
551 if( !vfrm ) vfrm = mwindow->theme->get_image(fn);
552 icon = new BC_Pixmap(this, vfrm, PIXMAP_ALPHA);
554 void AWindowGUI::plugin_icon(VFrame *&vfrm, BC_Pixmap *&icon, const char *fn, unsigned char *png)
556 vfrm = get_picon(fn);
557 if( !vfrm ) vfrm = new VFramePng(png);
558 icon = new BC_Pixmap(this, vfrm, PIXMAP_ALPHA);
561 void AWindowGUI::create_objects()
563 lock_window("AWindowGUI::create_objects");
564 asset_titles[0] = C_("Title");
565 asset_titles[1] = _("Comments");
567 set_icon(mwindow->theme->get_image("awindow_icon"));
569 resource_icon(file_vframe, file_icon, "film_icon", ICON_UNKNOWN);
570 resource_icon(folder_vframe, folder_icon, "folder_icon", ICON_FOLDER);
571 resource_icon(audio_vframe, audio_icon, "audio_icon", ICON_SOUND);
572 resource_icon(video_vframe, video_icon, "video_icon", ICON_FILM);
573 resource_icon(label_vframe, label_icon, "label_icon", ICON_LABEL);
575 theme_icon(aeffect_folder_vframe, aeffect_folder_icon, "aeffect_folder");
576 theme_icon(atransition_folder_vframe, atransition_folder_icon, "atransition_folder");
577 theme_icon(clip_folder_vframe, clip_folder_icon, "clip_folder");
578 theme_icon(label_folder_vframe, label_folder_icon, "label_folder");
579 theme_icon(media_folder_vframe, media_folder_icon, "media_folder");
580 theme_icon(proxy_folder_vframe, proxy_folder_icon, "proxy_folder");
581 theme_icon(veffect_folder_vframe, veffect_folder_icon, "veffect_folder");
582 theme_icon(vtransition_folder_vframe, vtransition_folder_icon, "vtransition_folder");
584 folder_icons[AW_AEFFECT_FOLDER] = aeffect_folder_icon;
585 folder_icons[AW_VEFFECT_FOLDER] = veffect_folder_icon;
586 folder_icons[AW_ATRANSITION_FOLDER] = atransition_folder_icon;
587 folder_icons[AW_VTRANSITION_FOLDER] = vtransition_folder_icon;
588 folder_icons[AW_LABEL_FOLDER] = label_folder_icon;
589 folder_icons[AW_CLIP_FOLDER] = clip_folder_icon;
590 folder_icons[AW_MEDIA_FOLDER] = media_folder_icon;
591 folder_icons[AW_PROXY_FOLDER] = proxy_folder_icon;
593 theme_icon(clip_vframe, clip_icon, "clip_icon");
594 theme_icon(atransition_vframe, atransition_icon, "atransition_icon");
595 theme_icon(vtransition_vframe, vtransition_icon, "vtransition_icon");
596 theme_icon(aeffect_vframe, aeffect_icon, "aeffect_icon");
597 theme_icon(veffect_vframe, veffect_icon, "veffect_icon");
599 plugin_icon(ladspa_vframe, ladspa_icon, "lad_picon", lad_picon_png);
600 plugin_icon(ff_aud_vframe, ff_aud_icon, "ff_audio", ff_audio_png);
601 plugin_icon(ff_vid_vframe, ff_vid_icon, "ff_video", ff_video_png);
604 folders.append(new AssetPicon(mwindow, this, AW_AEFFECT_FOLDER, 1));
605 folders.append(new AssetPicon(mwindow, this, AW_VEFFECT_FOLDER, 1));
606 folders.append(new AssetPicon(mwindow, this, AW_ATRANSITION_FOLDER, 1));
607 folders.append(new AssetPicon(mwindow, this, AW_VTRANSITION_FOLDER, 1));
608 folders.append(new AssetPicon(mwindow, this, AW_LABEL_FOLDER, 1));
609 folders.append(new AssetPicon(mwindow, this, AW_CLIP_FOLDER, 1));
610 folders.append(new AssetPicon(mwindow, this, AW_PROXY_FOLDER, 1));
611 folders.append(new AssetPicon(mwindow, this, AW_MEDIA_FOLDER, 1));
613 create_label_folder();
615 mwindow->theme->get_awindow_sizes(this);
616 load_defaults(mwindow->defaults);
618 int x1 = mwindow->theme->alist_x, y1 = mwindow->theme->alist_y;
619 int w1 = mwindow->theme->alist_w, h1 = mwindow->theme->alist_h;
620 search_text = new AWindowSearchText(mwindow, this, x1, y1+5);
621 search_text->create_objects();
622 int dy = search_text->get_h() + 10;
624 add_subwindow(asset_list = new AWindowAssets(mwindow, this, x1, y1, w1, h1));
626 vicon_thread = new VIconThread(asset_list);
627 vicon_thread->start();
629 add_subwindow(divider = new AWindowDivider(mwindow, this,
630 mwindow->theme->adivider_x, mwindow->theme->adivider_y,
631 mwindow->theme->adivider_w, mwindow->theme->adivider_h));
633 divider->set_cursor(HSEPARATE_CURSOR, 0, 0);
635 int fx = mwindow->theme->afolders_x, fy = mwindow->theme->afolders_y;
636 int fw = mwindow->theme->afolders_w, fh = mwindow->theme->afolders_h;
637 VFrame **images = mwindow->theme->get_image_set("playpatch_data");
638 AVIconDrawing::calculate_geometry(this, images, &avicon_w, &avicon_h);
639 add_subwindow(avicon_drawing = new AVIconDrawing(this, fw-avicon_w, fy, images));
640 add_subwindow(add_tools = new AddTools(mwindow, this, fx, fy, _("Visibility")));
641 add_tools->create_objects();
642 fy += add_tools->get_h(); fh -= add_tools->get_h();
643 add_subwindow(folder_list = new AWindowFolders(mwindow,
644 this, fx, fy, fw, fh));
647 //int x = mwindow->theme->abuttons_x;
648 //int y = mwindow->theme->abuttons_y;
651 newfolder_thread = new NewFolderThread(mwindow, this);
653 add_subwindow(asset_menu = new AssetPopup(mwindow, this));
654 asset_menu->create_objects();
655 add_subwindow(clip_menu = new ClipPopup(mwindow, this));
656 clip_menu->create_objects();
657 add_subwindow(label_menu = new LabelPopup(mwindow, this));
658 label_menu->create_objects();
660 add_subwindow(effectlist_menu = new EffectListMenu(mwindow, this));
661 effectlist_menu->create_objects();
662 add_subwindow(assetlist_menu = new AssetListMenu(mwindow, this));
663 assetlist_menu->create_objects();
664 add_subwindow(cliplist_menu = new ClipListMenu(mwindow, this));
665 cliplist_menu->create_objects();
666 add_subwindow(labellist_menu = new LabelListMenu(mwindow, this));
667 labellist_menu->create_objects();
669 add_subwindow(folderlist_menu = new FolderListMenu(mwindow, this));
670 folderlist_menu->create_objects();
672 create_custom_xatoms();
676 int AWindowGUI::resize_event(int w, int h)
678 mwindow->session->awindow_x = get_x();
679 mwindow->session->awindow_y = get_y();
680 mwindow->session->awindow_w = w;
681 mwindow->session->awindow_h = h;
683 mwindow->theme->get_awindow_sizes(this);
684 mwindow->theme->draw_awindow_bg(this);
685 reposition_objects();
687 // int x = mwindow->theme->abuttons_x;
688 // int y = mwindow->theme->abuttons_y;
689 // new_bin->reposition_window(x, y);
690 // x += new_bin->get_w();
691 // delete_bin->reposition_window(x, y);
692 // x += delete_bin->get_w();
693 // rename_bin->reposition_window(x, y);
694 // x += rename_bin->get_w();
695 // delete_disk->reposition_window(x, y);
696 // x += delete_disk->get_w();
697 // delete_project->reposition_window(x, y);
698 // x += delete_project->get_w();
699 // info->reposition_window(x, y);
700 // x += info->get_w();
701 // redraw_index->reposition_window(x, y);
702 // x += redraw_index->get_w();
703 // paste->reposition_window(x, y);
704 // x += paste->get_w();
705 // append->reposition_window(x, y);
706 // x += append->get_w();
707 // view->reposition_window(x, y);
709 BC_WindowBase::resize_event(w, h);
713 int AWindowGUI::translation_event()
715 mwindow->session->awindow_x = get_x();
716 mwindow->session->awindow_y = get_y();
720 void AWindowGUI::reposition_objects()
722 int x1 = mwindow->theme->alist_x, y1 = mwindow->theme->alist_y;
723 int w1 = mwindow->theme->alist_w, h1 = mwindow->theme->alist_h;
724 search_text->reposition_window(x1, y1+5, w1);
725 int dy = search_text->get_h() + 10;
727 asset_list->reposition_window(x1, y1, w1, h1);
728 divider->reposition_window(
729 mwindow->theme->adivider_x, mwindow->theme->adivider_y,
730 mwindow->theme->adivider_w, mwindow->theme->adivider_h);
731 int fx = mwindow->theme->afolders_x, fy = mwindow->theme->afolders_y;
732 int fw = mwindow->theme->afolders_w, fh = mwindow->theme->afolders_h;
733 add_tools->resize_event(fw-avicon_w, add_tools->get_h());
734 avicon_drawing->reposition_window(fw-avicon_w, fy);
735 fy += add_tools->get_h(); fh -= add_tools->get_h();
736 folder_list->reposition_window(fx, fy, fw, fh);
739 int AWindowGUI::save_defaults(BC_Hash *defaults)
741 defaults->update("PLUGIN_VISIBILTY", plugin_visibility);
742 defaults->update("VICON_DRAWING", vicon_drawing);
746 int AWindowGUI::load_defaults(BC_Hash *defaults)
748 plugin_visibility = defaults->get("PLUGIN_VISIBILTY", plugin_visibility);
749 vicon_drawing = defaults->get("VICON_DRAWING", vicon_drawing);
753 int AWindowGUI::close_event()
756 mwindow->session->show_awindow = 0;
759 mwindow->gui->lock_window("AWindowGUI::close_event");
760 mwindow->gui->mainmenu->show_awindow->set_checked(0);
761 mwindow->gui->unlock_window();
763 lock_window("AWindowGUI::close_event");
764 save_defaults(mwindow->defaults);
765 mwindow->save_defaults();
769 void AWindowGUI::start_vicon_drawing()
771 if( !vicon_drawing ) return;
772 if( mwindow->edl->session->awindow_folder != AW_MEDIA_FOLDER ) return;
773 if( mwindow->edl->session->assetlist_format != ASSETS_ICONS ) return;
774 vicon_thread->start_drawing();
777 void AWindowGUI::stop_vicon_drawing()
779 vicon_thread->stop_drawing();
782 AWindowRemovePluginGUI::
783 AWindowRemovePluginGUI(AWindow *awindow, AWindowRemovePlugin *thread,
784 int x, int y, PluginServer *plugin)
785 : BC_Window(_(PROGRAM_NAME ": Remove plugin"), x,y, 500,200, 50, 50, 1, 0, 1, -1, "", 1)
787 this->awindow = awindow;
788 this->thread = thread;
789 this->plugin = plugin;
790 VFrame *vframe = plugin->get_picon();
791 icon = vframe ? create_pixmap(vframe) : 0;
792 plugin_list.append(new BC_ListBoxItem(plugin->title, icon));
795 AWindowRemovePluginGUI::
796 ~AWindowRemovePluginGUI()
798 if( !awindow->gui->protected_pixmap(icon) )
800 plugin_list.remove_all();
803 void AWindowRemovePluginGUI::create_objects()
805 BC_Button *ok_button = new BC_OKButton(this);
806 add_subwindow(ok_button);
807 BC_Button *cancel_button = new BC_CancelButton(this);
808 add_subwindow(cancel_button);
810 BC_Title *title = new BC_Title(x, y, _("remove plugin?"));
811 add_subwindow(title);
812 y += title->get_h() + 5;
813 list = new BC_ListBox(x, y,
814 get_w() - 20, ok_button->get_y() - y - 5, LISTBOX_TEXT, &plugin_list,
815 0, 0, 1, 0, 0, LISTBOX_SINGLE, ICON_LEFT, 0);
820 int AWindowRemovePlugin::remove_plugin(PluginServer *plugin, ArrayList<BC_ListBoxItem*> &folder)
823 for( int i=0; i<folder.size(); ) {
824 AssetPicon *picon = (AssetPicon *)folder[i];
825 if( picon->plugin == plugin ) {
826 folder.remove_object_number(i);
835 void AWindowRemovePlugin::handle_close_event(int result)
838 printf(_("remove %s\n"), plugin->path);
839 awindow->gui->lock_window("AWindowRemovePlugin::handle_close_event");
840 ArrayList<BC_ListBoxItem*> *folder =
841 plugin->audio ? plugin->transition ?
842 &awindow->gui->atransitions :
843 &awindow->gui->aeffects :
844 plugin->video ? plugin->transition ?
845 &awindow->gui->vtransitions :
846 &awindow->gui->veffects :
848 if( folder ) remove_plugin(plugin, *folder);
849 MWindow *mwindow = awindow->mwindow;
850 awindow->gui->unlock_window();
851 char plugin_path[BCTEXTLEN];
852 strcpy(plugin_path, plugin->path);
853 mwindow->plugindb->remove(plugin);
855 char index_path[BCTEXTLEN];
856 mwindow->create_defaults_path(index_path, PLUGIN_FILE);
858 char picon_path[BCTEXTLEN];
860 snprintf(picon_path, sizeof(picon_path), "%s/picon",
861 File::get_plugin_path());
862 char png_name[BCSTRLEN], png_path[BCTEXTLEN];
863 plugin->get_plugin_png_name(png_name);
864 fs.update(picon_path);
865 for( int i=0; i<fs.dir_list.total; ++i ) {
866 char *fs_path = fs.dir_list[i]->path;
867 if( !fs.is_dir(fs_path) ) continue;
868 snprintf(png_path, sizeof(picon_path), "%s/%s",
872 delete plugin; plugin = 0;
873 awindow->gui->async_update_assets();
877 AWindowRemovePlugin::
878 AWindowRemovePlugin(AWindow *awindow, PluginServer *plugin)
881 this->awindow = awindow;
882 this->plugin = plugin;
885 AWindowRemovePlugin::
886 ~AWindowRemovePlugin()
891 BC_Window* AWindowRemovePlugin::new_gui()
893 int x = awindow->gui->get_abs_cursor_x(0);
894 int y = awindow->gui->get_abs_cursor_y(0);
895 AWindowRemovePluginGUI *gui = new AWindowRemovePluginGUI(awindow, this, x, y, plugin);
896 gui->create_objects();
900 int AWindowGUI::keypress_event()
902 switch( get_keypress() ) {
911 PluginServer* plugin = selected_plugin();
913 remove_plugin = new AWindowRemovePlugin(awindow, plugin);
915 remove_plugin->start();
924 int AWindowGUI::create_custom_xatoms()
926 UpdateAssetsXAtom = create_xatom("CWINDOWGUI_UPDATE_ASSETS");
929 int AWindowGUI::recieve_custom_xatoms(xatom_event *event)
931 if( event->message_type == UpdateAssetsXAtom ) {
938 void AWindowGUI::async_update_assets()
941 event.message_type = UpdateAssetsXAtom;
942 send_custom_xatom(&event);
946 void AWindowGUI::update_folder_list()
948 for( int i = 0; i < folders.total; i++ ) {
949 AssetPicon *picon = (AssetPicon*)folders.values[i];
953 // Search assets for folders
954 for( int i = 0; i < mwindow->edl->folders.total; i++ ) {
955 const char *folder = mwindow->edl->folders.values[i];
958 for( int j = 0; j < folders.total; j++ ) {
959 AssetPicon *picon = (AssetPicon*)folders.values[j];
960 if( !strcasecmp(picon->get_text(), folder) ) {
968 int aw_folder = folder_number(folder);
969 if( aw_folder >= 0 ) {
970 AssetPicon *picon = new AssetPicon(mwindow, this, aw_folder, 1);
971 picon->create_objects();
972 folders.append(picon);
977 // Delete unused non-persistent folders
978 for( int i=folders.total; --i>=0; ) {
979 AssetPicon *picon = (AssetPicon*)folders.values[i];
980 if( !picon->in_use && !picon->persistent ) {
982 folders.remove_number(i);
987 void AWindowGUI::create_persistent_folder(ArrayList<BC_ListBoxItem*> *output,
988 int do_audio, int do_video, int is_realtime, int is_transition)
990 ArrayList<PluginServer*> plugin_list;
991 // Get pointers to plugindb entries
992 mwindow->search_plugindb(do_audio, do_video, is_realtime, is_transition,
995 for( int i = 0; i < plugin_list.total; i++ ) {
996 PluginServer *server = plugin_list.values[i];
997 int visible = plugin_visibility & (1<<server->dir_idx);
998 if( !visible ) continue;
999 // Create new listitem
1000 AssetPicon *picon = new AssetPicon(mwindow, this, server);
1001 picon->create_objects();
1002 output->append(picon);
1006 void AWindowGUI::create_label_folder()
1009 for( current = mwindow->edl->labels->first; current; current = NEXT ) {
1010 AssetPicon *picon = new AssetPicon(mwindow, this, current);
1011 picon->create_objects();
1012 labellist.append(picon);
1017 void AWindowGUI::update_asset_list()
1019 for( int i = 0; i < assets.total; i++ ) {
1020 AssetPicon *picon = (AssetPicon*)assets.values[i];
1024 // Synchronize EDL clips
1025 for( int i = 0; i < mwindow->edl->clips.total; i++ ) {
1028 // Look for clip in existing listitems
1029 for( int j = 0; j < assets.total && !exists; j++ ) {
1030 AssetPicon *picon = (AssetPicon*)assets.values[j];
1032 if( picon->id == mwindow->edl->clips.values[i]->id ) {
1033 picon->edl = mwindow->edl->clips.values[i];
1034 picon->set_text(mwindow->edl->clips.values[i]->local_session->clip_title);
1040 // Create new listitem
1042 AssetPicon *picon = new AssetPicon(mwindow,
1043 this, mwindow->edl->clips.values[i]);
1044 picon->create_objects();
1045 assets.append(picon);
1049 // Synchronize EDL assets
1050 for( Asset *current = mwindow->edl->assets->first;
1055 // Look for asset in existing listitems
1056 for( int j = 0; j < assets.total && !exists; j++ ) {
1057 AssetPicon *picon = (AssetPicon*)assets.values[j];
1059 if( picon->id == current->id ) {
1060 picon->indexable = current;
1067 // Create new listitem
1069 AssetPicon *picon = new AssetPicon(mwindow,
1071 picon->create_objects();
1072 assets.append(picon);
1076 mwindow->gui->lock_window("AWindowGUI::update_asset_list");
1077 mwindow->gui->default_message();
1078 mwindow->gui->unlock_window();
1080 // Synchronize nested EDLs
1081 for( int i = 0; i < mwindow->edl->nested_edls->size(); i++ ) {
1083 Indexable *indexable = mwindow->edl->nested_edls->get(i);
1085 // Look for asset in existing listitems
1086 for( int j = 0; j < assets.total && !exists; j++ ) {
1087 AssetPicon *picon = (AssetPicon*)assets.values[j];
1089 if( picon->id == indexable->id ) {
1090 picon->indexable = indexable;
1097 // Create new listitem
1099 AssetPicon *picon = new AssetPicon(mwindow,
1101 picon->create_objects();
1102 assets.append(picon);
1106 for( int i = assets.size() - 1; i >= 0; i-- ) {
1107 AssetPicon *picon = (AssetPicon*)assets.get(i);
1108 if( !picon->in_use ) {
1110 assets.remove_number(i);
1115 void AWindowGUI::update_picon(Indexable *indexable)
1118 for( int i = 0; i < assets.total; i++ ) {
1119 AssetPicon *picon = (AssetPicon*)assets.values[i];
1120 if( picon->indexable == indexable ||
1121 picon->edl == (EDL *)indexable ) {
1122 char name[BCTEXTLEN];
1124 fs.extract_name(name, indexable->path);
1125 picon->set_text(name);
1126 vicon = picon->vicon;
1131 stop_vicon_drawing();
1132 vicon->clear_images();
1133 vicon->reset(indexable->get_frame_rate());
1134 start_vicon_drawing();
1138 void AWindowGUI::sort_assets()
1140 switch( mwindow->edl->session->awindow_folder ) {
1141 case AW_AEFFECT_FOLDER:
1142 sort_picons(&aeffects);
1144 case AW_VEFFECT_FOLDER:
1145 sort_picons(&veffects);
1147 case AW_ATRANSITION_FOLDER:
1148 sort_picons(&atransitions);
1150 case AW_VTRANSITION_FOLDER:
1151 sort_picons(&vtransitions);
1153 case AW_LABEL_FOLDER:
1154 sort_picons(&labellist);
1157 sort_picons(&assets);
1160 asset_list->update_format(asset_list->get_format(), 0);
1164 void AWindowGUI::sort_folders()
1166 sort_picons(&folders);
1167 folder_list->update_format(folder_list->get_format(), 0);
1171 void AWindowGUI::collect_assets()
1174 mwindow->session->drag_assets->remove_all();
1175 mwindow->session->drag_clips->remove_all();
1178 AssetPicon *result = (AssetPicon*)asset_list->get_selection(0, i++);
1179 if( !result ) break;
1181 if( result->indexable ) mwindow->session->drag_assets->append(result->indexable);
1182 if( result->edl ) mwindow->session->drag_clips->append(result->edl);
1186 void AWindowGUI::copy_picons(ArrayList<BC_ListBoxItem*> *dst,
1187 ArrayList<BC_ListBoxItem*> *src, int folder)
1189 // Remove current pointers
1190 dst[0].remove_all();
1191 dst[1].remove_all_objects();
1193 // Create new pointers
1194 for( int i = 0; i < src->total; i++ ) {
1195 AssetPicon *picon = (AssetPicon*)src->values[i];
1197 (picon->indexable && picon->indexable->awindow_folder == folder) ||
1198 (picon->edl && picon->edl->local_session->awindow_folder == folder) ) {
1199 const char *text = search_text->get_text();
1200 int hidden = text && text[0] && !bstrcasestr(picon->get_text(), text);
1201 if( picon->vicon ) picon->vicon->hidden = hidden;
1202 if( hidden ) continue;
1203 BC_ListBoxItem *item2, *item1;
1204 dst[0].append(item1 = picon);
1206 dst[1].append(item2 = new BC_ListBoxItem(picon->edl->local_session->clip_notes));
1208 if( picon->label && picon->label->textstr )
1209 dst[1].append(item2 = new BC_ListBoxItem(picon->label->textstr));
1211 dst[1].append(item2 = new BC_ListBoxItem(""));
1212 item1->set_autoplace_text(1); item1->set_autoplace_icon(1);
1213 item2->set_autoplace_text(1); item2->set_autoplace_icon(1);
1218 void AWindowGUI::sort_picons(ArrayList<BC_ListBoxItem*> *src)
1224 for( int i = 0; i < src->total - 1; i++ ) {
1225 BC_ListBoxItem *item1 = src->values[i];
1226 BC_ListBoxItem *item2 = src->values[i + 1];
1227 item1->set_autoplace_icon(1);
1228 item2->set_autoplace_icon(1);
1229 item1->set_autoplace_text(1);
1230 item2->set_autoplace_text(1);
1231 if( strcmp(item1->get_text(), item2->get_text()) > 0 ) {
1232 src->values[i + 1] = item1;
1233 src->values[i] = item2;
1241 void AWindowGUI::filter_displayed_assets()
1243 //allow_iconlisting = 1;
1244 asset_titles[0] = C_("Title");
1245 asset_titles[1] = _("Comments");
1247 switch( mwindow->edl->session->awindow_folder ) {
1248 case AW_AEFFECT_FOLDER:
1249 copy_picons(displayed_assets, &aeffects, AW_NO_FOLDER);
1251 case AW_VEFFECT_FOLDER:
1252 copy_picons(displayed_assets, &veffects, AW_NO_FOLDER);
1254 case AW_ATRANSITION_FOLDER:
1255 copy_picons(displayed_assets, &atransitions, AW_NO_FOLDER);
1257 case AW_VTRANSITION_FOLDER:
1258 copy_picons(displayed_assets, &vtransitions, AW_NO_FOLDER);
1260 case AW_LABEL_FOLDER:
1261 copy_picons(displayed_assets, &labellist, AW_NO_FOLDER);
1262 asset_titles[0] = _("Time Stamps");
1263 asset_titles[1] = C_("Title");
1264 //allow_iconlisting = 0;
1267 copy_picons(displayed_assets, &assets, mwindow->edl->session->awindow_folder);
1271 // Ensure the current folder icon is highlighted
1272 int selected_folder = mwindow->edl->session->awindow_folder;
1273 for( int i = 0; i < folders.total; i++ ) {
1274 AssetPicon *folder_item = (AssetPicon *)folders.values[i];
1275 int selected = folder_item->foldernum == selected_folder ? 1 : 0;
1276 folder_item->set_selected(selected);
1281 void AWindowGUI::update_assets()
1283 stop_vicon_drawing();
1284 update_folder_list();
1285 update_asset_list();
1286 labellist.remove_all_objects();
1287 create_label_folder();
1289 if( displayed_folder != mwindow->edl->session->awindow_folder )
1290 search_text->clear();
1291 filter_displayed_assets();
1293 if( mwindow->edl->session->folderlist_format != folder_list->get_format() ) {
1294 folder_list->update_format(mwindow->edl->session->folderlist_format, 0);
1296 int folder_xposition = folder_list->get_xposition();
1297 int folder_yposition = folder_list->get_yposition();
1298 folder_list->update(&folders, 0, 0, 1, folder_xposition, folder_yposition, -1);
1300 if( mwindow->edl->session->assetlist_format != asset_list->get_format() ) {
1301 asset_list->update_format(mwindow->edl->session->assetlist_format, 0);
1303 int asset_xposition = asset_list->get_xposition();
1304 int asset_yposition = asset_list->get_yposition();
1305 if( displayed_folder != mwindow->edl->session->awindow_folder ) {
1306 displayed_folder = mwindow->edl->session->awindow_folder;
1307 asset_xposition = asset_yposition = 0;
1309 asset_list->update(displayed_assets, asset_titles,
1310 mwindow->edl->session->asset_columns, ASSET_COLUMNS,
1311 asset_xposition, asset_yposition, -1, 0);
1312 asset_list->center_selection();
1315 start_vicon_drawing();
1319 void AWindowGUI::update_effects()
1321 aeffects.remove_all_objects();
1322 create_persistent_folder(&aeffects, 1, 0, 1, 0);
1323 veffects.remove_all_objects();
1324 create_persistent_folder(&veffects, 0, 1, 1, 0);
1325 atransitions.remove_all_objects();
1326 create_persistent_folder(&atransitions, 1, 0, 0, 1);
1327 vtransitions.remove_all_objects();
1328 create_persistent_folder(&vtransitions, 0, 1, 0, 1);
1331 int AWindowGUI::folder_number(const char *name)
1333 for( int i = 0; i < AWINDOW_FOLDERS; i++ ) {
1334 if( !strcasecmp(name, folder_names[i]) ) return i;
1336 return AW_NO_FOLDER;
1339 int AWindowGUI::drag_motion()
1341 if( get_hidden() ) return 0;
1347 int AWindowGUI::drag_stop()
1349 if( get_hidden() ) return 0;
1354 Indexable* AWindowGUI::selected_asset()
1356 AssetPicon *picon = (AssetPicon*)asset_list->get_selection(0, 0);
1357 return picon ? picon->indexable : 0;
1360 PluginServer* AWindowGUI::selected_plugin()
1362 AssetPicon *picon = (AssetPicon*)asset_list->get_selection(0, 0);
1363 return picon ? picon->plugin : 0;
1366 AssetPicon* AWindowGUI::selected_folder()
1368 AssetPicon *picon = (AssetPicon*)folder_list->get_selection(0, 0);
1379 AWindowDivider::AWindowDivider(MWindow *mwindow, AWindowGUI *gui, int x, int y, int w, int h)
1380 : BC_SubWindow(x, y, w, h)
1382 this->mwindow = mwindow;
1385 AWindowDivider::~AWindowDivider()
1389 int AWindowDivider::button_press_event()
1391 if( is_event_win() && cursor_inside() ) {
1392 mwindow->session->current_operation = DRAG_PARTITION;
1398 int AWindowDivider::cursor_motion_event()
1400 if( mwindow->session->current_operation == DRAG_PARTITION ) {
1402 int wmax = mwindow->session->awindow_w - mwindow->theme->adivider_w - wmin;
1403 int fw = gui->get_relative_cursor_x();
1404 if( fw > wmax ) fw = wmax;
1405 if( fw < wmin ) fw = wmin;
1406 mwindow->session->afolders_w = fw;
1407 mwindow->theme->get_awindow_sizes(gui);
1408 gui->reposition_objects();
1414 int AWindowDivider::button_release_event()
1416 if( mwindow->session->current_operation == DRAG_PARTITION ) {
1417 mwindow->session->current_operation = NO_OPERATION;
1428 AWindowFolders::AWindowFolders(MWindow *mwindow, AWindowGUI *gui, int x, int y, int w, int h)
1429 : BC_ListBox(x, y, w, h,
1430 mwindow->edl->session->folderlist_format == ASSETS_ICONS ?
1431 LISTBOX_ICONS : LISTBOX_TEXT,
1432 &gui->folders, // Each column has an ArrayList of BC_ListBoxItems.
1433 0, // Titles for columns. Set to 0 for no titles
1434 0, // width of each column
1435 1, // Total columns.
1436 0, // Pixel of top of window.
1437 0, // If this listbox is a popup window
1438 LISTBOX_SINGLE, // Select one item or multiple items
1439 ICON_TOP, // Position of icon relative to text of each item
1442 this->mwindow = mwindow;
1447 AWindowFolders::~AWindowFolders()
1451 int AWindowFolders::selection_changed()
1453 AssetPicon *picon = (AssetPicon*)get_selection(0, 0);
1455 gui->stop_vicon_drawing();
1457 if( get_button_down() && get_buttonpress() == 3 ) {
1458 gui->folderlist_menu->update_titles();
1459 gui->folderlist_menu->activate_menu();
1462 mwindow->edl->session->awindow_folder = picon->foldernum;
1463 gui->asset_list->draw_background();
1464 gui->async_update_assets();
1466 gui->start_vicon_drawing();
1471 int AWindowFolders::button_press_event()
1475 result = BC_ListBox::button_press_event();
1478 if( get_buttonpress() == 3 && is_event_win() && cursor_inside() ) {
1479 gui->folderlist_menu->update_titles();
1480 gui->folderlist_menu->activate_menu();
1495 AWindowAssets::AWindowAssets(MWindow *mwindow, AWindowGUI *gui, int x, int y, int w, int h)
1496 : BC_ListBox(x, y, w, h,
1497 (mwindow->edl->session->assetlist_format == ASSETS_ICONS && gui->allow_iconlisting ) ?
1498 LISTBOX_ICONS : LISTBOX_TEXT,
1499 &gui->assets, // Each column has an ArrayList of BC_ListBoxItems.
1500 gui->asset_titles,// Titles for columns. Set to 0 for no titles
1501 mwindow->edl->session->asset_columns, // width of each column
1502 1, // Total columns.
1503 0, // Pixel of top of window.
1504 0, // If this listbox is a popup window
1505 LISTBOX_MULTIPLE, // Select one item or multiple items
1506 ICON_TOP, // Position of icon relative to text of each item
1507 -1) // Allow drags, require shift for scrolling
1509 this->mwindow = mwindow;
1512 set_scroll_stretch(1, 1);
1515 AWindowAssets::~AWindowAssets()
1519 int AWindowAssets::button_press_event()
1523 result = BC_ListBox::button_press_event();
1525 if( !result && get_buttonpress() == 3 && is_event_win() && cursor_inside() ) {
1526 BC_ListBox::deactivate_selection();
1527 int folder = mwindow->edl->session->awindow_folder;
1529 case AW_AEFFECT_FOLDER:
1530 case AW_VEFFECT_FOLDER:
1531 case AW_ATRANSITION_FOLDER:
1532 case AW_VTRANSITION_FOLDER:
1533 gui->effectlist_menu->update();
1534 gui->effectlist_menu->activate_menu();
1536 case AW_LABEL_FOLDER:
1537 gui->labellist_menu->update();
1538 gui->labellist_menu->activate_menu();
1540 case AW_CLIP_FOLDER:
1541 gui->cliplist_menu->update();
1542 gui->cliplist_menu->activate_menu();
1544 case AW_MEDIA_FOLDER:
1545 case AW_PROXY_FOLDER:
1546 gui->assetlist_menu->update_titles();
1547 gui->assetlist_menu->activate_menu();
1557 int AWindowAssets::handle_event()
1559 AssetPicon *asset_picon = (AssetPicon *)get_selection(0, 0);
1560 if( !asset_picon ) return 0;
1561 switch( mwindow->edl->session->awindow_folder ) {
1562 case AW_AEFFECT_FOLDER:
1563 case AW_VEFFECT_FOLDER:
1564 case AW_ATRANSITION_FOLDER:
1565 case AW_VTRANSITION_FOLDER: return 1;
1567 VWindow *vwindow = mwindow->vwindows.size() > DEFAULT_VWINDOW ?
1568 mwindow->vwindows.get(DEFAULT_VWINDOW) : 0;
1569 if( !vwindow || !vwindow->is_running() ) return 1;
1571 vwindow->gui->lock_window("AWindowAssets::handle_event");
1572 if( asset_picon->indexable )
1573 vwindow->change_source(asset_picon->indexable);
1574 else if( asset_picon->edl )
1575 vwindow->change_source(asset_picon->edl);
1576 vwindow->gui->unlock_window();
1580 int AWindowAssets::selection_changed()
1582 // Show popup window
1584 if( get_button_down() && get_buttonpress() == 3 &&
1585 (item = (AssetPicon*)get_selection(0, 0)) ) {
1586 int folder = mwindow->edl->session->awindow_folder;
1588 case AW_AEFFECT_FOLDER:
1589 case AW_VEFFECT_FOLDER:
1590 case AW_ATRANSITION_FOLDER:
1591 case AW_VTRANSITION_FOLDER:
1592 gui->effectlist_menu->update();
1593 gui->effectlist_menu->activate_menu();
1595 case AW_LABEL_FOLDER:
1596 if( !item->label ) break;
1597 gui->label_menu->activate_menu();
1599 case AW_CLIP_FOLDER:
1600 if( !item->indexable && !item->edl ) break;
1601 gui->clip_menu->update();
1602 gui->clip_menu->activate_menu();
1605 if( !item->indexable && !item->edl ) break;
1606 gui->asset_menu->update();
1607 gui->asset_menu->activate_menu();
1611 BC_ListBox::deactivate_selection();
1614 else if( get_button_down() && get_buttonpress() == 1 &&
1615 (item = (AssetPicon*)get_selection(0, 0)) ) {
1617 if( !gui->vicon_thread->viewing ) {
1618 vicon = item->vicon;
1620 gui->vicon_thread->set_view_popup(vicon);
1626 void AWindowAssets::draw_background()
1628 clear_box(0,0,get_w(),get_h(),get_bg_surface());
1629 set_color(BC_WindowBase::get_resources()->audiovideo_color);
1630 set_font(LARGEFONT);
1631 int aw_folder = mwindow->edl->session->awindow_folder;
1632 if( aw_folder < 0 ) return;
1633 const char *aw_name = _(AWindowGUI::folder_names[aw_folder]);
1634 draw_text(get_w() - get_text_width(LARGEFONT, aw_name) - 4, 30,
1635 aw_name, -1, get_bg_surface());
1638 int AWindowAssets::drag_start_event()
1640 int collect_pluginservers = 0;
1641 int collect_assets = 0;
1643 if( BC_ListBox::drag_start_event() ) {
1644 switch( mwindow->edl->session->awindow_folder ) {
1645 case AW_AEFFECT_FOLDER:
1646 mwindow->session->current_operation = DRAG_AEFFECT;
1647 collect_pluginservers = 1;
1649 case AW_VEFFECT_FOLDER:
1650 mwindow->session->current_operation = DRAG_VEFFECT;
1651 collect_pluginservers = 1;
1653 case AW_ATRANSITION_FOLDER:
1654 mwindow->session->current_operation = DRAG_ATRANSITION;
1655 collect_pluginservers = 1;
1657 case AW_VTRANSITION_FOLDER:
1658 mwindow->session->current_operation = DRAG_VTRANSITION;
1659 collect_pluginservers = 1;
1661 case AW_LABEL_FOLDER:
1665 mwindow->session->current_operation = DRAG_ASSET;
1670 if( collect_pluginservers ) {
1672 mwindow->session->drag_pluginservers->remove_all();
1675 AssetPicon *result = (AssetPicon*)get_selection(0, i++);
1676 if( !result ) break;
1678 mwindow->session->drag_pluginservers->append(result->plugin);
1682 if( collect_assets ) {
1683 gui->collect_assets();
1691 int AWindowAssets::drag_motion_event()
1693 BC_ListBox::drag_motion_event();
1696 mwindow->gui->lock_window("AWindowAssets::drag_motion_event");
1697 mwindow->gui->drag_motion();
1698 mwindow->gui->unlock_window();
1700 for( int i = 0; i < mwindow->vwindows.size(); i++ ) {
1701 VWindow *vwindow = mwindow->vwindows.get(i);
1702 if( !vwindow->is_running() ) continue;
1703 vwindow->gui->lock_window("AWindowAssets::drag_motion_event");
1704 vwindow->gui->drag_motion();
1705 vwindow->gui->unlock_window();
1708 mwindow->cwindow->gui->lock_window("AWindowAssets::drag_motion_event");
1709 mwindow->cwindow->gui->drag_motion();
1710 mwindow->cwindow->gui->unlock_window();
1712 lock_window("AWindowAssets::drag_motion_event");
1716 int AWindowAssets::drag_stop_event()
1720 result = gui->drag_stop();
1725 mwindow->gui->lock_window("AWindowAssets::drag_stop_event");
1726 result = mwindow->gui->drag_stop();
1727 mwindow->gui->unlock_window();
1731 for( int i = 0; !result && i < mwindow->vwindows.size(); i++ ) {
1732 VWindow *vwindow = mwindow->vwindows.get(i);
1733 if( !vwindow ) continue;
1734 if( !vwindow->is_running() ) continue;
1735 if( vwindow->gui->is_hidden() ) continue;
1736 vwindow->gui->lock_window("AWindowAssets::drag_stop_event");
1737 if( vwindow->gui->cursor_above() &&
1738 vwindow->gui->get_cursor_over_window() ) {
1739 result = vwindow->gui->drag_stop();
1741 vwindow->gui->unlock_window();
1746 mwindow->cwindow->gui->lock_window("AWindowAssets::drag_stop_event");
1747 result = mwindow->cwindow->gui->drag_stop();
1748 mwindow->cwindow->gui->unlock_window();
1751 lock_window("AWindowAssets::drag_stop_event");
1754 get_drag_popup()->set_animation(0);
1756 BC_ListBox::drag_stop_event();
1757 // since NO_OPERATION is also defined in listbox, we have to reach for global scope...
1758 mwindow->session->current_operation = ::NO_OPERATION;
1762 int AWindowAssets::column_resize_event()
1764 mwindow->edl->session->asset_columns[0] = get_column_width(0);
1765 mwindow->edl->session->asset_columns[1] = get_column_width(1);
1769 int AWindowAssets::focus_in_event()
1771 gui->start_vicon_drawing();
1775 int AWindowAssets::focus_out_event()
1777 gui->stop_vicon_drawing();
1778 return BC_ListBox::focus_out_event();
1781 AWindowSearchTextBox::AWindowSearchTextBox(AWindowSearchText *search_text, int x, int y, int w)
1782 : BC_TextBox(x, y, w, 1, "")
1784 this->search_text = search_text;
1787 int AWindowSearchTextBox::handle_event()
1789 return search_text->handle_event();
1792 AWindowSearchText::AWindowSearchText(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1794 this->mwindow = mwindow;
1800 void AWindowSearchText::create_objects()
1802 int x1 = x, y1 = y, margin = 10;
1803 gui->add_subwindow(text_title = new BC_Title(x1, y1, _("Search:")));
1804 x1 += text_title->get_w() + margin;
1805 int w1 = gui->get_w() - x1 - 2*margin;
1806 gui->add_subwindow(text_box = new AWindowSearchTextBox(this, x1, y1, w1));
1809 int AWindowSearchText::handle_event()
1811 gui->async_update_assets();
1815 int AWindowSearchText::get_w()
1817 return text_box->get_w() + text_title->get_w() + 10;
1820 int AWindowSearchText::get_h()
1822 return bmax(text_box->get_h(),text_title->get_h());
1825 void AWindowSearchText::reposition_window(int x, int y, int w)
1827 int x1 = x, y1 = y, margin = 10;
1828 text_title->reposition_window(x1, y1);
1829 x1 += text_title->get_w() + margin;
1830 int w1 = gui->get_w() - x1 - 2*margin;
1831 text_box->reposition_window(x1, y1, w1);
1834 const char *AWindowSearchText::get_text()
1836 return text_box->get_text();
1839 void AWindowSearchText::clear()
1841 text_box->update("");
1844 AWindowNewFolder::AWindowNewFolder(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1845 : BC_Button(x, y, mwindow->theme->newbin_data)
1847 this->mwindow = mwindow;
1849 set_tooltip(_("New bin"));
1852 int AWindowNewFolder::handle_event()
1854 gui->newfolder_thread->start_new_folder();
1858 AWindowDeleteFolder::AWindowDeleteFolder(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1859 : BC_Button(x, y, mwindow->theme->deletebin_data)
1861 this->mwindow = mwindow;
1863 set_tooltip(_("Delete bin"));
1866 int AWindowDeleteFolder::handle_event()
1868 if( gui->folder_list->get_selection(0, 0) ) {
1869 BC_ListBoxItem *folder = gui->folder_list->get_selection(0, 0);
1870 mwindow->delete_folder(folder->get_text());
1875 AWindowRenameFolder::AWindowRenameFolder(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1876 : BC_Button(x, y, mwindow->theme->renamebin_data)
1878 this->mwindow = mwindow;
1880 set_tooltip(_("Rename bin"));
1883 int AWindowRenameFolder::handle_event()
1888 AWindowDeleteDisk::AWindowDeleteDisk(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1889 : BC_Button(x, y, mwindow->theme->deletedisk_data)
1891 this->mwindow = mwindow;
1893 set_tooltip(_("Delete asset from disk"));
1896 int AWindowDeleteDisk::handle_event()
1901 AWindowDeleteProject::AWindowDeleteProject(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1902 : BC_Button(x, y, mwindow->theme->deleteproject_data)
1904 this->mwindow = mwindow;
1906 set_tooltip(_("Delete asset from project"));
1909 int AWindowDeleteProject::handle_event()
1914 // AWindowInfo::AWindowInfo(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1915 // : BC_Button(x, y, mwindow->theme->infoasset_data)
1917 // this->mwindow = mwindow;
1919 // set_tooltip(_("Edit information on asset"));
1922 // int AWindowInfo::handle_event()
1924 // int cur_x, cur_y;
1925 // gui->get_abs_cursor(cur_x, cur_y, 0);
1926 // gui->awindow->asset_edit->edit_asset(gui->selected_asset(), cur_x, cur_y);
1930 AWindowRedrawIndex::AWindowRedrawIndex(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1931 : BC_Button(x, y, mwindow->theme->redrawindex_data)
1933 this->mwindow = mwindow;
1935 set_tooltip(_("Redraw index"));
1938 int AWindowRedrawIndex::handle_event()
1943 AWindowPaste::AWindowPaste(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1944 : BC_Button(x, y, mwindow->theme->pasteasset_data)
1946 this->mwindow = mwindow;
1948 set_tooltip(_("Paste asset on recordable tracks"));
1951 int AWindowPaste::handle_event()
1956 AWindowAppend::AWindowAppend(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1957 : BC_Button(x, y, mwindow->theme->appendasset_data)
1959 this->mwindow = mwindow;
1961 set_tooltip(_("Append asset in new tracks"));
1964 int AWindowAppend::handle_event()
1969 AWindowView::AWindowView(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1970 : BC_Button(x, y, mwindow->theme->viewasset_data)
1972 this->mwindow = mwindow;
1974 set_tooltip(_("View asset"));
1977 int AWindowView::handle_event()
1982 AddTools::AddTools(MWindow *mwindow, AWindowGUI *gui, int x, int y, const char *title)
1983 : BC_PopupMenu(x, y, BC_Title::calculate_w(gui, title, MEDIUMFONT)+8, title, -1, 0, 4)
1985 this->mwindow = mwindow;
1989 void AddTools::create_objects()
1992 add_item(new AddPluginItem(this, "ladspa", PLUGIN_LADSPA_ID));
1993 vis |= 1 << PLUGIN_LADSPA_ID;
1994 add_item(new AddPluginItem(this, "ffmpeg", PLUGIN_FFMPEG_ID));
1995 vis |= 1 << PLUGIN_FFMPEG_ID;
1996 for( int i=0; i<MWindow::plugindb->size(); ++i ) {
1997 PluginServer *plugin = MWindow::plugindb->get(i);
1998 if( !plugin->audio && !plugin->video ) continue;
1999 int idx = plugin->dir_idx;
2000 uint32_t msk = 1 << idx;
2001 if( (msk & vis) != 0 ) continue;
2003 char parent[BCTEXTLEN];
2004 strcpy(parent, plugin->path);
2005 char *bp = strrchr(parent, '/');
2006 if( bp ) { *bp = 0; bp = strrchr(parent, '/'); }
2007 if( !bp ) bp = parent; else ++bp;
2008 add_item(new AddPluginItem(this, bp, idx));
2013 // plugin_dirs list from toplevel makefile include plugin_defs
2017 N_("audio_transitions")
2024 N_("video_transitions")
2027 AddPluginItem::AddPluginItem(AddTools *menu, char const *text, int idx)
2028 : BC_MenuItem(_(text))
2032 uint64_t msk = (uint64_t)1 << idx, vis = menu->gui->plugin_visibility;
2033 int chk = (msk & vis) ? 1 : 0;
2037 int AddPluginItem::handle_event()
2039 int chk = get_checked() ^ 1;
2041 uint64_t msk = (uint64_t)1 << idx, vis = menu->gui->plugin_visibility;
2042 menu->gui->plugin_visibility = chk ? vis | msk : vis & ~msk;
2043 menu->gui->update_effects();
2044 menu->gui->save_defaults(menu->mwindow->defaults);
2045 menu->gui->async_update_assets();
2049 AVIconDrawing::AVIconDrawing(AWindowGUI *agui, int x, int y, VFrame **images)
2050 : BC_Toggle(x, y, images, agui->vicon_drawing)
2053 set_tooltip(_("draw vicons"));
2056 void AVIconDrawing::calculate_geometry(AWindowGUI *agui, VFrame **images, int *ww, int *hh)
2058 int text_line = -1, toggle_x = -1, toggle_y = -1;
2059 int text_x = -1, text_y = -1, text_w = -1, text_h = -1;
2060 BC_Toggle::calculate_extents(agui, images, 1,
2061 &text_line, ww, hh, &toggle_x, &toggle_y,
2062 &text_x, &text_y, &text_w, &text_h, "", MEDIUMFONT);
2065 AVIconDrawing::~AVIconDrawing()
2069 int AVIconDrawing::handle_event()
2071 agui->vicon_drawing = get_value();
2072 if( agui->vicon_drawing )
2073 agui->start_vicon_drawing();
2075 agui->stop_vicon_drawing();
2080 AWindowListFormat::AWindowListFormat(MWindow *mwindow, AWindowGUI *gui)
2083 this->mwindow = mwindow;
2087 int AWindowListFormat::handle_event()
2089 gui->stop_vicon_drawing();
2091 EDLSession *session = mwindow->edl->session;
2092 switch( session->assetlist_format ) {
2094 session->assetlist_format = ASSETS_ICONS;
2097 session->assetlist_format = ASSETS_TEXT;
2101 gui->asset_list->update_format(session->assetlist_format, 1);
2102 if( !mwindow->awindow->gui->allow_iconlisting ) {
2103 mwindow->edl->session->assetlist_format = ASSETS_TEXT;
2106 gui->start_vicon_drawing();
2110 void AWindowListFormat::update()
2112 set_text(mwindow->edl->session->assetlist_format == ASSETS_TEXT ?
2113 (char*)_("Display icons") : (char*)_("Display text"));
2116 AWindowListSort::AWindowListSort(MWindow *mwindow, AWindowGUI *gui)
2117 : BC_MenuItem(_("Sort items"))
2119 this->mwindow = mwindow;
2123 int AWindowListSort::handle_event()