home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / News / Alexandra.0.82 / Source / Decoding.subproj / DecoderController.h < prev    next >
Encoding:
Text File  |  1996-01-30  |  677 b   |  41 lines

  1.  
  2. #import <objc/Object.h>
  3.  
  4. @class MainWindowControl;
  5. @class Article;
  6.  
  7.  
  8. @interface DecoderController : Object
  9. {
  10.     MainWindowControl * mainWindowControl;
  11.     BOOL  continueDecoding;
  12.     int currentDecodeIndex;
  13.     id     panel;
  14.     id    selectedArticleMatrix;
  15.     id    decodeAndAbortButton;
  16.     id    numArticlesTF;
  17. }
  18.  
  19. // Start decoding.
  20. - (void) doDecoding:sender;
  21.  
  22. - (void) uudecodeMultipleArticles;
  23. - (void) uudecodeArticle:(int)articleIndex;
  24.  
  25. - (void) showDecodePanel:sender;
  26. - (void) setupDecodePanel;
  27. - (void) loadMatrixWithArticles;
  28.  
  29. // Actions
  30. - decodeOrAbortButtonClicked:sender;
  31. - cancelModalPanel:sender;
  32.  
  33. @end
  34.  
  35. //@interface DecoderController (WindowDelegate)
  36.  
  37. //- windowWillClose:sender;
  38.  
  39. //@end
  40.  
  41.