X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Flogicsignal.cpp;h=7bb2ee0caebaa9803e51f56af205d80520491e21;hp=6eb68db381357835fe8fc3feb1d0ff2fb95697a3;hb=bf0edd2b0cbb5f4bd5d69b0f00bcea7d037e2287;hpb=14f9d4a1f4472d29366ed8333b20f4041cf1b443 diff --git a/pv/view/logicsignal.cpp b/pv/view/logicsignal.cpp index 6eb68db..7bb2ee0 100644 --- a/pv/view/logicsignal.cpp +++ b/pv/view/logicsignal.cpp @@ -37,6 +37,7 @@ #include #include #include +#include #include #include @@ -49,7 +50,6 @@ using std::pair; using std::shared_ptr; using std::vector; -using sigrok::Channel; using sigrok::ConfigKey; using sigrok::Capability; using sigrok::Error; @@ -99,7 +99,7 @@ QCache LogicSignal::pixmap_cache_; LogicSignal::LogicSignal( pv::Session &session, shared_ptr device, - shared_ptr channel, + shared_ptr channel, shared_ptr data) : Signal(session, channel), signal_height_(QFontMetrics(QApplication::font()).height() * 2), @@ -114,7 +114,7 @@ LogicSignal::LogicSignal( { shared_ptr trigger; - set_colour(SignalColours[channel->index() % countof(SignalColours)]); + channel_->set_colour(SignalColours[channel->index() % countof(SignalColours)]); /* Populate this channel's trigger setting with whatever we * find in the current session trigger, if anything. */ @@ -122,7 +122,7 @@ LogicSignal::LogicSignal( if ((trigger = session_.session()->trigger())) for (auto stage : trigger->stages()) for (auto match : stage->matches()) - if (match->channel() == channel_) + if (match->channel() == channel_->channel()) trigger_match_ = match->type(); } @@ -430,12 +430,12 @@ void LogicSignal::modify_trigger() const auto &matches = stage->matches(); if (std::none_of(matches.begin(), matches.end(), [&](shared_ptr match) { - return match->channel() != channel_; })) + return match->channel() != channel_->channel(); })) continue; auto new_stage = new_trigger->add_stage(); for (auto match : stage->matches()) { - if (match->channel() == channel_) + if (match->channel() == channel_->channel()) continue; new_stage->add_match(match->channel(), match->type()); } @@ -449,7 +449,8 @@ void LogicSignal::modify_trigger() if (new_trigger->stages().empty()) new_trigger->add_stage(); - new_trigger->stages().back()->add_match(channel_, trigger_match_); + new_trigger->stages().back()->add_match(channel_->channel(), + trigger_match_); } session_.session()->set_trigger(