/opt/imh/python3.13/lib/tk8.6/ttk
NameSizeModeActions
altTheme.tcl36040644editdlrm
aquaTheme.tcl37190644editdlrm
button.tcl29310644editdlrm
clamTheme.tcl46620644editdlrm
classicTheme.tcl37490644editdlrm
combobox.tcl122700644editdlrm
cursors.tcl44690644editdlrm
defaults.tcl44100644editdlrm
entry.tcl173650644editdlrm
fonts.tcl54850644editdlrm
menubutton.tcl61750644editdlrm
notebook.tcl56620644editdlrm
panedwindow.tcl21830644editdlrm
progress.tcl10890644editdlrm
scale.tcl26930644editdlrm
scrollbar.tcl31590644editdlrm
sizegrip.tcl24010644editdlrm
spinbox.tcl48110644editdlrm
treeview.tcl97970644editdlrm
ttk.tcl48170644editdlrm
utils.tcl82870644editdlrm
vistaTheme.tcl94810644editdlrm
winTheme.tcl27810644editdlrm
xpTheme.tcl20360644editdlrm
Edit: /opt/imh/python3.13/lib/tk8.6/ttk/entry.tcl (17365B)
# # DERIVED FROM: tk/library/entry.tcl r1.22 # # Copyright (c) 1992-1994 The Regents of the University of California. # Copyright (c) 1994-1997 Sun Microsystems, Inc. # Copyright (c) 2004, Joe English # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # namespace eval ttk { namespace eval entry { variable State set State(x) 0 set State(selectMode) none set State(anchor) 0 set State(scanX) 0 set State(scanIndex) 0 set State(scanMoved) 0 # Button-2 scan speed is (scanNum/scanDen) characters # per pixel of mouse movement. # The standard Tk entry widget uses the equivalent of # scanNum = 10, scanDen = average character width. # I don't know why that was chosen. # set State(scanNum) 1 set State(scanDen) 1 set State(deadband) 3 ;# #pixels for mouse-moved deadband. } } ### Option database settings. # option add *TEntry.cursor [ttk::cursor text] widgetDefault ### Bindings. # # Removed the following standard Tk bindings: # # , , #