Python tkinter.DoubleVar() Examples
The following are 30
code examples of tkinter.DoubleVar().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
tkinter
, or try the search function
.
Example #1
Source File: keyboard_gui.py From synthesizer with GNU Lesser General Public License v3.0 | 7 votes |
def __init__(self, master, gui): super().__init__(master, text="output: Tremolo") self.gui = gui self.input_waveform = tk.StringVar() self.input_waveform.set("<off>") self.input_rate = tk.DoubleVar() self.input_depth = tk.DoubleVar() self.input_rate.set(5) self.input_depth.set(80) row = 0 tk.Label(self, text="waveform").grid(row=row, column=0) values = ["<off>", "sine", "triangle", "sawtooth", "square"] menu = tk.OptionMenu(self, self.input_waveform, *values) menu["width"] = 10 menu.grid(row=row, column=1) row += 1 tk.Label(self, text="rate").grid(row=row, column=0, sticky=tk.E) tk.Scale(self, orient=tk.HORIZONTAL, variable=self.input_rate, from_=0.0, to=10.0, resolution=.1, width=10, length=100).grid(row=row, column=1) row += 1 tk.Label(self, text="depth").grid(row=row, column=0, sticky=tk.E) tk.Scale(self, orient=tk.HORIZONTAL, variable=self.input_depth, from_=0.0, to=1.0, resolution=.02, width=10, length=100).grid(row=row, column=1)
Example #2
Source File: application.py From Python-GUI-Programming-with-Tkinter with MIT License | 7 votes |
def load_settings(self): """Load settings into our self.settings dict.""" vartypes = { 'bool': tk.BooleanVar, 'str': tk.StringVar, 'int': tk.IntVar, 'float': tk.DoubleVar } # create our dict of settings variables from the model's settings. self.settings = {} for key, data in self.settings_model.variables.items(): vartype = vartypes.get(data['type'], tk.StringVar) self.settings[key] = vartype(value=data['value']) # put a trace on the variables so they get stored when changed. for var in self.settings.values(): var.trace('w', self.save_settings)
Example #3
Source File: application.py From Python-GUI-Programming-with-Tkinter with MIT License | 6 votes |
def load_settings(self): """Load settings into our self.settings dict.""" vartypes = { 'bool': tk.BooleanVar, 'str': tk.StringVar, 'int': tk.IntVar, 'float': tk.DoubleVar } # create our dict of settings variables from the model's settings. self.settings = {} for key, data in self.settings_model.variables.items(): vartype = vartypes.get(data['type'], tk.StringVar) self.settings[key] = vartype(value=data['value']) # put a trace on the variables so they get stored when changed. for var in self.settings.values(): var.trace('w', self.save_settings)
Example #4
Source File: widgets.py From Python-GUI-Programming-with-Tkinter with MIT License | 6 votes |
def __init__(self, *args, min_var=None, max_var=None, focus_update_var=None, from_='-Infinity', to='Infinity', **kwargs): super().__init__(*args, from_=from_, to=to, **kwargs) self.resolution = Decimal(str(kwargs.get('increment', '1.0'))) self.precision = self.resolution.normalize().as_tuple().exponent # there should always be a variable, # or some of our code will fail self.variable = kwargs.get('textvariable') or tk.DoubleVar() if min_var: self.min_var = min_var self.min_var.trace('w', self._set_minimum) if max_var: self.max_var = max_var self.max_var.trace('w', self._set_maximum) self.focus_update_var = focus_update_var self.bind('<FocusOut>', self._set_focus_update_var)
Example #5
Source File: data_entry_app.py From Python-GUI-Programming-with-Tkinter with MIT License | 6 votes |
def __init__(self, *args, min_var=None, max_var=None, focus_update_var=None, from_='-Infinity', to='Infinity', **kwargs): super().__init__(*args, from_=from_, to=to, **kwargs) self.resolution = Decimal(str(kwargs.get('increment', '1.0'))) self.precision = self.resolution.normalize().as_tuple().exponent # there should always be a variable, # or some of our code will fail self.variable = kwargs.get('textvariable') or tk.DoubleVar() if min_var: self.min_var = min_var self.min_var.trace('w', self._set_minimum) if max_var: self.max_var = max_var self.max_var.trace('w', self._set_maximum) self.focus_update_var = focus_update_var self.bind('<FocusOut>', self._set_focus_update_var)
Example #6
Source File: widgets.py From Python-GUI-Programming-with-Tkinter with MIT License | 6 votes |
def __init__(self, *args, min_var=None, max_var=None, focus_update_var=None, from_='-Infinity', to='Infinity', **kwargs): super().__init__(*args, from_=from_, to=to, **kwargs) self.resolution = Decimal(str(kwargs.get('increment', '1.0'))) self.precision = self.resolution.normalize().as_tuple().exponent # there should always be a variable, # or some of our code will fail self.variable = kwargs.get('textvariable') or tk.DoubleVar() if min_var: self.min_var = min_var self.min_var.trace('w', self._set_minimum) if max_var: self.max_var = max_var self.max_var.trace('w', self._set_maximum) self.focus_update_var = focus_update_var self.bind('<FocusOut>', self._set_focus_update_var)
Example #7
Source File: application.py From Python-GUI-Programming-with-Tkinter with MIT License | 6 votes |
def load_settings(self): """Load settings into our self.settings dict.""" vartypes = { 'bool': tk.BooleanVar, 'str': tk.StringVar, 'int': tk.IntVar, 'float': tk.DoubleVar } # create our dict of settings variables from the model's settings. self.settings = {} for key, data in self.settings_model.variables.items(): vartype = vartypes.get(data['type'], tk.StringVar) self.settings[key] = vartype(value=data['value']) # put a trace on the variables so they get stored when changed. for var in self.settings.values(): var.trace('w', self.save_settings)
Example #8
Source File: application.py From Python-GUI-Programming-with-Tkinter with MIT License | 6 votes |
def load_settings(self): """Load settings into our self.settings dict.""" vartypes = { 'bool': tk.BooleanVar, 'str': tk.StringVar, 'int': tk.IntVar, 'float': tk.DoubleVar } # create our dict of settings variables from the model's settings. self.settings = {} for key, data in self.settings_model.variables.items(): vartype = vartypes.get(data['type'], tk.StringVar) self.settings[key] = vartype(value=data['value']) # put a trace on the variables so they get stored when changed. for var in self.settings.values(): var.trace('w', self.save_settings)
Example #9
Source File: widgets.py From Python-GUI-Programming-with-Tkinter with MIT License | 6 votes |
def __init__(self, *args, min_var=None, max_var=None, focus_update_var=None, from_='-Infinity', to='Infinity', **kwargs): super().__init__(*args, from_=from_, to=to, **kwargs) self.resolution = Decimal(str(kwargs.get('increment', '1.0'))) self.precision = self.resolution.normalize().as_tuple().exponent # there should always be a variable, # or some of our code will fail self.variable = kwargs.get('textvariable') or tk.DoubleVar() if min_var: self.min_var = min_var self.min_var.trace('w', self._set_minimum) if max_var: self.max_var = max_var self.max_var.trace('w', self._set_maximum) self.focus_update_var = focus_update_var self.bind('<FocusOut>', self._set_focus_update_var)
Example #10
Source File: widgets.py From Python-GUI-Programming-with-Tkinter with MIT License | 6 votes |
def __init__(self, *args, min_var=None, max_var=None, focus_update_var=None, from_='-Infinity', to='Infinity', **kwargs): super().__init__(*args, from_=from_, to=to, **kwargs) self.resolution = Decimal(str(kwargs.get('increment', '1.0'))) self.precision = self.resolution.normalize().as_tuple().exponent # there should always be a variable, # or some of our code will fail self.variable = kwargs.get('textvariable') or tk.DoubleVar() if min_var: self.min_var = min_var self.min_var.trace('w', self._set_minimum) if max_var: self.max_var = max_var self.max_var.trace('w', self._set_maximum) self.focus_update_var = focus_update_var self.bind('<FocusOut>', self._set_focus_update_var)
Example #11
Source File: display_page.py From faceswap with GNU General Public License v3.0 | 6 votes |
def set_vars(): """ Analysis specific vars """ enabled = tk.BooleanVar() enabled.set(True) ready = tk.BooleanVar() ready.set(False) modified = tk.DoubleVar() modified.set(None) tk_vars = {"enabled": enabled, "ready": ready, "modified": modified} logger.debug(tk_vars) return tk_vars # INFO LABEL
Example #12
Source File: application.py From Python-GUI-Programming-with-Tkinter with MIT License | 6 votes |
def load_settings(self): """Load settings into our self.settings dict.""" vartypes = { 'bool': tk.BooleanVar, 'str': tk.StringVar, 'int': tk.IntVar, 'float': tk.DoubleVar } # create our dict of settings variables from the model's settings. self.settings = {} for key, data in self.settings_model.variables.items(): vartype = vartypes.get(data['type'], tk.StringVar) self.settings[key] = vartype(value=data['value']) # put a trace on the variables so they get stored when changed. for var in self.settings.values(): var.trace('w', self.save_settings)
Example #13
Source File: widgets.py From Python-GUI-Programming-with-Tkinter with MIT License | 6 votes |
def __init__(self, *args, min_var=None, max_var=None, focus_update_var=None, from_='-Infinity', to='Infinity', **kwargs): super().__init__(*args, from_=from_, to=to, **kwargs) self.resolution = Decimal(str(kwargs.get('increment', '1.0'))) self.precision = self.resolution.normalize().as_tuple().exponent # there should always be a variable, # or some of our code will fail self.variable = kwargs.get('textvariable') or tk.DoubleVar() if min_var: self.min_var = min_var self.min_var.trace('w', self._set_minimum) if max_var: self.max_var = max_var self.max_var.trace('w', self._set_maximum) self.focus_update_var = focus_update_var self.bind('<FocusOut>', self._set_focus_update_var)
Example #14
Source File: application.py From Python-GUI-Programming-with-Tkinter with MIT License | 6 votes |
def load_settings(self): """Load settings into our self.settings dict.""" vartypes = { 'bool': tk.BooleanVar, 'str': tk.StringVar, 'int': tk.IntVar, 'float': tk.DoubleVar } # create our dict of settings variables from the model's settings. self.settings = {} for key, data in self.settings_model.variables.items(): vartype = vartypes.get(data['type'], tk.StringVar) self.settings[key] = vartype(value=data['value']) # put a trace on the variables so they get stored when changed. for var in self.settings.values(): var.trace('w', self.save_settings)
Example #15
Source File: control_helper.py From faceswap with GNU General Public License v3.0 | 6 votes |
def get(self): """ Return the value from the tk_var Notes ----- tk variables don't like empty values if it's not a stringVar. This seems to be pretty much the only reason that a get() call would fail, so replace any numerical variable with it's numerical zero equivalent on a TCL Error. Only impacts variables linked to Entry widgets. """ try: val = self.tk_var.get() except TclError: if isinstance(self.tk_var, tk.IntVar): val = 0 elif isinstance(self.tk_var, tk.DoubleVar): val = 0.0 else: raise return val
Example #16
Source File: application.py From Python-GUI-Programming-with-Tkinter with MIT License | 6 votes |
def load_settings(self): """Load settings into our self.settings dict.""" vartypes = { 'bool': tk.BooleanVar, 'str': tk.StringVar, 'int': tk.IntVar, 'float': tk.DoubleVar } # create our dict of settings variables from the model's settings. self.settings = {} for key, data in self.settings_model.variables.items(): vartype = vartypes.get(data['type'], tk.StringVar) self.settings[key] = vartype(value=data['value']) # put a trace on the variables so they get stored when changed. for var in self.settings.values(): var.trace('w', self.save_settings)
Example #17
Source File: control_helper.py From faceswap with GNU General Public License v3.0 | 6 votes |
def get_tk_var(self, track_modified): """ Correct variable type for control """ if self.dtype == bool: var = tk.BooleanVar() elif self.dtype == int: var = tk.IntVar() elif self.dtype == float: var = tk.DoubleVar() else: var = tk.StringVar() logger.debug("Setting tk variable: (name: '%s', dtype: %s, tk_var: %s)", self.name, self.dtype, var) if track_modified and self._command is not None: logger.debug("Tracking variable modification: %s", self.name) var.trace("w", lambda name, index, mode, cmd=self._command: self._modified_callback(cmd)) if track_modified and self._command in ("train", "convert") and self.title == "Model Dir": var.trace("w", lambda name, index, mode, v=var: self._model_callback(v)) return var
Example #18
Source File: widgets.py From Python-GUI-Programming-with-Tkinter with MIT License | 6 votes |
def __init__(self, *args, min_var=None, max_var=None, focus_update_var=None, from_='-Infinity', to='Infinity', **kwargs): super().__init__(*args, from_=from_, to=to, **kwargs) self.resolution = Decimal(str(kwargs.get('increment', '1.0'))) self.precision = self.resolution.normalize().as_tuple().exponent # there should always be a variable, # or some of our code will fail self.variable = kwargs.get('textvariable') or tk.DoubleVar() if min_var: self.min_var = min_var self.min_var.trace('w', self._set_minimum) if max_var: self.max_var = max_var self.max_var.trace('w', self._set_maximum) self.focus_update_var = focus_update_var self.bind('<FocusOut>', self._set_focus_update_var)
Example #19
Source File: data_logger.py From frc-characterization with Apache License 2.0 | 6 votes |
def __init__(self, STATE): self.STATE = STATE self.STATE.trw_completed = StringVar(self.STATE.mainGUI) self.STATE.trw_completed.set("Not run") self.STATE.rotation_voltage = DoubleVar(self.STATE.mainGUI) self.STATE.rotation_voltage.set(2) self.STATE.angular_mode = BooleanVar(self.STATE.mainGUI) self.STATE.angular_mode.set(False) self.stored_data = {} self.queue = queue.Queue() self.mode = "disabled" self.data = [] self.lock = threading.Condition() # Tells the listener to not store data self.discard_data = True # Last telemetry data received from the robot self.last_data = (0,) * 20
Example #20
Source File: application.py From Python-GUI-Programming-with-Tkinter with MIT License | 6 votes |
def load_settings(self): """Load settings into our self.settings dict.""" vartypes = { 'bool': tk.BooleanVar, 'str': tk.StringVar, 'int': tk.IntVar, 'float': tk.DoubleVar } # create our dict of settings variables from the model's settings. self.settings = {} for key, data in self.settings_model.variables.items(): vartype = vartypes.get(data['type'], tk.StringVar) self.settings[key] = vartype(value=data['value']) # put a trace on the variables so they get stored when changed. for var in self.settings.values(): var.trace('w', self.save_settings)
Example #21
Source File: application.py From Python-GUI-Programming-with-Tkinter with MIT License | 6 votes |
def load_settings(self): """Load settings into our self.settings dict.""" vartypes = { 'bool': tk.BooleanVar, 'str': tk.StringVar, 'int': tk.IntVar, 'float': tk.DoubleVar } # create our dict of settings variables from the model's settings. self.settings = {} for key, data in self.settings_model.variables.items(): vartype = vartypes.get(data['type'], tk.StringVar) self.settings[key] = vartype(value=data['value']) # put a trace on the variables so they get stored when changed. for var in self.settings.values(): var.trace('w', self.save_settings)
Example #22
Source File: widgets.py From Python-GUI-Programming-with-Tkinter with MIT License | 6 votes |
def __init__(self, *args, min_var=None, max_var=None, focus_update_var=None, from_='-Infinity', to='Infinity', **kwargs): super().__init__(*args, from_=from_, to=to, **kwargs) self.resolution = Decimal(str(kwargs.get('increment', '1.0'))) self.precision = self.resolution.normalize().as_tuple().exponent # there should always be a variable, # or some of our code will fail self.variable = kwargs.get('textvariable') or tk.DoubleVar() if min_var: self.min_var = min_var self.min_var.trace('w', self._set_minimum) if max_var: self.max_var = max_var self.max_var.trace('w', self._set_maximum) self.focus_update_var = focus_update_var self.bind('<FocusOut>', self._set_focus_update_var)
Example #23
Source File: data_logger.py From frc-characterization with Apache License 2.0 | 6 votes |
def __init__(self, STATE): self.STATE = STATE self.STATE.trw_completed = StringVar(self.STATE.mainGUI) self.STATE.trw_completed.set("Not run") self.STATE.rotation_voltage = DoubleVar(self.STATE.mainGUI) self.STATE.rotation_voltage.set(2) self.STATE.angular_mode = BooleanVar(self.STATE.mainGUI) self.STATE.angular_mode.set(False) self.stored_data = {} self.queue = queue.Queue() self.mode = "disabled" self.data = [] self.lock = threading.Condition() # Tells the listener to not store data self.discard_data = True # Last telemetry data received from the robot self.last_data = (0,) * 20
Example #24
Source File: application.py From Python-GUI-Programming-with-Tkinter with MIT License | 6 votes |
def load_settings(self): """Load settings into our self.settings dict.""" vartypes = { 'bool': tk.BooleanVar, 'str': tk.StringVar, 'int': tk.IntVar, 'float': tk.DoubleVar } # create our dict of settings variables from the model's settings. self.settings = {} for key, data in self.settings_model.variables.items(): vartype = vartypes.get(data['type'], tk.StringVar) self.settings[key] = vartype(value=data['value']) # put a trace on the variables so they get stored when changed. for var in self.settings.values(): var.trace('w', self.save_settings)
Example #25
Source File: box.py From synthesizer with GNU Lesser General Public License v3.0 | 5 votes |
def __init__(self, master, title): self.title = title super().__init__(master, text=title, padding=4) self.player = None # will be connected later self.volumeVar = tk.DoubleVar(value=100) self.volumefilter = VolumeFilter() ttk.Label(self, text="title / artist / album").pack() self.titleLabel = ttk.Label(self, relief=tk.GROOVE, width=22, anchor=tk.W) self.titleLabel.pack() self.artistLabel = ttk.Label(self, relief=tk.GROOVE, width=22, anchor=tk.W) self.artistLabel.pack() self.albumlabel = ttk.Label(self, relief=tk.GROOVE, width=22, anchor=tk.W) self.albumlabel.pack() f = ttk.Frame(self) ttk.Label(f, text="time left: ").pack(side=tk.LEFT) self.timeleftLabel = ttk.Label(f, relief=tk.GROOVE, anchor=tk.CENTER) self.timeleftLabel.pack(side=tk.RIGHT, fill=tk.X, expand=True) f.pack(fill=tk.X) f = ttk.Frame(self) ttk.Label(f, text="V: ").pack(side=tk.LEFT) scale = ttk.Scale(f, from_=0, to=150, length=120, variable=self.volumeVar, command=self.on_volumechange) scale.bind("<Double-1>", self.on_dblclick_vol) scale.pack(side=tk.LEFT) self.volumeLabel = ttk.Label(f, text="???%") self.volumeLabel.pack(side=tk.RIGHT) f.pack(fill=tk.X) ttk.Button(self, text="Skip", command=lambda s=self: s.player.skip(s)).pack(pady=4) self.volume = 100 self.stateLabel = tk.Label(self, text="STATE", relief=tk.SUNKEN, border=1) self.stateLabel.pack() self._track = None self._time = None self._stream = None self._state = self.state_needtrack self.state = self.state_needtrack self.xfade_state = self.state_xfade_nofade self.xfade_started = None self.xfade_start_volume = None self.playback_started = None self.track_duration = None
Example #26
Source File: test_extensions.py From ironpython3 with Apache License 2.0 | 5 votes |
def test_widget_destroy(self): # automatically created variable x = ttk.LabeledScale(self.root) var = x._variable._name x.destroy() self.assertRaises(tkinter.TclError, x.tk.globalgetvar, var) # manually created variable myvar = tkinter.DoubleVar(self.root) name = myvar._name x = ttk.LabeledScale(self.root, variable=myvar) x.destroy() if self.wantobjects: self.assertEqual(x.tk.globalgetvar(name), myvar.get()) else: self.assertEqual(float(x.tk.globalgetvar(name)), myvar.get()) del myvar self.assertRaises(tkinter.TclError, x.tk.globalgetvar, name) # checking that the tracing callback is properly removed myvar = tkinter.IntVar(self.root) # LabeledScale will start tracing myvar x = ttk.LabeledScale(self.root, variable=myvar) x.destroy() # Unless the tracing callback was removed, creating a new # LabeledScale with the same var will cause an error now. This # happens because the variable will be set to (possibly) a new # value which causes the tracing callback to be called and then # it tries calling instance attributes not yet defined. ttk.LabeledScale(self.root, variable=myvar) if hasattr(sys, 'last_type'): self.assertNotEqual(sys.last_type, tkinter.TclError)
Example #27
Source File: keyboard_gui.py From synthesizer with GNU Lesser General Public License v3.0 | 5 votes |
def __init__(self, master, gui): super().__init__(master, text="keys: Chords / Arpeggio") self.gui = gui self.input_mode = tk.StringVar() self.input_mode.set("off") self.input_rate = tk.DoubleVar() # duration of note triggers self.input_rate.set(0.2) self.input_ratio = tk.IntVar() # how many % the note is on vs off self.input_ratio.set(100) row = 0 tk.Label(self, text="Major Chords Arp").grid(row=row, column=0, columnspan=2) row += 1 tk.Radiobutton(self, variable=self.input_mode, value="off", text="off", pady=0, command=self.mode_off_selected, fg=self.cget('fg'), selectcolor=self.cget('bg')).grid(row=row, column=1, sticky=tk.W) row += 1 tk.Radiobutton(self, variable=self.input_mode, value="chords3", text="Chords Maj. 3", pady=0, fg=self.cget('fg'), selectcolor=self.cget('bg')).grid(row=row, column=1, sticky=tk.W) row += 1 tk.Radiobutton(self, variable=self.input_mode, value="chords4", text="Chords Maj. 7th", pady=0, fg=self.cget('fg'), selectcolor=self.cget('bg')).grid(row=row, column=1, sticky=tk.W) row += 1 tk.Radiobutton(self, variable=self.input_mode, value="arpeggio3", text="Arpeggio 3", pady=0, fg=self.cget('fg'), selectcolor=self.cget('bg')).grid(row=row, column=1, sticky=tk.W) row += 1 tk.Radiobutton(self, variable=self.input_mode, value="arpeggio4", text="Arpeggio 7th", pady=0, fg=self.cget('fg'), selectcolor=self.cget('bg')).grid(row=row, column=1, sticky=tk.W) row += 1 tk.Label(self, text="rate").grid(row=row, column=0, sticky=tk.E) tk.Scale(self, orient=tk.HORIZONTAL, variable=self.input_rate, from_=0.02, to=.5, resolution=.01, width=10, length=100).grid(row=row, column=1) row += 1 tk.Label(self, text="ratio").grid(row=row, column=0, sticky=tk.E) tk.Scale(self, orient=tk.HORIZONTAL, variable=self.input_ratio, from_=1, to=100, resolution=1, width=10, length=100).grid(row=row, column=1)
Example #28
Source File: test_widgets.py From ironpython3 with Apache License 2.0 | 5 votes |
def test_listvariable(self): widget = self.create() var = tkinter.DoubleVar(self.root) self.checkVariableParam(widget, 'listvariable', var)
Example #29
Source File: test_widgets.py From ironpython3 with Apache License 2.0 | 5 votes |
def test_set(self): if self.wantobjects: conv = lambda x: x else: conv = float # set restricts the max/min values according to the current range max = conv(self.scale['to']) new_max = max + 10 self.scale.set(new_max) self.assertEqual(conv(self.scale.get()), max) min = conv(self.scale['from']) self.scale.set(min - 1) self.assertEqual(conv(self.scale.get()), min) # changing directly the variable doesn't impose this limitation tho var = tkinter.DoubleVar(self.root) self.scale['variable'] = var var.set(max + 5) self.assertEqual(conv(self.scale.get()), var.get()) self.assertEqual(conv(self.scale.get()), max + 5) del var # the same happens with the value option self.scale['value'] = max + 10 self.assertEqual(conv(self.scale.get()), max + 10) self.assertEqual(conv(self.scale.get()), conv(self.scale['value'])) # nevertheless, note that the max/min values we can get specifying # x, y coords are the ones according to the current range self.assertEqual(conv(self.scale.get(0, 0)), min) self.assertEqual(conv(self.scale.get(self.scale.winfo_width(), 0)), max) self.assertRaises(tkinter.TclError, self.scale.set, None)
Example #30
Source File: widget_tests.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def test_variable(self): widget = self.create() var = tkinter.DoubleVar(self.root) self.checkVariableParam(widget, 'variable', var)