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
b850eb45
Commit
b850eb45
authored
Jun 05, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added member indexes to template context
parent
e0c3517f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
271 additions
and
21 deletions
+271
-21
context.cpp
src/context.cpp
+214
-21
context.h
src/context.h
+57
-0
No files found.
src/context.cpp
View file @
b850eb45
...
@@ -6393,7 +6393,6 @@ class ExampleListContext::Private : public PropertyMapper
...
@@ -6393,7 +6393,6 @@ class ExampleListContext::Private : public PropertyMapper
{
{
m_pageList
.
reset
(
PageListContext
::
alloc
(
Doxygen
::
exampleSDict
));
m_pageList
.
reset
(
PageListContext
::
alloc
(
Doxygen
::
exampleSDict
));
//%% PageNodeList items:
addProperty
(
"items"
,
this
,
&
Private
::
items
);
addProperty
(
"items"
,
this
,
&
Private
::
items
);
addProperty
(
"fileName"
,
this
,
&
Private
::
fileName
);
addProperty
(
"fileName"
,
this
,
&
Private
::
fileName
);
addProperty
(
"relPath"
,
this
,
&
Private
::
relPath
);
addProperty
(
"relPath"
,
this
,
&
Private
::
relPath
);
...
@@ -6421,6 +6420,193 @@ TemplateVariant ExampleListContext::get(const char *name) const
...
@@ -6421,6 +6420,193 @@ TemplateVariant ExampleListContext::get(const char *name) const
return
p
->
get
(
name
);
return
p
->
get
(
name
);
}
}
//------------------------------------------------------------------------
//%% struct GlobalsIndex: list of examples page
//%% {
class
GlobalsIndexContext
::
Private
:
public
PropertyMapper
{
public
:
//TemplateVariant items() const
//{
// return m_pageList.get();
//}
TemplateVariant
fileName
()
const
{
return
"globals"
;
}
TemplateVariant
relPath
()
const
{
return
""
;
}
TemplateVariant
highlight
()
const
{
return
"files"
;
}
TemplateVariant
subhighlight
()
const
{
return
"globals"
;
}
TemplateVariant
title
()
const
{
return
theTranslator
->
trFileMembers
();
}
Private
()
{
//m_pageList.reset(PageListContext::alloc(Doxygen::exampleSDict));
//addProperty("items",this,&Private::items);
addProperty
(
"fileName"
,
this
,
&
Private
::
fileName
);
addProperty
(
"relPath"
,
this
,
&
Private
::
relPath
);
addProperty
(
"highlight"
,
this
,
&
Private
::
highlight
);
addProperty
(
"subhighlight"
,
this
,
&
Private
::
subhighlight
);
addProperty
(
"title"
,
this
,
&
Private
::
title
);
}
private
:
//SharedPtr<PageListContext> m_pageList;
};
//%% }
GlobalsIndexContext
::
GlobalsIndexContext
()
:
RefCountedContext
(
"GlobalsIndexContext"
)
{
p
=
new
Private
;
}
GlobalsIndexContext
::~
GlobalsIndexContext
()
{
delete
p
;
}
TemplateVariant
GlobalsIndexContext
::
get
(
const
char
*
name
)
const
{
return
p
->
get
(
name
);
}
//------------------------------------------------------------------------
//%% struct ClassMembersIndex: list of examples page
//%% {
class
ClassMembersIndexContext
::
Private
:
public
PropertyMapper
{
public
:
//TemplateVariant items() const
//{
// return m_pageList.get();
//}
TemplateVariant
fileName
()
const
{
return
"functions"
;
}
TemplateVariant
relPath
()
const
{
return
""
;
}
TemplateVariant
highlight
()
const
{
return
"classes"
;
}
TemplateVariant
subhighlight
()
const
{
return
"classmembers"
;
}
TemplateVariant
title
()
const
{
return
theTranslator
->
trCompoundMembers
();
}
Private
()
{
//m_pageList.reset(PageListContext::alloc(Doxygen::exampleSDict));
//addProperty("items",this,&Private::items);
addProperty
(
"fileName"
,
this
,
&
Private
::
fileName
);
addProperty
(
"relPath"
,
this
,
&
Private
::
relPath
);
addProperty
(
"highlight"
,
this
,
&
Private
::
highlight
);
addProperty
(
"subhighlight"
,
this
,
&
Private
::
subhighlight
);
addProperty
(
"title"
,
this
,
&
Private
::
title
);
}
private
:
//SharedPtr<PageListContext> m_pageList;
};
//%% }
ClassMembersIndexContext
::
ClassMembersIndexContext
()
:
RefCountedContext
(
"ClassMembersIndexContext"
)
{
p
=
new
Private
;
}
ClassMembersIndexContext
::~
ClassMembersIndexContext
()
{
delete
p
;
}
TemplateVariant
ClassMembersIndexContext
::
get
(
const
char
*
name
)
const
{
return
p
->
get
(
name
);
}
//------------------------------------------------------------------------
//%% struct NamespaceMembersIndex: list of examples page
//%% {
class
NamespaceMembersIndexContext
::
Private
:
public
PropertyMapper
{
public
:
//TemplateVariant items() const
//{
// return m_pageList.get();
//}
TemplateVariant
fileName
()
const
{
return
"namespacemembers"
;
}
TemplateVariant
relPath
()
const
{
return
""
;
}
TemplateVariant
highlight
()
const
{
return
"namespaces"
;
}
TemplateVariant
subhighlight
()
const
{
return
"namespacemembers"
;
}
TemplateVariant
title
()
const
{
return
theTranslator
->
trNamespaceMembers
();
}
Private
()
{
//m_pageList.reset(PageListContext::alloc(Doxygen::exampleSDict));
//%% PageNodeList items:
//addProperty("items",this,&Private::items);
addProperty
(
"fileName"
,
this
,
&
Private
::
fileName
);
addProperty
(
"relPath"
,
this
,
&
Private
::
relPath
);
addProperty
(
"highlight"
,
this
,
&
Private
::
highlight
);
addProperty
(
"subhighlight"
,
this
,
&
Private
::
subhighlight
);
addProperty
(
"title"
,
this
,
&
Private
::
title
);
}
private
:
//SharedPtr<PageListContext> m_pageList;
};
//%% }
NamespaceMembersIndexContext
::
NamespaceMembersIndexContext
()
:
RefCountedContext
(
"NamespaceMembersIndexContext"
)
{
p
=
new
Private
;
}
NamespaceMembersIndexContext
::~
NamespaceMembersIndexContext
()
{
delete
p
;
}
TemplateVariant
NamespaceMembersIndexContext
::
get
(
const
char
*
name
)
const
{
return
p
->
get
(
name
);
}
//------------------------------------------------------------------------
//------------------------------------------------------------------------
...
@@ -7518,6 +7704,9 @@ void generateOutputViaTemplate()
...
@@ -7518,6 +7704,9 @@ void generateOutputViaTemplate()
SharedPtr
<
ModuleTreeContext
>
moduleTree
(
ModuleTreeContext
::
alloc
());
SharedPtr
<
ModuleTreeContext
>
moduleTree
(
ModuleTreeContext
::
alloc
());
SharedPtr
<
ModuleListContext
>
moduleList
(
ModuleListContext
::
alloc
());
SharedPtr
<
ModuleListContext
>
moduleList
(
ModuleListContext
::
alloc
());
SharedPtr
<
PageContext
>
mainPage
(
PageContext
::
alloc
(
Doxygen
::
mainPage
,
TRUE
));
SharedPtr
<
PageContext
>
mainPage
(
PageContext
::
alloc
(
Doxygen
::
mainPage
,
TRUE
));
SharedPtr
<
GlobalsIndexContext
>
globalsIndex
(
GlobalsIndexContext
::
alloc
());
SharedPtr
<
ClassMembersIndexContext
>
classMembersIndex
(
ClassMembersIndexContext
::
alloc
());
SharedPtr
<
NamespaceMembersIndexContext
>
namespaceMembersIndex
(
NamespaceMembersIndexContext
::
alloc
());
//%% Doxygen doxygen:
//%% Doxygen doxygen:
ctx
->
set
(
"doxygen"
,
doxygen
.
get
());
ctx
->
set
(
"doxygen"
,
doxygen
.
get
());
...
@@ -7531,8 +7720,6 @@ void generateOutputViaTemplate()
...
@@ -7531,8 +7720,6 @@ void generateOutputViaTemplate()
ctx
->
set
(
"classTree"
,
classTree
.
get
());
ctx
->
set
(
"classTree"
,
classTree
.
get
());
//%% ClassIndex classIndex:
//%% ClassIndex classIndex:
ctx
->
set
(
"classIndex"
,
classIndex
.
get
());
ctx
->
set
(
"classIndex"
,
classIndex
.
get
());
// globals
// members
//%% ClassHierarchy classHierarchy:
//%% ClassHierarchy classHierarchy:
ctx
->
set
(
"classHierarchy"
,
classHierarchy
.
get
());
ctx
->
set
(
"classHierarchy"
,
classHierarchy
.
get
());
//%% NamespaceList namespaceList:
//%% NamespaceList namespaceList:
...
@@ -7557,6 +7744,12 @@ void generateOutputViaTemplate()
...
@@ -7557,6 +7744,12 @@ void generateOutputViaTemplate()
ctx
->
set
(
"dirList"
,
dirList
.
get
());
ctx
->
set
(
"dirList"
,
dirList
.
get
());
//%% Page mainPage
//%% Page mainPage
ctx
->
set
(
"mainPage"
,
mainPage
.
get
());
ctx
->
set
(
"mainPage"
,
mainPage
.
get
());
//%% GlobalsIndex globalsIndex:
ctx
->
set
(
"globalsIndex"
,
globalsIndex
.
get
());
//%% ClassMembersIndex classMembersIndex:
ctx
->
set
(
"classMembersIndex"
,
classMembersIndex
.
get
());
//%% NamespaceMembersIndex namespaceMembersIndex:
ctx
->
set
(
"namespaceMembersIndex"
,
namespaceMembersIndex
.
get
());
// render HTML output
// render HTML output
Template
*
tpl
=
e
.
loadByName
(
"htmllayout.tpl"
,
1
);
Template
*
tpl
=
e
.
loadByName
(
"htmllayout.tpl"
,
1
);
...
...
src/context.h
View file @
b850eb45
...
@@ -780,6 +780,63 @@ class ExampleListContext : public RefCountedContext, public TemplateStructIntf
...
@@ -780,6 +780,63 @@ class ExampleListContext : public RefCountedContext, public TemplateStructIntf
//----------------------------------------------------
//----------------------------------------------------
class
GlobalsIndexContext
:
public
RefCountedContext
,
public
TemplateStructIntf
{
public
:
static
GlobalsIndexContext
*
alloc
()
{
return
new
GlobalsIndexContext
();
}
// TemplateStructIntf methods
virtual
TemplateVariant
get
(
const
char
*
name
)
const
;
virtual
int
addRef
()
{
return
RefCountedContext
::
addRef
();
}
virtual
int
release
()
{
return
RefCountedContext
::
release
();
}
private
:
GlobalsIndexContext
();
~
GlobalsIndexContext
();
class
Private
;
Private
*
p
;
};
//----------------------------------------------------
class
ClassMembersIndexContext
:
public
RefCountedContext
,
public
TemplateStructIntf
{
public
:
static
ClassMembersIndexContext
*
alloc
()
{
return
new
ClassMembersIndexContext
();
}
// TemplateStructIntf methods
virtual
TemplateVariant
get
(
const
char
*
name
)
const
;
virtual
int
addRef
()
{
return
RefCountedContext
::
addRef
();
}
virtual
int
release
()
{
return
RefCountedContext
::
release
();
}
private
:
ClassMembersIndexContext
();
~
ClassMembersIndexContext
();
class
Private
;
Private
*
p
;
};
//----------------------------------------------------
class
NamespaceMembersIndexContext
:
public
RefCountedContext
,
public
TemplateStructIntf
{
public
:
static
NamespaceMembersIndexContext
*
alloc
()
{
return
new
NamespaceMembersIndexContext
();
}
// TemplateStructIntf methods
virtual
TemplateVariant
get
(
const
char
*
name
)
const
;
virtual
int
addRef
()
{
return
RefCountedContext
::
addRef
();
}
virtual
int
release
()
{
return
RefCountedContext
::
release
();
}
private
:
NamespaceMembersIndexContext
();
~
NamespaceMembersIndexContext
();
class
Private
;
Private
*
p
;
};
//----------------------------------------------------
class
NavPathElemContext
:
public
RefCountedContext
,
public
TemplateStructIntf
class
NavPathElemContext
:
public
RefCountedContext
,
public
TemplateStructIntf
{
{
public
:
public
:
...
...
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