home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-alpha / enscript-1.4.0-bin.lha / share / enscript / emacs.hdr < prev    next >
Encoding:
Text File  |  1996-10-14  |  1.9 KB  |  76 lines

  1. % Emacs ps-print-buffer styled header.
  2. % Copyright (c) 1995 Markku Rossi.
  3. % Author: Markku Rossi <mtr@iki.fi>
  4. %
  5.  
  6. %
  7. % This file is part of GNU enscript.
  8. % This program is free software; you can redistribute it and/or modify
  9. % it under the terms of the GNU General Public License as published by
  10. % the Free Software Foundation; either version 2, or (at your option)
  11. % any later version.
  12. %
  13. % This program is distributed in the hope that it will be useful,
  14. % but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. % GNU General Public License for more details.
  17. %
  18. % You should have received a copy of the GNU General Public License
  19. % along with this program; see the file COPYING.  If not, write to
  20. % the Free Software Foundation, 59 Temple Place - Suite 330,
  21. % Boston, MA 02111-1307, USA.
  22. %
  23.  
  24. % -- code follows this line --
  25. %%DocumentNeededResources: font Helvetica
  26. %Format: eurdatestr    %E
  27. %Format: pagenumstr    $%/$=
  28.  
  29. % Fonts.
  30. /Helvetica /HeaderFont-Bold MF
  31. /HeaderF /HeaderFont-Bold findfont 12 scalefont def
  32.  
  33. /Helvetica /HeaderFont-Large MF
  34. /HeaderLF /HeaderFont-Large findfont 12 1.3 mul scalefont def
  35.  
  36. /do_header {    % print emacs header
  37.   gsave
  38.     d_header_x d_header_y translate
  39.     0 setgray
  40.     .5 setlinewidth
  41.  
  42.     % black shadow
  43.     1 0 d_header_w 1 sub d_header_h 1 sub Box fill
  44.     
  45.     % gray box with black frames
  46.     0 1 d_header_w 1 sub d_header_h 1 sub Box
  47.     gsave
  48.       .9 setgray fill
  49.     grestore
  50.     stroke
  51.     
  52.     % texts
  53.  
  54.     /xmarg 5 def
  55.  
  56.     % Top line.
  57.     HeaderLF setfont
  58.     /y d_header_h 12 div d_header_h 2 div add def 
  59.     xmarg y moveto ftail show
  60.  
  61.     pagenumstr dup stringwidth pop 
  62.     d_header_w exch sub 1 sub xmarg sub y moveto show
  63.  
  64.     % Bottom line
  65.     HeaderF setfont
  66.     /y d_header_h 6 div def
  67.     xmarg y moveto fdir show
  68.  
  69.     eurdatestr dup stringwidth pop
  70.     d_header_w exch sub 1 sub xmarg sub y moveto show
  71.  
  72.   grestore
  73. } def
  74.