X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Fruler.hpp;h=d01b151243aeb2ea3c9a32ab8a3077cf20a76677;hb=4b0af0b67fe57e0880bcb8aa13b4fa807f3aaac0;hp=7fa58452fe76cd5fa7210d8b35a27420c6f00847;hpb=6a2cc8dd37f6d128ad7e16b9a7a78bb44d5a5aa5;p=pulseview.git diff --git a/pv/view/ruler.hpp b/pv/view/ruler.hpp index 7fa5845..d01b151 100644 --- a/pv/view/ruler.hpp +++ b/pv/view/ruler.hpp @@ -18,12 +18,16 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PULSEVIEW_PV_VIEW_RULER_H -#define PULSEVIEW_PV_VIEW_RULER_H +#ifndef PULSEVIEW_PV_VIEW_RULER_HPP +#define PULSEVIEW_PV_VIEW_RULER_HPP +#include #include +#include + #include "marginwidget.hpp" +#include namespace pv { namespace view { @@ -76,14 +80,8 @@ private: private: void paintEvent(QPaintEvent *event); - void mouseMoveEvent(QMouseEvent *e); - void mouseReleaseEvent(QMouseEvent *); - void mouseDoubleClickEvent(QMouseEvent *e); - void keyPressEvent(QKeyEvent *e); - -private: /** * Draw a hover arrow under the cursor position. * @param p The painter to draw into. @@ -93,11 +91,48 @@ private: int calculate_text_height() const; + struct TickPositions + { + std::vector> major; + std::vector minor; + }; + + /** + * Holds the tick positions so that they don't have to be recalculated on + * every redraw. Set by 'paintEvent()' when needed. + */ + boost::optional tick_position_cache_; + + /** + * Calculates the major and minor tick positions. + * + * @param major_period The period between the major ticks. + * @param offset The time at the left border of the ruler. + * @param scale The scale in seconds per pixel. + * @param width the Width of the ruler. + * @param format_function A function used to format the major tick times. + * @return An object of type 'TickPositions' that contains the major tick + * positions together with the labels at that ticks, and the minor + * tick positions. + */ + static TickPositions calculate_tick_positions( + const double major_period, + const pv::util::Timestamp& offset, + const double scale, + const int width, + std::function format_function); + +protected: + void resizeEvent(QResizeEvent*) override; + private Q_SLOTS: void hover_point_changed(); + + // Resets the 'tick_position_cache_'. + void invalidate_tick_position_cache(); }; } // namespace view } // namespace pv -#endif // PULSEVIEW_PV_VIEW_RULER_H +#endif // PULSEVIEW_PV_VIEW_RULER_HPP