123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #ifndef EXPORTREPORTMANAGER_H
- # define EXPORTREPORTMANAGER_H
- # include <QObject>
- class ProjectInfo;
- class QWord;
- class ExportReportManager : public QObject
- {
- Q_OBJECT
- public:
- explicit ExportReportManager(QObject *parent = nullptr);
- ~ExportReportManager();
- ProjectInfo *proj() const;
- void setProj(ProjectInfo *proj);
- int evalType() const;
- void setEvalType(int type);
- bool exportReport();
- bool createWord();
- void configWord();
- void addCover(); // 封面
- void insertWraps(int count = 1); // 换行
- signals:
- private:
- ProjectInfo *m_proj = nullptr; // 项目
- int m_evalType = 0; // 报告评估类型
- QWord *m_word = nullptr;
- };
- #endif // EXPORTREPORTMANAGER_H
- /**
- 【中文字号】 【英文字号】 【毫米】 【像素】
- 1英寸 72pt 25.30mm 95.6px
- 大特号 63pt 22.14mm 83.7px
- 特号 54pt 18.97mm 71.7px
- 初号 42pt 14.82mm 56px
- 小初 36pt 12.70mm 48px
- 一号 26pt 9.17mm 34.7px
- 小一 24pt 8.47mm 32px
- 二号 22pt 7.76mm 29.3px
- 小二 18pt 6.35mm 24px
- 三号 16pt 5.64mm 21.3px
- 小三 15pt 5.29mm 20px
- 四号 14pt 4.94mm 18.7px
- 小四 12pt 4.23mm 16px
- 五号 10.5pt 3.70mm 14px
- 小五 9pt 3.18mm 12px
- 六号 7.5pt 2.56mm 10px
- 小六 6.5pt 2.29mm 8.7px
- 七号 5.5pt 1.94mm 7.3px
- 八号 5pt 1.76mm 6.7px
- * 2023-12-12 by chengxr
- */
|