home *** CD-ROM | disk | FTP | other *** search
-
- #import <objc/Object.h>
-
- @class MainWindowControl;
- @class Article;
-
-
- @interface DecoderController : Object
- {
- MainWindowControl * mainWindowControl;
- BOOL continueDecoding;
- int currentDecodeIndex;
- id panel;
- id selectedArticleMatrix;
- id decodeAndAbortButton;
- id numArticlesTF;
- }
-
- // Start decoding.
- - (void) doDecoding:sender;
-
- - (void) uudecodeMultipleArticles;
- - (void) uudecodeArticle:(int)articleIndex;
-
- - (void) showDecodePanel:sender;
- - (void) setupDecodePanel;
- - (void) loadMatrixWithArticles;
-
- // Actions
- - decodeOrAbortButtonClicked:sender;
- - cancelModalPanel:sender;
-
- @end
-
- //@interface DecoderController (WindowDelegate)
-
- //- windowWillClose:sender;
-
- //@end
-
-