~ubuntu-branches/ubuntu/karmic/gfxboot-theme-ubuntu/karmic

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
%
% include before common.inc
%

% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
% ( timeout time ) ==> ( )
/Timeout {
  /timeout.time exch def
  /timeout.timeout exch def

  timeout.time 10 mul 150 add 182 div /timeout.seconds exch def

  timeout.seconds timeout.current eq { return } if
  /timeout.current timeout.seconds def

  white setcolor

  timeout.time.x timeout.time.y moveto -30 0 rmoveto
  currentpoint 30 fontheight image

  timeout.time 0 gt {
    timeout.seconds "%d s" timeout.buf sprintf

    timeout.time.x timeout.time.y moveto timeout.buf showright
  } if
} def


% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
% Initialize timeout indicator.
%
% ( ) ==> ( )
%
/timeout.init {
  /timeout.current    -1 def
  /timeout.buf        64 string def

  /timeout.time.x timeout.x def
  /timeout.time.y timeout.y 120 add def
} def


/timeout.x { head.x } def
/timeout.y { head.y } def