67211011d9
Create a new dialog window for the cmake-gui that provides controls for setting the state of suppression of developer and deprecated warning messages. This replaces the previous single checkbox for setting the state of suppression of developer warnings. Added a note for the new functionality to the release notes.
44 lines
1.4 KiB
C++
44 lines
1.4 KiB
C++
/*============================================================================
|
|
CMake - Cross Platform Makefile Generator
|
|
Copyright 2015 Kitware, Inc., Gregor Jasny
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
See the License for more information.
|
|
============================================================================*/
|
|
|
|
#include "WarningMessagesDialog.h"
|
|
|
|
WarningMessagesDialog::WarningMessagesDialog(QWidget* prnt, QCMake* instance)
|
|
: QDialog(prnt), cmakeInstance(instance)
|
|
{
|
|
this->setupUi(this);
|
|
this->setInitialValues();
|
|
this->setupSignals();
|
|
}
|
|
|
|
void WarningMessagesDialog::setInitialValues()
|
|
{
|
|
this->suppressDeveloperWarnings->setChecked(
|
|
this->cmakeInstance->getSuppressDevWarnings());
|
|
this->suppressDeprecatedWarnings->setChecked(
|
|
this->cmakeInstance->getSuppressDeprecatedWarnings());
|
|
}
|
|
|
|
void WarningMessagesDialog::setupSignals()
|
|
{
|
|
QObject::connect(this->buttonBox, SIGNAL(accepted()),
|
|
this, SLOT(doAccept()));
|
|
}
|
|
|
|
void WarningMessagesDialog::doAccept()
|
|
{
|
|
this->cmakeInstance->setSuppressDevWarnings(
|
|
this->suppressDeveloperWarnings->isChecked());
|
|
this->cmakeInstance->setSuppressDeprecatedWarnings(
|
|
this->suppressDeprecatedWarnings->isChecked());
|
|
}
|