我打算创建一个自定义的Qt助手,以便在我自己的应用程序中提供帮助 我关注了该主题的Qt文档。启动助手时可以使用目录和所有关键字,但我的内容未显示。
在这个精简版中,有人能发现我做错了吗?
test.qhp:
<?xml version="1.0" encoding="UTF-8"?>
<QtHelpProject version="1.0">
<namespace>test</namespace>
<virtualFolder>doc</virtualFolder>
<filterSection>
<toc>
<section title="test" ref="index.html">
</section>
</toc>
<keywords>
<keyword name="Test" ref="index.html"/>
</keywords>
<files>
<file>index.html</file>
</files>
</filterSection>
</QtHelpProject>
test.qhcp:
<?xml version="1.0" encoding="UTF-8"?>
<QHelpCollectionProject version="1.0">
<assistant>
<title>test</title>
<!-- <applicationIcon>images/handbook.png</applicationIcon> -->
<cacheDirectory>test/doc</cacheDirectory>
<startPage>qthelp://test/doc/index.html</startPage>
<aboutMenuText>
<text>About test</text>
</aboutMenuText>
<enableDocumentationManager>false</enableDocumentationManager>
<enableAddressBar>false</enableAddressBar>
<enableFilterFunctionality>false</enableFilterFunctionality>
</assistant>
<docFiles>
<generate>
<file>
<input>test.qhp</input>
<output>test.qch</output>
</file>
</generate>
<register>
<file>test.qch</file>
</register>
</docFiles>
</QHelpCollectionProject>
的index.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html>
<head>
<title>Test title</title>
</head>
<body>
<h1>index</h1>
This is the index page
</body>
</html>
我使用qcollectiongenerator test.qhcp -o test.qhc
当我使用assistant -collectionFile test.qhc
打开助理时,我只看到一个空白页面,而不是index.html
的内容。
答案 0 :(得分:1)
这是由Qt智能助理中的错误引起的:https://bugreports.qt-project.org/browse/QTBUG-24110
html代码至少需要512个字节。