4 * Copyright (C) 2010 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"
25 #include "awindowgui.h"
26 #include "bcprogressbox.h"
27 #include "bcsignals.h"
28 #include "bitspopup.h"
31 #include "cplayback.h"
34 #include "edlsession.h"
37 #include "fileffmpeg.h"
38 #include "filesystem.h"
39 #include "indexable.h"
40 #include "indexfile.h"
41 #include "indexstate.h"
43 #include "mainindexes.h"
45 #include "mwindowgui.h"
48 #include "preferences.h"
49 #include "resizetrackthread.h"
50 #include "removefile.h"
52 #include "transportque.h"
53 #include "interlacemodes.h"
55 #include "edlsession.h"
61 AssetEdit::AssetEdit(MWindow *mwindow)
64 this->mwindow = mwindow;
67 changed_params = new Asset;
72 AssetEdit::~AssetEdit()
75 changed_params->remove_user();
79 void AssetEdit::edit_asset(Indexable *indexable, int x, int y)
82 this->indexable = indexable;
83 this->indexable->add_user();
84 this->x = x; this->y = y;
86 // Copy asset parameters into temporary storage for editing.
87 if( indexable->is_asset ) {
88 changed_params->copy_from((Asset*)indexable, 0);
91 EDL *nested_edl = (EDL*)indexable;
92 strcpy(changed_params->path, nested_edl->path);
93 changed_params->sample_rate = nested_edl->session->sample_rate;
94 changed_params->channels = nested_edl->session->audio_channels;
96 //printf("AssetEdit::edit_asset %d %f\n", __LINE__, nested_edl->session->frame_rate);
97 changed_params->frame_rate = nested_edl->session->frame_rate;
98 changed_params->width = nested_edl->session->output_w;
99 changed_params->height = nested_edl->session->output_h;
102 BC_DialogThread::start();
105 void AssetEdit::handle_done_event(int result)
109 void AssetEdit::handle_close_event(int result)
116 if( indexable->is_asset ) {
117 asset = (Asset*)indexable;
118 if( !changed_params->equivalent(*asset, 1, 1, mwindow->edl) )
122 nested_edl = (EDL*)indexable;
123 if( strcmp(changed_params->path, nested_edl->path)
124 // || changed_params->sample_rate != nested_edl->session->sample_rate
125 // || !EQUIV(changed_params->frame_rate, nested_edl->session->frame_rate
130 mwindow->gui->lock_window();
131 //printf("AssetEdit::handle_close_event %d\n", __LINE__);
133 // Omit index status from copy since an index rebuild may have been
134 // happening when new_asset was created but not be happening anymore.
136 mwindow->remove_asset_from_caches(asset);
137 //printf("AssetEdit::handle_close_event %d %f\n", __LINE__, asset->get_frame_rate());
138 asset->copy_from(changed_params, 0);
139 //printf("AssetEdit::handle_close_event %d %d %d\n", __LINE__, changed_params->bits, asset->bits);
142 strcpy(nested_edl->path, changed_params->path);
143 // Other parameters can't be changed because they're defined in the other EDL
144 // nested_edl->session->frame_rate = changed_params->frame_rate;
145 // nested_edl->session->sample_rate = changed_params->sample_rate;
147 //printf("AssetEdit::handle_close_event %d\n", __LINE__);
149 mwindow->gui->update(0, 2, 0, 0, 0, 0, 0);
150 //printf("AssetEdit::handle_close_event %d\n", __LINE__);
152 // Start index rebuilding
153 if( (asset && asset->audio_data) || nested_edl) {
154 char source_filename[BCTEXTLEN];
155 char index_filename[BCTEXTLEN];
156 IndexFile::get_index_filename(source_filename,
157 mwindow->preferences->index_directory,
160 remove_file(index_filename);
161 indexable->index_state->index_status = INDEX_NOTTESTED;
162 mwindow->mainindexes->add_next_asset(0, indexable);
163 mwindow->mainindexes->start_build();
165 mwindow->gui->unlock_window();
166 //printf("AssetEdit::handle_close_event %d\n", __LINE__);
167 mwindow->awindow->gui->update_picon(indexable);
168 mwindow->awindow->gui->async_update_assets();
170 mwindow->restart_brender();
171 mwindow->sync_parameters(CHANGE_ALL);
172 //printf("AssetEdit::handle_close_event %d\n", __LINE__);
176 this->indexable->remove_user();
178 //printf("AssetEdit::handle_close_event %d\n", __LINE__);
181 BC_Window* AssetEdit::new_gui()
183 window = new AssetEditWindow(mwindow, this);
184 window->create_objects();
188 int AssetEdit::window_height()
191 if( indexable->have_audio() ) h += 200;
192 if( indexable->have_video() ) {
194 if( indexable->is_asset ) {
195 Asset *asset = (Asset *)indexable;
196 if( asset->format == FILE_MPEG ||
197 asset->format == FILE_FFMPEG ) h += 42;
203 AssetEditWindow::AssetEditWindow(MWindow *mwindow, AssetEdit *asset_edit)
204 : BC_Window(_(PROGRAM_NAME ": Asset Info"),
205 asset_edit->x - 450/2, asset_edit->y - asset_edit->window_height()/2,
206 450, asset_edit->window_height(), 0, 0, 1)
208 this->mwindow = mwindow;
209 this->asset_edit = asset_edit;
225 AssetEditWindow::~AssetEditWindow()
227 lock_window("AssetEditWindow::~AssetEditWindow");
229 delete detail_dialog;
236 void AssetEditWindow::create_objects()
238 int y = 10, x = 10, x1 = 10, x2 = 190;
239 char string[BCTEXTLEN];
243 BC_TextBox *textboxw;
244 BC_ListBox *listboxw;
245 Interlaceautofix *ilacefixoption_chkboxw;
249 if( asset_edit->indexable->is_asset )
250 asset = (Asset*)asset_edit->indexable;
252 nested_edl = (EDL*)asset_edit->indexable;
254 if( asset && asset->format == FILE_PCM )
259 lock_window("AssetEditWindow::create_objects");
265 add_subwindow(path_text = new AssetEditPathText(this, y));
266 add_subwindow(path_button = new AssetEditPath(mwindow, this,
267 path_text, y, asset_edit->indexable->path,
268 _(PROGRAM_NAME ": Asset path"),
269 _("Select a file for this asset:")));
273 add_subwindow(new BC_Title(x, y, _("File format:")));
275 add_subwindow(new BC_Title(x, y, File::formattostr(asset->format),
277 mwindow->theme->assetedit_color));
281 int64_t bytes = fs.get_size(asset->path);
282 add_subwindow(new BC_Title(x, y, _("Bytes:")));
283 sprintf(string, "%jd", bytes);
284 Units::punctuate(string);
287 add_subwindow(new BC_Title(x2, y, string, MEDIUMFONT, mwindow->theme->assetedit_color));
288 if( asset->format == FILE_MPEG || asset->format == FILE_FFMPEG ) {
289 detail_dialog = new DetailAssetDialog(mwindow);
290 BC_GenericButton *detail = new DetailAssetButton(this, x2+120, y);
291 add_subwindow(detail);
301 if( asset->audio_length > 0 )
302 length = (double)asset->audio_length / asset->sample_rate;
303 if( asset->video_length > 0 )
304 length = MAX(length, (double)asset->video_length / asset->frame_rate);
306 if( !EQUIV(length, 0) )
307 bitrate = (int64_t)(bytes * 8 / length);
310 add_subwindow(new BC_Title(x, y, _("Bitrate (bits/sec):")));
311 sprintf(string, "%jd", bitrate);
313 Units::punctuate(string);
314 add_subwindow(new BC_Title(x2, y, string, MEDIUMFONT, mwindow->theme->assetedit_color));
320 if( (asset && asset->audio_data) || nested_edl ) {
321 add_subwindow(new BC_Bar(x, y, get_w() - x * 2));
324 add_subwindow(new BC_Title(x, y, _("Audio:"), LARGEFONT, RED));
329 if( asset->get_compression_text(1, 0) ) {
330 add_subwindow(new BC_Title(x, y, _("Compression:")));
332 add_subwindow(new BC_Title(x,
334 asset->get_compression_text(1, 0),
336 mwindow->theme->assetedit_color));
342 add_subwindow(new BC_Title(x, y, _("Channels:")));
343 sprintf(string, "%d", asset_edit->changed_params->channels);
347 BC_TumbleTextBox *textbox = new AssetEditChannels(this,
351 textbox->create_objects();
355 add_subwindow(new BC_Title(x, y, string, MEDIUMFONT, mwindow->theme->assetedit_color));
360 add_subwindow(new BC_Title(x, y, _("Sample rate:")));
361 sprintf(string, "%d", asset_edit->changed_params->sample_rate);
366 add_subwindow(textbox = new AssetEditRate(this, string, x, y));
367 x += textbox->get_w();
368 add_subwindow(new SampleRatePulldown(mwindow, textbox, x, y));
371 add_subwindow(new BC_Title(x, y, string, MEDIUMFONT, mwindow->theme->assetedit_color));
378 add_subwindow(new BC_Title(x, y, _("Bits:")));
381 bitspopup = new BitsPopup(this, x, y,
382 &asset_edit->changed_params->bits,
384 bitspopup->create_objects();
387 add_subwindow(new BC_Title(x, y, File::bitstostr(asset->bits), MEDIUMFONT, mwindow->theme->assetedit_color));
392 add_subwindow(new BC_Title(x, y, _("Header length:")));
393 sprintf(string, "%d", asset->header);
397 add_subwindow(new AssetEditHeader(this, string, x, y));
399 add_subwindow(new BC_Title(x, y, string, MEDIUMFONT, mwindow->theme->assetedit_color));
404 add_subwindow(new BC_Title(x, y, _("Byte order:")));
410 add_subwindow(lohi = new AssetEditByteOrderLOHI(this,
415 add_subwindow(hilo = new AssetEditByteOrderHILO(this,
423 if( asset->byte_order )
424 add_subwindow(new BC_Title(x, y, _("Lo-Hi"), MEDIUMFONT, mwindow->theme->assetedit_color));
426 add_subwindow(new BC_Title(x, y, _("Hi-Lo"), MEDIUMFONT, mwindow->theme->assetedit_color));
433 // add_subwindow(new BC_Title(x, y, _("Values are signed:")));
434 add_subwindow(new AssetEditSigned(this, asset->signed_, x, y));
437 if( !asset->signed_ && asset->bits == 8 )
438 add_subwindow(new BC_Title(x, y, _("Values are unsigned")));
440 add_subwindow(new BC_Title(x, y, _("Values are signed")));
448 if( (asset && asset->video_data) || nested_edl ) {
449 add_subwindow(new BC_Bar(x, y, get_w() - x * 2));
452 add_subwindow(new BC_Title(x, y, _("Video:"), LARGEFONT, RED));
457 if( asset && asset->get_compression_text(0,1) ) {
458 add_subwindow(new BC_Title(x, y, _("Compression:")));
460 add_subwindow(new BC_Title(x,
462 asset->get_compression_text(0,1),
464 mwindow->theme->assetedit_color));
469 add_subwindow(new BC_Title(x, y, _("Frame rate:")));
471 sprintf(string, "%.4f", asset_edit->changed_params->frame_rate);
473 //printf("AssetEditWindow::create_objects %d %f\n", __LINE__, asset_edit->changed_params->frame_rate);
475 BC_TextBox *framerate;
476 add_subwindow(framerate = new AssetEditFRate(this, string, x, y));
478 add_subwindow(new FrameRatePulldown(mwindow, framerate, x, y));
481 add_subwindow(new BC_Title(x, y, string, MEDIUMFONT, mwindow->theme->assetedit_color));
486 add_subwindow(new BC_Title(x, y, _("Width:")));
488 sprintf(string, "%d", asset_edit->changed_params->width);
489 win_width = new BC_Title(x, y, string, MEDIUMFONT, mwindow->theme->assetedit_color);
490 add_subwindow(win_width);
494 add_subwindow(new BC_Title(x, y, _("Height:")));
496 sprintf(string, "%d", asset_edit->changed_params->height);
497 win_height = new BC_Title(x, y, string, MEDIUMFONT, mwindow->theme->assetedit_color);
498 add_subwindow(win_height);
499 y += win_height->get_h() + 5;
501 if( asset && (asset->format == FILE_MPEG || asset->format == FILE_FFMPEG ) ) {
504 add_subwindow(new BC_Title(x, y, _("Actual width:")));
506 sprintf(string, "%d", asset->actual_width);
507 add_subwindow(new BC_Title(x, y, string, MEDIUMFONT, mwindow->theme->assetedit_color));
509 BC_GenericButton *resize = new ResizeAssetButton(this, x+64, y);
510 add_subwindow(resize);
514 add_subwindow(new BC_Title(x, y, _("Actual height:")));
516 sprintf(string, "%d", asset->actual_height);
517 title = new BC_Title(x, y, string, MEDIUMFONT, mwindow->theme->assetedit_color);
518 add_subwindow(title);
519 y += title->get_h() + 5;
522 // --------------------
523 add_subwindow(title = new BC_Title(x1, y, _("Fix interlacing:")));
524 add_subwindow(ilacefixoption_chkboxw = new Interlaceautofix(mwindow,this, x2, y));
525 y += ilacefixoption_chkboxw->get_h() + 5;
526 // --------------------
527 add_subwindow(title = new BC_Title(x1, y, _("Asset's interlacing:")));
528 add_subwindow(textboxw = new AssetEditILacemode(this, "", ILACE_ASSET_MODEDEFAULT, x2, y, 200));
529 ilacefixoption_chkboxw->ilacemode_textbox = textboxw;
530 add_subwindow(listboxw = new AssetEditInterlacemodePulldown(mwindow,
532 &asset_edit->changed_params->interlace_mode,
533 (ArrayList<BC_ListBoxItem*>*)&mwindow->interlace_asset_modes,
534 ilacefixoption_chkboxw,
535 x2 + textboxw->get_w(),
537 ilacefixoption_chkboxw->ilacemode_listbox = listboxw;
538 y += textboxw->get_h() + 5;
540 // --------------------
541 add_subwindow(title = new BC_Title(x1, y, _("Interlace correction:")));
542 add_subwindow(textboxw = new AssetEditILacefixmethod(this, "", ILACE_FIXDEFAULT, x2, y, 200));
543 ilacefixoption_chkboxw->ilacefixmethod_textbox = textboxw;
544 add_subwindow(listboxw = new InterlacefixmethodPulldown(mwindow,
546 &asset_edit->changed_params->interlace_fixmethod,
547 (ArrayList<BC_ListBoxItem*>*)&mwindow->interlace_asset_fixmethods,
548 x2 + textboxw->get_w(),
550 ilacefixoption_chkboxw->ilacefixmethod_listbox = listboxw;
551 ilacefixoption_chkboxw->showhideotherwidgets();
552 y += textboxw->get_h() + 5;
555 add_subwindow(new BC_OKButton(this));
556 add_subwindow(new BC_CancelButton(this));
561 void AssetEditWindow::show_info_detail()
564 get_abs_cursor_xy(cur_x, cur_y, 0);
565 detail_dialog->start((Asset*)asset_edit->indexable, cur_x, cur_y);
569 AssetEditChannels::AssetEditChannels(AssetEditWindow *fwindow,
573 : BC_TumbleTextBox(fwindow,
581 this->fwindow = fwindow;
584 int AssetEditChannels::handle_event()
586 Asset *asset = fwindow->asset_edit->changed_params;
587 asset->channels = atol(get_text());
591 AssetEditRate::AssetEditRate(AssetEditWindow *fwindow, char *text, int x, int y)
592 : BC_TextBox(x, y, 100, 1, text)
594 this->fwindow = fwindow;
597 int AssetEditRate::handle_event()
599 Asset *asset = fwindow->asset_edit->changed_params;
600 asset->sample_rate = atol(get_text());
604 AssetEditFRate::AssetEditFRate(AssetEditWindow *fwindow, char *text, int x, int y)
605 : BC_TextBox(x, y, 100, 1, text)
607 this->fwindow = fwindow;
610 int AssetEditFRate::handle_event()
612 Asset *asset = fwindow->asset_edit->changed_params;
613 asset->frame_rate = atof(get_text());
617 Interlaceautofix::Interlaceautofix(MWindow *mwindow,AssetEditWindow *fwindow, int x, int y)
619 fwindow->asset_edit->changed_params->interlace_autofixoption,
620 _("Automatically Fix Interlacing"))
622 this->fwindow = fwindow;
623 this->mwindow = mwindow;
626 Interlaceautofix::~Interlaceautofix()
630 int Interlaceautofix::handle_event()
632 Asset *asset = fwindow->asset_edit->changed_params;
633 asset->interlace_autofixoption = get_value();
634 showhideotherwidgets();
638 void Interlaceautofix::showhideotherwidgets()
640 int thevalue = get_value();
642 Asset *asset = fwindow->asset_edit->changed_params;
643 if( thevalue == ILACE_AUTOFIXOPTION_AUTO ) {
644 this->ilacemode_textbox->enable();
645 this->ilacemode_listbox->enable();
646 this->ilacefixmethod_textbox->disable();
647 this->ilacefixmethod_listbox->disable();
648 int xx = ilaceautofixmethod(mwindow->edl->session->interlace_mode,asset->interlace_mode);
649 ilacefixmethod_to_text(string, xx);
650 this->ilacefixmethod_textbox->update(string);
652 if( thevalue == ILACE_AUTOFIXOPTION_MANUAL ) {
653 this->ilacemode_textbox->disable();
654 this->ilacemode_listbox->disable();
655 this->ilacefixmethod_textbox->enable();
656 this->ilacefixmethod_listbox->enable();
657 ilacefixmethod_to_text(string, asset->interlace_fixmethod);
658 this->ilacefixmethod_textbox->update(string);
662 InterlacefixmethodItem::InterlacefixmethodItem(const char *text, int value)
663 : BC_ListBoxItem(text)
668 InterlacefixmethodPulldown::InterlacefixmethodPulldown(MWindow *mwindow,
669 BC_TextBox *output_text, int *output_value,
670 ArrayList<BC_ListBoxItem*> *data, int x, int y)
671 : BC_ListBox(x, y, 200, 150, LISTBOX_TEXT, data, 0, 0, 1, 0, 1)
673 this->mwindow = mwindow;
674 this->output_text = output_text;
675 this->output_value = output_value;
676 output_text->update(interlacefixmethod_to_text());
679 int InterlacefixmethodPulldown::handle_event()
681 output_text->update(get_selection(0, 0)->get_text());
682 *output_value = ((InterlacefixmethodItem*)get_selection(0, 0))->value;
686 const char* InterlacefixmethodPulldown::interlacefixmethod_to_text()
688 ilacefixmethod_to_text(this->string,*output_value);
689 return (this->string);
692 AssetEditILaceautofixoption::AssetEditILaceautofixoption(AssetEditWindow *fwindow, char *text, int thedefault, int x, int y, int w)
693 : BC_TextBox(x, y, w, 1, text)
695 this->fwindow = fwindow;
696 this->thedefault = thedefault;
699 int AssetEditILaceautofixoption::handle_event()
701 Asset *asset = fwindow->asset_edit->changed_params;
702 asset->interlace_autofixoption = ilaceautofixoption_from_text(get_text(), this->thedefault);
707 AssetEditILacemode::AssetEditILacemode(AssetEditWindow *fwindow, const char *text, int thedefault, int x, int y, int w)
708 : BC_TextBox(x, y, w, 1, text)
710 this->fwindow = fwindow;
711 this->thedefault = thedefault;
714 int AssetEditILacemode::handle_event()
716 Asset *asset = fwindow->asset_edit->changed_params;
717 asset->interlace_mode = ilacemode_from_text(get_text(),this->thedefault);
721 AssetEditInterlacemodePulldown::AssetEditInterlacemodePulldown(MWindow *mwindow,
722 BC_TextBox *output_text,
724 ArrayList<BC_ListBoxItem*> *data,
725 Interlaceautofix *fixoption_chkboxw,
740 this->fixoption_chkbox = fixoption_chkboxw;
741 this->mwindow = mwindow;
742 this->output_text = output_text;
743 this->output_value = output_value;
744 output_text->update(interlacemode_to_text());
747 int AssetEditInterlacemodePulldown::handle_event()
749 output_text->update(get_selection(0, 0)->get_text());
750 *output_value = ((InterlacemodeItem*)get_selection(0, 0))->value;
751 fixoption_chkbox->showhideotherwidgets();
755 char* AssetEditInterlacemodePulldown::interlacemode_to_text()
757 ilacemode_to_text(this->string,*output_value);
758 return (this->string);
761 AssetEditILacefixmethod::AssetEditILacefixmethod(AssetEditWindow *fwindow, const char *text, int thedefault, int x, int y, int w)
762 : BC_TextBox(x, y, w, 1, text)
764 this->fwindow = fwindow;
765 this->thedefault = thedefault;
768 int AssetEditILacefixmethod::handle_event()
770 Asset *asset = fwindow->asset_edit->changed_params;
771 asset->interlace_fixmethod = ilacefixmethod_from_text(get_text(),this->thedefault);
775 AssetEditHeader::AssetEditHeader(AssetEditWindow *fwindow, char *text, int x, int y)
776 : BC_TextBox(x, y, 100, 1, text)
778 this->fwindow = fwindow;
781 int AssetEditHeader::handle_event()
783 Asset *asset = fwindow->asset_edit->changed_params;
784 asset->header = atol(get_text());
788 AssetEditByteOrderLOHI::AssetEditByteOrderLOHI(AssetEditWindow *fwindow,
792 : BC_Radial(x, y, value, _("Lo-Hi"))
794 this->fwindow = fwindow;
797 int AssetEditByteOrderLOHI::handle_event()
799 Asset *asset = fwindow->asset_edit->changed_params;
800 asset->byte_order = 1;
801 fwindow->hilo->update(0);
806 AssetEditByteOrderHILO::AssetEditByteOrderHILO(AssetEditWindow *fwindow,
810 : BC_Radial(x, y, value, _("Hi-Lo"))
812 this->fwindow = fwindow;
815 int AssetEditByteOrderHILO::handle_event()
817 Asset *asset = fwindow->asset_edit->changed_params;
818 asset->byte_order = 0;
819 fwindow->lohi->update(0);
824 AssetEditSigned::AssetEditSigned(AssetEditWindow *fwindow,
828 : BC_CheckBox(x, y, value, _("Values are signed"))
830 this->fwindow = fwindow;
833 int AssetEditSigned::handle_event()
835 Asset *asset = fwindow->asset_edit->changed_params;
836 asset->signed_ = get_value();
846 AssetEditPathText::AssetEditPathText(AssetEditWindow *fwindow, int y)
847 : BC_TextBox(5, y, 300, 1, fwindow->asset_edit->changed_params->path)
849 this->fwindow = fwindow;
851 AssetEditPathText::~AssetEditPathText()
854 int AssetEditPathText::handle_event()
856 strcpy(fwindow->asset_edit->changed_params->path, get_text());
860 AssetEditPath::AssetEditPath(MWindow *mwindow, AssetEditWindow *fwindow,
861 BC_TextBox *textbox, int y, const char *text,
862 const char *window_title, const char *window_caption)
863 : BrowseButton(mwindow->theme, fwindow, textbox, 310, y, text,
864 window_title, window_caption, 0)
866 this->fwindow = fwindow;
869 AssetEditPath::~AssetEditPath() {}
874 DetailAssetButton::DetailAssetButton(AssetEditWindow *fwindow, int x, int y)
875 : BC_GenericButton(x, y, _("Detail"))
877 this->fwindow = fwindow;
881 DetailAssetButton::~DetailAssetButton()
885 int DetailAssetButton::handle_event()
887 fwindow->show_info_detail();
891 DetailAssetWindow::DetailAssetWindow(MWindow *mwindow,
892 DetailAssetDialog *detail_dialog, Asset *asset)
893 : BC_Window(_("Asset Detail"),
894 detail_dialog->x - 600/2, detail_dialog->y - 500/2, 600, 500)
896 this->mwindow = mwindow;
897 this->detail_dialog = detail_dialog;
904 DetailAssetWindow::~DetailAssetWindow()
906 asset->remove_user();
910 DetailAssetDialog::DetailAssetDialog(MWindow *mwindow)
913 this->mwindow = mwindow;
917 DetailAssetDialog::~DetailAssetDialog()
922 void DetailAssetWindow::create_objects()
925 char file_name[BCTEXTLEN];
926 int len = sizeof(info);
927 strncpy(info,_("no info available"),len);
928 if( !mwindow->preferences->get_asset_file_path(asset, file_name) ) {
929 switch( asset->format ) {
931 FileMPEG::get_info(asset->path, file_name, &info[0],len);
934 FileFFMPEG::get_info(asset->path, &info[0],len);
938 text = new BC_ScrollTextBox(this, x, y, get_w()-32, 23, info, -len);
939 text->create_objects(); text->set_text_row(0);
940 add_subwindow(new BC_OKButton(this));
944 void DetailAssetDialog::start(Asset *asset, int x, int y)
948 this->x = x; this->y = y;
949 BC_DialogThread::start();
952 BC_Window *DetailAssetDialog::new_gui()
954 dwindow = new DetailAssetWindow(mwindow, this, asset);
955 dwindow->create_objects();