Orb/Doxygen/src/rtfgen.cpp
changeset 4 468f4c8d3d5b
parent 0 42188c7ea2d9
equal deleted inserted replaced
3:d8fccb2cd802 4:468f4c8d3d5b
     1 /******************************************************************************
     1 /******************************************************************************
     2  *
     2  *
     3  * 
     3  * 
     4  *
     4  *
     5  * Copyright (C) 1997-2008 by Parker Waechter & Dimitri van Heesch.
     5  * Copyright (C) 1997-2010 by Parker Waechter & Dimitri van Heesch.
     6  *
     6  *
     7  * Style sheet additions by Alexander Bartolich
     7  * Style sheet additions by Alexander Bartolich
     8  *
     8  *
     9  * Permission to use, copy, modify, and distribute this software and its
     9  * Permission to use, copy, modify, and distribute this software and its
    10  * documentation under the terms of the GNU General Public License is hereby
    10  * documentation under the terms of the GNU General Public License is hereby
   631       break;
   631       break;
   632     case isNamespaceIndex:
   632     case isNamespaceIndex:
   633       t << "\\par " << rtf_Style_Reset << endl;
   633       t << "\\par " << rtf_Style_Reset << endl;
   634       if (fortranOpt)
   634       if (fortranOpt)
   635       {
   635       {
   636           t << "{\\tc \\v " << theTranslator->trModulesIndex() << "}"<< endl;
   636           t << "{\\tc \\v " << theTranslator->trModulesIndex() << "}" << endl;
   637       }
   637       }
   638       else
   638       else
   639       {
   639       {
   640           t << "{\\tc \\v " << theTranslator->trNamespaceIndex() << "}"<< endl;
   640           t << "{\\tc \\v " << theTranslator->trNamespaceIndex() << "}" << endl;
   641       }
   641       }
   642       
   642       
   643       t << "{\\field\\fldedit{\\*\\fldinst INCLUDETEXT \"namespaces.rtf\" \\\\*MERGEFORMAT}{\\fldrslt includedstuff}}\n";
   643       t << "{\\field\\fldedit{\\*\\fldinst INCLUDETEXT \"namespaces.rtf\" \\\\*MERGEFORMAT}{\\fldrslt includedstuff}}\n";
   644       break;
   644       break;
   645     case isClassHierarchyIndex:
   645     case isClassHierarchyIndex:
  2708   decrementIndentLevel();
  2708   decrementIndentLevel();
  2709   m_omitParagraph = TRUE;
  2709   m_omitParagraph = TRUE;
  2710   t << "}";
  2710   t << "}";
  2711 }
  2711 }
  2712 
  2712 
  2713 
  2713 void RTFGenerator::startIndexListItem()
  2714 
  2714 {
  2715 
  2715   DBG_RTF(t << "{\\comment (startIndexListItem)}"    << endl)
       
  2716 }
       
  2717 
       
  2718 void RTFGenerator::endIndexListItem()
       
  2719 {
       
  2720   DBG_RTF(t << "{\\comment (endIndexListItem)}"    << endl)
       
  2721   t << "\\par" << endl;
       
  2722 }
       
  2723 
       
  2724