Add boxedgraphic macro to display a metapost graphic with a border.
[matthijs/master-project/report.git] / Utils / Lambda.tex
index 46422451bdc4e83b1b3fa9178035d19b595ac480..2172bbc38d0c1c42a1b01c255fe5b2a4c0d82146 100644 (file)
@@ -3,21 +3,78 @@
 % transformations.
 %
 
+\startuseMPgraphic{HLine}
+path a, b;
+% Create a rectangle of the full size
+a := origin -- (\MPvar{width}, 0mm);
+% Randomize it a bit
+b := a randomized (\overlaywidth / 25) ;
+% And draw it
+drawoptions (withpen pencircle scaled .75mm withcolor black) ;
+draw b; 
+\stopuseMPgraphic
+
+% Draw a line with the given options. Accepts only the 'width' option. Be
+% careful that these are metapost options, so use \the\textwidth instead of
+% textwidth, and a metapost expression for arithmethic (e.g. 0.5 *
+% \the\textwidth instead of 0.5\textwidth).
+\def\HLine[#1]%
+  {\setupMPvariables[HLine][#1]%
+  \useMPgraphic{HLine}}
+
+\startuseMPgraphic{box}
+path a, b;
+% Create a rectangle of the full size
+a := unitsquare xyscaled(\overlaywidth,\overlayheight);
+% Randomize it a bit
+b := a randomized (\overlaywidth / 25) ;
+% And draw it
+drawoptions (withpen pencircle scaled .75mm withcolor black) ;
+draw b; 
+\stopuseMPgraphic
+
+\defineoverlay[box][\useMPgraphic{box}]
+
+% Define \{start,stop}boxed with a nice metapost box around it.
+\defineframedtext[boxed][width=fit,background=box,frame=off]
+
 % Install the lambda calculus pretty-printer, as defined in pret-lam.lua.
 \installprettytype [LAM] [LAM]
 % Define \startlambda \stoplambda
-\definetyping[lambda][option=LAM,style=sans]
+\definetyping[lambda][option=LAM,style=sans,before=\startboxed,after=\stopboxed]
+
 % Define \lam{} (since \lambda is taken)
 \definetype[lam][option=LAM,style=sans]
 
 % Install the transformation pretty-printer, as defined in pret-trans.lua.
 \installprettytype [TRANS] [TRANS]
 % Define \starttrans \stoptrans
-\definetyping[trans][option=TRANS,style=normal,before=]
+\definetyping[trans][option=TRANS,style=normal,before=\startboxed,after=\stopboxed]
 
 % Install the haskell pretty-printer, as defined in pret-haskell.lua.
 \installprettytype [HASKELL] [HASKELL]
 % Define \starthaskell \stophaskell
-\definetyping[haskell][option=HASKELL,before=,after=]
+\definetyping[haskell][option=HASKELL,before=\startboxed,after=\stopboxed]
 % Define \hs
 \definetype[hs][option=HASKELL,style=mono]
+
+% Type the given buffer with the lambda typing style.
+% e.g., \typebufferlam{buffname}
+\define[1]\typebufferlam{
+  % We can't use \startlambda here defined by definetyping[lambda] above when
+  % typing buffers, so instead we'll redfine the options here.
+  \setuptyping[option=LAM,style=sans,before=,after=]
+  \startboxed
+  \typebuffer[#1]
+  \stopboxed
+  % Reset the typing options
+  \setuptyping[option=none,style=\tttf]
+}
+
+% Display a useMPgraphic in a pretty box
+\define[1]\boxedgraphic{
+  \startboxed
+  \useMPgraphic{#1}
+  \stopboxed
+}
+