// Parent EDL of this edit
EDL *edl;
-
-// ============================= initialization
-
int load_properties(FileXML *xml, int64_t &startproject);
virtual int load_properties_derived(FileXML *xml) { return 0; };
-// ============================= drawing
-
- virtual int draw(int flash, int center_pixel,
- int x, int w, int y, int h, int set_index_file) { return 0; }
- virtual int set_index_file(int flash, int center_pixel,
- int x, int y, int w, int h) { return 0; }
- int draw_transition(int flash, int center_pixel,
- int x, int w, int y, int h, int set_index_file);
-
- int draw_handles(BC_SubWindow *canvas, float view_start, float view_units,
- float zoom_units, int view_pixels, int center_pixel);
- int draw_titles(BC_SubWindow *canvas, float view_start, float zoom_units,
- int view_pixels, int center_pixel);
-
-// ============================= editing
-
virtual int copy_properties_derived(FileXML *xml,
int64_t length_in_selection) { return 0; }
int64_t &left_sample, int64_t &right_sample, float view_start,
float zoom_units) { return 0; }
virtual int64_t get_source_end(int64_t default_);
+ void get_title(char *title);
+
int dump(FILE *fp=stdout);
virtual int dump_derived() { return 0; }
};
#include "awindow.h"
#include "awindowgui.h"
#include "edit.h"
+#include "edits.h"
#include "editpopup.h"
#include "edl.h"
#include "edlsession.h"
EditPopupShowWindow::EditPopupShowWindow(MWindow *mwindow,
EditPopup *popup, int wx, int wy)
: BC_Window(_(PROGRAM_NAME ": Show edit"), wx, wy,
- 300, 200, 300, 200, 0, 0, 1)
+ 300, 220, 300, 220, 0, 0, 1)
{
this->mwindow = mwindow;
this->popup = popup;
{
lock_window("EditPopupShowWindow::create_objects");
int x = 10, y = 10;
- add_subwindow(new BC_Title(x, y, _("Show edit:")));
+ BC_Title *title;
+ char text[BCTEXTLEN];
+ Track *track = popup->track;
+ Edit *edit = popup->edit;
+ sprintf(text, _("Track %d:"), mwindow->edl->tracks->number_of(track)+1);
+ add_subwindow(title = new BC_Title(x, y, text));
+ int x1 = x + title->get_w() + 10;
+ int tw = get_w() - x1 - 20;
+ truncate_text(text, track->title, tw);
+ add_subwindow(new BC_Title(x1, y, text));
+ y += title->get_h() + 5;
+ sprintf(text, _("Edit %d:"), track->edits->number_of(edit)+1);
+ add_subwindow(title = new BC_Title(x, y, text));
+ char edit_title[BCTEXTLEN];
+ edit->get_title(edit_title);
+ truncate_text(text, edit_title, tw);
+ add_subwindow(new BC_Title(x1, y, text));
+ y += title->get_h() + 5;
EDLSession *session = mwindow->edl->session;
int time_format = session->time_format;
- int sample_rate = session->sample_rate;
+ int sample_rate = session->sample_rate;
double frame_rate = session->frame_rate;
double frames_per_foot = session->frames_per_foot;
- Track *track = popup->track;
- Edit *edit = popup->edit;
- double startsource = track->from_units(edit->startsource);
+ double startsource = track->from_units(edit->startsource);
double startproject = track->from_units(edit->startproject);
double length = track->from_units(edit->length);
- char text[BCTEXTLEN], text_length[BCSTRLEN];
- char text_startsource[BCSTRLEN], text_startproject[BCSTRLEN];
+ char text_startsource[BCSTRLEN];
+ char text_startproject[BCSTRLEN];
+ char text_length[BCSTRLEN];
sprintf(text, _("StartSource: %s\nStartProject: %s\nLength: %s\n"),
Units::totext(text_startsource, startsource,
time_format, sample_rate, frame_rate, frames_per_foot),
time_format, sample_rate, frame_rate, frames_per_foot),
Units::totext(text_length, length,
time_format, sample_rate, frame_rate, frames_per_foot));
- show_text = new EditPopupShowText(this, mwindow, x+15, y+20, text);
+ show_text = new EditPopupShowText(this, mwindow, x+15, y+10, text);
add_subwindow(show_text);
add_tool(new BC_OKButton(this));
// if( total_x > -BC_INFINITY ) {
char title[BCTEXTLEN];
- char channel[BCTEXTLEN];
- title[0] = 0;
- channel[0] = 0;
- FileSystem fs;
-
- if( edit->user_title[0] )
- strcpy(title, edit->user_title);
- else if( edit->nested_edl ) {
-//printf("ResourcePixmap::draw_title %s\n", edit->nested_edl->project_path);
- fs.extract_name(title, edit->nested_edl->path);
-
-// EDLs only have 1 video output
- if( edit->track->data_type == TRACK_AUDIO ) {
- sprintf(channel, " #%d", edit->channel + 1);
- strcat(title, channel);
- }
- }
- else if( edit->asset ) {
- fs.extract_name(title, edit->asset->path);
- sprintf(channel, " #%d", edit->channel + 1);
- strcat(title, channel);
- }
-
+ edit->get_title(title);
canvas->set_color(mwindow->theme->title_color);
canvas->set_font(mwindow->theme->title_font);