Files
PyUIBuilder/src/frameworks/tkinter/sidebarWidgets.js

53 lines
1.1 KiB
JavaScript
Raw Normal View History

import Widget from "../../canvas/widgets/base"
import ButtonWidget from "./assets/widgets/button.png"
2024-09-22 22:24:35 +05:30
import Button from "./widgets/button"
import Frame from "./widgets/frame"
import Input from "./widgets/input"
import Label from "./widgets/label"
import MainWindow from "./widgets/mainWindow"
2024-09-22 22:24:35 +05:30
import TopLevel from "./widgets/toplevel"
const TkinterSidebar = [
{
name: "Main window",
img: ButtonWidget,
link: "https://github.com",
widgetClass: MainWindow
},
{
name: "Top Level",
img: ButtonWidget,
link: "https://github.com",
2024-09-22 22:24:35 +05:30
widgetClass: TopLevel
},
{
name: "Frame",
img: ButtonWidget,
link: "https://github.com",
2024-09-22 22:24:35 +05:30
widgetClass: Frame
},
{
name: "Label",
img: ButtonWidget,
link: "https://github.com",
widgetClass: Label
},
{
name: "Button",
img: ButtonWidget,
link: "https://github.com",
2024-09-22 22:24:35 +05:30
widgetClass: Button
},
{
name: "Input",
img: ButtonWidget,
link: "https://github.com",
2024-09-22 22:24:35 +05:30
widgetClass: Input
},
]
export default TkinterSidebar