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