Difference between revisions of "Talk:CudaText API"

From Free Pascal wiki
Jump to navigationJump to search
(moved all to Main page)
 
(40 intermediate revisions by the same user not shown)
Line 1: Line 1:
== todo ==
 
  
===listbox_proc===
 
 
listbox_proc(id_listbox, id_action, index=0, text="", tag=0)
 
 
Perform action on listbox UI-control.
 
 
* Param id_listbox: int handle of listbox.
 
* Param index: index of item (0-base).
 
 
Possible values of id_action:
 
 
* LISTBOX_GET_COUNT: Gets number if items.
 
* LISTBOX_ADD: Adds item (str) with associated tag (int). Param index: at which index to add, -1 to append.
 
* LISTBOX_DELETE: Deletes item. Param index.
 
* LISTBOX_DELETE_ALL: Deletes all items.
 
* LISTBOX_GET_ITEM: Gets item with given index as 2-tuple (str_text, int_tag), or None if index not correct.
 
* LISTBOX_SET_ITEM: Sets item with given index. Params: text, tag.
 
* LISTBOX_GET_SEL:
 
* LISTBOX_SET_SEL:
 
* LISTBOX_GET_TOP:
 
* LISTBOX_SET_TOP:
 
* LISTBOX_LOCK: Disables repainting.
 
* LISTBOX_UNLOCK: Enables repainting.
 

Latest revision as of 00:49, 16 April 2017