X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fviews%2Ftrace%2Fsignal.hpp;h=1b9f254330a79fd150f6f73165f5cb910a76b5be;hp=83472818034a8592bd60108607f7ef19fd7e8f09;hb=79b53a1ae4a451ef60c18dff9957d311ab90c396;hpb=1573bf16ba50d1c023ad3a9ce596f0ab6eaeacff diff --git a/pv/views/trace/signal.hpp b/pv/views/trace/signal.hpp index 83472818..1b9f2543 100644 --- a/pv/views/trace/signal.hpp +++ b/pv/views/trace/signal.hpp @@ -27,7 +27,8 @@ #include -#include "signalscalehandle.hpp" +#include + #include "trace.hpp" #include "viewitemowner.hpp" @@ -45,6 +46,15 @@ class SignalData; namespace views { namespace trace { +/** + * The Signal class represents a series of numeric values that can be drawn. + * This is the main difference to the more generic @ref Trace class. + * + * It is generally accepted that Signal instances consider themselves to be + * individual channels on e.g. an oscilloscope, though it should be kept in + * mind that virtual signals (e.g. math) will also be served by the Signal + * class. + */ class Signal : public Trace, public ViewItemOwner { Q_OBJECT @@ -60,6 +70,15 @@ public: virtual shared_ptr data() const = 0; + /** + * Determines the closest level change (i.e. edge) to a given sample, which + * is useful for e.g. the "snap to edge" functionality. + * + * @param sample_pos Sample to use + * @return The changes left and right of the given position + */ + virtual vector get_nearest_level_changes(uint64_t sample_pos) = 0; + /** * Returns true if the trace is visible and enabled. */ @@ -71,35 +90,14 @@ public: virtual void restore_settings(QSettings &settings); - /** - * Returns a list of row items owned by this object. - */ - const item_list& child_items() const; - void paint_back(QPainter &p, ViewItemPaintParams &pp); virtual void populate_popup_form(QWidget *parent, QFormLayout *form); - QMenu* create_context_menu(QWidget *parent); + QMenu* create_header_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() {}; - protected Q_SLOTS: virtual void on_name_changed(const QString &text); @@ -110,9 +108,6 @@ protected Q_SLOTS: protected: pv::Session &session_; - const shared_ptr scale_handle_; - const item_list items_; - QComboBox *name_widget_; };