X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fviews%2Ftrace%2Fview.hpp;h=8fd7e968552f6af0528e3697e16f8eca2a5fb11e;hb=4e86ec7042631d4b54876cba89c01a73abaf7213;hp=f0aa491e585fa5f90998e9697a151404d2fb3275;hpb=873e80357d9622678069fcfe83b010717a68284c;p=pulseview.git diff --git a/pv/views/trace/view.hpp b/pv/views/trace/view.hpp index f0aa491..8fd7e96 100644 --- a/pv/views/trace/view.hpp +++ b/pv/views/trace/view.hpp @@ -323,9 +323,9 @@ private: void set_scroll_default(); - bool header_was_shrunk() const; + void determine_if_header_was_shrunk(); - void expand_header_to_fit(); + void resize_header_to_fit(); void update_layout(); @@ -357,6 +357,7 @@ public: private Q_SLOTS: + void on_signal_name_changed(); void on_splitter_moved(); void h_scroll_value_changed(int value); @@ -365,6 +366,9 @@ private Q_SLOTS: void signals_changed(); void capture_state_updated(int state); + void on_new_segment(int new_segment_id); + void on_segment_changed(int segment); + virtual void perform_delayed_view_update(); void process_sticky_events(); @@ -418,6 +422,9 @@ private: vector< shared_ptr > decode_traces_; #endif + /// The ID of the currently displayed segment + int current_segment_; + /// The view time scale in seconds per pixel. double scale_; @@ -426,6 +433,7 @@ private: bool updating_scroll_; bool settings_restored_; + bool header_was_shrunk_; bool sticky_scrolling_; bool coloured_bg_;