Adonthell  0.4
win_theme.h
1 /*
2  $Id: win_theme.h,v 1.9 2003/02/23 23:14:34 ksterker Exp $
3 
4  (C) Copyright 2000 Joel Vennin
5  Part of the Adonthell Project http://adonthell.linuxgames.com
6 
7  This program is free software; you can redistribute it and/or modify
8  it under the terms of the GNU General Public License.
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY.
11 
12  See the COPYING file for more details
13 */
14 
15 #ifndef _WIN_THEME_H_
16 #define _WIN_THEME_H_
17 
18 #include "win_scroll.h"
19 
20 class win_theme
21 {
22 
23  public:
24  win_theme();
25 
26  win_theme(char *);
27 
29 
30  win_theme & operator=(win_theme &);
31 
32  ~win_theme();
33 
34  void destroy();
35 
36  friend class win_border;
37  friend class win_background;
38  friend class win_scrollbar;
39 
40  private:
41 
42  win_border * normal;
43 
44  win_border * mini;
45 
46  win_background * background;
47 
48  win_scrollbar * scrollbar;
49 };
50 #endif
51 
52 
53 
54 
55 
56 
57 
58