]> sigrok.org Git - pulseview.git/blame - pv/toolbars/samplingbar.h
Use libsigrok C++ bindings (patch version 7).
[pulseview.git] / pv / toolbars / samplingbar.h
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
f4c92e1c
JH
21#ifndef PULSEVIEW_PV_TOOLBARS_SAMPLINGBAR_H
22#define PULSEVIEW_PV_TOOLBARS_SAMPLINGBAR_H
d4984fe7 23
dde1a563
JH
24#include <stdint.h>
25
19adbc2c 26#include <map>
f9abf97e 27#include <memory>
18203d86 28
6fb67b27 29#include <QComboBox>
dde1a563 30#include <QDoubleSpinBox>
d4984fe7 31#include <QToolBar>
dde1a563
JH
32#include <QToolButton>
33
2b49eeb0 34#include <pv/sigsession.h>
51d4a9ab 35#include <pv/widgets/popuptoolbutton.h>
1198b887 36#include <pv/widgets/sweeptimingwidget.h>
2b49eeb0 37
e8d00928
ML
38namespace sigrok {
39 class Device;
40}
41
42Q_DECLARE_METATYPE(std::shared_ptr<sigrok::Device>)
43
dde1a563 44class QAction;
d4984fe7 45
51e77110 46namespace pv {
aca00b1e
JH
47
48class SigSession;
49
f4c92e1c 50namespace toolbars {
51e77110 51
d4984fe7
JH
52class SamplingBar : public QToolBar
53{
54 Q_OBJECT
55
215f9499 56private:
b50ef520
JH
57 static const uint64_t MinSampleCount;
58 static const uint64_t MaxSampleCount;
59 static const uint64_t DefaultSampleCount;
215f9499 60
d4984fe7 61public:
aca00b1e 62 SamplingBar(SigSession &session, QWidget *parent);
6fb67b27 63
19adbc2c 64 void set_device_list(
e8d00928
ML
65 const std::map< std::shared_ptr<sigrok::Device>, std::string >
66 &device_names,
67 std::shared_ptr<sigrok::Device> selected);
18203d86 68
e8d00928 69 std::shared_ptr<sigrok::Device> get_selected_device() const;
18203d86 70
2b49eeb0 71 void set_capture_state(pv::SigSession::capture_state state);
6ac96c2e 72
e9213170 73Q_SIGNALS:
274d4f13
JH
74 void run_stop();
75
6fb67b27 76private:
dde1a563 77 void update_sample_rate_selector();
48888313 78 void update_sample_rate_selector_value();
85756012 79 void update_sample_count_selector();
e95e8563 80 void update_device_config_widgets();
48888313 81 void commit_sample_rate();
124d97de 82 void commit_sample_count();
dde1a563 83
e9213170 84private Q_SLOTS:
dde1a563 85 void on_device_selected();
124d97de 86 void on_sample_count_changed();
48888313 87 void on_sample_rate_changed();
9f3d12f3 88 void on_run_stop();
6fb67b27 89
82afd5e3
JH
90 void on_config_changed();
91
40065ab6
JS
92protected:
93 bool eventFilter(QObject *watched, QEvent *event);
94
6fb67b27 95private:
aca00b1e
JH
96 SigSession &_session;
97
6fb67b27 98 QComboBox _device_selector;
95237c18 99 bool _updating_device_selector;
51d4a9ab
JH
100
101 pv::widgets::PopupToolButton _configure_button;
b3e8a5d8 102 QAction *_configure_button_action;
b7b659aa 103
6ac6242b 104 pv::widgets::PopupToolButton _channels_button;
dde1a563 105
124d97de 106 pv::widgets::SweepTimingWidget _sample_count;
1198b887
JH
107 pv::widgets::SweepTimingWidget _sample_rate;
108 bool _updating_sample_rate;
85756012 109 bool _updating_sample_count;
274d4f13 110
6546a6a7
ML
111 bool _sample_count_supported;
112
2b49eeb0 113 QIcon _icon_red;
f5798068
JH
114 QIcon _icon_green;
115 QIcon _icon_grey;
274d4f13 116 QToolButton _run_stop_button;
d4984fe7
JH
117};
118
f4c92e1c 119} // namespace toolbars
51e77110
JH
120} // namespace pv
121
f4c92e1c 122#endif // PULSEVIEW_PV_TOOLBARS_SAMPLINGBAR_H