~scottydelicious666/brewtarget/brewtarget

« back to all changes in this revision

Viewing changes to src/config.h

  • Committer: Philip Greggory Lee
  • Date: 2009-08-23 16:53:43 UTC
  • Revision ID: git-v1:f8d1a25135bd92f06c46c562293800e4faa42c61
Made a src/ and ui/ directory and moved everything.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * configure.h is part of Brewtarget, and is Copyright Philip G. Lee
 
3
 * (rocketman768@gmail.com), 2009.
 
4
 *
 
5
 * Brewtarget is free software: you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation, either version 3 of the License, or
 
8
 * (at your option) any later version.
 
9
 
 
10
 * Brewtarget is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 */
 
18
 
 
19
#ifndef _CONFIG_H
 
20
#define _CONFIG_H
 
21
 
 
22
#define ICON48 ":/images/BrewtargetIcon.png"
 
23
#define ICON96 ":/images/BrewtargetIcon_96.png"
 
24
#define GLASS ":/images/glass.png"
 
25
#define SMALLBARLEY ":/images/smallBarley.png"
 
26
#define SMALLHOP ":/images/smallHop.png"
 
27
#define SMALLWATER ":/images/smallWater.png"
 
28
#define SMALLYEAST ":/images/smallYeast.png"
 
29
#define SMALLKETTLE ":/images/smallKettle.png"
 
30
#define SMALLQUESTION ":/images/smallQuestion.png"
 
31
#define SMALLSTYLE ":/images/smallStyle.png"
 
32
#define SMALLPLUS ":/images/smallPlus.png"
 
33
#define SMALLMINUS ":/images/smallMinus.png"
 
34
#define SMALLARROW ":/images/smallArrow.png"
 
35
#define SMALLINFO ":/images/smallInfo.png"
 
36
#define SMALLOUTARROW ":/images/smallOutArrow.png"
 
37
#define SHRED ":/images/editshred.png"
 
38
#define EXITPNG ":/images/exit.png"
 
39
#define SAVEPNG ":/images/filesave.png"
 
40
 
 
41
/* Things that will get configured by configure script */
 
42
 
 
43
// This only gets used by linux OS version.
 
44
#define CONFIGDATADIR "/usr/share/brewtarget/"
 
45
#define CONFIGDOCDIR "/usr/share/doc/brewtarget/"
 
46
 
 
47
#endif /*_CONFIG_H*/
 
48