2021-11-17 07:33:19 +00:00
|
|
|
|
#ifndef QUIHELPER2_H
|
|
|
|
|
#define QUIHELPER2_H
|
|
|
|
|
|
|
|
|
|
#include "head.h"
|
|
|
|
|
|
|
|
|
|
class QUIHelper
|
|
|
|
|
{
|
|
|
|
|
public:
|
2022-11-24 12:14:44 +00:00
|
|
|
|
//获取当前鼠标所在屏幕索引/区域尺寸/缩放系数
|
2021-11-17 07:33:19 +00:00
|
|
|
|
static int getScreenIndex();
|
|
|
|
|
static QRect getScreenRect(bool available = true);
|
2022-11-24 12:14:44 +00:00
|
|
|
|
static qreal getScreenRatio(bool devicePixel = false);
|
|
|
|
|
//矫正当前鼠标所在屏幕居中尺寸
|
|
|
|
|
static QRect checkCenterRect(QRect &rect, bool available = true);
|
2021-11-17 07:33:19 +00:00
|
|
|
|
|
|
|
|
|
//获取桌面宽度高度+居中显示
|
|
|
|
|
static int deskWidth();
|
|
|
|
|
static int deskHeight();
|
2022-04-05 12:54:45 +00:00
|
|
|
|
static QSize deskSize();
|
2021-11-17 07:33:19 +00:00
|
|
|
|
|
|
|
|
|
//居中显示窗体
|
|
|
|
|
//定义标志位指定是以桌面为参照还是主程序界面为参照
|
|
|
|
|
static QWidget *centerBaseForm;
|
|
|
|
|
static void setFormInCenter(QWidget *form);
|
2022-04-05 12:54:45 +00:00
|
|
|
|
static void showForm(QWidget *form);
|
2021-11-17 07:33:19 +00:00
|
|
|
|
|
|
|
|
|
//程序文件名称+当前所在路径
|
|
|
|
|
static QString appName();
|
|
|
|
|
static QString appPath();
|
|
|
|
|
|
2022-04-05 12:54:45 +00:00
|
|
|
|
//获取本地网卡IP集合
|
|
|
|
|
static QStringList getLocalIPs();
|
|
|
|
|
|
|
|
|
|
//获取内置颜色集合
|
|
|
|
|
static QList<QColor> colors;
|
|
|
|
|
static QList<QColor> getColorList();
|
|
|
|
|
static QStringList getColorNames();
|
|
|
|
|
//随机获取颜色集合中的颜色
|
|
|
|
|
static QColor getRandColor();
|
|
|
|
|
|
|
|
|
|
//初始化随机数种子
|
2021-11-17 07:33:19 +00:00
|
|
|
|
static void initRand();
|
2022-04-05 12:54:45 +00:00
|
|
|
|
//获取随机小数
|
|
|
|
|
static float getRandFloat(float min, float max);
|
|
|
|
|
//获取随机数,指定最小值和最大值
|
|
|
|
|
static double getRandValue(int min, int max, bool contansMin = false, bool contansMax = false);
|
|
|
|
|
//获取范围值随机经纬度集合
|
|
|
|
|
static QStringList getRandPoint(int count, float mainLng, float mainLat, float dotLng, float dotLat);
|
2022-11-24 12:14:44 +00:00
|
|
|
|
//根据旧的范围值和值计算新的范围值对应的值
|
|
|
|
|
static int getRangeValue(int oldMin, int oldMax, int oldValue, int newMin, int newMax);
|
2022-04-05 12:54:45 +00:00
|
|
|
|
|
|
|
|
|
//获取uuid
|
|
|
|
|
static QString getUuid();
|
2022-11-24 12:14:44 +00:00
|
|
|
|
//校验目录
|
|
|
|
|
static void checkPath(const QString &dirName);
|
2022-04-05 12:54:45 +00:00
|
|
|
|
//延时
|
2021-11-17 07:33:19 +00:00
|
|
|
|
static void sleep(int msec);
|
|
|
|
|
|
2022-04-05 12:54:45 +00:00
|
|
|
|
//设置Qt自带样式
|
2021-11-17 07:33:19 +00:00
|
|
|
|
static void setStyle();
|
2022-04-05 12:54:45 +00:00
|
|
|
|
//设置字体
|
|
|
|
|
static QFont addFont(const QString &fontFile, const QString &fontName);
|
|
|
|
|
static void setFont(int fontSize = 12);
|
|
|
|
|
//设置编码
|
2021-11-17 07:33:19 +00:00
|
|
|
|
static void setCode(bool utf8 = true);
|
2022-04-05 12:54:45 +00:00
|
|
|
|
//设置翻译文件
|
2021-11-17 07:33:19 +00:00
|
|
|
|
static void setTranslator(const QString &qmFile);
|
2022-04-05 12:54:45 +00:00
|
|
|
|
|
2022-11-24 12:14:44 +00:00
|
|
|
|
//动态设置权限
|
|
|
|
|
static bool checkPermission(const QString &permission);
|
|
|
|
|
//申请安卓权限
|
|
|
|
|
static void initAndroidPermission();
|
|
|
|
|
|
2022-05-01 03:38:30 +00:00
|
|
|
|
//一次性设置所有包括编码样式字体等
|
|
|
|
|
static void initAll(bool utf8 = true, bool style = true, int fontSize = 13);
|
2022-04-05 12:54:45 +00:00
|
|
|
|
//初始化main函数最前面执行的一段代码
|
2022-11-24 12:14:44 +00:00
|
|
|
|
static void initMain(bool desktopSettingsAware = true, bool useOpenGLES = false);
|
2022-04-05 12:54:45 +00:00
|
|
|
|
|
|
|
|
|
//插入消息
|
|
|
|
|
static QVector<int> msgTypes;
|
|
|
|
|
static QVector<QString> msgKeys;
|
|
|
|
|
static QVector<QColor> msgColors;
|
|
|
|
|
static QString appendMsg(QTextEdit *textEdit, int type, const QString &data,
|
|
|
|
|
int maxCount, int ¤tCount,
|
|
|
|
|
bool clear = false, bool pause = false);
|
2021-11-17 07:33:19 +00:00
|
|
|
|
|
|
|
|
|
//设置无边框
|
|
|
|
|
static void setFramelessForm(QWidget *widgetMain, bool tool = false, bool top = false, bool menu = true);
|
|
|
|
|
|
|
|
|
|
//弹出框
|
2023-03-20 07:04:23 +00:00
|
|
|
|
static int showMessageBox(const QString &text, int type = 0, int closeSec = 0, bool exec = false);
|
2021-11-17 07:33:19 +00:00
|
|
|
|
//弹出消息框
|
2023-03-20 07:04:23 +00:00
|
|
|
|
static void showMessageBoxInfo(const QString &text, int closeSec = 0, bool exec = false);
|
2021-11-17 07:33:19 +00:00
|
|
|
|
//弹出错误框
|
2023-03-20 07:04:23 +00:00
|
|
|
|
static void showMessageBoxError(const QString &text, int closeSec = 0, bool exec = false);
|
2021-11-17 07:33:19 +00:00
|
|
|
|
//弹出询问框
|
2023-03-20 07:04:23 +00:00
|
|
|
|
static int showMessageBoxQuestion(const QString &text);
|
2021-11-17 07:33:19 +00:00
|
|
|
|
|
2022-04-05 12:54:45 +00:00
|
|
|
|
//为什么还要自定义对话框因为可控宽高和汉化对应文本等
|
|
|
|
|
//初始化对话框文本
|
|
|
|
|
static void initDialog(QFileDialog *dialog, const QString &title, const QString &acceptName,
|
|
|
|
|
const QString &dirName, bool native, int width, int height);
|
|
|
|
|
//拿到对话框结果
|
|
|
|
|
static QString getDialogResult(QFileDialog *dialog);
|
|
|
|
|
//选择文件对话框
|
|
|
|
|
static QString getOpenFileName(const QString &filter = QString(),
|
|
|
|
|
const QString &dirName = QString(),
|
|
|
|
|
const QString &fileName = QString(),
|
|
|
|
|
bool native = false, int width = 900, int height = 600);
|
|
|
|
|
//保存文件对话框
|
|
|
|
|
static QString getSaveFileName(const QString &filter = QString(),
|
|
|
|
|
const QString &dirName = QString(),
|
|
|
|
|
const QString &fileName = QString(),
|
|
|
|
|
bool native = false, int width = 900, int height = 600);
|
|
|
|
|
//选择目录对话框
|
|
|
|
|
static QString getExistingDirectory(const QString &dirName = QString(),
|
|
|
|
|
bool native = false, int width = 900, int height = 600);
|
|
|
|
|
|
2021-11-17 07:33:19 +00:00
|
|
|
|
//异或加密-只支持字符,如果是中文需要将其转换base64编码
|
|
|
|
|
static QString getXorEncryptDecrypt(const QString &value, char key);
|
|
|
|
|
//异或校验
|
2022-11-24 12:14:44 +00:00
|
|
|
|
static quint8 getOrCode(const QByteArray &data);
|
2021-11-17 07:33:19 +00:00
|
|
|
|
//计算校验码
|
2022-11-24 12:14:44 +00:00
|
|
|
|
static quint8 getCheckCode(const QByteArray &data);
|
2021-11-17 07:33:19 +00:00
|
|
|
|
|
|
|
|
|
//初始化表格
|
|
|
|
|
static void initTableView(QTableView *tableView, int rowHeight = 25,
|
|
|
|
|
bool headVisible = false, bool edit = false,
|
|
|
|
|
bool stretchLast = true);
|
|
|
|
|
//打开文件带提示框
|
|
|
|
|
static void openFile(const QString &fileName, const QString &msg);
|
|
|
|
|
|
|
|
|
|
//检查ini配置文件
|
|
|
|
|
static bool checkIniFile(const QString &iniFile);
|
2022-05-01 03:38:30 +00:00
|
|
|
|
|
|
|
|
|
//首尾截断字符串显示
|
2022-11-24 12:14:44 +00:00
|
|
|
|
static QString cutString(const QString &text, int len, int left, int right, bool file, const QString &mid = "...");
|
|
|
|
|
|
|
|
|
|
//传入图片尺寸和窗体区域及边框大小返回居中区域(scaleMode: 0-自动调整 1-等比缩放 2-拉伸填充)
|
|
|
|
|
static QRect getCenterRect(const QSize &imageSize, const QRect &widgetRect, int borderWidth = 2, int scaleMode = 0);
|
|
|
|
|
//传入图片尺寸和窗体尺寸及缩放策略返回合适尺寸(scaleMode: 0-自动调整 1-等比缩放 2-拉伸填充)
|
|
|
|
|
static void getScaledImage(QImage &image, const QSize &widgetSize, int scaleMode = 0, bool fast = true);
|
|
|
|
|
|
|
|
|
|
//毫秒数转时间 00:00
|
|
|
|
|
static QString getTimeString(qint64 time);
|
|
|
|
|
//用时时间转秒数
|
|
|
|
|
static QString getTimeString(QElapsedTimer timer);
|
|
|
|
|
//文件大小转 KB MB GB TB
|
|
|
|
|
static QString getSizeString(quint64 size);
|
2021-11-17 07:33:19 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // QUIHELPER2_H
|