2024-09-22 12:39:03 +05:30
|
|
|
|
|
|
|
|
import Widget from "../../canvas/widgets/base"
|
|
|
|
|
|
|
|
|
|
import ButtonWidget from "./assets/widgets/button.png"
|
2024-09-22 19:23:06 +05:30
|
|
|
import MainWindow from "./widgets/mainWindow"
|
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",
|
|
|
|
|
widgetClass: Widget
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Frame",
|
|
|
|
|
img: ButtonWidget,
|
|
|
|
|
link: "https://github.com",
|
|
|
|
|
widgetClass: Widget
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Button",
|
|
|
|
|
img: ButtonWidget,
|
|
|
|
|
link: "https://github.com",
|
|
|
|
|
widgetClass: Widget
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Input",
|
|
|
|
|
img: ButtonWidget,
|
|
|
|
|
link: "https://github.com",
|
|
|
|
|
widgetClass: Widget
|
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default TkinterSidebar
|