1 /* float.h -- declarations for the float environment.
2 $Id: float.h,v 1.5 2004/04/11 17:56:47 karl Exp $
4 Copyright (C) 2003, 2004 Free Software Foundation, Inc.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 Written by Alper Ersoy <dirt@gtk.org>. */
25 typedef struct float_elt
27 struct float_elt
*next
;
40 extern void add_new_float (char *id
, char *title
, char *shorttitle
,
41 char *type
, char *position
);
42 extern void current_float_set_title_used (void);
44 /* Information retrieval about the current float env. */
45 extern char *current_float_id (void);
46 extern char *current_float_title (void);
47 extern char *current_float_shorttitle (void);
48 extern char *current_float_type (void);
49 extern char *current_float_position (void);
50 extern char *current_float_number (void);
51 extern char *get_float_ref (char *id
);
53 extern int count_floats_of_type_in_chapter (char *type
, char *chapter
);
54 extern int current_float_used_title (void);
56 #endif /* not FLOAT_H */