File: editmenu.html

package info (click to toggle)
fontforge 1%3A20161005~dfsg-4%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 69,324 kB
  • ctags: 44,030
  • sloc: ansic: 578,448; python: 5,546; sh: 3,374; makefile: 1,323; perl: 315; cpp: 176; ruby: 95; objc: 92; xml: 90; sed: 9
file content (859 lines) | stat: -rw-r--r-- 30,888 bytes parent folder | download | duplicates (2)
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
<HTML>
<HEAD>
  <!-- Created with AOLpress/2.0 -->
  <!-- AP: Created on: 11-Dec-2000 -->
  <!-- AP: Last modified: 27-Mar-2009 -->
  <TITLE>The Edit Menu</TITLE>
  <LINK REL="icon" href="fftype16.png">
  <LINK REL="stylesheet" TYPE="text/css" HREF="FontForge.css">
</HEAD>
<BODY id="menued">
<P ALIGN=CENTER>
<IMG SRC="fontforge-banner-420.jpeg" WIDTH=420 HEIGHT=80>
<DIV class="menucontainer">
  <UL class="menubar">
    <LI class="menu">
      <A href="http://sourceforge.net/projects/fontforge/files/">Download</A>
      <UL>
	<LI>
	  <A href="http://sourceforge.net/projects/fontforge/files/fontforge-docs/"
	      >Documentation</A>
	<LI>
	  <A href="http://sourceforge.net/projects/fontforge/files/fontforge-source/"
	      >Source</A>
      </UL>
    <LI>
      <A HREF="overview.html#TOC">Introduction</A>
    <LI>
      <A href="editexample.html">Tutorial</A>
    <LI class="menu">
      <A href="fontview.html">Windows</A>
      <UL>
	<LI>
	  <A href="fontview.html" >Font</A>
	<LI>
	  <A href="charview.html" >Outline Glyph</A>
	<LI>
	  <SMALL><A href="charview.html#Debugging" >&nbsp; &nbsp;Debugging
	  TrueType</A></SMALL>
	<LI>
	  <SMALL><A href="multilayer.html" >&nbsp; &nbsp;Type3 Glyphs</A></SMALL>
	<LI>
	  <A href="bitmapview.html" >Bitmap Glyph</A>
	<LI>
	  <A href="metricsview.html" >Metrics</A>
      </UL>
    <LI class="menu">
      <A href="fontinfo.html">Dialogs 1</A>
      <UL>
	<LI>
	  <A href="fontinfo.html" >Font Information</A>
	<LI>
	  <SMALL><A href="histogram.html" >&nbsp; &nbsp;Histogram Dialog</A></SMALL>
	<LI>
	  <A href="charinfo.html" >Glyph Information</A>
	<LI>
	  <A href="getinfo.html" >Point, Reference Information</A>
	<LI>
	  <A href="multilayer.html#Layer" >Type3 Layer Information</A>
	<LI>
	  <A href="bdfinfo.html" >Bitmap Properties</A>
	<LI>
	  <A href="baseline.html" >Baseline Information</A>
	<LI>
	  <A HREF="justify.html">Justification Information</A>
	<LI>
	  <A href="math.html" >Math Information</A>
	<LI>
	  <A href="multiplemaster.html" >Multiple Master Information</A>
	<LI>
	    <HR>
	<LI>
	  <A href="lookups.html" >Lookups &amp; subtables</A>
	<LI>
	  <A href="metricsview.html#kernpair" >Kerning glyph pairs 1</A>
	<LI>
	  <A href="kernpairs.html" >Kerning glyph pairs 2</A>
	<LI>
	  <A href="metricsview.html#kernclass" >Kerning by classes</A>
	<LI>
	  <A href="anchorcontrol.html" >Anchor Control</A>
	<LI>
	  <A href="contextchain.html" >Contextual lookup dialog</A>
	<LI>
	  <A href="statemachine.html" >Apple State Machine dialog</A>
	<LI>
	  <A href="showatt.html" >Show Advanced Typography</A>
	<LI>
	    <HR>
	<LI>
	  <A href="problems.html" >Potential Problems dialog</A>
	<LI>
	  <A href="validation.html" >Font Validation dialog</A>
      </UL>
    <LI class="menu">
      <A href="generate.html">Dialogs 2</A>
      <UL>
	<LI>
	  <A href="filemenu.html#Open" >Open Fonts dialog</A>
	<LI>
	  <A href="oflib.html" >Browsing OFLib dialog</A>
	<LI>
	  <A href="generate.html" >Generate Fonts dialog</A>
	<LI>
	  <A href="generate.html#Mac" >Generate Mac Family dialog</A>
	<LI>
	    <HR>
	<LI>
	  <A href="display.html" >Print &amp; Display dialog</A>
	<LI>
	  <A href="prefs.html" >Preferences dialog</A>
	<LI>
	  <A href="groups.html" >Groups dialog</A>
	<LI>
	    <HR>
	<LI>
	  <A href="elementmenu.html#Bitmaps">Manage Bitmap Strikes</A>
	<LI>
	  <A href="elementmenu.html#Regenerate">Re-Rasterize Bitmap Strikes</A>
	<LI>
	    <HR>
	<LI>
	  <A href="search.html" >Search &amp; Replace dialog</A>
	<LI>
	  <A href="Styles.html" >Style Transformation dialogs</A>
	<LI>
	  <A href="transform.html" >Transformation dialog</A>
	<LI>
	  <A href="elementmenu.html#Expand" >Expand Stroke dialog</A>
	<LI>
	  <A href="tilepath.html" >Tile Path dialog</A>
	<LI>
	  <A href="InsertTextDlg.html" >Insert Text dialog</A>
	<LI>
	    <HR>
	<LI>
	  <A href="metricsmenu.html#Width">Set width dialogs</A>
	<LI>
	  <A href="metricsmenu.html#Width">Set left/right bearings</A>
	<LI>
	  <A href="autowidth.html" >Auto Width &amp; Kern dialogs</A>
	<LI>
	    <HR>
	<LI>
	  <A href="hintsmenu.html#Review" >Review PS Hints dialog</A>
	<LI>
	  <A href="ttfinstrs.html" >TrueType Instruction Editor</A>
	<LI>
	  <A href="ttfinstrs.html#cvt" >TrueType 'cvt ' Editor</A>
	<LI>
	    <HR>
	<LI>
	  <A href="selectbyatt.html" >Select by feature dialog</A>
	<LI>
	  <A href="elementmenu.html#MassRename" >Rename Glyphs dialog</A>
	<LI>
	  <A href="elementmenu.html#CompareFonts" >Compare Fonts dialog</A>
      </UL>
    <LI class="menu">
      <A href="filemenu.html">Menus</A>
      <UL>
	<LI>
	  <A href="filemenu.html" >File</A>
	<LI>
	  <A href="editmenu.html" >Edit</A>
	<LI>
	  <A href="pointmenu.html" >Point</A>
	<LI>
	  <A href="elementmenu.html">Element</A>
	<LI>
	  <A href="toolsmenu.html">Tools</A>
	<LI>
	  <A href="hintsmenu.html" >Hints</A>
	<LI>
	  <A href="encodingmenu.html" >Encoding</A>
	<LI>
	  <A href="viewmenu.html" >View</A>
	<LI>
	  <A href="metricsmenu.html" >Metrics</A>
	<LI>
	  <A href="cidmenu.html" >CID</A>
	<LI>
	  <A href="mmmenu.html" >Multi Master</A>
	<LI>
	  <A href="windowmenu.html" >Window</A>
	<LI>
	  <A href="helpmenu.html" >Help</A>
      </UL>
    <LI>
      <A href="faqFS.html">FAQ</A>
    <LI>
      <A href="IndexFS.html">Index</A>
    <LI>
      <A href="GlossaryFS.html">Glossary</A>
  </UL>
</DIV>
<DIV id="in">
  <H1 ALIGN=Center>
    The Edit Menu
  </H1>
  <P>
  In the Metrics View this menu is greyed out. The commands are only available
  in text fields.
  <UL>
    <LI>
      <A HREF="#Undo">Undo</A>
    <LI>
      <A HREF="#Redo">Redo</A>
    <LI>
      <A HREF="#Cut">Cut</A>
    <LI>
      <A HREF="#Copy">Copy</A>
    <LI>
      <A HREF="#Reference">Copy Reference</A>
    <LI>
      <A HREF="#CopyLookup">Copy Lookup Data</A>
    <LI>
      <A HREF="#Width">Copy Width</A>
    <LI>
      <A HREF="#VWidth">Copy VWidth</A>
    <LI>
      <A HREF="#LBearing">Copy LBearing</A>
    <LI>
      <A HREF="#RBearing">Copy RBearing</A>
    <LI>
      <A HREF="#CopyGridFit">Copy Grid Fit</A>
    <LI>
      <A HREF="#Paste">Paste</A>
    <LI>
      <A HREF="#PasteInto">Paste Into</A>
    <LI>
      <A HREF="#PasteAfter">Paste After</A>
    <LI>
      <A HREF="#SameGlyphAs">Same Glyph As</A>
    <LI>
      <A HREF="#Clear">Clear</A>
    <LI>
      <A HREF="#Background">Clear Background</A>
    <LI>
      <A HREF="#Merge">Merge</A>
    <LI>
      <A HREF="#Join">Join</A>
    <LI>
      <A HREF="#CopyFg">Copy Fg To Bg</A>
    <LI>
      <A HREF="#CopyL2L">Copy Layer To Layer</A>
    <LI>
      <A HREF="#Select">Select</A>
      <UL>
	<LI>
	  <A HREF="editmenu.html#All">Select All</A>
	<LI>
	  <A HREF="#Invert">Invert Selection</A>
	<LI>
	  <A HREF="#Deselect">Deselect All</A>
	<LI>
	  <A HREF="#FirstPt">First Point</A>
	<LI>
	  <A HREF="#NextContour">First Point, Next Contour</A>
	<LI>
	  <A HREF="#NextP">Next Point</A>
	<LI>
	  <A HREF="#PrevP">Prev Point</A>
	<LI>
	  <A HREF="#NextCP">Next Control Point</A>
	<LI>
	  <A HREF="#PrevCP">Prev Control Point</A>
	<LI>
	  <A HREF="#PointAt">Point At</A>
	<LI>
	  <A HREF="#Contours">Contours</A>
	<LI>
	  <A HREF="#SelectPoints">Select All Points &amp; Refs</A>
	<LI>
	  <A HREF="#SelectAnchors">Select Anchors</A>
	<LI>
	  <A HREF="#SelWidth">(De)Select Width</A>
	<LI>
	  <A HREF="#SelVWidth">(De)Select VWidth</A>
	<LI>
	  <A HREF="#SelHM">Select Points Affected by Current HintMask</A>
	<LI>
	  <A HREF="#Color">Select by Color</A>
	<LI>
	  <A HREF="#SelectName">Select by Wildcard</A>...
	<LI>
	  <A HREF="#SelectScript">Select by Script...</A>
	<LI>
	  <A HREF="#SelWorth">Glyphs worth outputting</A>
	<LI>
	  <A HREF="#SelRefs">Glyphs with only references</A>
	<LI>
	  <A HREF="#SelSplines">Glyphs with only Splines</A>
	<LI>
	  <A HREF="#SelBoth">Glyphs with both</A>
	<LI>
	  <A HREF="#SelWhite">Whitespace Glyphs</A>
	<LI>
	  <A HREF="#SelChanged">Changed Glyphs</A>
	<LI>
	  <A HREF="#SelHinting">Hinting Needed</A>
	<LI>
	  <A HREF="#SelAutohintable">Autohintable</A>
	<LI>
	  <A HREF="#SelectByATT">Select By Lookup Subtable</A>...
      </UL>
    <LI>
      <A HREF="#Find">Find / Replace</A>
    <LI>
      <A HREF="#ReplaceRef">Replace With Reference</A>
    <LI>
      <A HREF="#Unlink">Unlink Reference</A>
    <LI>
      <A HREF="#From">Copy From</A>
      <UL>
	<LI>
	  <A HREF="#Fonts">All Fonts</A>
	<LI>
	  <A HREF="#Displayed">Displayed Font</A>
	<LI>
	  <A HREF="#CharName">Char Metadata</A>
	<LI>
	  <A HREF="#TTInstr">TrueType Instructions</A>
      </UL>
    <LI>
      <A HREF="#Remove-Undoes">Remove Undoes</A>
  </UL>
  <P>
  <FONT COLOR="Red"><STRONG><SMALL>NOTE</SMALL></STRONG></FONT>: In the metrics
  view this menu will be disabled when one of the text fields has the focus.
  <P>
  <DL>
    <DT>
      <A NAME="Undo">Undo</A>
    <DD>
      In the outline view and the bitmap view this will undo the last command.
      The number of commands that may be undone for any glyph is controlled by
      the <A HREF="prefs.html#UndoDepth">UndoDepth</A> preference item.<BR>
      In the font and metrics views, this does NOT undo the last command. It undoes
      the last operation on all selected glyphs.
    <DT>
      <A NAME="Redo">Redo</A>
    <DD>
      In the outline view and the bitmap view this will redo the last command undone.
      Up to twelve commands may be redone (after that they get thrown away)<BR>
      In the font and metrics views, this does NOT undo the last command. It undoes
      the last operation on all selected glyphs.
    <DT>
      <A NAME="Cut">Cut</A>
    <DD>
      In the font view this command puts the foreground of all selected glyphs
      into the clipboard and then deletes them. Depending on the setting of
      <A HREF="#From">Copy From</A> it will either refer all glyphs (bitmap and
      outline) corresponding to this entry, or just the glyph being displayed.
      <P>
      In the Outline View this will copy any selected points, References, or Images
      into the clipboard and then delete them. If a point is removed from a path
      then the path will be broken at there, see the <A HREF="#Merge">Merge</A>
      command for information on how to leave the path whole but without the point.
      (if there is no selection nothing happens)
      <P>
      In the Bitmap View this will copy the selection into the clipboard and then
      delete it. If there is no selection nothing happens.
    <DT>
      <A NAME="Copy">Copy</A>
    <DD>
      In the font view this command puts the foreground and hints of all selected
      glyphs into the clipboard. Depending on the setting of <A HREF="#From">Copy
      From</A> it will either copy all glyphs (bitmap and outline) corresponding
      to this entry, or just the glyph being displayed. Normally it will not copy
      a glyph's name, but if <A HREF="#CharName">Copy From-&gt;Char Name</A> is
      set then it will copy the name as well.
      <P>
      In the Outline View this will copy any selected points, References, or Images
      into the clipboard. If there is no selection everything in the current layer
      will go into the clipboard.
      <P>
      In the Bitmap View this will copy the selection into the clipboard, if there
      is no selection everything is copied.
      <P>
      To external applications selected points (and associated contours) will be
      exported to the clipboard with format "image/eps", while a selected image
      will be exported with formats "image/png" and "image/bmp". If you Copy a
      series of glyphs into the clipboard, the only the first one will be exported
      to external applications. If the clipboard contains a single point, then
      this will also be exported in STRING format (giving the coordinates of the
      point); the intent is to make it easier to people to identify the point.
      See the section on <A HREF="selections.html">selections</A>
    <DT>
      Copy <A NAME="Reference">Reference</A>
    <DD>
      In the font view this command puts a reference to all selected glyphs into
      the clipboard.
      <P>
      In the Outline and Bitmap Views this will copy a reference to the current
      glyph into the clipboard (only available in foreground mode).
    <DT>
      <A NAME="CopyLookup">Copy Lookup Data</A>
    <DD>
      Copies lookup data (substitutions, ligatures, kerning, anchor points, etc)
      from the selected glyphs. This command does not work quite as expected:
      <UL>
	<LI>
	  The data are not actually copied. Instead fontforge makes a note of which
	  glyphs it copied the data from. FontForge actually copies the data when the
	  user does a Paste (so any changes in the lookup data will be pasted).
	<LI>
	  When the user does a Paste s/he will be prompted with a dialog asking what
	  lookups should be copied.
      </UL>
    <DT>
      Copy <A NAME="Width">Width</A>
    <DD>
      In the Font View this command copies the widths of all selected glyphs and
      stores them in the clipboard.
      <P>
      In the Outline View this command copies the width of the current glyph and
      stores it in the clipboard.
      <P>
      This command is not available in the Bitmap View.
    <DT>
      Copy <A NAME="VWidth">VWidth</A>
    <DD>
      In the Font View this command copies the vertical widths of all selected
      glyphs and stores them in the clipboard.
      <P>
      In the Outline View this command copies the vertical width of the current
      glyph and stores it in the clipboard.
      <P>
      This command is not available in the Bitmap View.
    <DT>
      Copy <A NAME="LBearing">LBearing</A>
    <DD>
      In the Font View this command copies the left side bearings of all selected
      glyphs and stores them in the clipboard.
      <P>
      In the Outline View this command copies the left side bearing of the current
      glyph and stores it in the clipboard.
      <P>
      This command is not available in the Bitmap View.
    <DT>
      Copy <A NAME="RBearing">RBearing</A>
    <DD>
      In the Font View this command copies the right side bearings of all selected
      glyphs and stores them in the clipboard.
      <P>
      In the Outline View this command copies the right side bearing of the current
      glyph and stores it in the clipboard.
      <P>
      This command is not available in the Bitmap View.
    <DT>
      <A NAME="CopyGridFit">Copy Grid Fit</A>
    <DD>
      Only available in the outline glyph view and only if
      <A HREF="viewmenu.html#ShowGridFit">View-&gt;Show Grid Fit </A>is selected.
      This will place a copy of the grid fit version of the glyph into the clipboard.
    <DT>
      <A NAME="Paste">Paste</A>
    <DD>
      In the Font View this command will paste whatever is in the clipboard into
      the foregrounds of all selected glyphs (exception: if the clipboard contains
      an image it will usually not go into the foreground), clearing out whatever
      was there. If there are more selected glyphs than there is information in
      the clipboard then the clipboard will be repeated until all selected glyphs
      have had something pasted in them (that is if glyphs A and B were selected
      when the copy happened and now glyphs C, D and E are selected, the C will
      get A, D will get B and E will also get A). If exactly one glyph is selected
      but the clipboard contains more that one glyph, the selection will be
      extended so that enough glyphs are selected that something may be pasted
      in each. <BR>
      If the clipboard contains outline information then that information will
      go into the glyph outline regardless of the setting of Copy From. If the
      clipboard contains a bitmap and the display is set to outline then the bitmap
      is pasted into the bitmap font it was copied from (ie. the one with the same
      pixel size), if the clipboard contains a bitmap and the display is set to
      a bitmap then the bitmap will be pasted into the currently displayed font.
      If the clipboard contains a bitmap of a size which does not exist in our
      database, then you will be asked if you want to create a bitmap font to put
      the bitmap into.
      <P>
      In the Outline View this command will paste whatever is in the clipboard
      to the current editing layer.
      <P>
      In the Bitmap View this command will flatten any floating selection and paste
      the contents of the clipboard into a new floating selection.
      <P>
      If the clipboard is owned by an external application FontForge will attempt
      to Paste the following selection types (the bitmap view does not currently
      respond to external clipboards):
      <TABLE BORDER>
	<TR>
	  <TD>"image/png", "image/bmp"</TD>
	  <TD>background images</TD>
	</TR>
	<TR>
	  <TD>"image/eps", "image/ps", "image/svg"</TD>
	  <TD>as spline data</TD>
	</TR>
      </TABLE>
      <P>
      See the section on <A HREF="selections.html">selections</A>
    <DT>
      <A NAME="PasteInto">Paste Into</A>
    <DD>
      Only available in the fontview. Just like Paste, except it does not clear
      the contents of the glyph before adding to it.
    <DT>
      <A NAME="PasteAfter">Paste After</A>
    <DD>
      Only available in the fontview. Pastes the contents of the clipboard into
      the selected glyph, shifts it over by the advance width, and then adds the
      advance width of the glyph in the clip to this glyph. Essentially this makes
      it easy to build up words. (If the font has vertical metrics, then glyphs
      will be stacked vertically. If the glyph is right to left then the clipboard
      will be added on the left).
    <DT>
      <A NAME="SameGlyphAs">Same Glyph As</A>
    <DD>
      Only available in the fontview. If the clipboard contains a single reference
      to a glyph then applying this command makes all selected encoding points
      refer to that same glyph. (For example the non-breaking-space glyph (U+00A0)
      frequently uses the same glyph as the space glyph. To accomplish this, select
      the space glyph, Copy Ref, select the non-breaking-space glyph and Same Glyph
      As).
      <P>
      Adobe suggests that you avoid this. Use a reference instead. In some situations
      (I think pdf files is one) having one glyph with several encodings causes
      problems (Acrobat uses the glyph to back-map through the encoding to work
      out the unicode code point. But that will fail if a glyph has two unicode
      code points associated with it).
    <DT>
      <A NAME="Clear">Clear</A>
    <DD>
      Similar to <A HREF="#Cut">Cut</A> except it does not copy anything to the
      clipboard.
    <DT>
      Clear <A NAME="Background">Background</A>
    <DD>
      Only in the font view. This command clears the backgrounds of all selected
      glyphs.
    <DT>
      <A NAME="Merge">Merge</A>
    <DD>
      This command is only available in the Outline View. If a point on a path
      is selected, the merge command will remove that point from the path and
      join the two points around the removed one with a new spline which approximates
      the curve between the two before. The two surrounding points will retain
      their slopes (unless both are corner points).
      <P>
      <A HREF="pfaeditmath.html#Approximating">How is this done?</A>
    <DT>
      <A NAME="Join">Join</A>
    <DD>
      This command is not available in the bitmap view. It looks for any paths
      with endpoints as the endpoints of other paths and then join those two paths.
      Also if the endpoint of a path is the same as the start point it will make
      that path into a loop. (The commands that move points around will normally
      do this automatically, but Paste will not).<BR>
      In the Outline view things are slightly more complicated: If any paths have
      selected points on them it will only attempt to join those paths.
    <DT>
      <A NAME="CopyFg">Copy Fg To Bg</A>
    <DD>
      This command is only available in the Outline and Font Views. It cleans out
      all the splines in the background layer and replaces them with a copy of
      all the splines in the foreground layer. Note: Any background images remain.
    <DT>
      <A NAME="CopyL2L">Copy Layer To Layer</A>
    <DD>
      This command is only available in the Outline and Font Views. It brings up
      a dialog which lets you select a base layer to copy from and another layer
      to copy to. You may also choose to clear the destination layer, or to append
      to it. Then it copies the contents of the source layer (contours and references,
      but not images) to the destination layer.
    <DT>
      <A NAME="Select">Select</A>
    <DD>
      In the outline view there is a select menu, other views just have Select
      All.
      <DL>
	<DT>
	  Select <A NAME="All">All</A>
	<DD>
	  In the outline view it selects all points, all references (all images if
	  the background is active) and the width line (and the vertical width line
	  if that is enabled). In the fontview it selects all glyphs. In the bitmap
	  view it selects the current bitmap region.
	<DT>
	  <A NAME="Invert">Invert</A> Selection
	<DD>
	  Selects anything not selected, and deselects everything selected.
	<DT>
	  <A NAME="Deselect">Deselect</A> All
	<DD>
	  Deselects anything selected
	<DT>
	  <A NAME="FirstPt">First Point</A>
	<DD>
	  Deselects everything and then selects the first point on the first path of
	  the glyph.
	<DT>
	  First Point, <A NAME="NextContour">Next Contour</A>
	<DD>
	  Deselects everything and then selects the first point on the next contour.
	  (If the last contour is selected then deselects everything).
	<DT>
	  <A NAME="NextP">Next</A> Point
	<DD>
	  Deselects the current point and selects the next point.
	<DT>
	  <A NAME="PrevP">Prev</A> Point
	<DD>
	  Deselects the current point and selects the previous point
	<DT>
	  <A NAME="NextCP">Next</A> Control Point
	<DD>
	  Selects the "Next Control Point" of the current point.
	<DT>
	  <A NAME="PrevCP">Prev</A> Control Point
	<DD>
	  Selects the "Prev Control Point" of the current point.
	<DT>
	  <A NAME="PointAt">Point At</A>
	<DD>
	  Allows the user to enter an X,Y coordinate and selects the point at that
	  location.
	<DT>
	  Points on Selected <A NAME="Contours">Contours</A>
	<DD>
	  If a contour contains any selected points, then select all points on the
	  contour.
	<DT>
	  <A NAME="SelectPoints">Select</A> All Points &amp; Refs
	<DD>
	  Just like select all, but it doesn't select anchor points or the width lines.
	<DT>
	  <A NAME="SelectAnchors">Select</A> Anchors
	<DD>
	  Select all the Anchor points in the glyph.
	<DT>
	  (De)<A NAME="SelWidth">Select</A> Width
	<DD>
	  Toggles whether the width line is selected.
	<DT>
	  <A NAME="SelVWidth">(De)Select</A> VWidth
	<DD>
	  (if vertical metrics are enabled) Toggles whether the vertical width line
	  is selected.
	<DT>
	  <A NAME="SelHM">Select Points Affected by Current HintMask</A>
	<DD>
	  if a single point with a hintmask is selected, then this command selects
	  all points affected by that hintmask.
	<DT>
	  Select by <A NAME="Color">Color</A>&gt;
	<DD>
	  Only in the font view. Displays a submenu containing a list of colors and
	  allows you to select all glyphs which you have set to that color with the
	  Char Info dlg. Normally the selection is cleared before setting the colored
	  glyphs, but if you hold down the shift key the selection will be extended
	  to the colored glyphs.
	<DT>
	  <A NAME="SelectName">Select by Wildcard...</A>
	<DD>
	  Select all glyphs that match the wildcard pattern specified. A glyph may
	  also be mapped to more than one encoding slot. Select all encoding slots
	  that refer to the named glyph. I think this is primarily useful for detaching
	  .notdef.
	<DT>
	  <A NAME="SelectScript">Select by Script...</A>
	<DD>
	  Allows you to specify an OpenType script tag and then ff will select all
	  glyphs which have that script.
      </DL>
      <P>
      In the fontview, the following menu items will have slightly different meanings
      depending on whether you are holding down the Shift of Control keys.
      <P>
      If you hold down neither, then the current selection is cleared, and the
      selection is set to whatever the command specifies.
      <P>
      If you hold down just the Shift key, then the current selection is retained
      and any glyphs specified by the command will be merged into that selection.
      (a logical or operation)
      <P>
      If you hold down just the Control key, then any glyphs specified by the command
      will be removed from the selection.
      <P>
      If you hold down both keys, then only glyphs specified in both the command
      and the old selection will be selected. (a logical and operation)
      <DL>
	<DT>
	  <A NAME="SelWorth">Glyphs worth outputting</A>
	<DD>
	  Generally this means that either the glyph's width has been set, or that
	  in one of its foreground layers there is some data -- a contour or a reference.
	<DT>
	  <A NAME="SelRefs">with only references</A>
	<DD>
	  Select all glyphs which contain at least one reference (in the active layer)
	  and no contours.
	<DT>
	  <A NAME="SelSplines">Glyphs with only Splines</A>
	<DD>
	  Select all glyphs which contain at least one contour (in the active layer)
	  and no references.
	<DT>
	  <A NAME="SelBoth">Glyphs with both</A>
	<DD>
	  Select all glyphs in the active layer with both contours and references.
	  This is something which cannot be expressed in a TrueType font, and fontforge
	  has various tricks for dealing with it, but it might be something you'd like
	  to fix up.
	<DT>
	  <A NAME="SelWhite">Whitespace Glyphs</A>
	<DD>
	  Select all glyphs which contain neither references nor contours (but which
	  have had their widths set).
	<DT>
	  <A NAME="SelChanged">Changed</A>
	<DD>
	  Selects all changed glyphs
	<DT>
	  <A NAME="SelHinting">Hinting Needed</A>
	<DD>
	  Selects all glyphs which FontForge thinks need to be hinted.
	<DT>
	  <A NAME="SelAutohintable">Autohintable</A>
	<DD>
	  Selects all glyphs which FontForge thinks can be autohinted -- ie. all glyphs
	  not marked <A HREF="hintsmenu.html#DontAutoHint">Hints-&gt;Don't Autohint</A>
	  (this does not check whether ff thinks the glyphs in question NEED to be
	  autohinted)
	<DT>
	  <A NAME="SelectByATT">Select By Lookup Subtable...</A>
	<DD>
	  Only in the font view. Brings up a <A HREF="selectbyatt.html">dlg</A> which
	  allows you to select various glyphs depending on various advanced typographic
	  features.
      </DL>
    <DT>
      <A NAME="Find">Find</A> / Replace
    <DD>
      Only in the font view, this brings up a <A HREF="search.html">dialog</A>
      that allows you to find patterns within glyphs and replace them with other
      patterns.
    <DT>
      <A NAME="ReplaceRef">Replace </A>With Reference
    <DD>
      Only in the font view, this command will search the font finding any glyph
      which contains an inline copy of one of the selected glyphs, and converts
      that copy into a reference to the appropriate glyph. In other words it finds
      things which should be references and makes them be.
      <P>
      This is primarily for use after reading a postscript (type1, otf or cff)
      font. The reference information will usually be lost in these formats, and
      this command can find it again.
      <P>
      Suppose the font contains a glyph "Acircumflex" which contains an embedded
      copy of "A" (a copy of the contours, not a references), then if you select
      "A" and apply this command it will search all glyphs in the font for something
      that looks like "A", remove it from any glyphs in which it is found and replace
      it with a reference. It applies this same algorithm for all selected glyphs.
      If you want to check for every possibility, just select all glyphs first.
      <P>
      After completion, the selection will be set to those glyphs which have been
      changed by the command.
    <DT>
      <A NAME="Unlink">Unlink</A> Reference
    <DD>
      This will remove a referenced glyph and replace it with the splines and points
      (or bitmap raster) that make it up.
    <DT>
      Copy <A NAME="From">From</A>
    <DD>
      Only available in the Font View.
      <DL>
	<DT>
	  All <A NAME="Fonts">Fonts</A>
	<DD>
	  If this is set then Copy (and Cut and Clear) will copy from the outline font
	  and from all the bitmap fonts
	<DT>
	  <A NAME="Displayed">Displayed</A> Font
	<DD>
	  If this is set then Copy will only copy from the font currently being displayed.
	<DT>
	  <A NAME="CharName">Char Metadata</A>
	<DD>
	  Normally Copy does not copy the metadata (name, unicode encoding, comment,
	  ligature info) associated with a glyph, but if this is checked then it will.
	<DT>
	  <A NAME="TTInstr">TrueType Instructions</A>
	<DD>
	  Controls whether truetype instructions should be copied with a glyph. If
	  copying glyphs from one font to another it may not be appropriate to copy
	  the truetype instructions (which may depend on subroutines or values in the
	  'fpgm', 'prep' and 'cvt ' tables).
      </DL>
      <P>
      This also controls the behavior of the
      <A HREF="elementmenu.html#Transform">Transform</A> and
      <A HREF="elementmenu.html#Accented">Build Accented</A> glyph commands.
    <DT>
      <A NAME="Remove-Undoes">Remove Undoes</A>
    <DD>
      Not available in the Metrics View. This allows you to free up some of the
      memory FontForge is currently squandering on keeping track of Undoes (and
      Redoes). Obviously this command cannot be undone.
      <UL>
	<LI>
	  In the Outline Glyph view this will free up all undoes/redoes in the current
	  edit mode
	<LI>
	  In the Bitmap Glyph view this will free up all bitmap undoes/redoes
	<LI>
	  In the Font View this will free up all undoes/redoes in all selected glyphs,
	  outline and bitmap, background and foreground.
      </UL>
  </DL>
  <P>
  <H2>
    Other menus
  </H2>
  <UL>
    <LI>
      <A HREF="filemenu.html">File</A>
    <LI>
      <A HREF="editmenu.html">Edit</A>
    <LI>
      <A HREF="pointmenu.html">Point</A>
    <LI>
      <A HREF="elementmenu.html">Element</A>
    <LI>
      <A href="toolsmenu.html">Tools</A>
    <LI>
      <A HREF="hintsmenu.html">Hints</A>
    <LI>
      <A HREF="encodingmenu.html">Encoding</A>
    <LI>
      <A HREF="viewmenu.html">View</A>
    <LI>
      <A HREF="metricsmenu.html">Metrics</A>
    <LI>
      <A HREF="cidmenu.html">CID</A>
    <LI>
      <A HREF="mmmenu.html">MM</A>
    <LI>
      <A HREF="windowmenu.html">Window</A>
    <LI>
      <A HREF="helpmenu.html">Help</A>
    <LI>
      <A HREF="HotKeys.html">Hot Keys</A>
  </UL>
  <P ALIGN=Center>
  -- <A HREF="filemenu.html">Prev</A> -- <A HREF="overview.html">TOC</A> --
  <A HREF="pointmenu.html">Next</A> --
  <P>
</DIV>
</BODY></HTML>