51 lines
1.6 KiB
C++
51 lines
1.6 KiB
C++
/*
|
|
* Copyright (C) 2020, Tianjin KYLIN Information Technology Co., Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
#include <QObject>
|
|
#include <QGuiApplication>
|
|
#include <QScreen>
|
|
#include <QDebug>
|
|
#include <QDesktopWidget>
|
|
#include <QApplication>
|
|
#include <QRect>
|
|
#include <QFontDatabase>
|
|
#include <QPushButton>
|
|
|
|
class Utils :public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Utils(QObject *parent = nullptr);
|
|
void centerToScreen(QWidget* widget);
|
|
static QString loadFontFamilyFromTTF();
|
|
static QString loadFontHuaKangJinGangHeiRegularTTF();
|
|
static QString getRandomId();
|
|
static void setBtnBackgroundColorTransparent(QPushButton * btn);
|
|
static void setBtnHighlightColorTransparent(QPushButton * btn);
|
|
static QString changeNumToStr(int alarmHour);
|
|
static QIcon getQIcon(QString themeUrl, QString localUrl);
|
|
static QString getOmitStr(QString str,int sizeLimit);
|
|
static bool checkLocalChina();
|
|
static bool checkLocalUs();
|
|
static int handelColorRange(int value);
|
|
};
|
|
|
|
#endif // UTILS_H
|