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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
|
#
# $Id: xmbdfedrc,v 1.12 2000/03/16 21:21:41 mleisher Exp $
#
#
# This is a sample configuration file for XmBDFEditor.
#
# See the on-line documentation for a description of these options.
#
#########################
#
# XmBDFEditor options.
#
#########################
#
# Skip pages with no glyphs.
#
skip_blank_pages true
#
# Show the "Really Exit?" dialog.
#
really_exit true
#
# If "true", pasting glyphs overwrites other glyphs. If "false", then pasting
# glyphs will move glyphs forward to make room for the glyphs being pasted.
#
grid_overwrite_mode true
#
# Pressing the default close accelerator of Ctrl+F4 can be a problem
# with one hand and if it is done often. These two options change the
# accelerator and the text used to display the accelerator.
#
close_accelerator Ctrl<Key>4
close_accelerator_string Ctrl+4
#
# This parameter sets the filename of a file in Unicode Character Database
# format that maps codes to names. This is used for auto naming of glyphs.
#
#name_file UnicodeData-2.1.5.txt
#
# This parameter sets the filename of a file containing the Adobe Glyph List.
#
#adobe_name_file glyphlist.txt
#
# This sets the default size of pixels in the GlyphEditors. This can be a
# maximum of 10 and a minimum of 2. The GlyphEditor will always use this
# value unless the grid is larger than 1/2 the display height. Then it will
# reduce in increments of 1 to the minimum until the grid fits in 1/2 the
# display height.
#
pixel_size 10
#
# This option indicates whether the Cap Height should be shown in the
# GlyphEditors.
#
show_cap_height false
#
# This option indicates whether the X Height should be shown in the
# GlyphEditors.
#
show_x_height false
#
# This option sets the default display direction. If it is "true", the font
# grid display is horizontal. Otherwise it is vertical.
#
font_grid_horizontal true
#
# This options sets whether the font grids will adjust the columns and rows to
# powers of 2.
#
power2 true
#
# This option determines whether the progress bar is shown. If not, then
# the watch cursor is used.
#
progress_bar true
#
# This option sets whether the progress bar updates only the percentage or the
# percentage and the bar.
#
percentage_only false
#
# Generate a metrics file for the SBIT program.
#
generate_sbit_metrics false
#
# Make backups before saving.
#
make_backups true
#
# This sets the default code base used to display the glyph encodings. It
# can be "hex", "dec", or "oct".
#
code_base hex
#########################
#
# BDF font options.
#
#########################
#
# Metrics corrections.
#
correct_metrics true
#
# Preserve unencoded glyphs.
#
keep_unencoded true
#
# Preserve comments.
#
keep_comments true
#
# Pad character cells.
#
pad_character_cells true
#
# Font spacing.
#
font_spacing proportional
#
# Point size.
#
point_size 12
#
# Horizontal resolution.
#
horizontal_resolution 90
#
# Vertical resolution.
#
vertical_resolution 90
#
# Bits per pixel.
#
bits_per_pixel 1
#
# This option indicates whether the TrueType glyphs should be hinted
# when TrueType fonts are loaded.
#
hint_truetype_glyphs true
#
# Set the EOL used when writing BDF fonts.
#
eol unix
#
# User defined properties.
#
property _ADOBE_PSFONT atom
property _ADOBE_XFONT atom
property _DEC_DEVICE_FONTNAMES atom
property _DEC_PRODUCTINFO atom
#
# Now that Mule has merged with Emacs, these no longer need to be specified
# here. They are now built in properties.
#
#property _MULE_BASELINE_OFFSET integer
#property _MULE_RELATIVE_COMPOSE integer
#
# This property is used to store the original font name when an XLFD name is
# generated.
#
property _ORIGINAL_FONT_NAME atom
#
# The following two properties are generated by the "ttf2bdf" program.
#
property _TTF_FONTFILE atom
property _TTF_PSNAME atom
#
# The vanity property.
#
property _XMBDFED_INFO atom
|