5#include <QCoreApplication>
9#if defined(QT_UTILITIES_GUI_QTWIDGETS) || defined(QT_UTILITIES_GUI_QTQUICK)
10#include <QGuiApplication>
14#if defined(QT_UTILITIES_GUI_QTWIDGETS)
15#include <QApplication>
17#if (QT_VERSION < QT_VERSION_CHECK(5, 10, 0))
18#include <QDesktopWidget>
33 switch (documentStatus) {
35 if (documentPath.isEmpty()) {
36 return QCoreApplication::translate(
"Utilities::windowTitle",
"Unsaved - %1").arg(QCoreApplication::applicationName());
38 const QFileInfo file(documentPath);
39 return QCoreApplication::translate(
"Utilities::windowTitle",
"%1 - %2 - %3")
40 .arg(file.fileName(), file.dir().path(), QCoreApplication::applicationName());
43 if (documentPath.isEmpty()) {
44 return QCoreApplication::translate(
"Utilities::windowTitle",
"*Unsaved - %1").arg(QCoreApplication::applicationName());
46 const QFileInfo file(documentPath);
47 return QCoreApplication::translate(
"Utilities::windowTitle",
"*%1 - %2 - %3")
48 .arg(file.fileName(), file.dir().path(), QCoreApplication::applicationName());
51 return QCoreApplication::applicationName();
58#if defined(QT_UTILITIES_GUI_QTWIDGETS) || defined(QT_UTILITIES_GUI_QTQUICK)
64QColor windowFrameColorForPalette(
const QPalette &palette)
66 return palette.window().color().darker(108);
72QColor windowFrameColor()
74 return windowFrameColorForPalette(QGuiApplication::palette());
80QColor instructionTextColorForPalette(
const QPalette &palette)
82 return isPaletteDark(palette) ? palette.text().color() : QColor(0x00, 0x33, 0x99);
88QColor instructionTextColor()
90 return instructionTextColorForPalette(QGuiApplication::palette());
98QString dialogStyleForPalette(
const QPalette &palette)
101 return QStringLiteral(
"#mainWidget { color: palette(text); background-color: "
102 "palette(base); border: none; }"
103 "#bottomWidget { background-color: palette(window); "
104 "color: palette(window-text); border-top: 1px solid %1; }"
105 "*[classNames~=\"heading\"] { font-size: 12pt; color: %2; }"
106 "*[classNames~=\"input-invalid\"] { color: red; }")
107 .arg(windowFrameColorForPalette(palette).name(), instructionTextColorForPalette(palette).name());
110 return QStringLiteral(
"*[classNames~=\"heading\"] { font-weight: bold; }"
111 "*[classNames~=\"input-invalid\"] { color: red; }");
119const QString &dialogStyle()
121 static const auto style = dialogStyleForPalette(QGuiApplication::palette());
125#ifdef QT_UTILITIES_GUI_QTWIDGETS
127QRect availableScreenGeometryAtPoint(
const QPoint &point)
129#if (QT_VERSION >= QT_VERSION_CHECK(5, 10, 0))
130 QScreen *
const screen = QGuiApplication::screenAt(point);
134 return screen->availableGeometry();
136 return QApplication::desktop()->availableGeometry(point);
141static QRect shrinkRectByMargins(QRect rect,
const QMargins &margins)
143 rect.setLeft(rect.left() + margins.left());
144 rect.setTop(rect.top() + margins.top());
145 rect.setRight(rect.right() - margins.right());
146 rect.setBottom(rect.bottom() - margins.bottom());
150static QRect limitRect(QRect rect,
const QRect &bounds)
152 if (rect.left() < bounds.left()) {
153 rect.setLeft(bounds.left());
155 if (rect.top() < bounds.top()) {
156 rect.setTop(bounds.top());
158 if (rect.right() > bounds.right()) {
159 rect.setRight(bounds.right());
161 if (rect.bottom() > bounds.bottom()) {
162 rect.setBottom(bounds.bottom());
167static QMargins widgetFrame(QWidget *widget,
const QMargins &defaultAssumption = QMargins(10, 25, 10, 10))
169 if (!widget->isWindow()) {
172 const auto widgetGeometry = widget->geometry();
173 const auto frameGeometry = widget->frameGeometry();
174 const auto frame = QMargins(widgetGeometry.left() - frameGeometry.left(), widgetGeometry.top() - frameGeometry.top(),
175 frameGeometry.right() - widgetGeometry.right(), frameGeometry.bottom() - widgetGeometry.bottom());
176 return frame.isNull() ? defaultAssumption : frame;
179static bool centerWidgetInternal(QWidget *widget,
const QWidget *parent,
const QPoint *position,
bool avoidOverflow)
181 const auto availableGeometry = parent ? parent->geometry() : availableScreenGeometryAtPoint(position ? *position : QCursor::pos());
182 const auto alignedRect = QStyle::alignedRect(Qt::LeftToRight, Qt::AlignCenter, widget->size(), availableGeometry);
183 if (!avoidOverflow) {
184 widget->setGeometry(alignedRect);
187 const auto limitedRect = limitRect(alignedRect, shrinkRectByMargins(availableGeometry, widgetFrame(widget)));
188 widget->setGeometry(limitedRect);
189 return alignedRect != limitedRect;
198void centerWidget(QWidget *widget,
const QWidget *parent,
const QPoint *position)
200 centerWidgetInternal(widget, parent, position,
false);
213bool centerWidgetAvoidingOverflow(QWidget *widget,
const QWidget *parent,
const QPoint *position)
215 return centerWidgetInternal(widget, parent, position,
true);
225void cornerWidget(QWidget *widget,
const QPoint *position)
227 const QPoint cursorPos(position ? *position : QCursor::pos());
228 const QRect availableGeometry(availableScreenGeometryAtPoint(cursorPos));
229 const Qt::Alignment alignment
230 = (cursorPos.x() - availableGeometry.left() < availableGeometry.right() - cursorPos.x() ? Qt::AlignLeft : Qt::AlignRight)
231 | (cursorPos.y() - availableGeometry.top() < availableGeometry.bottom() - cursorPos.y() ? Qt::AlignTop : Qt::AlignBottom);
232 widget->setGeometry(QStyle::alignedRect(Qt::LeftToRight, alignment, widget->size(), availableGeometry));
238void makeHeading(QWidget *widget)
240 widget->setProperty(
"classNames", widget->property(
"classNames").toStringList() << QStringLiteral(
"heading"));
249void updateStyle(QWidget *widget)
251 widget->style()->unpolish(widget);
252 widget->style()->polish(widget);
DocumentStatus
The DocumentStatus enum specifies the status of the document in a window.
QT_UTILITIES_EXPORT QString generateWindowTitle(DocumentStatus documentStatus, const QString &documentPath)
Generates the window title string for the specified documentStatus and documentPath.
QT_UTILITIES_EXPORT bool isPaletteDark(const QPalette &palette=QPalette())
Returns whether palette is dark.