X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fviews%2Ftrace%2Fstandardbar.hpp;h=8640b4c9520ae01b0f41a2721a8cd4da8261a13a;hp=e41beebc79448d41ccfed7927b33ee5c2e5214fc;hb=4e86ec7042631d4b54876cba89c01a73abaf7213;hpb=e0ba4f6fb263b4cc1dae96df2a0ff1e1ef8984ce diff --git a/pv/views/trace/standardbar.hpp b/pv/views/trace/standardbar.hpp index e41beebc..8640b4c9 100644 --- a/pv/views/trace/standardbar.hpp +++ b/pv/views/trace/standardbar.hpp @@ -15,16 +15,16 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #ifndef PULSEVIEW_PV_VIEWS_TRACE_STANDARDBAR_HPP #define PULSEVIEW_PV_VIEWS_TRACE_STANDARDBAR_HPP -#include +#include #include +#include #include #include @@ -37,7 +37,7 @@ class Session; namespace views { -namespace TraceView { +namespace trace { class View; } @@ -49,9 +49,9 @@ class StandardBar : public QToolBar public: StandardBar(Session &session, QWidget *parent, - TraceView::View *view, bool add_default_widgets=true); + trace::View *view, bool add_default_widgets = true); - Session &session(void) const; + Session &session() const; QAction* action_view_zoom_in() const; QAction* action_view_zoom_out() const; @@ -62,8 +62,10 @@ public: protected: virtual void add_toolbar_widgets(); + virtual void show_multi_segment_ui(const bool state); + Session &session_; - TraceView::View *view_; + trace::View *view_; QAction *const action_view_zoom_in_; QAction *const action_view_zoom_out_; @@ -71,18 +73,25 @@ protected: QAction *const action_view_zoom_one_to_one_; QAction *const action_view_show_cursors_; + QSpinBox *segment_selector_; + protected Q_SLOTS: void on_actionViewZoomIn_triggered(); void on_actionViewZoomOut_triggered(); - void on_actionViewZoomFit_triggered(); + void on_actionViewZoomFit_triggered(bool checked); void on_actionViewZoomOneToOne_triggered(); void on_actionViewShowCursors_triggered(); void on_always_zoom_to_fit_changed(bool state); + + void on_new_segment(int new_segment_id); + +private: + vector multi_segment_actions_; }; } // namespace trace