]> sigrok.org Git - pulseview.git/blame - pv/toolbars/samplingbar.h
Show sample count selector only if setting supported.
[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
215f9499 61 uint64_t get_record_length() const;
6fb67b27 62
2b49eeb0 63 void set_capture_state(pv::SigSession::capture_state state);
6ac96c2e 64
274d4f13
JH
65signals:
66 void run_stop();
67
6fb67b27 68private:
dde1a563 69 void update_sample_rate_selector();
48888313 70 void update_sample_rate_selector_value();
85756012 71 void update_sample_count_selector();
48888313 72 void commit_sample_rate();
124d97de 73 void commit_sample_count();
dde1a563
JH
74
75private slots:
76 void on_device_selected();
124d97de 77 void on_sample_count_changed();
48888313 78 void on_sample_rate_changed();
9f3d12f3 79 void on_run_stop();
6fb67b27
JH
80
81private:
aca00b1e
JH
82 SigSession &_session;
83
6fb67b27 84 QComboBox _device_selector;
95237c18 85 bool _updating_device_selector;
51d4a9ab
JH
86
87 pv::widgets::PopupToolButton _configure_button;
b3e8a5d8 88 QAction *_configure_button_action;
b7b659aa 89
51d4a9ab 90 pv::widgets::PopupToolButton _probes_button;
dde1a563 91
124d97de 92 pv::widgets::SweepTimingWidget _sample_count;
1198b887
JH
93 pv::widgets::SweepTimingWidget _sample_rate;
94 bool _updating_sample_rate;
85756012 95 bool _updating_sample_count;
274d4f13 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