AlbumShaper  1.0a3
config.h
Go to the documentation of this file.
1 //==============================================
2 // copyright : (C) 2003-2005 by Will Stokes
3 //==============================================
4 // This program is free software; you can redistribute it
5 // and/or modify it under the terms of the GNU General
6 // Public License as published by the Free Software
7 // Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //==============================================
10 
11 #ifndef CONFIG_H
12 #define CONFIG_H
13 
14 //--------------------
15 //forward declarations
16 //--------------------
17 class QString;
18 
19 //albumshaper version
20 //#define CVS_CODE
21 #define ALBUMSHAPER_VERSION "2.1"
22 
23 //image sizes
24 #define THUMBNAIL_WIDTH 200
25 #define THUMBNAIL_HEIGHT 150
26 #define SLIDESHOW_WIDTH 600
27 #define SLIDESHOW_HEIGHT 400
28 
29 #define REP_IMAGE_HEIGHT 80
30 
31 #define WIDGET_SPACING 9
32 #define TIGHT_WIDGET_SPACING 5
33 
34 //path to materials
35 extern QString MATERIAL_DIR;
36 
37 //path to button icons, etc
38 extern QString IMAGE_PATH;
39 
40 //path to handbook
41 extern QString HANDBOOK_PATH;
42 
43 //path to text files
44 extern QString TEXT_PATH;
45 
46 //path to themes
47 extern QString THEMES_PATH;
48 
49 //path to XML conversion styleshets
50 extern QString XMLCONVERSION_PATH;
51 
52 //path to temp write directory
53 extern QString TEMP_DIR;
54 
55 //empty define used to identify system depent code throughout project
56 #define PLATFORM_SPECIFIC_CODE
57 
58 #endif //CONFIG_H
59 
60 
61 
QString XMLCONVERSION_PATH
Definition: config.cpp:22
QString TEXT_PATH
Definition: config.cpp:20
QString MATERIAL_DIR
Definition: config.cpp:17
QString IMAGE_PATH
Definition: config.cpp:18
QString HANDBOOK_PATH
Definition: config.cpp:19
QString THEMES_PATH
Definition: config.cpp:21
QString TEMP_DIR
Definition: config.cpp:23