]> sigrok.org Git - pulseview.git/commitdiff
Make header width responsive to label text
authorJoel Holdsworth <redacted>
Mon, 9 Dec 2013 15:39:55 +0000 (15:39 +0000)
committerBert Vermeulen <redacted>
Mon, 9 Dec 2013 16:09:57 +0000 (17:09 +0100)
pv/view/decodetrace.cpp
pv/view/header.cpp
pv/view/header.h
pv/view/marginwidget.h
pv/view/trace.cpp
pv/view/trace.h
pv/view/view.cpp
pv/view/view.h

index 1a629f2c182dbc0bee782ddbbb3feb6acc8726e0..2d641827f13bbd8416f09baa62f74c18cdce5a47 100644 (file)
@@ -27,6 +27,7 @@ extern "C" {
 #include <boost/foreach.hpp>
 
 #include <QAction>
 #include <boost/foreach.hpp>
 
 #include <QAction>
+#include <QApplication>
 #include <QComboBox>
 #include <QFormLayout>
 #include <QLabel>
 #include <QComboBox>
 #include <QFormLayout>
 #include <QLabel>
@@ -117,7 +118,8 @@ void DecodeTrace::paint_mid(QPainter &p, int left, int right)
                _decoder_stack->get_start_time()) / scale;
        const double samples_per_pixel = samplerate * scale;
 
                _decoder_stack->get_start_time()) / scale;
        const double samples_per_pixel = samplerate * scale;
 
-       const int h = (_text_size.height() * 5) / 4;
+       QFontMetrics m(QApplication::font());
+       const int h = (m.boundingRect(QRect(), 0, "Tg").height() * 5) / 4;
 
        assert(_decoder_stack);
        const QString err = _decoder_stack->error_message();
 
        assert(_decoder_stack);
        const QString err = _decoder_stack->error_message();
index dec5c20cbabfad042ec785886a2a2be9ca747e40..ca5df96fca250dc23666bbdcf59f644a07083139 100644 (file)
@@ -42,6 +42,8 @@ using namespace std;
 namespace pv {
 namespace view {
 
 namespace pv {
 namespace view {
 
+const int Header::Padding = 12;
+
 Header::Header(View &parent) :
        MarginWidget(parent),
        _dragging(false)
 Header::Header(View &parent) :
        MarginWidget(parent),
        _dragging(false)
@@ -56,6 +58,19 @@ Header::Header(View &parent) :
                this, SLOT(on_signals_moved()));
 }
 
                this, SLOT(on_signals_moved()));
 }
 
+QSize Header::sizeHint() const
+{
+       int max_width = 0;
+
+       const vector< shared_ptr<Trace> > traces(_view.get_traces());
+       BOOST_FOREACH(shared_ptr<Trace> t, traces) {
+               assert(t);
+               max_width = max(max_width, (int)t->get_label_rect(0).width());
+       }
+
+       return QSize(max_width + Padding, 0);
+}
+
 shared_ptr<Trace> Header::get_mouse_over_trace(const QPoint &pt)
 {
        const int w = width();
 shared_ptr<Trace> Header::get_mouse_over_trace(const QPoint &pt)
 {
        const int w = width();
@@ -261,7 +276,7 @@ void Header::on_signals_changed()
                connect(t.get(), SIGNAL(visibility_changed()),
                        this, SLOT(update()));
                connect(t.get(), SIGNAL(text_changed()),
                connect(t.get(), SIGNAL(visibility_changed()),
                        this, SLOT(update()));
                connect(t.get(), SIGNAL(text_changed()),
-                       this, SLOT(update()));
+                       this, SLOT(on_trace_text_changed()));
                connect(t.get(), SIGNAL(colour_changed()),
                        this, SLOT(update()));
        }
                connect(t.get(), SIGNAL(colour_changed()),
                        this, SLOT(update()));
        }
@@ -272,6 +287,11 @@ void Header::on_signals_moved()
        update();
 }
 
        update();
 }
 
+void Header::on_trace_text_changed()
+{
+       update();
+       geometry_updated();
+}
 
 } // namespace view
 } // namespace pv
 
 } // namespace view
 } // namespace pv
index 806cc985c3d482877539cc07d6f90ee77c22cea5..5474f10eb48bcac2461f8d58546605e86d409173 100644 (file)
@@ -39,9 +39,14 @@ class Header : public MarginWidget
 {
        Q_OBJECT
 
 {
        Q_OBJECT
 
+private:
+       static const int Padding;
+
 public:
        Header(View &parent);
 
 public:
        Header(View &parent);
 
+       QSize sizeHint() const;
+
 private:
        boost::shared_ptr<pv::view::Trace> get_mouse_over_trace(
                const QPoint &pt);
 private:
        boost::shared_ptr<pv::view::Trace> get_mouse_over_trace(
                const QPoint &pt);
@@ -69,6 +74,8 @@ private slots:
 
        void on_signals_moved();
 
 
        void on_signals_moved();
 
+       void on_trace_text_changed();
+
 signals:
        void signals_moved();
 
 signals:
        void signals_moved();
 
index 8fbebcf4089643ec923ec9eae5df72f1845d6078..42dffa7ab3b4e22ad47e5735cff2f7f31c5c362e 100644 (file)
@@ -41,6 +41,8 @@ public slots:
 signals:
        void selection_changed();
 
 signals:
        void selection_changed();
 
+       void geometry_updated();
+
 protected:
        pv::view::View &_view;
 };
 protected:
        pv::view::View &_view;
 };
index d06c24b5e63ed98d98a7f190851ed2667f9d5ccc..ae8ee901a27316738434c6f8e64a29376a77496f 100644 (file)
@@ -23,6 +23,7 @@
 #include <assert.h>
 #include <math.h>
 
 #include <assert.h>
 #include <math.h>
 
+#include <QApplication>
 #include <QFormLayout>
 #include <QLineEdit>
 
 #include <QFormLayout>
 #include <QLineEdit>
 
@@ -88,8 +89,6 @@ void Trace::paint_back(QPainter &p, int left, int right)
        (void)p;
        (void)left;
        (void)right;
        (void)p;
        (void)left;
        (void)right;
-
-       compute_text_size(p);
 }
 
 void Trace::paint_mid(QPainter &p, int left, int right)
 }
 
 void Trace::paint_mid(QPainter &p, int left, int right)
@@ -118,7 +117,6 @@ void Trace::paint_label(QPainter &p, int right, bool hover)
 
        const QColor colour = get_colour();
 
 
        const QColor colour = get_colour();
 
-       compute_text_size(p);
        const QRectF label_rect = get_label_rect(right);
 
        // Paint the label
        const QRectF label_rect = get_label_rect(right);
 
        // Paint the label
@@ -158,6 +156,7 @@ void Trace::paint_label(QPainter &p, int right, bool hover)
 
        // Paint the text
        p.setPen(get_text_colour());
 
        // Paint the text
        p.setPen(get_text_colour());
+       p.setFont(QApplication::font());
        p.drawText(label_rect, Qt::AlignCenter | Qt::AlignVCenter, _name);
 }
 
        p.drawText(label_rect, Qt::AlignCenter | Qt::AlignVCenter, _name);
 }
 
@@ -199,6 +198,26 @@ int Trace::get_y() const
        return _v_offset - _view->v_offset();
 }
 
        return _v_offset - _view->v_offset();
 }
 
+QRectF Trace::get_label_rect(int right)
+{
+       using pv::view::View;
+
+       assert(_view);
+
+       QFontMetrics m(QApplication::font());
+       const QSize text_size(
+               m.boundingRect(QRect(), 0, _name).width(),
+               m.boundingRect(QRect(), 0, "Tg").height());
+       const QSizeF label_size(
+               text_size.width() + View::LabelPadding.width() * 2,
+               ceilf((text_size.height() + View::LabelPadding.height() * 2) / 2) * 2);
+       const float label_arrow_length = label_size.height() / 2;
+       return QRectF(
+               right - label_arrow_length - label_size.width() - 0.5,
+               get_y() + 0.5f - label_size.height() / 2,
+               label_size.width(), label_size.height());
+}
+
 QColor Trace::get_text_colour() const
 {
        return (_colour.lightness() > 64) ? Qt::black : Qt::white;
 QColor Trace::get_text_colour() const
 {
        return (_colour.lightness() > 64) ? Qt::black : Qt::white;
@@ -251,29 +270,6 @@ void Trace::populate_popup_form(QWidget *parent, QFormLayout *form)
        add_colour_option(parent, form);
 }
 
        add_colour_option(parent, form);
 }
 
-void Trace::compute_text_size(QPainter &p)
-{
-       _text_size = QSize(
-               p.boundingRect(QRectF(), 0, _name).width(),
-               p.boundingRect(QRectF(), 0, "Tg").height());
-}
-
-QRectF Trace::get_label_rect(int right)
-{
-       using pv::view::View;
-
-       assert(_view);
-
-       const QSizeF label_size(
-               _text_size.width() + View::LabelPadding.width() * 2,
-               ceilf((_text_size.height() + View::LabelPadding.height() * 2) / 2) * 2);
-       const float label_arrow_length = label_size.height() / 2;
-       return QRectF(
-               right - label_arrow_length - label_size.width() - 0.5,
-               get_y() + 0.5f - label_size.height() / 2,
-               label_size.width(), label_size.height());
-}
-
 void Trace::on_popup_closed()
 {
        _popup = NULL;
 void Trace::on_popup_closed()
 {
        _popup = NULL;
index 72f8e8a8986a092d82870c666e64d8a361c8bb3a..2d8c7cf1f17d35bafec31ac567c3ba66d94bc56a 100644 (file)
@@ -142,7 +142,17 @@ public:
         */
        int get_y() const;
 
         */
        int get_y() const;
 
+       /**
+        * Computes the outline rectangle of a label.
+        * @param p the QPainter to lay out text with.
+        * @param right the x-coordinate of the right edge of the header
+        *      area.
+        * @return Returns the rectangle of the signal label.
+        */
+       QRectF get_label_rect(int right);
+
 protected:
 protected:
+
        /**
         * Gets the text colour.
         * @remarks This colour is computed by comparing the lightness
        /**
         * Gets the text colour.
         * @remarks This colour is computed by comparing the lightness
@@ -166,22 +176,6 @@ protected:
 
        virtual void populate_popup_form(QWidget *parent, QFormLayout *form);
 
 
        virtual void populate_popup_form(QWidget *parent, QFormLayout *form);
 
-private:
-
-       /**
-        * Computes an caches the size of the label text.
-        */
-       void compute_text_size(QPainter &p);
-
-       /**
-        * Computes the outline rectangle of a label.
-        * @param p the QPainter to lay out text with.
-        * @param right the x-coordinate of the right edge of the header
-        *      area.
-        * @return Returns the rectangle of the signal label.
-        */
-       QRectF get_label_rect(int right);
-
 private slots:
        void on_text_changed(const QString &text);
 
 private slots:
        void on_text_changed(const QString &text);
 
@@ -202,8 +196,6 @@ protected:
        QColor _colour;
        int _v_offset;
 
        QColor _colour;
        int _v_offset;
 
-       QSizeF _text_size;
-
 private:
        pv::widgets::Popup *_popup;
        QFormLayout *_popup_form;
 private:
        pv::widgets::Popup *_popup;
        QFormLayout *_popup_form;
index 3137dd0c6686b4b9a947e7a708ba14868c16d631..c2d97f070a83bb46c1d6b389bbd628048c5064b3 100644 (file)
@@ -52,7 +52,6 @@ namespace view {
 const double View::MaxScale = 1e9;
 const double View::MinScale = 1e-15;
 
 const double View::MaxScale = 1e9;
 const double View::MinScale = 1e-15;
 
-const int View::LabelMarginWidth = 70;
 const int View::RulerHeight = 30;
 
 const int View::MaxScrollValue = INT_MAX / 2;
 const int View::RulerHeight = 30;
 
 const int View::MaxScrollValue = INT_MAX / 2;
@@ -95,6 +94,8 @@ View::View(SigSession &session, QWidget *parent) :
        connect(_cursors.second().get(), SIGNAL(time_changed()),
                this, SLOT(marker_time_changed()));
 
        connect(_cursors.second().get(), SIGNAL(time_changed()),
                this, SLOT(marker_time_changed()));
 
+       connect(_header, SIGNAL(geometry_updated()),
+               this, SLOT(on_geometry_updated()));
        connect(_header, SIGNAL(signals_moved()),
                this, SLOT(on_signals_moved()));
 
        connect(_header, SIGNAL(signals_moved()),
                this, SLOT(on_signals_moved()));
 
@@ -108,7 +109,6 @@ View::View(SigSession &session, QWidget *parent) :
        connect(_ruler, SIGNAL(selection_changed()),
                this, SIGNAL(selection_changed()));
 
        connect(_ruler, SIGNAL(selection_changed()),
                this, SIGNAL(selection_changed()));
 
-       setViewportMargins(LabelMarginWidth, RulerHeight, 0, 0);
        setViewport(_viewport);
 
        _viewport->installEventFilter(this);
        setViewport(_viewport);
 
        _viewport->installEventFilter(this);
@@ -381,6 +381,16 @@ void View::update_scroll()
                areaSize.height());
 }
 
                areaSize.height());
 }
 
+void View::update_layout()
+{
+       setViewportMargins(_header->sizeHint().width(), RulerHeight, 0, 0);
+       _ruler->setGeometry(_viewport->x(), 0,
+               _viewport->width(), _viewport->y());
+       _header->setGeometry(0, _viewport->y(),
+               _viewport->x(), _viewport->height());
+       update_scroll();
+}
+
 bool View::compare_trace_v_offsets(const shared_ptr<Trace> &a,
        const shared_ptr<Trace> &b)
 {
 bool View::compare_trace_v_offsets(const shared_ptr<Trace> &a,
        const shared_ptr<Trace> &b)
 {
@@ -432,11 +442,7 @@ bool View::viewportEvent(QEvent *e)
 
 void View::resizeEvent(QResizeEvent*)
 {
 
 void View::resizeEvent(QResizeEvent*)
 {
-       _ruler->setGeometry(_viewport->x(), 0,
-               _viewport->width(), _viewport->y());
-       _header->setGeometry(0, _viewport->y(),
-               _viewport->x(), _viewport->height());
-       update_scroll();
+       update_layout();
 }
 
 void View::h_scroll_value_changed(int value)
 }
 
 void View::h_scroll_value_changed(int value)
@@ -474,6 +480,7 @@ void View::signals_changed()
                offset += SignalHeight + 2 * SignalMargin;
        }
 
                offset += SignalHeight + 2 * SignalMargin;
        }
 
+       setViewportMargins(_header->sizeHint().width(), RulerHeight, 0, 0);
        normalize_layout();
 }
 
        normalize_layout();
 }
 
@@ -510,5 +517,10 @@ void View::on_signals_moved()
        signals_moved();
 }
 
        signals_moved();
 }
 
+void View::on_geometry_updated()
+{
+       update_layout();
+}
+
 } // namespace view
 } // namespace pv
 } // namespace view
 } // namespace pv
index db03ce9b43a81b1a7b6a5eda32e0986e15cb1c86..886aa8302adc4259e44b04d43aec6b3d7e8689cc 100644 (file)
@@ -51,7 +51,6 @@ private:
        static const double MaxScale;
        static const double MinScale;
 
        static const double MaxScale;
        static const double MinScale;
 
-       static const int LabelMarginWidth;
        static const int RulerHeight;
 
        static const int MaxScrollValue;
        static const int RulerHeight;
 
        static const int MaxScrollValue;
@@ -148,6 +147,8 @@ private:
 
        void update_scroll();
 
 
        void update_scroll();
 
+       void update_layout();
+
        static bool compare_trace_v_offsets(
                const boost::shared_ptr<pv::view::Trace> &a,
                const boost::shared_ptr<pv::view::Trace> &b);
        static bool compare_trace_v_offsets(
                const boost::shared_ptr<pv::view::Trace> &a,
                const boost::shared_ptr<pv::view::Trace> &b);
@@ -171,6 +172,8 @@ private slots:
 
        void on_signals_moved();
 
 
        void on_signals_moved();
 
+       void on_geometry_updated();
+
 private:
        SigSession &_session;
 
 private:
        SigSession &_session;