]> sigrok.org Git - pulseview.git/blame - pv/toolbars/mainbar.hpp
Free unused segment memory after acquisition
[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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
d4984fe7
JH
18 */
19
7a01bd36
JH
20#ifndef PULSEVIEW_PV_TOOLBARS_MAINBAR_HPP
21#define PULSEVIEW_PV_TOOLBARS_MAINBAR_HPP
d4984fe7 22
dde1a563
JH
23#include <stdint.h>
24
4fe06f49 25#include <list>
f9abf97e 26#include <memory>
18203d86 27
0f8f8c18
SA
28#include <glibmm/variant.h>
29
6fb67b27 30#include <QComboBox>
dde1a563 31#include <QDoubleSpinBox>
079d39ea 32#include <QMenu>
d4984fe7 33#include <QToolBar>
dde1a563
JH
34#include <QToolButton>
35
f65cd27b 36#include <pv/session.hpp>
e0ba4f6f 37#include <pv/views/trace/standardbar.hpp>
079d39ea 38#include <pv/widgets/devicetoolbutton.hpp>
2acdb232
JH
39#include <pv/widgets/popuptoolbutton.hpp>
40#include <pv/widgets/sweeptimingwidget.hpp>
2b49eeb0 41
e8d00928 42namespace sigrok {
ed43ef2e
JH
43class Device;
44class InputFormat;
0f8f8c18 45class OutputFormat;
e8d00928
ML
46}
47
48Q_DECLARE_METATYPE(std::shared_ptr<sigrok::Device>)
49
dde1a563 50class QAction;
d4984fe7 51
51e77110 52namespace pv {
aca00b1e 53
4e7f5ba8 54class MainWindow;
2b81ae46 55class Session;
aca00b1e 56
e0ba4f6f
SA
57namespace views {
58namespace TraceView {
59class View;
60}
61}
62
f4c92e1c 63namespace toolbars {
51e77110 64
e0ba4f6f 65class MainBar : public pv::views::trace::StandardBar
d4984fe7
JH
66{
67 Q_OBJECT
68
215f9499 69private:
b50ef520
JH
70 static const uint64_t MinSampleCount;
71 static const uint64_t MaxSampleCount;
72 static const uint64_t DefaultSampleCount;
215f9499 73
0f8f8c18
SA
74 /**
75 * Name of the setting used to remember the directory
76 * containing the last file that was opened.
77 */
78 static const char *SettingOpenDirectory;
79
80 /**
81 * Name of the setting used to remember the directory
82 * containing the last file that was saved.
83 */
84 static const char *SettingSaveDirectory;
85
d4984fe7 86public:
e0ba4f6f
SA
87 MainBar(Session &session, QWidget *parent,
88 pv::views::TraceView::View *view);
6fb67b27 89
079d39ea 90 void update_device_list();
18203d86 91
2b81ae46 92 void set_capture_state(pv::Session::capture_state state);
6ac96c2e 93
7e0c99bf
SA
94 void reset_device_selector();
95
c9da5118 96 QAction* action_new_view() const;
0f8f8c18
SA
97 QAction* action_open() const;
98 QAction* action_save_as() const;
99 QAction* action_save_selection_as() const;
100 QAction* action_connect() const;
0f8f8c18 101
fd22c71c
SA
102 void session_error(const QString text, const QString info_text);
103
6fb67b27 104private:
0f8f8c18
SA
105 void run_stop();
106
0f8f8c18
SA
107 void select_init_device();
108
0f8f8c18
SA
109 void save_selection_to_file();
110
dde1a563 111 void update_sample_rate_selector();
48888313 112 void update_sample_rate_selector_value();
85756012 113 void update_sample_count_selector();
e95e8563 114 void update_device_config_widgets();
48888313 115 void commit_sample_rate();
124d97de 116 void commit_sample_count();
dde1a563 117
c9da5118 118 QAction *const action_new_view_;
0f8f8c18
SA
119 QAction *const action_open_;
120 QAction *const action_save_as_;
121 QAction *const action_save_selection_as_;
122 QAction *const action_connect_;
0f8f8c18 123
e9213170 124private Q_SLOTS:
0f8f8c18
SA
125 void show_session_error(const QString text, const QString info_text);
126
0f8f8c18
SA
127 void add_decoder(srd_decoder *decoder);
128
129 void export_file(std::shared_ptr<sigrok::OutputFormat> format,
130 bool selection_only = false);
131 void import_file(std::shared_ptr<sigrok::InputFormat> format);
132
dde1a563 133 void on_device_selected();
91f8fe8c 134 void on_device_changed();
f4ce3e77 135 void on_capture_state_changed(int state);
124d97de 136 void on_sample_count_changed();
48888313 137 void on_sample_rate_changed();
6fb67b27 138
82afd5e3
JH
139 void on_config_changed();
140
c9da5118
SA
141 void on_actionNewView_triggered();
142
0f8f8c18
SA
143 void on_actionOpen_triggered();
144 void on_actionSaveAs_triggered();
145 void on_actionSaveSelectionAs_triggered();
146
147 void on_actionConnect_triggered();
148
40065ab6 149protected:
e0ba4f6f
SA
150 void add_toolbar_widgets();
151
40065ab6
JS
152 bool eventFilter(QObject *watched, QEvent *event);
153
c9da5118 154Q_SIGNALS:
c9da5118
SA
155 void new_view(Session *session);
156
6fb67b27 157private:
e0ba4f6f 158 QToolButton *open_button_, *save_button_;
aca00b1e 159
079d39ea 160 pv::widgets::DeviceToolButton device_selector_;
51d4a9ab 161
8dbbc7f0
JH
162 pv::widgets::PopupToolButton configure_button_;
163 QAction *configure_button_action_;
b7b659aa 164
8dbbc7f0 165 pv::widgets::PopupToolButton channels_button_;
9dd88889 166 QAction *channels_button_action_;
dde1a563 167
8dbbc7f0
JH
168 pv::widgets::SweepTimingWidget sample_count_;
169 pv::widgets::SweepTimingWidget sample_rate_;
170 bool updating_sample_rate_;
171 bool updating_sample_count_;
274d4f13 172
8dbbc7f0 173 bool sample_count_supported_;
6546a6a7 174
0f8f8c18 175#ifdef ENABLE_DECODE
e0ba4f6f 176 QToolButton *add_decoder_button_;
0f8f8c18
SA
177 QMenu *const menu_decoders_add_;
178#endif
d4984fe7
JH
179};
180
f4c92e1c 181} // namespace toolbars
51e77110
JH
182} // namespace pv
183
7a01bd36 184#endif // PULSEVIEW_PV_TOOLBARS_MAINBAR_HPP