File: notebook.tcl

package info (click to toggle)
tkgate 2.1%2Brepack-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 28,384 kB
  • sloc: ansic: 62,300; tcl: 20,345; xml: 2,731; yacc: 1,177; lex: 839; sh: 664; makefile: 180; perl: 39
file content (58 lines) | stat: -rw-r--r-- 1,960 bytes parent folder | download | duplicates (5)
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
#   Copyright (C) 1987-2015 by Jeffery P. Hansen
#
#   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 the Free Software Foundation, Inc.,
#   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Last edit by hansen on Thu Jan  8 11:44:04 2009
#

#############################################################################
#
# This class manages a set of tabs that can be used to switch the frame that
# is displayed.  It is meant as a replacement for ttk::notebook when tkgate
# is run with earlier versions of tcl/tk.  It also replaced the TabBox class
# that was used in earlier versions of TkGate.
#
namespace eval NoteBook {
  proc settabstate {w tab state} {
    $w tab $w.t$tab -state $state
  }

  proc new {w args} {
    set tabs {}
    set tablabels {}
    set tabimages {}
    set command ""
    set startpage ""
    set compound none
    parseargs $args {-tabs -tablabels -tabimages -command -startpage -compound}

    ttk::notebook $w -takefocus 0

    set n [llength $tabs]
    for { set i 0 } { $i < $n } { incr i } {
      set tab_name [lindex $tabs $i]
      set tab_label [lindex $tablabels $i]
      set tab_image [lindex $tabimages $i]
      set tab_w $w.t$tab_name

      $command $tab_w $tab_name
      $w add $tab_w -text $tab_label -image $tab_image -compound $compound
    }

    if { $startpage != ""} {
      $w select $w.t$startpage
    }
  }
}