QString Cursor::get_text() const
{
return util::format_time(time_, view_.tick_prefix(),
- util::TimeUnit::Time, 2);
+ view_.time_unit(), 2);
}
QRectF Cursor::label_rect(const QRectF &rect) const
const unsigned int prefix = view_.tick_prefix();
const double delta = second_->time() - first_->time();
return QString("%1 / %2").
- arg(util::format_time(delta, prefix, util::TimeUnit::Time, 2)).
+ arg(util::format_time(delta, prefix, view_.time_unit(), 2)).
arg(util::format_si_value(1.0 / fabs(delta), "Hz", -1, 4));
}
// Draw a major tick
p.drawText(x, ValueMargin, 0, text_height,
AlignCenter | AlignTop | TextDontClip,
- util::format_time(t, prefix));
+ util::format_time(t, prefix, view_.time_unit()));
p.drawLine(QPointF(x, major_tick_y1),
QPointF(x, ruler_height));
}
using pv::data::SignalData;
using pv::data::Segment;
using pv::util::format_time;
+using pv::util::TimeUnit;
using std::deque;
using std::dynamic_pointer_cast;
always_zoom_to_fit_(false),
tick_period_(0.0),
tick_prefix_(0),
+ time_unit_(util::Time),
show_cursors_(false),
cursors_(new CursorPair(*this)),
next_flag_text_('A'),
return tick_period_;
}
+TimeUnit View::time_unit() const
+{
+ return time_unit_;
+}
+
void View::zoom(double steps)
{
zoom(steps, viewport_->width() / 2);
typical_width = m.boundingRect(0, 0, INT_MAX, INT_MAX,
Qt::AlignLeft | Qt::AlignTop,
- format_time(offset_, tick_prefix_)).width() +
+ format_time(offset_, tick_prefix_, time_unit_)).width() +
MinValueSpacing;
min_width += SpacingIncrement;
return filtered_traces;
}
+void View::determine_time_unit()
+{
+ time_unit_ = util::Samples;
+
+ shared_lock<shared_mutex> lock(session().signals_mutex());
+ const unordered_set< shared_ptr<Signal> > &sigs(session().signals());
+
+ // Check all signals but...
+ for (const shared_ptr<Signal> signal : sigs) {
+ const shared_ptr<SignalData> data = signal->data();
+
+ // ...only check first segment of each
+ const vector< shared_ptr<Segment> > segments = data->segments();
+ if (!segments.empty())
+ if (segments[0]->samplerate()) {
+ time_unit_ = util::Time;
+ break;
+ }
+ }
+}
+
bool View::eventFilter(QObject *object, QEvent *event)
{
const QEvent::Type type = event->type();
if (!delayed_view_updater_.isActive())
delayed_view_updater_.start();
} else {
+ determine_time_unit();
update_scroll();
ruler_->update();
viewport_->update();
offset_ = scale_ * length;
}
+ determine_time_unit();
update_scroll();
ruler_->update();
viewport_->update();
#include <QTimer>
#include <pv/data/signaldata.hpp>
+#include <pv/util.hpp>
#include "cursorpair.hpp"
#include "flag.hpp"
*/
double tick_period() const;
+ /**
+ * Returns the unit of time currently used.
+ */
+ util::TimeUnit time_unit() const;
+
/**
* Returns the number of nested parents that this row item owner has.
*/
std::shared_ptr<Signal> > &signal_map,
std::set< std::shared_ptr<Trace> > &add_list);
+ void determine_time_unit();
+
private:
bool eventFilter(QObject *object, QEvent *event);
double tick_period_;
unsigned int tick_prefix_;
+ util::TimeUnit time_unit_;
bool show_cursors_;
std::shared_ptr<CursorPair> cursors_;