antrrax
antrrax
> The tooltip function of ttkbootstrap is very good, but I found some areas that can be improved. Reference link: https://pypi.org/project/tkinter-tooltip/ ttkbootsrap has a tracking tooltip,but what about a non-tracking...
A suggestion for a widget would be a treeview like KivyMD's datatables https://kivymd.readthedocs.io/en/latest/components/datatables/ a 'Rows per page' combobox, pagination buttons (first, previous, next, last) and autoscroll (Scrolled treeview) vertical and...
@israel-dryer Very useful column sorting option. It would be nice if you could sort columns with the following types of information string, integers, floats, date and time, codes, currency, percentage...
A suggestion of 2 widgets Entry with placeholder and menu: Undo, redo, cut, copy, paste, delete, select all The other entry widget that inherits the above options and adds a...
A Widgets suggestion for Api would be to redo the filedialogs and the color dialog for a cross-platform standardization. https://pythonbasics.org/tkinter-filedialog/ > tkinter.filedialog.asksaveasfilename() > tkinter.filedialog.asksaveasfile() > tkinter.filedialog.askopenfilename() > tkinter.filedialog.askopenfile() > tkinter.filedialog.askdirectory()...
A suggestion would be to add a vertical and horizontal ScrolledFrame like this one: https://gist.github.com/novel-yet-trivial/2841b7b640bba48928200ff979204115 DoubleScrolledFrame: ```python try: import tkinter as tk from tkinter import ttk except ImportError: import Tkinter...
If possible also add translation for widgets. weblate offers a free hosting plan, I don't know if it's compatible with tk inter https://docs.weblate.org/en/latest/index.html https://docs.weblate.org/en/latest/user/files.html
> I've got another idea in the works for another kind of menu widget that is designed with pages instead of cascades... kind of like what you'd see on a...
Besides the option to copy the selection to the clipboard. An option to copy the selection with the header would be interesting, it would be the same code above, but...
On Ubuntu/mint need to install xclip and xsel. But as it is something that is used frequently, it is already in my system post installation script, so I forget that...