2 * This file is part of the PulseView project.
4 * Copyright (C) 2016 Soeren Apel <soeren@apelpie.net>
5 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 #ifndef PULSEVIEW_PV_VIEWS_TRACE_STANDARDBAR_HPP
23 #define PULSEVIEW_PV_VIEWS_TRACE_STANDARDBAR_HPP
31 #include <pv/session.hpp>
46 class StandardBar : public QToolBar
51 StandardBar(Session &session, QWidget *parent,
52 TraceView::View *view, bool add_default_widgets=true);
54 Session &session(void) const;
56 QAction* action_view_zoom_in() const;
57 QAction* action_view_zoom_out() const;
58 QAction* action_view_zoom_fit() const;
59 QAction* action_view_zoom_one_to_one() const;
60 QAction* action_view_show_cursors() const;
63 virtual void add_toolbar_widgets();
66 TraceView::View *view_;
68 QAction *const action_view_zoom_in_;
69 QAction *const action_view_zoom_out_;
70 QAction *const action_view_zoom_fit_;
71 QAction *const action_view_zoom_one_to_one_;
72 QAction *const action_view_show_cursors_;
75 void on_actionViewZoomIn_triggered();
77 void on_actionViewZoomOut_triggered();
79 void on_actionViewZoomFit_triggered(bool checked);
81 void on_actionViewZoomOneToOne_triggered();
83 void on_actionViewShowCursors_triggered();
85 void on_always_zoom_to_fit_changed(bool state);
92 #endif // PULSEVIEW_PV_VIEWS_TRACE_STANDARDBAR_HPP