转码工具页面功能

This commit is contained in:
taocong
2026-05-25 10:18:19 +08:00
commit 3db5fe7f13
107 changed files with 8591 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef ELAICON_H
#define ELAICON_H
#include <QIcon>
#include "ElaDef.h"
#include "ElaProperty.h"
#include "ElaSingleton.h"
class ELA_EXPORT ElaIcon
{
Q_SINGLETON_CREATE_H(ElaIcon)
private:
explicit ElaIcon();
~ElaIcon();
public:
QIcon getElaIcon(ElaIconType::IconName awesome);
QIcon getElaIcon(ElaIconType::IconName awesome, QColor iconColor);
QIcon getElaIcon(ElaIconType::IconName awesome, int pixelSize);
QIcon getElaIcon(ElaIconType::IconName awesome, int pixelSize, QColor iconColor);
QIcon getElaIcon(ElaIconType::IconName awesome, int pixelSize, int fixedWidth, int fixedHeight);
QIcon getElaIcon(ElaIconType::IconName awesome, int pixelSize, int fixedWidth, int fixedHeight, QColor iconColor);
};
#endif // ELAICON_H