X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fdecodetrace.hpp;h=6d703ec5fe66906ebe69aebed1c575464a447436;hp=e3d8d68c04feb45e50c8780f8f480dfa45b001b1;hb=efdec55aec1a137460fa362a381ed1904182bfed;hpb=2b81ae4682ade4109ffa442794de36ceb32045eb diff --git a/pv/view/decodetrace.hpp b/pv/view/decodetrace.hpp index e3d8d68..6d703ec 100644 --- a/pv/view/decodetrace.hpp +++ b/pv/view/decodetrace.hpp @@ -14,22 +14,23 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ -#ifndef PULSEVIEW_PV_VIEW_DECODETRACE_H -#define PULSEVIEW_PV_VIEW_DECODETRACE_H +#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_DECODETRACE_HPP +#define PULSEVIEW_PV_VIEWS_TRACEVIEW_DECODETRACE_HPP #include "trace.hpp" #include #include #include +#include #include -#include +#include +#include #include struct srd_channel; @@ -43,6 +44,7 @@ class Session; namespace data { class DecoderStack; +class SignalBase; namespace decode { class Annotation; @@ -55,7 +57,8 @@ namespace widgets { class DecoderGroupBox; } -namespace view { +namespace views { +namespace TraceView { class DecodeTrace : public Trace { @@ -76,20 +79,22 @@ private: static const int ArrowSize; static const double EndCapWidth; + static const int RowTitleMargin; static const int DrawPadding; static const QColor Colours[16]; static const QColor OutlineColours[16]; public: - DecodeTrace(pv::Session &session, - std::shared_ptr decoder_stack, + DecodeTrace(pv::Session &session, std::shared_ptr signalbase, int index); bool enabled() const; const std::shared_ptr& decoder() const; + std::shared_ptr base() const; + /** * Computes the vertical extents of the contents of this row item. * @return A pair containing the minimum and maximum y-values. @@ -99,26 +104,23 @@ public: /** * Paints the background layer of the trace with a QPainter * @param p the QPainter to paint into. - * @param left the x-coordinate of the left edge of the signal. - * @param right the x-coordinate of the right edge of the signal. - **/ - void paint_back(QPainter &p, int left, int right); + * @param pp the painting parameters object to paint with.. + */ + void paint_back(QPainter &p, const ViewItemPaintParams &pp); /** * Paints the mid-layer of the trace with a QPainter * @param p the QPainter to paint into. - * @param left the x-coordinate of the left edge of the signal - * @param right the x-coordinate of the right edge of the signal - **/ - void paint_mid(QPainter &p, int left, int right); + * @param pp the painting parameters object to paint with. + */ + void paint_mid(QPainter &p, const ViewItemPaintParams &pp); /** * Paints the foreground layer of the trace with a QPainter * @param p the QPainter to paint into. - * @param left the x-coordinate of the left edge of the signal - * @param right the x-coordinate of the right edge of the signal - **/ - void paint_fore(QPainter &p, int left, int right); + * @param pp the painting parameters object to paint with. + */ + void paint_fore(QPainter &p, const ViewItemPaintParams &pp); void populate_popup_form(QWidget *parent, QFormLayout *form); @@ -127,20 +129,26 @@ public: void delete_pressed(); private: + void draw_annotations(std::vector annotations, + QPainter &p, int h, const ViewItemPaintParams &pp, int y, + size_t base_colour, int row_title_width); + void draw_annotation(const pv::data::decode::Annotation &a, QPainter &p, - QColor text_colour, int text_height, int left, int right, int y, - size_t base_colour) const; + int h, const ViewItemPaintParams &pp, int y, + size_t base_colour, int row_title_width) const; + + void draw_annotation_block(std::vector annotations, + QPainter &p, int h, int y, size_t base_colour) const; void draw_instant(const pv::data::decode::Annotation &a, QPainter &p, - QColor fill, QColor outline, QColor text_color, int h, double x, - int y) const; + int h, double x, int y) const; void draw_range(const pv::data::decode::Annotation &a, QPainter &p, - QColor fill, QColor outline, QColor text_color, int h, double start, - double end, int y) const; + int h, double start, double end, int y, const ViewItemPaintParams &pp, + int row_title_width) const; void draw_error(QPainter &p, const QString &message, - int left, int right); + const ViewItemPaintParams &pp); void draw_unresolved_period(QPainter &p, int h, int left, int right) const; @@ -160,8 +168,6 @@ private: const QString get_annotation_at_point(const QPoint &point); - void hide_hover_annotation(); - void create_decoder_form(int index, std::shared_ptr &dec, QWidget *parent, QFormLayout *form); @@ -193,23 +199,26 @@ private Q_SLOTS: private: pv::Session &session_; - std::shared_ptr decoder_stack_; + std::vector visible_rows_; uint64_t decode_start_, decode_end_; - std::list< std::shared_ptr > + std::list< std::shared_ptr > bindings_; std::list channel_selectors_; std::vector decoder_forms_; - std::vector visible_rows_; - int text_height_, row_height_; + std::map row_title_widths_; + int row_height_, max_visible_rows_; + + int min_useful_label_width_; QSignalMapper delete_mapper_, show_hide_mapper_; }; -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv -#endif // PULSEVIEW_PV_VIEW_DECODETRACE_H +#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_DECODETRACE_HPP