Mercurial > hg > svgui
diff layer/TextLayer.cpp @ 675:3437e0fad7ae imaf_enc
IMAF load code from Jesus Corral Garcia
author | Chris Cannam |
---|---|
date | Mon, 04 Nov 2013 17:09:36 +0000 |
parents | 4806715f7a19 |
children | c02c51ae5238 |
line wrap: on
line diff
--- a/layer/TextLayer.cpp Thu May 16 13:11:13 2013 +0100 +++ b/layer/TextLayer.cpp Mon Nov 04 17:09:36 2013 +0000 @@ -127,13 +127,13 @@ const TextModel::Point &p(*i); - int px = v->getXForFrame(p.frame); - int py = getYForHeight(v, p.height); + int px = v->getXForFrame(p.frame); + int py = getYForHeight(v, p.height); QString label = p.label; if (label == "") { - label = tr("<no text>"); - } + label = tr("<no text>"); + } QRect rect = metrics.boundingRect (QRect(0, 0, 150, 200), @@ -205,7 +205,7 @@ QString text; if (points.begin()->label == "") { - text = QString(tr("Time:\t%1\nHeight:\t%2\nLabel:\t%3")) + text = QString(tr("Time:\t%1\nHeight:\t%2\nLabel:\t%3")) .arg(rt.toText(true).c_str()) .arg(points.begin()->height) .arg(points.begin()->label); @@ -370,7 +370,7 @@ QString label = p.label; if (label == "") { - label = tr("<no text>"); + label = tr("<no text>"); } QRect boxRect = paint.fontMetrics().boundingRect @@ -453,6 +453,8 @@ m_editingPoint.frame = frame; m_editingPoint.height = height; m_editingCommand->addPoint(m_editingPoint); + + } void @@ -463,7 +465,7 @@ bool ok = false; QString label = QInputDialog::getText(v, tr("Enter label"), - tr("Please enter a new label:"), + tr("Please enter a new label:"), QLineEdit::Normal, "", &ok); if (ok) {