Skip to content

Commit e0e3d9b

Browse files
committed
first commit
0 parents  commit e0e3d9b

File tree

6 files changed

+507
-0
lines changed

6 files changed

+507
-0
lines changed

.gitignore

Lines changed: 227 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,227 @@
1+
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2+
# Created by https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,python
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,visualstudiocode,python
4+
5+
### Python ###
6+
# Byte-compiled / optimized / DLL files
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
11+
# C extensions
12+
*.so
13+
14+
# Distribution / packaging
15+
.Python
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
share/python-wheels/
29+
*.egg-info/
30+
.installed.cfg
31+
*.egg
32+
MANIFEST
33+
34+
# PyInstaller
35+
# Usually these files are written by a python script from a template
36+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
37+
*.manifest
38+
*.spec
39+
40+
# Installer logs
41+
pip-log.txt
42+
pip-delete-this-directory.txt
43+
44+
# Unit test / coverage reports
45+
htmlcov/
46+
.tox/
47+
.nox/
48+
.coverage
49+
.coverage.*
50+
.cache
51+
nosetests.xml
52+
coverage.xml
53+
*.cover
54+
*.py,cover
55+
.hypothesis/
56+
.pytest_cache/
57+
cover/
58+
59+
# Translations
60+
*.mo
61+
*.pot
62+
63+
# Django stuff:
64+
*.log
65+
local_settings.py
66+
db.sqlite3
67+
db.sqlite3-journal
68+
69+
# Flask stuff:
70+
instance/
71+
.webassets-cache
72+
73+
# Scrapy stuff:
74+
.scrapy
75+
76+
# Sphinx documentation
77+
docs/_build/
78+
79+
# PyBuilder
80+
.pybuilder/
81+
target/
82+
83+
# Jupyter Notebook
84+
.ipynb_checkpoints
85+
86+
# IPython
87+
profile_default/
88+
ipython_config.py
89+
90+
# pyenv
91+
# For a library or package, you might want to ignore these files since the code is
92+
# intended to run in multiple environments; otherwise, check them in:
93+
# .python-version
94+
95+
# pipenv
96+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
97+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
98+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
99+
# install all needed dependencies.
100+
#Pipfile.lock
101+
102+
# poetry
103+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
104+
# This is especially recommended for binary packages to ensure reproducibility, and is more
105+
# commonly ignored for libraries.
106+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
107+
#poetry.lock
108+
109+
# pdm
110+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
111+
#pdm.lock
112+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
113+
# in version control.
114+
# https://pdm.fming.dev/#use-with-ide
115+
.pdm.toml
116+
117+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
118+
__pypackages__/
119+
120+
# Celery stuff
121+
celerybeat-schedule
122+
celerybeat.pid
123+
124+
# SageMath parsed files
125+
*.sage.py
126+
127+
# Environments
128+
.env
129+
.venv
130+
env/
131+
venv/
132+
ENV/
133+
env.bak/
134+
venv.bak/
135+
136+
# Spyder project settings
137+
.spyderproject
138+
.spyproject
139+
140+
# Rope project settings
141+
.ropeproject
142+
143+
# mkdocs documentation
144+
/site
145+
146+
# mypy
147+
.mypy_cache/
148+
.dmypy.json
149+
dmypy.json
150+
151+
# Pyre type checker
152+
.pyre/
153+
154+
# pytype static type analyzer
155+
.pytype/
156+
157+
# Cython debug symbols
158+
cython_debug/
159+
160+
# PyCharm
161+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
162+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
163+
# and can be added to the global gitignore or merged into this file. For a more nuclear
164+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
165+
#.idea/
166+
167+
### Python Patch ###
168+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
169+
poetry.toml
170+
171+
# ruff
172+
.ruff_cache/
173+
174+
# LSP config files
175+
pyrightconfig.json
176+
177+
### VisualStudioCode ###
178+
.vscode/*
179+
.vscode/settings.json
180+
!.vscode/tasks.json
181+
!.vscode/launch.json
182+
!.vscode/extensions.json
183+
!.vscode/*.code-snippets
184+
185+
# Local History for Visual Studio Code
186+
.history/
187+
188+
# Built Visual Studio Code Extensions
189+
*.vsix
190+
191+
### VisualStudioCode Patch ###
192+
# Ignore all local history of files
193+
.history
194+
.ionide
195+
196+
### Windows ###
197+
# Windows thumbnail cache files
198+
Thumbs.db
199+
Thumbs.db:encryptable
200+
ehthumbs.db
201+
ehthumbs_vista.db
202+
203+
# Dump file
204+
*.stackdump
205+
206+
# Folder config file
207+
[Dd]esktop.ini
208+
209+
# Recycle Bin used on file shares
210+
$RECYCLE.BIN/
211+
212+
# Windows Installer files
213+
*.cab
214+
*.msi
215+
*.msix
216+
*.msm
217+
*.msp
218+
219+
# Windows shortcuts
220+
*.lnk
221+
222+
# End of https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,python
223+
224+
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
225+
226+
test*
227+
*.exe

README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Tkinter Quick Layout
2+
3+
This repository will help you create complex layouts when building Tkinter and CustomTkinter .
4+
5+
## Features
6+
7+
- Easy-to-use GUI for layout creation.
8+
- Generate grid values as code, copy to clipboard
9+
10+
## Download
11+
12+
Go to the [GitHub releases page](https://github.com/EasyDevv/Tkinter-Quick-Layout/releases) and click on `Assets` at the bottom to show the files available in the release
13+
14+
15+
## Usage
16+
17+
### Basic Control
18+
19+
- ▲ ▼ : Row
20+
- ◀ ▶ : Column
21+
- ▲▲ ▼▼ : Row span
22+
- ◀◀ ▶▶ : Column span
23+
- ✓ : Copy
24+
- X : Close
25+
26+
27+
![usage_01](./doc/images/usage_01.webp)
28+
29+
### Example frame setup
30+
![usage_02](./doc/images/usage_02.webp)
31+
32+
### Example button setup
33+
![usage_03](./doc/images/usage_03.webp)

doc/images/usage_01.webp

7.75 MB
Loading

doc/images/usage_02.webp

15.3 MB
Loading

doc/images/usage_03.webp

18.1 MB
Loading

0 commit comments

Comments
 (0)