X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fviews%2Ftrace%2Fview.hpp;h=1cff6ab7bbf245f52a7508c20b52b446e26d15bc;hp=8c41fd9e40692e504c9db06c39a26f4aa5a92f6d;hb=d9b55cc8ab01e83b392762ed1fa400fdafafb60b;hpb=641574bcc118be0b6dc3a65039ab3497f9d7241a diff --git a/pv/views/trace/view.hpp b/pv/views/trace/view.hpp index 8c41fd9..1cff6ab 100644 --- a/pv/views/trace/view.hpp +++ b/pv/views/trace/view.hpp @@ -105,6 +105,12 @@ public: ~View(); + /** + * Resets the view to its default state after construction. It does however + * not reset the signal bases or any other connections with the session. + */ + virtual void reset_view_state(); + Session& session(); const Session& session() const; @@ -228,8 +234,6 @@ public: void zoom_fit(bool gui_state); - void zoom_one_to_one(); - /** * Sets the scale and offset. * @param scale The new view scale in seconds per pixel. @@ -337,6 +341,9 @@ Q_SIGNALS: /// @param mode is a value of Trace::SegmentDisplayMode void segment_display_mode_changed(int mode, bool segment_selectable); + /// Emitted when the cursors are shown/hidden + void cursor_state_changed(bool show); + public Q_SLOTS: void trigger_event(int segment_id, util::Timestamp location); @@ -387,6 +394,8 @@ private: bool eventFilter(QObject *object, QEvent *event); + virtual void contextMenuEvent(QContextMenuEvent *event); + void resizeEvent(QResizeEvent *event); void update_hover_point();