summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjoye <joye>2013-09-05 21:29:51 (GMT)
committerjoye <joye>2013-09-05 21:29:51 (GMT)
commit676f889078448462e13e73395dbfc0854b7f9fcd (patch)
treed5459918e0f1aa3f06735749e657e9401f03cdcf
parentde13418f43aa51593082644e628cd538405d8229 (diff)
downloadblt-676f889078448462e13e73395dbfc0854b7f9fcd.zip
blt-676f889078448462e13e73395dbfc0854b7f9fcd.tar.gz
blt-676f889078448462e13e73395dbfc0854b7f9fcd.tar.bz2
*** empty log message ***
-rw-r--r--src/bltInt.C87
1 files changed, 18 insertions, 69 deletions
diff --git a/src/bltInt.C b/src/bltInt.C
index 5303ffc..6da1565 100644
--- a/src/bltInt.C
+++ b/src/bltInt.C
@@ -28,13 +28,10 @@
#include "bltInt.h"
-Tcl_AppInitProc Blt_core_Init;
-Tcl_AppInitProc Blt_core_SafeInit;
-Tcl_AppInitProc Blt_x_Init;
-Tcl_AppInitProc Blt_x_SafeInit;
-Tcl_AppInitProc Blt_Init;
+Tcl_AppInitProc Tlt_Init;
+Tcl_AppInitProc Tlt_SafeInit;
-int Blt_core_Init(Tcl_Interp *interp)
+int Tlt_Init(Tcl_Interp *interp)
{
Tcl_Namespace *nsPtr;
@@ -48,6 +45,16 @@ int Blt_core_Init(Tcl_Interp *interp)
return TCL_ERROR;
}
+ if(
+#ifdef USE_TCL_STUBS
+ Tk_InitStubs(interp, TK_PATCH_LEVEL, 0)
+#else
+ Tcl_PkgRequire(interp, "Tk", TK_PATCH_LEVEL, 0)
+#endif
+ == NULL) {
+ return TCL_ERROR;
+ }
+
nsPtr = Tcl_FindNamespace(interp, "::blt", (Tcl_Namespace *)NULL, 0);
if (nsPtr == NULL) {
nsPtr = Tcl_CreateNamespace(interp, "::blt", NULL, NULL);
@@ -58,77 +65,19 @@ int Blt_core_Init(Tcl_Interp *interp)
if (Blt_VectorCmdInitProc(interp) != TCL_OK)
return TCL_ERROR;
-
- if (Tcl_PkgProvide(interp, "blt_core", BLT_VERSION) != TCL_OK) {
- return TCL_ERROR;
- }
- return TCL_OK;
-}
-
-int
-Blt_core_SafeInit(Tcl_Interp *interp)
-{
- return Blt_core_Init(interp);
-}
-
-int
-Blt_x_Init(Tcl_Interp *interp) /* Interpreter to add extra commands */
-{
- Tcl_Namespace *nsPtr;
-
- if(
-#ifdef USE_TCL_STUBS
- Tcl_InitStubs(interp, TCL_PATCH_LEVEL, 0)
-#else
- Tcl_PkgRequire(interp, "Tcl", TCL_PATCH_LEVEL, 0)
-#endif
- == NULL) {
+ if (Blt_GraphCmdInitProc(interp) != TCL_OK)
return TCL_ERROR;
- }
- if(
-#ifdef USE_TCL_STUBS
- Tk_InitStubs(interp, TK_PATCH_LEVEL, 0)
-#else
- Tcl_PkgRequire(interp, "Tk", TK_PATCH_LEVEL, 0)
-#endif
- == NULL) {
+ if (Tcl_PkgProvide(interp, "tlt", "3.0") != TCL_OK) {
return TCL_ERROR;
}
- nsPtr = Tcl_CreateNamespace(interp, "::blt::tk", NULL, NULL);
- if (nsPtr == NULL) {
- return TCL_ERROR;
- }
- nsPtr = Tcl_FindNamespace(interp, "::blt", NULL, TCL_LEAVE_ERR_MSG);
- if (nsPtr == NULL) {
- return TCL_ERROR;
- }
-
- if (Blt_GraphCmdInitProc(interp) != TCL_OK)
- return TCL_ERROR;
-
- if (Tcl_PkgProvide(interp, "blt_extra", BLT_VERSION) != TCL_OK) {
- return TCL_ERROR;
- }
- return TCL_OK;
+ return TCL_OK;
}
-int
-Blt_x_SafeInit(Tcl_Interp *interp)
+int Tlt_SafeInit(Tcl_Interp *interp)
{
- return Blt_x_Init(interp);
+ return Tlt_Init(interp);
}
-int
-Blt_Init(Tcl_Interp *interp)
-{
- if (Blt_core_Init(interp) != TCL_OK) {
- return TCL_ERROR;
- }
- if (Blt_x_Init(interp) != TCL_OK) {
- return TCL_ERROR;
- }
- return TCL_OK;
-}