v2.0.0
Loading...
Searching...
No Matches
overviewbarwidget.cpp
Go to the documentation of this file.
1//=============================================================================================================
12
13//=============================================================================================================
14// INCLUDES
15//=============================================================================================================
16
17#include "overviewbarwidget.h"
18#include "channeldatamodel.h"
19
20//=============================================================================================================
21// QT INCLUDES
22//=============================================================================================================
23
24#include <QPainter>
25#include <QMouseEvent>
26#include <QtMath>
27
28//=============================================================================================================
29// USED NAMESPACES
30//=============================================================================================================
31
32using namespace DISPLIB;
33
34//=============================================================================================================
35// DEFINE MEMBER METHODS
36//=============================================================================================================
37
39 : QWidget(parent)
40{
41 setFixedHeight(kBarHeight);
42 setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
43 setCursor(Qt::PointingHandCursor);
44}
45
46//=============================================================================================================
47
49{
50 return QSize(400, kBarHeight);
51}
52
53//=============================================================================================================
54
56{
57 return QSize(100, kBarHeight);
58}
59
60//=============================================================================================================
61
63{
64 m_model = model;
65 m_envelopeDirty = true;
66 update();
67}
68
69//=============================================================================================================
70
72{
73 m_firstFileSample = first;
74 m_envelopeDirty = true;
75 update();
76}
77
78//=============================================================================================================
79
81{
82 m_lastFileSample = last;
83 m_envelopeDirty = true;
84 update();
85}
86
87//=============================================================================================================
88
90{
91 m_sfreq = sfreq;
92 update();
93}
94
95//=============================================================================================================
96
97void OverviewBarWidget::setViewport(float scrollSample, float visibleSamples)
98{
99 m_scrollSample = scrollSample;
100 m_visibleSamples = visibleSamples;
101 update();
102}
103
104//=============================================================================================================
105
106void OverviewBarWidget::setEvents(const QVector<ChannelRhiView::EventMarker> &events)
107{
108 m_events = events;
109 update();
110}
111
112//=============================================================================================================
113
114void OverviewBarWidget::setAnnotations(const QVector<ChannelRhiView::AnnotationSpan> &annotations)
115{
116 m_annotations = annotations;
117 update();
118}
119
120//=============================================================================================================
121
122float OverviewBarWidget::xToSample(int x) const
123{
124 int totalSamples = m_lastFileSample - m_firstFileSample;
125 if (totalSamples <= 0 || width() <= 0)
126 return static_cast<float>(m_firstFileSample);
127 float frac = static_cast<float>(x) / static_cast<float>(width());
128 frac = qBound(0.f, frac, 1.f);
129 return static_cast<float>(m_firstFileSample) + frac * static_cast<float>(totalSamples);
130}
131
132//=============================================================================================================
133
134void OverviewBarWidget::rebuildEnvelope()
135{
136 const int pw = width();
137 const int ph = kBarHeight;
138 if (pw <= 0 || !m_model || m_lastFileSample <= m_firstFileSample) {
139 m_envelopeImage = QImage();
140 m_envelopeDirty = false;
141 return;
142 }
143
144 m_envelopeImage = QImage(pw, ph, QImage::Format_RGB32);
145 m_envelopeImage.fill(QColor(38, 38, 42).rgb()); // dark background
146
147 QPainter p(&m_envelopeImage);
148 p.setRenderHint(QPainter::Antialiasing, false);
149
150 const int totalSamples = m_lastFileSample - m_firstFileSample;
151 const float samplesPerPx = static_cast<float>(totalSamples) / static_cast<float>(pw);
152 const int nChannels = m_model->channelCount();
153 if (nChannels <= 0 || totalSamples <= 0) {
154 m_envelopeDirty = false;
155 return;
156 }
157
158 // Group channels by type and compute a per-pixel RMS envelope for each type
159 struct TypeEnvelope {
160 QString typeLabel;
161 QColor color;
162 QVector<float> envelope; // per-pixel RMS, size = pw
163 };
164 QVector<TypeEnvelope> typeEnvelopes;
165 QMap<QString, int> typeIndex;
166
167 for (int ch = 0; ch < nChannels; ++ch) {
168 auto info = m_model->channelInfo(ch);
169 if (!typeIndex.contains(info.typeLabel)) {
170 int idx = typeEnvelopes.size();
171 typeIndex[info.typeLabel] = idx;
172 TypeEnvelope te;
173 te.typeLabel = info.typeLabel;
174 te.color = info.color;
175 te.envelope.resize(pw, 0.f);
176 typeEnvelopes.append(te);
177 }
178 }
179
180 // For each pixel column, compute max absolute value across channels of each type
181 for (int px_col = 0; px_col < pw; ++px_col) {
182 int sampleStart = m_firstFileSample + static_cast<int>(px_col * samplesPerPx);
183 int sampleEnd = m_firstFileSample + static_cast<int>((px_col + 1) * samplesPerPx);
184 sampleEnd = qMin(sampleEnd, m_lastFileSample);
185 if (sampleEnd <= sampleStart)
186 continue;
187
188 // Sample a few points in this range for speed
189 int step = qMax(1, (sampleEnd - sampleStart) / 4);
190 for (int ch = 0; ch < nChannels; ++ch) {
191 auto info = m_model->channelInfo(ch);
192 int ti = typeIndex.value(info.typeLabel, -1);
193 if (ti < 0) continue;
194
195 float maxAbs = 0.f;
196 for (int s = sampleStart; s < sampleEnd; s += step) {
197 float v = qAbs(m_model->sampleValueAt(ch, s));
198 if (v > maxAbs) maxAbs = v;
199 }
200 // Normalise by amplitude scale
201 float norm = (info.amplitudeMax > 0.f) ? maxAbs / info.amplitudeMax : 0.f;
202 if (norm > typeEnvelopes[ti].envelope[px_col])
203 typeEnvelopes[ti].envelope[px_col] = norm;
204 }
205 }
206
207 // Draw each type's envelope as a filled area from the bottom
208 const int nTypes = typeEnvelopes.size();
209 const float laneH = static_cast<float>(ph) / qMax(nTypes, 1);
210
211 for (int ti = 0; ti < nTypes; ++ti) {
212 const auto &te = typeEnvelopes[ti];
213 QColor fillColor = te.color;
214 fillColor.setAlpha(160);
215 p.setPen(Qt::NoPen);
216
217 float yBase = (ti + 1) * laneH;
218 for (int x = 0; x < pw; ++x) {
219 float level = qBound(0.f, te.envelope[x], 1.f);
220 float barH = level * laneH * 0.9f;
221 if (barH < 0.5f) continue;
222 p.fillRect(QRectF(x, yBase - barH, 1.f, barH), fillColor);
223 }
224
225 // Type label
226 QFont f = font();
227 f.setPointSizeF(7.0);
228 p.setFont(f);
229 p.setPen(QColor(200, 200, 200, 180));
230 p.drawText(QRectF(2, static_cast<qreal>(ti) * laneH, 60, laneH * 0.5f),
231 Qt::AlignLeft | Qt::AlignTop, te.typeLabel);
232 }
233
234 m_envelopeDirty = false;
235}
236
237//=============================================================================================================
238
240{
241 QPainter p(this);
242 p.setRenderHint(QPainter::Antialiasing, false);
243
244 const int pw = width();
245 const int ph = height();
246
247 if (m_envelopeDirty || m_envelopeImage.width() != pw)
248 rebuildEnvelope();
249
250 // Draw the envelope image or a plain dark background
251 if (!m_envelopeImage.isNull()) {
252 p.drawImage(0, 0, m_envelopeImage);
253 } else {
254 p.fillRect(rect(), QColor(38, 38, 42));
255 }
256
257 int totalSamples = m_lastFileSample - m_firstFileSample;
258 if (totalSamples <= 0) {
259 // No data loaded yet — show placeholder text
260 p.setPen(QColor(120, 120, 130));
261 p.drawText(rect(), Qt::AlignCenter, QStringLiteral("No data"));
262 return;
263 }
264
265 float samplesPerPx = static_cast<float>(totalSamples) / static_cast<float>(pw);
266
267 // ── Annotation spans ────────────────────────────────────────────
268 for (const auto &ann : m_annotations) {
269 float xStart = static_cast<float>(ann.startSample - m_firstFileSample) / samplesPerPx;
270 float xEnd = static_cast<float>(ann.endSample - m_firstFileSample) / samplesPerPx;
271 xStart = qBound(0.f, xStart, static_cast<float>(pw));
272 xEnd = qBound(0.f, xEnd, static_cast<float>(pw));
273 if (xEnd > xStart) {
274 QColor c = ann.color;
275 c.setAlpha(60);
276 p.fillRect(QRectF(xStart, 0, xEnd - xStart, ph), c);
277 }
278 }
279
280 // ── Event markers ───────────────────────────────────────────────
281 for (const auto &ev : m_events) {
282 float xF = static_cast<float>(ev.sample - m_firstFileSample) / samplesPerPx;
283 if (xF < 0.f || xF > pw)
284 continue;
285 QColor c = ev.color;
286 c.setAlpha(200);
287 p.setPen(QPen(c, 1));
288 int ix = static_cast<int>(xF);
289 p.drawLine(ix, ph - 6, ix, ph);
290 }
291
292 // ── Viewport rectangle ──────────────────────────────────────────
293 float vpX = (m_scrollSample - static_cast<float>(m_firstFileSample)) / samplesPerPx;
294 float vpW = m_visibleSamples / samplesPerPx;
295 vpX = qBound(0.f, vpX, static_cast<float>(pw));
296 vpW = qBound(2.f, vpW, static_cast<float>(pw) - vpX);
297
298 // Semi-transparent overlay outside the viewport
299 QColor dimColor(0, 0, 0, 100);
300 if (vpX > 0.f)
301 p.fillRect(QRectF(0, 0, vpX, ph), dimColor);
302 if (vpX + vpW < pw)
303 p.fillRect(QRectF(vpX + vpW, 0, pw - vpX - vpW, ph), dimColor);
304
305 // Viewport border
306 QPen vpPen(QColor(255, 255, 255, 200), 1.5);
307 p.setPen(vpPen);
308 p.setBrush(Qt::NoBrush);
309 p.drawRect(QRectF(vpX, 0.5f, vpW, ph - 1.f));
310}
311
312//=============================================================================================================
313
315{
316 if (event->button() == Qt::LeftButton) {
317 m_dragging = true;
318 float targetSample = xToSample(event->position().toPoint().x()) - m_visibleSamples * 0.5f;
319 emit scrollRequested(targetSample);
320 event->accept();
321 }
322}
323
324//=============================================================================================================
325
326void OverviewBarWidget::mouseMoveEvent(QMouseEvent *event)
327{
328 if (m_dragging) {
329 float targetSample = xToSample(event->position().toPoint().x()) - m_visibleSamples * 0.5f;
330 emit scrollRequested(targetSample);
331 event->accept();
332 }
333}
334
335//=============================================================================================================
336
338{
339 if (event->button() == Qt::LeftButton) {
340 m_dragging = false;
341 event->accept();
342 }
343}
Minimap thumbnail of the entire recording shown above the raw browser.
Circular-buffer Qt model exposing a rolling window of the live FIFF stream as a table.
2-D display widgets and visualisation helpers (charts, topography, colour maps).
Circular-buffer Qt model exposing a rolling window of the live FIFF stream as a table.
void scrollRequested(float targetSample)
void paintEvent(QPaintEvent *event) override
QSize sizeHint() const override
QSize minimumSizeHint() const override
void setAnnotations(const QVector< ChannelRhiView::AnnotationSpan > &annotations)
void setModel(ChannelDataModel *model)
void mouseMoveEvent(QMouseEvent *event) override
void setEvents(const QVector< ChannelRhiView::EventMarker > &events)
void mousePressEvent(QMouseEvent *event) override
void mouseReleaseEvent(QMouseEvent *event) override
OverviewBarWidget(QWidget *parent=nullptr)
void setViewport(float scrollSample, float visibleSamples)
static constexpr int kBarHeight