Fixed includes and bugs so that it compiles
[construo.git] / colors.hxx
blob3b6e851c0aa026203443854f1260b55d2cc76cca
1 // $Id: colors.hxx,v 1.5 2003/07/28 09:23:46 grumbel Exp $
2 //
3 // Construo - A wire-frame construction game
4 // Copyright (C) 2002 Ingo Ruhnke <grumbel@gmx.de>
5 //
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 #ifndef HEADER_CONSTRUO_COLORS_HXX
21 #define HEADER_CONSTRUO_COLORS_HXX
23 #include "color.hxx"
25 namespace Colors {
27 extern Color button_fg_pressed;
28 extern Color button_fg_hover;
29 extern Color button_fg_passive;
31 extern Color button_bg_pressed;
32 extern Color button_bg_hover;
33 extern Color button_bg_passive;
34 extern Color button_bg_active;
36 /** Color for new springs and other helper lines */
37 extern Color new_spring;
39 extern Color selection_rect;
40 extern Color selection_resizer;
42 /** Color for collidables */
43 extern Color rect_collider_fg;
44 extern Color rect_collider_bg;
45 extern Color ground_color;
46 extern Color ground_grid_color;
48 /** Color for highlighted particles or springs */
49 extern Color highlight;
51 /** Color of the background grid */
52 extern Color grid_color;
54 } // namespace Colors
56 #endif
58 /* EOF */