1 /*
2  *
3  * This program is free software; you can redistribute it and/or modify it
4  * under the terms of the GNU Lesser General Public License as published by
5  * the Free Software Foundation.
6  *
7  * This program is distributed in the hope that it will be useful, but
8  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
9  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
10  * for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with this program; if not, see <http://www.gnu.org/licenses/>.
14  *
15  *
16  * Authors:
17  *		Chris Lahey <clahey@ximian.com>
18  *
19  * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
20  *
21  */
22 
23 #if !defined (__E_UTIL_H_INSIDE__) && !defined (LIBEUTIL_COMPILATION)
24 #error "Only <e-util/e-util.h> should be included directly."
25 #endif
26 
27 #ifndef __E_TABLE_DEFINES__
28 #define __E_TABLE_DEFINES__ 1
29 
30 G_BEGIN_DECLS
31 
32 #define BUTTON_HEIGHT        10
33 #define BUTTON_PADDING       2
34 #define GROUP_INDENT         (BUTTON_HEIGHT + (BUTTON_PADDING * 2))
35 
36 /* Padding around the contents of a header button */
37 #define HEADER_PADDING 1
38 
39 #define MIN_ARROW_SIZE 10
40 
41 G_END_DECLS
42 
43 #endif
44