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