@@ -0,0 +1,13 | |||
|
1 | <!--BEGIN GENERATE_TREEVIEW--> | |
|
2 | <li class="footer">Generated on $datetime for $projectname by | |
|
3 | <a href="http://www.doxygen.org/index.html"> | |
|
4 | <img class="footer" src="doxygen.png" alt="doxygen"/></a> $doxygenversion </li> | |
|
5 | </ul> | |
|
6 | </div> | |
|
7 | <!--END GENERATE_TREEVIEW--> | |
|
8 | <!--BEGIN !GENERATE_TREEVIEW--> | |
|
9 | <hr class="footer"/><address class="footer"><small> | |
|
10 | Generated on $datetime for $projectname by <a href="http://www.doxygen.org/index.html"><img class="footer" src="$relpath$doxygen.png" alt="doxygen"/></a> $doxygenversion</small></address> | |
|
11 | <!--END !GENERATE_TREEVIEW--> | |
|
12 | </body> | |
|
13 | </html> |
@@ -1,13 +1,47 | |||
|
1 | <!-- This comment will put IE 6, 7 and 8 in quirks mode --> | |
|
2 | 1 |
|
|
3 | 2 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|
4 | 3 | <head> |
|
5 | 4 | <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> |
|
6 | 5 | <title>$title</title> |
|
7 | 6 | <link href="$relpath$tabs.css" rel="stylesheet" type="text/css"/> |
|
8 | <link href="$relpath$search/search.css" rel="stylesheet" type="text/css"/> | |
|
9 | <script type="text/javaScript" src="$relpath$search/search.js"></script> | |
|
10 | 7 | <link href="$relpath$stylesheet.css" rel="stylesheet" type="text/css"/> |
|
8 | $treeview | |
|
9 | $search | |
|
10 | $mathjax | |
|
11 | 11 | </head> |
|
12 | <body onload='searchBox.OnSelectItem(0);'> | |
|
12 | <body> | |
|
13 | <div id="top"><!-- do not remove this div! --> | |
|
13 | 14 | <div style="float:right;"> <a href="http://sourceforge.net"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=181737&type=1" width="88" height="31" border="0" alt="SourceForge.net Logo" /></a></div> |
|
15 | <!--BEGIN TITLEAREA--> | |
|
16 | <div id="titlearea"> | |
|
17 | <table cellspacing="0" cellpadding="0"> | |
|
18 | <tbody> | |
|
19 | <tr style="height: 56px;"> | |
|
20 | <!--BEGIN PROJECT_LOGO--> | |
|
21 | <td id="projectlogo"><img alt="Logo" src="$relpath$$projectlogo"></td> | |
|
22 | <!--END PROJECT_LOGO--> | |
|
23 | <!--BEGIN PROJECT_NAME--> | |
|
24 | <td style="padding-left: 0.5em;"> | |
|
25 | <div id="projectname">$projectname | |
|
26 | <!--BEGIN PROJECT_NUMBER--> <span id="projectnumber">$projectnumber</span><!--END PROJECT_NUMBER--> | |
|
27 | </div> | |
|
28 | <!--BEGIN PROJECT_BRIEF--><div id="projectbrief">$projectbrief</div><!--END PROJECT_BRIEF--> | |
|
29 | </td> | |
|
30 | <!--END PROJECT_NAME--> | |
|
31 | <!--BEGIN !PROJECT_NAME--> | |
|
32 | <!--BEGIN PROJECT_BRIEF--> | |
|
33 | <td style="padding-left: 0.5em;"> | |
|
34 | <div id="projectbrief">$projectbrief</div> | |
|
35 | </td> | |
|
36 | <!--END PROJECT_BRIEF--> | |
|
37 | <!--END !PROJECT_NAME--> | |
|
38 | <!--BEGIN DISABLE_INDEX--> | |
|
39 | <!--BEGIN SEARCHENGINE--> | |
|
40 | <td>$searchbox</td> | |
|
41 | <!--END SEARCHENGINE--> | |
|
42 | <!--END DISABLE_INDEX--> | |
|
43 | </tr> | |
|
44 | </tbody> | |
|
45 | </table> | |
|
46 | </div> | |
|
47 | <!--END TITLEAREA--> |
@@ -1,498 +1,835 | |||
|
1 | 1 | /* The standard CSS for doxygen */ |
|
2 | 2 | |
|
3 | 3 | body, table, div, p, dl { |
|
4 | 4 | font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif; |
|
5 | 5 | font-size: 12px; |
|
6 | 6 | } |
|
7 | 7 | |
|
8 | 8 | /* @group Heading Levels */ |
|
9 | 9 | |
|
10 | 10 | h1 { |
|
11 | text-align: center; | |
|
12 | font-size: 250%; | |
|
11 | font-size: 150%; | |
|
12 | } | |
|
13 | ||
|
14 | .title { | |
|
15 | font-size: 150%; | |
|
16 | font-weight: bold; | |
|
17 | margin: 10px 2px; | |
|
13 | 18 | } |
|
14 | 19 | |
|
15 | 20 | h2 { |
|
16 |
font-size: 20 |
|
|
21 | font-size: 120%; | |
|
17 | 22 | } |
|
18 | 23 | |
|
19 | 24 | h3 { |
|
20 |
font-size: 1 |
|
|
25 | font-size: 100%; | |
|
21 | 26 | } |
|
22 | 27 | |
|
23 | 28 | dt { |
|
24 | 29 | font-weight: bold; |
|
25 | 30 | } |
|
26 | 31 | |
|
27 | 32 | div.multicol { |
|
28 | 33 | -moz-column-gap: 1em; |
|
29 | 34 | -webkit-column-gap: 1em; |
|
30 | 35 | -moz-column-count: 3; |
|
31 | 36 | -webkit-column-count: 3; |
|
32 | 37 | } |
|
33 | 38 | |
|
34 | p.startli, p.startdd { | |
|
39 | p.startli, p.startdd, p.starttd { | |
|
35 | 40 | margin-top: 2px; |
|
36 | 41 | } |
|
37 | 42 | |
|
38 | 43 | p.endli { |
|
39 | 44 | margin-bottom: 0px; |
|
40 | 45 | } |
|
41 | 46 | |
|
42 | 47 | p.enddd { |
|
43 | 48 | margin-bottom: 4px; |
|
44 | 49 | } |
|
45 | 50 | |
|
51 | p.endtd { | |
|
52 | margin-bottom: 2px; | |
|
53 | } | |
|
54 | ||
|
46 | 55 | /* @end */ |
|
47 | 56 | |
|
48 | 57 | caption { |
|
49 | 58 | font-weight: bold; |
|
50 | 59 | } |
|
51 | 60 | |
|
52 | 61 | span.legend { |
|
53 | 62 | font-size: 70%; |
|
54 | 63 | text-align: center; |
|
55 | 64 | } |
|
56 | 65 | |
|
66 | h3.version { | |
|
67 | font-size: 90%; | |
|
68 | text-align: center; | |
|
69 | } | |
|
70 | ||
|
57 | 71 | div.qindex, div.navtab{ |
|
58 |
background-color: # |
|
|
59 |
border: 1px solid # |
|
|
72 | background-color: #EBEFF6; | |
|
73 | border: 1px solid #A3B4D7; | |
|
60 | 74 | text-align: center; |
|
61 | 75 | margin: 2px; |
|
62 | 76 | padding: 2px; |
|
63 | 77 | } |
|
64 | 78 | |
|
65 | 79 | div.qindex, div.navpath { |
|
66 | 80 | width: 100%; |
|
67 | 81 | line-height: 140%; |
|
68 | 82 | } |
|
69 | 83 | |
|
70 | 84 | div.navtab { |
|
71 | 85 | margin-right: 15px; |
|
72 | 86 | } |
|
73 | 87 | |
|
74 | 88 | /* @group Link Styling */ |
|
75 | 89 | |
|
76 | 90 | a { |
|
77 |
color: # |
|
|
91 | color: #3D578C; | |
|
78 | 92 | font-weight: normal; |
|
79 | 93 | text-decoration: none; |
|
80 | 94 | } |
|
81 | 95 | |
|
82 | 96 | .contents a:visited { |
|
83 |
color: # |
|
|
97 | color: #4665A2; | |
|
84 | 98 | } |
|
85 | 99 | |
|
86 | 100 | a:hover { |
|
87 | 101 | text-decoration: underline; |
|
88 | 102 | } |
|
89 | 103 | |
|
90 | 104 | a.qindex { |
|
91 | 105 | font-weight: bold; |
|
92 | 106 | } |
|
93 | 107 | |
|
94 | 108 | a.qindexHL { |
|
95 | 109 | font-weight: bold; |
|
96 |
background-color: # |
|
|
110 | background-color: #9CAFD4; | |
|
97 | 111 | color: #ffffff; |
|
98 |
border: 1px double # |
|
|
112 | border: 1px double #869DCA; | |
|
99 | 113 | } |
|
100 | 114 | |
|
101 | 115 | .contents a.qindexHL:visited { |
|
102 | 116 | color: #ffffff; |
|
103 | 117 | } |
|
104 | 118 | |
|
105 | 119 | a.el { |
|
106 | 120 | font-weight: bold; |
|
107 | 121 | } |
|
108 | 122 | |
|
109 | 123 | a.elRef { |
|
110 | 124 | } |
|
111 | 125 | |
|
112 | 126 | a.code { |
|
127 | color: #4665A2; | |
|
113 | 128 | } |
|
114 | 129 | |
|
115 | 130 | a.codeRef { |
|
131 | color: #4665A2; | |
|
116 | 132 | } |
|
117 | 133 | |
|
118 | 134 | /* @end */ |
|
119 | 135 | |
|
120 | 136 | dl.el { |
|
121 | 137 | margin-left: -1cm; |
|
122 | 138 | } |
|
123 | 139 | |
|
124 | 140 | .fragment { |
|
125 | 141 | font-family: monospace, fixed; |
|
126 | 142 | font-size: 105%; |
|
127 | 143 | } |
|
128 | 144 | |
|
129 | 145 | pre.fragment { |
|
130 |
border: 1px solid #C |
|
|
131 |
background-color: # |
|
|
146 | border: 1px solid #C4CFE5; | |
|
147 | background-color: #FBFCFD; | |
|
132 | 148 | padding: 4px 6px; |
|
133 | 149 | margin: 4px 8px 4px 2px; |
|
150 | overflow: auto; | |
|
151 | word-wrap: break-word; | |
|
152 | font-size: 9pt; | |
|
153 | line-height: 125%; | |
|
134 | 154 | } |
|
135 | 155 | |
|
136 | 156 | div.ah { |
|
137 | 157 | background-color: black; |
|
138 | 158 | font-weight: bold; |
|
139 | 159 | color: #ffffff; |
|
140 | 160 | margin-bottom: 3px; |
|
141 | margin-top: 3px | |
|
161 | margin-top: 3px; | |
|
162 | padding: 0.2em; | |
|
163 | border: solid thin #333; | |
|
164 | border-radius: 0.5em; | |
|
165 | -webkit-border-radius: .5em; | |
|
166 | -moz-border-radius: .5em; | |
|
167 | box-shadow: 2px 2px 3px #999; | |
|
168 | -webkit-box-shadow: 2px 2px 3px #999; | |
|
169 | -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; | |
|
170 | background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); | |
|
171 | background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000); | |
|
142 | 172 | } |
|
143 | 173 | |
|
144 | 174 | div.groupHeader { |
|
145 | 175 | margin-left: 16px; |
|
146 | 176 | margin-top: 12px; |
|
147 | margin-bottom: 6px; | |
|
148 | 177 | font-weight: bold; |
|
149 | 178 | } |
|
150 | 179 | |
|
151 | 180 | div.groupText { |
|
152 | 181 | margin-left: 16px; |
|
153 | 182 | font-style: italic; |
|
154 | 183 | } |
|
155 | 184 | |
|
156 | 185 | body { |
|
157 | 186 | background: white; |
|
158 | 187 | color: black; |
|
159 | margin-right: 20px; | |
|
160 | margin-left: 20px; | |
|
188 | margin: 0; | |
|
189 | } | |
|
190 | ||
|
191 | div.contents { | |
|
192 | margin-top: 10px; | |
|
193 | margin-left: 10px; | |
|
194 | margin-right: 5px; | |
|
161 | 195 | } |
|
162 | 196 | |
|
163 | 197 | td.indexkey { |
|
164 |
background-color: # |
|
|
198 | background-color: #EBEFF6; | |
|
165 | 199 | font-weight: bold; |
|
166 |
border: 1px solid #C |
|
|
200 | border: 1px solid #C4CFE5; | |
|
167 | 201 | margin: 2px 0px 2px 0; |
|
168 | 202 | padding: 2px 10px; |
|
169 | 203 | } |
|
170 | 204 | |
|
171 | 205 | td.indexvalue { |
|
172 |
background-color: # |
|
|
173 |
border: 1px solid #C |
|
|
206 | background-color: #EBEFF6; | |
|
207 | border: 1px solid #C4CFE5; | |
|
174 | 208 | padding: 2px 10px; |
|
175 | 209 | margin: 2px 0px; |
|
176 | 210 | } |
|
177 | 211 | |
|
178 | 212 | tr.memlist { |
|
179 |
background-color: # |
|
|
213 | background-color: #EEF1F7; | |
|
180 | 214 | } |
|
181 | 215 | |
|
182 | 216 | p.formulaDsp { |
|
183 | 217 | text-align: center; |
|
184 | 218 | } |
|
185 | 219 | |
|
186 | 220 | img.formulaDsp { |
|
187 | 221 | |
|
188 | 222 | } |
|
189 | 223 | |
|
190 | 224 | img.formulaInl { |
|
191 | 225 | vertical-align: middle; |
|
192 | 226 | } |
|
193 | 227 | |
|
194 | 228 | div.center { |
|
195 | 229 | text-align: center; |
|
196 | 230 | margin-top: 0px; |
|
197 | 231 | margin-bottom: 0px; |
|
198 | 232 | padding: 0px; |
|
199 | 233 | } |
|
200 | 234 | |
|
201 | 235 | div.center img { |
|
202 | 236 | border: 0px; |
|
203 | 237 | } |
|
204 | 238 | |
|
239 | address.footer { | |
|
240 | text-align: right; | |
|
241 | padding-right: 12px; | |
|
242 | } | |
|
243 | ||
|
205 | 244 | img.footer { |
|
206 | 245 | border: 0px; |
|
207 | 246 | vertical-align: middle; |
|
208 | 247 | } |
|
209 | 248 | |
|
210 | 249 | /* @group Code Colorization */ |
|
211 | 250 | |
|
212 | 251 | span.keyword { |
|
213 | 252 | color: #008000 |
|
214 | 253 | } |
|
215 | 254 | |
|
216 | 255 | span.keywordtype { |
|
217 | 256 | color: #604020 |
|
218 | 257 | } |
|
219 | 258 | |
|
220 | 259 | span.keywordflow { |
|
221 | 260 | color: #e08000 |
|
222 | 261 | } |
|
223 | 262 | |
|
224 | 263 | span.comment { |
|
225 | 264 | color: #800000 |
|
226 | 265 | } |
|
227 | 266 | |
|
228 | 267 | span.preprocessor { |
|
229 | 268 | color: #806020 |
|
230 | 269 | } |
|
231 | 270 | |
|
232 | 271 | span.stringliteral { |
|
233 | 272 | color: #002080 |
|
234 | 273 | } |
|
235 | 274 | |
|
236 | 275 | span.charliteral { |
|
237 | 276 | color: #008080 |
|
238 | 277 | } |
|
239 | 278 | |
|
240 | 279 | span.vhdldigit { |
|
241 | 280 | color: #ff00ff |
|
242 | 281 | } |
|
243 | 282 | |
|
244 | 283 | span.vhdlchar { |
|
245 | 284 | color: #000000 |
|
246 | 285 | } |
|
247 | 286 | |
|
248 | 287 | span.vhdlkeyword { |
|
249 | 288 | color: #700070 |
|
250 | 289 | } |
|
251 | 290 | |
|
252 | 291 | span.vhdllogic { |
|
253 | 292 | color: #ff0000 |
|
254 | 293 | } |
|
255 | 294 | |
|
256 | 295 | /* @end */ |
|
257 | 296 | |
|
297 | /* | |
|
258 | 298 | .search { |
|
259 | 299 | color: #003399; |
|
260 | 300 | font-weight: bold; |
|
261 | 301 |
|
|
262 | 302 | |
|
263 | 303 | form.search { |
|
264 | 304 | margin-bottom: 0px; |
|
265 | 305 | margin-top: 0px; |
|
266 | 306 |
|
|
267 | 307 | |
|
268 | 308 | input.search { |
|
269 | 309 | font-size: 75%; |
|
270 | 310 | color: #000080; |
|
271 | 311 | font-weight: normal; |
|
272 | 312 | background-color: #e8eef2; |
|
273 | 313 |
|
|
314 | */ | |
|
274 | 315 | |
|
275 | 316 | td.tiny { |
|
276 | 317 | font-size: 75%; |
|
277 | 318 | } |
|
278 | 319 | |
|
279 | 320 | .dirtab { |
|
280 | 321 | padding: 4px; |
|
281 | 322 | border-collapse: collapse; |
|
282 |
border: 1px solid # |
|
|
323 | border: 1px solid #A3B4D7; | |
|
283 | 324 | } |
|
284 | 325 | |
|
285 | 326 | th.dirtab { |
|
286 |
background: # |
|
|
327 | background: #EBEFF6; | |
|
287 | 328 | font-weight: bold; |
|
288 | 329 | } |
|
289 | 330 | |
|
290 | 331 | hr { |
|
291 | height: 0; | |
|
332 | height: 0px; | |
|
292 | 333 | border: none; |
|
293 |
border-top: 1px solid # |
|
|
334 | border-top: 1px solid #4A6AAA; | |
|
335 | } | |
|
336 | ||
|
337 | hr.footer { | |
|
338 | height: 1px; | |
|
294 | 339 | } |
|
295 | 340 | |
|
296 | 341 | /* @group Member Descriptions */ |
|
297 | 342 | |
|
343 | table.memberdecls { | |
|
344 | border-spacing: 0px; | |
|
345 | padding: 0px; | |
|
346 | } | |
|
347 | ||
|
298 | 348 | .mdescLeft, .mdescRight, |
|
299 | 349 | .memItemLeft, .memItemRight, |
|
300 | 350 | .memTemplItemLeft, .memTemplItemRight, .memTemplParams { |
|
301 |
background-color: #F |
|
|
351 | background-color: #F9FAFC; | |
|
302 | 352 | border: none; |
|
303 | 353 | margin: 4px; |
|
304 | 354 | padding: 1px 0 0 8px; |
|
305 | 355 | } |
|
306 | 356 | |
|
307 | 357 | .mdescLeft, .mdescRight { |
|
308 | 358 | padding: 0px 8px 4px 8px; |
|
309 | 359 | color: #555; |
|
310 | 360 | } |
|
311 | 361 | |
|
312 | 362 | .memItemLeft, .memItemRight, .memTemplParams { |
|
313 |
border-top: 1px solid # |
|
|
363 | border-top: 1px solid #C4CFE5; | |
|
314 | 364 | } |
|
315 | 365 | |
|
316 | 366 | .memItemLeft, .memTemplItemLeft { |
|
317 | 367 | white-space: nowrap; |
|
318 | 368 | } |
|
319 | 369 | |
|
370 | .memItemRight { | |
|
371 | width: 100%; | |
|
372 | } | |
|
373 | ||
|
320 | 374 | .memTemplParams { |
|
321 |
color: # |
|
|
375 | color: #4665A2; | |
|
322 | 376 | white-space: nowrap; |
|
323 | 377 | } |
|
324 | 378 | |
|
325 | 379 | /* @end */ |
|
326 | 380 | |
|
327 | 381 | /* @group Member Details */ |
|
328 | 382 | |
|
329 | 383 | /* Styles for detailed member documentation */ |
|
330 | 384 | |
|
331 | 385 | .memtemplate { |
|
332 | 386 | font-size: 80%; |
|
333 |
color: # |
|
|
387 | color: #4665A2; | |
|
334 | 388 | font-weight: normal; |
|
335 |
margin-left: |
|
|
389 | margin-left: 9px; | |
|
336 | 390 | } |
|
337 | 391 | |
|
338 | 392 | .memnav { |
|
339 |
background-color: # |
|
|
340 |
border: 1px solid # |
|
|
393 | background-color: #EBEFF6; | |
|
394 | border: 1px solid #A3B4D7; | |
|
341 | 395 | text-align: center; |
|
342 | 396 | margin: 2px; |
|
343 | 397 | margin-right: 15px; |
|
344 | 398 | padding: 2px; |
|
345 | 399 | } |
|
346 | 400 | |
|
401 | .mempage { | |
|
402 | width: 100%; | |
|
403 | } | |
|
404 | ||
|
347 | 405 | .memitem { |
|
348 | 406 | padding: 0; |
|
349 | 407 | margin-bottom: 10px; |
|
408 | margin-right: 5px; | |
|
350 | 409 | } |
|
351 | 410 | |
|
352 | 411 | .memname { |
|
353 | 412 |
|
|
354 | 413 |
|
|
355 | } | |
|
356 | ||
|
357 | .memproto, .memdoc { | |
|
358 | border: 1px solid #84b0c7; | |
|
414 | margin-left: 6px; | |
|
359 | 415 | } |
|
360 | 416 | |
|
361 | 417 | .memproto { |
|
362 | padding: 0; | |
|
363 | background-color: #d5e1e8; | |
|
418 | border-top: 1px solid #A8B8D9; | |
|
419 | border-left: 1px solid #A8B8D9; | |
|
420 | border-right: 1px solid #A8B8D9; | |
|
421 | padding: 6px 0px 6px 0px; | |
|
422 | color: #253555; | |
|
364 | 423 |
|
|
365 | -webkit-border-top-left-radius: 8px; | |
|
366 | -webkit-border-top-right-radius: 8px; | |
|
367 |
|
|
|
368 | -moz-border-radius-topleft: 8px; | |
|
369 | -moz-border-radius-topright: 8px; | |
|
424 | text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); | |
|
425 | /* opera specific markup */ | |
|
426 | box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); | |
|
427 | border-top-right-radius: 8px; | |
|
428 | border-top-left-radius: 8px; | |
|
429 | /* firefox specific markup */ | |
|
370 | 430 | -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; |
|
431 | -moz-border-radius-topright: 8px; | |
|
432 | -moz-border-radius-topleft: 8px; | |
|
433 | /* webkit specific markup */ | |
|
434 | -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); | |
|
435 | -webkit-border-top-right-radius: 8px; | |
|
436 | -webkit-border-top-left-radius: 8px; | |
|
437 | background-image:url('nav_f.png'); | |
|
438 | background-repeat:repeat-x; | |
|
439 | background-color: #E2E8F2; | |
|
371 | 440 | |
|
372 | 441 | } |
|
373 | 442 | |
|
374 | 443 | .memdoc { |
|
444 | border-bottom: 1px solid #A8B8D9; | |
|
445 | border-left: 1px solid #A8B8D9; | |
|
446 | border-right: 1px solid #A8B8D9; | |
|
375 | 447 |
|
|
376 |
|
|
|
448 | background-color: #FBFCFD; | |
|
377 | 449 |
|
|
378 | -webkit-border-bottom-left-radius: 8px; | |
|
379 |
|
|
|
380 | -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); | |
|
450 | /* opera specific markup */ | |
|
451 | border-bottom-left-radius: 8px; | |
|
452 | border-bottom-right-radius: 8px; | |
|
453 | box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); | |
|
454 | /* firefox specific markup */ | |
|
381 | 455 |
|
|
382 | 456 |
|
|
383 | 457 | -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; |
|
458 | background-image: -moz-linear-gradient(center top, #FFFFFF 0%, #FFFFFF 60%, #F7F8FB 95%, #EEF1F7); | |
|
459 | /* webkit specific markup */ | |
|
460 | -webkit-border-bottom-left-radius: 8px; | |
|
461 | -webkit-border-bottom-right-radius: 8px; | |
|
462 | -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); | |
|
463 | background-image: -webkit-gradient(linear,center top,center bottom,from(#FFFFFF), color-stop(0.6,#FFFFFF), color-stop(0.60,#FFFFFF), color-stop(0.95,#F7F8FB), to(#EEF1F7)); | |
|
384 | 464 | } |
|
385 | 465 | |
|
386 | 466 | .paramkey { |
|
387 | 467 | text-align: right; |
|
388 | 468 | } |
|
389 | 469 | |
|
390 | 470 | .paramtype { |
|
391 | 471 | white-space: nowrap; |
|
392 | 472 | } |
|
393 | 473 | |
|
394 | 474 | .paramname { |
|
395 | 475 | color: #602020; |
|
396 | 476 | white-space: nowrap; |
|
397 | 477 | } |
|
398 | 478 | .paramname em { |
|
399 | 479 | font-style: normal; |
|
400 | 480 | } |
|
401 | 481 | |
|
482 | .params, .retval, .exception, .tparams { | |
|
483 | border-spacing: 6px 2px; | |
|
484 | } | |
|
485 | ||
|
486 | .params .paramname, .retval .paramname { | |
|
487 | font-weight: bold; | |
|
488 | vertical-align: top; | |
|
489 | } | |
|
490 | ||
|
491 | .params .paramtype { | |
|
492 | font-style: italic; | |
|
493 | vertical-align: top; | |
|
494 | } | |
|
495 | ||
|
496 | .params .paramdir { | |
|
497 | font-family: "courier new",courier,monospace; | |
|
498 | vertical-align: top; | |
|
499 | } | |
|
500 | ||
|
501 | ||
|
502 | ||
|
503 | ||
|
402 | 504 | /* @end */ |
|
403 | 505 | |
|
404 | 506 | /* @group Directory (tree) */ |
|
405 | 507 | |
|
406 | 508 | /* for the tree view */ |
|
407 | 509 | |
|
408 | 510 | .ftvtree { |
|
409 | 511 | font-family: sans-serif; |
|
410 |
margin: 0 |
|
|
512 | margin: 0px; | |
|
411 | 513 | } |
|
412 | 514 | |
|
413 | 515 | /* these are for tree view when used as main index */ |
|
414 | 516 | |
|
415 | 517 | .directory { |
|
416 | 518 | font-size: 9pt; |
|
417 | 519 | font-weight: bold; |
|
520 | margin: 5px; | |
|
418 | 521 | } |
|
419 | 522 | |
|
420 | 523 | .directory h3 { |
|
421 | 524 | margin: 0px; |
|
422 | 525 | margin-top: 1em; |
|
423 | 526 | font-size: 11pt; |
|
424 | 527 | } |
|
425 | 528 | |
|
426 | 529 | /* |
|
427 | 530 | The following two styles can be used to replace the root node title |
|
428 | 531 | with an image of your choice. Simply uncomment the next two styles, |
|
429 | 532 | specify the name of your image and be sure to set 'height' to the |
|
430 | 533 | proper pixel height of your image. |
|
431 | 534 | */ |
|
432 | 535 | |
|
433 | 536 | /* |
|
434 | 537 | .directory h3.swap { |
|
435 | 538 | height: 61px; |
|
436 | 539 | background-repeat: no-repeat; |
|
437 | 540 | background-image: url("yourimage.gif"); |
|
438 | 541 | } |
|
439 | 542 | .directory h3.swap span { |
|
440 | 543 | display: none; |
|
441 | 544 | } |
|
442 | 545 | */ |
|
443 | 546 | |
|
444 | 547 | .directory > h3 { |
|
445 | 548 | margin-top: 0; |
|
446 | 549 | } |
|
447 | 550 | |
|
448 | 551 | .directory p { |
|
449 | 552 | margin: 0px; |
|
450 | 553 | white-space: nowrap; |
|
451 | 554 | } |
|
452 | 555 | |
|
453 | 556 | .directory div { |
|
454 | 557 | display: none; |
|
455 | 558 | margin: 0px; |
|
456 | 559 | } |
|
457 | 560 | |
|
458 | 561 | .directory img { |
|
459 | 562 | vertical-align: -30%; |
|
460 | 563 | } |
|
461 | 564 | |
|
462 | 565 | /* these are for tree view when not used as main index */ |
|
463 | 566 | |
|
464 | 567 | .directory-alt { |
|
465 | 568 | font-size: 100%; |
|
466 | 569 | font-weight: bold; |
|
467 | 570 | } |
|
468 | 571 | |
|
469 | 572 | .directory-alt h3 { |
|
470 | 573 | margin: 0px; |
|
471 | 574 | margin-top: 1em; |
|
472 | 575 | font-size: 11pt; |
|
473 | 576 | } |
|
474 | 577 | |
|
475 | 578 | .directory-alt > h3 { |
|
476 | 579 | margin-top: 0; |
|
477 | 580 | } |
|
478 | 581 | |
|
479 | 582 | .directory-alt p { |
|
480 | 583 | margin: 0px; |
|
481 | 584 | white-space: nowrap; |
|
482 | 585 | } |
|
483 | 586 | |
|
484 | 587 | .directory-alt div { |
|
485 | 588 | display: none; |
|
486 | 589 | margin: 0px; |
|
487 | 590 | } |
|
488 | 591 | |
|
489 | 592 | .directory-alt img { |
|
490 | 593 | vertical-align: -30%; |
|
491 | 594 | } |
|
492 | 595 | |
|
493 | 596 | /* @end */ |
|
494 | 597 | |
|
598 | div.dynheader { | |
|
599 | margin-top: 8px; | |
|
600 | } | |
|
601 | ||
|
495 | 602 | address { |
|
496 | 603 | font-style: normal; |
|
497 |
color: # |
|
|
604 | color: #2A3D61; | |
|
605 | } | |
|
606 | ||
|
607 | table.doxtable { | |
|
608 | border-collapse:collapse; | |
|
609 | } | |
|
610 | ||
|
611 | table.doxtable td, table.doxtable th { | |
|
612 | border: 1px solid #2D4068; | |
|
613 | padding: 3px 7px 2px; | |
|
614 | } | |
|
615 | ||
|
616 | table.doxtable th { | |
|
617 | background-color: #374F7F; | |
|
618 | color: #FFFFFF; | |
|
619 | font-size: 110%; | |
|
620 | padding-bottom: 4px; | |
|
621 | padding-top: 5px; | |
|
622 | text-align:left; | |
|
623 | } | |
|
624 | ||
|
625 | .tabsearch { | |
|
626 | top: 0px; | |
|
627 | left: 10px; | |
|
628 | height: 36px; | |
|
629 | background-image: url('tab_b.png'); | |
|
630 | z-index: 101; | |
|
631 | overflow: hidden; | |
|
632 | font-size: 13px; | |
|
633 | } | |
|
634 | ||
|
635 | .navpath ul | |
|
636 | { | |
|
637 | font-size: 11px; | |
|
638 | background-image:url('tab_b.png'); | |
|
639 | background-repeat:repeat-x; | |
|
640 | height:30px; | |
|
641 | line-height:30px; | |
|
642 | color:#8AA0CC; | |
|
643 | border:solid 1px #C2CDE4; | |
|
644 | overflow:hidden; | |
|
645 | margin:0px; | |
|
646 | padding:0px; | |
|
647 | } | |
|
648 | ||
|
649 | .navpath li | |
|
650 | { | |
|
651 | list-style-type:none; | |
|
652 | float:left; | |
|
653 | padding-left:10px; | |
|
654 | padding-right:15px; | |
|
655 | background-image:url('bc_s.png'); | |
|
656 | background-repeat:no-repeat; | |
|
657 | background-position:right; | |
|
658 | color:#364D7C; | |
|
659 | } | |
|
660 | ||
|
661 | .navpath li.navelem a | |
|
662 | { | |
|
663 | height:32px; | |
|
664 | display:block; | |
|
665 | text-decoration: none; | |
|
666 | outline: none; | |
|
667 | } | |
|
668 | ||
|
669 | .navpath li.navelem a:hover | |
|
670 | { | |
|
671 | color:#6884BD; | |
|
672 | } | |
|
673 | ||
|
674 | .navpath li.footer | |
|
675 | { | |
|
676 | list-style-type:none; | |
|
677 | float:right; | |
|
678 | padding-left:10px; | |
|
679 | padding-right:15px; | |
|
680 | background-image:none; | |
|
681 | background-repeat:no-repeat; | |
|
682 | background-position:right; | |
|
683 | color:#364D7C; | |
|
684 | font-size: 8pt; | |
|
685 | } | |
|
686 | ||
|
687 | ||
|
688 | div.summary | |
|
689 | { | |
|
690 | float: right; | |
|
691 | font-size: 8pt; | |
|
692 | padding-right: 5px; | |
|
693 | width: 50%; | |
|
694 | text-align: right; | |
|
695 | } | |
|
696 | ||
|
697 | div.summary a | |
|
698 | { | |
|
699 | white-space: nowrap; | |
|
700 | } | |
|
701 | ||
|
702 | div.ingroups | |
|
703 | { | |
|
704 | font-size: 8pt; | |
|
705 | padding-left: 5px; | |
|
706 | width: 50%; | |
|
707 | text-align: left; | |
|
708 | } | |
|
709 | ||
|
710 | div.ingroups a | |
|
711 | { | |
|
712 | white-space: nowrap; | |
|
713 | } | |
|
714 | ||
|
715 | div.header | |
|
716 | { | |
|
717 | background-image:url('nav_h.png'); | |
|
718 | background-repeat:repeat-x; | |
|
719 | background-color: #F9FAFC; | |
|
720 | margin: 0px; | |
|
721 | border-bottom: 1px solid #C4CFE5; | |
|
722 | } | |
|
723 | ||
|
724 | div.headertitle | |
|
725 | { | |
|
726 | padding: 5px 5px 5px 10px; | |
|
727 | } | |
|
728 | ||
|
729 | dl | |
|
730 | { | |
|
731 | padding: 0 0 0 10px; | |
|
732 | } | |
|
733 | ||
|
734 | dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug | |
|
735 | { | |
|
736 | border-left:4px solid; | |
|
737 | padding: 0 0 0 6px; | |
|
738 | } | |
|
739 | ||
|
740 | dl.note | |
|
741 | { | |
|
742 | border-color: #D0C000; | |
|
743 | } | |
|
744 | ||
|
745 | dl.warning, dl.attention | |
|
746 | { | |
|
747 | border-color: #FF0000; | |
|
498 | 748 | } |
|
749 | ||
|
750 | dl.pre, dl.post, dl.invariant | |
|
751 | { | |
|
752 | border-color: #00D000; | |
|
753 | } | |
|
754 | ||
|
755 | dl.deprecated | |
|
756 | { | |
|
757 | border-color: #505050; | |
|
758 | } | |
|
759 | ||
|
760 | dl.todo | |
|
761 | { | |
|
762 | border-color: #00C0E0; | |
|
763 | } | |
|
764 | ||
|
765 | dl.test | |
|
766 | { | |
|
767 | border-color: #3030E0; | |
|
768 | } | |
|
769 | ||
|
770 | dl.bug | |
|
771 | { | |
|
772 | border-color: #C08050; | |
|
773 | } | |
|
774 | ||
|
775 | #projectlogo | |
|
776 | { | |
|
777 | text-align: center; | |
|
778 | vertical-align: bottom; | |
|
779 | border-collapse: separate; | |
|
780 | } | |
|
781 | ||
|
782 | #projectlogo img | |
|
783 | { | |
|
784 | border: 0px none; | |
|
785 | } | |
|
786 | ||
|
787 | #projectname | |
|
788 | { | |
|
789 | font: 300% Tahoma, Arial,sans-serif; | |
|
790 | margin: 0px; | |
|
791 | padding: 2px 0px; | |
|
792 | } | |
|
793 | ||
|
794 | #projectbrief | |
|
795 | { | |
|
796 | font: 120% Tahoma, Arial,sans-serif; | |
|
797 | margin: 0px; | |
|
798 | padding: 0px; | |
|
799 | } | |
|
800 | ||
|
801 | #projectnumber | |
|
802 | { | |
|
803 | font: 50% Tahoma, Arial,sans-serif; | |
|
804 | margin: 0px; | |
|
805 | padding: 0px; | |
|
806 | } | |
|
807 | ||
|
808 | #titlearea | |
|
809 | { | |
|
810 | padding: 0px; | |
|
811 | margin: 0px; | |
|
812 | width: 100%; | |
|
813 | border-bottom: 1px solid #5373B4; | |
|
814 | } | |
|
815 | ||
|
816 | .image | |
|
817 | { | |
|
818 | text-align: center; | |
|
819 | } | |
|
820 | ||
|
821 | .dotgraph | |
|
822 | { | |
|
823 | text-align: center; | |
|
824 | } | |
|
825 | ||
|
826 | .mscgraph | |
|
827 | { | |
|
828 | text-align: center; | |
|
829 | } | |
|
830 | ||
|
831 | .caption | |
|
832 | { | |
|
833 | font-weight: bold; | |
|
834 | } | |
|
835 |
General Comments 0
You need to be logged in to leave comments.
Login now