1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
/*
* This file is part of the XForms library package.
*
* XForms is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1, or
* (at your option) any later version.
*
* XForms is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XForms. If not, see <http://www.gnu.org/licenses/>.
*/
/********************** crop here for forms.h **********************/
/* the following (fl_fheight) etc. were never documented and were
removed from V0.89, but apparently this broke some applications that
were using them. Put them back in 10/22/00 */
#define fl_textgc fl_textgc_( )
#define fl_gc fl_gc_( )
#define fl_cur_win fl_cur_win_( )
#define fl_fheight fl_fheight_( )
#define fl_fdesc fl_fdesc_( )
#define fl_cur_fs fl_cur_fs_( )
extern GC fl_gc_( void );
extern GC fl_textgc_( void );
extern int fl_fheight_( void );
extern int fl_fdesc_( void );
extern Window fl_cur_win_( void );
extern XFontStruct * fl_cur_fs_( void );
extern Display * fl_display_( void );
#if ! defined FL_TRUE && ! defined FL_FALSE
#define FL_FALSE 0
#define FL_TRUE ( ! FL_FALSE )
#endif
#if defined __cplusplus
}
#endif
#endif /* FL_FORMS_H */
|