Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ElmerCSC
GitHub Repository: ElmerCSC/elmerfem
Path: blob/devel/post/src/tcl/group.tcl
3203 views
#/*****************************************************************************
# *
# *  Elmer, A Finite Element Software for Multiphysical Problems
# *
# *  Copyright 1st April 1995 - , CSC - IT Center for Science Ltd., Finland
# * 
# *  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 (in file fem/GPL-2); if not, write to the 
# *  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 
# *  Boston, MA 02110-1301, USA.
# *
# *****************************************************************************/

#*******************************************************************************
#*
#* Element grouping parameter settings
#*
#*******************************************************************************
#*
#*                     Author:       Juha Ruokolainen
#*
#*                    Address: CSC - IT Center for Science Ltd.
#*                                Keilaranta 14, P.O. BOX 405
#*                                  02101 Espoo, Finland
#*                                  Tel. +358 0 457 2723
#*                                Telefax: +358 0 457 2302
#*                              EMail: [email protected]
#*
#*                       Date: 26 Sep 1995
#*
#*                Modified by:
#*
#*       Date of modification:
#*
#*******************************************************************************
#
# 
#

#
# 22 Apr 1996
#

proc group_edit { } {
    global Groups NumberOfGroups GroupStatus

    if { [winfo exists .groups] } {
        wm iconify .groups
        wm deiconify .groups
        return
    }

    toplevel .groups
    place_window ".groups"

    frame .groups.lframe
    text .groups.lframe.list -yscroll ".groups.lframe.scroll set"
    scrollbar .groups.lframe.scroll -command ".groups.lframe.list yview"
    pack .groups.lframe.scroll -side left -expand 1 -fill both
    pack .groups.lframe.list -side left -fill y
    pack .groups.lframe -side top -expand 1 -fill both


    do i 0 [@ $NumberOfGroups-1] {
       checkbutton .groups.lframe.g$i -variable GroupStatus($i) -text $Groups($i)\n
       .groups.lframe.list window create end -window .groups.lframe.g$i
#       pack .groups.lframe.g$i -side top -expand 1 -fill x
    }
    pack .groups.lframe
#
# buttons
#
    frame .groups.buttons

    button .groups.buttons.apply -text "Apply" -command { group; display }

    button .groups.buttons.ok -text "Ok" -command { group; display; destroy .groups; }

    button .groups.buttons.close -text "Cancel" -command { destroy .groups }

    pack .groups.buttons.apply -side left
    pack .groups.buttons.ok    -side left
    pack .groups.buttons.close -side left -fill x
    pack .groups.buttons       -side top
}