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;
230 void AssetPicon::create_objects()
233 char name[BCTEXTLEN];
234 int pixmap_w, pixmap_h;
236 pixmap_h = 50 * BC_WindowBase::get_resources()->icon_scale;
239 fs.extract_name(name, indexable->path);
243 if( indexable && indexable->is_asset ) {
244 Asset *asset = (Asset*)indexable;
245 if( asset->video_data ) {
246 if( mwindow->preferences->use_thumbnails ) {
247 gui->unlock_window();
248 File *file = mwindow->video_cache->check_out(asset,
253 int height = asset->height > 0 ? asset->height : 1;
254 pixmap_w = pixmap_h * asset->width / height;
257 file->set_video_position(0, 0);
259 if( gui->temp_picon &&
260 (gui->temp_picon->get_w() != asset->width ||
261 gui->temp_picon->get_h() != asset->height) ) {
262 delete gui->temp_picon;
266 if( !gui->temp_picon ) {
267 gui->temp_picon = new VFrame(0, -1,
268 asset->width, asset->height,
271 { char string[BCTEXTLEN];
272 sprintf(string, _("Reading %s"), name);
273 mwindow->gui->lock_window("AssetPicon::create_objects");
274 mwindow->gui->show_message(string);
275 mwindow->gui->unlock_window(); }
276 file->read_frame(gui->temp_picon);
277 mwindow->video_cache->check_in(asset);
279 gui->lock_window("AssetPicon::create_objects 1");
280 icon = new BC_Pixmap(gui, pixmap_w, pixmap_h);
281 icon->draw_vframe(gui->temp_picon,
282 0, 0, pixmap_w, pixmap_h, 0, 0);
283 icon_vframe = new VFrame(0,
284 -1, pixmap_w, pixmap_h, BC_RGB888, -1);
285 icon_vframe->transfer_from(gui->temp_picon);
286 if( asset->awindow_folder == AW_MEDIA_FOLDER ) {
288 double framerate = asset->get_frame_rate();
289 if( !framerate ) framerate = VICON_RATE;
290 int64_t frames = asset->get_video_frames();
291 double secs = frames / framerate;
292 if( secs > 5 ) secs = 5;
293 int64_t length = secs * gui->vicon_thread->refresh_rate;
294 vicon = new AssetVIcon(this, pixmap_w, pixmap_h, framerate, length);
295 gui->vicon_thread->add_vicon(vicon);
300 gui->lock_window("AssetPicon::create_objects 2");
301 icon = gui->video_icon;
302 icon_vframe = gui->video_vframe;
306 icon = gui->video_icon;
307 icon_vframe = gui->video_vframe;
311 if( asset->audio_data ) {
312 icon = gui->audio_icon;
313 icon_vframe = gui->audio_vframe;
316 mtime = !stat(asset->path, &st) ? st.st_mtime : 0;
319 if( indexable && !indexable->is_asset ) {
320 icon = gui->video_icon;
321 icon_vframe = gui->video_vframe;
325 set_text(strcpy(name, edl->local_session->clip_title));
326 icon = gui->clip_icon;
327 icon_vframe = gui->clip_vframe;
331 strcpy(name, plugin->title);
333 icon_vframe = plugin->get_picon();
335 icon = gui->create_pixmap(icon_vframe);
336 else if( plugin->audio ) {
337 if( plugin->transition ) {
338 icon = gui->atransition_icon;
339 icon_vframe = gui->atransition_vframe;
341 else if( plugin->is_ffmpeg() ) {
342 icon = gui->ff_aud_icon;
343 icon_vframe = gui->ff_aud_vframe;
345 else if( plugin->is_ladspa() ) {
346 icon = gui->ladspa_icon;
347 icon_vframe = gui->ladspa_vframe;
350 icon = gui->aeffect_icon;
351 icon_vframe = gui->aeffect_vframe;
354 else if( plugin->video ) {
355 if( plugin->transition ) {
356 icon = gui->vtransition_icon;
357 icon_vframe = gui->vtransition_vframe;
359 else if( plugin->is_ffmpeg() ) {
360 icon = gui->ff_vid_icon;
361 icon_vframe = gui->ff_vid_vframe;
364 icon = gui->veffect_icon;
365 icon_vframe = gui->veffect_vframe;
373 mwindow->edl->session->time_format,
374 mwindow->edl->session->sample_rate,
375 mwindow->edl->session->frame_rate,
376 mwindow->edl->session->frames_per_foot);
378 icon = gui->label_icon;
379 icon_vframe = gui->label_vframe;
382 icon = gui->file_icon;
383 icon_vframe = BC_WindowBase::get_resources()->type_to_icon[ICON_UNKNOWN];
386 set_icon_vframe(icon_vframe);
389 AWindowGUI::AWindowGUI(MWindow *mwindow, AWindow *awindow)
390 : BC_Window(_(PROGRAM_NAME ": Resources"),
391 mwindow->session->awindow_x, mwindow->session->awindow_y,
392 mwindow->session->awindow_w, mwindow->session->awindow_h,
395 this->mwindow = mwindow;
396 this->awindow = awindow;
398 file_vframe = 0; file_icon = 0;
399 folder_vframe = 0; folder_icon = 0;
400 audio_vframe = 0; audio_icon = 0;
401 video_vframe = 0; video_icon = 0;
402 label_vframe = 0; label_icon = 0;
404 atransition_vframe = 0; atransition_icon = 0;
405 vtransition_vframe = 0; vtransition_icon = 0;
406 aeffect_vframe = 0; aeffect_icon = 0;
407 ladspa_vframe = 0; ladspa_icon = 0;
408 veffect_vframe = 0; veffect_icon = 0;
409 ff_aud_vframe = 0; ff_aud_icon = 0;
410 ff_vid_vframe = 0; ff_vid_icon = 0;
412 aeffect_folder_vframe = 0; aeffect_folder_icon = 0;
413 atransition_folder_vframe = 0; atransition_folder_icon = 0;
414 clip_folder_vframe = 0; clip_folder_icon = 0;
415 label_folder_vframe = 0; label_folder_icon = 0;
416 media_folder_vframe = 0; media_folder_icon = 0;
417 proxy_folder_vframe = 0; proxy_folder_icon = 0;
418 veffect_folder_vframe = 0; veffect_folder_icon = 0;
419 vtransition_folder_vframe = 0; vtransition_folder_icon = 0;
421 ladspa_vframe = 0; ladspa_icon = 0;
422 ff_aud_vframe = 0; ff_aud_icon = 0;
423 ff_vid_vframe = 0; ff_vid_icon = 0;
425 clip_vframe = 0; clip_icon = 0;
426 atransition_vframe = 0; atransition_icon = 0;
427 vtransition_vframe = 0; vtransition_icon = 0;
428 aeffect_vframe = 0; aeffect_icon = 0;
429 veffect_vframe = 0; veffect_icon = 0;
431 plugin_visibility = ((uint64_t)1<<(8*sizeof(uint64_t)-1))-1;
432 newfolder_thread = 0;
441 allow_iconlisting = 1;
445 displayed_folder = AW_NO_FOLDER;
448 AWindowGUI::~AWindowGUI()
450 assets.remove_all_objects();
451 folders.remove_all_objects();
452 aeffects.remove_all_objects();
453 veffects.remove_all_objects();
454 atransitions.remove_all_objects();
455 vtransitions.remove_all_objects();
456 labellist.remove_all_objects();
457 displayed_assets[1].remove_all_objects();
460 delete newfolder_thread;
465 delete effectlist_menu;
466 delete assetlist_menu;
467 delete cliplist_menu;
468 delete labellist_menu;
469 delete folderlist_menu;
472 delete remove_plugin;
474 delete file_vframe; delete file_icon;
475 delete folder_vframe; delete folder_icon;
476 delete audio_vframe; delete audio_icon;
477 delete video_vframe; delete video_icon;
478 delete label_vframe; delete label_icon;
479 delete clip_vframe; delete clip_icon;
480 delete aeffect_folder_vframe; delete aeffect_folder_icon;
481 delete atransition_folder_vframe; delete atransition_folder_icon;
482 delete veffect_folder_vframe; delete veffect_folder_icon;
483 delete vtransition_folder_vframe; delete vtransition_folder_icon;
484 delete clip_folder_vframe; delete clip_folder_icon;
485 delete label_folder_vframe; delete label_folder_icon;
486 delete media_folder_vframe; delete media_folder_icon;
487 delete proxy_folder_vframe; delete proxy_folder_icon;
488 delete ladspa_vframe; delete ladspa_icon;
489 delete ff_aud_vframe; delete ff_aud_icon;
490 delete ff_vid_vframe; delete ff_vid_icon;
491 delete atransition_vframe; delete atransition_icon;
492 delete vtransition_vframe; delete vtransition_icon;
493 delete aeffect_vframe; delete aeffect_icon;
494 delete veffect_vframe; delete veffect_icon;
497 bool AWindowGUI::protected_pixmap(BC_Pixmap *icon)
499 return icon == file_icon ||
500 icon == folder_icon ||
501 icon == audio_icon ||
502 icon == video_icon ||
504 icon == label_icon ||
505 icon == vtransition_icon ||
506 icon == atransition_icon ||
507 icon == veffect_icon ||
508 icon == aeffect_icon ||
509 icon == ladspa_icon ||
510 icon == ff_aud_icon ||
511 icon == ff_vid_icon ||
512 icon == aeffect_folder_icon ||
513 icon == veffect_folder_icon ||
514 icon == atransition_folder_icon ||
515 icon == vtransition_folder_icon ||
516 icon == label_folder_icon ||
517 icon == clip_folder_icon ||
518 icon == media_folder_icon ||
519 icon == proxy_folder_icon;
522 VFrame *AWindowGUI::get_picon(const char *name, const char *plugin_icons)
524 char png_path[BCTEXTLEN];
525 char *pp = png_path, *ep = pp + sizeof(png_path)-1;
526 snprintf(pp, ep-pp, "%s/picon/%s/%s.png",
527 File::get_plugin_path(), plugin_icons, name);
528 if( access(png_path, R_OK) ) return 0;
529 return VFramePng::vframe_png(png_path,0,0);
532 VFrame *AWindowGUI::get_picon(const char *name)
534 VFrame *vframe = get_picon(name, mwindow->preferences->plugin_icons);
536 char png_name[BCSTRLEN], *pp = png_name, *ep = pp + sizeof(png_name)-1;
537 snprintf(pp, ep-pp, "%s.png", name);
538 unsigned char *data = mwindow->theme->get_image_data(png_name);
539 if( data ) vframe = new VFramePng(data, 0.);
544 void AWindowGUI::resource_icon(VFrame *&vfrm, BC_Pixmap *&icon, const char *fn, int idx)
546 vfrm = get_picon(fn);
547 if( !vfrm ) vfrm = BC_WindowBase::get_resources()->type_to_icon[idx];
548 icon = new BC_Pixmap(this, vfrm, PIXMAP_ALPHA);
550 void AWindowGUI::theme_icon(VFrame *&vfrm, BC_Pixmap *&icon, const char *fn)
552 vfrm = get_picon(fn);
553 if( !vfrm ) vfrm = mwindow->theme->get_image(fn);
554 icon = new BC_Pixmap(this, vfrm, PIXMAP_ALPHA);
556 void AWindowGUI::plugin_icon(VFrame *&vfrm, BC_Pixmap *&icon, const char *fn, unsigned char *png)
558 vfrm = get_picon(fn);
559 if( !vfrm ) vfrm = new VFramePng(png);
560 icon = new BC_Pixmap(this, vfrm, PIXMAP_ALPHA);
563 void AWindowGUI::create_objects()
565 lock_window("AWindowGUI::create_objects");
566 asset_titles[0] = C_("Title");
567 asset_titles[1] = _("Comments");
569 set_icon(mwindow->theme->get_image("awindow_icon"));
571 resource_icon(file_vframe, file_icon, "film_icon", ICON_UNKNOWN);
572 resource_icon(folder_vframe, folder_icon, "folder_icon", ICON_FOLDER);
573 resource_icon(audio_vframe, audio_icon, "audio_icon", ICON_SOUND);
574 resource_icon(video_vframe, video_icon, "video_icon", ICON_FILM);
575 resource_icon(label_vframe, label_icon, "label_icon", ICON_LABEL);
577 theme_icon(aeffect_folder_vframe, aeffect_folder_icon, "aeffect_folder");
578 theme_icon(atransition_folder_vframe, atransition_folder_icon, "atransition_folder");
579 theme_icon(clip_folder_vframe, clip_folder_icon, "clip_folder");
580 theme_icon(label_folder_vframe, label_folder_icon, "label_folder");
581 theme_icon(media_folder_vframe, media_folder_icon, "media_folder");
582 theme_icon(proxy_folder_vframe, proxy_folder_icon, "proxy_folder");
583 theme_icon(veffect_folder_vframe, veffect_folder_icon, "veffect_folder");
584 theme_icon(vtransition_folder_vframe, vtransition_folder_icon, "vtransition_folder");
586 folder_icons[AW_AEFFECT_FOLDER] = aeffect_folder_icon;
587 folder_icons[AW_VEFFECT_FOLDER] = veffect_folder_icon;
588 folder_icons[AW_ATRANSITION_FOLDER] = atransition_folder_icon;
589 folder_icons[AW_VTRANSITION_FOLDER] = vtransition_folder_icon;
590 folder_icons[AW_LABEL_FOLDER] = label_folder_icon;
591 folder_icons[AW_CLIP_FOLDER] = clip_folder_icon;
592 folder_icons[AW_MEDIA_FOLDER] = media_folder_icon;
593 folder_icons[AW_PROXY_FOLDER] = proxy_folder_icon;
595 theme_icon(clip_vframe, clip_icon, "clip_icon");
596 theme_icon(atransition_vframe, atransition_icon, "atransition_icon");
597 theme_icon(vtransition_vframe, vtransition_icon, "vtransition_icon");
598 theme_icon(aeffect_vframe, aeffect_icon, "aeffect_icon");
599 theme_icon(veffect_vframe, veffect_icon, "veffect_icon");
601 plugin_icon(ladspa_vframe, ladspa_icon, "lad_picon", lad_picon_png);
602 plugin_icon(ff_aud_vframe, ff_aud_icon, "ff_audio", ff_audio_png);
603 plugin_icon(ff_vid_vframe, ff_vid_icon, "ff_video", ff_video_png);
606 folders.append(new AssetPicon(mwindow, this, AW_AEFFECT_FOLDER, 1));
607 folders.append(new AssetPicon(mwindow, this, AW_VEFFECT_FOLDER, 1));
608 folders.append(new AssetPicon(mwindow, this, AW_ATRANSITION_FOLDER, 1));
609 folders.append(new AssetPicon(mwindow, this, AW_VTRANSITION_FOLDER, 1));
610 folders.append(new AssetPicon(mwindow, this, AW_LABEL_FOLDER, 1));
611 folders.append(new AssetPicon(mwindow, this, AW_CLIP_FOLDER, 1));
612 folders.append(new AssetPicon(mwindow, this, AW_PROXY_FOLDER, 1));
613 folders.append(new AssetPicon(mwindow, this, AW_MEDIA_FOLDER, 1));
615 create_label_folder();
617 mwindow->theme->get_awindow_sizes(this);
618 load_defaults(mwindow->defaults);
620 int x1 = mwindow->theme->alist_x, y1 = mwindow->theme->alist_y;
621 int w1 = mwindow->theme->alist_w, h1 = mwindow->theme->alist_h;
622 search_text = new AWindowSearchText(mwindow, this, x1, y1+5);
623 search_text->create_objects();
624 int dy = search_text->get_h() + 10;
626 add_subwindow(asset_list = new AWindowAssets(mwindow, this, x1, y1, w1, h1));
628 vicon_thread = new VIconThread(asset_list);
629 vicon_thread->start();
631 add_subwindow(divider = new AWindowDivider(mwindow, this,
632 mwindow->theme->adivider_x, mwindow->theme->adivider_y,
633 mwindow->theme->adivider_w, mwindow->theme->adivider_h));
635 divider->set_cursor(HSEPARATE_CURSOR, 0, 0);
637 int fx = mwindow->theme->afolders_x, fy = mwindow->theme->afolders_y;
638 int fw = mwindow->theme->afolders_w, fh = mwindow->theme->afolders_h;
639 VFrame **images = mwindow->theme->get_image_set("playpatch_data");
640 AVIconDrawing::calculate_geometry(this, images, &avicon_w, &avicon_h);
641 add_subwindow(avicon_drawing = new AVIconDrawing(this, fw-avicon_w, fy, images));
642 add_subwindow(add_tools = new AddTools(mwindow, this, fx, fy, _("Visibility")));
643 add_tools->create_objects();
644 fy += add_tools->get_h(); fh -= add_tools->get_h();
645 add_subwindow(folder_list = new AWindowFolders(mwindow,
646 this, fx, fy, fw, fh));
649 //int x = mwindow->theme->abuttons_x;
650 //int y = mwindow->theme->abuttons_y;
653 newfolder_thread = new NewFolderThread(mwindow, this);
655 add_subwindow(asset_menu = new AssetPopup(mwindow, this));
656 asset_menu->create_objects();
657 add_subwindow(clip_menu = new ClipPopup(mwindow, this));
658 clip_menu->create_objects();
659 add_subwindow(label_menu = new LabelPopup(mwindow, this));
660 label_menu->create_objects();
662 add_subwindow(effectlist_menu = new EffectListMenu(mwindow, this));
663 effectlist_menu->create_objects();
664 add_subwindow(assetlist_menu = new AssetListMenu(mwindow, this));
665 assetlist_menu->create_objects();
666 add_subwindow(cliplist_menu = new ClipListMenu(mwindow, this));
667 cliplist_menu->create_objects();
668 add_subwindow(labellist_menu = new LabelListMenu(mwindow, this));
669 labellist_menu->create_objects();
671 add_subwindow(folderlist_menu = new FolderListMenu(mwindow, this));
672 folderlist_menu->create_objects();
674 create_custom_xatoms();
678 int AWindowGUI::resize_event(int w, int h)
680 mwindow->session->awindow_x = get_x();
681 mwindow->session->awindow_y = get_y();
682 mwindow->session->awindow_w = w;
683 mwindow->session->awindow_h = h;
685 mwindow->theme->get_awindow_sizes(this);
686 mwindow->theme->draw_awindow_bg(this);
687 reposition_objects();
689 // int x = mwindow->theme->abuttons_x;
690 // int y = mwindow->theme->abuttons_y;
691 // new_bin->reposition_window(x, y);
692 // x += new_bin->get_w();
693 // delete_bin->reposition_window(x, y);
694 // x += delete_bin->get_w();
695 // rename_bin->reposition_window(x, y);
696 // x += rename_bin->get_w();
697 // delete_disk->reposition_window(x, y);
698 // x += delete_disk->get_w();
699 // delete_project->reposition_window(x, y);
700 // x += delete_project->get_w();
701 // info->reposition_window(x, y);
702 // x += info->get_w();
703 // redraw_index->reposition_window(x, y);
704 // x += redraw_index->get_w();
705 // paste->reposition_window(x, y);
706 // x += paste->get_w();
707 // append->reposition_window(x, y);
708 // x += append->get_w();
709 // view->reposition_window(x, y);
711 BC_WindowBase::resize_event(w, h);
715 int AWindowGUI::translation_event()
717 mwindow->session->awindow_x = get_x();
718 mwindow->session->awindow_y = get_y();
722 void AWindowGUI::reposition_objects()
724 int x1 = mwindow->theme->alist_x, y1 = mwindow->theme->alist_y;
725 int w1 = mwindow->theme->alist_w, h1 = mwindow->theme->alist_h;
726 search_text->reposition_window(x1, y1+5, w1);
727 int dy = search_text->get_h() + 10;
729 asset_list->reposition_window(x1, y1, w1, h1);
730 divider->reposition_window(
731 mwindow->theme->adivider_x, mwindow->theme->adivider_y,
732 mwindow->theme->adivider_w, mwindow->theme->adivider_h);
733 int fx = mwindow->theme->afolders_x, fy = mwindow->theme->afolders_y;
734 int fw = mwindow->theme->afolders_w, fh = mwindow->theme->afolders_h;
735 add_tools->resize_event(fw-avicon_w, add_tools->get_h());
736 avicon_drawing->reposition_window(fw-avicon_w, fy);
737 fy += add_tools->get_h(); fh -= add_tools->get_h();
738 folder_list->reposition_window(fx, fy, fw, fh);
741 int AWindowGUI::save_defaults(BC_Hash *defaults)
743 defaults->update("PLUGIN_VISIBILTY", plugin_visibility);
744 defaults->update("VICON_DRAWING", vicon_drawing);
748 int AWindowGUI::load_defaults(BC_Hash *defaults)
750 plugin_visibility = defaults->get("PLUGIN_VISIBILTY", plugin_visibility);
751 vicon_drawing = defaults->get("VICON_DRAWING", vicon_drawing);
755 int AWindowGUI::close_event()
758 mwindow->session->show_awindow = 0;
761 mwindow->gui->lock_window("AWindowGUI::close_event");
762 mwindow->gui->mainmenu->show_awindow->set_checked(0);
763 mwindow->gui->unlock_window();
765 lock_window("AWindowGUI::close_event");
766 save_defaults(mwindow->defaults);
767 mwindow->save_defaults();
771 void AWindowGUI::start_vicon_drawing()
773 if( !vicon_drawing ) return;
774 if( mwindow->edl->session->awindow_folder != AW_MEDIA_FOLDER ) return;
775 if( mwindow->edl->session->assetlist_format != ASSETS_ICONS ) return;
776 vicon_thread->start_drawing();
779 void AWindowGUI::stop_vicon_drawing()
781 vicon_thread->stop_drawing();
784 AWindowRemovePluginGUI::
785 AWindowRemovePluginGUI(AWindow *awindow, AWindowRemovePlugin *thread,
786 int x, int y, PluginServer *plugin)
787 : BC_Window(_(PROGRAM_NAME ": Remove plugin"), x,y, 500,200, 50, 50, 1, 0, 1, -1, "", 1)
789 this->awindow = awindow;
790 this->thread = thread;
791 this->plugin = plugin;
792 VFrame *vframe = plugin->get_picon();
793 icon = vframe ? create_pixmap(vframe) : 0;
794 plugin_list.append(new BC_ListBoxItem(plugin->title, icon));
797 AWindowRemovePluginGUI::
798 ~AWindowRemovePluginGUI()
800 if( !awindow->gui->protected_pixmap(icon) )
802 plugin_list.remove_all();
805 void AWindowRemovePluginGUI::create_objects()
807 BC_Button *ok_button = new BC_OKButton(this);
808 add_subwindow(ok_button);
809 BC_Button *cancel_button = new BC_CancelButton(this);
810 add_subwindow(cancel_button);
812 BC_Title *title = new BC_Title(x, y, _("remove plugin?"));
813 add_subwindow(title);
814 y += title->get_h() + 5;
815 list = new BC_ListBox(x, y,
816 get_w() - 20, ok_button->get_y() - y - 5, LISTBOX_TEXT, &plugin_list,
817 0, 0, 1, 0, 0, LISTBOX_SINGLE, ICON_LEFT, 0);
822 int AWindowRemovePlugin::remove_plugin(PluginServer *plugin, ArrayList<BC_ListBoxItem*> &folder)
825 for( int i=0; i<folder.size(); ) {
826 AssetPicon *picon = (AssetPicon *)folder[i];
827 if( picon->plugin == plugin ) {
828 folder.remove_object_number(i);
837 void AWindowRemovePlugin::handle_close_event(int result)
840 printf(_("remove %s\n"), plugin->path);
841 awindow->gui->lock_window("AWindowRemovePlugin::handle_close_event");
842 ArrayList<BC_ListBoxItem*> *folder =
843 plugin->audio ? plugin->transition ?
844 &awindow->gui->atransitions :
845 &awindow->gui->aeffects :
846 plugin->video ? plugin->transition ?
847 &awindow->gui->vtransitions :
848 &awindow->gui->veffects :
850 if( folder ) remove_plugin(plugin, *folder);
851 MWindow *mwindow = awindow->mwindow;
852 awindow->gui->unlock_window();
853 char plugin_path[BCTEXTLEN];
854 strcpy(plugin_path, plugin->path);
855 mwindow->plugindb->remove(plugin);
857 char index_path[BCTEXTLEN];
858 mwindow->create_defaults_path(index_path, PLUGIN_FILE);
860 char picon_path[BCTEXTLEN];
862 snprintf(picon_path, sizeof(picon_path), "%s/picon",
863 File::get_plugin_path());
864 char png_name[BCSTRLEN], png_path[BCTEXTLEN];
865 plugin->get_plugin_png_name(png_name);
866 fs.update(picon_path);
867 for( int i=0; i<fs.dir_list.total; ++i ) {
868 char *fs_path = fs.dir_list[i]->path;
869 if( !fs.is_dir(fs_path) ) continue;
870 snprintf(png_path, sizeof(picon_path), "%s/%s",
874 delete plugin; plugin = 0;
875 awindow->gui->async_update_assets();
879 AWindowRemovePlugin::
880 AWindowRemovePlugin(AWindow *awindow, PluginServer *plugin)
883 this->awindow = awindow;
884 this->plugin = plugin;
887 AWindowRemovePlugin::
888 ~AWindowRemovePlugin()
893 BC_Window* AWindowRemovePlugin::new_gui()
895 int x = awindow->gui->get_abs_cursor_x(0);
896 int y = awindow->gui->get_abs_cursor_y(0);
897 AWindowRemovePluginGUI *gui = new AWindowRemovePluginGUI(awindow, this, x, y, plugin);
898 gui->create_objects();
902 int AWindowGUI::keypress_event()
904 switch( get_keypress() ) {
913 PluginServer* plugin = selected_plugin();
915 remove_plugin = new AWindowRemovePlugin(awindow, plugin);
917 remove_plugin->start();
926 int AWindowGUI::create_custom_xatoms()
928 UpdateAssetsXAtom = create_xatom("CWINDOWGUI_UPDATE_ASSETS");
931 int AWindowGUI::recieve_custom_xatoms(xatom_event *event)
933 if( event->message_type == UpdateAssetsXAtom ) {
940 void AWindowGUI::async_update_assets()
943 event.message_type = UpdateAssetsXAtom;
944 send_custom_xatom(&event);
948 void AWindowGUI::update_folder_list()
950 for( int i = 0; i < folders.total; i++ ) {
951 AssetPicon *picon = (AssetPicon*)folders.values[i];
955 // Search assets for folders
956 for( int i = 0; i < mwindow->edl->folders.total; i++ ) {
957 const char *folder = mwindow->edl->folders.values[i];
960 for( int j = 0; j < folders.total; j++ ) {
961 AssetPicon *picon = (AssetPicon*)folders.values[j];
962 if( !strcasecmp(picon->get_text(), folder) ) {
970 int aw_folder = folder_number(folder);
971 if( aw_folder >= 0 ) {
972 AssetPicon *picon = new AssetPicon(mwindow, this, aw_folder, 1);
973 picon->create_objects();
974 folders.append(picon);
979 // Delete unused non-persistent folders
980 for( int i=folders.total; --i>=0; ) {
981 AssetPicon *picon = (AssetPicon*)folders.values[i];
982 if( !picon->in_use && !picon->persistent ) {
984 folders.remove_number(i);
989 void AWindowGUI::create_persistent_folder(ArrayList<BC_ListBoxItem*> *output,
990 int do_audio, int do_video, int is_realtime, int is_transition)
992 ArrayList<PluginServer*> plugin_list;
993 // Get pointers to plugindb entries
994 mwindow->search_plugindb(do_audio, do_video, is_realtime, is_transition,
997 for( int i = 0; i < plugin_list.total; i++ ) {
998 PluginServer *server = plugin_list.values[i];
999 int visible = plugin_visibility & (1<<server->dir_idx);
1000 if( !visible ) continue;
1001 // Create new listitem
1002 AssetPicon *picon = new AssetPicon(mwindow, this, server);
1003 picon->create_objects();
1004 output->append(picon);
1008 void AWindowGUI::create_label_folder()
1011 for( current = mwindow->edl->labels->first; current; current = NEXT ) {
1012 AssetPicon *picon = new AssetPicon(mwindow, this, current);
1013 picon->create_objects();
1014 labellist.append(picon);
1019 void AWindowGUI::update_asset_list()
1021 for( int i = 0; i < assets.total; i++ ) {
1022 AssetPicon *picon = (AssetPicon*)assets.values[i];
1026 // Synchronize EDL clips
1027 for( int i = 0; i < mwindow->edl->clips.total; i++ ) {
1030 // Look for clip in existing listitems
1031 for( int j = 0; j < assets.total && !exists; j++ ) {
1032 AssetPicon *picon = (AssetPicon*)assets.values[j];
1034 if( picon->id == mwindow->edl->clips.values[i]->id ) {
1035 picon->edl = mwindow->edl->clips.values[i];
1036 picon->set_text(mwindow->edl->clips.values[i]->local_session->clip_title);
1042 // Create new listitem
1044 AssetPicon *picon = new AssetPicon(mwindow,
1045 this, mwindow->edl->clips.values[i]);
1046 picon->create_objects();
1047 assets.append(picon);
1051 // Synchronize EDL assets
1052 for( Asset *current = mwindow->edl->assets->first;
1057 // Look for asset in existing listitems
1058 for( int j = 0; j < assets.total && !exists; j++ ) {
1059 AssetPicon *picon = (AssetPicon*)assets.values[j];
1061 if( picon->id == current->id ) {
1062 picon->indexable = current;
1069 // Create new listitem
1071 AssetPicon *picon = new AssetPicon(mwindow,
1073 picon->create_objects();
1074 assets.append(picon);
1078 mwindow->gui->lock_window("AWindowGUI::update_asset_list");
1079 mwindow->gui->default_message();
1080 mwindow->gui->unlock_window();
1082 // Synchronize nested EDLs
1083 for( int i = 0; i < mwindow->edl->nested_edls->size(); i++ ) {
1085 Indexable *indexable = mwindow->edl->nested_edls->get(i);
1087 // Look for asset in existing listitems
1088 for( int j = 0; j < assets.total && !exists; j++ ) {
1089 AssetPicon *picon = (AssetPicon*)assets.values[j];
1091 if( picon->id == indexable->id ) {
1092 picon->indexable = indexable;
1099 // Create new listitem
1101 AssetPicon *picon = new AssetPicon(mwindow,
1103 picon->create_objects();
1104 assets.append(picon);
1108 for( int i = assets.size() - 1; i >= 0; i-- ) {
1109 AssetPicon *picon = (AssetPicon*)assets.get(i);
1110 if( !picon->in_use ) {
1112 assets.remove_number(i);
1117 void AWindowGUI::update_picon(Indexable *indexable)
1120 for( int i = 0; i < assets.total; i++ ) {
1121 AssetPicon *picon = (AssetPicon*)assets.values[i];
1122 if( picon->indexable == indexable ||
1123 picon->edl == (EDL *)indexable ) {
1124 char name[BCTEXTLEN];
1126 fs.extract_name(name, indexable->path);
1127 picon->set_text(name);
1128 vicon = picon->vicon;
1133 stop_vicon_drawing();
1134 vicon->clear_images();
1135 vicon->reset(indexable->get_frame_rate());
1136 start_vicon_drawing();
1140 void AWindowGUI::sort_assets(int use_mtime)
1142 switch( mwindow->edl->session->awindow_folder ) {
1143 case AW_AEFFECT_FOLDER:
1144 sort_picons(&aeffects);
1146 case AW_VEFFECT_FOLDER:
1147 sort_picons(&veffects);
1149 case AW_ATRANSITION_FOLDER:
1150 sort_picons(&atransitions);
1152 case AW_VTRANSITION_FOLDER:
1153 sort_picons(&vtransitions);
1155 case AW_LABEL_FOLDER:
1156 sort_picons(&labellist);
1159 sort_picons(&assets, use_mtime);
1162 asset_list->update_format(asset_list->get_format(), 0);
1166 void AWindowGUI::sort_folders()
1168 sort_picons(&folders);
1169 folder_list->update_format(folder_list->get_format(), 0);
1173 void AWindowGUI::collect_assets()
1176 mwindow->session->drag_assets->remove_all();
1177 mwindow->session->drag_clips->remove_all();
1180 AssetPicon *result = (AssetPicon*)asset_list->get_selection(0, i++);
1181 if( !result ) break;
1183 if( result->indexable ) mwindow->session->drag_assets->append(result->indexable);
1184 if( result->edl ) mwindow->session->drag_clips->append(result->edl);
1188 void AWindowGUI::copy_picons(ArrayList<BC_ListBoxItem*> *dst,
1189 ArrayList<BC_ListBoxItem*> *src, int folder)
1191 // Remove current pointers
1192 dst[0].remove_all();
1193 dst[1].remove_all_objects();
1195 // Create new pointers
1196 for( int i = 0; i < src->total; i++ ) {
1197 AssetPicon *picon = (AssetPicon*)src->values[i];
1199 (picon->indexable && picon->indexable->awindow_folder == folder) ||
1200 (picon->edl && picon->edl->local_session->awindow_folder == folder) ) {
1201 const char *text = search_text->get_text();
1202 int hidden = text && text[0] && !bstrcasestr(picon->get_text(), text);
1203 if( picon->vicon ) picon->vicon->hidden = hidden;
1204 if( hidden ) continue;
1205 BC_ListBoxItem *item2, *item1;
1206 dst[0].append(item1 = picon);
1208 dst[1].append(item2 = new BC_ListBoxItem(picon->edl->local_session->clip_notes));
1210 if( picon->label && picon->label->textstr )
1211 dst[1].append(item2 = new BC_ListBoxItem(picon->label->textstr));
1212 else if( picon->mtime ) {
1213 char date_time[BCSTRLEN];
1214 struct tm stm; localtime_r(&picon->mtime, &stm);
1215 sprintf(date_time,"%04d.%02d.%02d %02d:%02d:%02d",
1216 stm.tm_year+1900, stm.tm_mon+1, stm.tm_mday,
1217 stm.tm_hour, stm.tm_min, stm.tm_sec);
1218 dst[1].append(item2 = new BC_ListBoxItem(date_time));
1221 dst[1].append(item2 = new BC_ListBoxItem(""));
1222 item1->set_autoplace_text(1); item1->set_autoplace_icon(1);
1223 item2->set_autoplace_text(1); item2->set_autoplace_icon(1);
1228 void AWindowGUI::sort_picons(ArrayList<BC_ListBoxItem*> *src, int use_mtime)
1230 int done = 0, changed = 0;
1233 for( int i=0; i<src->total-1; ++i ) {
1234 AssetPicon *item1 = (AssetPicon *)src->values[i];
1235 AssetPicon *item2 = (AssetPicon *)src->values[i + 1];
1236 if( use_mtime ? item1->mtime > item2->mtime :
1237 strcmp(item1->get_text(), item2->get_text()) > 0 ) {
1238 src->values[i + 1] = item1;
1239 src->values[i] = item2;
1240 done = 0; changed = 1;
1245 for( int i=0; i<src->total; ++i ) {
1246 AssetPicon *item = (AssetPicon *)src->values[i];
1247 item->set_autoplace_icon(1);
1248 item->set_autoplace_text(1);
1254 void AWindowGUI::filter_displayed_assets()
1256 //allow_iconlisting = 1;
1257 asset_titles[0] = C_("Title");
1258 asset_titles[1] = _("Comments");
1260 switch( mwindow->edl->session->awindow_folder ) {
1261 case AW_AEFFECT_FOLDER:
1262 copy_picons(displayed_assets, &aeffects, AW_NO_FOLDER);
1264 case AW_VEFFECT_FOLDER:
1265 copy_picons(displayed_assets, &veffects, AW_NO_FOLDER);
1267 case AW_ATRANSITION_FOLDER:
1268 copy_picons(displayed_assets, &atransitions, AW_NO_FOLDER);
1270 case AW_VTRANSITION_FOLDER:
1271 copy_picons(displayed_assets, &vtransitions, AW_NO_FOLDER);
1273 case AW_LABEL_FOLDER:
1274 copy_picons(displayed_assets, &labellist, AW_NO_FOLDER);
1275 asset_titles[0] = _("Time Stamps");
1276 asset_titles[1] = C_("Title");
1277 //allow_iconlisting = 0;
1280 copy_picons(displayed_assets, &assets, mwindow->edl->session->awindow_folder);
1284 // Ensure the current folder icon is highlighted
1285 int selected_folder = mwindow->edl->session->awindow_folder;
1286 for( int i = 0; i < folders.total; i++ ) {
1287 AssetPicon *folder_item = (AssetPicon *)folders.values[i];
1288 int selected = folder_item->foldernum == selected_folder ? 1 : 0;
1289 folder_item->set_selected(selected);
1294 void AWindowGUI::update_assets()
1296 stop_vicon_drawing();
1297 update_folder_list();
1298 update_asset_list();
1299 labellist.remove_all_objects();
1300 create_label_folder();
1302 if( displayed_folder != mwindow->edl->session->awindow_folder )
1303 search_text->clear();
1304 filter_displayed_assets();
1306 if( mwindow->edl->session->folderlist_format != folder_list->get_format() ) {
1307 folder_list->update_format(mwindow->edl->session->folderlist_format, 0);
1309 int folder_xposition = folder_list->get_xposition();
1310 int folder_yposition = folder_list->get_yposition();
1311 folder_list->update(&folders, 0, 0, 1, folder_xposition, folder_yposition, -1);
1313 if( mwindow->edl->session->assetlist_format != asset_list->get_format() ) {
1314 asset_list->update_format(mwindow->edl->session->assetlist_format, 0);
1316 int asset_xposition = asset_list->get_xposition();
1317 int asset_yposition = asset_list->get_yposition();
1318 if( displayed_folder != mwindow->edl->session->awindow_folder ) {
1319 displayed_folder = mwindow->edl->session->awindow_folder;
1320 asset_xposition = asset_yposition = 0;
1322 asset_list->update(displayed_assets, asset_titles,
1323 mwindow->edl->session->asset_columns, ASSET_COLUMNS,
1324 asset_xposition, asset_yposition, -1, 0);
1325 asset_list->center_selection();
1328 start_vicon_drawing();
1332 void AWindowGUI::update_effects()
1334 aeffects.remove_all_objects();
1335 create_persistent_folder(&aeffects, 1, 0, 1, 0);
1336 veffects.remove_all_objects();
1337 create_persistent_folder(&veffects, 0, 1, 1, 0);
1338 atransitions.remove_all_objects();
1339 create_persistent_folder(&atransitions, 1, 0, 0, 1);
1340 vtransitions.remove_all_objects();
1341 create_persistent_folder(&vtransitions, 0, 1, 0, 1);
1344 int AWindowGUI::folder_number(const char *name)
1346 for( int i = 0; i < AWINDOW_FOLDERS; i++ ) {
1347 if( !strcasecmp(name, folder_names[i]) ) return i;
1349 return AW_NO_FOLDER;
1352 int AWindowGUI::drag_motion()
1354 if( get_hidden() ) return 0;
1360 int AWindowGUI::drag_stop()
1362 if( get_hidden() ) return 0;
1367 Indexable* AWindowGUI::selected_asset()
1369 AssetPicon *picon = (AssetPicon*)asset_list->get_selection(0, 0);
1370 return picon ? picon->indexable : 0;
1373 PluginServer* AWindowGUI::selected_plugin()
1375 AssetPicon *picon = (AssetPicon*)asset_list->get_selection(0, 0);
1376 return picon ? picon->plugin : 0;
1379 AssetPicon* AWindowGUI::selected_folder()
1381 AssetPicon *picon = (AssetPicon*)folder_list->get_selection(0, 0);
1392 AWindowDivider::AWindowDivider(MWindow *mwindow, AWindowGUI *gui, int x, int y, int w, int h)
1393 : BC_SubWindow(x, y, w, h)
1395 this->mwindow = mwindow;
1398 AWindowDivider::~AWindowDivider()
1402 int AWindowDivider::button_press_event()
1404 if( is_event_win() && cursor_inside() ) {
1405 mwindow->session->current_operation = DRAG_PARTITION;
1411 int AWindowDivider::cursor_motion_event()
1413 if( mwindow->session->current_operation == DRAG_PARTITION ) {
1415 int wmax = mwindow->session->awindow_w - mwindow->theme->adivider_w - wmin;
1416 int fw = gui->get_relative_cursor_x();
1417 if( fw > wmax ) fw = wmax;
1418 if( fw < wmin ) fw = wmin;
1419 mwindow->session->afolders_w = fw;
1420 mwindow->theme->get_awindow_sizes(gui);
1421 gui->reposition_objects();
1427 int AWindowDivider::button_release_event()
1429 if( mwindow->session->current_operation == DRAG_PARTITION ) {
1430 mwindow->session->current_operation = NO_OPERATION;
1441 AWindowFolders::AWindowFolders(MWindow *mwindow, AWindowGUI *gui, int x, int y, int w, int h)
1442 : BC_ListBox(x, y, w, h,
1443 mwindow->edl->session->folderlist_format == ASSETS_ICONS ?
1444 LISTBOX_ICONS : LISTBOX_TEXT,
1445 &gui->folders, // Each column has an ArrayList of BC_ListBoxItems.
1446 0, // Titles for columns. Set to 0 for no titles
1447 0, // width of each column
1448 1, // Total columns.
1449 0, // Pixel of top of window.
1450 0, // If this listbox is a popup window
1451 LISTBOX_SINGLE, // Select one item or multiple items
1452 ICON_TOP, // Position of icon relative to text of each item
1455 this->mwindow = mwindow;
1460 AWindowFolders::~AWindowFolders()
1464 int AWindowFolders::selection_changed()
1466 AssetPicon *picon = (AssetPicon*)get_selection(0, 0);
1468 gui->stop_vicon_drawing();
1470 if( get_button_down() && get_buttonpress() == 3 ) {
1471 gui->folderlist_menu->update_titles();
1472 gui->folderlist_menu->activate_menu();
1475 mwindow->edl->session->awindow_folder = picon->foldernum;
1476 gui->asset_list->draw_background();
1477 gui->async_update_assets();
1479 gui->start_vicon_drawing();
1484 int AWindowFolders::button_press_event()
1488 result = BC_ListBox::button_press_event();
1491 if( get_buttonpress() == 3 && is_event_win() && cursor_inside() ) {
1492 gui->folderlist_menu->update_titles();
1493 gui->folderlist_menu->activate_menu();
1508 AWindowAssets::AWindowAssets(MWindow *mwindow, AWindowGUI *gui, int x, int y, int w, int h)
1509 : BC_ListBox(x, y, w, h,
1510 (mwindow->edl->session->assetlist_format == ASSETS_ICONS && gui->allow_iconlisting ) ?
1511 LISTBOX_ICONS : LISTBOX_TEXT,
1512 &gui->assets, // Each column has an ArrayList of BC_ListBoxItems.
1513 gui->asset_titles,// Titles for columns. Set to 0 for no titles
1514 mwindow->edl->session->asset_columns, // width of each column
1515 1, // Total columns.
1516 0, // Pixel of top of window.
1517 0, // If this listbox is a popup window
1518 LISTBOX_MULTIPLE, // Select one item or multiple items
1519 ICON_TOP, // Position of icon relative to text of each item
1520 -1) // Allow drags, require shift for scrolling
1522 this->mwindow = mwindow;
1525 set_scroll_stretch(1, 1);
1528 AWindowAssets::~AWindowAssets()
1532 int AWindowAssets::button_press_event()
1536 result = BC_ListBox::button_press_event();
1538 if( !result && get_buttonpress() == 3 && is_event_win() && cursor_inside() ) {
1539 BC_ListBox::deactivate_selection();
1540 int folder = mwindow->edl->session->awindow_folder;
1542 case AW_AEFFECT_FOLDER:
1543 case AW_VEFFECT_FOLDER:
1544 case AW_ATRANSITION_FOLDER:
1545 case AW_VTRANSITION_FOLDER:
1546 gui->effectlist_menu->update();
1547 gui->effectlist_menu->activate_menu();
1549 case AW_LABEL_FOLDER:
1550 gui->labellist_menu->update();
1551 gui->labellist_menu->activate_menu();
1553 case AW_CLIP_FOLDER:
1554 gui->cliplist_menu->update();
1555 gui->cliplist_menu->activate_menu();
1557 case AW_MEDIA_FOLDER:
1558 case AW_PROXY_FOLDER:
1559 gui->assetlist_menu->update_titles();
1560 gui->assetlist_menu->activate_menu();
1570 int AWindowAssets::handle_event()
1572 AssetPicon *asset_picon = (AssetPicon *)get_selection(0, 0);
1573 if( !asset_picon ) return 0;
1574 switch( mwindow->edl->session->awindow_folder ) {
1575 case AW_AEFFECT_FOLDER:
1576 case AW_VEFFECT_FOLDER:
1577 case AW_ATRANSITION_FOLDER:
1578 case AW_VTRANSITION_FOLDER: return 1;
1580 VWindow *vwindow = mwindow->vwindows.size() > DEFAULT_VWINDOW ?
1581 mwindow->vwindows.get(DEFAULT_VWINDOW) : 0;
1582 if( !vwindow || !vwindow->is_running() ) return 1;
1584 vwindow->gui->lock_window("AWindowAssets::handle_event");
1585 if( asset_picon->indexable )
1586 vwindow->change_source(asset_picon->indexable);
1587 else if( asset_picon->edl )
1588 vwindow->change_source(asset_picon->edl);
1589 vwindow->gui->unlock_window();
1593 int AWindowAssets::selection_changed()
1595 // Show popup window
1597 if( get_button_down() && get_buttonpress() == 3 &&
1598 (item = (AssetPicon*)get_selection(0, 0)) ) {
1599 int folder = mwindow->edl->session->awindow_folder;
1601 case AW_AEFFECT_FOLDER:
1602 case AW_VEFFECT_FOLDER:
1603 case AW_ATRANSITION_FOLDER:
1604 case AW_VTRANSITION_FOLDER:
1605 gui->effectlist_menu->update();
1606 gui->effectlist_menu->activate_menu();
1608 case AW_LABEL_FOLDER:
1609 if( !item->label ) break;
1610 gui->label_menu->activate_menu();
1612 case AW_CLIP_FOLDER:
1613 if( !item->indexable && !item->edl ) break;
1614 gui->clip_menu->update();
1615 gui->clip_menu->activate_menu();
1618 if( !item->indexable && !item->edl ) break;
1619 gui->asset_menu->update();
1620 gui->asset_menu->activate_menu();
1624 BC_ListBox::deactivate_selection();
1627 else if( get_button_down() && get_buttonpress() == 1 &&
1628 (item = (AssetPicon*)get_selection(0, 0)) ) {
1630 if( !gui->vicon_thread->viewing ) {
1631 vicon = item->vicon;
1633 gui->vicon_thread->set_view_popup(vicon);
1639 void AWindowAssets::draw_background()
1641 clear_box(0,0,get_w(),get_h(),get_bg_surface());
1642 set_color(BC_WindowBase::get_resources()->audiovideo_color);
1643 set_font(LARGEFONT);
1644 int aw_folder = mwindow->edl->session->awindow_folder;
1645 if( aw_folder < 0 ) return;
1646 const char *aw_name = _(AWindowGUI::folder_names[aw_folder]);
1647 draw_text(get_w() - get_text_width(LARGEFONT, aw_name) - 4, 30,
1648 aw_name, -1, get_bg_surface());
1651 int AWindowAssets::drag_start_event()
1653 int collect_pluginservers = 0;
1654 int collect_assets = 0;
1656 if( BC_ListBox::drag_start_event() ) {
1657 switch( mwindow->edl->session->awindow_folder ) {
1658 case AW_AEFFECT_FOLDER:
1659 mwindow->session->current_operation = DRAG_AEFFECT;
1660 collect_pluginservers = 1;
1662 case AW_VEFFECT_FOLDER:
1663 mwindow->session->current_operation = DRAG_VEFFECT;
1664 collect_pluginservers = 1;
1666 case AW_ATRANSITION_FOLDER:
1667 mwindow->session->current_operation = DRAG_ATRANSITION;
1668 collect_pluginservers = 1;
1670 case AW_VTRANSITION_FOLDER:
1671 mwindow->session->current_operation = DRAG_VTRANSITION;
1672 collect_pluginservers = 1;
1674 case AW_LABEL_FOLDER:
1678 mwindow->session->current_operation = DRAG_ASSET;
1683 if( collect_pluginservers ) {
1685 mwindow->session->drag_pluginservers->remove_all();
1688 AssetPicon *result = (AssetPicon*)get_selection(0, i++);
1689 if( !result ) break;
1691 mwindow->session->drag_pluginservers->append(result->plugin);
1695 if( collect_assets ) {
1696 gui->collect_assets();
1704 int AWindowAssets::drag_motion_event()
1706 BC_ListBox::drag_motion_event();
1709 mwindow->gui->lock_window("AWindowAssets::drag_motion_event");
1710 mwindow->gui->drag_motion();
1711 mwindow->gui->unlock_window();
1713 for( int i = 0; i < mwindow->vwindows.size(); i++ ) {
1714 VWindow *vwindow = mwindow->vwindows.get(i);
1715 if( !vwindow->is_running() ) continue;
1716 vwindow->gui->lock_window("AWindowAssets::drag_motion_event");
1717 vwindow->gui->drag_motion();
1718 vwindow->gui->unlock_window();
1721 mwindow->cwindow->gui->lock_window("AWindowAssets::drag_motion_event");
1722 mwindow->cwindow->gui->drag_motion();
1723 mwindow->cwindow->gui->unlock_window();
1725 lock_window("AWindowAssets::drag_motion_event");
1729 int AWindowAssets::drag_stop_event()
1733 result = gui->drag_stop();
1738 mwindow->gui->lock_window("AWindowAssets::drag_stop_event");
1739 result = mwindow->gui->drag_stop();
1740 mwindow->gui->unlock_window();
1744 for( int i = 0; !result && i < mwindow->vwindows.size(); i++ ) {
1745 VWindow *vwindow = mwindow->vwindows.get(i);
1746 if( !vwindow ) continue;
1747 if( !vwindow->is_running() ) continue;
1748 if( vwindow->gui->is_hidden() ) continue;
1749 vwindow->gui->lock_window("AWindowAssets::drag_stop_event");
1750 if( vwindow->gui->cursor_above() &&
1751 vwindow->gui->get_cursor_over_window() ) {
1752 result = vwindow->gui->drag_stop();
1754 vwindow->gui->unlock_window();
1759 mwindow->cwindow->gui->lock_window("AWindowAssets::drag_stop_event");
1760 result = mwindow->cwindow->gui->drag_stop();
1761 mwindow->cwindow->gui->unlock_window();
1764 lock_window("AWindowAssets::drag_stop_event");
1767 get_drag_popup()->set_animation(0);
1769 BC_ListBox::drag_stop_event();
1770 // since NO_OPERATION is also defined in listbox, we have to reach for global scope...
1771 mwindow->session->current_operation = ::NO_OPERATION;
1775 int AWindowAssets::column_resize_event()
1777 mwindow->edl->session->asset_columns[0] = get_column_width(0);
1778 mwindow->edl->session->asset_columns[1] = get_column_width(1);
1782 int AWindowAssets::focus_in_event()
1784 gui->start_vicon_drawing();
1788 int AWindowAssets::focus_out_event()
1790 gui->stop_vicon_drawing();
1791 return BC_ListBox::focus_out_event();
1794 AWindowSearchTextBox::AWindowSearchTextBox(AWindowSearchText *search_text, int x, int y, int w)
1795 : BC_TextBox(x, y, w, 1, "")
1797 this->search_text = search_text;
1800 int AWindowSearchTextBox::handle_event()
1802 return search_text->handle_event();
1805 AWindowSearchText::AWindowSearchText(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1807 this->mwindow = mwindow;
1813 void AWindowSearchText::create_objects()
1815 int x1 = x, y1 = y, margin = 10;
1816 gui->add_subwindow(text_title = new BC_Title(x1, y1, _("Search:")));
1817 x1 += text_title->get_w() + margin;
1818 int w1 = gui->get_w() - x1 - 2*margin;
1819 gui->add_subwindow(text_box = new AWindowSearchTextBox(this, x1, y1, w1));
1822 int AWindowSearchText::handle_event()
1824 gui->async_update_assets();
1828 int AWindowSearchText::get_w()
1830 return text_box->get_w() + text_title->get_w() + 10;
1833 int AWindowSearchText::get_h()
1835 return bmax(text_box->get_h(),text_title->get_h());
1838 void AWindowSearchText::reposition_window(int x, int y, int w)
1840 int x1 = x, y1 = y, margin = 10;
1841 text_title->reposition_window(x1, y1);
1842 x1 += text_title->get_w() + margin;
1843 int w1 = gui->get_w() - x1 - 2*margin;
1844 text_box->reposition_window(x1, y1, w1);
1847 const char *AWindowSearchText::get_text()
1849 return text_box->get_text();
1852 void AWindowSearchText::clear()
1854 text_box->update("");
1857 AWindowNewFolder::AWindowNewFolder(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1858 : BC_Button(x, y, mwindow->theme->newbin_data)
1860 this->mwindow = mwindow;
1862 set_tooltip(_("New bin"));
1865 int AWindowNewFolder::handle_event()
1867 gui->newfolder_thread->start_new_folder();
1871 AWindowDeleteFolder::AWindowDeleteFolder(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1872 : BC_Button(x, y, mwindow->theme->deletebin_data)
1874 this->mwindow = mwindow;
1876 set_tooltip(_("Delete bin"));
1879 int AWindowDeleteFolder::handle_event()
1881 if( gui->folder_list->get_selection(0, 0) ) {
1882 BC_ListBoxItem *folder = gui->folder_list->get_selection(0, 0);
1883 mwindow->delete_folder(folder->get_text());
1888 AWindowRenameFolder::AWindowRenameFolder(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1889 : BC_Button(x, y, mwindow->theme->renamebin_data)
1891 this->mwindow = mwindow;
1893 set_tooltip(_("Rename bin"));
1896 int AWindowRenameFolder::handle_event()
1901 AWindowDeleteDisk::AWindowDeleteDisk(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1902 : BC_Button(x, y, mwindow->theme->deletedisk_data)
1904 this->mwindow = mwindow;
1906 set_tooltip(_("Delete asset from disk"));
1909 int AWindowDeleteDisk::handle_event()
1914 AWindowDeleteProject::AWindowDeleteProject(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1915 : BC_Button(x, y, mwindow->theme->deleteproject_data)
1917 this->mwindow = mwindow;
1919 set_tooltip(_("Delete asset from project"));
1922 int AWindowDeleteProject::handle_event()
1927 // AWindowInfo::AWindowInfo(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1928 // : BC_Button(x, y, mwindow->theme->infoasset_data)
1930 // this->mwindow = mwindow;
1932 // set_tooltip(_("Edit information on asset"));
1935 // int AWindowInfo::handle_event()
1937 // int cur_x, cur_y;
1938 // gui->get_abs_cursor(cur_x, cur_y, 0);
1939 // gui->awindow->asset_edit->edit_asset(gui->selected_asset(), cur_x, cur_y);
1943 AWindowRedrawIndex::AWindowRedrawIndex(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1944 : BC_Button(x, y, mwindow->theme->redrawindex_data)
1946 this->mwindow = mwindow;
1948 set_tooltip(_("Redraw index"));
1951 int AWindowRedrawIndex::handle_event()
1956 AWindowPaste::AWindowPaste(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1957 : BC_Button(x, y, mwindow->theme->pasteasset_data)
1959 this->mwindow = mwindow;
1961 set_tooltip(_("Paste asset on recordable tracks"));
1964 int AWindowPaste::handle_event()
1969 AWindowAppend::AWindowAppend(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1970 : BC_Button(x, y, mwindow->theme->appendasset_data)
1972 this->mwindow = mwindow;
1974 set_tooltip(_("Append asset in new tracks"));
1977 int AWindowAppend::handle_event()
1982 AWindowView::AWindowView(MWindow *mwindow, AWindowGUI *gui, int x, int y)
1983 : BC_Button(x, y, mwindow->theme->viewasset_data)
1985 this->mwindow = mwindow;
1987 set_tooltip(_("View asset"));
1990 int AWindowView::handle_event()
1995 AddTools::AddTools(MWindow *mwindow, AWindowGUI *gui, int x, int y, const char *title)
1996 : BC_PopupMenu(x, y, BC_Title::calculate_w(gui, title, MEDIUMFONT)+8, title, -1, 0, 4)
1998 this->mwindow = mwindow;
2002 void AddTools::create_objects()
2005 add_item(new AddPluginItem(this, "ladspa", PLUGIN_LADSPA_ID));
2006 vis |= 1 << PLUGIN_LADSPA_ID;
2007 add_item(new AddPluginItem(this, "ffmpeg", PLUGIN_FFMPEG_ID));
2008 vis |= 1 << PLUGIN_FFMPEG_ID;
2009 for( int i=0; i<MWindow::plugindb->size(); ++i ) {
2010 PluginServer *plugin = MWindow::plugindb->get(i);
2011 if( !plugin->audio && !plugin->video ) continue;
2012 int idx = plugin->dir_idx;
2013 uint32_t msk = 1 << idx;
2014 if( (msk & vis) != 0 ) continue;
2016 char parent[BCTEXTLEN];
2017 strcpy(parent, plugin->path);
2018 char *bp = strrchr(parent, '/');
2019 if( bp ) { *bp = 0; bp = strrchr(parent, '/'); }
2020 if( !bp ) bp = parent; else ++bp;
2021 add_item(new AddPluginItem(this, bp, idx));
2026 // plugin_dirs list from toplevel makefile include plugin_defs
2030 N_("audio_transitions")
2037 N_("video_transitions")
2040 AddPluginItem::AddPluginItem(AddTools *menu, char const *text, int idx)
2041 : BC_MenuItem(_(text))
2045 uint64_t msk = (uint64_t)1 << idx, vis = menu->gui->plugin_visibility;
2046 int chk = (msk & vis) ? 1 : 0;
2050 int AddPluginItem::handle_event()
2052 int chk = get_checked() ^ 1;
2054 uint64_t msk = (uint64_t)1 << idx, vis = menu->gui->plugin_visibility;
2055 menu->gui->plugin_visibility = chk ? vis | msk : vis & ~msk;
2056 menu->gui->update_effects();
2057 menu->gui->save_defaults(menu->mwindow->defaults);
2058 menu->gui->async_update_assets();
2062 AVIconDrawing::AVIconDrawing(AWindowGUI *agui, int x, int y, VFrame **images)
2063 : BC_Toggle(x, y, images, agui->vicon_drawing)
2066 set_tooltip(_("draw vicons"));
2069 void AVIconDrawing::calculate_geometry(AWindowGUI *agui, VFrame **images, int *ww, int *hh)
2071 int text_line = -1, toggle_x = -1, toggle_y = -1;
2072 int text_x = -1, text_y = -1, text_w = -1, text_h = -1;
2073 BC_Toggle::calculate_extents(agui, images, 1,
2074 &text_line, ww, hh, &toggle_x, &toggle_y,
2075 &text_x, &text_y, &text_w, &text_h, "", MEDIUMFONT);
2078 AVIconDrawing::~AVIconDrawing()
2082 int AVIconDrawing::handle_event()
2084 agui->vicon_drawing = get_value();
2085 if( agui->vicon_drawing )
2086 agui->start_vicon_drawing();
2088 agui->stop_vicon_drawing();
2093 AWindowListFormat::AWindowListFormat(MWindow *mwindow, AWindowGUI *gui)
2096 this->mwindow = mwindow;
2100 int AWindowListFormat::handle_event()
2102 gui->stop_vicon_drawing();
2104 EDLSession *session = mwindow->edl->session;
2105 switch( session->assetlist_format ) {
2107 session->assetlist_format = ASSETS_ICONS;
2110 session->assetlist_format = ASSETS_TEXT;
2114 gui->asset_list->update_format(session->assetlist_format, 1);
2115 if( !mwindow->awindow->gui->allow_iconlisting ) {
2116 mwindow->edl->session->assetlist_format = ASSETS_TEXT;
2119 gui->start_vicon_drawing();
2123 void AWindowListFormat::update()
2125 set_text(mwindow->edl->session->assetlist_format == ASSETS_TEXT ?
2126 (char*)_("Display icons") : (char*)_("Display text"));
2129 AWindowListSort::AWindowListSort(MWindow *mwindow, AWindowGUI *gui)
2130 : BC_MenuItem(_("Sort items"))
2132 this->mwindow = mwindow;
2136 int AWindowListSort::handle_event()
2138 gui->sort_assets(0);