-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetupdotpage.cpp
executable file
·81 lines (58 loc) · 2.25 KB
/
setupdotpage.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
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
74
75
76
77
78
79
80
81
/*
* setupdotpage.cpp
*
* Created on: 18.07.2008
*/
#include "setupdotpage.h"
SetupDotPage::SetupDotPage(QWidget *parent) :
SetupBasePage(tr("Class Diagrams"), parent)
{
addSection(tr("Built-in generator"));
addGroup();
addOption(tr("Enable diagram generator"), "CLASS_DIAGRAMS");
addGroup(tr("Output"));
addOption(tr("Hide undocumented relations"), "HIDE_UNDOC_RELATIONS");
addSection(tr("DOT generator"));
addGroup();
addOption(tr("Enable DOT generator"), "HAVE_DOT");
addGroup(tr("Output"));
addOption(tr("DOT file directories"), "DOTFILE_DIRS");
addGroup(tr("Fonts"));
addOption(tr("Font name"), "DOT_FONTNAME");
addOption(tr("Font path"), "DOT_FONTPATH");
addOption(tr("Font size"), "DOT_FONTSIZE");
addColumn2();
addGroup(tr("Graphs"));
addOption(tr("Class graphs"), "CLASS_GRAPH");
addOption(tr("Collaboration graphs"), "COLLABORATION_GRAPH");
addOption(tr("Group graphs"), "GROUP_GRAPHS");
addOption(tr("Template relations"), "TEMPLATE_RELATIONS");
addOption(tr("\"Include\" graphs"), "INCLUDE_GRAPH");
addOption(tr("\"Included by\" graphs"), "INCLUDED_BY_GRAPH");
addOption(tr("Call graphs"), "CALL_GRAPH");
addOption(tr("Caller graphs"), "CALLER_GRAPH");
addOption(tr("Directory graphs"), "DIRECTORY_GRAPH");
addColumn();
addGroup(tr("Decoration"));
addOption(tr("UML-style graphs"), "UML_LOOK");
addOption(tr("Graphical hierarchy"), "GRAPHICAL_HIERARCHY");
addOption(tr("Max nodes"), "DOT_GRAPH_MAX_NODES");
addOption(tr("Max depths"), "MAX_DOT_GRAPH_DEPTH");
addOption(tr("Legend"), "GENERATE_LEGEND");
addColumn2();
addGroup(tr("Images"));
addOption(tr("Format"), "DOT_IMAGE_FORMAT");
addOption(tr("Transparent background"), "DOT_TRANSPARENT");
addGroup(tr("Build"));
addOption(tr("Multiple targets"), "DOT_MULTI_TARGETS");
addOption(tr("Cleanup after run"), "DOT_CLEANUP");
addSection(tr("Build"));
addGroup(tr("Tools"));
addOption(tr("Path to MSCGEN"), "MSCGEN_PATH");
addOption(tr("Path to DOT"), "DOT_PATH");
finishPage();
}
SetupDotPage::~SetupDotPage()
{
// TODO Auto-generated destructor stub
}