forked from qt-creator/qt-creator
CustomParsersSettingsPage: Add hint for enabling parsers
Change-Id: I55b16e8079ac4c3d495485ba23eb71b4ca2caec0 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
committed by
André Hartmann
parent
2bda74b46f
commit
6d6938c69f
@@ -34,6 +34,7 @@
|
|||||||
#include <utils/qtcassert.h>
|
#include <utils/qtcassert.h>
|
||||||
|
|
||||||
#include <QHBoxLayout>
|
#include <QHBoxLayout>
|
||||||
|
#include <QLabel>
|
||||||
#include <QList>
|
#include <QList>
|
||||||
#include <QListWidget>
|
#include <QListWidget>
|
||||||
#include <QPushButton>
|
#include <QPushButton>
|
||||||
@@ -56,6 +57,10 @@ public:
|
|||||||
const auto mainLayout = new QVBoxLayout(this);
|
const auto mainLayout = new QVBoxLayout(this);
|
||||||
const auto widgetLayout = new QHBoxLayout;
|
const auto widgetLayout = new QHBoxLayout;
|
||||||
mainLayout->addLayout(widgetLayout);
|
mainLayout->addLayout(widgetLayout);
|
||||||
|
const auto hintLabel = new QLabel(tr(
|
||||||
|
"Custom output parsers defined here can be enabled individually "
|
||||||
|
"in the project's build or run settings."));
|
||||||
|
mainLayout->addWidget(hintLabel);
|
||||||
widgetLayout->addWidget(&m_parserListView);
|
widgetLayout->addWidget(&m_parserListView);
|
||||||
const auto buttonLayout = new QVBoxLayout;
|
const auto buttonLayout = new QVBoxLayout;
|
||||||
widgetLayout->addLayout(buttonLayout);
|
widgetLayout->addLayout(buttonLayout);
|
||||||
|
Reference in New Issue
Block a user