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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is the Floater Bridge Network.
*
* The Initial Developer of the Original Code is
* Geoff Pike <pike@EECS.Berkeley.EDU>.
* Portions created by the Initial Developer are Copyright (C) 1996-2003
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Lex Spoon <lex@cc.gatech.edu>
*
* Alternatively, the contents of this file may be used under the
* terms of either the GNU General Public License Version 2 or later
* (the "GPL"), in which case the provisions of the GPL are applicable
* instead of those above. If you wish to allow use of your version of
* this file only under the terms of the GPL, and not to allow others
* to use your version of this file under the terms of the MPL,
* indicate your decision by deleting the provisions above and replace
* them with the notice and other provisions required by the GPL. If
* you do not delete the provisions above, a recipient may use your
* version of this file under the terms of either the MPL or the GPL.
* ***** END LICENSE BLOCK ***** */
/* options_GUI.tcp - manages options specific to the Tk GUI
*
* $Id: options_GUI.tcp,v 1.5 2004/09/25 13:48:58 lexspoon Exp $
*/
/////////////////////////////////////////////////////////////////////////////
// Separation of the talk window
/////////////////////////////////////////////////////////////////////////////
set separateTalk_ [set talk_is_sep 0]
proc separateTalk {{toggle 0}} {
global talk_is_sep separateTalk_
// catch {talkmsg "separateTalk $toggle with talk_is_sep=$talk_is_sep separateTalk_=$separateTalk_"}
if $toggle {set separateTalk_ [expr !$separateTalk_]}
if {$talk_is_sep == $separateTalk_} return
set talk_is_sep $separateTalk_
gui_separateTalk $talk_is_sep
}
// if {$effectiveheight < 500} {after 1000 separateTalk 1}
/////////////////////////////////////////////////////////////////////////////
set hideMatrix_ [set matrix_hidden_during_auction 0]
proc hideMatrixDuringAuction {bool} {
global hideMatrix_ matrix_hidden_during_auction needAuctionUpdate
// catch {talkmsg "hideMatrix $toggle with matrix_hidden_during_auction=$matrix_hidden_during_auction hideMatrix_=$hideMatrix_"}
set hideMatrix_ $bool
if {$hideMatrix_ == $matrix_hidden_during_auction} return
set matrix_hidden_during_auction $hideMatrix_
set needAuctionUpdate 1
}
/////////////////////////////////////////////////////////////////////////////
gset entryLinesShown_ "talk" // can be talk, command, or both
proc showEntryLines {linesToShow} {
global entryLinesShown_ toplevel
set entryLinesShown_ $linesToShow
set cmd $toplevel.cmd
if [string equal $entryLinesShown_ talk] {
set show_talk 1
set show_cmd 0
}
if [string equal $entryLinesShown_ command] {
set show_talk 0
set show_cmd 1
}
if [string equal $entryLinesShown_ both] {
set show_talk 1
set show_cmd 1
}
if {! [info exists show_talk]} {
talkmsg {argument should be "talk", "command", or "both"}
return
}
pack forget $cmd.f.labelc $cmd.f.labelt
pack forget $cmd.talk $cmd.cmdline
if $show_cmd {
pack $cmd.f.labelc -anchor e
pack $cmd.cmdline -fill x
}
if $show_talk {
pack $cmd.f.labelt -anchor e
pack $cmd.talk -fill x
}
focus_cmdline
}
set hideCommandLine_ 0
proc hideCommandLine {{toggle 0}} {
global hideCommandLine_
if $toggle {set hideCommandLine_ [expr !$hideCommandLine_]}
if $hideCommandLine_ {
pack forget .cmd.cmdline
pack forget .cmd.f.labelc
} else {
pack .cmd.cmdline -before .cmd.talk -fill x -side top -expand yes
pack .cmd.f.labelc -before .cmd.f.labelt -side top -anchor e
}
}
/////////////////////////////////////////////////////////////////////////////
// Deiconification
/////////////////////////////////////////////////////////////////////////////
set deiconifyIfBeeped_ 1
proc deiconifyIfBeeped {{toggle 0}} {
global deiconifyIfBeeped_
// catch {talkmsg "deiconifyIfBeeped $toggle with deiconifyIfBeeped_=$deiconifyIfBeeped_"}
if $toggle {set deiconifyIfBeeped_ [expr !$deiconifyIfBeeped_]}
}
proc Floater_deiconify {} {
global deiconifyIfBeeped_
catch {
if {$deiconifyIfBeeped_ && [wm state .] == "iconic"} {wm deiconify .}
}
}
/////////////////////////////////////////////////////////////////////////////
// Auction Hide Time (< 0 means after first trick, N >= 0 means N seconds
// after final pass)
/////////////////////////////////////////////////////////////////////////////
if {$effectiveheight > 770} {
set auction_hide_time -1
} else {
set auction_hide_time 10
}
/////////////////////////////////////////////////////////////////////////////
// Overall GUI style: compact or non-compact
/////////////////////////////////////////////////////////////////////////////
global gui_compact_
set gui_compact_ 1
|