LCL: set up window property

This commit is contained in:
杨红岩 2023-02-03 09:02:43 +08:00
parent 54977e0c15
commit afac3a55af

View File

@ -169,6 +169,7 @@ func (m *LCLBrowserWindow) SetTitle(title string) {
if m.TForm == nil {
return
}
m.WindowProperty().Title = title
m.TForm.SetCaption(title)
}
@ -176,6 +177,7 @@ func (m *LCLBrowserWindow) SetWidth(value int32) {
if m.TForm == nil {
return
}
m.WindowProperty().Width = value
m.TForm.SetWidth(value)
}
@ -183,6 +185,7 @@ func (m *LCLBrowserWindow) SetHeight(value int32) {
if m.TForm == nil {
return
}
m.WindowProperty().Height = value
m.TForm.SetHeight(value)
}
@ -234,6 +237,8 @@ func (m *LCLBrowserWindow) SetPoint(x, y int32) {
if m.TForm == nil {
return
}
m.WindowProperty().X = x
m.WindowProperty().Y = y
m.TForm.SetLeft(x)
m.TForm.SetTop(y)
}
@ -242,6 +247,8 @@ func (m *LCLBrowserWindow) SetSize(width, height int32) {
if m.TForm == nil {
return
}
m.WindowProperty().Width = width
m.WindowProperty().Height = height
m.SetWidth(width)
m.SetHeight(height)
}
@ -250,6 +257,10 @@ func (m *LCLBrowserWindow) SetBounds(x, y, width, height int32) {
if m.TForm == nil {
return
}
m.WindowProperty().X = x
m.WindowProperty().Y = y
m.WindowProperty().Width = width
m.WindowProperty().Height = height
m.TForm.SetBounds(x, y, width, height)
}
@ -360,10 +371,6 @@ func (m *LCLBrowserWindow) IsClosing() bool {
return m.isClosing
}
func (m *LCLBrowserWindow) ITray() {
}
// 设置窗口类型
func (m *LCLBrowserWindow) SetWindowType(windowType consts.WINDOW_TYPE) {
m.windowType = windowType