added icons and xml to livewp directory in debian rules
[shermanaquarium] / sherman-aquarium / shermans / background.h
1 #ifndef BACKGROUND_H
2 #define BACKGROUND_H
3
4 #define BG_SOLID 0 
5 #define BG_SHADED 1
6 #define BG_WATER 2
7 #define BG_IMAGE 3
8
9
10 typedef struct
11 {
12     char *imagename, *imagename_new;
13     int type;
14     int desktop;
15     GaiColor shaded_top_c, shaded_bot_c, solid_c;
16
17 } Background_settings;
18
19 Background_settings *background_get_settings_ptr(void);
20 void background_init(void);
21 void background_exit(void);
22 #endif