home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / TCL / BLT / _BLT.TAR / usr / lib / blt / applications / extloader / tkAppInit.c < prev   
Encoding:
C/C++ Source or Header  |  1994-04-22  |  3.3 KB  |  104 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/applications/extloader/tkAppInit.c,v 1.1 1994/04/22 15:51:33 gah Exp SPRITE (Berkeley)";
  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.  
  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.  
  82.     if (Tcl_Init(interp) == TCL_ERROR) {
  83.     return TCL_ERROR;
  84.     }
  85.     if (Tk_Init(interp) == TCL_ERROR) {
  86.     return TCL_ERROR;
  87.     }
  88.  
  89.     /*
  90.      * Call Tcl_CreateCommand for application-specific commands, if
  91.      * they weren't already created by the init procedures called above.
  92.      */
  93.      Extension_Init(interp);
  94.     /*
  95.      * Specify a user-specific startup file to invoke if the application
  96.      * is run interactively.  Typically the startup file is "~/.apprc"
  97.      * where "app" is the name of the application.  If this line is deleted
  98.      * then no user-specific startup file will be run under any conditions.
  99.      */
  100.  
  101.     tcl_RcFileName = "~/.wishrc";
  102.     return TCL_OK;
  103. }
  104.