79 Star 313 Fork 53

不在乎y/govcl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
listbox.go 32.88 KB
一键复制 编辑 原始数据 按行查看 历史
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267
//----------------------------------------
// 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 TListBox struct {
IWinControl
instance uintptr
// 特殊情况下使用,主要应对Go的GC问题,与LCL没有太多关系。
ptr unsafe.Pointer
}
// CN: 创建一个新的对象。
// EN: Create a new object.
func NewListBox(owner IComponent) *TListBox {
l := new(TListBox)
l.instance = ListBox_Create(CheckPtr(owner))
l.ptr = unsafe.Pointer(l.instance)
// 不敢启用,因为不知道会发生什么...
// runtime.SetFinalizer(l, (*TListBox).Free)
return l
}
// CN: 动态转换一个已存在的对象实例。或者使用Obj.As().<目标对象>。
// EN: Dynamically convert an existing object instance. Or use Obj.As().<Target object>.
func AsListBox(obj interface{}) *TListBox {
instance, ptr := getInstance(obj)
if instance == 0 { return nil }
return &TListBox{instance: instance, ptr: ptr}
}
// -------------------------- Deprecated begin --------------------------
// CN: 新建一个对象来自已经存在的对象实例指针。
// EN: Create a new object from an existing object instance pointer.
// Deprecated: use AsListBox.
func ListBoxFromInst(inst uintptr) *TListBox {
return AsListBox(inst)
}
// CN: 新建一个对象来自已经存在的对象实例。
// EN: Create a new object from an existing object instance.
// Deprecated: use AsListBox.
func ListBoxFromObj(obj IObject) *TListBox {
return AsListBox(obj)
}
// CN: 新建一个对象来自不安全的地址。注意:使用此函数可能造成一些不明情况,慎用。
// EN: Create a new object from an unsecured address. Note: Using this function may cause some unclear situations and be used with caution..
// Deprecated: use AsListBox.
func ListBoxFromUnsafePointer(ptr unsafe.Pointer) *TListBox {
return AsListBox(ptr)
}
// -------------------------- Deprecated end --------------------------
// CN: 释放对象。
// EN: Free object.
func (l *TListBox) Free() {
if l.instance != 0 {
ListBox_Free(l.instance)
l.instance, l.ptr = 0, nullptr
}
}
// CN: 返回对象实例指针。
// EN: Return object instance pointer.
func (l *TListBox) Instance() uintptr {
return l.instance
}
// CN: 获取一个不安全的地址。
// EN: Get an unsafe address.
func (l *TListBox) UnsafeAddr() unsafe.Pointer {
return l.ptr
}
// CN: 检测地址是否为空。
// EN: Check if the address is empty.
func (l *TListBox) IsValid() bool {
return l.instance != 0
}
// CN: 检测当前对象是否继承自目标对象。
// EN: Checks whether the current object is inherited from the target object.
func (l *TListBox) Is() TIs {
return TIs(l.instance)
}
// CN: 动态转换当前对象为目标对象。
// EN: Dynamically convert the current object to the target object.
//func (l *TListBox) As() TAs {
// return TAs(l.instance)
//}
// CN: 获取类信息指针。
// EN: Get class information pointer.
func TListBoxClass() TClass {
return ListBox_StaticClassType()
}
func (l *TListBox) AddItem(Item string, AObject IObject) {
ListBox_AddItem(l.instance, Item , CheckPtr(AObject))
}
// CN: 清除。
// EN: .
func (l *TListBox) Clear() {
ListBox_Clear(l.instance)
}
// CN: 清除选择。
// EN: .
func (l *TListBox) ClearSelection() {
ListBox_ClearSelection(l.instance)
}
func (l *TListBox) DeleteSelected() {
ListBox_DeleteSelected(l.instance)
}
func (l *TListBox) ItemAtPos(Pos TPoint, Existing bool) int32 {
return ListBox_ItemAtPos(l.instance, Pos , Existing)
}
func (l *TListBox) ItemRect(Index int32) TRect {
return ListBox_ItemRect(l.instance, Index)
}
// CN: 全选。
// EN: .
func (l *TListBox) SelectAll() {
ListBox_SelectAll(l.instance)
}
// CN: 是否可以获得焦点。
// EN: .
func (l *TListBox) CanFocus() bool {
return ListBox_CanFocus(l.instance)
}
// CN: 返回是否包含指定控件。
// EN: it's contain a specified control.
func (l *TListBox) ContainsControl(Control IControl) bool {
return ListBox_ContainsControl(l.instance, CheckPtr(Control))
}
// CN: 返回指定坐标及相关属性位置控件。
// EN: Returns the specified coordinate and the relevant attribute position control..
func (l *TListBox) ControlAtPos(Pos TPoint, AllowDisabled bool, AllowWinControls bool, AllLevels bool) *TControl {
return AsControl(ListBox_ControlAtPos(l.instance, Pos , AllowDisabled , AllowWinControls , AllLevels))
}
// CN: 禁用控件的对齐。
// EN: Disable control alignment.
func (l *TListBox) DisableAlign() {
ListBox_DisableAlign(l.instance)
}
// CN: 启用控件对齐。
// EN: Enabled control alignment.
func (l *TListBox) EnableAlign() {
ListBox_EnableAlign(l.instance)
}
// CN: 查找子控件。
// EN: Find sub controls.
func (l *TListBox) FindChildControl(ControlName string) *TControl {
return AsControl(ListBox_FindChildControl(l.instance, ControlName))
}
func (l *TListBox) FlipChildren(AllLevels bool) {
ListBox_FlipChildren(l.instance, AllLevels)
}
// CN: 返回是否获取焦点。
// EN: Return to get focus.
func (l *TListBox) Focused() bool {
return ListBox_Focused(l.instance)
}
// CN: 句柄是否已经分配。
// EN: Is the handle already allocated.
func (l *TListBox) HandleAllocated() bool {
return ListBox_HandleAllocated(l.instance)
}
// CN: 插入一个控件。
// EN: Insert a control.
func (l *TListBox) InsertControl(AControl IControl) {
ListBox_InsertControl(l.instance, CheckPtr(AControl))
}
// CN: 要求重绘。
// EN: Redraw.
func (l *TListBox) Invalidate() {
ListBox_Invalidate(l.instance)
}
// CN: 移除一个控件。
// EN: Remove a control.
func (l *TListBox) RemoveControl(AControl IControl) {
ListBox_RemoveControl(l.instance, CheckPtr(AControl))
}
// CN: 重新对齐。
// EN: Realign.
func (l *TListBox) Realign() {
ListBox_Realign(l.instance)
}
// CN: 重绘。
// EN: Repaint.
func (l *TListBox) Repaint() {
ListBox_Repaint(l.instance)
}
// CN: 按比例缩放。
// EN: Scale by.
func (l *TListBox) ScaleBy(M int32, D int32) {
ListBox_ScaleBy(l.instance, M , D)
}
// CN: 滚动至指定位置。
// EN: Scroll by.
func (l *TListBox) ScrollBy(DeltaX int32, DeltaY int32) {
ListBox_ScrollBy(l.instance, DeltaX , DeltaY)
}
// CN: 设置组件边界。
// EN: Set component boundaries.
func (l *TListBox) SetBounds(ALeft int32, ATop int32, AWidth int32, AHeight int32) {
ListBox_SetBounds(l.instance, ALeft , ATop , AWidth , AHeight)
}
// CN: 设置控件焦点。
// EN: Set control focus.
func (l *TListBox) SetFocus() {
ListBox_SetFocus(l.instance)
}
// CN: 控件更新。
// EN: Update.
func (l *TListBox) Update() {
ListBox_Update(l.instance)
}
// CN: 将控件置于最前。
// EN: Bring the control to the front.
func (l *TListBox) BringToFront() {
ListBox_BringToFront(l.instance)
}
// CN: 将客户端坐标转为绝对的屏幕坐标。
// EN: Convert client coordinates to absolute screen coordinates.
func (l *TListBox) ClientToScreen(Point TPoint) TPoint {
return ListBox_ClientToScreen(l.instance, Point)
}
// CN: 将客户端坐标转为父容器坐标。
// EN: Convert client coordinates to parent container coordinates.
func (l *TListBox) ClientToParent(Point TPoint, AParent IWinControl) TPoint {
return ListBox_ClientToParent(l.instance, Point , CheckPtr(AParent))
}
// CN: 是否在拖拽中。
// EN: Is it in the middle of dragging.
func (l *TListBox) Dragging() bool {
return ListBox_Dragging(l.instance)
}
// CN: 是否有父容器。
// EN: Is there a parent container.
func (l *TListBox) HasParent() bool {
return ListBox_HasParent(l.instance)
}
// CN: 隐藏控件。
// EN: Hidden control.
func (l *TListBox) Hide() {
ListBox_Hide(l.instance)
}
// CN: 发送一个消息。
// EN: Send a message.
func (l *TListBox) Perform(Msg uint32, WParam uintptr, LParam int) int {
return ListBox_Perform(l.instance, Msg , WParam , LParam)
}
// CN: 刷新控件。
// EN: Refresh control.
func (l *TListBox) Refresh() {
ListBox_Refresh(l.instance)
}
// CN: 将屏幕坐标转为客户端坐标。
// EN: Convert screen coordinates to client coordinates.
func (l *TListBox) ScreenToClient(Point TPoint) TPoint {
return ListBox_ScreenToClient(l.instance, Point)
}
// CN: 将父容器坐标转为客户端坐标。
// EN: Convert parent container coordinates to client coordinates.
func (l *TListBox) ParentToClient(Point TPoint, AParent IWinControl) TPoint {
return ListBox_ParentToClient(l.instance, Point , CheckPtr(AParent))
}
// CN: 控件至于最后面。
// EN: The control is placed at the end.
func (l *TListBox) SendToBack() {
ListBox_SendToBack(l.instance)
}
// CN: 显示控件。
// EN: Show control.
func (l *TListBox) Show() {
ListBox_Show(l.instance)
}
// CN: 获取控件的字符,如果有。
// EN: Get the characters of the control, if any.
func (l *TListBox) GetTextBuf(Buffer *string, BufSize int32) int32 {
return ListBox_GetTextBuf(l.instance, Buffer , BufSize)
}
// CN: 获取控件的字符长,如果有。
// EN: Get the character length of the control, if any.
func (l *TListBox) GetTextLen() int32 {
return ListBox_GetTextLen(l.instance)
}
// CN: 设置控件字符,如果有。
// EN: Set control characters, if any.
func (l *TListBox) SetTextBuf(Buffer string) {
ListBox_SetTextBuf(l.instance, Buffer)
}
// CN: 查找指定名称的组件。
// EN: Find the component with the specified name.
func (l *TListBox) FindComponent(AName string) *TComponent {
return AsComponent(ListBox_FindComponent(l.instance, AName))
}
// CN: 获取类名路径。
// EN: Get the class name path.
func (l *TListBox) GetNamePath() string {
return ListBox_GetNamePath(l.instance)
}
// CN: 复制一个对象,如果对象实现了此方法的话。
// EN: Copy an object, if the object implements this method.
func (l *TListBox) Assign(Source IObject) {
ListBox_Assign(l.instance, CheckPtr(Source))
}
// CN: 获取类的类型信息。
// EN: Get class type information.
func (l *TListBox) ClassType() TClass {
return ListBox_ClassType(l.instance)
}
// CN: 获取当前对象类名称。
// EN: Get the current object class name.
func (l *TListBox) ClassName() string {
return ListBox_ClassName(l.instance)
}
// CN: 获取当前对象实例大小。
// EN: Get the current object instance size.
func (l *TListBox) InstanceSize() int32 {
return ListBox_InstanceSize(l.instance)
}
// CN: 判断当前类是否继承自指定类。
// EN: Determine whether the current class inherits from the specified class.
func (l *TListBox) InheritsFrom(AClass TClass) bool {
return ListBox_InheritsFrom(l.instance, AClass)
}
// CN: 与一个对象进行比较。
// EN: Compare with an object.
func (l *TListBox) Equals(Obj IObject) bool {
return ListBox_Equals(l.instance, CheckPtr(Obj))
}
// CN: 获取类的哈希值。
// EN: Get the hash value of the class.
func (l *TListBox) GetHashCode() int32 {
return ListBox_GetHashCode(l.instance)
}
// CN: 文本类信息。
// EN: Text information.
func (l *TListBox) ToString() string {
return ListBox_ToString(l.instance)
}
func (l *TListBox) AnchorToNeighbour(ASide TAnchorKind, ASpace int32, ASibling IControl) {
ListBox_AnchorToNeighbour(l.instance, ASide , ASpace , CheckPtr(ASibling))
}
func (l *TListBox) AnchorParallel(ASide TAnchorKind, ASpace int32, ASibling IControl) {
ListBox_AnchorParallel(l.instance, ASide , ASpace , CheckPtr(ASibling))
}
// CN: 置于指定控件的横向中心。
// EN: .
func (l *TListBox) AnchorHorizontalCenterTo(ASibling IControl) {
ListBox_AnchorHorizontalCenterTo(l.instance, CheckPtr(ASibling))
}
// CN: 置于指定控件的纵向中心。
// EN: .
func (l *TListBox) AnchorVerticalCenterTo(ASibling IControl) {
ListBox_AnchorVerticalCenterTo(l.instance, CheckPtr(ASibling))
}
func (l *TListBox) AnchorAsAlign(ATheAlign TAlign, ASpace int32) {
ListBox_AnchorAsAlign(l.instance, ATheAlign , ASpace)
}
func (l *TListBox) AnchorClient(ASpace int32) {
ListBox_AnchorClient(l.instance, ASpace)
}
func (l *TListBox) ClickOnSelChange() bool {
return ListBox_GetClickOnSelChange(l.instance)
}
func (l *TListBox) SetClickOnSelChange(value bool) {
ListBox_SetClickOnSelChange(l.instance, value)
}
func (l *TListBox) Options() TListBoxOptions {
return ListBox_GetOptions(l.instance)
}
func (l *TListBox) SetOptions(value TListBoxOptions) {
ListBox_SetOptions(l.instance, value)
}
func (l *TListBox) TopIndex() int32 {
return ListBox_GetTopIndex(l.instance)
}
func (l *TListBox) SetTopIndex(value int32) {
ListBox_SetTopIndex(l.instance, value)
}
func (l *TListBox) Style() TListBoxStyle {
return ListBox_GetStyle(l.instance)
}
func (l *TListBox) SetStyle(value TListBoxStyle) {
ListBox_SetStyle(l.instance, value)
}
// CN: 获取控件自动调整。
// EN: Get Control automatically adjusts.
func (l *TListBox) Align() TAlign {
return ListBox_GetAlign(l.instance)
}
// CN: 设置控件自动调整。
// EN: Set Control automatically adjusts.
func (l *TListBox) SetAlign(value TAlign) {
ListBox_SetAlign(l.instance, value)
}
// CN: 获取四个角位置的锚点。
// EN: .
func (l *TListBox) Anchors() TAnchors {
return ListBox_GetAnchors(l.instance)
}
// CN: 设置四个角位置的锚点。
// EN: .
func (l *TListBox) SetAnchors(value TAnchors) {
ListBox_SetAnchors(l.instance, value)
}
func (l *TListBox) BiDiMode() TBiDiMode {
return ListBox_GetBiDiMode(l.instance)
}
func (l *TListBox) SetBiDiMode(value TBiDiMode) {
ListBox_SetBiDiMode(l.instance, value)
}
// CN: 获取窗口边框样式。比如:无边框,单一边框等。
// EN: .
func (l *TListBox) BorderStyle() TBorderStyle {
return ListBox_GetBorderStyle(l.instance)
}
// CN: 设置窗口边框样式。比如:无边框,单一边框等。
// EN: .
func (l *TListBox) SetBorderStyle(value TBorderStyle) {
ListBox_SetBorderStyle(l.instance, value)
}
// CN: 获取颜色。
// EN: Get color.
func (l *TListBox) Color() TColor {
return ListBox_GetColor(l.instance)
}
// CN: 设置颜色。
// EN: Set color.
func (l *TListBox) SetColor(value TColor) {
ListBox_SetColor(l.instance, value)
}
func (l *TListBox) Columns() int32 {
return ListBox_GetColumns(l.instance)
}
func (l *TListBox) SetColumns(value int32) {
ListBox_SetColumns(l.instance, value)
}
// CN: 获取约束控件大小。
// EN: .
func (l *TListBox) Constraints() *TSizeConstraints {
return AsSizeConstraints(ListBox_GetConstraints(l.instance))
}
// CN: 设置约束控件大小。
// EN: .
func (l *TListBox) SetConstraints(value *TSizeConstraints) {
ListBox_SetConstraints(l.instance, CheckPtr(value))
}
// CN: 获取设置控件双缓冲。
// EN: Get Set control double buffering.
func (l *TListBox) DoubleBuffered() bool {
return ListBox_GetDoubleBuffered(l.instance)
}
// CN: 设置设置控件双缓冲。
// EN: Set Set control double buffering.
func (l *TListBox) SetDoubleBuffered(value bool) {
ListBox_SetDoubleBuffered(l.instance, value)
}
// CN: 获取设置控件拖拽时的光标。
// EN: Get Set the cursor when the control is dragged.
func (l *TListBox) DragCursor() TCursor {
return ListBox_GetDragCursor(l.instance)
}
// CN: 设置设置控件拖拽时的光标。
// EN: Set Set the cursor when the control is dragged.
func (l *TListBox) SetDragCursor(value TCursor) {
ListBox_SetDragCursor(l.instance, value)
}
// CN: 获取拖拽方式。
// EN: Get Drag and drop.
func (l *TListBox) DragKind() TDragKind {
return ListBox_GetDragKind(l.instance)
}
// CN: 设置拖拽方式。
// EN: Set Drag and drop.
func (l *TListBox) SetDragKind(value TDragKind) {
ListBox_SetDragKind(l.instance, value)
}
// CN: 获取拖拽模式。
// EN: Get Drag mode.
func (l *TListBox) DragMode() TDragMode {
return ListBox_GetDragMode(l.instance)
}
// CN: 设置拖拽模式。
// EN: Set Drag mode.
func (l *TListBox) SetDragMode(value TDragMode) {
ListBox_SetDragMode(l.instance, value)
}
// CN: 获取控件启用。
// EN: Get the control enabled.
func (l *TListBox) Enabled() bool {
return ListBox_GetEnabled(l.instance)
}
// CN: 设置控件启用。
// EN: Set the control enabled.
func (l *TListBox) SetEnabled(value bool) {
ListBox_SetEnabled(l.instance, value)
}
// CN: 获取字体。
// EN: Get Font.
func (l *TListBox) Font() *TFont {
return AsFont(ListBox_GetFont(l.instance))
}
// CN: 设置字体。
// EN: Set Font.
func (l *TListBox) SetFont(value *TFont) {
ListBox_SetFont(l.instance, CheckPtr(value))
}
func (l *TListBox) ItemHeight() int32 {
return ListBox_GetItemHeight(l.instance)
}
func (l *TListBox) SetItemHeight(value int32) {
ListBox_SetItemHeight(l.instance, value)
}
func (l *TListBox) Items() *TStrings {
return AsStrings(ListBox_GetItems(l.instance))
}
func (l *TListBox) SetItems(value IObject) {
ListBox_SetItems(l.instance, CheckPtr(value))
}
func (l *TListBox) MultiSelect() bool {
return ListBox_GetMultiSelect(l.instance)
}
func (l *TListBox) SetMultiSelect(value bool) {
ListBox_SetMultiSelect(l.instance, value)
}
// CN: 获取父容器颜色。
// EN: Get parent color.
func (l *TListBox) ParentColor() bool {
return ListBox_GetParentColor(l.instance)
}
// CN: 设置父容器颜色。
// EN: Set parent color.
func (l *TListBox) SetParentColor(value bool) {
ListBox_SetParentColor(l.instance, value)
}
// CN: 获取父容器双缓冲。
// EN: Get Parent container double buffering.
func (l *TListBox) ParentDoubleBuffered() bool {
return ListBox_GetParentDoubleBuffered(l.instance)
}
// CN: 设置父容器双缓冲。
// EN: Set Parent container double buffering.
func (l *TListBox) SetParentDoubleBuffered(value bool) {
ListBox_SetParentDoubleBuffered(l.instance, value)
}
// CN: 获取父容器字体。
// EN: Get Parent container font.
func (l *TListBox) ParentFont() bool {
return ListBox_GetParentFont(l.instance)
}
// CN: 设置父容器字体。
// EN: Set Parent container font.
func (l *TListBox) SetParentFont(value bool) {
ListBox_SetParentFont(l.instance, value)
}
// CN: 获取以父容器的ShowHint属性为准。
// EN: .
func (l *TListBox) ParentShowHint() bool {
return ListBox_GetParentShowHint(l.instance)
}
// CN: 设置以父容器的ShowHint属性为准。
// EN: .
func (l *TListBox) SetParentShowHint(value bool) {
ListBox_SetParentShowHint(l.instance, value)
}
// CN: 获取右键菜单。
// EN: Get Right click menu.
func (l *TListBox) PopupMenu() *TPopupMenu {
return AsPopupMenu(ListBox_GetPopupMenu(l.instance))
}
// CN: 设置右键菜单。
// EN: Set Right click menu.
func (l *TListBox) SetPopupMenu(value IComponent) {
ListBox_SetPopupMenu(l.instance, CheckPtr(value))
}
// CN: 获取显示鼠标悬停提示。
// EN: Get Show mouseover tips.
func (l *TListBox) ShowHint() bool {
return ListBox_GetShowHint(l.instance)
}
// CN: 设置显示鼠标悬停提示。
// EN: Set Show mouseover tips.
func (l *TListBox) SetShowHint(value bool) {
ListBox_SetShowHint(l.instance, value)
}
func (l *TListBox) Sorted() bool {
return ListBox_GetSorted(l.instance)
}
func (l *TListBox) SetSorted(value bool) {
ListBox_SetSorted(l.instance, value)
}
// CN: 获取Tab切换顺序序号。
// EN: Get Tab switching sequence number.
func (l *TListBox) TabOrder() TTabOrder {
return ListBox_GetTabOrder(l.instance)
}
// CN: 设置Tab切换顺序序号。
// EN: Set Tab switching sequence number.
func (l *TListBox) SetTabOrder(value TTabOrder) {
ListBox_SetTabOrder(l.instance, value)
}
// CN: 获取Tab可停留。
// EN: Get Tab can stay.
func (l *TListBox) TabStop() bool {
return ListBox_GetTabStop(l.instance)
}
// CN: 设置Tab可停留。
// EN: Set Tab can stay.
func (l *TListBox) SetTabStop(value bool) {
ListBox_SetTabStop(l.instance, value)
}
// CN: 获取控件可视。
// EN: Get the control visible.
func (l *TListBox) Visible() bool {
return ListBox_GetVisible(l.instance)
}
// CN: 设置控件可视。
// EN: Set the control visible.
func (l *TListBox) SetVisible(value bool) {
ListBox_SetVisible(l.instance, value)
}
// CN: 设置控件单击事件。
// EN: Set control click event.
func (l *TListBox) SetOnClick(fn TNotifyEvent) {
ListBox_SetOnClick(l.instance, fn)
}
// CN: 设置上下文弹出事件,一般是右键时弹出。
// EN: Set Context popup event, usually pop up when right click.
func (l *TListBox) SetOnContextPopup(fn TContextPopupEvent) {
ListBox_SetOnContextPopup(l.instance, fn)
}
// CN: 设置双击事件。
// EN: .
func (l *TListBox) SetOnDblClick(fn TNotifyEvent) {
ListBox_SetOnDblClick(l.instance, fn)
}
// CN: 设置拖拽下落事件。
// EN: Set Drag and drop event.
func (l *TListBox) SetOnDragDrop(fn TDragDropEvent) {
ListBox_SetOnDragDrop(l.instance, fn)
}
// CN: 设置拖拽完成事件。
// EN: Set Drag and drop completion event.
func (l *TListBox) SetOnDragOver(fn TDragOverEvent) {
ListBox_SetOnDragOver(l.instance, fn)
}
func (l *TListBox) SetOnDrawItem(fn TDrawItemEvent) {
ListBox_SetOnDrawItem(l.instance, fn)
}
// CN: 设置拖拽结束。
// EN: Set End of drag.
func (l *TListBox) SetOnEndDrag(fn TEndDragEvent) {
ListBox_SetOnEndDrag(l.instance, fn)
}
// CN: 设置焦点进入。
// EN: Set Focus entry.
func (l *TListBox) SetOnEnter(fn TNotifyEvent) {
ListBox_SetOnEnter(l.instance, fn)
}
// CN: 设置焦点退出。
// EN: Set Focus exit.
func (l *TListBox) SetOnExit(fn TNotifyEvent) {
ListBox_SetOnExit(l.instance, fn)
}
// CN: 设置键盘按键按下事件。
// EN: Set Keyboard button press event.
func (l *TListBox) SetOnKeyDown(fn TKeyEvent) {
ListBox_SetOnKeyDown(l.instance, fn)
}
func (l *TListBox) SetOnKeyPress(fn TKeyPressEvent) {
ListBox_SetOnKeyPress(l.instance, fn)
}
// CN: 设置键盘按键抬起事件。
// EN: Set Keyboard button lift event.
func (l *TListBox) SetOnKeyUp(fn TKeyEvent) {
ListBox_SetOnKeyUp(l.instance, fn)
}
func (l *TListBox) SetOnMeasureItem(fn TMeasureItemEvent) {
ListBox_SetOnMeasureItem(l.instance, fn)
}
// CN: 设置鼠标按下事件。
// EN: Set Mouse down event.
func (l *TListBox) SetOnMouseDown(fn TMouseEvent) {
ListBox_SetOnMouseDown(l.instance, fn)
}
// CN: 设置鼠标进入事件。
// EN: Set Mouse entry event.
func (l *TListBox) SetOnMouseEnter(fn TNotifyEvent) {
ListBox_SetOnMouseEnter(l.instance, fn)
}
// CN: 设置鼠标离开事件。
// EN: Set Mouse leave event.
func (l *TListBox) SetOnMouseLeave(fn TNotifyEvent) {
ListBox_SetOnMouseLeave(l.instance, fn)
}
// CN: 设置鼠标移动事件。
// EN: .
func (l *TListBox) SetOnMouseMove(fn TMouseMoveEvent) {
ListBox_SetOnMouseMove(l.instance, fn)
}
// CN: 设置鼠标抬起事件。
// EN: Set Mouse lift event.
func (l *TListBox) SetOnMouseUp(fn TMouseEvent) {
ListBox_SetOnMouseUp(l.instance, fn)
}
// CN: 获取画布。
// EN: .
func (l *TListBox) Canvas() *TCanvas {
return AsCanvas(ListBox_GetCanvas(l.instance))
}
func (l *TListBox) Count() int32 {
return ListBox_GetCount(l.instance)
}
func (l *TListBox) SelCount() int32 {
return ListBox_GetSelCount(l.instance)
}
func (l *TListBox) ItemIndex() int32 {
return ListBox_GetItemIndex(l.instance)
}
func (l *TListBox) SetItemIndex(value int32) {
ListBox_SetItemIndex(l.instance, value)
}
// CN: 获取依靠客户端总数。
// EN: .
func (l *TListBox) DockClientCount() int32 {
return ListBox_GetDockClientCount(l.instance)
}
// CN: 获取停靠站点。
// EN: Get Docking site.
func (l *TListBox) DockSite() bool {
return ListBox_GetDockSite(l.instance)
}
// CN: 设置停靠站点。
// EN: Set Docking site.
func (l *TListBox) SetDockSite(value bool) {
ListBox_SetDockSite(l.instance, value)
}
// CN: 获取鼠标是否在客户端,仅VCL有效。
// EN: Get Whether the mouse is on the client, only VCL is valid.
func (l *TListBox) MouseInClient() bool {
return ListBox_GetMouseInClient(l.instance)
}
// CN: 获取当前停靠的可视总数。
// EN: Get The total number of visible calls currently docked.
func (l *TListBox) VisibleDockClientCount() int32 {
return ListBox_GetVisibleDockClientCount(l.instance)
}
// CN: 获取画刷对象。
// EN: Get Brush.
func (l *TListBox) Brush() *TBrush {
return AsBrush(ListBox_GetBrush(l.instance))
}
// CN: 获取子控件数。
// EN: Get Number of child controls.
func (l *TListBox) ControlCount() int32 {
return ListBox_GetControlCount(l.instance)
}
// CN: 获取控件句柄。
// EN: Get Control handle.
func (l *TListBox) Handle() HWND {
return ListBox_GetHandle(l.instance)
}
// CN: 获取父容器句柄。
// EN: Get Parent container handle.
func (l *TListBox) ParentWindow() HWND {
return ListBox_GetParentWindow(l.instance)
}
// CN: 设置父容器句柄。
// EN: Set Parent container handle.
func (l *TListBox) SetParentWindow(value HWND) {
ListBox_SetParentWindow(l.instance, value)
}
func (l *TListBox) Showing() bool {
return ListBox_GetShowing(l.instance)
}
// CN: 获取使用停靠管理。
// EN: .
func (l *TListBox) UseDockManager() bool {
return ListBox_GetUseDockManager(l.instance)
}
// CN: 设置使用停靠管理。
// EN: .
func (l *TListBox) SetUseDockManager(value bool) {
ListBox_SetUseDockManager(l.instance, value)
}
func (l *TListBox) Action() *TAction {
return AsAction(ListBox_GetAction(l.instance))
}
func (l *TListBox) SetAction(value IComponent) {
ListBox_SetAction(l.instance, CheckPtr(value))
}
func (l *TListBox) BoundsRect() TRect {
return ListBox_GetBoundsRect(l.instance)
}
func (l *TListBox) SetBoundsRect(value TRect) {
ListBox_SetBoundsRect(l.instance, value)
}
// CN: 获取客户区高度。
// EN: Get client height.
func (l *TListBox) ClientHeight() int32 {
return ListBox_GetClientHeight(l.instance)
}
// CN: 设置客户区高度。
// EN: Set client height.
func (l *TListBox) SetClientHeight(value int32) {
ListBox_SetClientHeight(l.instance, value)
}
func (l *TListBox) ClientOrigin() TPoint {
return ListBox_GetClientOrigin(l.instance)
}
// CN: 获取客户区矩形。
// EN: Get client rectangle.
func (l *TListBox) ClientRect() TRect {
return ListBox_GetClientRect(l.instance)
}
// CN: 获取客户区宽度。
// EN: Get client width.
func (l *TListBox) ClientWidth() int32 {
return ListBox_GetClientWidth(l.instance)
}
// CN: 设置客户区宽度。
// EN: Set client width.
func (l *TListBox) SetClientWidth(value int32) {
ListBox_SetClientWidth(l.instance, value)
}
// CN: 获取控件状态。
// EN: Get control state.
func (l *TListBox) ControlState() TControlState {
return ListBox_GetControlState(l.instance)
}
// CN: 设置控件状态。
// EN: Set control state.
func (l *TListBox) SetControlState(value TControlState) {
ListBox_SetControlState(l.instance, value)
}
// CN: 获取控件样式。
// EN: Get control style.
func (l *TListBox) ControlStyle() TControlStyle {
return ListBox_GetControlStyle(l.instance)
}
// CN: 设置控件样式。
// EN: Set control style.
func (l *TListBox) SetControlStyle(value TControlStyle) {
ListBox_SetControlStyle(l.instance, value)
}
func (l *TListBox) Floating() bool {
return ListBox_GetFloating(l.instance)
}
// CN: 获取控件父容器。
// EN: Get control parent container.
func (l *TListBox) Parent() *TWinControl {
return AsWinControl(ListBox_GetParent(l.instance))
}
// CN: 设置控件父容器。
// EN: Set control parent container.
func (l *TListBox) SetParent(value IWinControl) {
ListBox_SetParent(l.instance, CheckPtr(value))
}
// CN: 获取左边位置。
// EN: Get Left position.
func (l *TListBox) Left() int32 {
return ListBox_GetLeft(l.instance)
}
// CN: 设置左边位置。
// EN: Set Left position.
func (l *TListBox) SetLeft(value int32) {
ListBox_SetLeft(l.instance, value)
}
// CN: 获取顶边位置。
// EN: Get Top position.
func (l *TListBox) Top() int32 {
return ListBox_GetTop(l.instance)
}
// CN: 设置顶边位置。
// EN: Set Top position.
func (l *TListBox) SetTop(value int32) {
ListBox_SetTop(l.instance, value)
}
// CN: 获取宽度。
// EN: Get width.
func (l *TListBox) Width() int32 {
return ListBox_GetWidth(l.instance)
}
// CN: 设置宽度。
// EN: Set width.
func (l *TListBox) SetWidth(value int32) {
ListBox_SetWidth(l.instance, value)
}
// CN: 获取高度。
// EN: Get height.
func (l *TListBox) Height() int32 {
return ListBox_GetHeight(l.instance)
}
// CN: 设置高度。
// EN: Set height.
func (l *TListBox) SetHeight(value int32) {
ListBox_SetHeight(l.instance, value)
}
// CN: 获取控件光标。
// EN: Get control cursor.
func (l *TListBox) Cursor() TCursor {
return ListBox_GetCursor(l.instance)
}
// CN: 设置控件光标。
// EN: Set control cursor.
func (l *TListBox) SetCursor(value TCursor) {
ListBox_SetCursor(l.instance, value)
}
// CN: 获取组件鼠标悬停提示。
// EN: Get component mouse hints.
func (l *TListBox) Hint() string {
return ListBox_GetHint(l.instance)
}
// CN: 设置组件鼠标悬停提示。
// EN: Set component mouse hints.
func (l *TListBox) SetHint(value string) {
ListBox_SetHint(l.instance, value)
}
// CN: 获取组件总数。
// EN: Get the total number of components.
func (l *TListBox) ComponentCount() int32 {
return ListBox_GetComponentCount(l.instance)
}
// CN: 获取组件索引。
// EN: Get component index.
func (l *TListBox) ComponentIndex() int32 {
return ListBox_GetComponentIndex(l.instance)
}
// CN: 设置组件索引。
// EN: Set component index.
func (l *TListBox) SetComponentIndex(value int32) {
ListBox_SetComponentIndex(l.instance, value)
}
// CN: 获取组件所有者。
// EN: Get component owner.
func (l *TListBox) Owner() *TComponent {
return AsComponent(ListBox_GetOwner(l.instance))
}
// CN: 获取组件名称。
// EN: Get the component name.
func (l *TListBox) Name() string {
return ListBox_GetName(l.instance)
}
// CN: 设置组件名称。
// EN: Set the component name.
func (l *TListBox) SetName(value string) {
ListBox_SetName(l.instance, value)
}
// CN: 获取对象标记。
// EN: Get the control tag.
func (l *TListBox) Tag() int {
return ListBox_GetTag(l.instance)
}
// CN: 设置对象标记。
// EN: Set the control tag.
func (l *TListBox) SetTag(value int) {
ListBox_SetTag(l.instance, value)
}
// CN: 获取左边锚点。
// EN: .
func (l *TListBox) AnchorSideLeft() *TAnchorSide {
return AsAnchorSide(ListBox_GetAnchorSideLeft(l.instance))
}
// CN: 设置左边锚点。
// EN: .
func (l *TListBox) SetAnchorSideLeft(value *TAnchorSide) {
ListBox_SetAnchorSideLeft(l.instance, CheckPtr(value))
}
// CN: 获取顶边锚点。
// EN: .
func (l *TListBox) AnchorSideTop() *TAnchorSide {
return AsAnchorSide(ListBox_GetAnchorSideTop(l.instance))
}
// CN: 设置顶边锚点。
// EN: .
func (l *TListBox) SetAnchorSideTop(value *TAnchorSide) {
ListBox_SetAnchorSideTop(l.instance, CheckPtr(value))
}
// CN: 获取右边锚点。
// EN: .
func (l *TListBox) AnchorSideRight() *TAnchorSide {
return AsAnchorSide(ListBox_GetAnchorSideRight(l.instance))
}
// CN: 设置右边锚点。
// EN: .
func (l *TListBox) SetAnchorSideRight(value *TAnchorSide) {
ListBox_SetAnchorSideRight(l.instance, CheckPtr(value))
}
// CN: 获取底边锚点。
// EN: .
func (l *TListBox) AnchorSideBottom() *TAnchorSide {
return AsAnchorSide(ListBox_GetAnchorSideBottom(l.instance))
}
// CN: 设置底边锚点。
// EN: .
func (l *TListBox) SetAnchorSideBottom(value *TAnchorSide) {
ListBox_SetAnchorSideBottom(l.instance, CheckPtr(value))
}
func (l *TListBox) ChildSizing() *TControlChildSizing {
return AsControlChildSizing(ListBox_GetChildSizing(l.instance))
}
func (l *TListBox) SetChildSizing(value *TControlChildSizing) {
ListBox_SetChildSizing(l.instance, CheckPtr(value))
}
// CN: 获取边框间距。
// EN: .
func (l *TListBox) BorderSpacing() *TControlBorderSpacing {
return AsControlBorderSpacing(ListBox_GetBorderSpacing(l.instance))
}
// CN: 设置边框间距。
// EN: .
func (l *TListBox) SetBorderSpacing(value *TControlBorderSpacing) {
ListBox_SetBorderSpacing(l.instance, CheckPtr(value))
}
func (l *TListBox) Selected(Index int32) bool {
return ListBox_GetSelected(l.instance, Index)
}
func (l *TListBox) SetSelected(Index int32, value bool) {
ListBox_SetSelected(l.instance, Index, value)
}
// CN: 获取指定索引停靠客户端。
// EN: .
func (l *TListBox) DockClients(Index int32) *TControl {
return AsControl(ListBox_GetDockClients(l.instance, Index))
}
// CN: 获取指定索引子控件。
// EN: .
func (l *TListBox) Controls(Index int32) *TControl {
return AsControl(ListBox_GetControls(l.instance, Index))
}
// CN: 获取指定索引组件。
// EN: Get the specified index component.
func (l *TListBox) Components(AIndex int32) *TComponent {
return AsComponent(ListBox_GetComponents(l.instance, AIndex))
}
// CN: 获取锚侧面。
// EN: .
func (l *TListBox) AnchorSide(AKind TAnchorKind) *TAnchorSide {
return AsAnchorSide(ListBox_GetAnchorSide(l.instance, AKind))
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ying32/govcl.git
git@gitee.com:ying32/govcl.git
ying32
govcl
govcl
v2.0.3

搜索帮助