2018-01-14 21:55:36 +01:00
|
|
|
#include "basewindow.hpp"
|
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
#include "application.hpp"
|
2018-06-11 15:04:54 +02:00
|
|
|
#include "boost/algorithm/algorithm.hpp"
|
2018-04-03 02:55:32 +02:00
|
|
|
#include "debug/log.hpp"
|
2018-01-14 21:55:36 +01:00
|
|
|
#include "singletons/settingsmanager.hpp"
|
2018-06-11 15:04:54 +02:00
|
|
|
#include "singletons/windowmanager.hpp"
|
2018-01-14 21:55:36 +01:00
|
|
|
#include "util/nativeeventhelper.hpp"
|
2018-06-11 15:04:54 +02:00
|
|
|
#include "util/posttothread.hpp"
|
2018-02-05 23:32:38 +01:00
|
|
|
#include "widgets/helper/rippleeffectlabel.hpp"
|
2018-06-11 15:04:54 +02:00
|
|
|
#include "widgets/helper/shortcut.hpp"
|
|
|
|
#include "widgets/label.hpp"
|
2018-01-14 21:55:36 +01:00
|
|
|
#include "widgets/tooltipwidget.hpp"
|
|
|
|
|
2018-01-15 01:35:35 +01:00
|
|
|
#include <QApplication>
|
2018-01-14 21:55:36 +01:00
|
|
|
#include <QDebug>
|
2018-01-22 20:52:32 +01:00
|
|
|
#include <QDesktopWidget>
|
2018-01-14 21:55:36 +01:00
|
|
|
#include <QIcon>
|
|
|
|
|
2018-01-15 01:35:35 +01:00
|
|
|
#ifdef USEWINSDK
|
2018-04-03 02:55:32 +02:00
|
|
|
#include <ObjIdl.h>
|
2018-04-08 17:07:40 +02:00
|
|
|
#include <VersionHelpers.h>
|
2018-04-03 02:55:32 +02:00
|
|
|
#include <Windows.h>
|
2018-01-15 01:35:35 +01:00
|
|
|
#include <dwmapi.h>
|
|
|
|
#include <gdiplus.h>
|
|
|
|
#include <windowsx.h>
|
|
|
|
#pragma comment(lib, "Dwmapi.lib")
|
|
|
|
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
|
|
|
#define WM_DPICHANGED 0x02E0
|
|
|
|
#endif
|
2018-01-14 21:59:45 +01:00
|
|
|
|
2018-01-24 20:27:56 +01:00
|
|
|
#include "widgets/helper/titlebarbutton.hpp"
|
2018-01-15 04:08:48 +01:00
|
|
|
|
2018-01-14 21:55:36 +01:00
|
|
|
namespace chatterino {
|
|
|
|
namespace widgets {
|
|
|
|
|
2018-05-24 10:03:07 +02:00
|
|
|
BaseWindow::BaseWindow(QWidget *parent, Flags _flags)
|
|
|
|
: BaseWidget(parent,
|
2018-06-06 15:54:14 +02:00
|
|
|
Qt::Window | ((_flags & TopMost) ? Qt::WindowStaysOnTopHint : Qt::WindowFlags()))
|
2018-06-11 15:04:54 +02:00
|
|
|
, enableCustomFrame_(_flags & EnableCustomFrame)
|
|
|
|
, frameless_(_flags & Frameless)
|
|
|
|
, flags_(_flags)
|
2018-01-14 21:55:36 +01:00
|
|
|
{
|
2018-06-11 15:04:54 +02:00
|
|
|
if (this->frameless_) {
|
|
|
|
this->enableCustomFrame_ = false;
|
2018-05-23 22:27:29 +02:00
|
|
|
this->setWindowFlag(Qt::FramelessWindowHint);
|
|
|
|
}
|
|
|
|
|
2018-06-11 15:04:54 +02:00
|
|
|
if (this->flags_ & DeleteOnFocusOut) {
|
2018-06-06 13:35:06 +02:00
|
|
|
this->setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
}
|
|
|
|
|
2018-01-14 21:55:36 +01:00
|
|
|
this->init();
|
2018-06-11 15:04:54 +02:00
|
|
|
|
|
|
|
this->connections_.managedConnect(
|
|
|
|
getApp()->settings->uiScale.getValueChangedSignal(),
|
|
|
|
[this](auto, auto) { util::postToThread([this] { this->updateScale(); }); });
|
|
|
|
|
|
|
|
this->updateScale();
|
|
|
|
|
|
|
|
CreateWindowShortcut(this, "CTRL+0", [] { getApp()->settings->uiScale.setValue(1); });
|
2018-01-14 21:55:36 +01:00
|
|
|
}
|
|
|
|
|
2018-05-24 10:03:07 +02:00
|
|
|
BaseWindow::Flags BaseWindow::getFlags()
|
|
|
|
{
|
2018-06-11 15:04:54 +02:00
|
|
|
return this->flags_;
|
2018-05-24 10:03:07 +02:00
|
|
|
}
|
|
|
|
|
2018-01-14 21:55:36 +01:00
|
|
|
void BaseWindow::init()
|
|
|
|
{
|
|
|
|
this->setWindowIcon(QIcon(":/images/icon.png"));
|
|
|
|
|
|
|
|
#ifdef USEWINSDK
|
2018-01-15 01:35:35 +01:00
|
|
|
if (this->hasCustomWindowFrame()) {
|
|
|
|
// CUSTOM WINDOW FRAME
|
2018-01-25 20:49:49 +01:00
|
|
|
QVBoxLayout *layout = new QVBoxLayout();
|
2018-04-08 17:07:40 +02:00
|
|
|
layout->setContentsMargins(0, 1, 0, 0);
|
2018-01-24 15:08:22 +01:00
|
|
|
layout->setSpacing(0);
|
2018-01-15 01:35:35 +01:00
|
|
|
this->setLayout(layout);
|
|
|
|
{
|
2018-06-11 15:04:54 +02:00
|
|
|
if (!this->frameless_) {
|
|
|
|
QHBoxLayout *buttonLayout = this->ui_.titlebarBox = new QHBoxLayout();
|
2018-05-23 22:27:29 +02:00
|
|
|
buttonLayout->setMargin(0);
|
|
|
|
layout->addLayout(buttonLayout);
|
|
|
|
|
|
|
|
// title
|
2018-06-11 15:04:54 +02:00
|
|
|
Label *title = new Label("Chatterino");
|
2018-05-23 22:27:29 +02:00
|
|
|
QObject::connect(this, &QWidget::windowTitleChanged,
|
2018-06-11 15:04:54 +02:00
|
|
|
[title](const QString &text) { title->setText(text); });
|
2018-05-23 22:27:29 +02:00
|
|
|
|
|
|
|
QSizePolicy policy(QSizePolicy::Ignored, QSizePolicy::Preferred);
|
|
|
|
policy.setHorizontalStretch(1);
|
|
|
|
// title->setBaseSize(0, 0);
|
2018-06-11 15:04:54 +02:00
|
|
|
// title->setScaledContents(true);
|
2018-05-23 22:27:29 +02:00
|
|
|
title->setSizePolicy(policy);
|
|
|
|
buttonLayout->addWidget(title);
|
2018-06-11 15:04:54 +02:00
|
|
|
this->ui_.titleLabel = title;
|
2018-05-23 22:27:29 +02:00
|
|
|
|
|
|
|
// buttons
|
|
|
|
TitleBarButton *_minButton = new TitleBarButton;
|
|
|
|
_minButton->setButtonStyle(TitleBarButton::Minimize);
|
|
|
|
TitleBarButton *_maxButton = new TitleBarButton;
|
|
|
|
_maxButton->setButtonStyle(TitleBarButton::Maximize);
|
|
|
|
TitleBarButton *_exitButton = new TitleBarButton;
|
|
|
|
_exitButton->setButtonStyle(TitleBarButton::Close);
|
|
|
|
|
|
|
|
QObject::connect(_minButton, &TitleBarButton::clicked, this, [this] {
|
|
|
|
this->setWindowState(Qt::WindowMinimized | this->windowState());
|
|
|
|
});
|
|
|
|
QObject::connect(_maxButton, &TitleBarButton::clicked, this, [this] {
|
|
|
|
this->setWindowState(this->windowState() == Qt::WindowMaximized
|
|
|
|
? Qt::WindowActive
|
|
|
|
: Qt::WindowMaximized);
|
|
|
|
});
|
|
|
|
QObject::connect(_exitButton, &TitleBarButton::clicked, this,
|
|
|
|
[this] { this->close(); });
|
|
|
|
|
2018-06-11 15:04:54 +02:00
|
|
|
this->ui_.minButton = _minButton;
|
|
|
|
this->ui_.maxButton = _maxButton;
|
|
|
|
this->ui_.exitButton = _exitButton;
|
2018-05-23 22:27:29 +02:00
|
|
|
|
2018-06-11 15:04:54 +02:00
|
|
|
this->ui_.buttons.push_back(_minButton);
|
|
|
|
this->ui_.buttons.push_back(_maxButton);
|
|
|
|
this->ui_.buttons.push_back(_exitButton);
|
2018-05-23 22:27:29 +02:00
|
|
|
|
|
|
|
// buttonLayout->addStretch(1);
|
|
|
|
buttonLayout->addWidget(_minButton);
|
|
|
|
buttonLayout->addWidget(_maxButton);
|
|
|
|
buttonLayout->addWidget(_exitButton);
|
|
|
|
buttonLayout->setSpacing(0);
|
|
|
|
}
|
2018-01-15 01:35:35 +01:00
|
|
|
}
|
2018-06-11 15:04:54 +02:00
|
|
|
this->ui_.layoutBase = new BaseWidget(this);
|
|
|
|
layout->addWidget(this->ui_.layoutBase);
|
2018-01-15 01:35:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// DPI
|
2018-01-14 21:55:36 +01:00
|
|
|
auto dpi = util::getWindowDpi(this->winId());
|
|
|
|
|
|
|
|
if (dpi) {
|
2018-01-25 20:49:49 +01:00
|
|
|
this->scale = dpi.value() / 96.f;
|
2018-01-14 21:55:36 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-05-23 12:31:03 +02:00
|
|
|
#ifdef USEWINSDK
|
2018-05-24 10:03:07 +02:00
|
|
|
// fourtf: don't ask me why we need to delay this
|
2018-06-11 15:04:54 +02:00
|
|
|
if (!(this->flags_ & Flags::TopMost)) {
|
2018-05-26 17:11:09 +02:00
|
|
|
QTimer::singleShot(1, this, [this] {
|
2018-05-24 10:03:07 +02:00
|
|
|
getApp()->settings->windowTopMost.connect([this](bool topMost, auto) {
|
2018-05-26 17:11:09 +02:00
|
|
|
::SetWindowPos(HWND(this->winId()), topMost ? HWND_TOPMOST : HWND_NOTOPMOST, 0, 0,
|
|
|
|
0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
|
2018-05-24 10:03:07 +02:00
|
|
|
});
|
2018-05-26 17:11:09 +02:00
|
|
|
});
|
|
|
|
}
|
2018-05-23 12:31:03 +02:00
|
|
|
#else
|
2018-05-24 10:03:07 +02:00
|
|
|
// if (getApp()->settings->windowTopMost.getValue()) {
|
|
|
|
// this->setWindowFlag(Qt::WindowStaysOnTopHint);
|
|
|
|
// }
|
2018-05-23 12:31:03 +02:00
|
|
|
#endif
|
2018-01-14 21:55:36 +01:00
|
|
|
}
|
|
|
|
|
2018-01-22 20:52:32 +01:00
|
|
|
void BaseWindow::setStayInScreenRect(bool value)
|
|
|
|
{
|
2018-06-11 15:04:54 +02:00
|
|
|
this->stayInScreenRect_ = value;
|
2018-01-22 20:52:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool BaseWindow::getStayInScreenRect() const
|
|
|
|
{
|
2018-06-11 15:04:54 +02:00
|
|
|
return this->stayInScreenRect_;
|
2018-01-22 20:52:32 +01:00
|
|
|
}
|
|
|
|
|
2018-01-15 01:35:35 +01:00
|
|
|
QWidget *BaseWindow::getLayoutContainer()
|
|
|
|
{
|
2018-01-15 04:08:48 +01:00
|
|
|
if (this->hasCustomWindowFrame()) {
|
2018-06-11 15:04:54 +02:00
|
|
|
return this->ui_.layoutBase;
|
2018-01-15 01:35:35 +01:00
|
|
|
} else {
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BaseWindow::hasCustomWindowFrame()
|
|
|
|
{
|
2018-04-02 11:46:56 +02:00
|
|
|
#ifdef USEWINSDK
|
2018-04-08 17:07:40 +02:00
|
|
|
static bool isWin8 = IsWindows8OrGreater();
|
|
|
|
|
2018-06-11 15:04:54 +02:00
|
|
|
return isWin8 && this->enableCustomFrame_;
|
2018-01-15 01:35:35 +01:00
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-01-25 20:49:49 +01:00
|
|
|
void BaseWindow::themeRefreshEvent()
|
2018-01-15 01:35:35 +01:00
|
|
|
{
|
2018-04-20 23:54:19 +02:00
|
|
|
if (this->hasCustomWindowFrame()) {
|
2018-02-05 21:33:22 +01:00
|
|
|
QPalette palette;
|
2018-04-08 17:07:40 +02:00
|
|
|
palette.setColor(QPalette::Background, QColor(0, 0, 0, 0));
|
2018-04-27 22:11:19 +02:00
|
|
|
palette.setColor(QPalette::Foreground, this->themeManager->window.text);
|
2018-02-05 21:33:22 +01:00
|
|
|
this->setPalette(palette);
|
|
|
|
|
2018-06-11 15:04:54 +02:00
|
|
|
if (this->ui_.titleLabel) {
|
2018-05-23 22:27:29 +02:00
|
|
|
QPalette palette_title;
|
|
|
|
palette_title.setColor(QPalette::Foreground,
|
|
|
|
this->themeManager->isLightTheme() ? "#333" : "#ccc");
|
2018-06-11 15:04:54 +02:00
|
|
|
this->ui_.titleLabel->setPalette(palette_title);
|
2018-05-23 22:27:29 +02:00
|
|
|
}
|
2018-04-18 18:55:49 +02:00
|
|
|
|
2018-06-11 15:04:54 +02:00
|
|
|
for (RippleEffectButton *button : this->ui_.buttons) {
|
2018-04-27 22:11:19 +02:00
|
|
|
button->setMouseEffectColor(this->themeManager->window.text);
|
2018-02-05 21:33:22 +01:00
|
|
|
}
|
2018-04-13 23:41:52 +02:00
|
|
|
} else {
|
|
|
|
QPalette palette;
|
2018-04-27 22:11:19 +02:00
|
|
|
palette.setColor(QPalette::Background, this->themeManager->window.background);
|
|
|
|
palette.setColor(QPalette::Foreground, this->themeManager->window.text);
|
2018-04-13 23:41:52 +02:00
|
|
|
this->setPalette(palette);
|
2018-01-24 15:08:22 +01:00
|
|
|
}
|
2018-01-15 01:35:35 +01:00
|
|
|
}
|
|
|
|
|
2018-06-06 13:35:06 +02:00
|
|
|
bool BaseWindow::event(QEvent *event)
|
|
|
|
{
|
2018-06-06 15:54:14 +02:00
|
|
|
if (event->type() == QEvent::WindowDeactivate /*|| event->type() == QEvent::FocusOut*/) {
|
2018-06-11 15:04:54 +02:00
|
|
|
if (this->flags_ & DeleteOnFocusOut) {
|
2018-06-06 13:35:06 +02:00
|
|
|
this->close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return QWidget::event(event);
|
|
|
|
}
|
|
|
|
|
2018-06-11 15:04:54 +02:00
|
|
|
void BaseWindow::wheelEvent(QWheelEvent *event)
|
|
|
|
{
|
|
|
|
if (event->modifiers() & Qt::ControlModifier) {
|
|
|
|
if (event->delta() > 0) {
|
|
|
|
getApp()->settings->uiScale.setValue(singletons::WindowManager::clampUiScale(
|
|
|
|
getApp()->settings->uiScale.getValue() + 1));
|
|
|
|
} else {
|
|
|
|
getApp()->settings->uiScale.setValue(singletons::WindowManager::clampUiScale(
|
|
|
|
getApp()->settings->uiScale.getValue() - 1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-24 20:27:56 +01:00
|
|
|
void BaseWindow::addTitleBarButton(const TitleBarButton::Style &style,
|
|
|
|
std::function<void()> onClicked)
|
2018-01-15 01:35:35 +01:00
|
|
|
{
|
2018-01-24 20:27:56 +01:00
|
|
|
TitleBarButton *button = new TitleBarButton;
|
2018-01-25 21:11:14 +01:00
|
|
|
button->setScaleIndependantSize(30, 30);
|
2018-01-24 20:27:56 +01:00
|
|
|
|
2018-06-11 15:04:54 +02:00
|
|
|
this->ui_.buttons.push_back(button);
|
|
|
|
this->ui_.titlebarBox->insertWidget(1, button);
|
2018-01-24 20:27:56 +01:00
|
|
|
button->setButtonStyle(style);
|
|
|
|
|
|
|
|
QObject::connect(button, &TitleBarButton::clicked, this, [onClicked] { onClicked(); });
|
2018-01-15 01:35:35 +01:00
|
|
|
}
|
|
|
|
|
2018-02-05 23:32:38 +01:00
|
|
|
RippleEffectLabel *BaseWindow::addTitleBarLabel(std::function<void()> onClicked)
|
|
|
|
{
|
|
|
|
RippleEffectLabel *button = new RippleEffectLabel;
|
|
|
|
button->setScaleIndependantHeight(30);
|
|
|
|
|
2018-06-11 15:04:54 +02:00
|
|
|
this->ui_.buttons.push_back(button);
|
|
|
|
this->ui_.titlebarBox->insertWidget(1, button);
|
2018-02-05 23:32:38 +01:00
|
|
|
|
|
|
|
QObject::connect(button, &RippleEffectLabel::clicked, this, [onClicked] { onClicked(); });
|
|
|
|
|
|
|
|
return button;
|
|
|
|
}
|
|
|
|
|
2018-01-14 21:55:36 +01:00
|
|
|
void BaseWindow::changeEvent(QEvent *)
|
|
|
|
{
|
2018-01-22 20:52:32 +01:00
|
|
|
TooltipWidget::getInstance()->hide();
|
2018-01-24 20:27:56 +01:00
|
|
|
|
|
|
|
#ifdef USEWINSDK
|
2018-06-11 15:04:54 +02:00
|
|
|
if (this->ui_.maxButton) {
|
|
|
|
this->ui_.maxButton->setButtonStyle(this->windowState() & Qt::WindowMaximized
|
|
|
|
? TitleBarButton::Unmaximize
|
|
|
|
: TitleBarButton::Maximize);
|
2018-01-24 20:27:56 +01:00
|
|
|
}
|
|
|
|
#endif
|
2018-04-13 22:50:19 +02:00
|
|
|
|
2018-04-13 23:41:52 +02:00
|
|
|
#ifndef Q_OS_WIN
|
2018-04-13 22:50:19 +02:00
|
|
|
this->update();
|
2018-04-13 23:41:52 +02:00
|
|
|
#endif
|
2018-01-14 21:55:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BaseWindow::leaveEvent(QEvent *)
|
|
|
|
{
|
2018-01-22 20:52:32 +01:00
|
|
|
TooltipWidget::getInstance()->hide();
|
|
|
|
}
|
|
|
|
|
2018-05-26 17:11:09 +02:00
|
|
|
void BaseWindow::moveTo(QWidget *parent, QPoint point, bool offset)
|
2018-01-22 20:52:32 +01:00
|
|
|
{
|
2018-05-26 17:11:09 +02:00
|
|
|
if (offset) {
|
|
|
|
point.rx() += 16;
|
|
|
|
point.ry() += 16;
|
|
|
|
}
|
2018-01-22 20:52:32 +01:00
|
|
|
|
|
|
|
this->move(point);
|
|
|
|
this->moveIntoDesktopRect(parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BaseWindow::resizeEvent(QResizeEvent *)
|
|
|
|
{
|
|
|
|
this->moveIntoDesktopRect(this);
|
2018-04-18 18:10:47 +02:00
|
|
|
|
|
|
|
this->calcButtonsSizes();
|
2018-01-22 20:52:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BaseWindow::moveIntoDesktopRect(QWidget *parent)
|
|
|
|
{
|
2018-06-11 15:04:54 +02:00
|
|
|
if (!this->stayInScreenRect_)
|
2018-01-22 20:52:32 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
// move the widget into the screen geometry if it's not already in there
|
|
|
|
QDesktopWidget *desktop = QApplication::desktop();
|
|
|
|
|
|
|
|
QRect s = desktop->screenGeometry(parent);
|
|
|
|
QPoint p = this->pos();
|
|
|
|
|
|
|
|
if (p.x() < s.left()) {
|
|
|
|
p.setX(s.left());
|
|
|
|
}
|
|
|
|
if (p.y() < s.top()) {
|
|
|
|
p.setY(s.top());
|
|
|
|
}
|
|
|
|
if (p.x() + this->width() > s.right()) {
|
|
|
|
p.setX(s.right() - this->width());
|
|
|
|
}
|
|
|
|
if (p.y() + this->height() > s.bottom()) {
|
|
|
|
p.setY(s.bottom() - this->height());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p != this->pos())
|
|
|
|
this->move(p);
|
2018-01-14 21:55:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef USEWINSDK
|
|
|
|
bool BaseWindow::nativeEvent(const QByteArray &eventType, void *message, long *result)
|
|
|
|
{
|
2018-01-14 21:59:45 +01:00
|
|
|
MSG *msg = reinterpret_cast<MSG *>(message);
|
2018-01-14 21:55:36 +01:00
|
|
|
|
2018-01-15 01:35:35 +01:00
|
|
|
switch (msg->message) {
|
|
|
|
case WM_DPICHANGED: {
|
|
|
|
int dpi = HIWORD(msg->wParam);
|
|
|
|
|
2018-01-25 20:49:49 +01:00
|
|
|
float oldScale = this->scale;
|
|
|
|
float _scale = dpi / 96.f;
|
|
|
|
float resizeScale = _scale / oldScale;
|
2018-01-15 01:35:35 +01:00
|
|
|
|
2018-01-25 20:49:49 +01:00
|
|
|
this->resize(static_cast<int>(this->width() * resizeScale),
|
|
|
|
static_cast<int>(this->height() * resizeScale));
|
2018-01-15 01:35:35 +01:00
|
|
|
|
2018-06-11 15:04:54 +02:00
|
|
|
this->nativeScale_ = _scale;
|
|
|
|
this->updateScale();
|
2018-01-15 01:35:35 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case WM_NCCALCSIZE: {
|
|
|
|
if (this->hasCustomWindowFrame()) {
|
2018-04-08 17:07:40 +02:00
|
|
|
int cx = GetSystemMetrics(SM_CXSIZEFRAME);
|
|
|
|
int cy = GetSystemMetrics(SM_CYSIZEFRAME);
|
|
|
|
|
|
|
|
if (msg->wParam == TRUE) {
|
|
|
|
NCCALCSIZE_PARAMS *ncp = (reinterpret_cast<NCCALCSIZE_PARAMS *>(msg->lParam));
|
|
|
|
ncp->lppos->flags |= SWP_NOREDRAW;
|
|
|
|
RECT *clientRect = &ncp->rgrc[0];
|
2018-05-23 17:24:07 +02:00
|
|
|
|
|
|
|
if (IsWindows10OrGreater()) {
|
|
|
|
clientRect->left += cx;
|
|
|
|
clientRect->top += 0;
|
|
|
|
clientRect->right -= cx;
|
|
|
|
clientRect->bottom -= cy;
|
|
|
|
} else {
|
|
|
|
clientRect->left += 1;
|
|
|
|
clientRect->top += 0;
|
|
|
|
clientRect->right -= 1;
|
|
|
|
clientRect->bottom -= 1;
|
|
|
|
}
|
2018-04-08 17:07:40 +02:00
|
|
|
}
|
|
|
|
|
2018-01-15 01:35:35 +01:00
|
|
|
*result = 0;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return QWidget::nativeEvent(eventType, message, result);
|
|
|
|
}
|
2018-05-26 17:11:09 +02:00
|
|
|
} break;
|
2018-01-15 01:35:35 +01:00
|
|
|
case WM_NCHITTEST: {
|
|
|
|
if (this->hasCustomWindowFrame()) {
|
|
|
|
*result = 0;
|
|
|
|
const LONG border_width = 8; // in pixels
|
|
|
|
RECT winrect;
|
2018-05-26 17:11:09 +02:00
|
|
|
GetWindowRect(HWND(winId()), &winrect);
|
2018-01-14 21:55:36 +01:00
|
|
|
|
2018-01-15 01:35:35 +01:00
|
|
|
long x = GET_X_LPARAM(msg->lParam);
|
|
|
|
long y = GET_Y_LPARAM(msg->lParam);
|
2018-01-14 21:55:36 +01:00
|
|
|
|
2018-01-15 01:35:35 +01:00
|
|
|
bool resizeWidth = minimumWidth() != maximumWidth();
|
|
|
|
bool resizeHeight = minimumHeight() != maximumHeight();
|
2018-01-14 21:55:36 +01:00
|
|
|
|
2018-01-15 01:35:35 +01:00
|
|
|
if (resizeWidth) {
|
|
|
|
// left border
|
2018-04-08 17:07:40 +02:00
|
|
|
if (x < winrect.left + border_width) {
|
2018-01-15 01:35:35 +01:00
|
|
|
*result = HTLEFT;
|
|
|
|
}
|
|
|
|
// right border
|
2018-04-08 17:07:40 +02:00
|
|
|
if (x >= winrect.right - border_width) {
|
2018-01-15 01:35:35 +01:00
|
|
|
*result = HTRIGHT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (resizeHeight) {
|
|
|
|
// bottom border
|
2018-04-08 17:07:40 +02:00
|
|
|
if (y >= winrect.bottom - border_width) {
|
2018-01-15 01:35:35 +01:00
|
|
|
*result = HTBOTTOM;
|
|
|
|
}
|
|
|
|
// top border
|
2018-04-08 17:07:40 +02:00
|
|
|
if (y < winrect.top + border_width) {
|
2018-01-15 01:35:35 +01:00
|
|
|
*result = HTTOP;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (resizeWidth && resizeHeight) {
|
|
|
|
// bottom left corner
|
|
|
|
if (x >= winrect.left && x < winrect.left + border_width &&
|
|
|
|
y < winrect.bottom && y >= winrect.bottom - border_width) {
|
|
|
|
*result = HTBOTTOMLEFT;
|
|
|
|
}
|
|
|
|
// bottom right corner
|
|
|
|
if (x < winrect.right && x >= winrect.right - border_width &&
|
|
|
|
y < winrect.bottom && y >= winrect.bottom - border_width) {
|
|
|
|
*result = HTBOTTOMRIGHT;
|
|
|
|
}
|
|
|
|
// top left corner
|
|
|
|
if (x >= winrect.left && x < winrect.left + border_width && y >= winrect.top &&
|
|
|
|
y < winrect.top + border_width) {
|
|
|
|
*result = HTTOPLEFT;
|
|
|
|
}
|
|
|
|
// top right corner
|
|
|
|
if (x < winrect.right && x >= winrect.right - border_width &&
|
|
|
|
y >= winrect.top && y < winrect.top + border_width) {
|
|
|
|
*result = HTTOPRIGHT;
|
|
|
|
}
|
|
|
|
}
|
2018-01-14 21:59:45 +01:00
|
|
|
|
2018-01-15 01:35:35 +01:00
|
|
|
if (*result == 0) {
|
|
|
|
bool client = false;
|
|
|
|
|
|
|
|
QPoint point(x - winrect.left, y - winrect.top);
|
2018-06-11 15:04:54 +02:00
|
|
|
for (QWidget *widget : this->ui_.buttons) {
|
2018-01-15 01:35:35 +01:00
|
|
|
if (widget->geometry().contains(point)) {
|
|
|
|
client = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-11 15:04:54 +02:00
|
|
|
if (this->ui_.layoutBase->geometry().contains(point)) {
|
2018-01-24 15:08:22 +01:00
|
|
|
client = true;
|
|
|
|
}
|
|
|
|
|
2018-01-15 01:35:35 +01:00
|
|
|
if (client) {
|
|
|
|
*result = HTCLIENT;
|
|
|
|
} else {
|
|
|
|
*result = HTCAPTION;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return QWidget::nativeEvent(eventType, message, result);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return QWidget::nativeEvent(eventType, message, result);
|
2018-01-14 21:55:36 +01:00
|
|
|
}
|
2018-01-15 01:35:35 +01:00
|
|
|
}
|
2018-01-14 21:55:36 +01:00
|
|
|
|
2018-01-24 15:08:22 +01:00
|
|
|
void BaseWindow::showEvent(QShowEvent *event)
|
2018-01-15 01:35:35 +01:00
|
|
|
{
|
2018-06-11 15:04:54 +02:00
|
|
|
if (!this->shown_ && this->isVisible() && this->hasCustomWindowFrame()) {
|
|
|
|
this->shown_ = true;
|
2018-05-24 10:03:07 +02:00
|
|
|
// SetWindowLongPtr((HWND)this->winId(), GWL_STYLE,
|
|
|
|
// WS_POPUP | WS_CAPTION | WS_THICKFRAME | WS_MAXIMIZEBOX |
|
|
|
|
// WS_MINIMIZEBOX);
|
2018-01-15 01:35:35 +01:00
|
|
|
|
2018-04-08 17:37:48 +02:00
|
|
|
const MARGINS shadow = {8, 8, 8, 8};
|
2018-05-26 17:11:09 +02:00
|
|
|
DwmExtendFrameIntoClientArea(HWND(this->winId()), &shadow);
|
2018-01-15 01:35:35 +01:00
|
|
|
}
|
2018-01-24 15:08:22 +01:00
|
|
|
|
|
|
|
BaseWidget::showEvent(event);
|
2018-01-15 01:35:35 +01:00
|
|
|
}
|
2018-01-14 21:59:45 +01:00
|
|
|
|
2018-06-06 10:46:23 +02:00
|
|
|
void BaseWindow::scaleChangedEvent(float)
|
|
|
|
{
|
|
|
|
this->calcButtonsSizes();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-05-26 17:11:09 +02:00
|
|
|
void BaseWindow::paintEvent(QPaintEvent *)
|
2018-01-15 01:35:35 +01:00
|
|
|
{
|
2018-06-11 15:04:54 +02:00
|
|
|
if (this->frameless_) {
|
2018-06-06 10:46:23 +02:00
|
|
|
QPainter painter(this);
|
|
|
|
|
|
|
|
painter.setPen(QColor("#999"));
|
|
|
|
painter.drawRect(0, 0, this->width() - 1, this->height() - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef USEWINSDK
|
2018-01-15 01:35:35 +01:00
|
|
|
if (this->hasCustomWindowFrame()) {
|
|
|
|
QPainter painter(this);
|
|
|
|
|
2018-04-08 17:07:40 +02:00
|
|
|
// bool windowFocused = this->window() == QApplication::activeWindow();
|
2018-01-24 15:08:22 +01:00
|
|
|
|
2018-04-08 17:37:48 +02:00
|
|
|
painter.fillRect(QRect(0, 1, this->width() - 0, this->height() - 0),
|
2018-04-27 22:11:19 +02:00
|
|
|
this->themeManager->window.background);
|
2018-01-15 01:35:35 +01:00
|
|
|
}
|
2018-01-14 21:55:36 +01:00
|
|
|
#endif
|
2018-06-06 10:46:23 +02:00
|
|
|
}
|
2018-01-14 21:55:36 +01:00
|
|
|
|
2018-06-11 15:04:54 +02:00
|
|
|
void BaseWindow::updateScale()
|
|
|
|
{
|
|
|
|
this->setScale(this->nativeScale_ * (this->flags_ & DisableCustomScaling
|
|
|
|
? 1
|
|
|
|
: getApp()->windows->getUiScaleValue()));
|
|
|
|
}
|
|
|
|
|
2018-04-18 18:10:47 +02:00
|
|
|
void BaseWindow::calcButtonsSizes()
|
|
|
|
{
|
2018-06-11 15:04:54 +02:00
|
|
|
if (!this->shown_) {
|
2018-04-18 18:10:47 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ((this->width() / this->getScale()) < 300) {
|
2018-06-11 15:04:54 +02:00
|
|
|
if (this->ui_.minButton)
|
|
|
|
this->ui_.minButton->setScaleIndependantSize(30, 30);
|
|
|
|
if (this->ui_.maxButton)
|
|
|
|
this->ui_.maxButton->setScaleIndependantSize(30, 30);
|
|
|
|
if (this->ui_.exitButton)
|
|
|
|
this->ui_.exitButton->setScaleIndependantSize(30, 30);
|
2018-04-18 18:10:47 +02:00
|
|
|
} else {
|
2018-06-11 15:04:54 +02:00
|
|
|
if (this->ui_.minButton)
|
|
|
|
this->ui_.minButton->setScaleIndependantSize(46, 30);
|
|
|
|
if (this->ui_.maxButton)
|
|
|
|
this->ui_.maxButton->setScaleIndependantSize(46, 30);
|
|
|
|
if (this->ui_.exitButton)
|
|
|
|
this->ui_.exitButton->setScaleIndependantSize(46, 30);
|
2018-04-18 18:10:47 +02:00
|
|
|
}
|
|
|
|
}
|
2018-01-14 21:55:36 +01:00
|
|
|
} // namespace widgets
|
|
|
|
} // namespace chatterino
|