-
Notifications
You must be signed in to change notification settings - Fork 0
/
TxtParser.h
73 lines (58 loc) · 1.42 KB
/
TxtParser.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#ifndef TXTPARSER_H
#define TXTPARSER_H
#include <QList>
#include <QString>
#include <QStringList>
#include <QVector>
// TXT信息结构体
struct TxtInfo
{
QString content; // 原内容
QString translateContent; // 翻译内容
};
class TxtParser
{
public:
TxtParser();
~TxtParser();
// 解析TXT文件
bool parse(const QString &filePath);
// 保存TXT文件
bool save(const QString &filePath, const QVector<TxtInfo> &txtInfoList);
// 获取解析后的文本列表
QVector<TxtInfo> getTxtInfoList() const
{
return m_txtInfoList;
}
// 设置最大段落长度
void setMaxLength(int length)
{
m_maxLen = length;
}
// 设置最小段落长度
void setMinLength(int length)
{
m_minLen = length;
}
// 获取最大段落长度
int getMaxLength() const
{
return m_maxLen;
}
// 获取最小段落长度
int getMinLength() const
{
return m_minLen;
}
private:
// 将文本分割成段落
QList<QString> splitIntoParagraphs(const QString &content);
// 将段落处理成合适的长度
QList<QString> processParagraphs(const QList<QString> ¶graphs);
// 存储解析后的文本信息
QVector<TxtInfo> m_txtInfoList;
// 段落长度限制
int m_maxLen = 3072; // 最大段落长度
int m_minLen = 1024; // 最小段落长度
};
#endif // TXTPARSER_H