forked from github_mirror/framelesshelper
246 lines
6.6 KiB
C++
246 lines
6.6 KiB
C++
/*
|
|
* MIT License
|
|
*
|
|
* Copyright (C) 2022 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.
|
|
*/
|
|
|
|
#ifndef FRAMELESSHELPER_QUICK_NO_PRIVATE
|
|
|
|
#include "framelessquickwindow_p.h"
|
|
#include "framelessquickwindow_p_p.h"
|
|
#include "framelessquickhelper.h"
|
|
#include "quickwindowborder.h"
|
|
#include <QtQuick/private/qquickitem_p.h>
|
|
|
|
FRAMELESSHELPER_BEGIN_NAMESPACE
|
|
|
|
Q_LOGGING_CATEGORY(lcFramelessQuickWindow, "wangwenx190.framelesshelper.quick.framelessquickwindow")
|
|
|
|
#ifdef FRAMELESSHELPER_QUICK_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(lcFramelessQuickWindow)
|
|
# define DEBUG qCDebug(lcFramelessQuickWindow)
|
|
# define WARNING qCWarning(lcFramelessQuickWindow)
|
|
# define CRITICAL qCCritical(lcFramelessQuickWindow)
|
|
#endif
|
|
|
|
using namespace Global;
|
|
|
|
FramelessQuickWindowPrivate::FramelessQuickWindowPrivate(FramelessQuickWindow *q) : QObject(q)
|
|
{
|
|
Q_ASSERT(q);
|
|
if (!q) {
|
|
return;
|
|
}
|
|
q_ptr = q;
|
|
initialize();
|
|
}
|
|
|
|
FramelessQuickWindowPrivate::~FramelessQuickWindowPrivate() = default;
|
|
|
|
FramelessQuickWindowPrivate *FramelessQuickWindowPrivate::get(FramelessQuickWindow *pub)
|
|
{
|
|
Q_ASSERT(pub);
|
|
if (!pub) {
|
|
return nullptr;
|
|
}
|
|
return pub->d_func();
|
|
}
|
|
|
|
const FramelessQuickWindowPrivate *FramelessQuickWindowPrivate::get(const FramelessQuickWindow *pub)
|
|
{
|
|
Q_ASSERT(pub);
|
|
if (!pub) {
|
|
return nullptr;
|
|
}
|
|
return pub->d_func();
|
|
}
|
|
|
|
bool FramelessQuickWindowPrivate::isHidden() const
|
|
{
|
|
Q_Q(const FramelessQuickWindow);
|
|
return (q->visibility() == FramelessQuickWindow::Hidden);
|
|
}
|
|
|
|
bool FramelessQuickWindowPrivate::isNormal() const
|
|
{
|
|
Q_Q(const FramelessQuickWindow);
|
|
return (q->visibility() == FramelessQuickWindow::Windowed);
|
|
}
|
|
|
|
bool FramelessQuickWindowPrivate::isMinimized() const
|
|
{
|
|
Q_Q(const FramelessQuickWindow);
|
|
return (q->visibility() == FramelessQuickWindow::Minimized);
|
|
}
|
|
|
|
bool FramelessQuickWindowPrivate::isMaximized() const
|
|
{
|
|
Q_Q(const FramelessQuickWindow);
|
|
return (q->visibility() == FramelessQuickWindow::Maximized);
|
|
}
|
|
|
|
bool FramelessQuickWindowPrivate::isZoomed() const
|
|
{
|
|
Q_Q(const FramelessQuickWindow);
|
|
return (isMaximized() || (q->visibility() == FramelessQuickWindow::FullScreen));
|
|
}
|
|
|
|
bool FramelessQuickWindowPrivate::isFullScreen() const
|
|
{
|
|
Q_Q(const FramelessQuickWindow);
|
|
return (q->visibility() == FramelessQuickWindow::FullScreen);
|
|
}
|
|
|
|
void FramelessQuickWindowPrivate::showMinimized2()
|
|
{
|
|
Q_Q(FramelessQuickWindow);
|
|
#ifdef Q_OS_WINDOWS
|
|
// Work-around a QtQuick bug: https://bugreports.qt.io/browse/QTBUG-69711
|
|
// Don't use "SW_SHOWMINIMIZED" because it will activate the current window
|
|
// instead of the next window in the Z order, which is not the default behavior
|
|
// of native Win32 applications.
|
|
ShowWindow(reinterpret_cast<HWND>(q->winId()), SW_MINIMIZE);
|
|
#else
|
|
q->showMinimized();
|
|
#endif
|
|
}
|
|
|
|
void FramelessQuickWindowPrivate::toggleMaximized()
|
|
{
|
|
Q_Q(FramelessQuickWindow);
|
|
if (isMaximized()) {
|
|
q->showNormal();
|
|
} else {
|
|
q->showMaximized();
|
|
}
|
|
}
|
|
|
|
void FramelessQuickWindowPrivate::toggleFullScreen()
|
|
{
|
|
Q_Q(FramelessQuickWindow);
|
|
if (isFullScreen()) {
|
|
q->setVisibility(m_savedVisibility);
|
|
} else {
|
|
m_savedVisibility = q->visibility();
|
|
q->showFullScreen();
|
|
}
|
|
}
|
|
|
|
void FramelessQuickWindowPrivate::initialize()
|
|
{
|
|
Q_Q(FramelessQuickWindow);
|
|
QQuickItem * const rootItem = q->contentItem();
|
|
FramelessQuickHelper::get(rootItem)->extendsContentIntoTitleBar();
|
|
m_windowBorder.reset(new QuickWindowBorder);
|
|
m_windowBorder->setParent(rootItem);
|
|
m_windowBorder->setParentItem(rootItem);
|
|
m_windowBorder->setZ(999); // Make sure it always stays on the top.
|
|
QQuickItemPrivate::get(m_windowBorder.data())->anchors()->setFill(rootItem);
|
|
connect(q, &FramelessQuickWindow::visibilityChanged, q, [q](){
|
|
Q_EMIT q->hiddenChanged();
|
|
Q_EMIT q->normalChanged();
|
|
Q_EMIT q->minimizedChanged();
|
|
Q_EMIT q->maximizedChanged();
|
|
Q_EMIT q->zoomedChanged();
|
|
Q_EMIT q->fullScreenChanged();
|
|
});
|
|
}
|
|
|
|
FramelessQuickWindow::FramelessQuickWindow(QWindow *parent)
|
|
: QQuickWindowQmlImpl(parent), d_ptr(new FramelessQuickWindowPrivate(this))
|
|
{
|
|
}
|
|
|
|
FramelessQuickWindow::~FramelessQuickWindow() = default;
|
|
|
|
bool FramelessQuickWindow::isHidden() const
|
|
{
|
|
Q_D(const FramelessQuickWindow);
|
|
return d->isHidden();
|
|
}
|
|
|
|
bool FramelessQuickWindow::isNormal() const
|
|
{
|
|
Q_D(const FramelessQuickWindow);
|
|
return d->isNormal();
|
|
}
|
|
|
|
bool FramelessQuickWindow::isMinimized() const
|
|
{
|
|
Q_D(const FramelessQuickWindow);
|
|
return d->isMinimized();
|
|
}
|
|
|
|
bool FramelessQuickWindow::isMaximized() const
|
|
{
|
|
Q_D(const FramelessQuickWindow);
|
|
return d->isMaximized();
|
|
}
|
|
|
|
bool FramelessQuickWindow::isZoomed() const
|
|
{
|
|
Q_D(const FramelessQuickWindow);
|
|
return d->isZoomed();
|
|
}
|
|
|
|
bool FramelessQuickWindow::isFullScreen() const
|
|
{
|
|
Q_D(const FramelessQuickWindow);
|
|
return d->isFullScreen();
|
|
}
|
|
|
|
void FramelessQuickWindow::showMinimized2()
|
|
{
|
|
Q_D(FramelessQuickWindow);
|
|
d->showMinimized2();
|
|
}
|
|
|
|
void FramelessQuickWindow::toggleMaximized()
|
|
{
|
|
Q_D(FramelessQuickWindow);
|
|
d->toggleMaximized();
|
|
}
|
|
|
|
void FramelessQuickWindow::toggleFullScreen()
|
|
{
|
|
Q_D(FramelessQuickWindow);
|
|
d->toggleFullScreen();
|
|
}
|
|
|
|
void FramelessQuickWindow::classBegin()
|
|
{
|
|
QQuickWindowQmlImpl::classBegin();
|
|
}
|
|
|
|
void FramelessQuickWindow::componentComplete()
|
|
{
|
|
QQuickWindowQmlImpl::componentComplete();
|
|
}
|
|
|
|
FRAMELESSHELPER_END_NAMESPACE
|
|
|
|
#endif // FRAMELESSHELPER_QUICK_NO_PRIVATE
|