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