2024-09-22 12:39:03 +05:30
|
|
|
|
|
|
|
|
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"
|
2024-09-22 19:23:06 +05:30
|
|
|
import MainWindow from "./widgets/mainWindow"
|
2024-09-22 22:24:35 +05:30
|
|
|
import TopLevel from "./widgets/toplevel"
|
2024-09-22 12:39:03 +05:30
|
|
|
|
|
|
|
|
|
|
|
|
|
const TkinterSidebar = [
|
|
|
|
|
{
|
|
|
|
|
name: "Main window",
|
|
|
|
|
img: ButtonWidget,
|
|
|
|
|
link: "https://github.com",
|
2024-09-22 19:23:06 +05:30
|
|
|
widgetClass: MainWindow
|
2024-09-22 12:39:03 +05:30
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Top Level",
|
|
|
|
|
img: ButtonWidget,
|
|
|
|
|
link: "https://github.com",
|
2024-09-22 22:24:35 +05:30
|
|
|
widgetClass: TopLevel
|
2024-09-22 12:39:03 +05:30
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
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
|
2024-09-22 12:39:03 +05:30
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Button",
|
|
|
|
|
img: ButtonWidget,
|
|
|
|
|
link: "https://github.com",
|
2024-09-22 22:24:35 +05:30
|
|
|
widgetClass: Button
|
2024-09-22 12:39:03 +05:30
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Input",
|
|
|
|
|
img: ButtonWidget,
|
|
|
|
|
link: "https://github.com",
|
2024-09-22 22:24:35 +05:30
|
|
|
widgetClass: Input
|
2024-09-22 12:39:03 +05:30
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default TkinterSidebar
|