Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git] / guicast / fonts.h
blobf857bd0426b71c99be07f70ad21d8f8e0d3c8e57
1 #ifndef FONTS_H
2 #define FONTS_H
4 #define LARGEFONT 0
5 #define MEDIUMFONT 2
6 #define SMALLFONT 1
7 #define MEDIUM_7SEGMENT 4
9 // Specialized fonts not available in every widget
10 #define BOLDFACE 0x8000
11 #define LARGEFONT_3D (LARGEFONT | BOLDFACE)
12 #define MEDIUMFONT_3D (MEDIUMFONT | BOLDFACE)
13 #define SMALLFONT_3D (SMALLFONT | BOLDFACE)
15 #endif
17 // Local Variables:
18 // mode: C++
19 // c-file-style: "linux"
20 // End: