home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / TCL / BLT / BLT1.7L1 / BLT1 / blt-1.7 / tkAppInit.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-01  |  3.4 KB  |  106 lines

  1. /* 
  2.  * tkAppInit.c --
  3.  *
  4.  *    Provides a default version of the Tcl_AppInit procedure for
  5.  *    use in wish and similar Tk-based applications.
  6.  *
  7.  * Copyright (c) 1993 The Regents of the University of California.
  8.  * All rights reserved.
  9.  *
  10.  * Permission is hereby granted, without written agreement and without
  11.  * license or royalty fees, to use, copy, modify, and distribute this
  12.  * software and its documentation for any purpose, provided that the
  13.  * above copyright notice and the following two paragraphs appear in
  14.  * all copies of this software.
  15.  * 
  16.  * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
  17.  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
  18.  * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
  19.  * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  20.  *
  21.  * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
  22.  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  23.  * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
  24.  * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
  25.  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  26.  */
  27.  
  28. #ifndef lint
  29. static char rcsid[] = "/usr/home/gah/repository/blt/tkAppInit.c,v 1.3 1994/04/02 04:37:26 gah Exp SPRITE (Berkeley) $Revision";
  30. #endif /* not lint */
  31.  
  32. #include "tk.h"
  33.  
  34. /*
  35.  * The following variable is a special hack that allows applications
  36.  * to be linked using the procedure "main" from the Tk library.  The
  37.  * variable generates a reference to "main", which causes main to
  38.  * be brought in from the library (and all of Tk and Tcl with it).
  39.  */
  40.  
  41. extern int main();
  42. int *tclDummyMainPtr = (int *) main;
  43.  
  44. /*
  45.  *----------------------------------------------------------------------
  46.  *
  47.  * Tcl_AppInit --
  48.  *
  49.  *    This procedure performs application-specific initialization.
  50.  *    Most applications, especially those that incorporate additional
  51.  *    packages, will have their own version of this procedure.
  52.  *
  53.  * Results:
  54.  *    Returns a standard Tcl completion code, and leaves an error
  55.  *    message in interp->result if an error occurs.
  56.  *
  57.  * Side effects:
  58.  *    Depends on the startup script.
  59.  *
  60.  *----------------------------------------------------------------------
  61.  */
  62.  
  63. int
  64. Tcl_AppInit(interp)
  65.     Tcl_Interp *interp;        /* Interpreter for application. */
  66. {
  67.     Tk_Window main;
  68.     extern int Blt_Init _ANSI_ARGS_((Tcl_Interp *interp));
  69.     main = Tk_MainWindow(interp);
  70.  
  71.     /*
  72.      * Call the init procedures for included packages.  Each call should
  73.      * look like this:
  74.      *
  75.      * if (Mod_Init(interp) == TCL_ERROR) {
  76.      *     return TCL_ERROR;
  77.      * }
  78.      *
  79.      * where "Mod" is the name of the module.
  80.      */
  81.     if (Blt_Init(interp) == TCL_ERROR) {
  82.     return TCL_ERROR;
  83.     }
  84.     if (Tcl_Init(interp) == TCL_ERROR) {
  85.     return TCL_ERROR;
  86.     }
  87.     if (Tk_Init(interp) == TCL_ERROR) {
  88.     return TCL_ERROR;
  89.     }
  90.  
  91.     /*
  92.      * Call Tcl_CreateCommand for application-specific commands, if
  93.      * they weren't already created by the init procedures called above.
  94.      */
  95.  
  96.     /*
  97.      * Specify a user-specific startup file to invoke if the application
  98.      * is run interactively.  Typically the startup file is "~/.apprc"
  99.      * where "app" is the name of the application.  If this line is deleted
  100.      * then no user-specific startup file will be run under any conditions.
  101.      */
  102.  
  103.     tcl_RcFileName = "~/.wishrc";
  104.     return TCL_OK;
  105. }
  106.