home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / modula2 / library / filetool / toolcomm.def < prev    next >
Text File  |  1987-11-04  |  1KB  |  45 lines

  1. DEFINITION MODULE ToolCommands;
  2.  
  3. (*
  4. Title    : TOOLCOMM.DEF
  5. LastEdit : 10/31/87
  6. Author   : Russell G. Osterlund, Jr.
  7. System   : LOGITECH MODULA-2/86, REPERTOIRE, BlackBeard
  8.  
  9. This product has been developed with the use of, and embodies portions of,
  10. LOGITECH software development tools - compiler, linker, and M2MAKE.
  11.  
  12. *)
  13.  
  14. FROM ToolTypes IMPORT
  15.   DirectoryRecPtr, WindowType;
  16. FROM Drectory IMPORT (* REPERTOIRE *)
  17.   FileInfoRec;
  18.  
  19. PROCEDURE UpOneFile (directory: DirectoryRecPtr);
  20.  
  21. PROCEDURE DownOneFile (directory: DirectoryRecPtr);
  22.  
  23. PROCEDURE UpOnePage (directory: DirectoryRecPtr);
  24.  
  25. PROCEDURE DownOnePage (directory: DirectoryRecPtr);
  26.  
  27. PROCEDURE BeginningOfList (directory: DirectoryRecPtr);
  28.  
  29. PROCEDURE EndOfList (directory: DirectoryRecPtr);
  30.  
  31. PROCEDURE TopOfPage (directory: DirectoryRecPtr);
  32.  
  33. PROCEDURE BottomOfPage (directory: DirectoryRecPtr);
  34.  
  35. PROCEDURE TagCurrentFile (directory: DirectoryRecPtr);
  36.  
  37. PROCEDURE MoveUpOneLevel (directory: DirectoryRecPtr);
  38.  
  39. PROCEDURE MoveDownOneLevel (directory: DirectoryRecPtr);
  40.  
  41. PROCEDURE ActivateNewWindow (window: WindowType;
  42.                  LeftWindow,
  43.                  RightWindow: DirectoryRecPtr);
  44. END ToolCommands.
  45.