]> sigrok.org Git - pulseview.git/blame - pv/mainwindow.cpp
Add a hotkey to show/hide sampling points.
[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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
d7bed479
JH
18 */
19
269528f5 20#ifdef ENABLE_DECODE
aaabd61b 21#include <libsigrokdecode/libsigrokdecode.h>
269528f5 22#endif
30236a54 23
eb8269e3 24#include <cassert>
85843b14
JH
25#include <algorithm>
26#include <iterator>
eb8269e3
UH
27#include <cstdint>
28#include <cstdarg>
85843b14 29
7d5425ef
JH
30#include <QAction>
31#include <QApplication>
93f683ad 32#include <QCloseEvent>
0f8f8c18 33#include <QDockWidget>
f1e2d26b 34#include <QHBoxLayout>
3231fbf9 35#include <QMessageBox>
643f65f9 36#include <QSettings>
7d5425ef 37#include <QWidget>
45cb64ff 38#include <QShortcut>
2953961c 39
2acdb232 40#include "mainwindow.hpp"
107ca6d3 41
2acdb232 42#include "devicemanager.hpp"
bf9f1268 43#include "globalsettings.hpp"
d2fc6be9 44#include "util.hpp"
101e7a9b 45#include "devices/hardwaredevice.hpp"
bf9f1268 46#include "dialogs/settings.hpp"
7c657094 47#include "toolbars/mainbar.hpp"
2acdb232 48#include "view/view.hpp"
e0ba4f6f 49#include "views/trace/standardbar.hpp"
d7bed479 50
fe3a1c21 51#include <libsigrokcxx/libsigrokcxx.hpp>
e82fd481 52
101e7a9b 53using std::dynamic_pointer_cast;
819f4c25 54using std::list;
25272fee 55using std::make_shared;
6842b5fc 56using std::map;
f9abf97e 57using std::shared_ptr;
6842b5fc 58using std::string;
e8d00928 59
51e77110
JH
60namespace pv {
61
b1264f56 62namespace view {
26e3af6b 63class ViewItem;
b1264f56
JH
64}
65
0f8f8c18 66using toolbars::MainBar;
643f65f9 67
bf9f1268
SA
68using std::bind;
69using std::placeholders::_1;
70
33e1afbe
SA
71const QString MainWindow::WindowTitle = tr("PulseView");
72
107ca6d3 73MainWindow::MainWindow(DeviceManager &device_manager,
e3c79b07 74 string open_file_name, string open_file_format,
1d478458 75 QWidget *parent) :
107ca6d3 76 QMainWindow(parent),
8dbbc7f0 77 device_manager_(device_manager),
3b84fd0b 78 session_selector_(this),
3231fbf9 79 session_state_mapper_(this),
3231fbf9
SA
80 icon_red_(":/icons/status-red.svg"),
81 icon_green_(":/icons/status-green.svg"),
82 icon_grey_(":/icons/status-grey.svg")
d7bed479 83{
48257a69 84 qRegisterMetaType<util::Timestamp>("util::Timestamp");
85715407 85 qRegisterMetaType<uint64_t>("uint64_t");
48257a69 86
24c29d4f
SA
87 GlobalSettings::register_change_handler(GlobalSettings::Key_View_ColouredBG,
88 bind(&MainWindow::on_settingViewColouredBg_changed, this, _1));
89
051ba3b3
UH
90 GlobalSettings::register_change_handler(GlobalSettings::Key_View_ShowSamplingPoints,
91 bind(&MainWindow::on_settingViewShowSamplingPoints_changed, this, _1));
92
7d5425ef 93 setup_ui();
93f683ad 94 restore_ui_settings();
101e7a9b
SA
95
96 if (!open_file_name.empty()) {
97 shared_ptr<Session> session = add_session();
fd22c71c 98 session->load_init_file(open_file_name, open_file_format);
101e7a9b
SA
99 }
100
101 // Add empty default session if there aren't any sessions
102 if (sessions_.size() == 0) {
103 shared_ptr<Session> session = add_session();
104
105 map<string, string> dev_info;
106 shared_ptr<devices::HardwareDevice> other_device, demo_device;
107
108 // Use any available device that's not demo
109 for (shared_ptr<devices::HardwareDevice> dev : device_manager_.devices()) {
110 if (dev->hardware_device()->driver()->name() == "demo") {
111 demo_device = dev;
112 } else {
113 other_device = dev;
114 }
115 }
116
117 // ...and if there isn't any, just use demo then
fd22c71c 118 session->select_device(other_device ? other_device : demo_device);
101e7a9b 119 }
7d5425ef
JH
120}
121
47e9e7bb
SA
122MainWindow::~MainWindow()
123{
3b84fd0b
SA
124 while (!sessions_.empty())
125 remove_session(sessions_.front());
47e9e7bb
SA
126}
127
f4e57597 128shared_ptr<views::ViewBase> MainWindow::get_active_view() const
168bd8ac
SA
129{
130 // If there's only one view, use it...
131 if (view_docks_.size() == 1)
132 return view_docks_.begin()->second;
133
134 // ...otherwise find the dock widget the widget with focus is contained in
135 QObject *w = QApplication::focusWidget();
13e475e4 136 QDockWidget *dock = nullptr;
168bd8ac
SA
137
138 while (w) {
139 dock = qobject_cast<QDockWidget*>(w);
140 if (dock)
141 break;
142 w = w->parent();
143 }
144
145 // Get the view contained in the dock widget
146 for (auto entry : view_docks_)
cbf7b5db 147 if (entry.first == dock)
168bd8ac
SA
148 return entry.second;
149
82f8a42b 150 return nullptr;
168bd8ac
SA
151}
152
f4e57597
SA
153shared_ptr<views::ViewBase> MainWindow::add_view(const QString &title,
154 views::ViewType type, Session &session)
7cd2b5f3 155{
24c29d4f 156 GlobalSettings settings;
ddaded8b 157 shared_ptr<views::ViewBase> v;
24c29d4f 158
8d466c03 159 QMainWindow *main_window = nullptr;
3b84fd0b
SA
160 for (auto entry : session_windows_)
161 if (entry.first.get() == &session)
162 main_window = entry.second;
163
164 assert(main_window);
165
143d322d
SA
166 shared_ptr<MainBar> main_bar = session.main_bar();
167
ddaded8b
SA
168 QDockWidget* dock = new QDockWidget(title, main_window);
169 dock->setObjectName(title);
170 main_window->addDockWidget(Qt::TopDockWidgetArea, dock);
0f8f8c18 171
ddaded8b
SA
172 // Insert a QMainWindow into the dock widget to allow for a tool bar
173 QMainWindow *dock_main = new QMainWindow(dock);
174 dock_main->setWindowFlags(Qt::Widget); // Remove Qt::Window flag
7cd2b5f3 175
ddaded8b 176 if (type == views::ViewTypeTrace)
143d322d
SA
177 // This view will be the main view if there's no main bar yet
178 v = make_shared<views::TraceView::View>(session,
179 (main_bar ? false : true), dock_main);
36a8185e 180
ddaded8b
SA
181 if (!v)
182 return nullptr;
36a8185e 183
ddaded8b
SA
184 view_docks_[dock] = v;
185 session.register_view(v);
d6ab7b9a 186
ddaded8b
SA
187 dock_main->setCentralWidget(v.get());
188 dock->setWidget(dock_main);
7cd2b5f3 189
ddaded8b
SA
190 dock->setFeatures(QDockWidget::DockWidgetMovable |
191 QDockWidget::DockWidgetFloatable | QDockWidget::DockWidgetClosable);
7cd2b5f3 192
ddaded8b
SA
193 QAbstractButton *close_btn =
194 dock->findChildren<QAbstractButton*>
195 ("qt_dockwidget_closebutton").front();
c9da5118 196
ddaded8b
SA
197 connect(close_btn, SIGNAL(clicked(bool)),
198 this, SLOT(on_view_close_clicked()));
dfe1bf82 199
ddaded8b
SA
200 connect(&session, SIGNAL(trigger_event(util::Timestamp)),
201 qobject_cast<views::ViewBase*>(v.get()),
202 SLOT(trigger_event(util::Timestamp)));
d552c5c7 203
ddaded8b
SA
204 if (type == views::ViewTypeTrace) {
205 views::TraceView::View *tv =
206 qobject_cast<views::TraceView::View*>(v.get());
207
ddaded8b 208 tv->enable_coloured_bg(settings.value(GlobalSettings::Key_View_ColouredBG).toBool());
051ba3b3 209 tv->enable_show_sampling_points(settings.value(GlobalSettings::Key_View_ShowSamplingPoints).toBool());
ddaded8b 210
ddaded8b
SA
211 if (!main_bar) {
212 /* Initial view, create the main bar */
213 main_bar = make_shared<MainBar>(session, this, tv);
214 dock_main->addToolBar(main_bar.get());
215 session.set_main_bar(main_bar);
216
217 connect(main_bar.get(), SIGNAL(new_view(Session*)),
218 this, SLOT(on_new_view(Session*)));
219
220 main_bar->action_view_show_cursors()->setChecked(tv->cursors_shown());
221
222 /* For the main view we need to prevent the dock widget from
223 * closing itself when its close button is clicked. This is
224 * so we can confirm with the user first. Regular views don't
225 * need this */
226 close_btn->disconnect(SIGNAL(clicked()), dock, SLOT(close()));
227 } else {
228 /* Additional view, create a standard bar */
229 pv::views::trace::StandardBar *standard_bar =
230 new pv::views::trace::StandardBar(session, this, tv);
231 dock_main->addToolBar(standard_bar);
232
233 standard_bar->action_view_show_cursors()->setChecked(tv->cursors_shown());
a55e7918 234 }
e93f5538
JH
235 }
236
ddaded8b 237 return v;
ed43ef2e
JH
238}
239
f30eb549
SA
240void MainWindow::remove_view(shared_ptr<views::ViewBase> view)
241{
242 for (shared_ptr<Session> session : sessions_) {
243 if (!session->has_view(view))
244 continue;
245
246 // Find the dock the view is contained in and remove it
247 for (auto entry : view_docks_)
248 if (entry.second == view) {
249 // Remove the view from the session
250 session->deregister_view(view);
251
252 // Remove the view from its parent; otherwise, Qt will
253 // call deleteLater() on it, which causes a double free
254 // since the shared_ptr in view_docks_ doesn't know
255 // that Qt keeps a pointer to the view around
13e475e4 256 view->setParent(nullptr);
f30eb549
SA
257
258 // Delete the view's dock widget and all widgets inside it
259 entry.first->deleteLater();
260
261 // Remove the dock widget from the list and stop iterating
262 view_docks_.erase(entry.first);
263 break;
264 }
265 }
266}
267
101e7a9b
SA
268shared_ptr<Session> MainWindow::add_session()
269{
90d77e35 270 static int last_session_id = 1;
7b254679 271 QString name = tr("Session %1").arg(last_session_id++);
101e7a9b
SA
272
273 shared_ptr<Session> session = make_shared<Session>(device_manager_, name);
274
f4e57597
SA
275 connect(session.get(), SIGNAL(add_view(const QString&, views::ViewType, Session*)),
276 this, SLOT(on_add_view(const QString&, views::ViewType, Session*)));
33e1afbe
SA
277 connect(session.get(), SIGNAL(name_changed()),
278 this, SLOT(on_session_name_changed()));
3231fbf9
SA
279 session_state_mapper_.setMapping(session.get(), session.get());
280 connect(session.get(), SIGNAL(capture_state_changed(int)),
281 &session_state_mapper_, SLOT(map()));
3a21afa6 282
101e7a9b
SA
283 sessions_.push_back(session);
284
3b84fd0b
SA
285 QMainWindow *window = new QMainWindow();
286 window->setWindowFlags(Qt::Widget); // Remove Qt::Window flag
287 session_windows_[session] = window;
085cd160
SA
288
289 int index = session_selector_.addTab(window, name);
290 session_selector_.setCurrentIndex(index);
33bedfc1 291 last_focused_session_ = session;
3b84fd0b 292
68ad932d
SA
293 window->setDockNestingEnabled(true);
294
f4e57597
SA
295 shared_ptr<views::ViewBase> main_view =
296 add_view(name, views::ViewTypeTrace, *session);
101e7a9b
SA
297
298 return session;
299}
300
36a8185e
SA
301void MainWindow::remove_session(shared_ptr<Session> session)
302{
cc964645
SA
303 int h = new_session_button_->height();
304
f30eb549
SA
305 for (shared_ptr<views::ViewBase> view : session->views())
306 remove_view(view);
36a8185e 307
3b84fd0b
SA
308 QMainWindow *window = session_windows_.at(session);
309 session_selector_.removeTab(session_selector_.indexOf(window));
310
311 session_windows_.erase(session);
312
33bedfc1
SA
313 if (last_focused_session_ == session)
314 last_focused_session_.reset();
315
36a8185e
SA
316 sessions_.remove_if([&](shared_ptr<Session> s) {
317 return s == session; });
33e1afbe 318
cc964645
SA
319 if (sessions_.empty()) {
320 // When there are no more tabs, the height of the QTabWidget
321 // drops to zero. We must prevent this to keep the static
322 // widgets visible
323 for (QWidget *w : static_tab_widget_->findChildren<QWidget*>())
324 w->setMinimumHeight(h);
325
326 int margin = static_tab_widget_->layout()->contentsMargins().bottom();
327 static_tab_widget_->setMinimumHeight(h + 2 * margin);
328 session_selector_.setMinimumHeight(h + 2 * margin);
329
330 // Update the window title if there is no view left to
331 // generate focus change events
2ec81436 332 setWindowTitle(WindowTitle);
cc964645 333 }
36a8185e
SA
334}
335
7d5425ef
JH
336void MainWindow::setup_ui()
337{
338 setObjectName(QString::fromUtf8("MainWindow"));
339
3b84fd0b
SA
340 setCentralWidget(&session_selector_);
341
7d5425ef
JH
342 // Set the window icon
343 QIcon icon;
14f9d4a1 344 icon.addFile(QString(":/icons/sigrok-logo-notext.png"));
7d5425ef
JH
345 setWindowIcon(icon);
346
9eae6de4
PET
347 view_sticky_scrolling_shortcut_ = new QShortcut(QKeySequence(Qt::Key_S), this, SLOT(on_view_sticky_scrolling_shortcut()));
348 view_sticky_scrolling_shortcut_->setAutoRepeat(false);
ab1d13ee 349
051ba3b3
UH
350 view_show_sampling_points_shortcut_ = new QShortcut(QKeySequence(Qt::Key_Period), this, SLOT(on_view_show_sampling_points_shortcut()));
351 view_show_sampling_points_shortcut_->setAutoRepeat(false);
352
9eae6de4
PET
353 view_coloured_bg_shortcut_ = new QShortcut(QKeySequence(Qt::Key_B), this, SLOT(on_view_coloured_bg_shortcut()));
354 view_coloured_bg_shortcut_->setAutoRepeat(false);
0fb9d645 355
f1e2d26b
SA
356 // Set up the tab area
357 new_session_button_ = new QToolButton();
358 new_session_button_->setIcon(QIcon::fromTheme("document-new",
359 QIcon(":/icons/document-new.png")));
5f66b56e 360 new_session_button_->setToolTip(tr("Create New Session"));
f1e2d26b
SA
361 new_session_button_->setAutoRaise(true);
362
3231fbf9
SA
363 run_stop_button_ = new QToolButton();
364 run_stop_button_->setAutoRaise(true);
365 run_stop_button_->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
5f66b56e 366 run_stop_button_->setToolTip(tr("Start/Stop Acquisition"));
3231fbf9 367
45cb64ff
PET
368 run_stop_shortcut_ = new QShortcut(QKeySequence(Qt::Key_Space), run_stop_button_, SLOT(click()));
369 run_stop_shortcut_->setAutoRepeat(false);
370
4d1ec09a
SA
371 settings_button_ = new QToolButton();
372 settings_button_->setIcon(QIcon::fromTheme("configure",
373 QIcon(":/icons/configure.png")));
5f66b56e 374 settings_button_->setToolTip(tr("Settings"));
4d1ec09a
SA
375 settings_button_->setAutoRaise(true);
376
377 QFrame *separator1 = new QFrame();
378 separator1->setFrameStyle(QFrame::VLine | QFrame::Raised);
379 QFrame *separator2 = new QFrame();
380 separator2->setFrameStyle(QFrame::VLine | QFrame::Raised);
baa8560e 381
f1e2d26b
SA
382 QHBoxLayout* layout = new QHBoxLayout();
383 layout->setContentsMargins(2, 2, 2, 2);
384 layout->addWidget(new_session_button_);
4d1ec09a 385 layout->addWidget(separator1);
3231fbf9 386 layout->addWidget(run_stop_button_);
4d1ec09a
SA
387 layout->addWidget(separator2);
388 layout->addWidget(settings_button_);
f1e2d26b 389
cc964645 390 static_tab_widget_ = new QWidget();
f1e2d26b
SA
391 static_tab_widget_->setLayout(layout);
392
393 session_selector_.setCornerWidget(static_tab_widget_, Qt::TopLeftCorner);
4a4e20f5
SA
394 session_selector_.setTabsClosable(true);
395
763945bb
PET
396 close_application_shortcut_ = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q), this, SLOT(close()));
397 close_application_shortcut_->setAutoRepeat(false);
398
399 close_current_tab_shortcut_ = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_W), this, SLOT(on_close_current_tab()));
400
f1e2d26b
SA
401 connect(new_session_button_, SIGNAL(clicked(bool)),
402 this, SLOT(on_new_session_clicked()));
3231fbf9
SA
403 connect(run_stop_button_, SIGNAL(clicked(bool)),
404 this, SLOT(on_run_stop_clicked()));
405 connect(&session_state_mapper_, SIGNAL(mapped(QObject*)),
406 this, SLOT(on_capture_state_changed(QObject*)));
bf9f1268
SA
407 connect(settings_button_, SIGNAL(clicked(bool)),
408 this, SLOT(on_settings_clicked()));
f1e2d26b 409
4a4e20f5
SA
410 connect(&session_selector_, SIGNAL(tabCloseRequested(int)),
411 this, SLOT(on_tab_close_requested(int)));
e7aff437
SA
412 connect(&session_selector_, SIGNAL(currentChanged(int)),
413 this, SLOT(on_tab_changed(int)));
4a4e20f5 414
f1e2d26b 415
33e1afbe
SA
416 connect(static_cast<QApplication *>(QCoreApplication::instance()),
417 SIGNAL(focusChanged(QWidget*, QWidget*)),
418 this, SLOT(on_focus_changed()));
e3c79b07
JH
419}
420
93f683ad
SA
421void MainWindow::save_ui_settings()
422{
39eb0d45 423 QSettings settings;
101e7a9b 424 int id = 0;
6842b5fc 425
93f683ad
SA
426 settings.beginGroup("MainWindow");
427 settings.setValue("state", saveState());
428 settings.setValue("geometry", saveGeometry());
429 settings.endGroup();
6842b5fc 430
101e7a9b 431 for (shared_ptr<Session> session : sessions_) {
3503810c 432 // Ignore sessions using the demo device or no device at all
101e7a9b
SA
433 if (session->device()) {
434 shared_ptr<devices::HardwareDevice> device =
435 dynamic_pointer_cast< devices::HardwareDevice >
436 (session->device());
437
f2040dcb
SA
438 if (device &&
439 device->hardware_device()->driver()->name() == "demo")
101e7a9b 440 continue;
6842b5fc 441
3503810c
SA
442 settings.beginGroup("Session" + QString::number(id++));
443 settings.remove(""); // Remove all keys in this group
444 session->save_settings(settings);
445 settings.endGroup();
446 }
6842b5fc 447 }
101e7a9b
SA
448
449 settings.setValue("sessions", id);
93f683ad
SA
450}
451
452void MainWindow::restore_ui_settings()
453{
39eb0d45 454 QSettings settings;
101e7a9b 455 int i, session_count;
93f683ad
SA
456
457 settings.beginGroup("MainWindow");
458
459 if (settings.contains("geometry")) {
460 restoreGeometry(settings.value("geometry").toByteArray());
461 restoreState(settings.value("state").toByteArray());
462 } else
463 resize(1000, 720);
464
465 settings.endGroup();
101e7a9b
SA
466
467 session_count = settings.value("sessions", 0).toInt();
468
469 for (i = 0; i < session_count; i++) {
470 settings.beginGroup("Session" + QString::number(i));
471 shared_ptr<Session> session = add_session();
472 session->restore_settings(settings);
473 settings.endGroup();
474 }
93f683ad
SA
475}
476
e7aff437
SA
477std::shared_ptr<Session> MainWindow::get_tab_session(int index) const
478{
479 // Find the session that belongs to the tab's main window
480 for (auto entry : session_windows_)
481 if (entry.second == session_selector_.widget(index))
482 return entry.first;
483
484 return nullptr;
485}
486
e3c79b07
JH
487void MainWindow::closeEvent(QCloseEvent *event)
488{
5ccfc97e
SA
489 bool data_saved = true;
490
491 for (auto entry : session_windows_)
492 if (!entry.first->data_saved())
493 data_saved = false;
494
495 if (!data_saved && (QMessageBox::question(this, tr("Confirmation"),
496 tr("There is unsaved data. Close anyway?"),
497 QMessageBox::Yes | QMessageBox::No) == QMessageBox::No)) {
498 event->ignore();
499 } else {
500 save_ui_settings();
501 event->accept();
502 }
e3c79b07
JH
503}
504
d290e89f
SA
505QMenu* MainWindow::createPopupMenu()
506{
507 return nullptr;
508}
509
55547a45
SA
510bool MainWindow::restoreState(const QByteArray &state, int version)
511{
512 (void)state;
513 (void)version;
514
515 // Do nothing. We don't want Qt to handle this, or else it
516 // will try to restore all the dock widgets and create havoc.
517
518 return false;
519}
520
3231fbf9
SA
521void MainWindow::session_error(const QString text, const QString info_text)
522{
523 QMetaObject::invokeMethod(this, "show_session_error",
524 Qt::QueuedConnection, Q_ARG(QString, text),
525 Q_ARG(QString, info_text));
526}
527
528void MainWindow::show_session_error(const QString text, const QString info_text)
529{
530 QMessageBox msg(this);
531 msg.setText(text);
532 msg.setInformativeText(info_text);
533 msg.setStandardButtons(QMessageBox::Ok);
534 msg.setIcon(QMessageBox::Warning);
535 msg.exec();
536}
537
f4e57597 538void MainWindow::on_add_view(const QString &title, views::ViewType type,
3a21afa6
SA
539 Session *session)
540{
541 // We get a pointer and need a reference
542 for (std::shared_ptr<Session> s : sessions_)
543 if (s.get() == session)
544 add_view(title, type, *s);
545}
546
33e1afbe
SA
547void MainWindow::on_focus_changed()
548{
e7aff437
SA
549 shared_ptr<views::ViewBase> view = get_active_view();
550
551 if (view) {
552 for (shared_ptr<Session> session : sessions_) {
553 if (session->has_view(view)) {
33bedfc1 554 if (session != last_focused_session_) {
e7aff437
SA
555 // Activate correct tab if necessary
556 shared_ptr<Session> tab_session = get_tab_session(
557 session_selector_.currentIndex());
558 if (tab_session != session)
559 session_selector_.setCurrentWidget(
560 session_windows_.at(session));
561
562 on_focused_session_changed(session);
563 }
564
e7aff437
SA
565 break;
566 }
567 }
33e1afbe
SA
568 }
569
e7aff437 570 if (sessions_.empty())
33e1afbe
SA
571 setWindowTitle(WindowTitle);
572}
573
e7aff437
SA
574void MainWindow::on_focused_session_changed(shared_ptr<Session> session)
575{
33bedfc1
SA
576 last_focused_session_ = session;
577
e7aff437 578 setWindowTitle(session->name() + " - " + WindowTitle);
3231fbf9
SA
579
580 // Update the state of the run/stop button, too
581 on_capture_state_changed(session.get());
e7aff437
SA
582}
583
f1e2d26b 584void MainWindow::on_new_session_clicked()
c9da5118
SA
585{
586 add_session();
587}
588
3231fbf9
SA
589void MainWindow::on_run_stop_clicked()
590{
33bedfc1
SA
591 shared_ptr<Session> session = last_focused_session_;
592
593 if (!session)
594 return;
3231fbf9 595
33bedfc1 596 switch (session->get_capture_state()) {
3231fbf9 597 case Session::Stopped:
33bedfc1 598 session->start_capture([&](QString message) {
3231fbf9
SA
599 session_error("Capture failed", message); });
600 break;
601 case Session::AwaitingTrigger:
602 case Session::Running:
33bedfc1 603 session->stop_capture();
3231fbf9
SA
604 break;
605 }
606}
607
bf9f1268
SA
608void MainWindow::on_settings_clicked()
609{
4e4d72b2 610 dialogs::Settings dlg(device_manager_);
bf9f1268
SA
611 dlg.exec();
612}
613
33e1afbe
SA
614void MainWindow::on_session_name_changed()
615{
616 // Update the corresponding dock widget's name(s)
617 Session *session = qobject_cast<Session*>(QObject::sender());
618 assert(session);
619
f4e57597 620 for (shared_ptr<views::ViewBase> view : session->views()) {
33e1afbe
SA
621 // Get the dock that contains the view
622 for (auto entry : view_docks_)
623 if (entry.second == view) {
624 entry.first->setObjectName(session->name());
625 entry.first->setWindowTitle(session->name());
626 }
627 }
628
3cb15390
SA
629 // Update the tab widget by finding the main window and the tab from that
630 for (auto entry : session_windows_)
631 if (entry.first.get() == session) {
632 QMainWindow *window = entry.second;
633 const int index = session_selector_.indexOf(window);
634 session_selector_.setTabText(index, session->name());
635 }
636
33e1afbe 637 // Refresh window title if the affected session has focus
33bedfc1 638 if (session == last_focused_session_.get())
e7aff437 639 setWindowTitle(session->name() + " - " + WindowTitle);
33e1afbe
SA
640}
641
3231fbf9
SA
642void MainWindow::on_capture_state_changed(QObject *obj)
643{
644 Session *caller = qobject_cast<Session*>(obj);
645
646 // Ignore if caller is not the currently focused session
647 // unless there is only one session
33bedfc1
SA
648 if ((sessions_.size() > 1) && (caller != last_focused_session_.get()))
649 return;
3231fbf9
SA
650
651 int state = caller->get_capture_state();
652
653 const QIcon *icons[] = {&icon_grey_, &icon_red_, &icon_green_};
654 run_stop_button_->setIcon(*icons[state]);
655 run_stop_button_->setText((state == pv::Session::Stopped) ?
656 tr("Run") : tr("Stop"));
657}
658
c9da5118
SA
659void MainWindow::on_new_view(Session *session)
660{
661 // We get a pointer and need a reference
662 for (std::shared_ptr<Session> s : sessions_)
663 if (s.get() == session)
f4e57597 664 add_view(session->name(), views::ViewTypeTrace, *s);
c9da5118
SA
665}
666
36a8185e
SA
667void MainWindow::on_view_close_clicked()
668{
669 // Find the dock widget that contains the close button that was clicked
670 QObject *w = QObject::sender();
13e475e4 671 QDockWidget *dock = nullptr;
36a8185e
SA
672
673 while (w) {
674 dock = qobject_cast<QDockWidget*>(w);
675 if (dock)
676 break;
677 w = w->parent();
678 }
679
680 // Get the view contained in the dock widget
f4e57597 681 shared_ptr<views::ViewBase> view;
36a8185e
SA
682
683 for (auto entry : view_docks_)
cbf7b5db 684 if (entry.first == dock)
36a8185e
SA
685 view = entry.second;
686
687 // Deregister the view
688 for (shared_ptr<Session> session : sessions_) {
689 if (!session->has_view(view))
690 continue;
691
a2b9ac40 692 // Also destroy the entire session if its main view is closing...
36a8185e 693 if (view == session->main_view()) {
a2b9ac40
SA
694 // ...but only if data is saved or the user confirms closing
695 if (session->data_saved() || (QMessageBox::question(this, tr("Confirmation"),
696 tr("This session contains unsaved data. Close it anyway?"),
697 QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes))
698 remove_session(session);
36a8185e
SA
699 break;
700 } else
a2b9ac40 701 // All other views can be closed at any time as no data will be lost
f30eb549 702 remove_view(view);
36a8185e
SA
703 }
704}
705
e7aff437
SA
706void MainWindow::on_tab_changed(int index)
707{
708 shared_ptr<Session> session = get_tab_session(index);
709
710 if (session)
711 on_focused_session_changed(session);
712}
713
4a4e20f5
SA
714void MainWindow::on_tab_close_requested(int index)
715{
e7aff437
SA
716 shared_ptr<Session> session = get_tab_session(index);
717
5ccfc97e
SA
718 assert(session);
719
720 if (session->data_saved() || (QMessageBox::question(this, tr("Confirmation"),
721 tr("This session contains unsaved data. Close it anyway?"),
722 QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes))
e7aff437 723 remove_session(session);
4a4e20f5
SA
724}
725
9eae6de4 726void MainWindow::on_view_coloured_bg_shortcut()
0fb9d645 727{
24c29d4f
SA
728 GlobalSettings settings;
729
730 bool state = settings.value(GlobalSettings::Key_View_ColouredBG).toBool();
731 settings.setValue(GlobalSettings::Key_View_ColouredBG, !state);
732}
733
87a97d8a
SA
734void MainWindow::on_view_sticky_scrolling_shortcut()
735{
736 GlobalSettings settings;
737
738 bool state = settings.value(GlobalSettings::Key_View_StickyScrolling).toBool();
739 settings.setValue(GlobalSettings::Key_View_StickyScrolling, !state);
740}
741
051ba3b3
UH
742void MainWindow::on_view_show_sampling_points_shortcut()
743{
744 GlobalSettings settings;
745
746 bool state = settings.value(GlobalSettings::Key_View_ShowSamplingPoints).toBool();
747 settings.setValue(GlobalSettings::Key_View_ShowSamplingPoints, !state);
748}
749
24c29d4f
SA
750void MainWindow::on_settingViewColouredBg_changed(const QVariant new_value)
751{
752 bool state = new_value.toBool();
753
754 for (auto entry : view_docks_) {
755 shared_ptr<views::ViewBase> viewbase = entry.second;
756
757 // Only trace views have this setting
758 views::TraceView::View* view =
759 qobject_cast<views::TraceView::View*>(viewbase.get());
760 if (view)
761 view->enable_coloured_bg(state);
762 }
0fb9d645
SA
763}
764
051ba3b3
UH
765void MainWindow::on_settingViewShowSamplingPoints_changed(const QVariant new_value)
766{
767 bool state = new_value.toBool();
768
769 for (auto entry : view_docks_) {
770 shared_ptr<views::ViewBase> viewbase = entry.second;
771
772 // Only trace views have this setting
773 views::TraceView::View* view =
774 qobject_cast<views::TraceView::View*>(viewbase.get());
775 if (view)
776 view->enable_show_sampling_points(state);
777 }
778}
779
763945bb
PET
780void MainWindow::on_close_current_tab()
781{
782 int tab = session_selector_.currentIndex();
783
784 on_tab_close_requested(tab);
785}
786
51e77110 787} // namespace pv