Commit d0505d80 authored by captainwong's avatar captainwong

fix qt linux

parent 37f8dbe7
#pragma once #pragma once
#include "qt_global.h" #include "qt_global.h"
#include <cassert> #include <cassert>
#include <QString> #include <QString>
#include <QColor> #include <QColor>
#include <QPixmap> #include <QPixmap>
#include <QApplication> #include <QApplication>
#include <QDesktopwidget> #ifdef Q_OS_WIN
#include <QIcon> #include <QDesktopwidget>
#include <QTimer> #endif
#include <QDir> #include <QIcon>
#include <QProcess> #include <QTimer>
#include "QtDebug.h" #include <QDir>
#include "QtPathHelper.h" #include <QProcess>
#include <thread> #include "QtDebug.h"
#include <chrono> #include "QtPathHelper.h"
#include <thread>
#include <chrono>
JLIBQT_NAMESPACE_BEGIN
/** JLIBQT_NAMESPACE_BEGIN
* @brief 阻塞等待一段时间
* @param ms 等待的毫秒数 /**
*/ * @brief 阻塞等待一段时间
inline void blocking_wait(int ms, QString log = "") { * @param ms 等待的毫秒数
if (!log.isEmpty()) { */
MYQDEBUG << log << "in"; inline void blocking_wait(int ms, QString log = "") {
} if (!log.isEmpty()) {
std::this_thread::sleep_for(std::chrono::milliseconds(ms)); MYQDEBUG << log << "in";
if (!log.isEmpty()) { }
MYQDEBUG << log << "out"; std::this_thread::sleep_for(std::chrono::milliseconds(ms));
} if (!log.isEmpty()) {
} MYQDEBUG << log << "out";
}
/** }
* @brief 不阻塞UI响应的情况下,等待一段时间
* @param ms 等待的毫秒数 /**
*/ * @brief 不阻塞UI响应的情况下,等待一段时间
inline void non_blocking_wait_in_ui_thread(int ms, QString log = "") { * @param ms 等待的毫秒数
if (!log.isEmpty()) { */
MYQDEBUG << log << "in"; inline void non_blocking_wait_in_ui_thread(int ms, QString log = "") {
} if (!log.isEmpty()) {
QEventLoop q; MYQDEBUG << log << "in";
QTimer t; }
t.setSingleShot(true); QEventLoop q;
QObject::connect(&t, &QTimer::timeout, &q, &QEventLoop::quit); QTimer t;
t.start(ms); t.setSingleShot(true);
q.exec(); QObject::connect(&t, &QTimer::timeout, &q, &QEventLoop::quit);
if (!log.isEmpty()) { t.start(ms);
MYQDEBUG << log << "out"; q.exec();
} if (!log.isEmpty()) {
} MYQDEBUG << log << "out";
}
/** }
* @brief 在文件夹中显示
* @param pathIn 若为文件路径则在文件夹中显示,若为文件夹路径则打开改文件夹 #ifdef Q_OS_WIN
*/ /**
inline void showInGraphicalShell(const QString &pathIn) { * @brief 在文件夹中显示
QString param; * @param pathIn 若为文件路径则在文件夹中显示,若为文件夹路径则打开改文件夹
if (!QFileInfo(pathIn).isDir()) */
param = QLatin1String("/select,"); inline void showInGraphicalShell(const QString &pathIn) {
param += QDir::toNativeSeparators(pathIn); QString param;
QString command = "explorer.exe " + param; if (!QFileInfo(pathIn).isDir())
QProcess::startDetached(command); param = QLatin1String("/select,");
} param += QDir::toNativeSeparators(pathIn);
QString command = "explorer.exe " + param;
inline bool warn_if_load_pixmap_failed(QPixmap& pixmap, QString icon_path, QString file_line, bool forceUseQss = true) QProcess::startDetached(command);
{ }
/*if (!QDir().isAbsolutePath(icon_path)) { #endif
icon_path = PathHelper::program() + "/" + icon_path;
}*/ inline bool warn_if_load_pixmap_failed(QPixmap& pixmap, QString icon_path, QString file_line, bool forceUseQss = true)
{
if (forceUseQss && !icon_path.startsWith(":/")) { /*if (!QDir().isAbsolutePath(icon_path)) {
icon_path = ":/" + icon_path; icon_path = PathHelper::program() + "/" + icon_path;
} }*/
if (!pixmap.load(icon_path) && !pixmap.load(icon_path, "png")) { if (forceUseQss && !icon_path.startsWith(":/")) {
qCritical() << file_line << "load pixmap failed: " << icon_path; icon_path = ":/" + icon_path;
assert(0); }
return false;
} if (!pixmap.load(icon_path) && !pixmap.load(icon_path, "png")) {
return true; qCritical() << file_line << "load pixmap failed: " << icon_path;
} assert(0);
return false;
#define LOAD_PIXMAP_EX(icon_path) JLIBQT_NAMESPACE warn_if_load_pixmap_failed(pixmap, icon_path, JLIBQT_QDEBUG_FILE_LINE_VALUE) }
#define LOAD_PIXMAP_EX2(icon_path) JLIBQT_NAMESPACE warn_if_load_pixmap_failed(pixmap, icon_path, JLIBQT_QDEBUG_FILE_LINE_VALUE, false) return true;
}
inline QIcon icon_from_path(QString path, QSize icon_sz) {
QPixmap pixmap; #define LOAD_PIXMAP_EX(icon_path) JLIBQT_NAMESPACE warn_if_load_pixmap_failed(pixmap, icon_path, JLIBQT_QDEBUG_FILE_LINE_VALUE)
LOAD_PIXMAP_EX(path); #define LOAD_PIXMAP_EX2(icon_path) JLIBQT_NAMESPACE warn_if_load_pixmap_failed(pixmap, icon_path, JLIBQT_QDEBUG_FILE_LINE_VALUE, false)
return QIcon(pixmap.scaled(icon_sz, Qt::KeepAspectRatio, Qt::SmoothTransformation));
} inline QIcon icon_from_path(QString path, QSize icon_sz) {
QPixmap pixmap;
inline void fill_bg_with_color(QWidget * widget, QColor color) LOAD_PIXMAP_EX(path);
{ return QIcon(pixmap.scaled(icon_sz, Qt::KeepAspectRatio, Qt::SmoothTransformation));
if (!widget) { return; } }
widget->setAutoFillBackground(true); inline void fill_bg_with_color(QWidget * widget, QColor color)
QPalette palette; {
palette.setColor(QPalette::Background, color); if (!widget) { return; }
widget->setPalette(palette);
} widget->setAutoFillBackground(true);
QPalette palette;
inline void set_pos(QWidget * widget, QRect pos) palette.setColor(QPalette::Background, color);
{ widget->setPalette(palette);
if (!widget) { return; } }
widget->setFixedSize(pos.width(), pos.height());
widget->move(pos.left(), pos.top()); inline void set_pos(QWidget * widget, QRect pos)
} {
if (!widget) { return; }
inline void set_image_bg(QWidget* widget, const QPixmap& pixmap) widget->setFixedSize(pos.width(), pos.height());
{ widget->move(pos.left(), pos.top());
if (!widget || pixmap.isNull())return; }
QPalette palette;
palette.setBrush(QPalette::Window, QBrush(pixmap)); inline void set_image_bg(QWidget* widget, const QPixmap& pixmap)
widget->setPalette(palette); {
} if (!widget || pixmap.isNull())return;
QPalette palette;
inline void set_image_bg(QWidget* widget, const QString& icon_path) palette.setBrush(QPalette::Window, QBrush(pixmap));
{ widget->setPalette(palette);
QPixmap pixmap; }
if (!LOAD_PIXMAP_EX(icon_path)) { return; }
set_image_bg(widget, pixmap); inline void set_image_bg(QWidget* widget, const QString& icon_path)
} {
QPixmap pixmap;
inline void center_to_parent(QWidget* widget, QWidget* parent) if (!LOAD_PIXMAP_EX(icon_path)) { return; }
{ set_image_bg(widget, pixmap);
if (!widget || !parent) { return; } }
auto center = parent->rect().center();
widget->move(center.x() - widget->width() / 2, center.y() - widget->height() / 2); inline void center_to_parent(QWidget* widget, QWidget* parent)
} {
if (!widget || !parent) { return; }
inline void center_to_desktop(QWidget* widget) auto center = parent->rect().center();
{ widget->move(center.x() - widget->width() / 2, center.y() - widget->height() / 2);
if (!widget) { return; } }
auto center = QApplication::desktop()->availableGeometry(widget).center();
widget->move(center.x() - widget->width() / 2, center.y() - widget->height() / 2); inline void center_to_desktop(QWidget* widget)
} {
if (!widget) { return; }
inline void center_to_desktop(QWidget* widget, int new_width, int new_height) auto center = QApplication::desktop()->availableGeometry(widget).center();
{ widget->move(center.x() - widget->width() / 2, center.y() - widget->height() / 2);
if (!widget) { return; } }
auto center = QApplication::desktop()->availableGeometry(widget).center();
widget->setFixedSize(new_width, new_height); inline void center_to_desktop(QWidget* widget, int new_width, int new_height)
widget->move(center.x() - new_width / 2, center.y() - new_height / 2); {
widget->adjustSize(); if (!widget) { return; }
} auto center = QApplication::desktop()->availableGeometry(widget).center();
widget->setFixedSize(new_width, new_height);
widget->move(center.x() - new_width / 2, center.y() - new_height / 2);
JLIBQT_NAMESPACE_END widget->adjustSize();
}
JLIBQT_NAMESPACE_END
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment