comparison finch/libgnt/gntcolors.h @ 18049:1cedd520cd18

Doxygen skeleton and license info for gnt files.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Wed, 06 Jun 2007 15:42:29 +0000
parents 0e3a8505ebbe
children 5c6f019e48f8
comparison
equal deleted inserted replaced
18048:9aa2c89c8b9e 18049:1cedd520cd18
1 /**
2 * GNT - The GLib Ncurses Toolkit
3 *
4 * GNT is the legal property of its developers, whose names are too numerous
5 * to list here. Please refer to the COPYRIGHT file distributed with this
6 * source distribution.
7 *
8 * This library is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
1 #ifndef GNT_COLORS_H 23 #ifndef GNT_COLORS_H
2 #define GNT_COLORS_H 24 #define GNT_COLORS_H
3 25
4 #include <glib.h> 26 #include <glib.h>
5 27
31 GNT_COLOR_DARK_GRAY, 53 GNT_COLOR_DARK_GRAY,
32 GNT_TOTAL_COLORS 54 GNT_TOTAL_COLORS
33 }; 55 };
34 56
35 /* populate some default colors */ 57 /* populate some default colors */
58 /**
59 *
60 */
36 void gnt_init_colors(void); 61 void gnt_init_colors(void);
37 62
63 /**
64 *
65 */
38 void gnt_uninit_colors(void); 66 void gnt_uninit_colors(void);
39 67
40 #if GLIB_CHECK_VERSION(2,6,0) 68 #if GLIB_CHECK_VERSION(2,6,0)
69 /**
70 *
71 * @param kfile
72 */
41 void gnt_colors_parse(GKeyFile *kfile); 73 void gnt_colors_parse(GKeyFile *kfile);
42 74
75 /**
76 *
77 * @param kfile
78 */
43 void gnt_color_pairs_parse(GKeyFile *kfile); 79 void gnt_color_pairs_parse(GKeyFile *kfile);
80
44 #endif 81 #endif
45 82
46 #endif 83 #endif