CustomTkinter icon indicating copy to clipboard operation
CustomTkinter copied to clipboard

Implemented CtkSpinBox

Open FedericoSpada opened this issue 1 year ago • 1 comments

Implemented the true CtkSpinBox by copying CtkComboBox and performing the needed changes.

image

I didn't dare to touch DrawEngine.draw_rounded_rect_with_border_vertical_split(), so for now there is just one button and I discern the "up" or "down" section by looking at the relative mouse position within the canvas. This has the side effect that when you hover on it with the mouse, both "buttons" are highlighted simultaneously, but it's not that ugly.

Parameters from_ and to impose limits to the number that can be displayed, while by providing the value parameter, you can pick elements from any List. Thanks to step_button and step_scroll parameters you can choose how much the value (or List index) is changed if you click a button or scroll the mouse wheel respectively. default_value is self-explanatory but it is effective only if a tkinter.Variable is not provided. Finally, the format parameter is used to invoke the format() method on it to display other text that is not part of the value (for example, measurement units).

FedericoSpada avatar Feb 18 '24 21:02 FedericoSpada

That's awesome! We will almost replace Tkinter framework. Great job!

Anonymous6598 avatar Feb 25 '24 14:02 Anonymous6598