mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-15 17:12:36 +02:00
2016-06-01 Fred Gleason <fredg@paravelsystems.com>
* Modified the Edit Log screen in 'rdlogedit/edit_log.cpp' to display the link Start Time and Length for Traffic and Music links in the 'EXT DATA' column. * Removed display of the link Length for Traffic and Music links from the LENGTH column in 'rdlogedit/edit_log.cpp'.
This commit is contained in:
parent
da0ad47ffb
commit
ebb2d90045
@ -15186,3 +15186,9 @@
|
||||
and 'RDAudioExport::settings()' meethods in 'lib/rdaudioexport.cpp'
|
||||
and 'lib/rdaudioexport.h'.
|
||||
* Added expanded error logging in 'utils/rdexport/rdexport.cpp'.
|
||||
2016-06-01 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Modified the Edit Log screen in 'rdlogedit/edit_log.cpp' to
|
||||
display the link Start Time and Length for Traffic and Music links
|
||||
in the 'EXT DATA' column.
|
||||
* Removed display of the link Length for Traffic and Music links
|
||||
from the LENGTH column in 'rdlogedit/edit_log.cpp'.
|
||||
|
@ -1402,6 +1402,7 @@ void EditLog::RefreshLine(RDListViewItem *item)
|
||||
item->setText(7,logline->artist());
|
||||
item->setText(8,logline->client());
|
||||
item->setText(9,logline->agency());
|
||||
item->setText(12,logline->extData());
|
||||
break;
|
||||
|
||||
case RDLogLine::Macro:
|
||||
@ -1422,6 +1423,7 @@ void EditLog::RefreshLine(RDListViewItem *item)
|
||||
item->setText(7,logline->artist());
|
||||
item->setText(8,logline->client());
|
||||
item->setText(9,logline->agency());
|
||||
item->setText(12,logline->extData());
|
||||
break;
|
||||
|
||||
case RDLogLine::Marker:
|
||||
@ -1431,6 +1433,7 @@ void EditLog::RefreshLine(RDListViewItem *item)
|
||||
item->setText(6,RDTruncateAfterWord(edit_log_event->
|
||||
logLine(line)->markerComment(),5,true));
|
||||
item->setText(10,logline->markerLabel());
|
||||
item->setText(12,logline->extData());
|
||||
break;
|
||||
|
||||
case RDLogLine::Track:
|
||||
@ -1439,6 +1442,7 @@ void EditLog::RefreshLine(RDListViewItem *item)
|
||||
item->setText(4,"");
|
||||
item->setText(6,RDTruncateAfterWord(edit_log_event->
|
||||
logLine(line)->markerComment(),5,true));
|
||||
item->setText(12,logline->extData());
|
||||
break;
|
||||
|
||||
case RDLogLine::Chain:
|
||||
@ -1448,22 +1452,29 @@ void EditLog::RefreshLine(RDListViewItem *item)
|
||||
item->setText(6,logline->markerLabel());
|
||||
item->setText(7,RDTruncateAfterWord(edit_log_event->
|
||||
logLine(line)->markerComment(),5,true));
|
||||
item->setText(12,logline->extData());
|
||||
break;
|
||||
|
||||
case RDLogLine::MusicLink:
|
||||
item->setPixmap(0,*edit_music_map);
|
||||
item->setText(3,tr("LINK"));
|
||||
item->setText(4,"");
|
||||
item->setText(5,RDGetTimeLength(logline->linkLength(),false,false));
|
||||
item->setText(6,tr("[music import]"));
|
||||
item->setText(12,tr("Link Start")+": "+
|
||||
logline->linkStartTime().toString("hh:mm:ss")+", "+
|
||||
tr("Len")+": "+
|
||||
RDGetTimeLength(logline->linkLength(),false,false));
|
||||
break;
|
||||
|
||||
case RDLogLine::TrafficLink:
|
||||
item->setPixmap(0,*edit_traffic_map);
|
||||
item->setText(3,tr("LINK"));
|
||||
item->setText(4,"");
|
||||
item->setText(5,RDGetTimeLength(logline->linkLength(),false,false));
|
||||
item->setText(6,tr("[traffic import]"));
|
||||
item->setText(12,tr("Link Start")+": "+
|
||||
logline->linkStartTime().toString("hh:mm:ss")+", "+
|
||||
tr("Len")+": "+
|
||||
RDGetTimeLength(logline->linkLength(),false,false));
|
||||
break;
|
||||
|
||||
default:
|
||||
@ -1490,9 +1501,7 @@ void EditLog::RefreshLine(RDListViewItem *item)
|
||||
item->setText(11,tr("Voice Tracker"));
|
||||
break;
|
||||
}
|
||||
item->setText(12,logline->extData());
|
||||
item->
|
||||
setText(13,QString().sprintf("%d",logline->id()));
|
||||
item->setText(13,QString().sprintf("%d",logline->id()));
|
||||
UpdateColor(item,logline);
|
||||
}
|
||||
|
||||
|
@ -401,6 +401,14 @@ jež jsou pro vybranou službu zakázány!</translation>
|
||||
<source>EXT DATA</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Start</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Len</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditLogLine</name>
|
||||
|
@ -401,6 +401,14 @@ die für den gewählten Service ungültig sind!</translation>
|
||||
<source>EXT DATA</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Start</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Len</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditLogLine</name>
|
||||
|
@ -401,6 +401,14 @@ desactivados para el servicio actual!
|
||||
<source>EXT DATA</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Start</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Len</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditLogLine</name>
|
||||
|
@ -392,6 +392,14 @@ for the selected service!</source>
|
||||
<source>EXT DATA</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Start</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Len</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditLogLine</name>
|
||||
|
@ -408,6 +408,14 @@ skrudd av for denne tenesta!</translation>
|
||||
<source>EXT DATA</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Start</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Len</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditLogLine</name>
|
||||
|
@ -408,6 +408,14 @@ skrudd av for denne tenesta!</translation>
|
||||
<source>EXT DATA</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Start</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Len</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditLogLine</name>
|
||||
|
@ -403,6 +403,14 @@ para o serviço selecionado!</translation>
|
||||
<source>EXT DATA</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Start</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Len</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditLogLine</name>
|
||||
|
Loading…
x
Reference in New Issue
Block a user