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