X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fsignal.hpp;h=bcd4e2eb617eef83a46a5c1e98bf308751b48d8e;hp=dd3af0b3abc704d339859ecf4449eb23734e04da;hb=838d0522bf01d4e7550f8c124135debd452f0cac;hpb=2acdb232d6bb452cfdfaea3ef5218fb4da592329 diff --git a/pv/view/signal.hpp b/pv/view/signal.hpp index dd3af0b3..bcd4e2eb 100644 --- a/pv/view/signal.hpp +++ b/pv/view/signal.hpp @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PULSEVIEW_PV_VIEW_SIGNAL_H -#define PULSEVIEW_PV_VIEW_SIGNAL_H +#ifndef PULSEVIEW_PV_VIEW_SIGNAL_HPP +#define PULSEVIEW_PV_VIEW_SIGNAL_HPP #include @@ -28,7 +28,9 @@ #include +#include "signalscalehandle.hpp" #include "trace.hpp" +#include "viewitemowner.hpp" namespace sigrok { class Channel; @@ -36,7 +38,7 @@ namespace sigrok { namespace pv { -class SigSession; +class Session; namespace data { class SignalData; @@ -44,12 +46,12 @@ class SignalData; namespace view { -class Signal : public Trace +class Signal : public Trace, public ViewItemOwner { Q_OBJECT protected: - Signal(pv::SigSession &session, + Signal(pv::Session &session, std::shared_ptr channel); public: @@ -69,19 +71,45 @@ public: std::shared_ptr channel() const; + /** + * Returns a list of row items owned by this object. + */ + const item_list& child_items() const; + + void paint_back(QPainter &p, const ViewItemPaintParams &pp); + virtual void populate_popup_form(QWidget *parent, QFormLayout *form); QMenu* create_context_menu(QWidget *parent); void delete_pressed(); + /** + * Returns the offset to show the drag handle. + */ + virtual int scale_handle_offset() const = 0; + + /** + * Handles the scale handle being dragged to an offset. + * @param offset the offset the scale handle was dragged to. + */ + virtual void scale_handle_dragged(int offset) = 0; + + /** + * Handles the scale handle being being released. + */ + virtual void scale_handle_released() {}; + private Q_SLOTS: void on_disable(); protected: - pv::SigSession &session_; + pv::Session &session_; std::shared_ptr channel_; + const std::shared_ptr scale_handle_; + const item_list items_; + QComboBox *name_widget_; bool updating_name_widget_; }; @@ -89,4 +117,4 @@ protected: } // namespace view } // namespace pv -#endif // PULSEVIEW_PV_VIEW_SIGNAL_H +#endif // PULSEVIEW_PV_VIEW_SIGNAL_HPP