]> sigrok.org Git - pulseview.git/blobdiff - pv/view/signal.cpp
ScaleSignalHandle: Initial implementation
[pulseview.git] / pv / view / signal.cpp
index 9f97d5bca7194562f40d4939b77e47f46e19502b..47e91f4b9a67f9a904d0b059e3da5cee543a35ab 100644 (file)
@@ -35,6 +35,7 @@
 #include "view.hpp"
 
 using std::shared_ptr;
+using std::make_shared;
 
 using sigrok::Channel;
 
@@ -63,6 +64,8 @@ Signal::Signal(pv::Session &session,
        Trace(QString::fromUtf8(channel->name().c_str())),
        session_(session),
        channel_(channel),
+       scale_handle_(make_shared<SignalScaleHandle>(*this)),
+       items_({scale_handle_}),
        name_widget_(nullptr),
        updating_name_widget_(false)
 {
@@ -99,13 +102,18 @@ shared_ptr<Channel> Signal::channel() const
        return channel_;
 }
 
+const ViewItemOwner::item_list& Signal::child_items() const
+{
+       return items_;
+}
+
 void Signal::populate_popup_form(QWidget *parent, QFormLayout *form)
 {
        name_widget_ = new QComboBox(parent);
        name_widget_->setEditable(true);
        name_widget_->setCompleter(0);
 
-       for(unsigned int i = 0; i < countof(ChannelNames); i++)
+       for (unsigned int i = 0; i < countof(ChannelNames); i++)
                name_widget_->insertItem(i, ChannelNames[i]);
 
        const int index = name_widget_->findText(name_, Qt::MatchExactly);