source: tags/arb_5.1/WINDOW/aw_xfigfont.hxx

Last change on this file was 5390, checked in by westram, 16 years ago
  • TAB-Ex
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1#ifndef AW_XFIGFONT_HXX
2#define AW_XFIGFONT_HXX
3
4/* -----------------------------------------------------------------
5 * Module:                        WINDOW/aw_xfigfont.hxx
6 *
7 * Global Functions:              AW_read_xfigfont
8 *
9 * Description:                   implementing simple vector fonts
10 *
11 * -----------------------------------------------------------------
12 */
13
14/*
15 * $Header$
16 *
17 * $Log$
18 * Revision 1.3  2008/06/06 12:23:34  westram
19 * - TAB-Ex
20 *
21 * Revision 1.2  2005/01/05 11:25:40  westram
22 * - changed include wrapper
23 *
24 * Revision 1.1.1.1  2000/11/23 09:41:17  westram
25 * Erster Import
26 *
27 * Revision 1.7  1995/03/13  16:53:41  jakobi
28 * *** empty log message ***
29 *
30 * Revision 1.6  1995/03/13  12:23:48  jakobi
31 * *** empty log message ***
32 *
33 * Revision 1.6  1995/03/13  12:23:48  jakobi
34 * *** empty log message ***
35 *
36 * Revision 1.5  1995/02/03  17:08:38  jakobi
37 * *** empty log message ***
38 *
39 * Revision 1.4  1995/02/01  13:24:37  jakobi
40 * *** empty log message ***
41 *
42 * Revision 1.3  1995/01/27  17:32:08  jakobi
43 * *** empty log message ***
44 *
45 * Revision 1.2  1995/01/13  20:23:42  jakobi
46 * *** empty log message ***
47 *
48 * Revision 1.1  1994/12/21  11:21:33  jakobi
49 * Initial revision
50 *
51 */
52
53// #ifndef AW_XFIGFONT_HXX
54// #define AW_XFIGFONT_HXX 1
55
56
57/* includes */
58
59/* exported constants */
60const int XFIG_FONT_ELEMS          = 256;
61const int XFIG_FONT_VISIBLE_HEIGHT = 6;
62
63struct AW_xfig_vectorfont {
64    short gridsizex,gridsizey;
65    // address of the default symbol: NOTE: undefined characters point to this one, too!
66    AW_xfig_line *default_symbol;
67    AW_xfig_line **lines;
68};
69
70/* prototypes */
71AW_xfig_vectorfont *aw_read_xfigfont(char *filename);
72void aw_xfig_font_deletefont(AW_root *aw_root);
73void aw_xfig_font_changefont_cb(AW_root *aw_root);
74// #endif
75
76#else
77#error aw_xfigfont.hxx included twice
78#endif
Note: See TracBrowser for help on using the repository browser.