X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fviews%2Ftrace%2Fview.hpp;h=8e78b6260e2143dcbb141ad2a5aa0f1b4836c822;hp=a351fd9306332f0169e917c16c6bbf2246a07368;hb=cbd9ec7f751a5403d1465e966ccecd31b7086e8a;hpb=d0c0573b3ee694827a747727f862c5f91736ca05 diff --git a/pv/views/trace/view.hpp b/pv/views/trace/view.hpp index a351fd93..8e78b626 100644 --- a/pv/views/trace/view.hpp +++ b/pv/views/trace/view.hpp @@ -64,12 +64,10 @@ namespace views { namespace trace { -class CursorHeader; class DecodeTrace; class Header; class Ruler; class Signal; -class Trace; class Viewport; class TriggerMarker; @@ -105,6 +103,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 +232,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. @@ -242,15 +244,15 @@ public: pair get_time_extents() const; /** - * Enables or disables coloured trace backgrounds. If they're not - * coloured then they will use alternating colors. + * Enables or disables colored trace backgrounds. If they're not + * colored then they will use alternating colors. */ - void enable_coloured_bg(bool state); + void enable_colored_bg(bool state); /** - * Returns true if the trace background should be drawn with a coloured background. + * Returns true if the trace background should be drawn with a colored background. */ - bool coloured_bg() const; + bool colored_bg() const; /** * Enable or disable showing sampling points. @@ -301,6 +303,8 @@ public: void restack_all_trace_tree_items(); + int header_width() const; + void on_setting_changed(const QString &key, const QVariant &value); Q_SIGNALS: @@ -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(); @@ -490,7 +499,7 @@ private: bool header_was_shrunk_; bool sticky_scrolling_; - bool coloured_bg_; + bool colored_bg_; bool always_zoom_to_fit_; pv::util::Timestamp tick_period_;