]> sigrok.org Git - pulseview.git/blame - pv/toolbars/mainbar.hpp
View: Move assertion after assignment
[pulseview.git] / pv / toolbars / mainbar.hpp
CommitLineData
d4984fe7 1/*
b3f22de0 2 * This file is part of the PulseView project.
d4984fe7
JH
3 *
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
7a01bd36
JH
21#ifndef PULSEVIEW_PV_TOOLBARS_MAINBAR_HPP
22#define PULSEVIEW_PV_TOOLBARS_MAINBAR_HPP
d4984fe7 23
dde1a563
JH
24#include <stdint.h>
25
4fe06f49 26#include <list>
f9abf97e 27#include <memory>
18203d86 28
6fb67b27 29#include <QComboBox>
dde1a563 30#include <QDoubleSpinBox>
079d39ea 31#include <QMenu>
d4984fe7 32#include <QToolBar>
dde1a563
JH
33#include <QToolButton>
34
f65cd27b 35#include <pv/session.hpp>
079d39ea 36#include <pv/widgets/devicetoolbutton.hpp>
2acdb232
JH
37#include <pv/widgets/popuptoolbutton.hpp>
38#include <pv/widgets/sweeptimingwidget.hpp>
2b49eeb0 39
e8d00928 40namespace sigrok {
ed43ef2e
JH
41class Device;
42class InputFormat;
e8d00928
ML
43}
44
45Q_DECLARE_METATYPE(std::shared_ptr<sigrok::Device>)
46
dde1a563 47class QAction;
d4984fe7 48
51e77110 49namespace pv {
aca00b1e 50
4e7f5ba8 51class MainWindow;
2b81ae46 52class Session;
aca00b1e 53
f4c92e1c 54namespace toolbars {
51e77110 55
7c657094 56class MainBar : public QToolBar
d4984fe7
JH
57{
58 Q_OBJECT
59
215f9499 60private:
b50ef520
JH
61 static const uint64_t MinSampleCount;
62 static const uint64_t MaxSampleCount;
63 static const uint64_t DefaultSampleCount;
215f9499 64
d4984fe7 65public:
7c657094 66 MainBar(Session &session, pv::MainWindow &main_window);
6fb67b27 67
079d39ea 68 void update_device_list();
18203d86 69
2b81ae46 70 void set_capture_state(pv::Session::capture_state state);
6ac96c2e 71
7e0c99bf
SA
72 void reset_device_selector();
73
6fb67b27 74private:
dde1a563 75 void update_sample_rate_selector();
48888313 76 void update_sample_rate_selector_value();
85756012 77 void update_sample_count_selector();
e95e8563 78 void update_device_config_widgets();
48888313 79 void commit_sample_rate();
124d97de 80 void commit_sample_count();
dde1a563 81
e9213170 82private Q_SLOTS:
dde1a563 83 void on_device_selected();
124d97de 84 void on_sample_count_changed();
48888313 85 void on_sample_rate_changed();
9f3d12f3 86 void on_run_stop();
6fb67b27 87
82afd5e3
JH
88 void on_config_changed();
89
40065ab6
JS
90protected:
91 bool eventFilter(QObject *watched, QEvent *event);
92
6fb67b27 93private:
2b81ae46 94 Session &session_;
4e7f5ba8 95 MainWindow &main_window_;
aca00b1e 96
079d39ea 97 pv::widgets::DeviceToolButton device_selector_;
51d4a9ab 98
8dbbc7f0
JH
99 pv::widgets::PopupToolButton configure_button_;
100 QAction *configure_button_action_;
b7b659aa 101
8dbbc7f0 102 pv::widgets::PopupToolButton channels_button_;
9dd88889 103 QAction *channels_button_action_;
dde1a563 104
8dbbc7f0
JH
105 pv::widgets::SweepTimingWidget sample_count_;
106 pv::widgets::SweepTimingWidget sample_rate_;
107 bool updating_sample_rate_;
108 bool updating_sample_count_;
274d4f13 109
8dbbc7f0 110 bool sample_count_supported_;
6546a6a7 111
8dbbc7f0
JH
112 QIcon icon_red_;
113 QIcon icon_green_;
114 QIcon icon_grey_;
115 QToolButton run_stop_button_;
9dd88889 116 QAction *run_stop_button_action_;
87f0df9b
JH
117
118 QToolButton menu_button_;
d4984fe7
JH
119};
120
f4c92e1c 121} // namespace toolbars
51e77110
JH
122} // namespace pv
123
7a01bd36 124#endif // PULSEVIEW_PV_TOOLBARS_MAINBAR_HPP