-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetupbuild2page.cpp
executable file
·48 lines (34 loc) · 1.26 KB
/
setupbuild2page.cpp
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
#include "setupbuild2page.h"
SetupBuild2Page::SetupBuild2Page(QWidget *parent)
: SetupBasePage(tr("Documentation: Additional parts"), parent)
{
addSection(tr("Source browser"));
addGroup();
addOption(tr("Enable source browser"), "SOURCE_BROWSER");
addGroup();
addOption(tr("Insert sources into docs"), "INLINE_SOURCES");
addOption(tr("Strip doxygen comments"), "STRIP_CODE_COMMENTS");
addOption(tr("Verbatim headers"), "VERBATIM_HEADERS");
addGroup(tr("List references"));
addOption(tr("Show callers"), "REFERENCED_BY_RELATION");
addOption(tr("Show called"), "REFERENCES_RELATION");
addOption(tr("Hyperlinks to source"), "REFERENCES_LINK_SOURCE");
addGroup(tr("HTags"));
addOption(tr("Use HTags output"), "USE_HTAGS");
addColumn();
addColumn2();
addSection(tr("Alphabetical index"));
addGroup();
addOption(tr("Enable index"), "ALPHABETICAL_INDEX");
addGroup();
addOption(tr("Columns in index"), "COLS_IN_ALPHA_INDEX");
addOption(tr("Ignore prefix"), "IGNORE_PREFIX");
addSection(tr("Tag files"));
addGroup();
addOption(tr("Input tag files"), "TAGFILES");
addOption(tr("Generated tag file"), "GENERATE_TAGFILE");
finishPage();
}
SetupBuild2Page::~SetupBuild2Page()
{
}