home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l216 / 2.ddi / XLOTUS.PRO < prev    next >
Encoding:
Text File  |  1987-03-23  |  2.9 KB  |  105 lines

  1. /************************************************************
  2.  
  3.      Turbo Prolog Toolbox
  4.      (C) Copyright 1987 Borland International.
  5.  
  6.     Access a Lotus 1-2-3(TM) & Symphony(TM) compatible file
  7.     from Prolog.
  8.     
  9.     We are using the file "XLOTUS.WRK" for this demo program.
  10.  
  11. *************************************************************/
  12.  
  13. project "xlotus"
  14.  
  15. Domains
  16.   File    = fp
  17.  
  18. global predicates
  19.   real_ints(REAL,INTEGER,INTEGER,INTEGER,INTEGER)-(o,i,i,i,i) language c
  20.  
  21. include    "readext.pro"
  22. include    "lotus.pro"
  23.  
  24. PREDICATES
  25.   /* Listning */
  26.   list_Recs(Integer,LotusRecL)
  27.   list_Rec(Integer,Integer,LotusRec)
  28.   wr_Version(Integer)
  29.   wr_elem(Value)
  30.   NoofNL(Integer)
  31.   PressAKey
  32.   doPrompt
  33.  
  34. CLAUSES
  35.   list_Recs(_,[]):- !.
  36.   list_Recs(CurRow,[Rec|RecL]):-
  37.     list_rec(CurRow,CurRow2,Rec),
  38.     list_Recs(CurRow2,RecL).
  39.  
  40.   list_rec(CurRow,CurRow,elem(CurRow,Col,Int)) :- !,
  41.     cursor(Row,_), Col2=Col*8, cursor(Row,Col2), wr_elem(Int).
  42.  
  43.   list_rec(CurRow,Row,elem(Row,Col,Int)) :- !,
  44.     NL = Row-CurRow,
  45.     NoofNL(NL), Col2=Col*8,
  46.     cursor(Row2,_), cursor(Row2,Col2), wr_elem(Int).
  47.  
  48.   list_rec(CurRow,CurRow,version(V)):-
  49.     write("\t\tVersion: "),wr_Version(V).
  50.  
  51.  
  52.   wr_Version(1028) :- write("Lotus 1-2-3(TM) 1.0\n").
  53.   wr_Version(1029) :- write("Symphony(TM) 1.0\n").
  54.   wr_Version(1030) :- write("Lotus 1-2-3(TM) 2.0  or  Symphony(TM) 1.1\n").
  55.  
  56.   wr_elem(int(I))  :- writef("%8",I).
  57.   wr_elem(real(I)) :- writef("%8",I).
  58.   wr_elem(label(S)):- writef("%8",S).
  59.  
  60.   NoofNL(N) :- N<=0,!.
  61.   NoofNL(N) :- nl, N2=N-1, NoofNL(N2).
  62.  
  63.  
  64.   PressAKey :-
  65.     makewindow(_,_,_,_,MinR,_,NoofR,_),
  66.     cursor(R,_), R<=MinR+NoofR-4,!.
  67.   PressAKey :- doPrompt,cursor(R,C), scroll(R,0),cursor(0,C).
  68.  
  69.   doPrompt:-
  70.     makewindow(Nr,Att,_,_,MinR,MinC,NoofR,NoofC),
  71.     MinR2=MinR+NoofR-1, MinC2=MinC+NoofC/3+1,
  72.     str_len(" Press a key",Len), Len2=Len+1, bitxor(Att,8,Att2),
  73.     makewindow(Nr,Att2,0,"",MinR2,MinC2,1,Len2),
  74.     write(" Press a key"), 
  75.     readdevice(FP), readdevice(keyboard), readchar(_), readdevice(FP),
  76.     removewindow.
  77.     
  78.  
  79. /*************************************************************
  80.         Goal
  81. *************************************************************/
  82.          
  83. GOAL    openread(fp,"xlotus.wrk"), readdevice(fp), filemode(fp,0),
  84.     
  85.     /* Read all records at once */
  86.     rd_LotusFile(RecL),
  87.     makewindow(85,40,36," Lotus 1-2-3 (TM)& Symphony (TM) - All Records ",0,0,25,80),
  88.     write("\n\n",RecL), doPrompt,
  89.  
  90.     /* Read sequentially, searching for specific record */
  91.     filepos(fp,0,0),
  92.     write("\n\nSearch for a record at column 0"),
  93.     rd_Lotuscell(elem(Row,0,R)), Elem1=elem(Row,0,R),
  94.     write(", Record: ",Elem1),
  95.  
  96.     write("\n\nSearch for a record at row 3 and column 3"),
  97.     rd_Lotuscell(elem(3,3,R2)), Elem2=elem(3,3,R2),
  98.     write(", Record: ",Elem2),
  99.     doPrompt,
  100.  
  101.     /* List records in "Spreadsheet" way */
  102.     makewindow(85,26,36," Lotus 1-2-3 (TM)& Symphony (TM) ",0,0,25,80),
  103.     cursor(Xa,Ya),nl,nl,
  104.     list_recs(0,RecL), doPrompt.
  105.