Files
PyUIBuilder/src/frameworks/tkinter/widgets/mainWindow.js

78 lines
2.5 KiB
JavaScript
Raw Normal View History

import Widget from "../../../canvas/widgets/base"
2024-09-22 22:24:35 +05:30
import Tools from "../../../canvas/constants/tools"
class MainWindow extends Widget{
static widgetType = "main_window"
constructor(props) {
super(props)
this.droppableTags = {
2024-09-22 22:24:35 +05:30
exclude: ["image", "video", "media", "main_window", "toplevel"]
}
this.state = {
...this.state,
2024-09-22 22:24:35 +05:30
size: { width: 700, height: 400 },
attrs: {
...this.state.attrs,
title: {
label: "Window Title",
tool: Tools.INPUT, // the tool to display, can be either HTML ELement or a constant string
toolProps: {placeholder: "Window title", maxLength: 40},
value: "Main Window",
onChange: (value) => this.setAttrValue("title", value)
}
2024-09-22 22:24:35 +05:30
}
}
2024-09-22 22:24:35 +05:30
}
componentDidMount(){
super.componentDidMount()
this.setAttrValue("styling.backgroundColor", "#E4E2E2")
this.setWidgetName("main")
}
2024-09-22 22:24:35 +05:30
getToolbarAttrs(){
const toolBarAttrs = super.getToolbarAttrs()
2024-09-22 22:24:35 +05:30
return ({
id: this.__id,
widgetName: toolBarAttrs.widgetName,
2024-09-22 22:24:35 +05:30
title: this.state.attrs.title,
size: toolBarAttrs.size,
2024-09-22 22:24:35 +05:30
...this.state.attrs,
})
}
renderContent(){
return (
<div className="tw-w-flex tw-flex-col tw-w-full tw-h-full tw-rounded-md tw-overflow-hidden">
2024-09-22 22:24:35 +05:30
<div className="tw-flex tw-w-full tw-h-[25px] tw-bg-[#c7c7c7] tw-p-1
tw-overflow-hidden tw-shadow-xl tw-place-items-center">
<div className="tw-text-sm">{this.getAttrValue("title")}</div>
<div className="tw-ml-auto tw-flex tw-gap-1 tw-place-items-center">
<div className="tw-bg-yellow-400 tw-rounded-full tw-w-[15px] tw-h-[15px]">
</div>
<div className="tw-bg-blue-400 tw-rounded-full tw-w-[15px] tw-h-[15px]">
</div>
<div className="tw-bg-red-400 tw-rounded-full tw-w-[15px] tw-h-[15px]">
</div>
</div>
</div>
<div className="tw-p-2 tw-w-full tw-relative tw-h-full tw-overflow-hidden tw-content-start" style={this.state.widgetStyling}>
{this.props.children}
</div>
</div>
)
}
}
export default MainWindow