-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
53820b6
commit 324efa9
Showing
5 changed files
with
46 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,6 @@ dist/ | |
.venv/ | ||
test*.py | ||
.gitignore | ||
.git/ | ||
.git/ | ||
.ssh/ | ||
.cache/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import asyncio | ||
import tkintertools as tkt | ||
import tkintertools.animation as animation | ||
import tkintertools.color as color | ||
import tkintertools.core.constants as constants | ||
import tkintertools.standard.dialogs as dialogs # Customied | ||
import tkintertools.standard.features as features # Customied | ||
import tkintertools.standard.shapes as shapes # Customied | ||
import tkintertools.standard.texts as texts # Customied | ||
import tkintertools.style as style | ||
import tkintertools.toolbox as toolbox | ||
|
||
WIDTH = 1280 | ||
HEIGHT = 720 | ||
HSL_NAME = 'Hikari Server Launcher' | ||
|
||
async def init(): | ||
root = tkt.Tk((WIDTH,HEIGHT),title=f"{HSL_NAME} - GUI DEMO") | ||
root.alpha(1) | ||
root.center() | ||
canvas = tkt.Canvas(root, zoom_item=True, keep_ratio="min", free_anchor=True) | ||
canvas.place(width=1280, height=720, anchor="center") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,6 @@ pyyaml | |
requests | ||
noneprompt | ||
aioconsole | ||
javaproperties | ||
pyinstaller | ||
javaproperties | ||
tkintertools[suggest]==3.0.0b3 |