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

Subversion Repositories or1k_old

[/] [or1k_old/] [tags/] [start/] [insight/] [itcl/] [iwidgets3.0.0/] [demos/] [dialogshell] - Rev 579

Go to most recent revision | Compare with Previous | Blame | View Log

#!/bin/sh
# ----------------------------------------------------------------------
#  DEMO: dialogshell in [incr Widgets]
# ----------------------------------------------------------------------
#\
exec itkwish "$0" ${1+"$@"}
package require Iwidgets 3.0

# itkwish interprets the rest...
# ----------------------------------------------------------------------
iwidgets::radiobox .rb -labeltext "Use modality to\nlock up your\napplication:"
pack .rb -padx 4 -pady 4

.rb add none -text "none"
.rb add application -text "application"
.rb add global -text "global"
.rb select none

button .activate -text "Push Me" -command {
    .ds configure -modality [.rb get]
    .ds activate
}
pack .activate

#
# Build a generic dialog
#
iwidgets::dialogshell .ds

.ds add dismiss -text "Dismiss" -command {.ds deactivate}
.ds default dismiss
 
#
# Add something to the top of the dialog...
#
set win [.ds childsite]
label $win.ex -text "Minimal Dialog\n(put your widgets here)" \
    -background black -foreground white \
    -width 40 -height 5
pack $win.ex -expand yes -fill both -padx 4 -pady 4

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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