Make member variable underscores a suffix instead of a prefix
[pulseview.git] / pv / view / cursor.h
index 2bedb5e9336b45518dd54514b6a3062945667d57..649230ce56dfe7807400fe98ca0628f20bd07e5d 100644 (file)
@@ -23,6 +23,8 @@
 
 #include "timemarker.h"
 
+#include <memory>
+
 #include <QSizeF>
 
 class QPainter;
@@ -34,13 +36,12 @@ class Cursor : public TimeMarker
 {
        Q_OBJECT
 
-private:
+public:
        static const QColor LineColour;
        static const QColor FillColour;
        static const QColor HighlightColour;
        static const QColor TextColour;
 
-       static const int Size;
        static const int Offset;
 
        static const int ArrowSize;
@@ -51,7 +52,7 @@ public:
         * @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);
+       Cursor(View &view, double time);
 
 public:
        /**
@@ -73,8 +74,10 @@ public:
 private:
        void compute_text_size(QPainter &p, unsigned int prefix);
 
+       std::shared_ptr<Cursor> get_other_cursor() const;
+
 private:
-       QSizeF _text_size;
+       QSizeF text_size_;
 };
 
 } // namespace view