]> sigrok.org Git - pulseview.git/blame - pv/mainwindow.cpp
TraceView: Restore vertical offset
[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
943edd76
MC
20#include <cassert>
21
269528f5 22#ifdef ENABLE_DECODE
aaabd61b 23#include <libsigrokdecode/libsigrokdecode.h>
269528f5 24#endif
30236a54 25
85843b14
JH
26#include <algorithm>
27#include <iterator>
28
7d5425ef
JH
29#include <QAction>
30#include <QApplication>
93f683ad 31#include <QCloseEvent>
0f8f8c18 32#include <QDockWidget>
f1e2d26b 33#include <QHBoxLayout>
3231fbf9 34#include <QMessageBox>
643f65f9 35#include <QSettings>
7d5425ef 36#include <QWidget>
2953961c 37
2acdb232 38#include "mainwindow.hpp"
107ca6d3 39
2acdb232 40#include "devicemanager.hpp"
d2fc6be9 41#include "util.hpp"
101e7a9b 42#include "devices/hardwaredevice.hpp"
2acdb232 43#include "dialogs/about.hpp"
7c657094 44#include "toolbars/mainbar.hpp"
2acdb232 45#include "view/view.hpp"
e0ba4f6f 46#include "views/trace/standardbar.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{
8d466c03 163 QMainWindow *main_window = nullptr;
3b84fd0b
SA
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) {
e0ba4f6f
SA
207 /* Initial view, create the main bar */
208 main_bar = make_shared<MainBar>(session, this, v.get());
0f8f8c18
SA
209 dock_main->addToolBar(main_bar.get());
210 session.set_main_bar(main_bar);
c9da5118 211
c9da5118
SA
212 connect(main_bar.get(), SIGNAL(new_view(Session*)),
213 this, SLOT(on_new_view(Session*)));
dfe1bf82
SA
214
215 main_bar->action_view_show_cursors()->setChecked(v->cursors_shown());
e0ba4f6f
SA
216 } else {
217 /* Additional view, create a standard bar */
dfe1bf82
SA
218 pv::views::trace::StandardBar *standard_bar =
219 new pv::views::trace::StandardBar(session, this, v.get());
220 dock_main->addToolBar(standard_bar);
d552c5c7 221
dfe1bf82
SA
222 standard_bar->action_view_show_cursors()->setChecked(v->cursors_shown());
223 }
a55e7918 224 }
f4e57597
SA
225
226 return v;
e93f5538
JH
227 }
228
f4e57597 229 return nullptr;
ed43ef2e
JH
230}
231
101e7a9b
SA
232shared_ptr<Session> MainWindow::add_session()
233{
90d77e35
SA
234 static int last_session_id = 1;
235 QString name = tr("Untitled-%1").arg(last_session_id++);
101e7a9b
SA
236
237 shared_ptr<Session> session = make_shared<Session>(device_manager_, name);
238
f4e57597
SA
239 connect(session.get(), SIGNAL(add_view(const QString&, views::ViewType, Session*)),
240 this, SLOT(on_add_view(const QString&, views::ViewType, Session*)));
33e1afbe
SA
241 connect(session.get(), SIGNAL(name_changed()),
242 this, SLOT(on_session_name_changed()));
3231fbf9
SA
243 session_state_mapper_.setMapping(session.get(), session.get());
244 connect(session.get(), SIGNAL(capture_state_changed(int)),
245 &session_state_mapper_, SLOT(map()));
3a21afa6 246
101e7a9b
SA
247 sessions_.push_back(session);
248
3b84fd0b
SA
249 QMainWindow *window = new QMainWindow();
250 window->setWindowFlags(Qt::Widget); // Remove Qt::Window flag
251 session_windows_[session] = window;
085cd160
SA
252
253 int index = session_selector_.addTab(window, name);
254 session_selector_.setCurrentIndex(index);
33bedfc1 255 last_focused_session_ = session;
3b84fd0b 256
68ad932d
SA
257 window->setDockNestingEnabled(true);
258
f4e57597
SA
259 shared_ptr<views::ViewBase> main_view =
260 add_view(name, views::ViewTypeTrace, *session);
101e7a9b
SA
261
262 return session;
263}
264
36a8185e
SA
265void MainWindow::remove_session(shared_ptr<Session> session)
266{
cc964645
SA
267 int h = new_session_button_->height();
268
f4e57597 269 for (shared_ptr<views::ViewBase> view : session->views()) {
3b84fd0b 270 // Find the dock the view is contained in and remove it
36a8185e 271 for (auto entry : view_docks_)
3b84fd0b
SA
272 if (entry.second == view) {
273 // Remove the view from the session
274 session->deregister_view(view);
275
276 // Remove the view from its parent; otherwise, Qt will
277 // call deleteLater() on it, which causes a double free
278 // since the shared_ptr in view_docks_ doesn't know
279 // that Qt keeps a pointer to the view around
280 entry.second->setParent(0);
281
f4203850 282 // Remove this entry from the container and stop iterating.
3b84fd0b 283 view_docks_.erase(entry.first);
f4203850 284 break;
3b84fd0b 285 }
36a8185e
SA
286 }
287
3b84fd0b
SA
288 QMainWindow *window = session_windows_.at(session);
289 session_selector_.removeTab(session_selector_.indexOf(window));
290
291 session_windows_.erase(session);
292
33bedfc1
SA
293 if (last_focused_session_ == session)
294 last_focused_session_.reset();
295
36a8185e
SA
296 sessions_.remove_if([&](shared_ptr<Session> s) {
297 return s == session; });
33e1afbe 298
cc964645
SA
299 if (sessions_.empty()) {
300 // When there are no more tabs, the height of the QTabWidget
301 // drops to zero. We must prevent this to keep the static
302 // widgets visible
303 for (QWidget *w : static_tab_widget_->findChildren<QWidget*>())
304 w->setMinimumHeight(h);
305
306 int margin = static_tab_widget_->layout()->contentsMargins().bottom();
307 static_tab_widget_->setMinimumHeight(h + 2 * margin);
308 session_selector_.setMinimumHeight(h + 2 * margin);
309
310 // Update the window title if there is no view left to
311 // generate focus change events
2ec81436 312 setWindowTitle(WindowTitle);
cc964645 313 }
36a8185e
SA
314}
315
7d5425ef
JH
316void MainWindow::setup_ui()
317{
318 setObjectName(QString::fromUtf8("MainWindow"));
319
3b84fd0b
SA
320 setCentralWidget(&session_selector_);
321
7d5425ef
JH
322 // Set the window icon
323 QIcon icon;
14f9d4a1 324 icon.addFile(QString(":/icons/sigrok-logo-notext.png"));
7d5425ef
JH
325 setWindowIcon(icon);
326
c7b03d9d
SA
327 action_view_sticky_scrolling_->setCheckable(true);
328 action_view_sticky_scrolling_->setChecked(true);
69282fae 329 action_view_sticky_scrolling_->setShortcut(QKeySequence(Qt::Key_S));
c7b03d9d
SA
330 action_view_sticky_scrolling_->setObjectName(
331 QString::fromUtf8("actionViewStickyScrolling"));
69282fae 332 action_view_sticky_scrolling_->setText(tr("&Sticky Scrolling"));
ab1d13ee 333
0fb9d645
SA
334 action_view_coloured_bg_->setCheckable(true);
335 action_view_coloured_bg_->setChecked(true);
574c568d 336 action_view_coloured_bg_->setShortcut(QKeySequence(Qt::Key_B));
0fb9d645
SA
337 action_view_coloured_bg_->setObjectName(
338 QString::fromUtf8("actionViewColouredBg"));
5f66b56e 339 action_view_coloured_bg_->setText(tr("Use &Coloured Backgrounds"));
0fb9d645 340
69654681 341 action_about_->setObjectName(QString::fromUtf8("actionAbout"));
5f66b56e 342 action_about_->setToolTip(tr("&About..."));
7d5425ef 343
f1e2d26b
SA
344 // Set up the tab area
345 new_session_button_ = new QToolButton();
346 new_session_button_->setIcon(QIcon::fromTheme("document-new",
347 QIcon(":/icons/document-new.png")));
5f66b56e 348 new_session_button_->setToolTip(tr("Create New Session"));
f1e2d26b
SA
349 new_session_button_->setAutoRaise(true);
350
3231fbf9
SA
351 run_stop_button_ = new QToolButton();
352 run_stop_button_->setAutoRaise(true);
353 run_stop_button_->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
354 run_stop_button_->setShortcut(QKeySequence(Qt::Key_Space));
5f66b56e 355 run_stop_button_->setToolTip(tr("Start/Stop Acquisition"));
3231fbf9 356
4d1ec09a
SA
357 settings_button_ = new QToolButton();
358 settings_button_->setIcon(QIcon::fromTheme("configure",
359 QIcon(":/icons/configure.png")));
5f66b56e 360 settings_button_->setToolTip(tr("Settings"));
4d1ec09a
SA
361 settings_button_->setAutoRaise(true);
362
363 QFrame *separator1 = new QFrame();
364 separator1->setFrameStyle(QFrame::VLine | QFrame::Raised);
365 QFrame *separator2 = new QFrame();
366 separator2->setFrameStyle(QFrame::VLine | QFrame::Raised);
baa8560e 367
f1e2d26b
SA
368 QHBoxLayout* layout = new QHBoxLayout();
369 layout->setContentsMargins(2, 2, 2, 2);
370 layout->addWidget(new_session_button_);
4d1ec09a 371 layout->addWidget(separator1);
3231fbf9 372 layout->addWidget(run_stop_button_);
4d1ec09a
SA
373 layout->addWidget(separator2);
374 layout->addWidget(settings_button_);
f1e2d26b 375
cc964645 376 static_tab_widget_ = new QWidget();
f1e2d26b
SA
377 static_tab_widget_->setLayout(layout);
378
379 session_selector_.setCornerWidget(static_tab_widget_, Qt::TopLeftCorner);
4a4e20f5
SA
380 session_selector_.setTabsClosable(true);
381
f1e2d26b
SA
382 connect(new_session_button_, SIGNAL(clicked(bool)),
383 this, SLOT(on_new_session_clicked()));
3231fbf9
SA
384 connect(run_stop_button_, SIGNAL(clicked(bool)),
385 this, SLOT(on_run_stop_clicked()));
386 connect(&session_state_mapper_, SIGNAL(mapped(QObject*)),
387 this, SLOT(on_capture_state_changed(QObject*)));
f1e2d26b 388
4a4e20f5
SA
389 connect(&session_selector_, SIGNAL(tabCloseRequested(int)),
390 this, SLOT(on_tab_close_requested(int)));
e7aff437
SA
391 connect(&session_selector_, SIGNAL(currentChanged(int)),
392 this, SLOT(on_tab_changed(int)));
4a4e20f5 393
f1e2d26b 394
33e1afbe
SA
395 connect(static_cast<QApplication *>(QCoreApplication::instance()),
396 SIGNAL(focusChanged(QWidget*, QWidget*)),
397 this, SLOT(on_focus_changed()));
e3c79b07
JH
398}
399
93f683ad
SA
400void MainWindow::save_ui_settings()
401{
39eb0d45 402 QSettings settings;
101e7a9b 403 int id = 0;
6842b5fc 404
93f683ad
SA
405 settings.beginGroup("MainWindow");
406 settings.setValue("state", saveState());
407 settings.setValue("geometry", saveGeometry());
408 settings.endGroup();
6842b5fc 409
101e7a9b 410 for (shared_ptr<Session> session : sessions_) {
3503810c 411 // Ignore sessions using the demo device or no device at all
101e7a9b
SA
412 if (session->device()) {
413 shared_ptr<devices::HardwareDevice> device =
414 dynamic_pointer_cast< devices::HardwareDevice >
415 (session->device());
416
f2040dcb
SA
417 if (device &&
418 device->hardware_device()->driver()->name() == "demo")
101e7a9b 419 continue;
6842b5fc 420
3503810c
SA
421 settings.beginGroup("Session" + QString::number(id++));
422 settings.remove(""); // Remove all keys in this group
423 session->save_settings(settings);
424 settings.endGroup();
425 }
6842b5fc 426 }
101e7a9b
SA
427
428 settings.setValue("sessions", id);
93f683ad
SA
429}
430
431void MainWindow::restore_ui_settings()
432{
39eb0d45 433 QSettings settings;
101e7a9b 434 int i, session_count;
93f683ad
SA
435
436 settings.beginGroup("MainWindow");
437
438 if (settings.contains("geometry")) {
439 restoreGeometry(settings.value("geometry").toByteArray());
440 restoreState(settings.value("state").toByteArray());
441 } else
442 resize(1000, 720);
443
444 settings.endGroup();
101e7a9b
SA
445
446 session_count = settings.value("sessions", 0).toInt();
447
448 for (i = 0; i < session_count; i++) {
449 settings.beginGroup("Session" + QString::number(i));
450 shared_ptr<Session> session = add_session();
451 session->restore_settings(settings);
452 settings.endGroup();
453 }
93f683ad
SA
454}
455
e7aff437
SA
456std::shared_ptr<Session> MainWindow::get_tab_session(int index) const
457{
458 // Find the session that belongs to the tab's main window
459 for (auto entry : session_windows_)
460 if (entry.second == session_selector_.widget(index))
461 return entry.first;
462
463 return nullptr;
464}
465
e3c79b07
JH
466void MainWindow::closeEvent(QCloseEvent *event)
467{
468 save_ui_settings();
469 event->accept();
470}
471
d290e89f
SA
472QMenu* MainWindow::createPopupMenu()
473{
474 return nullptr;
475}
476
55547a45
SA
477bool MainWindow::restoreState(const QByteArray &state, int version)
478{
479 (void)state;
480 (void)version;
481
482 // Do nothing. We don't want Qt to handle this, or else it
483 // will try to restore all the dock widgets and create havoc.
484
485 return false;
486}
487
3231fbf9
SA
488void MainWindow::session_error(const QString text, const QString info_text)
489{
490 QMetaObject::invokeMethod(this, "show_session_error",
491 Qt::QueuedConnection, Q_ARG(QString, text),
492 Q_ARG(QString, info_text));
493}
494
495void MainWindow::show_session_error(const QString text, const QString info_text)
496{
497 QMessageBox msg(this);
498 msg.setText(text);
499 msg.setInformativeText(info_text);
500 msg.setStandardButtons(QMessageBox::Ok);
501 msg.setIcon(QMessageBox::Warning);
502 msg.exec();
503}
504
f4e57597 505void MainWindow::on_add_view(const QString &title, views::ViewType type,
3a21afa6
SA
506 Session *session)
507{
508 // We get a pointer and need a reference
509 for (std::shared_ptr<Session> s : sessions_)
510 if (s.get() == session)
511 add_view(title, type, *s);
512}
513
33e1afbe
SA
514void MainWindow::on_focus_changed()
515{
e7aff437
SA
516 shared_ptr<views::ViewBase> view = get_active_view();
517
518 if (view) {
519 for (shared_ptr<Session> session : sessions_) {
520 if (session->has_view(view)) {
33bedfc1 521 if (session != last_focused_session_) {
e7aff437
SA
522 // Activate correct tab if necessary
523 shared_ptr<Session> tab_session = get_tab_session(
524 session_selector_.currentIndex());
525 if (tab_session != session)
526 session_selector_.setCurrentWidget(
527 session_windows_.at(session));
528
529 on_focused_session_changed(session);
530 }
531
e7aff437
SA
532 break;
533 }
534 }
33e1afbe
SA
535 }
536
e7aff437 537 if (sessions_.empty())
33e1afbe
SA
538 setWindowTitle(WindowTitle);
539}
540
e7aff437
SA
541void MainWindow::on_focused_session_changed(shared_ptr<Session> session)
542{
33bedfc1
SA
543 last_focused_session_ = session;
544
e7aff437 545 setWindowTitle(session->name() + " - " + WindowTitle);
3231fbf9
SA
546
547 // Update the state of the run/stop button, too
548 on_capture_state_changed(session.get());
e7aff437
SA
549}
550
f1e2d26b 551void MainWindow::on_new_session_clicked()
c9da5118
SA
552{
553 add_session();
554}
555
3231fbf9
SA
556void MainWindow::on_run_stop_clicked()
557{
33bedfc1
SA
558 shared_ptr<Session> session = last_focused_session_;
559
560 if (!session)
561 return;
3231fbf9 562
33bedfc1 563 switch (session->get_capture_state()) {
3231fbf9 564 case Session::Stopped:
33bedfc1 565 session->start_capture([&](QString message) {
3231fbf9
SA
566 session_error("Capture failed", message); });
567 break;
568 case Session::AwaitingTrigger:
569 case Session::Running:
33bedfc1 570 session->stop_capture();
3231fbf9
SA
571 break;
572 }
573}
574
33e1afbe
SA
575void MainWindow::on_session_name_changed()
576{
577 // Update the corresponding dock widget's name(s)
578 Session *session = qobject_cast<Session*>(QObject::sender());
579 assert(session);
580
f4e57597 581 for (shared_ptr<views::ViewBase> view : session->views()) {
33e1afbe
SA
582 // Get the dock that contains the view
583 for (auto entry : view_docks_)
584 if (entry.second == view) {
585 entry.first->setObjectName(session->name());
586 entry.first->setWindowTitle(session->name());
587 }
588 }
589
3cb15390
SA
590 // Update the tab widget by finding the main window and the tab from that
591 for (auto entry : session_windows_)
592 if (entry.first.get() == session) {
593 QMainWindow *window = entry.second;
594 const int index = session_selector_.indexOf(window);
595 session_selector_.setTabText(index, session->name());
596 }
597
33e1afbe 598 // Refresh window title if the affected session has focus
33bedfc1 599 if (session == last_focused_session_.get())
e7aff437 600 setWindowTitle(session->name() + " - " + WindowTitle);
33e1afbe
SA
601}
602
3231fbf9
SA
603void MainWindow::on_capture_state_changed(QObject *obj)
604{
605 Session *caller = qobject_cast<Session*>(obj);
606
607 // Ignore if caller is not the currently focused session
608 // unless there is only one session
33bedfc1
SA
609 if ((sessions_.size() > 1) && (caller != last_focused_session_.get()))
610 return;
3231fbf9
SA
611
612 int state = caller->get_capture_state();
613
614 const QIcon *icons[] = {&icon_grey_, &icon_red_, &icon_green_};
615 run_stop_button_->setIcon(*icons[state]);
616 run_stop_button_->setText((state == pv::Session::Stopped) ?
617 tr("Run") : tr("Stop"));
618}
619
c9da5118
SA
620void MainWindow::on_new_view(Session *session)
621{
622 // We get a pointer and need a reference
623 for (std::shared_ptr<Session> s : sessions_)
624 if (s.get() == session)
f4e57597 625 add_view(session->name(), views::ViewTypeTrace, *s);
c9da5118
SA
626}
627
36a8185e
SA
628void MainWindow::on_view_close_clicked()
629{
630 // Find the dock widget that contains the close button that was clicked
631 QObject *w = QObject::sender();
632 QDockWidget *dock = 0;
633
634 while (w) {
635 dock = qobject_cast<QDockWidget*>(w);
636 if (dock)
637 break;
638 w = w->parent();
639 }
640
641 // Get the view contained in the dock widget
f4e57597 642 shared_ptr<views::ViewBase> view;
36a8185e
SA
643
644 for (auto entry : view_docks_)
cbf7b5db 645 if (entry.first == dock)
36a8185e
SA
646 view = entry.second;
647
648 // Deregister the view
649 for (shared_ptr<Session> session : sessions_) {
650 if (!session->has_view(view))
651 continue;
652
653 // Also destroy the entire session if its main view is closing
654 if (view == session->main_view()) {
655 remove_session(session);
656 break;
657 } else
658 session->deregister_view(view);
659 }
660}
661
e7aff437
SA
662void MainWindow::on_tab_changed(int index)
663{
664 shared_ptr<Session> session = get_tab_session(index);
665
666 if (session)
667 on_focused_session_changed(session);
668}
669
4a4e20f5
SA
670void MainWindow::on_tab_close_requested(int index)
671{
672 // TODO Ask user if this is intended in case data is unsaved
673
e7aff437
SA
674 shared_ptr<Session> session = get_tab_session(index);
675
676 if (session)
677 remove_session(session);
4a4e20f5
SA
678}
679
c7b03d9d
SA
680void MainWindow::on_actionViewStickyScrolling_triggered()
681{
f4e57597
SA
682 shared_ptr<views::ViewBase> viewbase = get_active_view();
683 views::TraceView::View* view =
684 qobject_cast<views::TraceView::View*>(viewbase.get());
168bd8ac
SA
685 if (view)
686 view->enable_sticky_scrolling(action_view_sticky_scrolling_->isChecked());
c7b03d9d
SA
687}
688
0fb9d645
SA
689void MainWindow::on_actionViewColouredBg_triggered()
690{
f4e57597
SA
691 shared_ptr<views::ViewBase> viewbase = get_active_view();
692 views::TraceView::View* view =
693 qobject_cast<views::TraceView::View*>(viewbase.get());
168bd8ac
SA
694 if (view)
695 view->enable_coloured_bg(action_view_coloured_bg_->isChecked());
0fb9d645
SA
696}
697
30236a54
JH
698void MainWindow::on_actionAbout_triggered()
699{
8dbbc7f0 700 dialogs::About dlg(device_manager_.context(), this);
40eb2ff4 701 dlg.exec();
30236a54 702}
274d4f13 703
51e77110 704} // namespace pv