summaryrefslogtreecommitdiff
path: root/ports.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'ports.tcl')
-rw-r--r--ports.tcl73
1 files changed, 47 insertions, 26 deletions
diff --git a/ports.tcl b/ports.tcl
index 6e704a5..11a8a82 100644
--- a/ports.tcl
+++ b/ports.tcl
@@ -1,17 +1,33 @@
+#
+# This file is part of tk707.
+#
+# Copyright (C) 2000, 2001, 2002, 2003, 2004 Chris Willing and Pierre Saramito
+#
+# tk707 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.
+#
+# Foobar 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 Foobar; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+# -----------------------------------------------------------------------------
# File ports.tcl
# GUI for selection of ALSA port.
+# -----------------------------------------------------------------------------
proc port_setup {} {
global tcl_rcFileName
global ports
global iolists
global font12
-
- if {[catch {tk7_port_list 1} oportlist] ||
- [catch {tk7_port_list 0} iportlist]} {
- puts "NO PORTS FOUND"
- exit
- }
+ global normal_r_14
set ports .setup
toplevel $ports
@@ -27,7 +43,7 @@ proc port_setup {} {
pack $howtotext
pack $howto
- $howtotext create text 0.2c 0.2c -anchor nw -font *-${font12}-* -text \
+ $howtotext create text 0.2c 0.2c -anchor nw -font *-${normal_r_14}-* -text \
"Double click on one of Output Ports to make it the Selected Output.\n
The SAVE button will save the setting in ~/.tk707rc so that this
selection dialogue won't appear next time TK-707 is started.\n
@@ -47,43 +63,48 @@ TK-707 is running (yet)."
set ilist $iolists.il
set oselect $iolists.op
set iselect $iolists.ip
- listbox $olist -font *-${font12}-* -width 28 -height 6 -selectmode browse -exportselection 1
- listbox $ilist -font *-${font12}-* -width 28 -height 6 -selectmode browse -exportselection 1
+
+ scrollbar $iolists.os -command "$olist yview"
+ scrollbar $iolists.is -command "$ilist yview"
+ listbox $olist -font *-${normal_r_14}-* -width 26 -height 10 -selectmode browse -exportselection 1 -yscroll "$iolists.os set"
+ listbox $ilist -font *-${normal_r_14}-* -width 26 -height 10 -selectmode browse -exportselection 1 -yscroll "$iolists.is set"
+
label $oselect -width 28 -height 1 -relief sunken -borderwidth 2
label $iselect -width 28 -height 1 -relief sunken -borderwidth 2
- $iolists create text 2c 0.5c -font *-${font12}-* -text "Input Ports" -anchor nw
- $iolists create text 9c 0.5c -font *-${font12}-* -text "Output Ports" -anchor nw
- $iolists create window 0.15c 1.5c -window $ilist -anchor nw
- $iolists create window 7c 1.5c -window $olist -anchor nw
+
+ $iolists create text 2c 0.5c -font *-${normal_r_14}-* -text "Input Ports" -anchor nw
+ $iolists create text 9c 0.5c -font *-${normal_r_14}-* -text "Output Ports" -anchor nw
+ $iolists create window 0c 1.5c -height 4c -window $iolists.is -anchor nw
+ $iolists create window 0.5c 1.5c -height 4c -window $ilist -anchor nw
+ $iolists create window 7c 1.5c -height 4c -window $iolists.os -anchor nw
+ $iolists create window 7.5c 1.5c -height 4c -window $olist -anchor nw
$iolists create window 0.2c 6c -window $iselect -anchor nw
$iolists create window 7.05c 6c -window $oselect -anchor nw
- $iolists create text 2c 7c -font *-${font12}-* -text "Selected Input" -anchor nw
- $iolists create text 9c 7c -font *-${font12}-* -text "Selected Output" -anchor nw
+ $iolists create text 2c 7c -font *-${normal_r_14}-* -text "Selected Input" -anchor nw
+ $iolists create text 9c 7c -font *-${normal_r_14}-* -text "Selected Output" -anchor nw
# Get list of output ports
+ set oportlist [tk7_port_list 1]
foreach i $oportlist {
- if {[regexp -nocase "MIDI" $i]} {
- $olist insert end $i
- }
+ $olist insert end $i
}
# Get list of input ports
+ set iportlist [tk7_port_list 0]
foreach i $iportlist {
- if {[regexp -nocase "midi" $i]} {
- $ilist insert end $i
- }
+ $ilist insert end $i
}
bind .setup.l.il <Double-1> {
- $iolists.ip configure -font *-${font12}-* -text [selection get]
+ $iolists.ip configure -font *-${normal_r_14}-* -text [selection get]
}
bind $olist <Double-1> {
- $iolists.op configure -font *-${font12}-* -text [selection get]
+ $iolists.op configure -font *-${normal_r_14}-* -text [selection get]
}
set portacts $ports.pa
canvas $portacts -width 14c -height 1.5c
pack $portacts
- button $portacts.c -font *-${font12}-* -text CANCEL -width 6 -command {
+ button $portacts.c -font *-${normal_r_14}-* -text CANCEL -width 6 -command {
if {! [tk7_port_setcheck]} {
puts "NO PORTS SET"
destroy .
@@ -92,7 +113,7 @@ TK-707 is running (yet)."
destroy $ports
}
}
- button $portacts.s -font *-${font12}-* -text SAVE -width 6 -command {
+ button $portacts.s -font *-${normal_r_14}-* -text SAVE -width 6 -command {
set oplist [.setup.l.op configure -text]
# puts "XX${oplist}XX"
if {[llength $oplist] != 5} {
@@ -112,7 +133,7 @@ TK-707 is running (yet)."
}
}
}
- button $portacts.b -font *-${font12}-* -text OK -width 6 -command {
+ button $portacts.b -font *-${normal_r_14}-* -text OK -width 6 -command {
set oplist [.setup.l.op configure -text]
if {[llength $oplist] != 5} {
puts nothing