]> sigrok.org Git - pulseview.git/blame - pv/samplingbar.h
Fix #include guards.
[pulseview.git] / pv / 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
640d091b
UH
21#ifndef PULSEVIEW_PV_SAMPLINGBAR_H
22#define PULSEVIEW_PV_SAMPLINGBAR_H
d4984fe7 23
dde1a563
JH
24#include <stdint.h>
25
6fb67b27 26#include <QComboBox>
dde1a563 27#include <QDoubleSpinBox>
d4984fe7 28#include <QToolBar>
dde1a563
JH
29#include <QToolButton>
30
31class QAction;
d4984fe7 32
51e77110
JH
33namespace pv {
34
d4984fe7
JH
35class SamplingBar : public QToolBar
36{
37 Q_OBJECT
38
215f9499
JH
39private:
40 static const uint64_t RecordLengths[11];
41
d4984fe7
JH
42public:
43 SamplingBar(QWidget *parent);
6fb67b27
JH
44
45 struct sr_dev_inst* get_selected_device() const;
215f9499 46 uint64_t get_record_length() const;
dde1a563 47 uint64_t get_sample_rate() const;
6fb67b27 48
274d4f13
JH
49signals:
50 void run_stop();
51
6fb67b27
JH
52private:
53 void update_device_selector();
dde1a563
JH
54 void update_sample_rate_selector();
55
56private slots:
57 void on_device_selected();
6fb67b27
JH
58
59private:
60 QComboBox _device_selector;
dde1a563 61
215f9499
JH
62 QComboBox _record_length_selector;
63
dde1a563
JH
64 QComboBox _sample_rate_list;
65 QAction *_sample_rate_list_action;
66 QDoubleSpinBox _sample_rate_value;
67 QAction *_sample_rate_value_action;
274d4f13
JH
68
69 QToolButton _run_stop_button;
d4984fe7
JH
70};
71
51e77110
JH
72} // namespace pv
73
640d091b 74#endif // PULSEVIEW_PV_SAMPLINGBAR_H