home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l043 / 3.ddi / GETPAL.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1987-11-02  |  430 b   |  24 lines

  1. uses
  2.   Graph;
  3. var
  4.   Gd, Gm  : integer;
  5.   Color   : word;
  6.   Palette : PaletteType;
  7. begin
  8.   Gd := Detect;
  9.   InitGraph(Gd, Gm, '');
  10.   if GraphResult <> grOk then
  11.     Halt(1);
  12.   GetPalette(Palette);
  13.   if Palette.Size <> 1 then
  14.     for Color := 0 to Pred(Palette.Size) do
  15.     begin
  16.       SetColor(Color);
  17.       Line(0, Color*5, 100, Color*5);
  18.     end
  19.   else
  20.     Line(0, 0, 100, 0);
  21.   Readln;
  22.   CloseGraph;
  23. end.
  24.