OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [insight/] [tk/] [library/] [demos/] [dialog2.tcl] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 578 markom
# dialog2.tcl --
2
#
3
# This demonstration script creates a dialog box with a global grab.
4
#
5
# SCCS: @(#) dialog2.tcl 1.2 96/02/16 10:49:53
6
 
7
after idle {
8
    .dialog2.msg configure -wraplength 4i
9
}
10
after 100 {
11
    grab -global .dialog2
12
}
13
set i [tk_dialog .dialog2 "Dialog with local grab" {This dialog box uses a global grab, so it prevents you from interacting with anything on your display until you invoke one of the buttons below.  Global grabs are almost always a bad idea; don't use them unless you're truly desperate.} warning 0 OK Cancel {Show Code}]
14
 
15
switch $i {
16
 
17
    1 {puts "You pressed Cancel"}
18
    2 {showCode .dialog2}
19
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.