Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
7a119638
Commit
7a119638
authored
Aug 04, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'NimbusKit-feature-groupbreadcrumbs'
parents
c5c76305
c7c7d73c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
11 deletions
+26
-11
config.xml
src/config.xml
+0
-1
util.cpp
src/util.cpp
+26
-10
No files found.
src/config.xml
View file @
7a119638
...
...
@@ -3361,7 +3361,6 @@ remove the intermediate dot files that are used to generate the various graphs.
]]>
</docs>
</option>
<option
type=
'obsolete'
id=
'USE_WINDOWS_ENCODING'
/>
<option
type=
'obsolete'
id=
'DETAILS_AT_TOP'
/>
<option
type=
'obsolete'
id=
'QTHELP_FILE'
/>
...
...
src/util.cpp
View file @
7a119638
...
...
@@ -6353,26 +6353,42 @@ void addRefItem(const QList<ListItemInfo> *sli,
}
}
void
addGroupListToTitle
(
OutputList
&
ol
,
Definition
*
d
)
bool
recursivelyAddGroupListToTitle
(
OutputList
&
ol
,
Definition
*
d
,
bool
root
)
{
GroupList
*
groups
=
d
->
partOfGroups
();
if
(
groups
)
// write list of group to which this definition belongs
{
if
(
root
)
{
ol
.
pushGeneratorState
();
ol
.
disableAllBut
(
OutputGenerator
::
Html
);
ol
.
writeString
(
"<div class=
\"
ingroups
\"
>"
);
}
GroupListIterator
gli
(
*
groups
);
GroupDef
*
gd
;
bool
first
=
TRUE
;
bool
first
=
true
;
for
(
gli
.
toFirst
();(
gd
=
gli
.
current
());
++
gli
)
{
if
(
recursivelyAddGroupListToTitle
(
ol
,
gd
,
FALSE
))
{
ol
.
writeString
(
" » "
);
}
if
(
!
first
)
{
ol
.
writeString
(
" | "
);
}
else
first
=
FALSE
;
ol
.
writeObjectLink
(
gd
->
getReference
(),
gd
->
getOutputFileBase
(),
0
,
gd
->
groupTitle
());
ol
.
writeObjectLink
(
gd
->
getReference
(),
gd
->
getOutputFileBase
(),
0
,
gd
->
groupTitle
());
}
if
(
root
)
{
ol
.
writeString
(
"</div>"
);
ol
.
popGeneratorState
();
}
return
true
;
}
return
false
;
}
void
addGroupListToTitle
(
OutputList
&
ol
,
Definition
*
d
)
{
recursivelyAddGroupListToTitle
(
ol
,
d
,
TRUE
);
}
void
filterLatexString
(
FTextStream
&
t
,
const
char
*
str
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment