X-Git-Url: http://git.cinelerra-gg.org/git/?p=goodguy%2Fhistory.git;a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Ftrack.C;h=bac9abd68050bed5c1f8908fa9e92e239f8e4b7d;hp=e3f624c0e3fc4564f92b6dc76c90705d237e0091;hb=HEAD;hpb=0513350234a8dcd08e5a0117d5121724ef7b76b6 diff --git a/cinelerra-5.1/cinelerra/track.C b/cinelerra-5.1/cinelerra/track.C index e3f624c0..bac9abd6 100644 --- a/cinelerra-5.1/cinelerra/track.C +++ b/cinelerra-5.1/cinelerra/track.C @@ -218,16 +218,13 @@ printf("Track::operator= 1\n"); int Track::vertical_span(Theme *theme) { int result = 0; - if(expand_view) - result = edl->local_session->zoom_track + - plugin_set.total * - theme->get_image("plugin_bg_data")->get_h(); - else - result = edl->local_session->zoom_track; - - if(edl->session->show_titles) + if( show_titles() ) result += theme->get_image("title_bg_data")->get_h(); - + if( show_assets() ) + result += edl->local_session->zoom_track; + if( expand_view ) + result += plugin_set.total * theme->get_image("plugin_bg_data")->get_h(); + result = MAX(result, theme->title_h); return result; } @@ -284,7 +281,20 @@ int Track::has_speed() return 0; } +int Track::show_assets() +{ + return expand_view || edl->session->show_assets ? 1 : 0; +} +int Track::show_titles() +{ + return expand_view || edl->session->show_titles ? 1 : 0; +} + +int Track::show_transitions() +{ + return expand_view || edl->session->auto_conf->transitions ? 1 : 0; +} void Track::get_source_dimensions(double position, int &w, int &h) { @@ -342,7 +352,10 @@ int Track::load(FileXML *file, int track_offset, uint32_t load_flags) else if(file->tag.title_is("TITLE")) { - file->read_text_until("/TITLE", title, BCTEXTLEN); + XMLBuffer data; + file->read_text_until("/TITLE", &data); + memset(title, 0, sizeof(title)); + strncpy(title, data.cstr(), sizeof(title)-1); } else if(load_flags && automation->load(file) @@ -1153,6 +1166,15 @@ int Track::copy_assets(double start, return 0; } +int Track::blade(double position) +{ + int64_t start = to_units(position, 0); + Edit *edit = edits->split_edit(start); + if( !edit ) return 1; + edit->hard_left = 1; + if( edit->previous ) edit->previous->hard_right = 1; + return 0; +} int Track::clear(double start, double end, int edit_edits, int edit_labels, int edit_plugins, @@ -1847,6 +1869,13 @@ double Track::from_units(int64_t position) return (double)position; } +int64_t Track::frame_align(int64_t position, int round) +{ + if( data_type != TRACK_VIDEO && edl->session->cursor_on_frames ) + position = to_units(edl->align_to_frame(from_units(position), round), round); + return position; +} + int Track::plugin_exists(Plugin *plugin) { for(int number = 0; number < plugin_set.size(); number++)