]> sigrok.org Git - pulseview.git/blobdiff - pv/view/cursor.h
Removed unneeded Cursor::Size constant
[pulseview.git] / pv / view / cursor.h
index dd8ef242d53163dfdd4a7f9bf10fc94d8886ff75..2e16882dac28613b1d81796a4b2a216c10d413bd 100644 (file)
@@ -40,7 +40,6 @@ private:
        static const QColor HighlightColour;
        static const QColor TextColour;
 
-       static const int Size;
        static const int Offset;
 
        static const int ArrowSize;
@@ -48,7 +47,7 @@ private:
 public:
        /**
         * Constructor.
-        * @param colour A reference to the colour of this cursor.
+        * @param view A reference to the view that owns this cursor pair.
         * @param time The time to set the flag to.
         */
        Cursor(const View &view, double time);
@@ -65,13 +64,13 @@ public:
         * Paints the cursor's label to the ruler.
         * @param p The painter to draw with.
         * @param rect The rectangle of the ruler client area.
+        * @param prefix The index of the SI prefix to use.
         */
-       void paint_label(QPainter &p, const QRect &rect);
+       void paint_label(QPainter &p, const QRect &rect,
+               unsigned int prefix);
 
 private:
-       void compute_text_size(QPainter &p);
-
-       void format_text(char *text);
+       void compute_text_size(QPainter &p, unsigned int prefix);
 
 private:
        QSizeF _text_size;