]> sigrok.org Git - pulseview.git/blame - pv/toolbars/samplingbar.h
SamplingBar: Show a 1-2-5 for min-max sample rate values
[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
18203d86
JH
26#include <list>
27
6fb67b27 28#include <QComboBox>
dde1a563 29#include <QDoubleSpinBox>
d4984fe7 30#include <QToolBar>
dde1a563
JH
31#include <QToolButton>
32
2b49eeb0 33#include <pv/sigsession.h>
51d4a9ab 34#include <pv/widgets/popuptoolbutton.h>
1198b887 35#include <pv/widgets/sweeptimingwidget.h>
2b49eeb0 36
18203d86 37struct st_dev_inst;
dde1a563 38class QAction;
d4984fe7 39
51e77110 40namespace pv {
aca00b1e
JH
41
42class SigSession;
43
f4c92e1c 44namespace toolbars {
51e77110 45
d4984fe7
JH
46class SamplingBar : public QToolBar
47{
48 Q_OBJECT
49
215f9499 50private:
09f5d123 51 static const uint64_t DefaultRecordLength;
215f9499 52
d4984fe7 53public:
aca00b1e 54 SamplingBar(SigSession &session, QWidget *parent);
6fb67b27 55
18203d86
JH
56 void set_device_list(const std::list<struct sr_dev_inst*> &devices);
57
6fb67b27 58 struct sr_dev_inst* get_selected_device() const;
dba73e73 59 void set_selected_device(struct sr_dev_inst *const sdi);
18203d86 60
2b49eeb0 61 void set_capture_state(pv::SigSession::capture_state state);
6ac96c2e 62
274d4f13
JH
63signals:
64 void run_stop();
65
6fb67b27 66private:
dde1a563 67 void update_sample_rate_selector();
48888313 68 void update_sample_rate_selector_value();
85756012 69 void update_sample_count_selector();
48888313 70 void commit_sample_rate();
124d97de 71 void commit_sample_count();
dde1a563
JH
72
73private slots:
74 void on_device_selected();
124d97de 75 void on_sample_count_changed();
48888313 76 void on_sample_rate_changed();
9f3d12f3 77 void on_run_stop();
6fb67b27
JH
78
79private:
aca00b1e
JH
80 SigSession &_session;
81
6fb67b27 82 QComboBox _device_selector;
95237c18 83 bool _updating_device_selector;
51d4a9ab
JH
84
85 pv::widgets::PopupToolButton _configure_button;
b3e8a5d8 86 QAction *_configure_button_action;
b7b659aa 87
51d4a9ab 88 pv::widgets::PopupToolButton _probes_button;
dde1a563 89
124d97de 90 pv::widgets::SweepTimingWidget _sample_count;
1198b887
JH
91 pv::widgets::SweepTimingWidget _sample_rate;
92 bool _updating_sample_rate;
85756012 93 bool _updating_sample_count;
274d4f13 94
6546a6a7
ML
95 bool _sample_count_supported;
96
2b49eeb0 97 QIcon _icon_red;
f5798068
JH
98 QIcon _icon_green;
99 QIcon _icon_grey;
274d4f13 100 QToolButton _run_stop_button;
d4984fe7
JH
101};
102
f4c92e1c 103} // namespace toolbars
51e77110
JH
104} // namespace pv
105
f4c92e1c 106#endif // PULSEVIEW_PV_TOOLBARS_SAMPLINGBAR_H