@@ -373,131 +373,131 @@ DB_GEN_C
373
373
m_codeGen.setSourceFileName (" " );
374
374
}
375
375
376
- void DocbookGenerator::startIndexSection (IndexSections is)
376
+ void DocbookGenerator::startIndexSection (IndexSection is)
377
377
{
378
- DB_GEN_C2 (" IndexSections " << is)
378
+ DB_GEN_C2 (" IndexSection " << is)
379
379
switch (is)
380
380
{
381
- case isTitlePageStart:
381
+ case IndexSection:: isTitlePageStart:
382
382
{
383
383
QCString dbk_projectName = Config_getString (PROJECT_NAME);
384
384
m_t << " <info>\n " ;
385
385
m_t << " <title>" << convertToDocBook (dbk_projectName) << " </title>\n " ;
386
386
m_t << " </info>\n " ;
387
387
}
388
388
break ;
389
- case isTitlePageAuthor:
389
+ case IndexSection:: isTitlePageAuthor:
390
390
break ;
391
- case isMainPage:
391
+ case IndexSection:: isMainPage:
392
392
m_t << " <chapter>\n " ;
393
393
m_t << " <title>" ;
394
394
break ;
395
- case isModuleIndex:
396
- // Module Index} \n"
395
+ case IndexSection:: isModuleIndex:
396
+ // Module Index\n"
397
397
break ;
398
- case isDirIndex:
399
- // Directory Index} \n"
398
+ case IndexSection:: isDirIndex:
399
+ // Directory Index\n"
400
400
break ;
401
- case isNamespaceIndex:
402
- // Namespace Index} \n"
401
+ case IndexSection:: isNamespaceIndex:
402
+ // Namespace Index\n"
403
403
break ;
404
- case isConceptIndex:
405
- // Concept Index} \n"
404
+ case IndexSection:: isConceptIndex:
405
+ // Concept Index\n"
406
406
break ;
407
- case isClassHierarchyIndex:
408
- // Hierarchical Index} \n"
407
+ case IndexSection:: isClassHierarchyIndex:
408
+ // Hierarchical Index\n"
409
409
break ;
410
- case isCompoundIndex:
410
+ case IndexSection:: isCompoundIndex:
411
411
// m_t << "{"; //Class Index}\n"
412
412
break ;
413
- case isFileIndex:
414
- // Annotated File Index} \n"
413
+ case IndexSection:: isFileIndex:
414
+ // Annotated File Index\n"
415
415
break ;
416
- case isPageIndex:
417
- // Annotated Page Index} \n"
416
+ case IndexSection:: isPageIndex:
417
+ // Annotated Page Index\n"
418
418
break ;
419
- case isModuleDocumentation:
419
+ case IndexSection:: isModuleDocumentation:
420
420
m_t << " <chapter>\n " ;
421
421
m_t << " <title>" ;
422
422
break ;
423
- case isDirDocumentation:
423
+ case IndexSection:: isDirDocumentation:
424
424
m_t << " <chapter>\n " ;
425
425
m_t << " <title>" ;
426
426
break ;
427
- case isNamespaceDocumentation:
427
+ case IndexSection:: isNamespaceDocumentation:
428
428
m_t << " <chapter>\n " ;
429
429
m_t << " <title>" ;
430
430
break ;
431
- case isConceptDocumentation:
431
+ case IndexSection:: isConceptDocumentation:
432
432
m_t << " <chapter>\n " ;
433
433
m_t << " <title>" ;
434
434
break ;
435
- case isClassDocumentation:
435
+ case IndexSection:: isClassDocumentation:
436
436
m_t << " <chapter>\n " ;
437
437
m_t << " <title>" ;
438
438
break ;
439
- case isFileDocumentation:
439
+ case IndexSection:: isFileDocumentation:
440
440
m_t << " <chapter>\n " ;
441
441
m_t << " <title>" ;
442
442
break ;
443
- case isExampleDocumentation:
443
+ case IndexSection:: isExampleDocumentation:
444
444
m_t << " <chapter>\n " ;
445
445
m_t << " <title>" ;
446
446
break ;
447
- case isPageDocumentation:
447
+ case IndexSection:: isPageDocumentation:
448
448
break ;
449
- case isPageDocumentation2:
449
+ case IndexSection:: isPageDocumentation2:
450
450
break ;
451
- case isEndIndex:
451
+ case IndexSection:: isEndIndex:
452
452
break ;
453
453
}
454
454
}
455
455
456
- void DocbookGenerator::endIndexSection (IndexSections is)
456
+ void DocbookGenerator::endIndexSection (IndexSection is)
457
457
{
458
- DB_GEN_C2 (" IndexSections " << is)
458
+ DB_GEN_C2 (" IndexSection " << is)
459
459
switch (is)
460
460
{
461
- case isTitlePageStart:
461
+ case IndexSection:: isTitlePageStart:
462
462
break ;
463
- case isTitlePageAuthor:
463
+ case IndexSection:: isTitlePageAuthor:
464
464
break ;
465
- case isMainPage:
465
+ case IndexSection:: isMainPage:
466
466
m_t << " </title>\n " ;
467
467
m_t << " <xi:include href=\" mainpage.xml\" xmlns:xi=\" http://www.w3.org/2001/XInclude\" />\n " ;
468
468
m_t << " </chapter>\n " ;
469
469
break ;
470
- case isModuleIndex:
470
+ case IndexSection:: isModuleIndex:
471
471
// m_t << "</chapter>\n";
472
472
break ;
473
- case isDirIndex:
473
+ case IndexSection:: isDirIndex:
474
474
// m_t << "<xi:include href=\"dirs.xml\" xmlns:xi=\"http://www.w3.org/2001/XInclude\"/>";
475
475
// m_t << "</chapter>\n";
476
476
break ;
477
- case isNamespaceIndex:
477
+ case IndexSection:: isNamespaceIndex:
478
478
// m_t << "<xi:include href=\"namespaces.xml\" xmlns:xi=\"http://www.w3.org/2001/XInclude\"/>";
479
479
// m_t << "</chapter>\n";
480
480
break ;
481
- case isConceptIndex:
481
+ case IndexSection:: isConceptIndex:
482
482
// m_t << "<xi:include href=\"concepts.xml\" xmlns:xi=\"http://www.w3.org/2001/XInclude\"/>";
483
483
// m_t << "</chapter>\n";
484
484
break ;
485
- case isClassHierarchyIndex:
485
+ case IndexSection:: isClassHierarchyIndex:
486
486
// m_t << "<xi:include href=\"hierarchy.xml\" xmlns:xi=\"http://www.w3.org/2001/XInclude\"/>";
487
487
// m_t << "</chapter>\n";
488
488
break ;
489
- case isCompoundIndex:
489
+ case IndexSection:: isCompoundIndex:
490
490
// m_t << "</chapter>\n";
491
491
break ;
492
- case isFileIndex:
492
+ case IndexSection:: isFileIndex:
493
493
// m_t << "<xi:include href=\"files.xml\" xmlns:xi=\"http://www.w3.org/2001/XInclude\"/>";
494
494
// m_t << "</chapter>\n";
495
495
break ;
496
- case isPageIndex:
496
+ case IndexSection:: isPageIndex:
497
497
// m_t << "<xi:include href=\"pages.xml\" xmlns:xi=\"http://www.w3.org/2001/XInclude\"/>";
498
498
// m_t << "</chapter>\n";
499
499
break ;
500
- case isModuleDocumentation:
500
+ case IndexSection:: isModuleDocumentation:
501
501
{
502
502
m_t << " </title>\n " ;
503
503
for (const auto &gd : *Doxygen::groupLinkedMap)
@@ -510,7 +510,7 @@ DB_GEN_C2("IndexSections " << is)
510
510
}
511
511
m_t << " </chapter>\n " ;
512
512
break ;
513
- case isDirDocumentation:
513
+ case IndexSection:: isDirDocumentation:
514
514
{
515
515
m_t << " </title>\n " ;
516
516
for (const auto &dd : *Doxygen::dirLinkedMap)
@@ -523,7 +523,7 @@ DB_GEN_C2("IndexSections " << is)
523
523
}
524
524
m_t << " </chapter>\n " ;
525
525
break ;
526
- case isNamespaceDocumentation:
526
+ case IndexSection:: isNamespaceDocumentation:
527
527
{
528
528
m_t << " </title>\n " ;
529
529
for (const auto &nd : *Doxygen::namespaceLinkedMap)
@@ -536,7 +536,7 @@ DB_GEN_C2("IndexSections " << is)
536
536
}
537
537
m_t << " </chapter>\n " ;
538
538
break ;
539
- case isConceptDocumentation:
539
+ case IndexSection:: isConceptDocumentation:
540
540
{
541
541
m_t << " </title>\n " ;
542
542
for (const auto &cd : *Doxygen::conceptLinkedMap)
@@ -549,7 +549,7 @@ DB_GEN_C2("IndexSections " << is)
549
549
}
550
550
m_t << " </chapter>\n " ;
551
551
break ;
552
- case isClassDocumentation:
552
+ case IndexSection:: isClassDocumentation:
553
553
{
554
554
m_t << " </title>\n " ;
555
555
for (const auto &cd : *Doxygen::classLinkedMap)
@@ -566,7 +566,7 @@ DB_GEN_C2("IndexSections " << is)
566
566
}
567
567
m_t << " </chapter>\n " ;
568
568
break ;
569
- case isFileDocumentation:
569
+ case IndexSection:: isFileDocumentation:
570
570
{
571
571
m_t << " </title>\n " ;
572
572
for (const auto &fn : *Doxygen::inputNameLinkedMap)
@@ -586,7 +586,7 @@ DB_GEN_C2("IndexSections " << is)
586
586
}
587
587
m_t << " </chapter>\n " ;
588
588
break ;
589
- case isExampleDocumentation:
589
+ case IndexSection:: isExampleDocumentation:
590
590
{
591
591
m_t << " </title>\n " ;
592
592
for (const auto &pd : *Doxygen::exampleLinkedMap)
@@ -596,11 +596,11 @@ DB_GEN_C2("IndexSections " << is)
596
596
}
597
597
m_t << " </chapter>\n " ;
598
598
break ;
599
- case isPageDocumentation:
599
+ case IndexSection:: isPageDocumentation:
600
600
break ;
601
- case isPageDocumentation2:
601
+ case IndexSection:: isPageDocumentation2:
602
602
break ;
603
- case isEndIndex:
603
+ case IndexSection:: isEndIndex:
604
604
m_t << " <index/>\n " ;
605
605
break ;
606
606
}
0 commit comments