summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjasplin <qt-info@nokia.com>2010-04-26 12:41:00 +0200
committerjasplin <qt-info@nokia.com>2010-04-26 12:41:00 +0200
commitba708bd6409d6bf2ff27aaf934fabec69ad3949b (patch)
tree87f19086efce08613becf2b2548d4d2f67d21635
parentf7db12a4dedd98bce2ac19288cff73e3251a56b7 (diff)
A bit of polish.
-rw-r--r--src/bm/bmrequest.cpp12
-rw-r--r--src/bm/plotter.cpp4
2 files changed, 10 insertions, 6 deletions
diff --git a/src/bm/bmrequest.cpp b/src/bm/bmrequest.cpp
index e82a969..43ae06c 100644
--- a/src/bm/bmrequest.cpp
+++ b/src/bm/bmrequest.cpp
@@ -5572,6 +5572,10 @@ void BMRequest_IndexGetValues::handleReply_HTML(const QStringList &args) const
reply += "isolation. The graph is however shifted vertically so that each individual index ";
reply += "value indicates the change from the index value at the given base time.";
+ reply += "<br /><br />";
+
+ reply += "The base time is indicated by a blue vertical line.";
+
reply += "</td></tr></table>\n";
QDomElement argsElem = doc.elementsByTagName("args").at(0).toElement();
@@ -7175,10 +7179,10 @@ void BMRequest_GetIXHistories::handleReply_HTML(const QStringList &args) const
reply += "<li>Let <i>val</i><sub>1</sub> and <i>val</i><sub>2</sub> be the the ";
reply += "median smoothed values at the ";
- reply += "previous and current evaluation time respectively.</li>";
+ reply += "previous and selected evaluation time respectively.</li>";
reply += "<li>Let <i>diffChange</i> be the change in metric-adjusted log2 difference ";
- reply += "from the previous to the current evaluation time: ";
+ reply += "from the previous to the selected evaluation time: ";
reply += "ma_log<sub>2</sub>(<i>val</i><sub>2</sub>&nbsp;/&nbsp;<i>baseVal</i>)";
reply += "&nbsp;-&nbsp;";
reply += "ma_log<sub>2</sub>(<i>val</i><sub>1</sub>&nbsp;/&nbsp;<i>baseVal</i>) ";
@@ -7189,7 +7193,7 @@ void BMRequest_GetIXHistories::handleReply_HTML(const QStringList &args) const
reply += "<li>Rank in descending order on either <i>diffChange</i> or -<i>diffChange</i> ";
reply += "depending on whether the index value went up or down from the previous to the ";
- reply += "current evaluation time respectively.</li>";
+ reply += "selected evaluation time respectively.</li>";
reply += "</ol>";
@@ -7200,7 +7204,7 @@ void BMRequest_GetIXHistories::handleReply_HTML(const QStringList &args) const
reply += "in a particular way with respect to time.";
reply += "<br /><br />";
- reply += "The current evaluation time is indicated with a blue vertical line.";
+ reply += "The selected evaluation time is indicated by a blue vertical line.";
reply += "</td></tr></table>\n";
diff --git a/src/bm/plotter.cpp b/src/bm/plotter.cpp
index 9797eaa..1569eef 100644
--- a/src/bm/plotter.cpp
+++ b/src/bm/plotter.cpp
@@ -503,9 +503,9 @@ bool IndexPlotter::drawScenes(
if ((baseTimestamp >= timestamps.first()) && (baseTimestamp <= timestamps.last())) {
// Draw line indicating the base timestamp ...
QColor color(0, 0, 255);
- color.setAlpha(100);
+ color.setAlpha(200);
const qreal btx = xmin + (baseTimestamp - loTimestamp) * xfact;
- scene_far->addLine(btx, ymin, btx, ymax, QPen(color, 1));
+ scene_far->addLine(btx, ymin, btx, ymax, QPen(color, 2));
}
const int nDispTimestamps = 8;