forked from github_mirror/framelesshelper
714 lines
23 KiB
C++
714 lines
23 KiB
C++
/*
|
|
* MIT License
|
|
*
|
|
* Copyright (C) 2021-2023 by wangwenx190 (Yuhang Zhao)
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
#include "standardtitlebar.h"
|
|
#include "standardtitlebar_p.h"
|
|
#include "standardsystembutton.h"
|
|
#include "framelesswidgetshelper.h"
|
|
#include <FramelessHelper/Core/utils.h>
|
|
#include <QtCore/qcoreevent.h>
|
|
#include <QtCore/qtimer.h>
|
|
#include <QtCore/qloggingcategory.h>
|
|
#include <QtGui/qpainter.h>
|
|
#include <QtGui/qevent.h>
|
|
#include <QtGui/qfontmetrics.h>
|
|
#include <QtWidgets/qboxlayout.h>
|
|
|
|
FRAMELESSHELPER_BEGIN_NAMESPACE
|
|
|
|
static Q_LOGGING_CATEGORY(lcStandardTitleBar, "wangwenx190.framelesshelper.widgets.standardtitlebar")
|
|
|
|
#ifdef FRAMELESSHELPER_WIDGETS_NO_DEBUG_OUTPUT
|
|
# define INFO QT_NO_QDEBUG_MACRO()
|
|
# define DEBUG QT_NO_QDEBUG_MACRO()
|
|
# define WARNING QT_NO_QDEBUG_MACRO()
|
|
# define CRITICAL QT_NO_QDEBUG_MACRO()
|
|
#else
|
|
# define INFO qCInfo(lcStandardTitleBar)
|
|
# define DEBUG qCDebug(lcStandardTitleBar)
|
|
# define WARNING qCWarning(lcStandardTitleBar)
|
|
# define CRITICAL qCCritical(lcStandardTitleBar)
|
|
#endif
|
|
|
|
using namespace Global;
|
|
|
|
StandardTitleBarPrivate::StandardTitleBarPrivate(StandardTitleBar *q) : QObject(q)
|
|
{
|
|
Q_ASSERT(q);
|
|
if (!q) {
|
|
return;
|
|
}
|
|
q_ptr = q;
|
|
initialize();
|
|
}
|
|
|
|
StandardTitleBarPrivate::~StandardTitleBarPrivate() = default;
|
|
|
|
StandardTitleBarPrivate *StandardTitleBarPrivate::get(StandardTitleBar *pub)
|
|
{
|
|
Q_ASSERT(pub);
|
|
if (!pub) {
|
|
return nullptr;
|
|
}
|
|
return pub->d_func();
|
|
}
|
|
|
|
const StandardTitleBarPrivate *StandardTitleBarPrivate::get(const StandardTitleBar *pub)
|
|
{
|
|
Q_ASSERT(pub);
|
|
if (!pub) {
|
|
return nullptr;
|
|
}
|
|
return pub->d_func();
|
|
}
|
|
|
|
Qt::Alignment StandardTitleBarPrivate::titleLabelAlignment() const
|
|
{
|
|
return m_labelAlignment;
|
|
}
|
|
|
|
void StandardTitleBarPrivate::setTitleLabelAlignment(const Qt::Alignment value)
|
|
{
|
|
if (m_labelAlignment == value) {
|
|
return;
|
|
}
|
|
m_labelAlignment = value;
|
|
Q_Q(StandardTitleBar);
|
|
q->update();
|
|
Q_EMIT q->titleLabelAlignmentChanged();
|
|
}
|
|
|
|
bool StandardTitleBarPrivate::isExtended() const
|
|
{
|
|
return m_extended;
|
|
}
|
|
|
|
void StandardTitleBarPrivate::setExtended(const bool value)
|
|
{
|
|
if (m_extended == value) {
|
|
return;
|
|
}
|
|
m_extended = value;
|
|
Q_Q(StandardTitleBar);
|
|
q->setFixedHeight(m_extended ? kDefaultExtendedTitleBarHeight : kDefaultTitleBarHeight);
|
|
Q_EMIT q->extendedChanged();
|
|
}
|
|
|
|
bool StandardTitleBarPrivate::isHideWhenClose() const
|
|
{
|
|
return m_hideWhenClose;
|
|
}
|
|
|
|
void StandardTitleBarPrivate::setHideWhenClose(const bool value)
|
|
{
|
|
if (m_hideWhenClose == value) {
|
|
return;
|
|
}
|
|
m_hideWhenClose = value;
|
|
Q_Q(StandardTitleBar);
|
|
Q_EMIT q->hideWhenCloseChanged();
|
|
}
|
|
|
|
ChromePalette *StandardTitleBarPrivate::chromePalette() const
|
|
{
|
|
return m_chromePalette;
|
|
}
|
|
|
|
QFont StandardTitleBarPrivate::defaultFont() const
|
|
{
|
|
Q_Q(const StandardTitleBar);
|
|
QFont font = q->font();
|
|
font.setPointSize(kDefaultTitleBarFontPointSize);
|
|
return font;
|
|
}
|
|
|
|
StandardTitleBarPrivate::FontMetrics StandardTitleBarPrivate::titleLabelSize() const
|
|
{
|
|
if (!m_window) {
|
|
return {};
|
|
}
|
|
const QString text = m_window->windowTitle();
|
|
if (text.isEmpty()) {
|
|
return {};
|
|
}
|
|
const QFont font = m_titleFont.value_or(defaultFont());
|
|
const QFontMetrics fontMetrics(font);
|
|
return {
|
|
/* .width */ Utils::horizontalAdvance(fontMetrics, text),
|
|
/* .height */ fontMetrics.height(),
|
|
/* .ascent */ fontMetrics.ascent()
|
|
};
|
|
}
|
|
|
|
void StandardTitleBarPrivate::paintTitleBar(QPaintEvent *event)
|
|
{
|
|
Q_ASSERT(event);
|
|
if (!event) {
|
|
return;
|
|
}
|
|
Q_Q(StandardTitleBar);
|
|
if (!m_window || !m_chromePalette) {
|
|
return;
|
|
}
|
|
const bool active = m_window->isActiveWindow();
|
|
const QColor backgroundColor = (active ?
|
|
m_chromePalette->titleBarActiveBackgroundColor() :
|
|
m_chromePalette->titleBarInactiveBackgroundColor());
|
|
const QColor foregroundColor = (active ?
|
|
m_chromePalette->titleBarActiveForegroundColor() :
|
|
m_chromePalette->titleBarInactiveForegroundColor());
|
|
QPainter painter(q);
|
|
painter.save();
|
|
painter.setRenderHints(QPainter::Antialiasing |
|
|
QPainter::TextAntialiasing | QPainter::SmoothPixmapTransform);
|
|
painter.fillRect(QRect(QPoint(0, 0), q->size()), backgroundColor);
|
|
if (m_titleLabelVisible) {
|
|
const QString text = m_window->windowTitle();
|
|
if (!text.isEmpty()) {
|
|
painter.setPen(foregroundColor);
|
|
painter.setFont(m_titleFont.value_or(defaultFont()));
|
|
const auto pos = [this, q]() -> QPoint {
|
|
const FontMetrics labelSize = titleLabelSize();
|
|
const int titleBarWidth = q->width();
|
|
int x = 0;
|
|
if (m_labelAlignment & Qt::AlignLeft) {
|
|
x = (windowIconRect().right() + kDefaultTitleBarContentsMargin);
|
|
} else if (m_labelAlignment & Qt::AlignRight) {
|
|
x = (titleBarWidth - kDefaultTitleBarContentsMargin - labelSize.width);
|
|
#ifndef Q_OS_MACOS
|
|
x -= (titleBarWidth - m_minimizeButton->x());
|
|
#endif // Q_OS_MACOS
|
|
} else if (m_labelAlignment & Qt::AlignHCenter) {
|
|
x = std::round(qreal(titleBarWidth - labelSize.width) / qreal(2));
|
|
} else {
|
|
WARNING << "The alignment for the title label is not set!";
|
|
}
|
|
const int y = std::round((qreal(q->height() - labelSize.height) / qreal(2)) + qreal(labelSize.ascent));
|
|
return {x, y};
|
|
}();
|
|
painter.drawText(pos, text);
|
|
}
|
|
}
|
|
if (m_windowIconVisible) {
|
|
const QIcon icon = m_window->windowIcon();
|
|
if (!icon.isNull()) {
|
|
icon.paint(&painter, windowIconRect());
|
|
}
|
|
}
|
|
painter.restore();
|
|
event->accept();
|
|
}
|
|
|
|
bool StandardTitleBarPrivate::titleLabelVisible() const
|
|
{
|
|
return m_titleLabelVisible;
|
|
}
|
|
|
|
void StandardTitleBarPrivate::setTitleLabelVisible(const bool value)
|
|
{
|
|
if (m_titleLabelVisible == value) {
|
|
return;
|
|
}
|
|
m_titleLabelVisible = value;
|
|
Q_Q(StandardTitleBar);
|
|
q->update();
|
|
Q_EMIT q->titleLabelVisibleChanged();
|
|
}
|
|
|
|
QSize StandardTitleBarPrivate::windowIconSize() const
|
|
{
|
|
return m_windowIconSize.value_or(kDefaultWindowIconSize);
|
|
}
|
|
|
|
void StandardTitleBarPrivate::setWindowIconSize(const QSize &value)
|
|
{
|
|
Q_ASSERT(!value.isEmpty());
|
|
if (value.isEmpty()) {
|
|
return;
|
|
}
|
|
if (windowIconSize() == value) {
|
|
return;
|
|
}
|
|
m_windowIconSize = value;
|
|
Q_Q(StandardTitleBar);
|
|
q->update();
|
|
Q_EMIT q->windowIconSizeChanged();
|
|
}
|
|
|
|
bool StandardTitleBarPrivate::windowIconVisible() const
|
|
{
|
|
return m_windowIconVisible;
|
|
}
|
|
|
|
void StandardTitleBarPrivate::setWindowIconVisible(const bool value)
|
|
{
|
|
if (m_windowIconVisible == value) {
|
|
return;
|
|
}
|
|
m_windowIconVisible = value;
|
|
Q_Q(StandardTitleBar);
|
|
q->update();
|
|
Q_EMIT q->windowIconVisibleChanged();
|
|
#ifndef Q_OS_MACOS
|
|
// Ideally we should use FramelessWidgetsHelper::get(this) everywhere, but sadly when
|
|
// we call it here, it may be too early that FramelessWidgetsHelper has not attached
|
|
// to the top level widget yet, and thus it will trigger an assert error (the assert
|
|
// should not be suppressed, because it usually indicates there's something really
|
|
// wrong). So here we have to use the top level widget directly, as a special case.
|
|
// NOTE: In your own code, you should always use FramelessWidgetsHelper::get(this)
|
|
// if possible.
|
|
FramelessWidgetsHelper::get(m_window)->setHitTestVisible(windowIconRect(), windowIconVisible_real());
|
|
#endif // Q_OS_MACOS
|
|
}
|
|
|
|
QFont StandardTitleBarPrivate::titleFont() const
|
|
{
|
|
return m_titleFont.value_or(QFont());
|
|
}
|
|
|
|
void StandardTitleBarPrivate::setTitleFont(const QFont &value)
|
|
{
|
|
if (titleFont() == value) {
|
|
return;
|
|
}
|
|
m_titleFont = value;
|
|
Q_Q(StandardTitleBar);
|
|
q->update();
|
|
Q_EMIT q->titleFontChanged();
|
|
}
|
|
|
|
bool StandardTitleBarPrivate::mouseEventHandler(QMouseEvent *event)
|
|
{
|
|
#ifdef Q_OS_MACOS
|
|
Q_UNUSED(event);
|
|
return false;
|
|
#else // !Q_OS_MACOS
|
|
Q_ASSERT(event);
|
|
if (!event) {
|
|
return false;
|
|
}
|
|
Q_Q(const StandardTitleBar);
|
|
const Qt::MouseButton button = event->button();
|
|
# if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
|
|
const QPoint scenePos = event->scenePosition().toPoint();
|
|
# else // (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
|
|
const QPoint scenePos = event->windowPos().toPoint();
|
|
# endif // (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
|
|
const bool interestArea = isInTitleBarIconArea(scenePos);
|
|
switch (event->type()) {
|
|
case QEvent::MouseButtonRelease:
|
|
// We need a valid top level widget here.
|
|
if (m_window && interestArea) {
|
|
// Sadly the mouse release events are always triggered before the
|
|
// mouse double click events, and if we intercept the mouse release
|
|
// events here, we'll never get the double click events afterwards,
|
|
// so we have to wait for a little bit to make sure the double
|
|
// click events are handled first, before we actually handle the
|
|
// mouse release events here.
|
|
// We need to wait long enough because the time interval between these
|
|
// events is really really short, if the delay time is not long enough,
|
|
// we still can't trigger the double click event due to we have handled
|
|
// the mouse release events here already. But we also can't wait too
|
|
// long, otherwise the system menu will show up too late, which is not
|
|
// a good user experience. In my experiments, I found that 150ms is
|
|
// the minimum value we can use here.
|
|
// We need a copy of the "scenePos" variable here, otherwise it will
|
|
// soon fall out of scope when the lambda function actually runs.
|
|
QTimer::singleShot(150, this, [this, button, q, scenePos](){
|
|
// The close event is already triggered, don't try to show the
|
|
// system menu anymore, otherwise it will prevent our window
|
|
// from closing.
|
|
if (m_closeTriggered) {
|
|
return;
|
|
}
|
|
// Please refer to the comments in StandardTitleBarPrivate::setWindowIconVisible().
|
|
FramelessWidgetsHelper::get(m_window)->showSystemMenu([button, q, &scenePos, this]() -> QPoint {
|
|
QPoint pos = scenePos;
|
|
if (button == Qt::LeftButton) {
|
|
pos = {0, q->height()};
|
|
}
|
|
return m_window->mapToGlobal(pos);
|
|
}());
|
|
});
|
|
// Don't eat this event, we have not handled it yet.
|
|
}
|
|
break;
|
|
case QEvent::MouseButtonDblClick:
|
|
// We need a valid top level widget here.
|
|
if (m_window && (button == Qt::LeftButton) && interestArea) {
|
|
m_closeTriggered = true;
|
|
m_window->close();
|
|
// Eat this event, we have handled it here.
|
|
event->accept();
|
|
return true;
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return false;
|
|
#endif // Q_OS_MACOS
|
|
}
|
|
|
|
QRect StandardTitleBarPrivate::windowIconRect() const
|
|
{
|
|
Q_Q(const StandardTitleBar);
|
|
const QSize size = windowIconSize();
|
|
#ifdef Q_OS_MACOS
|
|
const auto x = [this, q, &size]() -> int {
|
|
if (m_labelAlignment & Qt::AlignLeft) {
|
|
return (kMacOSChromeButtonAreaWidth + kDefaultTitleBarContentsMargin);
|
|
}
|
|
const int titleBarWidth = q->width();
|
|
const int labelWidth = titleLabelSize().width;
|
|
if (m_labelAlignment & Qt::AlignRight) {
|
|
// We need two spacer here, one is on the right edge of the title bar,
|
|
// the other one is between the window icon and the window label.
|
|
return (titleBarWidth - kDefaultTitleBarContentsMargin
|
|
- labelWidth - kDefaultTitleBarContentsMargin - size.width());
|
|
}
|
|
if (m_labelAlignment & Qt::AlignHCenter) {
|
|
const int centeredX = std::round(qreal(titleBarWidth - labelWidth) / qreal(2));
|
|
return (centeredX - kDefaultTitleBarContentsMargin - size.width());
|
|
}
|
|
WARNING << "The alignment for the title label is not set!";
|
|
return 0;
|
|
}();
|
|
#else // !Q_OS_MACOS
|
|
const int x = kDefaultTitleBarContentsMargin;
|
|
#endif // Q_OS_MACOS
|
|
const int y = std::round(qreal(q->height() - size.height()) / qreal(2));
|
|
return {QPoint(x, y), size};
|
|
}
|
|
|
|
bool StandardTitleBarPrivate::windowIconVisible_real() const
|
|
{
|
|
return (m_windowIconVisible && !m_window->windowIcon().isNull());
|
|
}
|
|
|
|
bool StandardTitleBarPrivate::isInTitleBarIconArea(const QPoint &pos) const
|
|
{
|
|
if (!windowIconVisible_real()) {
|
|
return false;
|
|
}
|
|
return windowIconRect().contains(pos);
|
|
}
|
|
|
|
void StandardTitleBarPrivate::updateMaximizeButton()
|
|
{
|
|
#ifndef Q_OS_MACOS
|
|
const bool max = m_window->isMaximized();
|
|
m_maximizeButton->setButtonType(max ? SystemButtonType::Restore : SystemButtonType::Maximize);
|
|
m_maximizeButton->setToolTip(max ? tr("Restore") : tr("Maximize"));
|
|
#endif // Q_OS_MACOS
|
|
}
|
|
|
|
void StandardTitleBarPrivate::updateTitleBarColor()
|
|
{
|
|
Q_Q(StandardTitleBar);
|
|
q->update();
|
|
}
|
|
|
|
void StandardTitleBarPrivate::updateChromeButtonColor()
|
|
{
|
|
#ifndef Q_OS_MACOS
|
|
const bool active = m_window->isActiveWindow();
|
|
const QColor activeForeground = m_chromePalette->titleBarActiveForegroundColor();
|
|
const QColor inactiveForeground = m_chromePalette->titleBarInactiveForegroundColor();
|
|
const QColor normal = m_chromePalette->chromeButtonNormalColor();
|
|
const QColor hover = m_chromePalette->chromeButtonHoverColor();
|
|
const QColor press = m_chromePalette->chromeButtonPressColor();
|
|
m_minimizeButton->setActiveForegroundColor(activeForeground);
|
|
m_minimizeButton->setInactiveForegroundColor(inactiveForeground);
|
|
m_minimizeButton->setNormalColor(normal);
|
|
m_minimizeButton->setHoverColor(hover);
|
|
m_minimizeButton->setPressColor(press);
|
|
m_minimizeButton->setActive(active);
|
|
m_maximizeButton->setActiveForegroundColor(activeForeground);
|
|
m_maximizeButton->setInactiveForegroundColor(inactiveForeground);
|
|
m_maximizeButton->setNormalColor(normal);
|
|
m_maximizeButton->setHoverColor(hover);
|
|
m_maximizeButton->setPressColor(press);
|
|
m_maximizeButton->setActive(active);
|
|
m_closeButton->setActiveForegroundColor(activeForeground);
|
|
m_closeButton->setInactiveForegroundColor(inactiveForeground);
|
|
m_closeButton->setNormalColor(m_chromePalette->closeButtonNormalColor());
|
|
m_closeButton->setHoverColor(m_chromePalette->closeButtonHoverColor());
|
|
m_closeButton->setPressColor(m_chromePalette->closeButtonPressColor());
|
|
m_closeButton->setActive(active);
|
|
#endif // Q_OS_MACOS
|
|
}
|
|
|
|
void StandardTitleBarPrivate::retranslateUi()
|
|
{
|
|
#ifndef Q_OS_MACOS
|
|
m_minimizeButton->setToolTip(tr("Minimize"));
|
|
m_maximizeButton->setToolTip(m_window->isMaximized() ? tr("Restore") : tr("Maximize"));
|
|
m_closeButton->setToolTip(tr("Close"));
|
|
#endif // Q_OS_MACOS
|
|
}
|
|
|
|
bool StandardTitleBarPrivate::eventFilter(QObject *object, QEvent *event)
|
|
{
|
|
Q_ASSERT(object);
|
|
Q_ASSERT(event);
|
|
if (!object || !event) {
|
|
return false;
|
|
}
|
|
if (!object->isWidgetType()) {
|
|
return QObject::eventFilter(object, event);
|
|
}
|
|
const auto widget = qobject_cast<QWidget *>(object);
|
|
if (!widget->isWindow() || (widget != m_window)) {
|
|
return QObject::eventFilter(object, event);
|
|
}
|
|
switch (event->type()) {
|
|
case QEvent::WindowStateChange:
|
|
updateMaximizeButton();
|
|
break;
|
|
case QEvent::ActivationChange:
|
|
updateTitleBarColor();
|
|
updateChromeButtonColor();
|
|
break;
|
|
case QEvent::LanguageChange:
|
|
retranslateUi();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return QObject::eventFilter(object, event);
|
|
}
|
|
|
|
void StandardTitleBarPrivate::initialize()
|
|
{
|
|
Q_Q(StandardTitleBar);
|
|
m_window = q->window();
|
|
m_chromePalette = new ChromePalette(this);
|
|
connect(m_chromePalette, &ChromePalette::titleBarColorChanged,
|
|
this, &StandardTitleBarPrivate::updateTitleBarColor);
|
|
connect(m_chromePalette, &ChromePalette::chromeButtonColorChanged,
|
|
this, &StandardTitleBarPrivate::updateChromeButtonColor);
|
|
q->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
|
|
q->setFixedHeight(kDefaultTitleBarHeight);
|
|
connect(m_window, &QWidget::windowIconChanged, this, [q](const QIcon &icon){
|
|
Q_UNUSED(icon);
|
|
q->update();
|
|
});
|
|
connect(m_window, &QWidget::windowTitleChanged, this, [q](const QString &title){
|
|
Q_UNUSED(title);
|
|
q->update();
|
|
});
|
|
#ifdef Q_OS_MACOS
|
|
const auto titleBarLayout = new QHBoxLayout(q);
|
|
titleBarLayout->setSpacing(0);
|
|
titleBarLayout->setContentsMargins(0, 0, 0, 0);
|
|
q->setLayout(titleBarLayout);
|
|
setTitleLabelAlignment(Qt::AlignCenter);
|
|
#else // !Q_OS_MACOS
|
|
m_minimizeButton = new StandardSystemButton(SystemButtonType::Minimize, q);
|
|
connect(m_minimizeButton, &StandardSystemButton::clicked, m_window, &QWidget::showMinimized);
|
|
m_maximizeButton = new StandardSystemButton(SystemButtonType::Maximize, q);
|
|
updateMaximizeButton();
|
|
connect(m_maximizeButton, &StandardSystemButton::clicked, this, [this](){
|
|
if (m_window->isMaximized()) {
|
|
m_window->showNormal();
|
|
} else {
|
|
m_window->showMaximized();
|
|
}
|
|
});
|
|
m_closeButton = new StandardSystemButton(SystemButtonType::Close, q);
|
|
connect(m_closeButton, &StandardSystemButton::clicked, this, [this](){
|
|
if (m_hideWhenClose) {
|
|
m_window->hide();
|
|
} else {
|
|
m_window->close();
|
|
}
|
|
});
|
|
// According to the title bar design guidance, the system buttons should always be
|
|
// placed on the top-right corner of the window, so we need the following additional
|
|
// layouts to ensure this.
|
|
const auto systemButtonsInnerLayout = new QHBoxLayout;
|
|
systemButtonsInnerLayout->setSpacing(0);
|
|
systemButtonsInnerLayout->setContentsMargins(0, 0, 0, 0);
|
|
systemButtonsInnerLayout->addWidget(m_minimizeButton);
|
|
systemButtonsInnerLayout->addWidget(m_maximizeButton);
|
|
systemButtonsInnerLayout->addWidget(m_closeButton);
|
|
const auto systemButtonsOuterLayout = new QVBoxLayout;
|
|
systemButtonsOuterLayout->setSpacing(0);
|
|
systemButtonsOuterLayout->setContentsMargins(0, 0, 0, 0);
|
|
systemButtonsOuterLayout->addLayout(systemButtonsInnerLayout);
|
|
systemButtonsOuterLayout->addStretch();
|
|
const auto titleBarLayout = new QHBoxLayout(q);
|
|
titleBarLayout->setSpacing(0);
|
|
titleBarLayout->setContentsMargins(0, 0, 0, 0);
|
|
titleBarLayout->addStretch();
|
|
titleBarLayout->addLayout(systemButtonsOuterLayout);
|
|
q->setLayout(titleBarLayout);
|
|
setTitleLabelAlignment(Qt::AlignLeft | Qt::AlignVCenter);
|
|
#endif // Q_OS_MACOS
|
|
retranslateUi();
|
|
updateTitleBarColor();
|
|
updateChromeButtonColor();
|
|
m_window->installEventFilter(this);
|
|
}
|
|
|
|
StandardTitleBar::StandardTitleBar(QWidget *parent)
|
|
: QWidget(parent), d_ptr(new StandardTitleBarPrivate(this))
|
|
{
|
|
}
|
|
|
|
StandardTitleBar::~StandardTitleBar() = default;
|
|
|
|
Qt::Alignment StandardTitleBar::titleLabelAlignment() const
|
|
{
|
|
Q_D(const StandardTitleBar);
|
|
return d->titleLabelAlignment();
|
|
}
|
|
|
|
void StandardTitleBar::setTitleLabelAlignment(const Qt::Alignment value)
|
|
{
|
|
Q_D(StandardTitleBar);
|
|
d->setTitleLabelAlignment(value);
|
|
}
|
|
|
|
#ifndef Q_OS_MACOS
|
|
StandardSystemButton *StandardTitleBar::minimizeButton() const
|
|
{
|
|
Q_D(const StandardTitleBar);
|
|
return d->m_minimizeButton;
|
|
}
|
|
|
|
StandardSystemButton *StandardTitleBar::maximizeButton() const
|
|
{
|
|
Q_D(const StandardTitleBar);
|
|
return d->m_maximizeButton;
|
|
}
|
|
|
|
StandardSystemButton *StandardTitleBar::closeButton() const
|
|
{
|
|
Q_D(const StandardTitleBar);
|
|
return d->m_closeButton;
|
|
}
|
|
#endif // Q_OS_MACOS
|
|
|
|
bool StandardTitleBar::isExtended() const
|
|
{
|
|
Q_D(const StandardTitleBar);
|
|
return d->isExtended();
|
|
}
|
|
|
|
void StandardTitleBar::setExtended(const bool value)
|
|
{
|
|
Q_D(StandardTitleBar);
|
|
d->setExtended(value);
|
|
}
|
|
|
|
bool StandardTitleBar::isHideWhenClose() const
|
|
{
|
|
Q_D(const StandardTitleBar);
|
|
return d->isHideWhenClose();
|
|
}
|
|
|
|
void StandardTitleBar::setHideWhenClose(const bool value)
|
|
{
|
|
Q_D(StandardTitleBar);
|
|
d->setHideWhenClose(value);
|
|
}
|
|
|
|
ChromePalette *StandardTitleBar::chromePalette() const
|
|
{
|
|
Q_D(const StandardTitleBar);
|
|
return d->chromePalette();
|
|
}
|
|
|
|
bool StandardTitleBar::titleLabelVisible() const
|
|
{
|
|
Q_D(const StandardTitleBar);
|
|
return d->titleLabelVisible();
|
|
}
|
|
|
|
void StandardTitleBar::setTitleLabelVisible(const bool value)
|
|
{
|
|
Q_D(StandardTitleBar);
|
|
d->setTitleLabelVisible(value);
|
|
}
|
|
|
|
QSize StandardTitleBar::windowIconSize() const
|
|
{
|
|
Q_D(const StandardTitleBar);
|
|
return d->windowIconSize();
|
|
}
|
|
|
|
void StandardTitleBar::setWindowIconSize(const QSize &value)
|
|
{
|
|
Q_D(StandardTitleBar);
|
|
d->setWindowIconSize(value);
|
|
}
|
|
|
|
bool StandardTitleBar::windowIconVisible() const
|
|
{
|
|
Q_D(const StandardTitleBar);
|
|
return d->windowIconVisible();
|
|
}
|
|
|
|
void StandardTitleBar::setWindowIconVisible(const bool value)
|
|
{
|
|
Q_D(StandardTitleBar);
|
|
d->setWindowIconVisible(value);
|
|
}
|
|
|
|
QFont StandardTitleBar::titleFont() const
|
|
{
|
|
Q_D(const StandardTitleBar);
|
|
return d->titleFont();
|
|
}
|
|
|
|
void StandardTitleBar::setTitleFont(const QFont &value)
|
|
{
|
|
Q_D(StandardTitleBar);
|
|
d->setTitleFont(value);
|
|
}
|
|
|
|
void StandardTitleBar::paintEvent(QPaintEvent *event)
|
|
{
|
|
Q_D(StandardTitleBar);
|
|
d->paintTitleBar(event);
|
|
}
|
|
|
|
void StandardTitleBar::mouseReleaseEvent(QMouseEvent *event)
|
|
{
|
|
QWidget::mouseReleaseEvent(event);
|
|
Q_D(StandardTitleBar);
|
|
Q_UNUSED(d->mouseEventHandler(event));
|
|
}
|
|
|
|
void StandardTitleBar::mouseDoubleClickEvent(QMouseEvent *event)
|
|
{
|
|
QWidget::mouseDoubleClickEvent(event);
|
|
Q_D(StandardTitleBar);
|
|
Q_UNUSED(d->mouseEventHandler(event));
|
|
}
|
|
|
|
FRAMELESSHELPER_END_NAMESPACE
|