comparison finch/libgnt/gntprogressbar.h @ 26556:cd7fa6306f85

Indentation changes, initialization changes etc.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Sun, 12 Apr 2009 18:58:27 +0000
parents 35430bc421c2
children 5876584828e8
comparison
equal deleted inserted replaced
26555:35430bc421c2 26556:cd7fa6306f85
1 /** 1 /**
2 * @file gntprogressbar.h Progress Bar API 2 * @file gntprogressbar.h Progress Bar API
3 * @ingroup gnt 3 * @ingroup gnt
4 **/ 4 */
5 /** 5 /*
6 * GNT - The GLib Ncurses Toolkit 6 * GNT - The GLib Ncurses Toolkit
7 * 7 *
8 * GNT is the legal property of its developers, whose names are too numerous 8 * GNT is the legal property of its developers, whose names are too numerous
9 * to list here. Please refer to the COPYRIGHT file distributed with this 9 * to list here. Please refer to the COPYRIGHT file distributed with this
10 * source distribution. 10 * source distribution.
11 * 11 *
12 * This library is free software; you can redistribute it and/or modify 12 * This library is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by 13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or 14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version. 15 * (at your option) any later version.
16 * 16 *
17 * This program is distributed in the hope that it will be useful, 17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details. 20 * GNU General Public License for more details.
21 * 21 *
22 * You should have received a copy of the GNU General Public License 22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software 23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA 24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
25 **/ 25 */
26 26
27 #ifndef GNT_PROGRESS_BAR_H 27 #ifndef GNT_PROGRESS_BAR_H
28 #define GNT_PROGRESS_BAR_H 28 #define GNT_PROGRESS_BAR_H
29 29
30 #include "gnt.h" 30 #include "gnt.h"
43 GNT_PROGRESS_RIGHT_TO_LEFT, 43 GNT_PROGRESS_RIGHT_TO_LEFT,
44 GNT_PROGRESS_BOTTOM_TO_TOP, 44 GNT_PROGRESS_BOTTOM_TO_TOP,
45 GNT_PROGRESS_TOP_TO_BOTTOM, 45 GNT_PROGRESS_TOP_TO_BOTTOM,
46 } GntProgressBarOrientation; 46 } GntProgressBarOrientation;
47 47
48 typedef struct _GntProgressBar 48 typedef struct _GntProgressBar GntProgressBar;
49 {
50 GntWidget parent;
51 } GntProgressBar;
52 49
53 typedef struct _GntProgressBarClass 50 typedef struct _GntProgressBarClass
54 { 51 {
55 GntWidgetClass parent; 52 GntWidgetClass parent;
56 53