FunctionGUI 0.6.3__tar.gz → 0.6.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {FunctionGUI-0.6.3 → FunctionGUI-0.6.4}/FunctionGUI/FunctionGUI.py +2 -3
- {FunctionGUI-0.6.3 → FunctionGUI-0.6.4}/FunctionGUI.egg-info/PKG-INFO +1 -1
- {FunctionGUI-0.6.3 → FunctionGUI-0.6.4}/PKG-INFO +1 -1
- {FunctionGUI-0.6.3 → FunctionGUI-0.6.4}/setup.py +1 -1
- {FunctionGUI-0.6.3 → FunctionGUI-0.6.4}/FunctionGUI/__init__.py +0 -0
- {FunctionGUI-0.6.3 → FunctionGUI-0.6.4}/FunctionGUI.egg-info/SOURCES.txt +0 -0
- {FunctionGUI-0.6.3 → FunctionGUI-0.6.4}/FunctionGUI.egg-info/dependency_links.txt +0 -0
- {FunctionGUI-0.6.3 → FunctionGUI-0.6.4}/FunctionGUI.egg-info/requires.txt +0 -0
- {FunctionGUI-0.6.3 → FunctionGUI-0.6.4}/FunctionGUI.egg-info/top_level.txt +0 -0
- {FunctionGUI-0.6.3 → FunctionGUI-0.6.4}/README.md +0 -0
- {FunctionGUI-0.6.3 → FunctionGUI-0.6.4}/setup.cfg +0 -0
@@ -21,8 +21,8 @@ def ScrollBar(root, widget, side="right", fill="y"):
|
|
21
21
|
scrollbar.pack(side=side, fill=fill)
|
22
22
|
a.config(yscrollcommand=scrollbar.set)
|
23
23
|
|
24
|
-
def Label(parent, textvariabl, text=
|
25
|
-
label = ttk.Label(parent, text=text, font = (font, size), foreground = color, wraplength=wraplenght, textvariable=textvariabl)
|
24
|
+
def Label(parent, textvariabl, text=None, font="Helvetica", size=12, color="black", wraplenght=2, width=50, height=50):
|
25
|
+
label = ttk.Label(parent, text=text, font = (font, size), foreground = color, wraplength=wraplenght, textvariable=textvariabl, width=width, height=height)
|
26
26
|
return label
|
27
27
|
|
28
28
|
|
@@ -36,7 +36,6 @@ def Font(name = 'arial', size = 20, weight = "bold"):
|
|
36
36
|
def StrVar(master, string):
|
37
37
|
v = tk.StringVar(master, string)
|
38
38
|
return v
|
39
|
-
|
40
39
|
def OpenFile(title):
|
41
40
|
file_path = filedialog.askopenfilename(title="Select a file")
|
42
41
|
return file_path
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name='FunctionGUI', # Replace with your library name
|
5
|
-
version='0.6.
|
5
|
+
version='0.6.4', # Start with an initial version
|
6
6
|
description='A simple Tkinter GUI library with basic widgets and functionality.',
|
7
7
|
long_description=open('README.md').read(), # Make sure you have a README.md file
|
8
8
|
long_description_content_type='text/markdown',
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|