home *** CD-ROM | disk | FTP | other *** search
-
- /* Generated by Interface Builder */
-
- /*
- * Copyright 1990 by The MITRE Corporation
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 1, or (at your option)
- * any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
-
- #import <objc/Object.h>
-
- @interface EvalDelegate:Object
- {
- id historyScrollView;
- id historyText;
- id inputScrollView;
- id inputText;
- id displayFont;
- }
-
- - setHistoryScrollView:anObject;
- - setInputScrollView:anObject;
- - toggleStringVisibleMode:sender; /* Toggles a switch which specifies */
- /* if showString shows added text. */
- - showString:(char *)string; /* Appends string to historyText. */
- - sendString:(char *)string; /* Sends string to slave process. */
- - showPasteboard:sender; /* Appends pasteboard to historyText. */
- - evalPasteboard:sender; /* Performs showPasteboard and sendString. */
- - evalSelection:sender; /* Performs showString and sendString. */
- /* on the selected text in historyText. */
- - (int)evalString:(char *)string; /* Performs showString and sendString. */
- - sendInterrupt:sender; /* Send SIGINT to slave process. */
- - evalInput:sender; /* Cuts inputText and performs */
- /* evalPasteboard. Listener delegate.*/
- - appDidInit:sender; /* App delegate. */
- - appDidBecomeActive:sender; /* App delegate. */
- - textDidEnd:sender endChar:(unsigned short)whyEnd; /* Text delegate. */
-
- @end
-