home *** CD-ROM | disk | FTP | other *** search
- /* -------------------------------------------------------------*/
- /* Final Writer 2 Arexx Macro - FontList */
- /* ©1993, 1994 Mike Hartigan */
- /* */
- /* This macro will display the complete (?) character set using */
- /* all of the fonts in the selected font drawer. */
- /* */
- /* -------------------------------------------------------------*/
-
- options results
-
- TempFile = "T:FWFontList" /* This is just good programming style :-} */
-
- /* First, we need the font path */
- 'status FontPath'
- FontName = Result
-
- /* Since 'status FontPath' includes the current font's name, we need to strip it
- We'll do this by searching backwards from the end until we find the last '/' (or ':')
- character, and delete from there to the end, leaving us with just the path. */
-
- pos = LASTPOS('/', FontName)
- IF ( pos ~= 0 )
- then /* If we found it, then DELSTR */
- FontPath = DELSTR(FontName, pos)
- ELSE DO /* If no '/' is found, then search for ':' (volume name) */
- pos = LASTPOS(':', FontName)
- IF ( pos ~= 0 )
- THEN /* If we found it, then DELSTR */
- FontPath = DELSTR(FontName, pos + 1)
- ELSE EXIT 20
- END
-
- 'RequestText "Path selection..." "Select font path" "' FontPath '"'
- FontPath = Result
-
- /* No sense re-inventing the wheel. AmigaDOS's LIST will give us all the
- file names in this drawer. There's probably a thousand ways to do this. This
- is just one. */
-
- /* This line will recognize my Type 1 font drawer (change the path to whatever
- is appropriate to your environment). */
-
- IF ~( index(UPPER(FontPath),"PSFONTS") = 0 )
- THEN address command 'list >' TempFile FontPath || '#?.PFB files lformat "%s%s"'
- ELSE address command 'list >' TempFile FontPath ' files ~(#?.info) lformat "%s%s"'
- address command 'sort ' Tempfile Tempfile
-
- /* We now have a file (T:FCFontList) consisting of the something similar
- to the following:
-
- FinalWriter:FWFonts/FWSWOLFonts/A
- FinalWriter:FWFonts/FWSWOLFonts/A_Bold
- FinalWriter:FWFonts/FWSWOLFonts/A_BoldItalic
- .
- .
- .
-
- (you get the idea)
-
- That's half the battle. We'll now use the font names to load each font and
- add the necessary 'Type' commands to type some stuff. */
-
- 'SectionSetup Top .5 Bottom .5 Inside .75 Outside .25'
- IF ~OPEN('infile', TempFile, "R")
- THEN EXIT 10
- x = 0
- DO WHILE 1 /* DO Forever - We'll EXIT on EOF) */
- FullFontName = ReadLn('infile')
- IF EOF('infile')
- THEN EXIT
- IF LENGTH(FullFontName) = 0
- THEN Iterate
- /* We'll strip the path from the name for display */
- pos = LASTPOS('/', FullFontName)
- IF ( pos ~= 0 )
- THEN /* If we found it, then DELSTR */
- FontName = RIGHT(FullFontName, LENGTH(FullFontName) - pos)
- ELSE DO
- pos = LASTPOS(':', FullFontName)
- IF ( pos ~= 0 )
- THEN /* If we found it, then DELSTR */
- FontName = Right(FullFontName, LENGTH(FullFontName) - pos)
- ELSE EXIT 20
- END
- 'Font ' || FullFontName /* make sure we can use it */
- IF RC = 0
- THEN DO
- 'FontSize 14'
- 'Font SoftSans_Bold' /* We'll always display the font name in SoftSans_Bold */
- 'Type ' || FontName
- 'Font ' || FullFontName
- 'NewParagraph'
- 'FontSize 18'
- 'Type