00001 //============================================== 00002 // copyright : (C) 2003 by Will Stokes 00003 //============================================== 00004 // This program is free software; you can redistribute it 00005 // and/or modify it under the terms of the GNU General 00006 // Public License as published by the Free Software 00007 // Foundation; either version 2 of the License, or 00008 // (at your option) any later version. 00009 // 00010 // As a special exception, Will Stokes gives permission to 00011 // link this program with Qt non-commercial edition, and 00012 // distribute the resulting executable, without including the 00013 // source code for the Qt non-commercial edition in the 00014 // source distribution. 00015 //============================================== 00016 00017 #ifndef CONFIG_H 00018 #define CONFIG_H 00019 00020 //-------------------- 00021 //forward declarations 00022 //-------------------- 00023 class QString; 00024 00025 //image sizes 00026 #define THUMBNAIL_WIDTH 200 00027 #define THUMBNAIL_HEIGHT 150 00028 #define SLIDESHOW_WIDTH 600 00029 #define SLIDESHOW_HEIGHT 400 00030 00031 //path to materials 00032 extern QString MATERIAL_DIR; 00033 00034 //path to button icons, etc 00035 extern QString IMAGE_PATH; 00036 00037 //path to handbook 00038 extern QString HANDBOOK_PATH; 00039 00040 //path to text files 00041 extern QString TEXT_PATH; 00042 00043 //path to themes 00044 extern QString THEMES_PATH; 00045 00046 //path to XML conversion styleshets 00047 extern QString XMLCONVERSION_PATH; 00048 00049 //path to easter egg files 00050 extern QString EASTER_PATH; 00051 00052 #endif //CONFIG_H 00053 00054 00055
1.3.4