mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 11:17:15 +08:00
178 lines
4.0 KiB
C++
178 lines
4.0 KiB
C++
#include "FluTools.h"
|
|
|
|
#include <QGuiApplication>
|
|
#include <QClipboard>
|
|
#include <QUuid>
|
|
#include <QCursor>
|
|
#include <QScreen>
|
|
#include <QColor>
|
|
#include <QFileInfo>
|
|
#include <QProcess>
|
|
#include <QDir>
|
|
#include <QOpenGLContext>
|
|
#include <QCryptographicHash>
|
|
#include <QTextDocument>
|
|
#include <QQuickWindow>
|
|
#include <QDateTime>
|
|
|
|
FluTools::FluTools(QObject *parent):QObject{parent}{
|
|
|
|
}
|
|
|
|
void FluTools::clipText(const QString& text){
|
|
QGuiApplication::clipboard()->setText(text);
|
|
}
|
|
|
|
QString FluTools::uuid(){
|
|
return QUuid::createUuid().toString();
|
|
}
|
|
|
|
QString FluTools::readFile(const QString &fileName){
|
|
QString content;
|
|
QFile file(fileName);
|
|
if (file.open(QIODevice::ReadOnly)) {
|
|
QTextStream stream(&file);
|
|
content = stream.readAll();
|
|
}
|
|
return content;
|
|
}
|
|
|
|
bool FluTools::isMacos(){
|
|
#if defined(Q_OS_MACOS)
|
|
return true;
|
|
#else
|
|
return false;
|
|
#endif
|
|
}
|
|
|
|
bool FluTools::isLinux(){
|
|
#if defined(Q_OS_LINUX)
|
|
return true;
|
|
#else
|
|
return false;
|
|
#endif
|
|
}
|
|
|
|
bool FluTools::isWin(){
|
|
#if defined(Q_OS_WIN)
|
|
return true;
|
|
#else
|
|
return false;
|
|
#endif
|
|
}
|
|
|
|
int FluTools::qtMajor(){
|
|
const QString qtVersion = QString::fromLatin1(qVersion());
|
|
const QStringList versionParts = qtVersion.split('.');
|
|
return versionParts[0].toInt();
|
|
}
|
|
|
|
int FluTools::qtMinor(){
|
|
const QString qtVersion = QString::fromLatin1(qVersion());
|
|
const QStringList versionParts = qtVersion.split('.');
|
|
return versionParts[1].toInt();
|
|
}
|
|
|
|
void FluTools::setQuitOnLastWindowClosed(bool val){
|
|
qApp->setQuitOnLastWindowClosed(val);
|
|
}
|
|
|
|
void FluTools::setOverrideCursor(Qt::CursorShape shape){
|
|
qApp->setOverrideCursor(QCursor(shape));
|
|
}
|
|
|
|
void FluTools::restoreOverrideCursor(){
|
|
qApp->restoreOverrideCursor();
|
|
}
|
|
|
|
void FluTools::deleteItem(QObject *p){
|
|
if(p){
|
|
delete p;
|
|
p = nullptr;
|
|
}
|
|
}
|
|
|
|
QString FluTools::toLocalPath(const QUrl& url){
|
|
return url.toLocalFile();
|
|
}
|
|
|
|
QString FluTools::getFileNameByUrl(const QUrl& url){
|
|
return QFileInfo(url.toLocalFile()).fileName();
|
|
}
|
|
|
|
QString FluTools::html2PlantText(const QString& html){
|
|
QTextDocument textDocument;
|
|
textDocument.setHtml(html);
|
|
return textDocument.toPlainText();
|
|
}
|
|
|
|
QRect FluTools::getVirtualGeometry(){
|
|
return qApp->primaryScreen()->virtualGeometry();
|
|
}
|
|
|
|
QString FluTools::getApplicationDirPath(){
|
|
return qApp->applicationDirPath();
|
|
}
|
|
|
|
QUrl FluTools::getUrlByFilePath(const QString& path){
|
|
return QUrl::fromLocalFile(path);
|
|
}
|
|
|
|
QColor FluTools::colorAlpha(const QColor& color,qreal alpha){
|
|
return QColor(color.red(),color.green(),color.blue(),255*alpha);
|
|
}
|
|
|
|
QString FluTools::md5(QString text){
|
|
return QCryptographicHash::hash(text.toUtf8(), QCryptographicHash::Md5).toHex();
|
|
}
|
|
|
|
QString FluTools::toBase64(QString text){
|
|
return text.toUtf8().toBase64();
|
|
}
|
|
|
|
QString FluTools::fromBase64(QString text){
|
|
return QByteArray::fromBase64(text.toUtf8());
|
|
}
|
|
|
|
bool FluTools::removeDir(QString dirPath){
|
|
QDir qDir(dirPath);
|
|
return qDir.removeRecursively();
|
|
}
|
|
|
|
bool FluTools::removeFile(QString filePath){
|
|
QFile file(filePath);
|
|
return file.remove();
|
|
}
|
|
|
|
QString FluTools::sha256(QString text){
|
|
return QCryptographicHash::hash(text.toUtf8(), QCryptographicHash::Sha256).toHex();
|
|
}
|
|
|
|
void FluTools::showFileInFolder(QString path){
|
|
#if defined(Q_OS_WIN)
|
|
QProcess::startDetached("explorer.exe", {"/select,", QDir::toNativeSeparators(path)});
|
|
#endif
|
|
#if defined(Q_OS_LINUX)
|
|
QFileInfo fileInfo(path);
|
|
auto process = "xdg-open";
|
|
auto arguments = { fileInfo.absoluteDir().absolutePath() };
|
|
QProcess::startDetached(process, arguments);
|
|
#endif
|
|
#if defined(Q_OS_MACOS)
|
|
QProcess::execute("/usr/bin/osascript", {"-e", "tell application \"Finder\" to reveal POSIX file \"" + path + "\""});
|
|
QProcess::execute("/usr/bin/osascript", {"-e", "tell application \"Finder\" to activate"});
|
|
#endif
|
|
}
|
|
|
|
bool FluTools::isSoftware(){
|
|
return QQuickWindow::sceneGraphBackend() == "software";
|
|
}
|
|
|
|
QPoint FluTools::cursorPos(){
|
|
return QCursor::pos();
|
|
}
|
|
|
|
qint64 FluTools::currentTimestamp(){
|
|
return QDateTime::currentMSecsSinceEpoch();
|
|
}
|