add mask color radio btn sel, fix del all mask btn, fix mask dflt kfrm draw name...
[goodguy/cinelerra.git] / cinelerra-5.1 / guicast / bcfontentry.h
1
2 /*
3  *
4  * Copyright (C) 2014 Einar Rünkaru <einarry at smail dot ee>
5  *
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 of the License, or
9  * (at your option) any later version.
10  *
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.
15  *
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
19  *
20  */
21
22 #ifndef BCFONTENTRY_H
23 #define BCFONTENTRY_H
24
25 #include "bcfontentry.inc"
26 #include "vframe.h"
27
28 class BC_FontEntry
29 {
30 public:
31         BC_FontEntry();
32         ~BC_FontEntry();
33
34         void dump();
35
36         VFrame *image;
37         char *displayname;
38         char *path;
39         char *foundry;
40         char *family;
41         char *weight;
42         char *slant;
43         char *swidth;
44         char *adstyle;
45         int pixelsize;
46         int pointsize;
47         int xres;
48         int yres;
49         int style;
50         char *spacing;
51         int avg_width;
52         char *registry;
53         char *encoding;
54         int fixed_style;
55 };
56
57 #endif