]> sigrok.org Git - pulseview.git/blame - pv/toolbars/mainbar.hpp
MainBar: Removed unused run_stop signal
[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
7c657094
JH
21#ifndef PULSEVIEW_PV_TOOLBARS_MAINBAR_H
22#define PULSEVIEW_PV_TOOLBARS_MAINBAR_H
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
ML
40namespace sigrok {
41 class Device;
42}
43
44Q_DECLARE_METATYPE(std::shared_ptr<sigrok::Device>)
45
dde1a563 46class QAction;
d4984fe7 47
51e77110 48namespace pv {
aca00b1e 49
4e7f5ba8 50class MainWindow;
2b81ae46 51class Session;
aca00b1e 52
f4c92e1c 53namespace toolbars {
51e77110 54
7c657094 55class MainBar : public QToolBar
d4984fe7
JH
56{
57 Q_OBJECT
58
215f9499 59private:
b50ef520
JH
60 static const uint64_t MinSampleCount;
61 static const uint64_t MaxSampleCount;
62 static const uint64_t DefaultSampleCount;
215f9499 63
d4984fe7 64public:
7c657094 65 MainBar(Session &session, pv::MainWindow &main_window);
6fb67b27 66
079d39ea 67 void update_device_list();
18203d86 68
2b81ae46 69 void set_capture_state(pv::Session::capture_state state);
6ac96c2e 70
6fb67b27 71private:
dde1a563 72 void update_sample_rate_selector();
48888313 73 void update_sample_rate_selector_value();
85756012 74 void update_sample_count_selector();
e95e8563 75 void update_device_config_widgets();
48888313 76 void commit_sample_rate();
124d97de 77 void commit_sample_count();
dde1a563 78
e9213170 79private Q_SLOTS:
dde1a563 80 void on_device_selected();
124d97de 81 void on_sample_count_changed();
48888313 82 void on_sample_rate_changed();
9f3d12f3 83 void on_run_stop();
6fb67b27 84
82afd5e3
JH
85 void on_config_changed();
86
40065ab6
JS
87protected:
88 bool eventFilter(QObject *watched, QEvent *event);
89
6fb67b27 90private:
2b81ae46 91 Session &session_;
4e7f5ba8 92 MainWindow &main_window_;
aca00b1e 93
079d39ea 94 pv::widgets::DeviceToolButton device_selector_;
51d4a9ab 95
8dbbc7f0
JH
96 pv::widgets::PopupToolButton configure_button_;
97 QAction *configure_button_action_;
b7b659aa 98
8dbbc7f0 99 pv::widgets::PopupToolButton channels_button_;
dde1a563 100
8dbbc7f0
JH
101 pv::widgets::SweepTimingWidget sample_count_;
102 pv::widgets::SweepTimingWidget sample_rate_;
103 bool updating_sample_rate_;
104 bool updating_sample_count_;
274d4f13 105
8dbbc7f0 106 bool sample_count_supported_;
6546a6a7 107
8dbbc7f0
JH
108 QIcon icon_red_;
109 QIcon icon_green_;
110 QIcon icon_grey_;
111 QToolButton run_stop_button_;
87f0df9b
JH
112
113 QToolButton menu_button_;
d4984fe7
JH
114};
115
f4c92e1c 116} // namespace toolbars
51e77110
JH
117} // namespace pv
118
7c657094 119#endif // PULSEVIEW_PV_TOOLBARS_MAINBAR_H