]> sigrok.org Git - pulseview.git/blobdiff - pv/view/decodetrace.hpp
DecodeTrace: Removed text_height_
[pulseview.git] / pv / view / decodetrace.hpp
index 71876f5ca418062160aa636067d0f1edce1dcbd6..968ebf9569672a92e76640bc7a88039603a235ee 100644 (file)
@@ -101,21 +101,21 @@ public:
         * @param p the QPainter to paint into.
         * @param pp the painting parameters object to paint with..
         **/
-       void paint_back(QPainter &p, const RowItemPaintParams &pp);
+       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 pp the painting parameters object to paint with.
         **/
-       void paint_mid(QPainter &p, const RowItemPaintParams &pp);
+       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 pp the painting parameters object to paint with.
         **/
-       void paint_fore(QPainter &p, const RowItemPaintParams &pp);
+       void paint_fore(QPainter &p, const ViewItemPaintParams &pp);
 
        void populate_popup_form(QWidget *parent, QFormLayout *form);
 
@@ -125,19 +125,18 @@ public:
 
 private:
        void draw_annotation(const pv::data::decode::Annotation &a, QPainter &p,
-               QColor text_colour, int text_height, const RowItemPaintParams &pp, int y,
+               int text_height, const ViewItemPaintParams &pp, 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;
+               QColor fill, QColor outline, 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,
+               QColor fill, QColor outline, int h, double start,
                double end, int y) const;
 
        void draw_error(QPainter &p, const QString &message,
-               const RowItemPaintParams &pp);
+               const ViewItemPaintParams &pp);
 
        void draw_unresolved_period(QPainter &p, int h, int left,
                int right) const;
@@ -157,8 +156,6 @@ private:
 
        const QString get_annotation_at_point(const QPoint &point);
 
-       void hide_hover_annotation();
-
        void create_decoder_form(int index,
                std::shared_ptr<pv::data::decode::Decoder> &dec,
                QWidget *parent, QFormLayout *form);
@@ -201,7 +198,7 @@ private:
        std::vector<pv::widgets::DecoderGroupBox*> decoder_forms_;
 
        std::vector<data::decode::Row> visible_rows_;
-       int text_height_, row_height_;
+       int row_height_;
 
        QSignalMapper delete_mapper_, show_hide_mapper_;
 };