18#include "Timeline.hpp"
19#include "src/ui/ScrollSynchronizer.hpp"
24 auto layout =
new QGridLayout(
this);
27 layout->addWidget(this->header, 0, 1);
30 layout->addWidget(this->labelList, 1, 0);
33 layout->addWidget(this->view, 1, 1);
37 layout->setColumnStretch(0, 1);
38 layout->setColumnStretch(1, 9);
41 scrollSyncer->addWidget(this->labelList);
42 scrollSyncer->addWidget(this->view);
The TimelineLabelList displays a vertical bar with a list of rank names.
The main view component rendering the trace.
Timeline(TraceDataProxy *data, QWidget *parent=nullptr)
Creates a new instance of the Timeline class.
Model class providing access to data and pub/sub architecture of change events.