⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 list-box.zc

📁 实现树形结构
💻 ZC
字号:
//[of]:description
//[c]A simple list-box
//[c]
//[cf]
//[of]:license
//[c]Code Browser - a folding text editor for programmers
//[c]Copyright (C) 2003-07 Marc Kerbiquet
//[c]
//[c]This program is free software; you can redistribute it and/or modify
//[c]it under the terms of the GNU General Public License as published by
//[c]the Free Software Foundation; either version 2 of the License, or
//[c](at your option) any later version.
//[c]
//[c]This program is distributed in the hope that it will be useful,
//[c]but WITHOUT ANY WARRANTY; without even the implied warranty of
//[c]MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//[c]GNU General Public License for more details.
//[c]
//[c]You should have received a copy of the GNU General Public License
//[c]along with this program; if not, write to the Free Software
//[c]Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
//[cf]
//[of]:imports
import "base/types"
import "base/memory-allocator"
import "text/vector-of-strings"
import "text/array-of-strings"
import "text/string"
import "text/string-buffer"
//[c]
import "graphics/geometry"
import "graphics/graphics"
import "user/box"
//[c]
import "win32/windows"
//[cf]
//[c]
//[of]:list box
//[of]:type
public struct list box : local box
	private list of strings: array of strings
end
//[cf]
//[of]:instance creation
//[of]:new list box (parent)
public func new list box (parent: box)

	equ s = sizeof local list box
	def e = allocate memory (s): list box
	initialize (e, parent)
	return e

end
//[cf]
//[cf]
//[of]:index
//[of]:index
//[c]Returns the index of the currently selected item, 
//[c]Returns -1 if no selected item
//[c]
public func index (m: list box)
	return send message (m, LB_GETCURSEL): int
end
//[cf]
//[of]:set index (index)
//[c]Specifies the zero-based index of the string to select. 
//[c]If the index parameter is 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -