forked from qt-creator/qt-creator
To get rid of QDoc warnings. Change-Id: Idd39b7ae4327798c376f424c94d6617bcaee2258 Reviewed-by: hjk <hjk@qt.io>
350 lines
9.4 KiB
C++
350 lines
9.4 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#include "detailswidget.h"
|
|
|
|
#include "detailsbutton.h"
|
|
#include "hostosinfo.h"
|
|
#include "stylehelper.h"
|
|
#include "theme/theme.h"
|
|
|
|
#include <QGridLayout>
|
|
#include <QLabel>
|
|
#include <QCheckBox>
|
|
#include <QPainter>
|
|
#include <QScrollArea>
|
|
#include <QApplication>
|
|
#include <QStyle>
|
|
|
|
#include <qdrawutil.h>
|
|
|
|
/*!
|
|
\class Utils::DetailsWidget
|
|
\inmodule QtCreator
|
|
|
|
\brief The DetailsWidget class implements a button to expand a \e Details
|
|
area.
|
|
|
|
This widget is using a grid layout and places the items
|
|
in the following way:
|
|
|
|
\code
|
|
+------------+-------------------------+---------------+
|
|
+summaryLabel| toolwidget | detailsButton |
|
|
+------------+-------------------------+---------------+
|
|
+ additional summary |
|
|
+------------+-------------------------+---------------+
|
|
| widget |
|
|
+------------+-------------------------+---------------+
|
|
\endcode
|
|
*/
|
|
|
|
namespace Utils {
|
|
|
|
static const int MARGIN = 8;
|
|
|
|
class DetailsWidgetPrivate
|
|
{
|
|
public:
|
|
DetailsWidgetPrivate(QWidget *parent);
|
|
|
|
void updateControls();
|
|
void changeHoverState(bool hovered);
|
|
|
|
QWidget *q;
|
|
DetailsButton *m_detailsButton;
|
|
QGridLayout *m_grid;
|
|
QLabel *m_summaryLabelIcon;
|
|
QLabel *m_summaryLabel;
|
|
QCheckBox *m_summaryCheckBox;
|
|
QLabel *m_additionalSummaryLabel;
|
|
FadingPanel *m_toolWidget;
|
|
QWidget *m_widget;
|
|
|
|
DetailsWidget::State m_state;
|
|
bool m_hovered;
|
|
bool m_useCheckBox;
|
|
};
|
|
|
|
DetailsWidgetPrivate::DetailsWidgetPrivate(QWidget *parent) :
|
|
q(parent),
|
|
m_detailsButton(new DetailsButton),
|
|
m_grid(new QGridLayout),
|
|
m_summaryLabelIcon(new QLabel(parent)),
|
|
m_summaryLabel(new QLabel(parent)),
|
|
m_summaryCheckBox(new QCheckBox(parent)),
|
|
m_additionalSummaryLabel(new QLabel(parent)),
|
|
m_toolWidget(nullptr),
|
|
m_widget(nullptr),
|
|
m_state(DetailsWidget::Collapsed),
|
|
m_hovered(false),
|
|
m_useCheckBox(false)
|
|
{
|
|
auto summaryLayout = new QHBoxLayout;
|
|
summaryLayout->setContentsMargins(MARGIN, MARGIN, MARGIN, MARGIN);
|
|
summaryLayout->setSpacing(0);
|
|
|
|
m_summaryLabelIcon->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
|
|
m_summaryLabelIcon->setContentsMargins(0, 0, 0, 0);
|
|
m_summaryLabelIcon->setFixedWidth(0);
|
|
summaryLayout->addWidget(m_summaryLabelIcon);
|
|
|
|
m_summaryLabel->setTextInteractionFlags(Qt::TextSelectableByMouse | Qt::LinksAccessibleByMouse);
|
|
m_summaryLabel->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Minimum);
|
|
m_summaryLabel->setContentsMargins(0, 0, 0, 0);
|
|
summaryLayout->addWidget(m_summaryLabel, 1);
|
|
|
|
m_summaryCheckBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Minimum);
|
|
m_summaryCheckBox->setAttribute(Qt::WA_LayoutUsesWidgetRect); /* broken layout on mac otherwise */
|
|
m_summaryCheckBox->setVisible(false);
|
|
m_summaryCheckBox->setContentsMargins(0, 0, 0, 0);
|
|
summaryLayout->addWidget(m_summaryCheckBox);
|
|
|
|
m_additionalSummaryLabel->setTextInteractionFlags(Qt::TextSelectableByMouse);
|
|
m_additionalSummaryLabel->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Minimum);
|
|
m_additionalSummaryLabel->setContentsMargins(MARGIN, MARGIN, MARGIN, MARGIN);
|
|
m_additionalSummaryLabel->setWordWrap(true);
|
|
m_additionalSummaryLabel->setVisible(false);
|
|
|
|
m_grid->setContentsMargins(0, 0, 0, 0);
|
|
m_grid->setSpacing(0);
|
|
m_grid->addLayout(summaryLayout, 0, 0);
|
|
m_grid->addWidget(m_detailsButton, 0, 2);
|
|
m_grid->addWidget(m_additionalSummaryLabel, 1, 0, 1, 3);
|
|
}
|
|
|
|
void DetailsWidgetPrivate::updateControls()
|
|
{
|
|
if (m_widget) {
|
|
m_widget->setVisible(m_state == DetailsWidget::Expanded || m_state == DetailsWidget::NoSummary);
|
|
m_widget->setContentsMargins(
|
|
MARGIN, m_state == DetailsWidget::Expanded ? MARGIN : 0, MARGIN, MARGIN);
|
|
}
|
|
m_detailsButton->setChecked(m_state == DetailsWidget::Expanded && m_widget);
|
|
m_detailsButton->setVisible(m_state == DetailsWidget::Expanded || m_state == DetailsWidget::Collapsed);
|
|
m_summaryLabelIcon->setVisible(m_state != DetailsWidget::NoSummary && !m_useCheckBox);
|
|
m_summaryLabel->setVisible(m_state != DetailsWidget::NoSummary && !m_useCheckBox);
|
|
m_summaryCheckBox->setVisible(m_state != DetailsWidget::NoSummary && m_useCheckBox);
|
|
|
|
for (QWidget *w = q; w; w = w->parentWidget()) {
|
|
if (w->layout())
|
|
w->layout()->activate();
|
|
if (auto area = qobject_cast<QScrollArea*>(w)) {
|
|
QEvent e(QEvent::LayoutRequest);
|
|
QCoreApplication::sendEvent(area, &e);
|
|
}
|
|
}
|
|
}
|
|
|
|
void DetailsWidgetPrivate::changeHoverState(bool hovered)
|
|
{
|
|
if (!m_toolWidget)
|
|
return;
|
|
if (HostOsInfo::isMacHost())
|
|
m_toolWidget->setOpacity(hovered ? .999 : 0);
|
|
else
|
|
m_toolWidget->fadeTo(hovered ? .999 : 0);
|
|
m_hovered = hovered;
|
|
}
|
|
|
|
|
|
DetailsWidget::DetailsWidget(QWidget *parent) :
|
|
QWidget(parent),
|
|
d(new DetailsWidgetPrivate(this))
|
|
{
|
|
setLayout(d->m_grid);
|
|
|
|
setUseCheckBox(false);
|
|
|
|
connect(d->m_detailsButton, &QAbstractButton::toggled,
|
|
this, &DetailsWidget::setExpanded);
|
|
connect(d->m_summaryCheckBox, &QAbstractButton::toggled,
|
|
this, &DetailsWidget::checked);
|
|
connect(d->m_summaryLabel, &QLabel::linkActivated,
|
|
this, &DetailsWidget::linkActivated);
|
|
d->updateControls();
|
|
}
|
|
|
|
DetailsWidget::~DetailsWidget()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
bool DetailsWidget::useCheckBox()
|
|
{
|
|
return d->m_useCheckBox;
|
|
}
|
|
|
|
void DetailsWidget::setUseCheckBox(bool b)
|
|
{
|
|
d->m_useCheckBox = b;
|
|
d->updateControls();
|
|
}
|
|
|
|
void DetailsWidget::setCheckable(bool b)
|
|
{
|
|
d->m_summaryCheckBox->setEnabled(b);
|
|
}
|
|
|
|
void DetailsWidget::setExpandable(bool b)
|
|
{
|
|
d->m_detailsButton->setEnabled(b);
|
|
}
|
|
|
|
void DetailsWidget::setChecked(bool b)
|
|
{
|
|
d->m_summaryCheckBox->setChecked(b);
|
|
}
|
|
|
|
bool DetailsWidget::isChecked() const
|
|
{
|
|
return d->m_useCheckBox && d->m_summaryCheckBox->isChecked();
|
|
}
|
|
|
|
void DetailsWidget::setSummaryFontBold(bool b)
|
|
{
|
|
QFont f;
|
|
f.setBold(b);
|
|
d->m_summaryCheckBox->setFont(f);
|
|
d->m_summaryLabel->setFont(f);
|
|
}
|
|
|
|
void DetailsWidget::setIcon(const QIcon &icon)
|
|
{
|
|
int iconSize = style()->pixelMetric(QStyle::PM_ButtonIconSize, nullptr, this);
|
|
d->m_summaryLabelIcon->setFixedWidth(icon.isNull() ? 0 : iconSize);
|
|
d->m_summaryLabelIcon->setPixmap(icon.pixmap(iconSize, iconSize));
|
|
d->m_summaryCheckBox->setIcon(icon);
|
|
}
|
|
|
|
void DetailsWidget::paintEvent(QPaintEvent *paintEvent)
|
|
{
|
|
QWidget::paintEvent(paintEvent);
|
|
|
|
QPainter p(this);
|
|
if (creatorTheme()->flag(Theme::FlatProjectsMode) || HostOsInfo::isMacHost()) {
|
|
const QColor bgColor = creatorTheme()->flag(Theme::FlatProjectsMode) ?
|
|
creatorTheme()->color(Theme::DetailsWidgetBackgroundColor)
|
|
: palette().color(QPalette::Window);
|
|
p.fillRect(rect(), bgColor);
|
|
}
|
|
if (!creatorTheme()->flag(Theme::FlatProjectsMode))
|
|
qDrawPlainRect(&p, rect(), DetailsButton::outlineColor());
|
|
}
|
|
|
|
void DetailsWidget::enterEvent(QEnterEvent *event)
|
|
{
|
|
QWidget::enterEvent(event);
|
|
d->changeHoverState(true);
|
|
}
|
|
|
|
void DetailsWidget::leaveEvent(QEvent * event)
|
|
{
|
|
QWidget::leaveEvent(event);
|
|
d->changeHoverState(false);
|
|
}
|
|
|
|
void DetailsWidget::setSummaryText(const QString &text)
|
|
{
|
|
if (d->m_useCheckBox)
|
|
d->m_summaryCheckBox->setText(text);
|
|
else
|
|
d->m_summaryLabel->setText(text);
|
|
}
|
|
|
|
QString DetailsWidget::summaryText() const
|
|
{
|
|
if (d->m_useCheckBox)
|
|
return d->m_summaryCheckBox->text();
|
|
return d->m_summaryLabel->text();
|
|
}
|
|
|
|
QString DetailsWidget::additionalSummaryText() const
|
|
{
|
|
return d->m_additionalSummaryLabel->text();
|
|
}
|
|
|
|
void DetailsWidget::setAdditionalSummaryText(const QString &text)
|
|
{
|
|
d->m_additionalSummaryLabel->setText(text);
|
|
d->m_additionalSummaryLabel->setVisible(!text.isEmpty());
|
|
}
|
|
|
|
DetailsWidget::State DetailsWidget::state() const
|
|
{
|
|
return d->m_state;
|
|
}
|
|
|
|
void DetailsWidget::setState(State state)
|
|
{
|
|
if (state == d->m_state)
|
|
return;
|
|
d->m_state = state;
|
|
d->updateControls();
|
|
emit expanded(d->m_state == Expanded);
|
|
}
|
|
|
|
void DetailsWidget::setExpanded(bool expanded)
|
|
{
|
|
setState(expanded ? Expanded : Collapsed);
|
|
}
|
|
|
|
QWidget *DetailsWidget::widget() const
|
|
{
|
|
return d->m_widget;
|
|
}
|
|
|
|
QWidget *DetailsWidget::takeWidget()
|
|
{
|
|
QWidget *widget = d->m_widget;
|
|
d->m_widget = nullptr;
|
|
d->m_grid->removeWidget(widget);
|
|
if (widget)
|
|
widget->setParent(nullptr);
|
|
return widget;
|
|
}
|
|
|
|
void DetailsWidget::setWidget(QWidget *widget)
|
|
{
|
|
if (d->m_widget == widget)
|
|
return;
|
|
|
|
if (d->m_widget) {
|
|
d->m_grid->removeWidget(d->m_widget);
|
|
delete d->m_widget;
|
|
}
|
|
|
|
d->m_widget = widget;
|
|
|
|
if (d->m_widget) {
|
|
d->m_widget->setContentsMargins(MARGIN, MARGIN, MARGIN, MARGIN);
|
|
d->m_grid->addWidget(d->m_widget, 2, 0, 1, 3);
|
|
}
|
|
d->updateControls();
|
|
}
|
|
|
|
void DetailsWidget::setToolWidget(FadingPanel *widget)
|
|
{
|
|
if (d->m_toolWidget == widget)
|
|
return;
|
|
|
|
d->m_toolWidget = widget;
|
|
|
|
if (!d->m_toolWidget)
|
|
return;
|
|
|
|
d->m_toolWidget->adjustSize();
|
|
d->m_grid->addWidget(d->m_toolWidget, 0, 1, 1, 1, Qt::AlignRight);
|
|
|
|
if (HostOsInfo::isMacHost())
|
|
d->m_toolWidget->setOpacity(.999);
|
|
d->changeHoverState(d->m_hovered);
|
|
}
|
|
|
|
QWidget *DetailsWidget::toolWidget() const
|
|
{
|
|
return d->m_toolWidget;
|
|
}
|
|
|
|
} // namespace Utils
|