init_gui.sa


Generated by gen_html_sa_files from ICSI. Contact gomes@icsi.berkeley.edu for details
 
---------------------------> Sather 1.1 source file <--------------------------
-- Author: Benedict A. Gomes <gomes@samosa.ICSI.Berkeley.EDU>
-- Copyright (C) 1995, International Computer Science Institute
-- $Id: init_gui.sa,v 1.1 1996/08/29 23:57:49 gomes Exp $
--
-- COPYRIGHT NOTICE: This code is provided WITHOUT ANY WARRANTY
-- and is subject to the terms of the SATHER LIBRARY GENERAL PUBLIC
-- LICENSE contained in the file: Sather/Doc/License of the
-- Sather distribution. The license is also available from ICSI,
-- 1947 Center St., Suite 600, Berkeley CA 94704, USA.


class INIT_GUI

class INIT_GUI is -- Class that runs the tcl code for gui initialization gui_setup(t: TCL_TK) is sather_home: STR := UNIX::sather_home; discard ::= t.eval_file(sather_home+"/System/Platforms/gui/gui_setup.tcl"); end; gui_post_socket_init(t: TCL_TK) is sather_home: STR := UNIX::sather_home; discard ::= t.eval_file(sather_home +"/System/Platforms/gui/gui_post_socket_init.tcl"); end; end; -- class INIT_GUI