AlbumShaper
1.0a3
|
00001 //============================================== 00002 // copyright : (C) 2003-2005 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 00011 #ifndef CONFIG_H 00012 #define CONFIG_H 00013 00014 //-------------------- 00015 //forward declarations 00016 //-------------------- 00017 class QString; 00018 00019 //albumshaper version 00020 //#define CVS_CODE 00021 #define ALBUMSHAPER_VERSION "2.1" 00022 00023 //image sizes 00024 #define THUMBNAIL_WIDTH 200 00025 #define THUMBNAIL_HEIGHT 150 00026 #define SLIDESHOW_WIDTH 600 00027 #define SLIDESHOW_HEIGHT 400 00028 00029 #define REP_IMAGE_HEIGHT 80 00030 00031 #define WIDGET_SPACING 9 00032 #define TIGHT_WIDGET_SPACING 5 00033 00034 //path to materials 00035 extern QString MATERIAL_DIR; 00036 00037 //path to button icons, etc 00038 extern QString IMAGE_PATH; 00039 00040 //path to handbook 00041 extern QString HANDBOOK_PATH; 00042 00043 //path to text files 00044 extern QString TEXT_PATH; 00045 00046 //path to themes 00047 extern QString THEMES_PATH; 00048 00049 //path to XML conversion styleshets 00050 extern QString XMLCONVERSION_PATH; 00051 00052 //path to temp write directory 00053 extern QString TEMP_DIR; 00054 00055 //empty define used to identify system depent code throughout project 00056 #define PLATFORM_SPECIFIC_CODE 00057 00058 #endif //CONFIG_H 00059 00060 00061