comparison finch/libgnt/gntline.h @ 21161:e119edfc0fb0

applied changes from 172a59b41412c4630834d66f2e7ec3be970cc36b through 365b126365cc18309aea7f8eef0e9b2a19e6bda8 And others.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Wed, 07 Nov 2007 14:07:52 +0000
parents bddf964880cf
children
comparison
equal deleted inserted replaced
21160:45e550db32ab 21161:e119edfc0fb0
65 }; 65 };
66 66
67 G_BEGIN_DECLS 67 G_BEGIN_DECLS
68 68
69 /** 69 /**
70 * 70 * @return GType for GntLine.
71 *
72 * @return
73 */ 71 */
74 GType gnt_line_get_gtype(void); 72 GType gnt_line_get_gtype(void);
75 73
76 #define gnt_hline_new() gnt_line_new(FALSE) 74 #define gnt_hline_new() gnt_line_new(FALSE)
77 #define gnt_vline_new() gnt_line_new(TRUE) 75 #define gnt_vline_new() gnt_line_new(TRUE)
78 76
79 /** 77 /**
80 * 78 * Create new line
81 * @param vertical
82 * 79 *
83 * @return 80 * @param vertical @c TRUE if the line should be vertical, @c FALSE for a horizontal line.
81 *
82 * @return The newly created line.
84 */ 83 */
85 GntWidget * gnt_line_new(gboolean vertical); 84 GntWidget * gnt_line_new(gboolean vertical);
86 85
87 G_END_DECLS 86 G_END_DECLS
88 87