2 * This file is part of the PulseView project.
4 * Copyright (C) 2017 Soeren Apel <soeren@apelpie.net>
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.
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.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
24 #include <QApplication>
26 #include <QDialogButtonBox>
27 #include <QFileDialog>
28 #include <QFormLayout>
30 #include <QHBoxLayout>
32 #include <QMainWindow>
33 #include <QMessageBox>
34 #include <QPushButton>
38 #include <QStyleFactory>
39 #include <QTextBrowser>
40 #include <QTextDocument>
41 #include <QTextStream>
42 #include <QVBoxLayout>
44 #include "settings.hpp"
46 #include "pv/application.hpp"
47 #include "pv/devicemanager.hpp"
48 #include "pv/globalsettings.hpp"
49 #include "pv/logging.hpp"
50 #include "pv/widgets/colorbutton.hpp"
52 #include <libsigrokcxx/libsigrokcxx.hpp>
55 #include <libsigrokdecode/libsigrokdecode.h>
58 using pv::widgets::ColorButton;
64 * Special version of a QListView that has the width of the first column as minimum size.
66 * @note Inspired by https://github.com/qt-creator/qt-creator/blob/master/src/plugins/coreplugin/dialogs/settingsdialog.cpp
68 class PageListWidget: public QListWidget
74 setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Expanding);
77 QSize sizeHint() const final
79 int width = sizeHintForColumn(0) + frameWidth() * 2 + 5;
80 if (verticalScrollBar()->isVisible())
81 width += verticalScrollBar()->width();
82 return QSize(width, 100);
86 Settings::Settings(DeviceManager &device_manager, QWidget *parent) :
87 QDialog(parent, nullptr),
88 device_manager_(device_manager)
93 log_view_ = create_log_view();
96 page_list = new PageListWidget();
97 page_list->setViewMode(QListView::ListMode);
98 page_list->setMovement(QListView::Static);
99 page_list->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
101 pages = new QStackedWidget;
103 page_list->setCurrentIndex(page_list->model()->index(0, 0));
105 // Create the rest of the dialog
106 QHBoxLayout *tab_layout = new QHBoxLayout;
107 tab_layout->addWidget(page_list);
108 tab_layout->addWidget(pages, Qt::AlignLeft);
110 QDialogButtonBox *button_box = new QDialogButtonBox(
111 QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
113 QVBoxLayout* root_layout = new QVBoxLayout(this);
114 root_layout->addLayout(tab_layout);
115 root_layout->addWidget(button_box);
117 connect(button_box, SIGNAL(accepted()), this, SLOT(accept()));
118 connect(button_box, SIGNAL(rejected()), this, SLOT(reject()));
119 connect(page_list, SIGNAL(currentItemChanged(QListWidgetItem*, QListWidgetItem*)),
120 this, SLOT(on_page_changed(QListWidgetItem*, QListWidgetItem*)));
122 // Start to record changes
123 GlobalSettings settings;
124 settings.start_tracking();
127 void Settings::create_pages()
130 pages->addWidget(get_general_settings_form(pages));
132 QListWidgetItem *generalButton = new QListWidgetItem(page_list);
133 generalButton->setIcon(QIcon(":/icons/settings-general.png"));
134 generalButton->setText(tr("General"));
135 generalButton->setTextAlignment(Qt::AlignVCenter);
136 generalButton->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
139 pages->addWidget(get_view_settings_form(pages));
141 QListWidgetItem *viewButton = new QListWidgetItem(page_list);
142 viewButton->setIcon(QIcon(":/icons/settings-views.svg"));
143 viewButton->setText(tr("Views"));
144 viewButton->setTextAlignment(Qt::AlignVCenter);
145 viewButton->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
149 pages->addWidget(get_decoder_settings_form(pages));
151 QListWidgetItem *decoderButton = new QListWidgetItem(page_list);
152 decoderButton->setIcon(QIcon(":/icons/add-decoder.svg"));
153 decoderButton->setText(tr("Decoders"));
154 decoderButton->setTextAlignment(Qt::AlignVCenter);
155 decoderButton->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
159 pages->addWidget(get_about_page(pages));
161 QListWidgetItem *aboutButton = new QListWidgetItem(page_list);
162 aboutButton->setIcon(QIcon(":/icons/information.svg"));
163 aboutButton->setText(tr("About"));
164 aboutButton->setTextAlignment(Qt::AlignVCenter);
165 aboutButton->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
168 pages->addWidget(get_logging_page(pages));
170 QListWidgetItem *loggingButton = new QListWidgetItem(page_list);
171 loggingButton->setIcon(QIcon(":/icons/information.svg"));
172 loggingButton->setText(tr("Logging"));
173 loggingButton->setTextAlignment(Qt::AlignVCenter);
174 loggingButton->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
177 QCheckBox *Settings::create_checkbox(const QString& key, const char* slot) const
179 GlobalSettings settings;
181 QCheckBox *cb = new QCheckBox();
182 cb->setChecked(settings.value(key).toBool());
183 connect(cb, SIGNAL(stateChanged(int)), this, slot);
187 QPlainTextEdit *Settings::create_log_view() const
189 GlobalSettings settings;
191 QPlainTextEdit *log_view = new QPlainTextEdit();
193 log_view->setReadOnly(true);
194 log_view->setWordWrapMode(QTextOption::NoWrap);
195 log_view->setCenterOnScroll(true);
197 log_view->appendHtml(logging.get_log());
198 connect(&logging, SIGNAL(logged_text(QString)),
199 log_view, SLOT(appendHtml(QString)));
204 QWidget *Settings::get_general_settings_form(QWidget *parent) const
206 GlobalSettings settings;
208 QWidget *form = new QWidget(parent);
209 QVBoxLayout *form_layout = new QVBoxLayout(form);
212 QGroupBox *general_group = new QGroupBox(tr("General"));
213 form_layout->addWidget(general_group);
215 QFormLayout *general_layout = new QFormLayout();
216 general_group->setLayout(general_layout);
218 QComboBox *theme_cb = new QComboBox();
219 for (const pair<QString, QString>& entry : Themes)
220 theme_cb->addItem(entry.first, entry.second);
222 theme_cb->setCurrentIndex(
223 settings.value(GlobalSettings::Key_General_Theme).toInt());
224 connect(theme_cb, SIGNAL(currentIndexChanged(int)),
225 this, SLOT(on_general_theme_changed_changed(int)));
226 general_layout->addRow(tr("User interface theme"), theme_cb);
228 QLabel *description_1 = new QLabel(tr("(You may need to restart PulseView for all UI elements to update)"));
229 description_1->setAlignment(Qt::AlignRight);
230 general_layout->addRow(description_1);
232 QComboBox *style_cb = new QComboBox();
233 style_cb->addItem(tr("System Default"), "");
234 for (QString& s : QStyleFactory::keys())
235 style_cb->addItem(s, s);
237 const QString current_style =
238 settings.value(GlobalSettings::Key_General_Style).toString();
239 if (current_style.isEmpty())
240 style_cb->setCurrentIndex(0);
242 style_cb->setCurrentIndex(style_cb->findText(current_style, 0));
244 connect(style_cb, SIGNAL(currentIndexChanged(int)),
245 this, SLOT(on_general_style_changed(int)));
246 general_layout->addRow(tr("Qt widget style"), style_cb);
248 QLabel *description_2 = new QLabel(tr("(Dark themes look best with the Fusion style)"));
249 description_2->setAlignment(Qt::AlignRight);
250 general_layout->addRow(description_2);
255 QWidget *Settings::get_view_settings_form(QWidget *parent) const
257 GlobalSettings settings;
260 QWidget *form = new QWidget(parent);
261 QVBoxLayout *form_layout = new QVBoxLayout(form);
263 // Trace view settings
264 QGroupBox *trace_view_group = new QGroupBox(tr("Trace View"));
265 form_layout->addWidget(trace_view_group);
267 QFormLayout *trace_view_layout = new QFormLayout();
268 trace_view_group->setLayout(trace_view_layout);
270 cb = create_checkbox(GlobalSettings::Key_View_ColoredBG,
271 SLOT(on_view_coloredBG_changed(int)));
272 trace_view_layout->addRow(tr("Use colored trace &background"), cb);
274 cb = create_checkbox(GlobalSettings::Key_View_ZoomToFitDuringAcq,
275 SLOT(on_view_zoomToFitDuringAcq_changed(int)));
276 trace_view_layout->addRow(tr("Constantly perform &zoom-to-fit during acquisition"), cb);
278 cb = create_checkbox(GlobalSettings::Key_View_ZoomToFitAfterAcq,
279 SLOT(on_view_zoomToFitAfterAcq_changed(int)));
280 trace_view_layout->addRow(tr("Perform a zoom-to-&fit when acquisition stops"), cb);
282 cb = create_checkbox(GlobalSettings::Key_View_TriggerIsZeroTime,
283 SLOT(on_view_triggerIsZero_changed(int)));
284 trace_view_layout->addRow(tr("Show time zero at the trigger"), cb);
286 cb = create_checkbox(GlobalSettings::Key_View_StickyScrolling,
287 SLOT(on_view_stickyScrolling_changed(int)));
288 trace_view_layout->addRow(tr("Always keep &newest samples at the right edge during capture"), cb);
290 cb = create_checkbox(GlobalSettings::Key_View_ShowSamplingPoints,
291 SLOT(on_view_showSamplingPoints_changed(int)));
292 trace_view_layout->addRow(tr("Show data &sampling points"), cb);
294 cb = create_checkbox(GlobalSettings::Key_View_FillSignalHighAreas,
295 SLOT(on_view_fillSignalHighAreas_changed(int)));
296 trace_view_layout->addRow(tr("Fill high areas of logic signals"), cb);
298 ColorButton* high_fill_cb = new ColorButton(parent);
299 high_fill_cb->set_color(QColor::fromRgba(
300 settings.value(GlobalSettings::Key_View_FillSignalHighAreaColor).value<uint32_t>()));
301 connect(high_fill_cb, SIGNAL(selected(QColor)),
302 this, SLOT(on_view_fillSignalHighAreaColor_changed(QColor)));
303 trace_view_layout->addRow(tr("Color to fill high areas of logic signals with"), high_fill_cb);
305 cb = create_checkbox(GlobalSettings::Key_View_ShowAnalogMinorGrid,
306 SLOT(on_view_showAnalogMinorGrid_changed(int)));
307 trace_view_layout->addRow(tr("Show analog minor grid in addition to div grid"), cb);
309 cb = create_checkbox(GlobalSettings::Key_View_ShowHoverMarker,
310 SLOT(on_view_showHoverMarker_changed(int)));
311 trace_view_layout->addRow(tr("Highlight mouse cursor using a vertical marker line"), cb);
313 QSpinBox *snap_distance_sb = new QSpinBox();
314 snap_distance_sb->setRange(0, 1000);
315 snap_distance_sb->setSuffix(tr(" pixels"));
316 snap_distance_sb->setValue(
317 settings.value(GlobalSettings::Key_View_SnapDistance).toInt());
318 connect(snap_distance_sb, SIGNAL(valueChanged(int)), this,
319 SLOT(on_view_snapDistance_changed(int)));
320 trace_view_layout->addRow(tr("Maximum distance from edges before cursors snap to them"), snap_distance_sb);
322 ColorButton* cursor_fill_cb = new ColorButton(parent);
323 cursor_fill_cb->set_color(QColor::fromRgba(
324 settings.value(GlobalSettings::Key_View_CursorFillColor).value<uint32_t>()));
325 connect(cursor_fill_cb, SIGNAL(selected(QColor)),
326 this, SLOT(on_view_cursorFillColor_changed(QColor)));
327 trace_view_layout->addRow(tr("Color to fill cursor area with"), cursor_fill_cb);
329 QComboBox *thr_disp_mode_cb = new QComboBox();
330 thr_disp_mode_cb->addItem(tr("None"), GlobalSettings::ConvThrDispMode_None);
331 thr_disp_mode_cb->addItem(tr("Background"), GlobalSettings::ConvThrDispMode_Background);
332 thr_disp_mode_cb->addItem(tr("Dots"), GlobalSettings::ConvThrDispMode_Dots);
333 thr_disp_mode_cb->setCurrentIndex(
334 settings.value(GlobalSettings::Key_View_ConversionThresholdDispMode).toInt());
335 connect(thr_disp_mode_cb, SIGNAL(currentIndexChanged(int)),
336 this, SLOT(on_view_conversionThresholdDispMode_changed(int)));
337 trace_view_layout->addRow(tr("Conversion threshold display mode (analog traces only)"), thr_disp_mode_cb);
339 QSpinBox *default_div_height_sb = new QSpinBox();
340 default_div_height_sb->setRange(20, 1000);
341 default_div_height_sb->setSuffix(tr(" pixels"));
342 default_div_height_sb->setValue(
343 settings.value(GlobalSettings::Key_View_DefaultDivHeight).toInt());
344 connect(default_div_height_sb, SIGNAL(valueChanged(int)), this,
345 SLOT(on_view_defaultDivHeight_changed(int)));
346 trace_view_layout->addRow(tr("Default analog trace div height"), default_div_height_sb);
348 QSpinBox *default_logic_height_sb = new QSpinBox();
349 default_logic_height_sb->setRange(5, 1000);
350 default_logic_height_sb->setSuffix(tr(" pixels"));
351 default_logic_height_sb->setValue(
352 settings.value(GlobalSettings::Key_View_DefaultLogicHeight).toInt());
353 connect(default_logic_height_sb, SIGNAL(valueChanged(int)), this,
354 SLOT(on_view_defaultLogicHeight_changed(int)));
355 trace_view_layout->addRow(tr("Default logic trace height"), default_logic_height_sb);
360 QWidget *Settings::get_decoder_settings_form(QWidget *parent)
363 GlobalSettings settings;
366 QWidget *form = new QWidget(parent);
367 QVBoxLayout *form_layout = new QVBoxLayout(form);
370 QGroupBox *decoder_group = new QGroupBox(tr("Decoders"));
371 form_layout->addWidget(decoder_group);
373 QFormLayout *decoder_layout = new QFormLayout();
374 decoder_group->setLayout(decoder_layout);
376 cb = create_checkbox(GlobalSettings::Key_Dec_InitialStateConfigurable,
377 SLOT(on_dec_initialStateConfigurable_changed(int)));
378 decoder_layout->addRow(tr("Allow configuration of &initial signal state"), cb);
380 // Annotation export settings
381 ann_export_format_ = new QLineEdit();
382 ann_export_format_->setText(
383 settings.value(GlobalSettings::Key_Dec_ExportFormat).toString());
384 connect(ann_export_format_, SIGNAL(textChanged(const QString&)),
385 this, SLOT(on_dec_exportFormat_changed(const QString&)));
386 decoder_layout->addRow(tr("Annotation export format"), ann_export_format_);
387 QLabel *description_1 = new QLabel(tr("%s = sample range; %d: decoder name; %c: row name; %q: use quotations marks"));
388 description_1->setAlignment(Qt::AlignRight);
389 decoder_layout->addRow(description_1);
390 QLabel *description_2 = new QLabel(tr("%1: longest annotation text; %a: all annotation texts"));
391 description_2->setAlignment(Qt::AlignRight);
392 decoder_layout->addRow(description_2);
401 QWidget *Settings::get_about_page(QWidget *parent) const
403 Application* a = qobject_cast<Application*>(QApplication::instance());
405 QLabel *icon = new QLabel();
406 icon->setPixmap(QPixmap(QString::fromUtf8(":/icons/pulseview.svg")));
408 // Setup the license field with the project homepage link
409 QLabel *gpl_home_info = new QLabel();
410 gpl_home_info->setText(tr("%1<br /><a href=\"http://%2\">%2</a>").arg(
411 tr("GNU GPL, version 3 or later"),
412 QApplication::organizationDomain()));
413 gpl_home_info->setOpenExternalLinks(true);
417 s.append("<style type=\"text/css\"> tr .id { white-space: pre; padding-right: 5px; } </style>");
421 s.append("<tr><td colspan=\"2\"><b>" +
422 tr("Versions, libraries and features:") + "</b></td></tr>");
423 for (pair<QString, QString> &entry : a->get_version_info())
424 s.append(QString("<tr><td><i>%1</i></td><td>%2</td></tr>")
425 .arg(entry.first, entry.second));
427 s.append("<tr><td colspan=\"2\"></td></tr>");
428 s.append("<tr><td colspan=\"2\"><b>" +
429 tr("Firmware search paths:") + "</b></td></tr>");
430 for (QString &entry : a->get_fw_path_list())
431 s.append(QString("<tr><td colspan=\"2\">%1</td></tr>").arg(entry));
434 s.append("<tr><td colspan=\"2\"></td></tr>");
435 s.append("<tr><td colspan=\"2\"><b>" +
436 tr("Protocol decoder search paths:") + "</b></td></tr>");
437 for (QString &entry : a->get_pd_path_list())
438 s.append(QString("<tr><td colspan=\"2\">%1</td></tr>").arg(entry));
441 s.append("<tr><td colspan=\"2\"></td></tr>");
442 s.append("<tr><td colspan=\"2\"><b>" +
443 tr("Supported hardware drivers:") + "</b></td></tr>");
444 for (pair<QString, QString> &entry : a->get_driver_list())
445 s.append(QString("<tr><td class=\"id\"><i>%1</i></td><td>%2</td></tr>")
446 .arg(entry.first, entry.second));
448 s.append("<tr><td colspan=\"2\"></td></tr>");
449 s.append("<tr><td colspan=\"2\"><b>" +
450 tr("Supported input formats:") + "</b></td></tr>");
451 for (pair<QString, QString> &entry : a->get_input_format_list())
452 s.append(QString("<tr><td class=\"id\"><i>%1</i></td><td>%2</td></tr>")
453 .arg(entry.first, entry.second));
455 s.append("<tr><td colspan=\"2\"></td></tr>");
456 s.append("<tr><td colspan=\"2\"><b>" +
457 tr("Supported output formats:") + "</b></td></tr>");
458 for (pair<QString, QString> &entry : a->get_output_format_list())
459 s.append(QString("<tr><td class=\"id\"><i>%1</i></td><td>%2</td></tr>")
460 .arg(entry.first, entry.second));
463 s.append("<tr><td colspan=\"2\"></td></tr>");
464 s.append("<tr><td colspan=\"2\"><b>" +
465 tr("Supported protocol decoders:") + "</b></td></tr>");
466 for (pair<QString, QString> &entry : a->get_pd_list())
467 s.append(QString("<tr><td class=\"id\"><i>%1</i></td><td>%2</td></tr>")
468 .arg(entry.first, entry.second));
471 s.append("</table>");
473 QTextDocument *supported_doc = new QTextDocument();
474 supported_doc->setHtml(s);
476 QTextBrowser *support_list = new QTextBrowser();
477 support_list->setDocument(supported_doc);
479 QHBoxLayout *h_layout = new QHBoxLayout();
480 h_layout->setAlignment(Qt::AlignLeft);
481 h_layout->addWidget(icon);
482 h_layout->addWidget(gpl_home_info);
484 QVBoxLayout *layout = new QVBoxLayout();
485 layout->addLayout(h_layout);
486 layout->addWidget(support_list);
488 QWidget *page = new QWidget(parent);
489 page->setLayout(layout);
494 QWidget *Settings::get_logging_page(QWidget *parent) const
496 GlobalSettings settings;
499 QSpinBox *loglevel_sb = new QSpinBox();
500 loglevel_sb->setMaximum(SR_LOG_SPEW);
501 loglevel_sb->setValue(logging.get_log_level());
502 connect(loglevel_sb, SIGNAL(valueChanged(int)), this,
503 SLOT(on_log_logLevel_changed(int)));
505 QHBoxLayout *loglevel_layout = new QHBoxLayout();
506 loglevel_layout->addWidget(new QLabel(tr("Log level:")));
507 loglevel_layout->addWidget(loglevel_sb);
509 // Background buffer size
510 QSpinBox *buffersize_sb = new QSpinBox();
511 buffersize_sb->setSuffix(tr(" lines"));
512 buffersize_sb->setMinimum(Logging::MIN_BUFFER_SIZE);
513 buffersize_sb->setMaximum(Logging::MAX_BUFFER_SIZE);
514 buffersize_sb->setValue(
515 settings.value(GlobalSettings::Key_Log_BufferSize).toInt());
516 connect(buffersize_sb, SIGNAL(valueChanged(int)), this,
517 SLOT(on_log_bufferSize_changed(int)));
519 QHBoxLayout *buffersize_layout = new QHBoxLayout();
520 buffersize_layout->addWidget(new QLabel(tr("Length of background buffer:")));
521 buffersize_layout->addWidget(buffersize_sb);
524 QPushButton *save_log_pb = new QPushButton(
525 QIcon::fromTheme("document-save-as", QIcon(":/icons/document-save-as.png")),
526 tr("&Save to File"));
527 connect(save_log_pb, SIGNAL(clicked(bool)),
528 this, SLOT(on_log_saveToFile_clicked(bool)));
531 QPushButton *pop_out_pb = new QPushButton(
532 QIcon::fromTheme("window-new", QIcon(":/icons/window-new.png")),
534 connect(pop_out_pb, SIGNAL(clicked(bool)),
535 this, SLOT(on_log_popOut_clicked(bool)));
537 QHBoxLayout *control_layout = new QHBoxLayout();
538 control_layout->addLayout(loglevel_layout);
539 control_layout->addLayout(buffersize_layout);
540 control_layout->addWidget(save_log_pb);
541 control_layout->addWidget(pop_out_pb);
543 QVBoxLayout *root_layout = new QVBoxLayout();
544 root_layout->addLayout(control_layout);
545 root_layout->addWidget(log_view_);
547 QWidget *page = new QWidget(parent);
548 page->setLayout(root_layout);
553 void Settings::accept()
555 GlobalSettings settings;
556 settings.stop_tracking();
561 void Settings::reject()
563 GlobalSettings settings;
564 settings.undo_tracked_changes();
569 void Settings::on_page_changed(QListWidgetItem *current, QListWidgetItem *previous)
574 pages->setCurrentIndex(page_list->row(current));
577 void Settings::on_general_theme_changed_changed(int state)
579 GlobalSettings settings;
580 settings.setValue(GlobalSettings::Key_General_Theme, state);
581 settings.apply_theme();
583 QMessageBox msg(this);
584 msg.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
585 msg.setIcon(QMessageBox::Question);
587 if (settings.current_theme_is_dark()) {
588 msg.setText(tr("You selected a dark theme.\n" \
589 "Should I set the user-adjustable colors to better suit your choice?\n\n" \
590 "Please keep in mind that PulseView may need a restart to display correctly."));
591 if (msg.exec() == QMessageBox::Yes)
592 settings.set_dark_theme_default_colors();
594 msg.setText(tr("You selected a bright theme.\n" \
595 "Should I set the user-adjustable colors to better suit your choice?\n\n" \
596 "Please keep in mind that PulseView may need a restart to display correctly."));
597 if (msg.exec() == QMessageBox::Yes)
598 settings.set_bright_theme_default_colors();
602 void Settings::on_general_style_changed(int state)
604 GlobalSettings settings;
607 settings.setValue(GlobalSettings::Key_General_Style, "");
609 settings.setValue(GlobalSettings::Key_General_Style,
610 QStyleFactory::keys().at(state - 1));
612 settings.apply_theme();
615 void Settings::on_view_zoomToFitDuringAcq_changed(int state)
617 GlobalSettings settings;
618 settings.setValue(GlobalSettings::Key_View_ZoomToFitDuringAcq, state ? true : false);
621 void Settings::on_view_zoomToFitAfterAcq_changed(int state)
623 GlobalSettings settings;
624 settings.setValue(GlobalSettings::Key_View_ZoomToFitAfterAcq, state ? true : false);
627 void Settings::on_view_triggerIsZero_changed(int state)
629 GlobalSettings settings;
630 settings.setValue(GlobalSettings::Key_View_TriggerIsZeroTime, state ? true : false);
633 void Settings::on_view_coloredBG_changed(int state)
635 GlobalSettings settings;
636 settings.setValue(GlobalSettings::Key_View_ColoredBG, state ? true : false);
639 void Settings::on_view_stickyScrolling_changed(int state)
641 GlobalSettings settings;
642 settings.setValue(GlobalSettings::Key_View_StickyScrolling, state ? true : false);
645 void Settings::on_view_showSamplingPoints_changed(int state)
647 GlobalSettings settings;
648 settings.setValue(GlobalSettings::Key_View_ShowSamplingPoints, state ? true : false);
651 void Settings::on_view_fillSignalHighAreas_changed(int state)
653 GlobalSettings settings;
654 settings.setValue(GlobalSettings::Key_View_FillSignalHighAreas, state ? true : false);
657 void Settings::on_view_fillSignalHighAreaColor_changed(QColor color)
659 GlobalSettings settings;
660 settings.setValue(GlobalSettings::Key_View_FillSignalHighAreaColor, color.rgba());
663 void Settings::on_view_showAnalogMinorGrid_changed(int state)
665 GlobalSettings settings;
666 settings.setValue(GlobalSettings::Key_View_ShowAnalogMinorGrid, state ? true : false);
669 void Settings::on_view_showHoverMarker_changed(int state)
671 GlobalSettings settings;
672 settings.setValue(GlobalSettings::Key_View_ShowHoverMarker, state ? true : false);
675 void Settings::on_view_snapDistance_changed(int value)
677 GlobalSettings settings;
678 settings.setValue(GlobalSettings::Key_View_SnapDistance, value);
681 void Settings::on_view_cursorFillColor_changed(QColor color)
683 GlobalSettings settings;
684 settings.setValue(GlobalSettings::Key_View_CursorFillColor, color.rgba());
687 void Settings::on_view_conversionThresholdDispMode_changed(int state)
689 GlobalSettings settings;
690 settings.setValue(GlobalSettings::Key_View_ConversionThresholdDispMode, state);
693 void Settings::on_view_defaultDivHeight_changed(int value)
695 GlobalSettings settings;
696 settings.setValue(GlobalSettings::Key_View_DefaultDivHeight, value);
699 void Settings::on_view_defaultLogicHeight_changed(int value)
701 GlobalSettings settings;
702 settings.setValue(GlobalSettings::Key_View_DefaultLogicHeight, value);
706 void Settings::on_dec_initialStateConfigurable_changed(int state)
708 GlobalSettings settings;
709 settings.setValue(GlobalSettings::Key_Dec_InitialStateConfigurable, state ? true : false);
712 void Settings::on_dec_exportFormat_changed(const QString &text)
714 GlobalSettings settings;
715 settings.setValue(GlobalSettings::Key_Dec_ExportFormat, text);
719 void Settings::on_log_logLevel_changed(int value)
721 logging.set_log_level(value);
724 void Settings::on_log_bufferSize_changed(int value)
726 GlobalSettings settings;
727 settings.setValue(GlobalSettings::Key_Log_BufferSize, value);
730 void Settings::on_log_saveToFile_clicked(bool checked)
734 const QString file_name = QFileDialog::getSaveFileName(
735 this, tr("Save Log"), "", tr("Log Files (*.txt *.log);;All Files (*)"));
737 if (file_name.isEmpty())
740 QFile file(file_name);
741 if (file.open(QIODevice::WriteOnly | QIODevice::Truncate | QIODevice::Text)) {
742 QTextStream out_stream(&file);
743 out_stream << log_view_->toPlainText();
745 if (out_stream.status() == QTextStream::Ok) {
746 QMessageBox msg(this);
747 msg.setText(tr("Success") + "\n\n" + tr("Log saved to %1.").arg(file_name));
748 msg.setStandardButtons(QMessageBox::Ok);
749 msg.setIcon(QMessageBox::Information);
756 QMessageBox msg(this);
757 msg.setText(tr("Error") + "\n\n" + tr("File %1 could not be written to.").arg(file_name));
758 msg.setStandardButtons(QMessageBox::Ok);
759 msg.setIcon(QMessageBox::Warning);
763 void Settings::on_log_popOut_clicked(bool checked)
767 // Create the window as a sub-window so it closes when the main window closes
768 QMainWindow *window = new QMainWindow(nullptr, Qt::SubWindow);
770 window->setObjectName(QString::fromUtf8("Log Window"));
771 window->setWindowTitle(tr("%1 Log").arg(PV_TITLE));
773 // Use same width/height as the settings dialog
774 window->resize(width(), height());
776 window->setCentralWidget(create_log_view());
780 } // namespace dialogs