X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fcursor.hpp;h=319d3a746aaae4f74c254cfb294891bd3025efae;hp=5df0ca2c3e4b34e176717a1175c0f6febdcec560;hb=f4e57597347e47a4ea58fbdc7b0a22e07f1c0ede;hpb=361c560ed9ef67278916e086ed0b0649ae01b583 diff --git a/pv/view/cursor.hpp b/pv/view/cursor.hpp index 5df0ca2c..319d3a74 100644 --- a/pv/view/cursor.hpp +++ b/pv/view/cursor.hpp @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PULSEVIEW_PV_VIEW_CURSOR_H -#define PULSEVIEW_PV_VIEW_CURSOR_H +#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_CURSOR_HPP +#define PULSEVIEW_PV_VIEWS_TRACEVIEW_CURSOR_HPP #include "timemarker.hpp" @@ -30,21 +30,15 @@ class QPainter; namespace pv { -namespace view { +namespace views { +namespace TraceView { class Cursor : public TimeMarker { Q_OBJECT public: - static const QColor LineColour; static const QColor FillColour; - static const QColor HighlightColour; - static const QColor TextColour; - - static const int Offset; - - static const int ArrowSize; public: /** @@ -56,29 +50,28 @@ public: public: /** - * Gets the marker label rectangle. - * @param rect The rectangle of the ruler client area. - * @return Returns the label rectangle. + * Returns true if the item is visible and enabled. */ - QRectF get_label_rect(const QRect &rect) const; + bool enabled() const; /** - * Paints the cursor's label to the ruler. - * @param p The painter to draw with. + * Gets the text to show in the marker. + */ + QString get_text() const; + + /** + * Gets the marker label rectangle. * @param rect The rectangle of the ruler client area. + * @return Returns the label rectangle. */ - void paint_label(QPainter &p, const QRect &rect); + QRectF label_rect(const QRectF &rect) const; private: - void compute_text_size(QPainter &p, unsigned int prefix); - std::shared_ptr get_other_cursor() const; - -private: - QSizeF text_size_; }; -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv -#endif // PULSEVIEW_PV_VIEW_CURSOR_H +#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_CURSOR_HPP