Loading INSTALL +2 −2 Original line number Original line Diff line number Diff line DOXYGEN Version 1.2.0 DOXYGEN Version 1.2.0-20000731 Please read the installation section of the manual for instructions. Please read the installation section of the manual for instructions. -------- -------- Dimitri van Heesch (30 July 2000) Dimitri van Heesch (31 July 2000) README +2 −2 Original line number Original line Diff line number Diff line DOXYGEN Version 1.2.0 DOXYGEN Version 1.2.0-20000731 Please read INSTALL for compilation instructions. Please read INSTALL for compilation instructions. Loading @@ -7,4 +7,4 @@ The latest version of doxygen can be obtained at Enjoy, Enjoy, Dimitri van Heesch (30 July 2000) Dimitri van Heesch (31 July 2000) VERSION +1 −1 Original line number Original line Diff line number Diff line 1.2.0 1.2.0-20000731 addon/configgen/config_templ.l +2 −0 Original line number Original line Diff line number Diff line Loading @@ -272,6 +272,8 @@ void writeTemplateConfig(QFile *f,bool sl) t << "# All text after a hash (#) is considered a comment and will be ignored\n"; t << "# All text after a hash (#) is considered a comment and will be ignored\n"; t << "# The format is:\n"; t << "# The format is:\n"; t << "# TAG = value [value, ...]\n"; t << "# TAG = value [value, ...]\n"; t << "# For lists items can also be appended using:\n"; t << "# TAG += value [value, ...]\n"; t << "# Values that contain spaces should be placed between quotes (\" \")\n"; t << "# Values that contain spaces should be placed between quotes (\" \")\n"; } } #CONFIG Template #CONFIG Template Loading addon/configgen/configgen.cpp +8 −1 Original line number Original line Diff line number Diff line Loading @@ -27,7 +27,7 @@ #include <stdio.h> #include <stdio.h> #include <stdlib.h> #include <stdlib.h> #define MAX_OPTION_LENGTH 22 #define MAX_OPTION_LENGTH 23 static QString spaces=" "; static QString spaces=" "; Loading Loading @@ -259,10 +259,17 @@ class ConfigList : public ConfigOption const char * short_,const char * long_,WidgetType w=String); const char * short_,const char * long_,WidgetType w=String); virtual void printRules(QTextStream &t) virtual void printRules(QTextStream &t) { { // rule for assignment t << "<Start>\"" << cfgName << "\"[ \\t]*\"=\""; t << "<Start>\"" << cfgName << "\"[ \\t]*\"=\""; t << spaces.left(MAX_OPTION_LENGTH-cfgName.length()); t << spaces.left(MAX_OPTION_LENGTH-cfgName.length()); t << "{ BEGIN(GetStrList); l=&Config::" << varName; t << "{ BEGIN(GetStrList); l=&Config::" << varName; t << "; l->clear(); elemStr=\"\"; }" << endl; t << "; l->clear(); elemStr=\"\"; }" << endl; // rule for appending t << "<Start>\"" << cfgName << "\"[ \\t]*\"+=\""; t << spaces.left(MAX_OPTION_LENGTH-cfgName.length()-1); t << "{ BEGIN(GetStrList); l=&Config::" << varName; t << "; elemStr=\"\"; }" << endl; } } virtual void printInit(QTextStream &t) virtual void printInit(QTextStream &t) { { Loading Loading
INSTALL +2 −2 Original line number Original line Diff line number Diff line DOXYGEN Version 1.2.0 DOXYGEN Version 1.2.0-20000731 Please read the installation section of the manual for instructions. Please read the installation section of the manual for instructions. -------- -------- Dimitri van Heesch (30 July 2000) Dimitri van Heesch (31 July 2000)
README +2 −2 Original line number Original line Diff line number Diff line DOXYGEN Version 1.2.0 DOXYGEN Version 1.2.0-20000731 Please read INSTALL for compilation instructions. Please read INSTALL for compilation instructions. Loading @@ -7,4 +7,4 @@ The latest version of doxygen can be obtained at Enjoy, Enjoy, Dimitri van Heesch (30 July 2000) Dimitri van Heesch (31 July 2000)
addon/configgen/config_templ.l +2 −0 Original line number Original line Diff line number Diff line Loading @@ -272,6 +272,8 @@ void writeTemplateConfig(QFile *f,bool sl) t << "# All text after a hash (#) is considered a comment and will be ignored\n"; t << "# All text after a hash (#) is considered a comment and will be ignored\n"; t << "# The format is:\n"; t << "# The format is:\n"; t << "# TAG = value [value, ...]\n"; t << "# TAG = value [value, ...]\n"; t << "# For lists items can also be appended using:\n"; t << "# TAG += value [value, ...]\n"; t << "# Values that contain spaces should be placed between quotes (\" \")\n"; t << "# Values that contain spaces should be placed between quotes (\" \")\n"; } } #CONFIG Template #CONFIG Template Loading
addon/configgen/configgen.cpp +8 −1 Original line number Original line Diff line number Diff line Loading @@ -27,7 +27,7 @@ #include <stdio.h> #include <stdio.h> #include <stdlib.h> #include <stdlib.h> #define MAX_OPTION_LENGTH 22 #define MAX_OPTION_LENGTH 23 static QString spaces=" "; static QString spaces=" "; Loading Loading @@ -259,10 +259,17 @@ class ConfigList : public ConfigOption const char * short_,const char * long_,WidgetType w=String); const char * short_,const char * long_,WidgetType w=String); virtual void printRules(QTextStream &t) virtual void printRules(QTextStream &t) { { // rule for assignment t << "<Start>\"" << cfgName << "\"[ \\t]*\"=\""; t << "<Start>\"" << cfgName << "\"[ \\t]*\"=\""; t << spaces.left(MAX_OPTION_LENGTH-cfgName.length()); t << spaces.left(MAX_OPTION_LENGTH-cfgName.length()); t << "{ BEGIN(GetStrList); l=&Config::" << varName; t << "{ BEGIN(GetStrList); l=&Config::" << varName; t << "; l->clear(); elemStr=\"\"; }" << endl; t << "; l->clear(); elemStr=\"\"; }" << endl; // rule for appending t << "<Start>\"" << cfgName << "\"[ \\t]*\"+=\""; t << spaces.left(MAX_OPTION_LENGTH-cfgName.length()-1); t << "{ BEGIN(GetStrList); l=&Config::" << varName; t << "; elemStr=\"\"; }" << endl; } } virtual void printInit(QTextStream &t) virtual void printInit(QTextStream &t) { { Loading