1
0
forked from GitHub/gf-core

Founding the newly structured GF2.0 cvs archive.

This commit is contained in:
aarne
2003-09-22 13:16:55 +00:00
commit b1402e8bd6
162 changed files with 25569 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
module UnicodeF where
import Fudgets
import Operations
import Unicode
-- AR 12/4/2000, 18/9/2001 (added font parameter)
fudlogueWriteU :: String -> (String -> String) -> IO ()
fudlogueWriteU fn trans =
fudlogue $
shellF "GF Unicode Output" (writeF fn trans >+< quitButtonF)
writeF fn trans = writeOutputF fn >==< mapF trans >==< writeInputF fn
displaySizeP = placerF (spacerP (sizeS (Point 440 500)) verticalP)
writeOutputF fn = moreF' (setFont fn) >==< justWriteOutputF
justWriteOutputF = mapF (map (wrapLines 0) . filter (/=[]) . map mkUnicode . lines)
writeInputF fn = stringInputF' (setShowString mkUnicode . setFont fn)