]> sigrok.org Git - pulseview.git/blame - pv/mainwindow.cpp
SamplingBar: Surpressed a spurious update loop
[pulseview.git] / pv / mainwindow.cpp
CommitLineData
d7bed479 1/*
b3f22de0 2 * This file is part of the PulseView project.
d7bed479
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
269528f5 21#ifdef ENABLE_DECODE
aaabd61b 22#include <libsigrokdecode/libsigrokdecode.h>
269528f5 23#endif
30236a54 24
f2edb557 25#include <boost/bind.hpp>
107ca6d3 26#include <boost/foreach.hpp>
f2edb557 27
85843b14
JH
28#include <algorithm>
29#include <iterator>
30
7d5425ef
JH
31#include <QAction>
32#include <QApplication>
33#include <QButtonGroup>
2953961c 34#include <QFileDialog>
f2edb557 35#include <QMessageBox>
7d5425ef
JH
36#include <QMenu>
37#include <QMenuBar>
38#include <QStatusBar>
39#include <QVBoxLayout>
40#include <QWidget>
2953961c 41
d7bed479 42#include "mainwindow.h"
107ca6d3
JH
43
44#include "devicemanager.h"
85843b14 45#include "device/device.h"
acda14b8 46#include "dialogs/about.h"
9663c82b 47#include "dialogs/connect.h"
0fbda3c2 48#include "dialogs/storeprogress.h"
f4c92e1c 49#include "toolbars/samplingbar.h"
3045c869 50#include "view/logicsignal.h"
4104d7f3 51#include "view/view.h"
269528f5 52#ifdef ENABLE_DECODE
f0d37dab 53#include "widgets/decodermenu.h"
269528f5 54#endif
d7bed479 55
30236a54
JH
56/* __STDC_FORMAT_MACROS is required for PRIu64 and friends (in C++). */
57#define __STDC_FORMAT_MACROS
58#include <inttypes.h>
59#include <stdint.h>
60#include <stdarg.h>
61#include <glib.h>
62#include <libsigrok/libsigrok.h>
e82fd481 63
19adbc2c 64using boost::shared_ptr;
819f4c25 65using std::list;
30236a54 66
51e77110
JH
67namespace pv {
68
b1264f56
JH
69namespace view {
70class SelectableItem;
71}
72
107ca6d3
JH
73MainWindow::MainWindow(DeviceManager &device_manager,
74 const char *open_file_name,
1d478458 75 QWidget *parent) :
107ca6d3 76 QMainWindow(parent),
dc0867ff 77 _device_manager(device_manager),
f0d37dab 78 _session(device_manager)
d7bed479 79{
7d5425ef 80 setup_ui();
1d478458
JH
81 if (open_file_name) {
82 const QString s(QString::fromUtf8(open_file_name));
83 QMetaObject::invokeMethod(this, "load_file",
84 Qt::QueuedConnection,
85 Q_ARG(QString, s));
86 }
7d5425ef
JH
87}
88
89void MainWindow::setup_ui()
90{
91 setObjectName(QString::fromUtf8("MainWindow"));
92
93 resize(1024, 768);
94
95 // Set the window icon
96 QIcon icon;
97 icon.addFile(QString::fromUtf8(":/icons/sigrok-logo-notext.png"),
98 QSize(), QIcon::Normal, QIcon::Off);
99 setWindowIcon(icon);
100
e072efc8
JH
101 // Setup the central widget
102 _central_widget = new QWidget(this);
103 _vertical_layout = new QVBoxLayout(_central_widget);
104 _vertical_layout->setSpacing(6);
105 _vertical_layout->setContentsMargins(0, 0, 0, 0);
106 setCentralWidget(_central_widget);
107
108 _view = new pv::view::View(_session, this);
b1264f56 109
e072efc8
JH
110 _vertical_layout->addWidget(_view);
111
ab1d13ee 112 // Setup the menu bar
ced1cc13
JH
113 QMenuBar *const menu_bar = new QMenuBar(this);
114 menu_bar->setGeometry(QRect(0, 0, 400, 25));
a429590b 115
ab1d13ee 116 // File Menu
ced1cc13
JH
117 QMenu *const menu_file = new QMenu;
118 menu_file->setTitle(QApplication::translate(
ab1d13ee 119 "MainWindow", "&File", 0, QApplication::UnicodeUTF8));
e072efc8 120
ced1cc13
JH
121 QAction *const action_open = new QAction(this);
122 action_open->setText(QApplication::translate(
ab1d13ee 123 "MainWindow", "&Open...", 0, QApplication::UnicodeUTF8));
ced1cc13 124 action_open->setIcon(QIcon::fromTheme("document-open",
362eea96 125 QIcon(":/icons/document-open.png")));
ced1cc13
JH
126 action_open->setObjectName(QString::fromUtf8("actionOpen"));
127 menu_file->addAction(action_open);
009e1503 128
0fbda3c2
JH
129 QAction *const action_save_as = new QAction(this);
130 action_save_as->setText(QApplication::translate(
131 "MainWindow", "&Save As...", 0, QApplication::UnicodeUTF8));
132 action_save_as->setIcon(QIcon::fromTheme("document-save-as",
133 QIcon(":/icons/document-save-as.png")));
134 action_save_as->setObjectName(QString::fromUtf8("actionSaveAs"));
135 menu_file->addAction(action_save_as);
136
ced1cc13 137 menu_file->addSeparator();
2a032dcb 138
ced1cc13
JH
139 QAction *const action_connect = new QAction(this);
140 action_connect->setText(QApplication::translate(
9663c82b
JH
141 "MainWindow", "&Connect to Device...", 0,
142 QApplication::UnicodeUTF8));
ced1cc13
JH
143 action_connect->setObjectName(QString::fromUtf8("actionConnect"));
144 menu_file->addAction(action_connect);
9663c82b 145
ced1cc13 146 menu_file->addSeparator();
9663c82b 147
ced1cc13
JH
148 QAction *action_quit = new QAction(this);
149 action_quit->setText(QApplication::translate(
2a032dcb 150 "MainWindow", "&Quit", 0, QApplication::UnicodeUTF8));
ced1cc13 151 action_quit->setIcon(QIcon::fromTheme("application-exit",
2a032dcb 152 QIcon(":/icons/application-exit.png")));
ced1cc13
JH
153 action_quit->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q));
154 action_quit->setObjectName(QString::fromUtf8("actionQuit"));
155 menu_file->addAction(action_quit);
2a032dcb 156
ab1d13ee 157 // View Menu
ced1cc13
JH
158 QMenu *menu_view = new QMenu;
159 menu_view->setTitle(QApplication::translate(
ab1d13ee
JH
160 "MainWindow", "&View", 0, QApplication::UnicodeUTF8));
161
ced1cc13
JH
162 QAction *const action_view_zoom_in = new QAction(this);
163 action_view_zoom_in->setText(QApplication::translate(
ab1d13ee 164 "MainWindow", "Zoom &In", 0, QApplication::UnicodeUTF8));
ced1cc13 165 action_view_zoom_in->setIcon(QIcon::fromTheme("zoom-in",
ab1d13ee 166 QIcon(":/icons/zoom-in.png")));
d2899ad5 167 // simply using Qt::Key_Plus shows no + in the menu
168 action_view_zoom_in->setShortcut(QKeySequence::ZoomIn);
ced1cc13 169 action_view_zoom_in->setObjectName(
ab1d13ee 170 QString::fromUtf8("actionViewZoomIn"));
ced1cc13 171 menu_view->addAction(action_view_zoom_in);
ab1d13ee 172
ced1cc13
JH
173 QAction *const action_view_zoom_out = new QAction(this);
174 action_view_zoom_out->setText(QApplication::translate(
ab1d13ee 175 "MainWindow", "Zoom &Out", 0, QApplication::UnicodeUTF8));
ced1cc13 176 action_view_zoom_out->setIcon(QIcon::fromTheme("zoom-out",
ab1d13ee 177 QIcon(":/icons/zoom-out.png")));
d2899ad5 178 action_view_zoom_out->setShortcut(QKeySequence::ZoomOut);
ced1cc13 179 action_view_zoom_out->setObjectName(
ab1d13ee 180 QString::fromUtf8("actionViewZoomOut"));
ced1cc13 181 menu_view->addAction(action_view_zoom_out);
ab1d13ee 182
ca46b534
JH
183 QAction *const action_view_zoom_fit = new QAction(this);
184 action_view_zoom_fit->setText(QApplication::translate(
185 "MainWindow", "Zoom to &Fit", 0, QApplication::UnicodeUTF8));
186 action_view_zoom_fit->setIcon(QIcon::fromTheme("zoom-fit",
187 QIcon(":/icons/zoom-fit.png")));
188 action_view_zoom_fit->setShortcut(QKeySequence(Qt::Key_F));
189 action_view_zoom_fit->setObjectName(
190 QString::fromUtf8("actionViewZoomFit"));
191 menu_view->addAction(action_view_zoom_fit);
192
d1e7d82c
JH
193 QAction *const action_view_zoom_one_to_one = new QAction(this);
194 action_view_zoom_one_to_one->setText(QApplication::translate(
195 "MainWindow", "Zoom to &One-to-One", 0,
196 QApplication::UnicodeUTF8));
197 action_view_zoom_one_to_one->setIcon(QIcon::fromTheme("zoom-original",
198 QIcon(":/icons/zoom-original.png")));
199 action_view_zoom_one_to_one->setShortcut(QKeySequence(Qt::Key_O));
200 action_view_zoom_one_to_one->setObjectName(
201 QString::fromUtf8("actionViewZoomOneToOne"));
202 menu_view->addAction(action_view_zoom_one_to_one);
203
ced1cc13 204 menu_view->addSeparator();
ab1d13ee 205
ced1cc13
JH
206 QAction *action_view_show_cursors = new QAction(this);
207 action_view_show_cursors->setCheckable(true);
208 action_view_show_cursors->setChecked(_view->cursors_shown());
209 action_view_show_cursors->setShortcut(QKeySequence(Qt::Key_C));
210 action_view_show_cursors->setObjectName(
ab1d13ee 211 QString::fromUtf8("actionViewShowCursors"));
ced1cc13 212 action_view_show_cursors->setText(QApplication::translate(
ab1d13ee 213 "MainWindow", "Show &Cursors", 0, QApplication::UnicodeUTF8));
ced1cc13 214 menu_view->addAction(action_view_show_cursors);
a429590b 215
7dd093df 216 // Decoders Menu
269528f5 217#ifdef ENABLE_DECODE
ced1cc13
JH
218 QMenu *const menu_decoders = new QMenu;
219 menu_decoders->setTitle(QApplication::translate(
7dd093df
JH
220 "MainWindow", "&Decoders", 0, QApplication::UnicodeUTF8));
221
ced1cc13
JH
222 pv::widgets::DecoderMenu *const menu_decoders_add =
223 new pv::widgets::DecoderMenu(menu_decoders);
224 menu_decoders_add->setTitle(QApplication::translate(
7dd093df 225 "MainWindow", "&Add", 0, QApplication::UnicodeUTF8));
ced1cc13 226 connect(menu_decoders_add, SIGNAL(decoder_selected(srd_decoder*)),
f0d37dab 227 this, SLOT(add_decoder(srd_decoder*)));
7dd093df 228
ced1cc13 229 menu_decoders->addMenu(menu_decoders_add);
269528f5 230#endif
7dd093df 231
ab1d13ee 232 // Help Menu
ced1cc13
JH
233 QMenu *const menu_help = new QMenu;
234 menu_help->setTitle(QApplication::translate(
ab1d13ee
JH
235 "MainWindow", "&Help", 0, QApplication::UnicodeUTF8));
236
ced1cc13
JH
237 QAction *const action_about = new QAction(this);
238 action_about->setObjectName(QString::fromUtf8("actionAbout"));
239 action_about->setText(QApplication::translate(
ab1d13ee 240 "MainWindow", "&About...", 0, QApplication::UnicodeUTF8));
ced1cc13 241 menu_help->addAction(action_about);
7d5425ef 242
ced1cc13
JH
243 menu_bar->addAction(menu_file->menuAction());
244 menu_bar->addAction(menu_view->menuAction());
269528f5 245#ifdef ENABLE_DECODE
ced1cc13 246 menu_bar->addAction(menu_decoders->menuAction());
269528f5 247#endif
ced1cc13 248 menu_bar->addAction(menu_help->menuAction());
7d5425ef 249
ced1cc13 250 setMenuBar(menu_bar);
7d5425ef
JH
251 QMetaObject::connectSlotsByName(this);
252
5ac961e3 253 // Setup the toolbar
ced1cc13
JH
254 QToolBar *const toolbar = new QToolBar(tr("Main Toolbar"), this);
255 toolbar->addAction(action_open);
256 toolbar->addSeparator();
257 toolbar->addAction(action_view_zoom_in);
258 toolbar->addAction(action_view_zoom_out);
ca46b534 259 toolbar->addAction(action_view_zoom_fit);
ced1cc13 260 addToolBar(toolbar);
0a4db787 261
5ac961e3 262 // Setup the sampling bar
aca00b1e 263 _sampling_bar = new toolbars::SamplingBar(_session, this);
5ac961e3
JH
264
265 // Populate the device list and select the initially selected device
107ca6d3 266 update_device_list();
5ac961e3 267
274d4f13
JH
268 connect(_sampling_bar, SIGNAL(run_stop()), this,
269 SLOT(run_stop()));
d4984fe7
JH
270 addToolBar(_sampling_bar);
271
5ac961e3 272 // Set the title
a8d3fb2d
JH
273 setWindowTitle(QApplication::translate("MainWindow", "PulseView", 0,
274 QApplication::UnicodeUTF8));
275
6ac96c2e
JH
276 // Setup _session events
277 connect(&_session, SIGNAL(capture_state_changed(int)), this,
278 SLOT(capture_state_changed(int)));
279
d7bed479 280}
30236a54 281
f2edb557
JH
282void MainWindow::session_error(
283 const QString text, const QString info_text)
284{
285 QMetaObject::invokeMethod(this, "show_session_error",
286 Qt::QueuedConnection, Q_ARG(QString, text),
287 Q_ARG(QString, info_text));
288}
289
d873f4d6 290void MainWindow::update_device_list()
107ca6d3
JH
291{
292 assert(_sampling_bar);
293
d873f4d6 294 shared_ptr<pv::device::DevInst> selected_device = _session.get_device();
85843b14
JH
295 list< shared_ptr<device::DevInst> > devices;
296 std::copy(_device_manager.devices().begin(),
297 _device_manager.devices().end(), std::back_inserter(devices));
298
107ca6d3
JH
299 _sampling_bar->set_device_list(devices);
300
d873f4d6 301 if (selected_device)
107ca6d3 302 _sampling_bar->set_selected_device(selected_device);
107ca6d3
JH
303}
304
1d478458
JH
305void MainWindow::load_file(QString file_name)
306{
f2edb557
JH
307 const QString errorMessage(
308 QString("Failed to load file %1").arg(file_name));
309 const QString infoMessage;
ae2d1bc5
JH
310
311 try {
312 _session.set_file(file_name.toStdString());
313 } catch(QString e) {
314 show_session_error(tr("Failed to load ") + file_name, e);
315 }
316
317 _session.start_capture(boost::bind(&MainWindow::session_error, this,
318 errorMessage, infoMessage));
f2edb557
JH
319}
320
321void MainWindow::show_session_error(
322 const QString text, const QString info_text)
323{
324 QMessageBox msg(this);
325 msg.setText(text);
326 msg.setInformativeText(info_text);
327 msg.setStandardButtons(QMessageBox::Ok);
328 msg.setIcon(QMessageBox::Warning);
329 msg.exec();
1d478458
JH
330}
331
2953961c
JH
332void MainWindow::on_actionOpen_triggered()
333{
1d43d767 334 // Show the dialog
1d478458 335 const QString file_name = QFileDialog::getOpenFileName(
6866d5de
JH
336 this, tr("Open File"), "", tr(
337 "Sigrok Sessions (*.sr);;"
338 "All Files (*.*)"));
92b139d0
JH
339 if (!file_name.isEmpty())
340 load_file(file_name);
2953961c
JH
341}
342
0fbda3c2
JH
343void MainWindow::on_actionSaveAs_triggered()
344{
345 using pv::dialogs::StoreProgress;
346
347 // Stop any currently running capture session
348 _session.stop_capture();
349
350 // Show the dialog
351 const QString file_name = QFileDialog::getSaveFileName(
352 this, tr("Save File"), "", tr("Sigrok Sessions (*.sr)"));
353
354 if (file_name.isEmpty())
355 return;
356
357 StoreProgress *dlg = new StoreProgress(file_name, _session, this);
358 dlg->run();
359}
360
9663c82b
JH
361void MainWindow::on_actionConnect_triggered()
362{
b99cfc42
JH
363 // Stop any currently running capture session
364 _session.stop_capture();
365
107ca6d3 366 dialogs::Connect dlg(this, _device_manager);
5eb0fa13 367
dc0867ff
JH
368 // If the user selected a device, select it in the device list. Select the
369 // current device otherwise.
d873f4d6
JH
370 if (dlg.exec())
371 _session.set_device(dlg.get_selected_device());
dc0867ff 372
d873f4d6 373 update_device_list();
9663c82b
JH
374}
375
2a032dcb
JH
376void MainWindow::on_actionQuit_triggered()
377{
378 close();
379}
380
a429590b
JH
381void MainWindow::on_actionViewZoomIn_triggered()
382{
383 _view->zoom(1);
384}
385
386void MainWindow::on_actionViewZoomOut_triggered()
387{
388 _view->zoom(-1);
389}
390
ca46b534
JH
391void MainWindow::on_actionViewZoomFit_triggered()
392{
393 _view->zoom_fit();
394}
395
d1e7d82c
JH
396void MainWindow::on_actionViewZoomOneToOne_triggered()
397{
398 _view->zoom_one_to_one();
399}
400
e072efc8
JH
401void MainWindow::on_actionViewShowCursors_triggered()
402{
403 assert(_view);
b4d91e56
JH
404
405 const bool show = !_view->cursors_shown();
406 if(show)
407 _view->centre_cursors();
408
409 _view->show_cursors(show);
e072efc8
JH
410}
411
30236a54
JH
412void MainWindow::on_actionAbout_triggered()
413{
acda14b8 414 dialogs::About dlg(this);
40eb2ff4 415 dlg.exec();
30236a54 416}
274d4f13 417
f0d37dab 418void MainWindow::add_decoder(srd_decoder *decoder)
7dd093df 419{
269528f5 420#ifdef ENABLE_DECODE
f0d37dab
JH
421 assert(decoder);
422 _session.add_decoder(decoder);
269528f5
JH
423#else
424 (void)decoder;
425#endif
7dd093df
JH
426}
427
274d4f13
JH
428void MainWindow::run_stop()
429{
5b7cf66c
JH
430 switch(_session.get_capture_state()) {
431 case SigSession::Stopped:
d99dc9f2
ML
432 _session.start_capture(
433 boost::bind(&MainWindow::session_error, this,
f2edb557 434 QString("Capture failed"), _1));
5b7cf66c
JH
435 break;
436
2b49eeb0 437 case SigSession::AwaitingTrigger:
5b7cf66c
JH
438 case SigSession::Running:
439 _session.stop_capture();
440 break;
441 }
274d4f13 442}
51e77110 443
6ac96c2e
JH
444void MainWindow::capture_state_changed(int state)
445{
2b49eeb0 446 _sampling_bar->set_capture_state((pv::SigSession::capture_state)state);
6ac96c2e
JH
447}
448
51e77110 449} // namespace pv