My Project
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Classes | Functions
layout.h File Reference
#include <qlist.h>
#include "types.h"

Go to the source code of this file.

Classes

struct  LayoutDocEntry
 Base class representing a piece of a documentation page. More...
 
struct  LayoutDocEntrySimple
 Represents of a piece of a documentation page without configurable parts. More...
 
struct  LayoutDocEntrySection
 
struct  LayoutDocEntryMemberDecl
 Represents of a member declaration list with configurable title and subtitle. More...
 
struct  LayoutDocEntryMemberDef
 Represents of a member definition list with configurable title. More...
 
struct  LayoutNavEntry
 Base class for the layout of a navigation item at the top of the HTML pages. More...
 
class  LayoutDocManager
 Singleton providing access to the (user configurable) layout of the documentation. More...
 

Functions

void writeDefaultLayoutFile (const char *fileName)
 

Function Documentation

void writeDefaultLayoutFile ( const char *  fileName)

Definition at line 1397 of file layout.cpp.

References err(), layout_default, openOutputFile(), substitute(), and versionString.

Referenced by readConfiguration().

{
QFile f(fileName);
bool ok = openOutputFile(fileName,f);
if (!ok)
{
err("Failed to open file %s for writing!\n",fileName);
return;
}
QTextStream t(&f);
t << substitute(layout_default,"$doxygenversion",versionString);
}