//============================================== // copyright : (C) 2003-2005 by Will Stokes //============================================== // This program is free software; you can redistribute it // and/or modify it under the terms of the GNU General // Public License as published by the Free Software // Foundation; either version 2 of the License, or // (at your option) any later version. //============================================== #ifndef CONFIG_H #define CONFIG_H //-------------------- //forward declarations //-------------------- class QString; //albumshaper version //#define CVS_CODE #define ALBUMSHAPER_VERSION "2.1" //image sizes #define THUMBNAIL_WIDTH 200 #define THUMBNAIL_HEIGHT 150 #define SLIDESHOW_WIDTH 600 #define SLIDESHOW_HEIGHT 400 #define REP_IMAGE_HEIGHT 80 #define WIDGET_SPACING 9 #define TIGHT_WIDGET_SPACING 5 //path to materials extern QString MATERIAL_DIR; //path to button icons, etc extern QString IMAGE_PATH; //path to handbook extern QString HANDBOOK_PATH; //path to text files extern QString TEXT_PATH; //path to themes extern QString THEMES_PATH; //path to XML conversion styleshets extern QString XMLCONVERSION_PATH; //path to temp write directory extern QString TEMP_DIR; //empty define used to identify system depent code throughout project #define PLATFORM_SPECIFIC_CODE #endif //CONFIG_H