79 Star 313 Fork 53

不在乎y/govcl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
listbox.go 33.78 KB
一键复制 编辑 原始数据 按行查看 历史
不在乎y 提交于 2020-08-14 12:18 . Add some methods and attributes.
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445
//----------------------------------------
// 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
}
// 创建一个新的对象。
//
// Create a new object.
func NewListBox(owner IComponent) *TListBox {
l := new(TListBox)
l.instance = ListBox_Create(CheckPtr(owner))
l.ptr = unsafe.Pointer(l.instance)
return l
}
// 动态转换一个已存在的对象实例。
//
// Dynamically convert an existing object instance.
func AsListBox(obj interface{}) *TListBox {
instance, ptr := getInstance(obj)
if instance == 0 { return nil }
return &TListBox{instance: instance, ptr: ptr}
}
// -------------------------- Deprecated begin --------------------------
// 新建一个对象来自已经存在的对象实例指针。
//
// Create a new object from an existing object instance pointer.
// Deprecated: use AsListBox.
func ListBoxFromInst(inst uintptr) *TListBox {
return AsListBox(inst)
}
// 新建一个对象来自已经存在的对象实例。
//
// Create a new object from an existing object instance.
// Deprecated: use AsListBox.
func ListBoxFromObj(obj IObject) *TListBox {
return AsListBox(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 AsListBox.
func ListBoxFromUnsafePointer(ptr unsafe.Pointer) *TListBox {
return AsListBox(ptr)
}
// -------------------------- Deprecated end --------------------------
// 释放对象。
//
// Free object.
func (l *TListBox) Free() {
if l.instance != 0 {
ListBox_Free(l.instance)
l.instance, l.ptr = 0, nullptr
}
}
// 返回对象实例指针。
//
// Return object instance pointer.
func (l *TListBox) Instance() uintptr {
return l.instance
}
// 获取一个不安全的地址。
//
// Get an unsafe address.
func (l *TListBox) UnsafeAddr() unsafe.Pointer {
return l.ptr
}
// 检测地址是否为空。
//
// Check if the address is empty.
func (l *TListBox) IsValid() bool {
return l.instance != 0
}
// 检测当前对象是否继承自目标对象。
//
// Checks whether the current object is inherited from the target object.
func (l *TListBox) Is() TIs {
return TIs(l.instance)
}
// 动态转换当前对象为目标对象。
//
// Dynamically convert the current object to the target object.
//func (l *TListBox) As() TAs {
// return TAs(l.instance)
//}
// 获取类信息指针。
//
// 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))
}
// 清除。
func (l *TListBox) Clear() {
ListBox_Clear(l.instance)
}
// 清除选择。
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)
}
// 全选。
func (l *TListBox) SelectAll() {
ListBox_SelectAll(l.instance)
}
// 是否可以获得焦点。
func (l *TListBox) CanFocus() bool {
return ListBox_CanFocus(l.instance)
}
// 返回是否包含指定控件。
//
// it's contain a specified control.
func (l *TListBox) ContainsControl(Control IControl) bool {
return ListBox_ContainsControl(l.instance, CheckPtr(Control))
}
// 返回指定坐标及相关属性位置控件。
//
// 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))
}
// 禁用控件的对齐。
//
// Disable control alignment.
func (l *TListBox) DisableAlign() {
ListBox_DisableAlign(l.instance)
}
// 启用控件对齐。
//
// Enabled control alignment.
func (l *TListBox) EnableAlign() {
ListBox_EnableAlign(l.instance)
}
// 查找子控件。
//
// 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)
}
// 返回是否获取焦点。
//
// Return to get focus.
func (l *TListBox) Focused() bool {
return ListBox_Focused(l.instance)
}
// 句柄是否已经分配。
//
// Is the handle already allocated.
func (l *TListBox) HandleAllocated() bool {
return ListBox_HandleAllocated(l.instance)
}
// 插入一个控件。
//
// Insert a control.
func (l *TListBox) InsertControl(AControl IControl) {
ListBox_InsertControl(l.instance, CheckPtr(AControl))
}
// 要求重绘。
//
// Redraw.
func (l *TListBox) Invalidate() {
ListBox_Invalidate(l.instance)
}
// 绘画至指定DC。
//
// Painting to the specified DC.
func (l *TListBox) PaintTo(DC HDC, X int32, Y int32) {
ListBox_PaintTo(l.instance, DC , X , Y)
}
// 移除一个控件。
//
// Remove a control.
func (l *TListBox) RemoveControl(AControl IControl) {
ListBox_RemoveControl(l.instance, CheckPtr(AControl))
}
// 重新对齐。
//
// Realign.
func (l *TListBox) Realign() {
ListBox_Realign(l.instance)
}
// 重绘。
//
// Repaint.
func (l *TListBox) Repaint() {
ListBox_Repaint(l.instance)
}
// 按比例缩放。
//
// Scale by.
func (l *TListBox) ScaleBy(M int32, D int32) {
ListBox_ScaleBy(l.instance, M , D)
}
// 滚动至指定位置。
//
// Scroll by.
func (l *TListBox) ScrollBy(DeltaX int32, DeltaY int32) {
ListBox_ScrollBy(l.instance, DeltaX , DeltaY)
}
// 设置组件边界。
//
// Set component boundaries.
func (l *TListBox) SetBounds(ALeft int32, ATop int32, AWidth int32, AHeight int32) {
ListBox_SetBounds(l.instance, ALeft , ATop , AWidth , AHeight)
}
// 设置控件焦点。
//
// Set control focus.
func (l *TListBox) SetFocus() {
ListBox_SetFocus(l.instance)
}
// 控件更新。
//
// Update.
func (l *TListBox) Update() {
ListBox_Update(l.instance)
}
// 将控件置于最前。
//
// Bring the control to the front.
func (l *TListBox) BringToFront() {
ListBox_BringToFront(l.instance)
}
// 将客户端坐标转为绝对的屏幕坐标。
//
// Convert client coordinates to absolute screen coordinates.
func (l *TListBox) ClientToScreen(Point TPoint) TPoint {
return ListBox_ClientToScreen(l.instance, Point)
}
// 将客户端坐标转为父容器坐标。
//
// Convert client coordinates to parent container coordinates.
func (l *TListBox) ClientToParent(Point TPoint, AParent IWinControl) TPoint {
return ListBox_ClientToParent(l.instance, Point , CheckPtr(AParent))
}
// 是否在拖拽中。
//
// Is it in the middle of dragging.
func (l *TListBox) Dragging() bool {
return ListBox_Dragging(l.instance)
}
// 是否有父容器。
//
// Is there a parent container.
func (l *TListBox) HasParent() bool {
return ListBox_HasParent(l.instance)
}
// 隐藏控件。
//
// Hidden control.
func (l *TListBox) Hide() {
ListBox_Hide(l.instance)
}
// 发送一个消息。
//
// Send a message.
func (l *TListBox) Perform(Msg uint32, WParam uintptr, LParam int) int {
return ListBox_Perform(l.instance, Msg , WParam , LParam)
}
// 刷新控件。
//
// Refresh control.
func (l *TListBox) Refresh() {
ListBox_Refresh(l.instance)
}
// 将屏幕坐标转为客户端坐标。
//
// Convert screen coordinates to client coordinates.
func (l *TListBox) ScreenToClient(Point TPoint) TPoint {
return ListBox_ScreenToClient(l.instance, Point)
}
// 将父容器坐标转为客户端坐标。
//
// Convert parent container coordinates to client coordinates.
func (l *TListBox) ParentToClient(Point TPoint, AParent IWinControl) TPoint {
return ListBox_ParentToClient(l.instance, Point , CheckPtr(AParent))
}
// 控件至于最后面。
//
// The control is placed at the end.
func (l *TListBox) SendToBack() {
ListBox_SendToBack(l.instance)
}
// 显示控件。
//
// Show control.
func (l *TListBox) Show() {
ListBox_Show(l.instance)
}
// 获取控件的字符,如果有。
//
// Get the characters of the control, if any.
func (l *TListBox) GetTextBuf(Buffer *string, BufSize int32) int32 {
return ListBox_GetTextBuf(l.instance, Buffer , BufSize)
}
// 获取控件的字符长,如果有。
//
// Get the character length of the control, if any.
func (l *TListBox) GetTextLen() int32 {
return ListBox_GetTextLen(l.instance)
}
// 设置控件字符,如果有。
//
// Set control characters, if any.
func (l *TListBox) SetTextBuf(Buffer string) {
ListBox_SetTextBuf(l.instance, Buffer)
}
// 查找指定名称的组件。
//
// Find the component with the specified name.
func (l *TListBox) FindComponent(AName string) *TComponent {
return AsComponent(ListBox_FindComponent(l.instance, AName))
}
// 获取类名路径。
//
// Get the class name path.
func (l *TListBox) GetNamePath() string {
return ListBox_GetNamePath(l.instance)
}
// 复制一个对象,如果对象实现了此方法的话。
//
// Copy an object, if the object implements this method.
func (l *TListBox) Assign(Source IObject) {
ListBox_Assign(l.instance, CheckPtr(Source))
}
// 获取类的类型信息。
//
// Get class type information.
func (l *TListBox) ClassType() TClass {
return ListBox_ClassType(l.instance)
}
// 获取当前对象类名称。
//
// Get the current object class name.
func (l *TListBox) ClassName() string {
return ListBox_ClassName(l.instance)
}
// 获取当前对象实例大小。
//
// Get the current object instance size.
func (l *TListBox) InstanceSize() int32 {
return ListBox_InstanceSize(l.instance)
}
// 判断当前类是否继承自指定类。
//
// Determine whether the current class inherits from the specified class.
func (l *TListBox) InheritsFrom(AClass TClass) bool {
return ListBox_InheritsFrom(l.instance, AClass)
}
// 与一个对象进行比较。
//
// Compare with an object.
func (l *TListBox) Equals(Obj IObject) bool {
return ListBox_Equals(l.instance, CheckPtr(Obj))
}
// 获取类的哈希值。
//
// Get the hash value of the class.
func (l *TListBox) GetHashCode() int32 {
return ListBox_GetHashCode(l.instance)
}
// 文本类信息。
//
// 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))
}
// 置于指定控件的横向中心。
func (l *TListBox) AnchorHorizontalCenterTo(ASibling IControl) {
ListBox_AnchorHorizontalCenterTo(l.instance, CheckPtr(ASibling))
}
// 置于指定控件的纵向中心。
func (l *TListBox) AnchorVerticalCenterTo(ASibling IControl) {
ListBox_AnchorVerticalCenterTo(l.instance, CheckPtr(ASibling))
}
func (l *TListBox) AnchorSame(ASide TAnchorKind, ASibling IControl) {
ListBox_AnchorSame(l.instance, ASide , 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) ScaleDesignToForm(ASize int32) int32 {
return ListBox_ScaleDesignToForm(l.instance, ASize)
}
func (l *TListBox) ScaleFormToDesign(ASize int32) int32 {
return ListBox_ScaleFormToDesign(l.instance, ASize)
}
func (l *TListBox) Scale96ToForm(ASize int32) int32 {
return ListBox_Scale96ToForm(l.instance, ASize)
}
func (l *TListBox) ScaleFormTo96(ASize int32) int32 {
return ListBox_ScaleFormTo96(l.instance, ASize)
}
func (l *TListBox) Scale96ToFont(ASize int32) int32 {
return ListBox_Scale96ToFont(l.instance, ASize)
}
func (l *TListBox) ScaleFontTo96(ASize int32) int32 {
return ListBox_ScaleFontTo96(l.instance, ASize)
}
func (l *TListBox) ScaleScreenToFont(ASize int32) int32 {
return ListBox_ScaleScreenToFont(l.instance, ASize)
}
func (l *TListBox) ScaleFontToScreen(ASize int32) int32 {
return ListBox_ScaleFontToScreen(l.instance, ASize)
}
func (l *TListBox) Scale96ToScreen(ASize int32) int32 {
return ListBox_Scale96ToScreen(l.instance, ASize)
}
func (l *TListBox) ScaleScreenTo96(ASize int32) int32 {
return ListBox_ScaleScreenTo96(l.instance, ASize)
}
func (l *TListBox) AutoAdjustLayout(AMode TLayoutAdjustmentPolicy, AFromPPI int32, AToPPI int32, AOldFormWidth int32, ANewFormWidth int32) {
ListBox_AutoAdjustLayout(l.instance, AMode , AFromPPI , AToPPI , AOldFormWidth , ANewFormWidth)
}
func (l *TListBox) FixDesignFontsPPI(ADesignTimePPI int32) {
ListBox_FixDesignFontsPPI(l.instance, ADesignTimePPI)
}
func (l *TListBox) ScaleFontsPPI(AToPPI int32, AProportion float64) {
ListBox_ScaleFontsPPI(l.instance, AToPPI , AProportion)
}
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)
}
// 获取控件自动调整。
//
// Get Control automatically adjusts.
func (l *TListBox) Align() TAlign {
return ListBox_GetAlign(l.instance)
}
// 设置控件自动调整。
//
// Set Control automatically adjusts.
func (l *TListBox) SetAlign(value TAlign) {
ListBox_SetAlign(l.instance, value)
}
// 获取四个角位置的锚点。
func (l *TListBox) Anchors() TAnchors {
return ListBox_GetAnchors(l.instance)
}
// 设置四个角位置的锚点。
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)
}
// 获取窗口边框样式。比如:无边框,单一边框等。
func (l *TListBox) BorderStyle() TBorderStyle {
return ListBox_GetBorderStyle(l.instance)
}
// 设置窗口边框样式。比如:无边框,单一边框等。
func (l *TListBox) SetBorderStyle(value TBorderStyle) {
ListBox_SetBorderStyle(l.instance, value)
}
// 获取颜色。
//
// Get color.
func (l *TListBox) Color() TColor {
return ListBox_GetColor(l.instance)
}
// 设置颜色。
//
// 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)
}
// 获取约束控件大小。
func (l *TListBox) Constraints() *TSizeConstraints {
return AsSizeConstraints(ListBox_GetConstraints(l.instance))
}
// 设置约束控件大小。
func (l *TListBox) SetConstraints(value *TSizeConstraints) {
ListBox_SetConstraints(l.instance, CheckPtr(value))
}
// 获取设置控件双缓冲。
//
// Get Set control double buffering.
func (l *TListBox) DoubleBuffered() bool {
return ListBox_GetDoubleBuffered(l.instance)
}
// 设置设置控件双缓冲。
//
// Set Set control double buffering.
func (l *TListBox) SetDoubleBuffered(value bool) {
ListBox_SetDoubleBuffered(l.instance, value)
}
// 获取设置控件拖拽时的光标。
//
// Get Set the cursor when the control is dragged.
func (l *TListBox) DragCursor() TCursor {
return ListBox_GetDragCursor(l.instance)
}
// 设置设置控件拖拽时的光标。
//
// Set Set the cursor when the control is dragged.
func (l *TListBox) SetDragCursor(value TCursor) {
ListBox_SetDragCursor(l.instance, value)
}
// 获取拖拽方式。
//
// Get Drag and drop.
func (l *TListBox) DragKind() TDragKind {
return ListBox_GetDragKind(l.instance)
}
// 设置拖拽方式。
//
// Set Drag and drop.
func (l *TListBox) SetDragKind(value TDragKind) {
ListBox_SetDragKind(l.instance, value)
}
// 获取拖拽模式。
//
// Get Drag mode.
func (l *TListBox) DragMode() TDragMode {
return ListBox_GetDragMode(l.instance)
}
// 设置拖拽模式。
//
// Set Drag mode.
func (l *TListBox) SetDragMode(value TDragMode) {
ListBox_SetDragMode(l.instance, value)
}
// 获取控件启用。
//
// Get the control enabled.
func (l *TListBox) Enabled() bool {
return ListBox_GetEnabled(l.instance)
}
// 设置控件启用。
//
// Set the control enabled.
func (l *TListBox) SetEnabled(value bool) {
ListBox_SetEnabled(l.instance, value)
}
func (l *TListBox) ExtendedSelect() bool {
return ListBox_GetExtendedSelect(l.instance)
}
func (l *TListBox) SetExtendedSelect(value bool) {
ListBox_SetExtendedSelect(l.instance, value)
}
// 获取字体。
//
// Get Font.
func (l *TListBox) Font() *TFont {
return AsFont(ListBox_GetFont(l.instance))
}
// 设置字体。
//
// 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 IStrings) {
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)
}
// 获取使用父容器颜色。
//
// Get parent color.
func (l *TListBox) ParentColor() bool {
return ListBox_GetParentColor(l.instance)
}
// 设置使用父容器颜色。
//
// Set parent color.
func (l *TListBox) SetParentColor(value bool) {
ListBox_SetParentColor(l.instance, value)
}
// 获取使用父容器双缓冲。
//
// Get Parent container double buffering.
func (l *TListBox) ParentDoubleBuffered() bool {
return ListBox_GetParentDoubleBuffered(l.instance)
}
// 设置使用父容器双缓冲。
//
// Set Parent container double buffering.
func (l *TListBox) SetParentDoubleBuffered(value bool) {
ListBox_SetParentDoubleBuffered(l.instance, value)
}
// 获取使用父容器字体。
//
// Get Parent container font.
func (l *TListBox) ParentFont() bool {
return ListBox_GetParentFont(l.instance)
}
// 设置使用父容器字体。
//
// Set Parent container font.
func (l *TListBox) SetParentFont(value bool) {
ListBox_SetParentFont(l.instance, value)
}
// 获取以父容器的ShowHint属性为准。
func (l *TListBox) ParentShowHint() bool {
return ListBox_GetParentShowHint(l.instance)
}
// 设置以父容器的ShowHint属性为准。
func (l *TListBox) SetParentShowHint(value bool) {
ListBox_SetParentShowHint(l.instance, value)
}
// 获取右键菜单。
//
// Get Right click menu.
func (l *TListBox) PopupMenu() *TPopupMenu {
return AsPopupMenu(ListBox_GetPopupMenu(l.instance))
}
// 设置右键菜单。
//
// Set Right click menu.
func (l *TListBox) SetPopupMenu(value IComponent) {
ListBox_SetPopupMenu(l.instance, CheckPtr(value))
}
// 获取显示鼠标悬停提示。
//
// Get Show mouseover tips.
func (l *TListBox) ShowHint() bool {
return ListBox_GetShowHint(l.instance)
}
// 设置显示鼠标悬停提示。
//
// 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)
}
// 获取Tab切换顺序序号。
//
// Get Tab switching sequence number.
func (l *TListBox) TabOrder() TTabOrder {
return ListBox_GetTabOrder(l.instance)
}
// 设置Tab切换顺序序号。
//
// Set Tab switching sequence number.
func (l *TListBox) SetTabOrder(value TTabOrder) {
ListBox_SetTabOrder(l.instance, value)
}
// 获取Tab可停留。
//
// Get Tab can stay.
func (l *TListBox) TabStop() bool {
return ListBox_GetTabStop(l.instance)
}
// 设置Tab可停留。
//
// Set Tab can stay.
func (l *TListBox) SetTabStop(value bool) {
ListBox_SetTabStop(l.instance, value)
}
// 获取控件可视。
//
// Get the control visible.
func (l *TListBox) Visible() bool {
return ListBox_GetVisible(l.instance)
}
// 设置控件可视。
//
// Set the control visible.
func (l *TListBox) SetVisible(value bool) {
ListBox_SetVisible(l.instance, value)
}
// 设置控件单击事件。
//
// Set control click event.
func (l *TListBox) SetOnClick(fn TNotifyEvent) {
ListBox_SetOnClick(l.instance, fn)
}
// 设置上下文弹出事件,一般是右键时弹出。
//
// Set Context popup event, usually pop up when right click.
func (l *TListBox) SetOnContextPopup(fn TContextPopupEvent) {
ListBox_SetOnContextPopup(l.instance, fn)
}
// 设置双击事件。
func (l *TListBox) SetOnDblClick(fn TNotifyEvent) {
ListBox_SetOnDblClick(l.instance, fn)
}
// 设置拖拽下落事件。
//
// Set Drag and drop event.
func (l *TListBox) SetOnDragDrop(fn TDragDropEvent) {
ListBox_SetOnDragDrop(l.instance, fn)
}
// 设置拖拽完成事件。
//
// 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)
}
// 设置拖拽结束。
//
// Set End of drag.
func (l *TListBox) SetOnEndDrag(fn TEndDragEvent) {
ListBox_SetOnEndDrag(l.instance, fn)
}
// 设置焦点进入。
//
// Set Focus entry.
func (l *TListBox) SetOnEnter(fn TNotifyEvent) {
ListBox_SetOnEnter(l.instance, fn)
}
// 设置焦点退出。
//
// Set Focus exit.
func (l *TListBox) SetOnExit(fn TNotifyEvent) {
ListBox_SetOnExit(l.instance, fn)
}
// 设置键盘按键按下事件。
//
// 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)
}
// 设置键盘按键抬起事件。
//
// 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)
}
// 设置鼠标按下事件。
//
// Set Mouse down event.
func (l *TListBox) SetOnMouseDown(fn TMouseEvent) {
ListBox_SetOnMouseDown(l.instance, fn)
}
// 设置鼠标进入事件。
//
// Set Mouse entry event.
func (l *TListBox) SetOnMouseEnter(fn TNotifyEvent) {
ListBox_SetOnMouseEnter(l.instance, fn)
}
// 设置鼠标离开事件。
//
// Set Mouse leave event.
func (l *TListBox) SetOnMouseLeave(fn TNotifyEvent) {
ListBox_SetOnMouseLeave(l.instance, fn)
}
// 设置鼠标移动事件。
func (l *TListBox) SetOnMouseMove(fn TMouseMoveEvent) {
ListBox_SetOnMouseMove(l.instance, fn)
}
// 设置鼠标抬起事件。
//
// Set Mouse lift event.
func (l *TListBox) SetOnMouseUp(fn TMouseEvent) {
ListBox_SetOnMouseUp(l.instance, fn)
}
// 获取画布。
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)
}
// 获取依靠客户端总数。
func (l *TListBox) DockClientCount() int32 {
return ListBox_GetDockClientCount(l.instance)
}
// 获取停靠站点。
//
// Get Docking site.
func (l *TListBox) DockSite() bool {
return ListBox_GetDockSite(l.instance)
}
// 设置停靠站点。
//
// Set Docking site.
func (l *TListBox) SetDockSite(value bool) {
ListBox_SetDockSite(l.instance, value)
}
// 获取鼠标是否在客户端,仅VCL有效。
//
// Get Whether the mouse is on the client, only VCL is valid.
func (l *TListBox) MouseInClient() bool {
return ListBox_GetMouseInClient(l.instance)
}
// 获取当前停靠的可视总数。
//
// Get The total number of visible calls currently docked.
func (l *TListBox) VisibleDockClientCount() int32 {
return ListBox_GetVisibleDockClientCount(l.instance)
}
// 获取画刷对象。
//
// Get Brush.
func (l *TListBox) Brush() *TBrush {
return AsBrush(ListBox_GetBrush(l.instance))
}
// 获取子控件数。
//
// Get Number of child controls.
func (l *TListBox) ControlCount() int32 {
return ListBox_GetControlCount(l.instance)
}
// 获取控件句柄。
//
// Get Control handle.
func (l *TListBox) Handle() HWND {
return ListBox_GetHandle(l.instance)
}
// 获取父容器句柄。
//
// Get Parent container handle.
func (l *TListBox) ParentWindow() HWND {
return ListBox_GetParentWindow(l.instance)
}
// 设置父容器句柄。
//
// 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)
}
// 获取使用停靠管理。
func (l *TListBox) UseDockManager() bool {
return ListBox_GetUseDockManager(l.instance)
}
// 设置使用停靠管理。
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)
}
// 获取客户区高度。
//
// Get client height.
func (l *TListBox) ClientHeight() int32 {
return ListBox_GetClientHeight(l.instance)
}
// 设置客户区高度。
//
// Set client height.
func (l *TListBox) SetClientHeight(value int32) {
ListBox_SetClientHeight(l.instance, value)
}
func (l *TListBox) ClientOrigin() TPoint {
return ListBox_GetClientOrigin(l.instance)
}
// 获取客户区矩形。
//
// Get client rectangle.
func (l *TListBox) ClientRect() TRect {
return ListBox_GetClientRect(l.instance)
}
// 获取客户区宽度。
//
// Get client width.
func (l *TListBox) ClientWidth() int32 {
return ListBox_GetClientWidth(l.instance)
}
// 设置客户区宽度。
//
// Set client width.
func (l *TListBox) SetClientWidth(value int32) {
ListBox_SetClientWidth(l.instance, value)
}
// 获取控件状态。
//
// Get control state.
func (l *TListBox) ControlState() TControlState {
return ListBox_GetControlState(l.instance)
}
// 设置控件状态。
//
// Set control state.
func (l *TListBox) SetControlState(value TControlState) {
ListBox_SetControlState(l.instance, value)
}
// 获取控件样式。
//
// Get control style.
func (l *TListBox) ControlStyle() TControlStyle {
return ListBox_GetControlStyle(l.instance)
}
// 设置控件样式。
//
// Set control style.
func (l *TListBox) SetControlStyle(value TControlStyle) {
ListBox_SetControlStyle(l.instance, value)
}
func (l *TListBox) Floating() bool {
return ListBox_GetFloating(l.instance)
}
// 获取控件父容器。
//
// Get control parent container.
func (l *TListBox) Parent() *TWinControl {
return AsWinControl(ListBox_GetParent(l.instance))
}
// 设置控件父容器。
//
// Set control parent container.
func (l *TListBox) SetParent(value IWinControl) {
ListBox_SetParent(l.instance, CheckPtr(value))
}
// 获取左边位置。
//
// Get Left position.
func (l *TListBox) Left() int32 {
return ListBox_GetLeft(l.instance)
}
// 设置左边位置。
//
// Set Left position.
func (l *TListBox) SetLeft(value int32) {
ListBox_SetLeft(l.instance, value)
}
// 获取顶边位置。
//
// Get Top position.
func (l *TListBox) Top() int32 {
return ListBox_GetTop(l.instance)
}
// 设置顶边位置。
//
// Set Top position.
func (l *TListBox) SetTop(value int32) {
ListBox_SetTop(l.instance, value)
}
// 获取宽度。
//
// Get width.
func (l *TListBox) Width() int32 {
return ListBox_GetWidth(l.instance)
}
// 设置宽度。
//
// Set width.
func (l *TListBox) SetWidth(value int32) {
ListBox_SetWidth(l.instance, value)
}
// 获取高度。
//
// Get height.
func (l *TListBox) Height() int32 {
return ListBox_GetHeight(l.instance)
}
// 设置高度。
//
// Set height.
func (l *TListBox) SetHeight(value int32) {
ListBox_SetHeight(l.instance, value)
}
// 获取控件光标。
//
// Get control cursor.
func (l *TListBox) Cursor() TCursor {
return ListBox_GetCursor(l.instance)
}
// 设置控件光标。
//
// Set control cursor.
func (l *TListBox) SetCursor(value TCursor) {
ListBox_SetCursor(l.instance, value)
}
// 获取组件鼠标悬停提示。
//
// Get component mouse hints.
func (l *TListBox) Hint() string {
return ListBox_GetHint(l.instance)
}
// 设置组件鼠标悬停提示。
//
// Set component mouse hints.
func (l *TListBox) SetHint(value string) {
ListBox_SetHint(l.instance, value)
}
// 获取组件总数。
//
// Get the total number of components.
func (l *TListBox) ComponentCount() int32 {
return ListBox_GetComponentCount(l.instance)
}
// 获取组件索引。
//
// Get component index.
func (l *TListBox) ComponentIndex() int32 {
return ListBox_GetComponentIndex(l.instance)
}
// 设置组件索引。
//
// Set component index.
func (l *TListBox) SetComponentIndex(value int32) {
ListBox_SetComponentIndex(l.instance, value)
}
// 获取组件所有者。
//
// Get component owner.
func (l *TListBox) Owner() *TComponent {
return AsComponent(ListBox_GetOwner(l.instance))
}
// 获取组件名称。
//
// Get the component name.
func (l *TListBox) Name() string {
return ListBox_GetName(l.instance)
}
// 设置组件名称。
//
// Set the component name.
func (l *TListBox) SetName(value string) {
ListBox_SetName(l.instance, value)
}
// 获取对象标记。
//
// Get the control tag.
func (l *TListBox) Tag() int {
return ListBox_GetTag(l.instance)
}
// 设置对象标记。
//
// Set the control tag.
func (l *TListBox) SetTag(value int) {
ListBox_SetTag(l.instance, value)
}
// 获取左边锚点。
func (l *TListBox) AnchorSideLeft() *TAnchorSide {
return AsAnchorSide(ListBox_GetAnchorSideLeft(l.instance))
}
// 设置左边锚点。
func (l *TListBox) SetAnchorSideLeft(value *TAnchorSide) {
ListBox_SetAnchorSideLeft(l.instance, CheckPtr(value))
}
// 获取顶边锚点。
func (l *TListBox) AnchorSideTop() *TAnchorSide {
return AsAnchorSide(ListBox_GetAnchorSideTop(l.instance))
}
// 设置顶边锚点。
func (l *TListBox) SetAnchorSideTop(value *TAnchorSide) {
ListBox_SetAnchorSideTop(l.instance, CheckPtr(value))
}
// 获取右边锚点。
func (l *TListBox) AnchorSideRight() *TAnchorSide {
return AsAnchorSide(ListBox_GetAnchorSideRight(l.instance))
}
// 设置右边锚点。
func (l *TListBox) SetAnchorSideRight(value *TAnchorSide) {
ListBox_SetAnchorSideRight(l.instance, CheckPtr(value))
}
// 获取底边锚点。
func (l *TListBox) AnchorSideBottom() *TAnchorSide {
return AsAnchorSide(ListBox_GetAnchorSideBottom(l.instance))
}
// 设置底边锚点。
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))
}
// 获取边框间距。
func (l *TListBox) BorderSpacing() *TControlBorderSpacing {
return AsControlBorderSpacing(ListBox_GetBorderSpacing(l.instance))
}
// 设置边框间距。
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)
}
// 获取指定索引停靠客户端。
func (l *TListBox) DockClients(Index int32) *TControl {
return AsControl(ListBox_GetDockClients(l.instance, Index))
}
// 获取指定索引子控件。
func (l *TListBox) Controls(Index int32) *TControl {
return AsControl(ListBox_GetControls(l.instance, Index))
}
// 获取指定索引组件。
//
// Get the specified index component.
func (l *TListBox) Components(AIndex int32) *TComponent {
return AsComponent(ListBox_GetComponents(l.instance, AIndex))
}
// 获取锚侧面。
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.10

搜索帮助

0d507c66 1850385 C8b1a773 1850385