代码拉取完成,页面将自动刷新
finalizerOn
is not turned on by default. After turning …
//----------------------------------------
// The code is automatically generated by the GenlibLcl tool.
// Copyright © ying32. All Rights Reserved.
//
// Licensed under Apache License 2.0
//
//----------------------------------------
package vcl
import (
. "github.com/ying32/govcl/vcl/api"
. "github.com/ying32/govcl/vcl/types"
"unsafe"
)
type TScreen struct {
IComponent
instance uintptr
// 特殊情况下使用,主要应对Go的GC问题,与LCL没有太多关系。
ptr unsafe.Pointer
}
// 创建一个新的对象。
//
// Create a new object.
func NewScreen(owner IComponent) *TScreen {
s := new(TScreen)
s.instance = Screen_Create(CheckPtr(owner))
s.ptr = unsafe.Pointer(s.instance)
return s
}
// 动态转换一个已存在的对象实例。
//
// Dynamically convert an existing object instance.
func AsScreen(obj interface{}) *TScreen {
instance, ptr := getInstance(obj)
if instance == 0 { return nil }
return &TScreen{instance: instance, ptr: ptr}
}
// -------------------------- Deprecated begin --------------------------
// 新建一个对象来自已经存在的对象实例指针。
//
// Create a new object from an existing object instance pointer.
// Deprecated: use AsScreen.
func ScreenFromInst(inst uintptr) *TScreen {
return AsScreen(inst)
}
// 新建一个对象来自已经存在的对象实例。
//
// Create a new object from an existing object instance.
// Deprecated: use AsScreen.
func ScreenFromObj(obj IObject) *TScreen {
return AsScreen(obj)
}
// 新建一个对象来自不安全的地址。注意:使用此函数可能造成一些不明情况,慎用。
//
// Create a new object from an unsecured address. Note: Using this function may cause some unclear situations and be used with caution..
// Deprecated: use AsScreen.
func ScreenFromUnsafePointer(ptr unsafe.Pointer) *TScreen {
return AsScreen(ptr)
}
// -------------------------- Deprecated end --------------------------
// 释放对象。
//
// Free object.
func (s *TScreen) Free() {
if s.instance != 0 {
Screen_Free(s.instance)
s.instance, s.ptr = 0, nullptr
}
}
// 返回对象实例指针。
//
// Return object instance pointer.
func (s *TScreen) Instance() uintptr {
return s.instance
}
// 获取一个不安全的地址。
//
// Get an unsafe address.
func (s *TScreen) UnsafeAddr() unsafe.Pointer {
return s.ptr
}
// 检测地址是否为空。
//
// Check if the address is empty.
func (s *TScreen) IsValid() bool {
return s.instance != 0
}
// 检测当前对象是否继承自目标对象。
//
// Checks whether the current object is inherited from the target object.
func (s *TScreen) Is() TIs {
return TIs(s.instance)
}
// 动态转换当前对象为目标对象。
//
// Dynamically convert the current object to the target object.
//func (s *TScreen) As() TAs {
// return TAs(s.instance)
//}
// 获取类信息指针。
//
// Get class information pointer.
func TScreenClass() TClass {
return Screen_StaticClassType()
}
// 查找指定名称的组件。
//
// Find the component with the specified name.
func (s *TScreen) FindComponent(AName string) *TComponent {
return AsComponent(Screen_FindComponent(s.instance, AName))
}
// 获取类名路径。
//
// Get the class name path.
func (s *TScreen) GetNamePath() string {
return Screen_GetNamePath(s.instance)
}
// 是否有父容器。
//
// Is there a parent container.
func (s *TScreen) HasParent() bool {
return Screen_HasParent(s.instance)
}
// 复制一个对象,如果对象实现了此方法的话。
//
// Copy an object, if the object implements this method.
func (s *TScreen) Assign(Source IObject) {
Screen_Assign(s.instance, CheckPtr(Source))
}
// 获取类的类型信息。
//
// Get class type information.
func (s *TScreen) ClassType() TClass {
return Screen_ClassType(s.instance)
}
// 获取当前对象类名称。
//
// Get the current object class name.
func (s *TScreen) ClassName() string {
return Screen_ClassName(s.instance)
}
// 获取当前对象实例大小。
//
// Get the current object instance size.
func (s *TScreen) InstanceSize() int32 {
return Screen_InstanceSize(s.instance)
}
// 判断当前类是否继承自指定类。
//
// Determine whether the current class inherits from the specified class.
func (s *TScreen) InheritsFrom(AClass TClass) bool {
return Screen_InheritsFrom(s.instance, AClass)
}
// 与一个对象进行比较。
//
// Compare with an object.
func (s *TScreen) Equals(Obj IObject) bool {
return Screen_Equals(s.instance, CheckPtr(Obj))
}
// 获取类的哈希值。
//
// Get the hash value of the class.
func (s *TScreen) GetHashCode() int32 {
return Screen_GetHashCode(s.instance)
}
// 文本类信息。
//
// Text information.
func (s *TScreen) ToString() string {
return Screen_ToString(s.instance)
}
// 获取当前动控件。
func (s *TScreen) ActiveControl() *TWinControl {
return AsWinControl(Screen_GetActiveControl(s.instance))
}
func (s *TScreen) ActiveForm() *TForm {
return AsForm(Screen_GetActiveForm(s.instance))
}
func (s *TScreen) CustomFormCount() int32 {
return Screen_GetCustomFormCount(s.instance)
}
// 获取控件光标。
//
// Get control cursor.
func (s *TScreen) Cursor() TCursor {
return Screen_GetCursor(s.instance)
}
// 设置控件光标。
//
// Set control cursor.
func (s *TScreen) SetCursor(value TCursor) {
Screen_SetCursor(s.instance, value)
}
func (s *TScreen) FocusedForm() *TForm {
return AsForm(Screen_GetFocusedForm(s.instance))
}
func (s *TScreen) MonitorCount() int32 {
return Screen_GetMonitorCount(s.instance)
}
func (s *TScreen) DesktopRect() TRect {
return Screen_GetDesktopRect(s.instance)
}
func (s *TScreen) DesktopHeight() int32 {
return Screen_GetDesktopHeight(s.instance)
}
func (s *TScreen) DesktopLeft() int32 {
return Screen_GetDesktopLeft(s.instance)
}
func (s *TScreen) DesktopTop() int32 {
return Screen_GetDesktopTop(s.instance)
}
func (s *TScreen) DesktopWidth() int32 {
return Screen_GetDesktopWidth(s.instance)
}
func (s *TScreen) WorkAreaRect() TRect {
return Screen_GetWorkAreaRect(s.instance)
}
func (s *TScreen) WorkAreaHeight() int32 {
return Screen_GetWorkAreaHeight(s.instance)
}
func (s *TScreen) WorkAreaLeft() int32 {
return Screen_GetWorkAreaLeft(s.instance)
}
func (s *TScreen) WorkAreaTop() int32 {
return Screen_GetWorkAreaTop(s.instance)
}
func (s *TScreen) WorkAreaWidth() int32 {
return Screen_GetWorkAreaWidth(s.instance)
}
func (s *TScreen) Fonts() *TStrings {
return AsStrings(Screen_GetFonts(s.instance))
}
func (s *TScreen) FormCount() int32 {
return Screen_GetFormCount(s.instance)
}
// 获取高度。
//
// Get height.
func (s *TScreen) Height() int32 {
return Screen_GetHeight(s.instance)
}
func (s *TScreen) PixelsPerInch() int32 {
return Screen_GetPixelsPerInch(s.instance)
}
func (s *TScreen) PrimaryMonitor() *TMonitor {
return AsMonitor(Screen_GetPrimaryMonitor(s.instance))
}
// 获取宽度。
//
// Get width.
func (s *TScreen) Width() int32 {
return Screen_GetWidth(s.instance)
}
// 获取组件总数。
//
// Get the total number of components.
func (s *TScreen) ComponentCount() int32 {
return Screen_GetComponentCount(s.instance)
}
// 获取组件索引。
//
// Get component index.
func (s *TScreen) ComponentIndex() int32 {
return Screen_GetComponentIndex(s.instance)
}
// 设置组件索引。
//
// Set component index.
func (s *TScreen) SetComponentIndex(value int32) {
Screen_SetComponentIndex(s.instance, value)
}
// 获取组件所有者。
//
// Get component owner.
func (s *TScreen) Owner() *TComponent {
return AsComponent(Screen_GetOwner(s.instance))
}
// 获取组件名称。
//
// Get the component name.
func (s *TScreen) Name() string {
return Screen_GetName(s.instance)
}
// 设置组件名称。
//
// Set the component name.
func (s *TScreen) SetName(value string) {
Screen_SetName(s.instance, value)
}
// 获取对象标记。
//
// Get the control tag.
func (s *TScreen) Tag() int {
return Screen_GetTag(s.instance)
}
// 设置对象标记。
//
// Set the control tag.
func (s *TScreen) SetTag(value int) {
Screen_SetTag(s.instance, value)
}
func (s *TScreen) Cursors(Index int32) HICON {
return Screen_GetCursors(s.instance, Index)
}
func (s *TScreen) SetCursors(Index int32, value HICON) {
Screen_SetCursors(s.instance, Index, value)
}
func (s *TScreen) Monitors(Index int32) *TMonitor {
return AsMonitor(Screen_GetMonitors(s.instance, Index))
}
func (s *TScreen) Forms(Index int32) *TForm {
return AsForm(Screen_GetForms(s.instance, Index))
}
// 获取指定索引组件。
//
// Get the specified index component.
func (s *TScreen) Components(AIndex int32) *TComponent {
return AsComponent(Screen_GetComponents(s.instance, AIndex))
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。