From: Michal MalĂ˝ Date: Fri, 17 Apr 2015 23:15:41 +0000 (+0200) Subject: - Make the available signals dialog blend into the widget base X-Git-Tag: 0.5c~5 X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=7c891dfdbc9f253c357855e4f6cec2248aa84f21;p=anyanka.git - Make the available signals dialog blend into the widget base - Disallow modifications of the signal descriptions --- 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 +