TkInterp.h
上传用户:shenzhenrh
上传日期:2013-05-12
资源大小:2904k
文件大小:1k
源码类别:

信息检索与抽取

开发平台:

Unix_Linux

  1. /* Interface for Objective-C Tcl, Tk interpreter object
  2.    Copyright (C) 1993,1994  R. Andrew McCallum
  3.    Written by:  R. Andrew McCallum <mccallum@cs.rochester.edu>
  4.    Dept. of Computer Science, U. of Rochester, Rochester, NY  14627
  5.    This file is part of the Tcl/Objective-C interface library.
  6.    This library is free software; you can redistribute it and/or
  7.    modify it under the terms of the GNU Library General Public
  8.    License as published by the Free Software Foundation; either
  9.    version 2 of the License, or (at your option) any later version.
  10.    
  11.    This library is distributed in the hope that it will be useful,
  12.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.    Library General Public License for more details.
  15.    You should have received a copy of the GNU Library General Public
  16.    License along with this library; if not, write to the Free
  17.    Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */ 
  19. #ifndef _TkInterp_h
  20. #define _TkInterp_h
  21. #include "TclInterp.h"
  22. #include <tk.h>
  23. @interface TkInterp: TclInterp
  24. {
  25.   BOOL stopped;
  26.   @public
  27.   Tcl_DString command;
  28. }
  29. - (const char *)checkTkLibrary;
  30. - (void)stop;
  31. - (Tk_Window)mainWindow;
  32. @end
  33. #endif /* _TkInterp_h */