]> sigrok.org Git - pulseview.git/blame_incremental - pv/views/trace/standardbar.hpp
Rework new segment notification mechanism
[pulseview.git] / pv / views / trace / standardbar.hpp
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2016 Soeren Apel <soeren@apelpie.net>
5 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
6 *
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.
11 *
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.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef PULSEVIEW_PV_VIEWS_TRACE_STANDARDBAR_HPP
22#define PULSEVIEW_PV_VIEWS_TRACE_STANDARDBAR_HPP
23
24#include <cstdint>
25
26#include <QAction>
27#include <QSpinBox>
28#include <QToolBar>
29#include <QWidget>
30
31#include <pv/session.hpp>
32
33namespace pv {
34
35class MainWindow;
36class Session;
37
38namespace views {
39
40namespace trace {
41class View;
42}
43
44namespace trace {
45
46class StandardBar : public QToolBar
47{
48 Q_OBJECT
49
50public:
51 StandardBar(Session &session, QWidget *parent,
52 trace::View *view, bool add_default_widgets = true);
53
54 Session &session() const;
55
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;
61
62protected:
63 virtual void add_toolbar_widgets();
64
65 virtual void show_multi_segment_ui(const bool state);
66
67 Session &session_;
68 trace::View *view_;
69
70 QAction *const action_view_zoom_in_;
71 QAction *const action_view_zoom_out_;
72 QAction *const action_view_zoom_fit_;
73 QAction *const action_view_zoom_one_to_one_;
74 QAction *const action_view_show_cursors_;
75
76 QSpinBox *segment_selector_;
77
78protected Q_SLOTS:
79 void on_actionViewZoomIn_triggered();
80
81 void on_actionViewZoomOut_triggered();
82
83 void on_actionViewZoomFit_triggered(bool checked);
84
85 void on_actionViewZoomOneToOne_triggered();
86
87 void on_actionViewShowCursors_triggered();
88
89 void on_always_zoom_to_fit_changed(bool state);
90
91 void on_new_segment(int new_segment_id);
92
93private:
94 vector<QAction*> multi_segment_actions_;
95};
96
97} // namespace trace
98} // namespace views
99} // namespace pv
100
101#endif // PULSEVIEW_PV_VIEWS_TRACE_STANDARDBAR_HPP