From 7c891dfdbc9f253c357855e4f6cec2248aa84f21 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Mal=C3=BD?= Date: Sat, 18 Apr 2015 01:15:41 +0200 Subject: [PATCH] - Make the available signals dialog blend into the widget base - Disallow modifications of the signal descriptions --- gui/exportrawdatadialog.cpp | 7 +++++++ gui/exportrawdatadialog.ui | 21 +++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/gui/exportrawdatadialog.cpp b/gui/exportrawdatadialog.cpp index 303fd54..47544e1 100644 --- a/gui/exportrawdatadialog.cpp +++ b/gui/exportrawdatadialog.cpp @@ -41,6 +41,13 @@ ExportRawDataDialog::ExportRawDataDialog(QWidget* parent) : ui->qcbox_formats->setSizeAdjustPolicy(QComboBox::AdjustToContents); ui->qlv_availableSignals->setSizeAdjustPolicy(QListView::AdjustToContents); + /* Make the background of availableSignals view the same color as the widget base */ + QPalette oldPalette(ui->qlv_availableSignals->palette()); + QPalette newPalette(oldPalette); + newPalette.setColor(QPalette::Inactive, QPalette::Base, oldPalette.color(QPalette::Disabled, QPalette::Base)); + newPalette.setColor(QPalette::Active, QPalette::Base, oldPalette.color(QPalette::Disabled, QPalette::Base)); + ui->qlv_availableSignals->setPalette(newPalette); + connect(ui->qpb_browse, SIGNAL(clicked()), this, SLOT(onBrowseClicked())); connect(ui->qpb_ok, SIGNAL(clicked()), this, SLOT(accept())); connect(ui->qpb_cancel, SIGNAL(clicked()), this, SLOT(reject())); diff --git a/gui/exportrawdatadialog.ui b/gui/exportrawdatadialog.ui index 6763b80..e4d09e8 100644 --- a/gui/exportrawdatadialog.ui +++ b/gui/exportrawdatadialog.ui @@ -103,12 +103,33 @@ + + true + 0 0 + + false + + + QFrame::NoFrame + + + QFrame::Sunken + + + QAbstractItemView::NoEditTriggers + + + false + + + QAbstractItemView::NoSelection + -- 2.43.5