Specific implementation of BuilderViewComponent for timestamps. More...
#include <builderview.h>
Public Member Functions | |
TimestampBuiderView (QWidget *parent=0) | |
TimestampViewPort * | viewPort () |
TimestampHeaderSection * | header () |
Specific implementation of BuilderViewComponent for timestamps.
TimestampBuiderView::TimestampBuiderView | ( | QWidget * | parent = 0 |
) |
: BuilderViewComponent(parent) { tView = new TimestampViewPort(this); ths = new TimestampHeaderSection(this); Q_ASSERT(layout()); layout()->addWidget(ths); layout()->addWidget(tView); }
TimestampHeaderSection * TimestampBuiderView::header | ( | ) | [virtual] |
Implements BuilderViewComponent.
Referenced by BuilderView::BuilderView(), and BuilderView::timestampHeader().
{
Q_ASSERT(ths);
return ths;
}
TimestampViewPort * TimestampBuiderView::viewPort | ( | ) | [virtual] |
Implements BuilderViewComponent.
Referenced by BuilderView::timestampView().
{
Q_ASSERT(tView);
return tView;
}