2023-06-28 13:33:31 +08:00
|
|
|
//----------------------------------------
|
|
|
|
//
|
|
|
|
// Copyright © yanghy. All Rights Reserved.
|
|
|
|
//
|
|
|
|
// Licensed under Apache License Version 2.0, January 2004
|
|
|
|
//
|
|
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
//----------------------------------------
|
|
|
|
|
|
|
|
//go:build !linux
|
|
|
|
|
2023-07-23 00:15:35 +08:00
|
|
|
// GTK2 & GTK3: Manually calling initialization
|
2023-06-28 13:33:31 +08:00
|
|
|
// Other: Automatic initialization and destruction
|
|
|
|
|
|
|
|
package lclwidget
|
|
|
|
|
|
|
|
// CustomWidgetSetInitialization
|
|
|
|
// 自定义组件初始化 other
|
|
|
|
func CustomWidgetSetInitialization() {
|
|
|
|
}
|
|
|
|
|
|
|
|
// CustomWidgetSetFinalization
|
|
|
|
// 自定义组件销毁 other
|
|
|
|
func CustomWidgetSetFinalization() {
|
|
|
|
}
|