X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Flogicsignal.h;h=79bbe396967bb0339b1f8eb8d9be67e654eccd8a;hb=8dbbc7f0b9ea59d0f0d62225772f8a56eee125f5;hp=cc63884e586b9f5ae253067e25aa3303be8af3cc;hpb=83c23cc9fa0d4501d9e6b8759251fa6337f5d491;p=pulseview.git diff --git a/pv/view/logicsignal.h b/pv/view/logicsignal.h index cc63884..79bbe39 100644 --- a/pv/view/logicsignal.h +++ b/pv/view/logicsignal.h @@ -23,10 +23,15 @@ #include "signal.h" -#include +#include class QToolBar; +namespace sigrok { + class Device; + class TriggerMatchType; +} + namespace pv { namespace data { @@ -40,6 +45,9 @@ class LogicSignal : public Signal Q_OBJECT private: + static const int SignalHeight; + static const int SignalMargin; + static const float Oversampling; static const QColor EdgeColour; @@ -49,15 +57,22 @@ private: static const QColor SignalColours[10]; public: - LogicSignal(boost::shared_ptr dev_inst, - sr_probe *const probe, - boost::shared_ptr data); + LogicSignal(pv::SigSession &session, + std::shared_ptr device, + std::shared_ptr channel, + std::shared_ptr data); virtual ~LogicSignal(); - boost::shared_ptr data() const; + std::shared_ptr data() const; + + std::shared_ptr logic_data() const; - boost::shared_ptr logic_data() const; + /** + * Computes the vertical extents of the contents of this row item. + * @return A pair containing the minimum and maximum y-values. + */ + std::pair v_extents() const; /** * Paints the background layer of the signal with a QPainter @@ -76,7 +91,6 @@ public: void paint_mid(QPainter &p, int left, int right); private: - void paint_caps(QPainter &p, QLineF *const lines, std::vector< std::pair > &edges, bool level, double samples_per_pixel, double pixels_offset, @@ -84,33 +98,26 @@ private: void init_trigger_actions(QWidget *parent); + QAction* match_action(const sigrok::TriggerMatchType *match); + const sigrok::TriggerMatchType *action_match(QAction *action); void populate_popup_form(QWidget *parent, QFormLayout *form); - - void add_trigger_action(const char *trig_types, char type, - QAction *action); - - void update_trigger_actions(); - - void set_trigger(char type); + void modify_trigger(); -private slots: - void on_trigger_none(); - void on_trigger_rising(); - void on_trigger_high(); - void on_trigger_falling(); - void on_trigger_low(); - void on_trigger_change(); +private Q_SLOTS: + void on_trigger(); private: - boost::shared_ptr _data; - - QToolBar *_trigger_bar; - QAction *_trigger_none; - QAction *_trigger_rising; - QAction *_trigger_high; - QAction *_trigger_falling; - QAction *_trigger_low; - QAction *_trigger_change; + std::shared_ptr device_; + std::shared_ptr data_; + + const sigrok::TriggerMatchType *trigger_match_; + QToolBar *trigger_bar_; + QAction *trigger_none_; + QAction *trigger_rising_; + QAction *trigger_high_; + QAction *trigger_falling_; + QAction *trigger_low_; + QAction *trigger_change_; }; } // namespace view