split project with app & doric module

This commit is contained in:
王劲鹏
2021-04-29 20:12:49 +08:00
committed by osborn
parent 25db4cc194
commit a5e00e4fa5
154 changed files with 795 additions and 293 deletions

View File

@@ -0,0 +1,39 @@
#ifndef UTILS_H
#define UTILS_H
#include <QColor>
#include <QFile>
#include <QResource>
#include <QString>
#include <QTextStream>
class DoricUtils {
public:
static QString readAssetFile(QString preffix, QString assetName) {
QResource resource(":" + preffix + "/" + assetName);
QFile *file = new QFile(resource.fileName());
file->open(QFile::ReadOnly | QFile::Text);
QTextStream in(file);
in.setAutoDetectUnicode(true);
QString content = in.readAll();
file->close();
delete file;
return content;
}
template <typename Base, typename T>
static inline bool instanceof (const T *) {
return std::is_base_of<Base, T>::value;
}
static QColor doricColor(long colorValue) {
float a = ((colorValue >> 24) & 0xff);
float r = ((colorValue >> 16) & 0xff);
float g = ((colorValue >> 8) & 0xff);
float b = ((colorValue >> 0) & 0xff);
return QColor(r, g, b, a);
}
};
#endif // UTILS_H