File: dialog1.tcl

package info (click to toggle)
sourcenav 5.0-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 73,848 kB
  • ctags: 54,442
  • sloc: ansic: 416,853; tcl: 106,388; sh: 22,483; cpp: 15,430; asm: 14,770; java: 9,042; makefile: 8,934; cobol: 5,377; yacc: 4,791; lex: 3,805; lisp: 536; exp: 434; perl: 422; sed: 318; awk: 282; cs: 200; csh: 141
file content (15 lines) | stat: -rw-r--r-- 729 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# dialog1.tcl --
#
# This demonstration script creates a dialog box with a local grab.
#
# RCS: @(#) $Id: dialog1.tcl,v 1.9 2000/09/26 10:50:45 spolk Exp $

after idle {.dialog1.msg configure -wraplength 4i}
set i [tk_dialog .dialog1 "Dialog with local grab" {This is a modal dialog box.  It uses Tk's "grab" command to create a "local grab" on the dialog box.  The grab prevents any pointer-related events from getting to any other windows in the application until you have answered the dialog by invoking one of the buttons below.  However, you can still interact with other applications.} \
info 0 OK Cancel {Show Code}]

switch $i {
    0 {puts "You pressed OK"}
    1 {puts "You pressed Cancel"}
    2 {showCode .dialog1}
}