/usr/share/astk/astk.tcl is in code-aster-gui 1.8.4-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | #########################################################################
# COPYRIGHT (C) 2003 EDF R&D WWW.CODE-ASTER.ORG #
# #
# THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR #
# MODIFY IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS #
# PUBLISHED BY THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE #
# LICENSE, OR (AT YOUR OPTION) ANY LATER VERSION. #
# THIS PROGRAM IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, #
# BUT WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF #
# MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE GNU #
# GENERAL PUBLIC LICENSE FOR MORE DETAILS. #
# #
# YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE #
# ALONG WITH THIS PROGRAM; IF NOT, WRITE TO : EDF R&D CODE_ASTER, #
# 1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE. #
#########################################################################
# SCRIPT PRINCIPAL : astk.tcl
# arguments : -debug [n] [-p nom_profil] + ...
# $Id: astk.tcl 2884 2007-03-20 17:00:36Z courtois $
# lancement depuis une autre appli (exemple depuis Salomé) :
# set argv "--from_salome"
# set argc [llength $argv]
# on cache la fenêtre en attendant la construction
wm withdraw .
set root [file dirname [info script]]
source [file join $root init_share.tcl]
source [file join $root init.tcl]
set ashare::appli "astk"
pre_traite_argv
init_gene $root
unset root
# pointeur off sert surtout à faire quelque chose sur "." pour qu'elle
# apparaisse avant la fenetre de log
ashare::pointeur off
ashare::init_log ".astk"
# initialisation des mots clés des différents fichiers
init_mots
# initialisation des messages erreur/info/ihm
ashare::lire_msg [file join $ashare::root $ashare::fic_msg]
# préférences utilisateur
ashare::init_prefs
init_icon $astk::config(-1,theme)
set ashare::dbg $astk::config(-1,dbglevel)
# initialisation des noms d'onglet
def_onglet
set msg [ashare::mess "info" 1 $astk::astk_version]
puts $msg
# lecture des arguments
traite_argv
# initialisation du profil
init_profil
# initialisation des couleurs, fonts...
init_ihm
# verifications
check_conf $astk::check_quit
if { $ashare::dbg } {
ashare::mess "info" 2 $ashare::dbg }
# splash screen
set splash ""
if { $ashare::splash_screen == 1 } {
set splash .fen_about
a_propos . [ashare::mess "ihm" 367]
}
if { $ashare::dbg > 0 } {
show_fen $astk::ihm(log) force
}
# initialisation des ressources
init_env $splash
# initialisation agla
init_agla
# raffraichit données+onglet agla
raffr_agla $splash INI
# définition des unités logiques
def_ul
# onglet de demarrage
set astk::profil(onglet_actif) $astk::ihm(ong,1,1)
# initialisations finies
end_init
# fenetre principale d'ASTK
astk_princ
|