Making the Remote TreeView class work

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
User avatar
JnLlnd
Posts: 487
Joined: 29 Sep 2013, 21:29
Location: Montreal, Quebec, Canada
Contact:

Making the Remote TreeView class work

28 Oct 2014, 06:07

Two years ago, rbrtryn wrote a class module to handle treeview in Windows (http://www.autohotkey.com/board/topic/8 ... -treeview/). It is not mentioned on what Windows version it was designed but we are some users who tried it on Win 7 finding that some methods do not work (at least GetTexT in the demo). See last comments of that thread on the old forum about this.

I looked at the code and I really don't have the level of expertise to debug this. This would be really helpful if I could use it to manipulate the "famous" (or "infamous) Select folder dialog box with a Treeview that cannot be manipulated with standard AHK methods...

Since rbrtryn was inactive in the last year (which is sad because he has been a great source of knowledge for me!), I hope this post will find its way to one of our guru here :-)

The buggy script: (*** SEE FIXED VERSION HERE: http://ahkscript.org/boards/viewtopic.p ... 998#p29502 ***)

Code: Select all

#NoEnv
#SingleInstance force
SetBatchLines -1
ListLines Off
SendMode Input
SetWorkingDir %A_ScriptDir%

; Autoexecute
	#Include Const_TreeView.ahk
	#Include Const_Process.ahk
	#Include Const_Memory.ahk
	#Include RemoteTreeViewClass.ahk
	
	Run Explore C:\
	WinWaitActive ahk_class ExploreWClass
	WinId := WinActive("A")
	ControlGet TVId, Hwnd, , SysTreeView321, % "ahk_id " WinId
	MyTV := new RemoteTreeView(TVId)
	hItem = 0  ; Causes the loop's first iteration to start the search at the top of the tree.
	Loop
	{
		hItem := MyTV.GetNext(hItem, "Full")
		if not hItem  ; No more items in tree.
			break
		ItemText := MyTV.GetText(hItem)
		MsgBox The next Item is %hItem%, whose text is "%ItemText%".
	}
return

Code: Select all

; ======================================================================================================================
; Function:         Constants for TreeView controls
; AHK version:      1.1.05+
; Language:         English
; Version:          1.0.00.00/2012-04-01/just me
; ======================================================================================================================
; CCM_FIRST = 0x2000
; TV_FIRST  = 0x1100
; TVN_FIRST = -400
; ======================================================================================================================
; Class ================================================================================================================
Global WC_TREEVIEW             := "SysTreeView32"
; Messages =============================================================================================================
Global TVM_CREATEDRAGIMAGE     := 0x1112 ; (TV_FIRST + 18)
Global TVM_DELETEITEM          := 0x1101 ; (TV_FIRST + 1)
Global TVM_EDITLABELA          := 0x110E ; (TV_FIRST + 14)
Global TVM_EDITLABELW          := 0x1141 ; (TV_FIRST + 65)
Global TVM_ENDEDITLABELNOW     := 0x1116 ; (TV_FIRST + 22)
Global TVM_ENSUREVISIBLE       := 0x1114 ; (TV_FIRST + 20)
Global TVM_EXPAND              := 0x1102 ; (TV_FIRST + 2)
Global TVM_GETBKCOLOR          := 0x112F ; (TV_FIRST + 31)
Global TVM_GETCOUNT            := 0x1105 ; (TV_FIRST + 5)
Global TVM_GETEDITCONTROL      := 0x110F ; (TV_FIRST + 15)
Global TVM_GETEXTENDEDSTYLE    := 0x112D ; (TV_FIRST + 45)
Global TVM_GETIMAGELIST        := 0x1108 ; (TV_FIRST + 8)
Global TVM_GETINDENT           := 0x1106 ; (TV_FIRST + 6)
Global TVM_GETINSERTMARKCOLOR  := 0x1126 ; (TV_FIRST + 38)
Global TVM_GETISEARCHSTRINGA   := 0x1117 ; (TV_FIRST + 23)
Global TVM_GETISEARCHSTRINGW   := 0x1140 ; (TV_FIRST + 64)
Global TVM_GETITEMA            := 0x110C ; (TV_FIRST + 12)
Global TVM_GETITEMHEIGHT       := 0x111C ; (TV_FIRST + 28)
Global TVM_GETITEMPARTRECT     := 0x1148 ; (TV_FIRST + 72) ; >= Vista
Global TVM_GETITEMRECT         := 0x1104 ; (TV_FIRST + 4)
Global TVM_GETITEMSTATE        := 0x1127 ; (TV_FIRST + 39)
Global TVM_GETITEMW            := 0x113E ; (TV_FIRST + 62)
Global TVM_GETLINECOLOR        := 0x1129 ; (TV_FIRST + 41)
Global TVM_GETNEXTITEM         := 0x110A ; (TV_FIRST + 10)
Global TVM_GETSCROLLTIME       := 0x1122 ; (TV_FIRST + 34)
Global TVM_GETSELECTEDCOUNT    := 0x1146 ; (TV_FIRST + 70) ; >= Vista
Global TVM_GETTEXTCOLOR        := 0x1120 ; (TV_FIRST + 32)
Global TVM_GETTOOLTIPS         := 0x1119 ; (TV_FIRST + 25)
Global TVM_GETUNICODEFORMAT    := 0x2006 ; (CCM_FIRST + 6) CCM_GETUNICODEFORMAT
Global TVM_GETVISIBLECOUNT     := 0x1110 ; (TV_FIRST + 16)
Global TVM_HITTEST             := 0x1111 ; (TV_FIRST + 17)
Global TVM_INSERTITEMA         := 0x1100 ; (TV_FIRST + 0)
Global TVM_INSERTITEMW         := 0x1142 ; (TV_FIRST + 50)
Global TVM_MAPACCIDTOHTREEITEM := 0x112A ; (TV_FIRST + 42)
Global TVM_MAPHTREEITEMTOACCID := 0x112B ; (TV_FIRST + 43)
Global TVM_SELECTITEM          := 0x110B ; (TV_FIRST + 11)
Global TVM_SETAUTOSCROLLINFO   := 0x113B ; (TV_FIRST + 59)
Global TVM_SETBKCOLOR          := 0x111D ; (TV_FIRST + 29)
Global TVM_SETEXTENDEDSTYLE    := 0x112C ; (TV_FIRST + 44)
Global TVM_SETIMAGELIST        := 0x1109 ; (TV_FIRST + 9)
Global TVM_SETINDENT           := 0x1107 ; (TV_FIRST + 7)
Global TVM_SETINSERTMARK       := 0x111A ; (TV_FIRST + 26)
Global TVM_SETINSERTMARKCOLOR  := 0x1125 ; (TV_FIRST + 37)
Global TVM_SETITEMA            := 0x110D ; (TV_FIRST + 13)
Global TVM_SETITEMHEIGHT       := 0x111B ; (TV_FIRST + 27)
Global TVM_SETITEMW            := 0x113F ; (TV_FIRST + 63)
Global TVM_SETLINECOLOR        := 0x1128 ; (TV_FIRST + 40)
Global TVM_SETSCROLLTIME       := 0x1121 ; (TV_FIRST + 33)
Global TVM_SETTEXTCOLOR        := 0x111E ; (TV_FIRST + 30)
Global TVM_SETTOOLTIPS         := 0x1118 ; (TV_FIRST + 24)
Global TVM_SETUNICODEFORMAT    := 0x2005 ; (CCM_FIRST + 5) ; CCM_SETUNICODEFORMAT
Global TVM_SHOWINFOTIP         := 0x1147 ; (TV_FIRST + 71) ; >= Vista
Global TVM_SORTCHILDREN        := 0x1113 ; (TV_FIRST + 19)
Global TVM_SORTCHILDRENCB      := 0x1115 ; (TV_FIRST + 21)
; Notifications ========================================================================================================
Global TVN_ASYNCDRAW           := -420 ; (TVN_FIRST - 20) >= Vista
Global TVN_BEGINDRAGA          := -427 ; (TVN_FIRST - 7)
Global TVN_BEGINDRAGW          := -456 ; (TVN_FIRST - 56)
Global TVN_BEGINLABELEDITA     := -410 ; (TVN_FIRST - 10)
Global TVN_BEGINLABELEDITW     := -456 ; (TVN_FIRST - 59)
Global TVN_BEGINRDRAGA         := -408 ; (TVN_FIRST - 8)
Global TVN_BEGINRDRAGW         := -457 ; (TVN_FIRST - 57)
Global TVN_DELETEITEMA         := -409 ; (TVN_FIRST - 9)
Global TVN_DELETEITEMW         := -458 ; (TVN_FIRST - 58)
Global TVN_ENDLABELEDITA       := -411 ; (TVN_FIRST - 11)
Global TVN_ENDLABELEDITW       := -460 ; (TVN_FIRST - 60)
Global TVN_GETDISPINFOA        := -403 ; (TVN_FIRST - 3)
Global TVN_GETDISPINFOW        := -452 ; (TVN_FIRST - 52)
Global TVN_GETINFOTIPA         := -412 ; (TVN_FIRST - 13)
Global TVN_GETINFOTIPW         := -414 ; (TVN_FIRST - 14)
Global TVN_ITEMCHANGEDA        := -418 ; (TVN_FIRST - 18) ; >= Vista
Global TVN_ITEMCHANGEDW        := -419 ; (TVN_FIRST - 19) ; >= Vista
Global TVN_ITEMCHANGINGA       := -416 ; (TVN_FIRST - 16) ; >= Vista
Global TVN_ITEMCHANGINGW       := -417 ; (TVN_FIRST - 17) ; >= Vista
Global TVN_ITEMEXPANDEDA       := -406 ; (TVN_FIRST - 6)
Global TVN_ITEMEXPANDEDW       := -455 ; (TVN_FIRST - 55)
Global TVN_ITEMEXPANDINGA      := -405 ; (TVN_FIRST - 5)
Global TVN_ITEMEXPANDINGW      := -454 ; (TVN_FIRST - 54)
Global TVN_KEYDOWN             := -412 ; (TVN_FIRST - 12)
Global TVN_SELCHANGEDA         := -402 ; (TVN_FIRST - 2)
Global TVN_SELCHANGEDW         := -451 ; (TVN_FIRST - 51)
Global TVN_SELCHANGINGA        := -401 ; (TVN_FIRST - 1)
Global TVN_SELCHANGINGW        := -450 ; (TVN_FIRST - 50)
Global TVN_SETDISPINFOA        := -404 ; (TVN_FIRST - 4)
Global TVN_SETDISPINFOW        := -453 ; (TVN_FIRST - 53)
Global TVN_SINGLEEXPAND        := -415 ; (TVN_FIRST - 15)
; Styles ===============================================================================================================
Global TVS_CHECKBOXES          := 0x0100
Global TVS_DISABLEDRAGDROP     := 0x0010
Global TVS_EDITLABELS          := 0x0008
Global TVS_FULLROWSELECT       := 0x1000
Global TVS_HASBUTTONS          := 0x0001
Global TVS_HASLINES            := 0x0002
Global TVS_INFOTIP             := 0x0800
Global TVS_LINESATROOT         := 0x0004
Global TVS_NOHSCROLL           := 0x8000 ; TVS_NOSCROLL overrides this
Global TVS_NONEVENHEIGHT       := 0x4000
Global TVS_NOSCROLL            := 0x2000
Global TVS_NOTOOLTIPS          := 0x0080
Global TVS_RTLREADING          := 0x0040
Global TVS_SHOWSELALWAYS       := 0x0020
Global TVS_SINGLEEXPAND        := 0x0400
Global TVS_TRACKSELECT         := 0x0200
; Exstyles =============================================================================================================
Global TVS_EX_AUTOHSCROLL         := 0x0020 ; >= Vista
Global TVS_EX_DIMMEDCHECKBOXES    := 0x0200 ; >= Vista
Global TVS_EX_DOUBLEBUFFER        := 0x0004 ; >= Vista
Global TVS_EX_DRAWIMAGEASYNC      := 0x0400 ; >= Vista
Global TVS_EX_EXCLUSIONCHECKBOXES := 0x0100 ; >= Vista
Global TVS_EX_FADEINOUTEXPANDOS   := 0x0040 ; >= Vista
Global TVS_EX_MULTISELECT         := 0x0002 ; >= Vista - Not supported. Do not use.
Global TVS_EX_NOINDENTSTATE       := 0x0008 ; >= Vista
Global TVS_EX_NOSINGLECOLLAPSE    := 0x0001 ; >= Vista - Intended for internal use; not recommended for use in applications.
Global TVS_EX_PARTIALCHECKBOXES   := 0x0080 ; >= Vista
Global TVS_EX_RICHTOOLTIP         := 0x0010 ; >= Vista
; Others ===============================================================================================================
; Item flags
Global TVIF_CHILDREN           := 0x0040
Global TVIF_DI_SETITEM         := 0x1000
Global TVIF_EXPANDEDIMAGE      := 0x0200 ; >= Vista
Global TVIF_HANDLE             := 0x0010
Global TVIF_IMAGE              := 0x0002
Global TVIF_INTEGRAL           := 0x0080
Global TVIF_PARAM              := 0x0004
Global TVIF_SELECTEDIMAGE      := 0x0020
Global TVIF_STATE              := 0x0008
Global TVIF_STATEEX            := 0x0100 ; >= Vista
Global TVIF_TEXT               := 0x0001
; Item states
Global TVIS_BOLD               := 0x0010
Global TVIS_CUT                := 0x0004
Global TVIS_DROPHILITED        := 0x0008
Global TVIS_EXPANDED           := 0x0020
Global TVIS_EXPANDEDONCE       := 0x0040
Global TVIS_EXPANDPARTIAL      := 0x0080
Global TVIS_OVERLAYMASK        := 0x0F00
Global TVIS_SELECTED           := 0x0002
Global TVIS_STATEIMAGEMASK     := 0xF000
Global TVIS_USERMASK           := 0xF000
; TVITEMEX uStateEx
Global TVIS_EX_ALL             := 0x0002 ; not documented
Global TVIS_EX_DISABLED        := 0x0002 ; >= Vista
Global TVIS_EX_FLAT            := 0x0001
; TVINSERTSTRUCT hInsertAfter
Global TVI_FIRST               := -65535 ; (-0x0FFFF)
Global TVI_LAST                := -65534 ; (-0x0FFFE)
Global TVI_ROOT                := -65536 ; (-0x10000)
Global TVI_SORT                := -65533 ; (-0x0FFFD)
; TVM_EXPAND wParam
Global TVE_COLLAPSE            := 0x0001
Global TVE_COLLAPSERESET       := 0x8000
Global TVE_EXPAND              := 0x0002
Global TVE_EXPANDPARTIAL       := 0x4000
Global TVE_TOGGLE              := 0x0003
; TVM_GETIMAGELIST wParam
Global TVSIL_NORMAL            := 0
Global TVSIL_STATE             := 2
; TVM_GETNEXTITEM wParam
Global TVGN_CARET              := 0x0009
Global TVGN_CHILD              := 0x0004
Global TVGN_DROPHILITE         := 0x0008
Global TVGN_FIRSTVISIBLE       := 0x0005
Global TVGN_LASTVISIBLE        := 0x000A
Global TVGN_NEXT               := 0x0001
Global TVGN_NEXTSELECTED       := 0x000B ; >= Vista (MSDN)     
Global TVGN_NEXTVISIBLE        := 0x0006
Global TVGN_PARENT             := 0x0003
Global TVGN_PREVIOUS           := 0x0002
Global TVGN_PREVIOUSVISIBLE    := 0x0007
Global TVGN_ROOT               := 0x0000
; TVM_SELECTITEM wParam
Global TVSI_NOSINGLEEXPAND     := 0x8000 ; Should not conflict with TVGN flags.
; TVHITTESTINFO flags
Global TVHT_ABOVE              := 0x0100
Global TVHT_BELOW              := 0x0200
Global TVHT_NOWHERE            := 0x0001
Global TVHT_ONITEMBUTTON       := 0x0010
Global TVHT_ONITEMICON         := 0x0002
Global TVHT_ONITEMINDENT       := 0x0008
Global TVHT_ONITEMLABEL        := 0x0004
Global TVHT_ONITEMRIGHT        := 0x0020
Global TVHT_ONITEMSTATEICON    := 0x0040
Global TVHT_TOLEFT             := 0x0800
Global TVHT_TORIGHT            := 0x0400
Global TVHT_ONITEM             := 0x0046 ; (TVHT_ONITEMICON | TVHT_ONITEMLABEL | TVHT_ONITEMSTATEICON)
; TVGETITEMPARTRECTINFO partID (>= Vista)
Global TVGIPR_BUTTON           := 0x0001
; NMTREEVIEW action
Global TVC_BYKEYBOARD          := 0x0002
Global TVC_BYMOUSE             := 0x0001
Global TVC_UNKNOWN             := 0x0000
; TVN_SINGLEEXPAND return codes
Global TVNRET_DEFAULT          := 0
Global TVNRET_SKIPOLD          := 1
Global TVNRET_SKIPNEW          := 2
; ======================================================================================================================

Code: Select all

global PAGE_NOACCESS          := 0x01     
global PAGE_READONLY          := 0x02     
global PAGE_READWRITE         := 0x04     
global PAGE_WRITECOPY         := 0x08     
global PAGE_EXECUTE           := 0x10     
global PAGE_EXECUTE_READ      := 0x20     
global PAGE_EXECUTE_READWRITE := 0x40     
global PAGE_EXECUTE_WRITECOPY := 0x80     
global PAGE_GUARD            := 0x100     
global PAGE_NOCACHE          := 0x200     
global PAGE_WRITECOMBINE     := 0x400     
global MEM_COMMIT           := 0x1000     
global MEM_RESERVE          := 0x2000     
global MEM_DECOMMIT         := 0x4000     
global MEM_RELEASE          := 0x8000     
global MEM_FREE            := 0x10000     
global MEM_PRIVATE         := 0x20000     
global MEM_MAPPED          := 0x40000     
global MEM_RESET           := 0x80000     
global MEM_TOP_DOWN       := 0x100000     
global MEM_WRITE_WATCH    := 0x200000     
global MEM_PHYSICAL       := 0x400000     
global MEM_ROTATE         := 0x800000     
global MEM_LARGE_PAGES  := 0x20000000     
global MEM_4MB_PAGES    := 0x80000000     

Code: Select all

global PROCESS_TERMINATE                  := (0x0001)  
global PROCESS_CREATE_THREAD              := (0x0002)  
global PROCESS_SET_SESSIONID              := (0x0004)  
global PROCESS_VM_OPERATION               := (0x0008)  
global PROCESS_VM_READ                    := (0x0010)  
global PROCESS_VM_WRITE                   := (0x0020)  
global PROCESS_DUP_HANDLE                 := (0x0040)  
global PROCESS_CREATE_PROCESS             := (0x0080)  
global PROCESS_SET_QUOTA                  := (0x0100)  
global PROCESS_SET_INFORMATION            := (0x0200)  
global PROCESS_QUERY_INFORMATION          := (0x0400)  
global PROCESS_SUSPEND_RESUME             := (0x0800)  
global PROCESS_QUERY_LIMITED_INFORMATION  := (0x1000)

Code: Select all

;--------------------------------------------------------------------------------------------------
; Title:  Remote TreeView class
;         This class allows a script to work with TreeViews controlled by a third party process.
;
;         8/30/2012  Released for beta testing
;
;         8/31/2012  Added a wait parameter to SetSelection
;                    Changed name of ExpandCollapse to Expand
;                    Changed default WaitTime of Expand to 0
;
;         9/2/2012	 Removed GetState method and replaced it with the IsBold, IsChecked, IsExpanded
; 					 and IsSelected methods.
;
;         9/7/2012   Added Check method.
;                    For ease of use, changed parameters of SetSelection, Expand and IsChecked methods.
;
;         9/17/2012  Extended the "Full" option of GetNext() to allow it to transverse sub-trees. 
;                    Given a starting node, all decendents of that node will be  transversed depth
;                    first. Those nodes which are not descendants of the starting node will NOT be
;                    visited. To traverse the entire tree, including the real root, pass zero as the
;                    starting node.
;                    
;
class RemoteTreeView
{
	;----------------------------------------------------------------------------------------------
	; Method: __New
	;         Stores the TreeView's Control HWnd in the object for later use
	;
	; Parameters:
	;         TVHnd			- HWND of the TreeView control
	;
	; Returns:
	;         Nothing
	;
	__New(TVHnd)
	{
		this.TVHnd := TVHnd
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: SetSelection
	;         Makes the given item selected and expanded. Optionally scrolls the 
	;         TreeView so the item is visible.
	;
	; Parameters:
	;         pItem			- Handle to the item you wish selected
	;
	; Returns:
	;         TRUE if successful, or FALSE otherwise
	;
	SetSelection(pItem)
	{
		; ORI SendMessage TVM_SELECTITEM, TVGN_CARET|TVSI_NOSINGLEEXPAND, pItem, , % "ahk_id " this.TVHnd
		; sle118 : 
		SendMessage TVM_SELECTITEM, TVGN_FIRSTVISIBLE, pItem, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: GetSelection
	;         Retrieves the currently selected item
	;
	; Parameters:
	;         None
	;
	; Returns:
	;         Handle to the selected item if successful, Null otherwise.
	;
	GetSelection()
	{
		SendMessage TVM_GETNEXTITEM, TVGN_CARET, 0, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: GetRoot
	;         Retrieves the root item of the treeview
	;
	; Parameters:
	;         None
	;
	; Returns:
	;         Handle to the topmost or very first item of the tree-view control
	;         if successful, NULL otherwise.
	;
	GetRoot()
	{
		SendMessage TVM_GETNEXTITEM, TVGN_ROOT, 0, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}

	;----------------------------------------------------------------------------------------------
	; Method: GetParent
	;         Retrieves an item's parent
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	; Returns:
	;         Handle to the parent of the specified item. Returns
	;         NULL if the item being retrieved is the root node of the tree.
	;
	GetParent(pItem)
	{
		SendMessage TVM_GETNEXTITEM, TVGN_PARENT, pItem, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}

	;----------------------------------------------------------------------------------------------
	; Method: GetChild
	;         Retrieves an item's first child
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	; Returns:
	;         Handle to the first Child of the specified item, NULL otherwise.
	;
	GetChild(pItem)
	{
		SendMessage TVM_GETNEXTITEM, TVGN_CHILD, pItem, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}

	;----------------------------------------------------------------------------------------------
	; Method: GetNext
	;         Returns the handle of the sibling below the specified item (or 0 if none).
	;
	; Parameters:
	;         pItem			- (Optional) Handle to the item
	;
	;         flag          - (Optional) "FULL" or "F"
	;
	; Returns:
	;         This method has the following modes:
	;              1. When all parameters are omitted, it returns the handle
	;                 of the first/top item in the TreeView (or 0 if none). 
	;
	;              2. When the only first parameter (pItem) is present, it returns the 
	;                 handle of the sibling below the specified item (or 0 if none).
	;                 If the first parameter is 0, it returns the handle of the first/top
	;                 item in the TreeView (or 0 if none).
	;
	;              3. When the second parameter is "Full" or "F", the first time GetNext()
	;                 is called the hItem passed is considered the "root" of a sub-tree that 
	;                 will be transversed in a depth first manner. No nodes except the
	;                 decendents of that "root" will be visited. To traverse the entire tree, 
	;                 including the real root, pass zero in the first call.
	;
	;                 When all descendants have benn visited, the method returns zero.
	;
	; Example:
	;				hItem = 0  ; Start the search at the top of the tree.
	;				Loop
	;				{
	;					hItem := MyTV.GetNext(hItem, "Full")
	;					if not hItem  ; No more items in tree.
	;						break
	;					ItemText := MyTV.GetText(hItem)
	;					MsgBox The next Item is %hItem%, whose text is "%ItemText%".
	;				}
	;
	GetNext(pItem = 0, flag = "")
	{
		static Root := -1
		
		if (RegExMatch(flag, "i)^\s*(F|Full)\s*$")) {
			if (Root = -1) {
				Root := pItem
			}
			SendMessage TVM_GETNEXTITEM, TVGN_CHILD, pItem, , % "ahk_id " this.TVHnd
			if (ErrorLevel = 0) {
				SendMessage TVM_GETNEXTITEM, TVGN_NEXT, pItem, , % "ahk_id " this.TVHnd
				if (ErrorLevel = 0) {
					Loop {
						SendMessage TVM_GETNEXTITEM, TVGN_PARENT, pItem, , % "ahk_id " this.TVHnd
						if (ErrorLevel = Root) {
							Root := -1
							return 0
						}
						pItem := ErrorLevel
						SendMessage TVM_GETNEXTITEM, TVGN_NEXT, pItem, , % "ahk_id " this.TVHnd
					} until ErrorLevel
				}
			}
			return ErrorLevel
		}
		
		Root := -1
		if (!pItem)
			SendMessage TVM_GETNEXTITEM, TVGN_ROOT, 0, , % "ahk_id " this.TVHnd
		else
			SendMessage TVM_GETNEXTITEM, TVGN_NEXT, pItem, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}

	;----------------------------------------------------------------------------------------------
	; Method: GetPrev
	;         Returns the handle of the sibling above the specified item (or 0 if none).
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	; Returns:
	;         Handle of the sibling above the specified item (or 0 if none).
	;
	GetPrev(pItem)
	{
		SendMessage TVM_GETNEXTITEM, TVGN_PREVIOUS, pItem, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: Expand
	;         Expands or collapses the specified tree node
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	;         flag			- Determines whether the node is expanded or collapsed.
	;                         true : expand the node (default)
	;                         false : collapse the node
	;
	;
	; Returns:
	;         Nonzero if the operation was successful, or zero otherwise.
	;
	Expand(pItem, DoExpand = true)
	{
		flag := DoExpand ? TVE_EXPAND : TVE_COLLAPSE
		SendMessage TVM_EXPAND, flag, pItem, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}

	;----------------------------------------------------------------------------------------------
	; Method: Check
	;         Changes the state of a treeview item's check box
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	;         fCheck        - If true, check the node
	;                         If false, uncheck the node
	;
	;         Force			- If true (default), prevents this method from failing due to 
	;                         the node having an invalid initial state. See IsChecked 
	;                         method for more info.
	;
	; Returns:
	;         Returns true if if successful, otherwise false
	;
	; Remarks:
	;         This method makes pItem the current selection.
	;
	Check(pItem, fCheck, Force = true)
	{
		SavedDelay := A_KeyDelay
		SetKeyDelay 30
		
		CurrentState := this.IsChecked(pItem, false)
		if (CurrentState = -1) 
			if (Force) {
				ControlSend, , {Space}, % "ahk_id " this.TVHnd
				CurrentState := this.IsChecked(pItem, false)
			}
			else 
				return false
		
		if (CurrentState and not fCheck) or (not CurrentState and fCheck )
			ControlSend, , {Space}, % "ahk_id " this.TVHnd
		
		SetKeyDelay %SavedDelay%
		return true
	}

	;----------------------------------------------------------------------------------------------
	; Method: GetText
	;         Retrieves the text/name of the specified node
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	; Returns:
	;         The text/name of the specified Item. If the text is longer than 127, only 
	;         the first 127 characters are retrieved. 
	;
	GetText(pItem)
	{
		TVM_GETITEM := A_IsUnicode ? TVM_GETITEMW : TVM_GETITEMA
		
		WinGet ProcessId, pid, % "ahk_id " this.TVHnd
		hProcess := OpenProcess(PROCESS_VM_OPERATION|PROCESS_VM_READ
		                       |PROCESS_VM_WRITE|PROCESS_QUERY_INFORMATION
							   , false, ProcessId)
		
		Size := 28 + 3 * A_PtrSize		; Size of a TVITEM structure
		
		_tvi := VirtualAllocEx(hProcess, 0, Size, MEM_COMMIT, PAGE_READWRITE)
		_txt := VirtualAllocEx(hProcess, 0, 256,  MEM_COMMIT, PAGE_READWRITE)
		
		; TVItem Structure
		VarSetCapacity(tvi, Size, 0)
		NumPut(TVIF_TEXT|TVIF_HANDLE, tvi, 0, "UInt")
		NumPut(pItem, tvi, 4, "Ptr")
		NumPut(_txt, tvi, 12 + A_PtrSize, "Ptr")
		NumPut(127, tvi, 12 + 2 * A_PtrSize, "Uint")
		
		VarSetCapacity(txt, 256, 0)
		WriteProcessMemory(hProcess, _tvi, &tvi, Size)
		SendMessage TVM_GETITEM, 0, _tvi, ,  % "ahk_id " this.TVHnd
		ReadProcessMemory(hProcess, _txt, txt, 256)
		
		VirtualFreeEx(hProcess, _txt, 0, MEM_RELEASE)
		VirtualFreeEx(hProcess, _tvi, 0, MEM_RELEASE)
		CloseHandle(hProcess)
		
		return txt
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: EditLabel
	;         Begins in-place editing of the specified item's text, replacing the text of the 
	;         item with a single-line edit control containing the text. This method implicitly 
	;         selects and focuses the specified item.
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	; Returns:
	;         Returns the handle to the edit control used to edit the item text if successful, 
	;         or NULL otherwise. When the user completes or cancels editing, the edit control 
	;         is destroyed and the handle is no longer valid.
	;
	EditLabel(pItem)
	{
		TVM_EDITLABEL := A_IsUnicode ? TVM_EDITLABELW : TVM_EDITLABELA
		SendMessage TVM_EDITLABEL, 0, pItem, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: GetCount
	;         Returns the total number of expanded items in the control
	;
	; Parameters:
	;         None
	;
	; Returns:
	;         Returns the total number of expanded items in the control 
	;
	GetCount()
	{
		SendMessage TVM_GETCOUNT, 0, 0, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: IsChecked
	;         Retrieves an item's checked status
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	;         Force			- If true (default), forces the node to return a valid state.
	;                         Since this involves toggling the state of the check box, it
	;                         can have undesired side effects. Make this false to disable 
	;                         this feature.
	; Returns:
	;         Returns 1 if the item is checked, 0 if unchecked.
	;
	;         Returns -1 if the checkbox state cannot be determined because no checkbox
	;         image is currently associated with the node and Force is false. 
	;
	; Remarks:
	;         Due to a "feature" of Windows, a checkbox can be displayed even if no checkbox image
	;         is associated with the node. It is important to either check the actual value returned 
	;         or make the Force parameter true.
	; 
	;         This method makes pItem the current selection.
	;
	IsChecked(pItem, Force = true)
	{
		SavedDelay := A_KeyDelay
		SetKeyDelay 30
		
		this.SetSelection(pItem)
		SendMessage TVM_GETITEMSTATE, pItem, 0, , % "ahk_id " this.TVHnd
		State := ((ErrorLevel & TVIS_STATEIMAGEMASK) >> 12) - 1
		
		if (State = -1 and Force) {
			ControlSend, , {Space 2}, % "ahk_id " this.TVHnd
			SendMessage TVM_GETITEMSTATE, pItem, 0, , % "ahk_id " this.TVHnd
			State := ((ErrorLevel & TVIS_STATEIMAGEMASK) >> 12) - 1
		}
		
		SetKeyDelay %SavedDelay%
		return State
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: IsBold
	;         Check if a node is in bold font
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	; Returns:
	;         Returns true if the item is in bold, false otherwise.
	;
	IsBold(pItem)
	{
		SendMessage TVM_GETITEMSTATE, pItem, 0, , % "ahk_id " this.TVHnd
		return (ErrorLevel & TVIS_BOLD) >> 4
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: IsExpanded
	;         Check if a node has children and is expanded
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	; Returns:
	;         Returns true if the item has children and is expanded, false otherwise.
	;
	IsExpanded(pItem)
	{
		SendMessage TVM_GETITEMSTATE, pItem, 0, , % "ahk_id " this.TVHnd
		return (ErrorLevel & TVIS_EXPANDED) >> 5
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: IsSelected
	;         Check if a node is Selected
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	; Returns:
	;         Returns true if the item is selected, false otherwise.
	;
	IsSelected(pItem)
	{
		SendMessage TVM_GETITEMSTATE, pItem, 0, , % "ahk_id " this.TVHnd
		return (ErrorLevel & TVIS_SELECTED) >> 1
	}
	
}
;==================================================================================================
;
;	Functions
;
;==================================================================================================


;----------------------------------------------------------------------------------------------
; Function: OpenProcess
;         Opens an existing local process object.
;
; Parameters:
;         DesiredAccess - The desired access to the process object. 
;
;         InheritHandle - If this value is TRUE, processes created by this process will inherit
;                         the handle. Otherwise, the processes do not inherit this handle.
;
;         ProcessId     - The Process ID of the local process to be opened. 
;
; Returns:
;         If the function succeeds, the return value is an open handle to the specified process.
;         If the function fails, the return value is NULL.
;
OpenProcess(DesiredAccess, InheritHandle, ProcessId)
{
	return DllCall("OpenProcess"
	             , "Int", DesiredAccess
				 , "Int", InheritHandle
				 , "Int", ProcessId
				 , "Ptr")
}

;----------------------------------------------------------------------------------------------
; Function: CloseHandle
;         Closes an open object handle.
;
; Parameters:
;         hObject       - A valid handle to an open object
;
; Returns:
;         If the function succeeds, the return value is nonzero.
;         If the function fails, the return value is zero.
;
CloseHandle(hObject)
{
	return DllCall("CloseHandle"
	             , "Ptr", hObject
				 , "Int")
}

;----------------------------------------------------------------------------------------------
; Function: VirtualAllocEx
;         Reserves or commits a region of memory within the virtual address space of the 
;         specified process, and specifies the NUMA node for the physical memory.
;
; Parameters:
;         hProcess      - A valid handle to an open object. The handle must have the 
;                         PROCESS_VM_OPERATION access right.
;
;         Address       - The pointer that specifies a desired starting address for the region 
;                         of pages that you want to allocate. 
;
;                         If you are reserving memory, the function rounds this address down to 
;                         the nearest multiple of the allocation granularity.
;
;                         If you are committing memory that is already reserved, the function rounds 
;                         this address down to the nearest page boundary. To determine the size of a 
;                         page and the allocation granularity on the host computer, use the GetSystemInfo 
;                         function.
;
;                         If Address is NULL, the function determines where to allocate the region.
;
;         Size          - The size of the region of memory to be allocated, in bytes. 
;
;         AllocationType - The type of memory allocation. This parameter must contain ONE of the 
;                          following values:
;								MEM_COMMIT
;								MEM_RESERVE
;								MEM_RESET
;
;         ProtectType   - The memory protection for the region of pages to be allocated. If the 
;                         pages are being committed, you can specify any one of the memory protection 
;                         constants:
;								 PAGE_NOACCESS
;								 PAGE_READONLY
;								 PAGE_READWRITE
;								 PAGE_WRITECOPY
;								 PAGE_EXECUTE
;								 PAGE_EXECUTE_READ
;								 PAGE_EXECUTE_READWRITE
;								 PAGE_EXECUTE_WRITECOPY
;
; Returns:
;         If the function succeeds, the return value is the base address of the allocated region of pages.
;         If the function fails, the return value is NULL.
;
VirtualAllocEx(hProcess, Address, Size, AllocationType, ProtectType)
{
	return DllCall("VirtualAllocEx"
				 , "Ptr", hProcess
				 , "Ptr", Address
				 , "UInt", Size
				 , "UInt", AllocationType
				 , "UInt", ProtectType
				 , "Ptr")
}

;----------------------------------------------------------------------------------------------
; Function: VirtualFreeEx
;         Releases, decommits, or releases and decommits a region of memory within the 
;         virtual address space of a specified process
;
; Parameters:
;         hProcess      - A valid handle to an open object. The handle must have the 
;                         PROCESS_VM_OPERATION access right.
;
;         Address       - The pointer that specifies a desired starting address for the region 
;                         to be freed. If the dwFreeType parameter is MEM_RELEASE, lpAddress 
;                         must be the base address returned by the VirtualAllocEx function when 
;                         the region is reserved.
;
;         Size          - The size of the region of memory to be allocated, in bytes. 
;
;                         If the FreeType parameter is MEM_RELEASE, dwSize must be 0 (zero). The function 
;                         frees the entire region that is reserved in the initial allocation call to 
;                         VirtualAllocEx.
;
;                         If FreeType is MEM_DECOMMIT, the function decommits all memory pages that 
;                         contain one or more bytes in the range from the Address parameter to 
;                         (lpAddress+dwSize). This means, for example, that a 2-byte region of memory
;                         that straddles a page boundary causes both pages to be decommitted. If Address 
;                         is the base address returned by VirtualAllocEx and dwSize is 0 (zero), the
;                         function decommits the entire region that is allocated by VirtualAllocEx. After 
;                         that, the entire region is in the reserved state.
;
;         FreeType      - The type of free operation. This parameter can be one of the following values:
;								MEM_DECOMMIT
;								MEM_RELEASE
;
; Returns:
;         If the function succeeds, the return value is a nonzero value.
;         If the function fails, the return value is 0 (zero). 
;
VirtualFreeEx(hProcess, Address, Size, FType)
{
	return DllCall("VirtualFreeEx"
				 , "Ptr", hProcess
				 , "Ptr", Address
				 , "UINT", Size
				 , "UInt", FType
				 , "Int")
}

;----------------------------------------------------------------------------------------------
; Function: WriteProcessMemory
;         Writes data to an area of memory in a specified process. The entire area to be written 
;         to must be accessible or the operation fails
;
; Parameters:
;         hProcess      - A valid handle to an open object. The handle must have the 
;                         PROCESS_VM_WRITE and PROCESS_VM_OPERATION access right.
;
;         BaseAddress   - A pointer to the base address in the specified process to which data 
;                         is written. Before data transfer occurs, the system verifies that all 
;                         data in the base address and memory of the specified size is accessible 
;                         for write access, and if it is not accessible, the function fails.
;
;         Buffer        - A pointer to the buffer that contains data to be written in the address 
;                         space of the specified process.
;
;         Size          - The number of bytes to be written to the specified process.
;
;         NumberOfBytesWritten   
;                       - A pointer to a variable that receives the number of bytes transferred 
;                         into the specified process. This parameter is optional. If NumberOfBytesWritten 
;                         is NULL, the parameter is ignored.
;
; Returns:
;         If the function succeeds, the return value is a nonzero value.
;         If the function fails, the return value is 0 (zero). 
;
WriteProcessMemory(hProcess, BaseAddress, Buffer, Size, ByRef NumberOfBytesWritten = 0)
{
	return DllCall("WriteProcessMemory"
				 , "Ptr", hProcess
				 , "Ptr", BaseAddress
				 , "Ptr", Buffer
				 , "Uint", Size
				 , "UInt*", NumberOfBytesWritten
				 , "Int")
}

;----------------------------------------------------------------------------------------------
; Function: ReadProcessMemory
;         Reads data from an area of memory in a specified process. The entire area to be read 
;         must be accessible or the operation fails
;
; Parameters:
;         hProcess      - A valid handle to an open object. The handle must have the 
;                         PROCESS_VM_READ access right.
;
;         BaseAddress   - A pointer to the base address in the specified process from which to 
;                         read. Before any data transfer occurs, the system verifies that all data 
;                         in the base address and memory of the specified size is accessible for read 
;                         access, and if it is not accessible the function fails.
;
;         Buffer        - A pointer to a buffer that receives the contents from the address space 
;                         of the specified process.
;
;         Size          - The number of bytes to be read from the specified process.
;
;         NumberOfBytesWritten   
;                       - A pointer to a variable that receives the number of bytes transferred 
;                         into the specified buffer. If lpNumberOfBytesRead is NULL, the parameter 
;                         is ignored.
;
; Returns:
;         If the function succeeds, the return value is a nonzero value.
;         If the function fails, the return value is 0 (zero). 
;
ReadProcessMemory(hProcess, BaseAddress, ByRef Buffer, Size, ByRef NumberOfBytesRead = 0)
{
	return DllCall("ReadProcessMemory"
	             , "Ptr", hProcess
				 , "Ptr", BaseAddress
				 , "Ptr", &Buffer
				 , "UInt", Size
				 , "UInt*", NumberOfBytesRead
				 , "Int")
}
Last edited by JnLlnd on 02 Nov 2014, 21:36, edited 2 times in total.
:thumbup: Author of freeware Quick Access Popup, the powerful Windows folders, apps and documents launcher!
:P Now working on Quick Clipboard Editor
:ugeek: The Automator's Courses on AutoHotkey
just me
Posts: 9423
Joined: 02 Oct 2013, 08:51
Location: Germany

Re: Making the Remote TreeView class work

30 Oct 2014, 05:46

This is seemingly working with AHK U64:

Code: Select all

    ;----------------------------------------------------------------------------------------------
    ; Method: GetText
    ;         Retrieves the text/name of the specified node
    ;
    ; Parameters:
    ;         pItem         - Handle to the item
    ;
    ; Returns:
    ;         The text/name of the specified Item. If the text is longer than 127, only
    ;         the first 127 characters are retrieved.
    ;
    GetText(pItem)
    {
        TVM_GETITEM := A_IsUnicode ? TVM_GETITEMW : TVM_GETITEMA

        WinGet ProcessId, pid, % "ahk_id " this.TVHnd
        hProcess := OpenProcess(PROCESS_VM_OPERATION|PROCESS_VM_READ
                               |PROCESS_VM_WRITE|PROCESS_QUERY_INFORMATION
                               , false, ProcessId)

        ; Size := 28 + 3 * A_PtrSize      ; Size of a TVITEM structure
        Size := 40 + 5 * A_PtrSize      ; Size of a TVITEMEX structure

        _tvi := VirtualAllocEx(hProcess, 0, Size, MEM_COMMIT, PAGE_READWRITE)
        _txt := VirtualAllocEx(hProcess, 0, 256,  MEM_COMMIT, PAGE_READWRITE)

        ; TVITEMEX Structure
        VarSetCapacity(tvi, Size, 0)
        NumPut(TVIF_TEXT|TVIF_HANDLE, tvi, 0, "UInt")
        ; NumPut(pItem, tvi, 4, "Ptr")
        NumPut(pItem, tvi, A_PtrSize, "Ptr")
        ; NumPut(_txt, tvi, 12 + A_PtrSize, "Ptr")
        NumPut(_txt, tvi, 8 + (A_PtrSize * 2), "Ptr")
        ; NumPut(127, tvi, 12 + 2 * A_PtrSize, "Uint")
        NumPut(127, tvi, 8 + (A_PtrSize * 3), "Uint")

        VarSetCapacity(txt, 256, 0)
        WriteProcessMemory(hProcess, _tvi, &tvi, Size)
        SendMessage TVM_GETITEM, 0, _tvi, ,  % "ahk_id " this.TVHnd
        ReadProcessMemory(hProcess, _txt, txt, 256)

        VirtualFreeEx(hProcess, _txt, 0, MEM_RELEASE)
        VirtualFreeEx(hProcess, _tvi, 0, MEM_RELEASE)
        CloseHandle(hProcess)

        return txt
    }
User avatar
JnLlnd
Posts: 487
Joined: 29 Sep 2013, 21:29
Location: Montreal, Quebec, Canada
Contact:

Re: Making the Remote TreeView class work

30 Oct 2014, 15:38

just me wrote:This is seemingly working with AHK U64:
Yes it does! Thank you just me!

Does the original version OK for 32-bit systems? To work on 32-bit and 64-bit system, should the script be adapted with an if checking %A_Is64bitOS% ?
:thumbup: Author of freeware Quick Access Popup, the powerful Windows folders, apps and documents launcher!
:P Now working on Quick Clipboard Editor
:ugeek: The Automator's Courses on AutoHotkey
just me
Posts: 9423
Joined: 02 Oct 2013, 08:51
Location: Germany

Re: Making the Remote TreeView class work

31 Oct 2014, 02:30

The original version is using the 32-bit structure size and offsets. Because the structure doesn't contain a size field it seems to be safe to use the 64-bit size in either case. As long as both processes are running in the same 32/64-bit environment you can check A_PtrSize. If not,
it might be possible to access a 32-bit process from a 64-bit process, but not vice versa:
old forum -> /board/topic/84310-class-remote-treeview/?p=548872
old forum -> /board/topic/70727-ahk-l-controlgettabs/?p=447913.
I'm not sure.
just me
Posts: 9423
Joined: 02 Oct 2013, 08:51
Location: Germany

Re: Making the Remote TreeView class work

31 Oct 2014, 09:22

Well, this might work across bitness. The idea is taken from the AHK source for ControlGetListView() in script2.cpp, but I could only test A/U32 -> x64 explorer:

Code: Select all

    ;----------------------------------------------------------------------------------------------
    ; Method: GetText
    ;         Retrieves the text/name of the specified node
    ;
    ; Parameters:
    ;         pItem         - Handle to the item
    ;
    ; Returns:
    ;         The text/name of the specified Item. If the text is longer than 127, only
    ;         the first 127 characters are retrieved.
    ;
    GetText(pItem)
    {
        TVM_GETITEM := A_IsUnicode ? TVM_GETITEMW : TVM_GETITEMA

        WinGet ProcessId, pid, % "ahk_id " this.TVHnd
        hProcess := OpenProcess(PROCESS_VM_OPERATION|PROCESS_VM_READ
                               |PROCESS_VM_WRITE|PROCESS_QUERY_INFORMATION
                               , false, ProcessId)

        ; Size := 28 + 3 * A_PtrSize      ; Size of a TVITEM structure
        Size := 40 + 5 * A_PtrSize      ; Size of a TVITEMEX structure

        _tvi := VirtualAllocEx(hProcess, 0, Size, MEM_COMMIT, PAGE_READWRITE)
        _txt := VirtualAllocEx(hProcess, 0, 256,  MEM_COMMIT, PAGE_READWRITE)

        ; TVITEMEX Structure
        VarSetCapacity(tvi, Size, 0)
        NumPut(TVIF_TEXT|TVIF_HANDLE, tvi, 0, "UInt")
        If (IsProcess32Bit(ProcessId))
        {
            NumPut(pItem, tvi,  4, "UInt")
            NumPut(_txt , tvi, 16, "UInt")
            NumPut(127  , tvi, 20, "UInt")
        }
        Else
        {
            NumPut(pItem, tvi,  8, "UInt64")
            NumPut(_txt , tvi, 24, "UInt64")
            NumPut(127  , tvi, 32, "UInt")
        }

        VarSetCapacity(txt, 256, 0)
        WriteProcessMemory(hProcess, _tvi, &tvi, Size)
        SendMessage TVM_GETITEM, 0, _tvi, ,  % "ahk_id " this.TVHnd
        ReadProcessMemory(hProcess, _txt, txt, 256)

        VirtualFreeEx(hProcess, _txt, 0, MEM_RELEASE)
        VirtualFreeEx(hProcess, _tvi, 0, MEM_RELEASE)
        CloseHandle(hProcess)

        return txt
    }
You need an additional function:

Code: Select all

; removed
Last edited by just me on 04 Nov 2014, 04:09, edited 1 time in total.
User avatar
JnLlnd
Posts: 487
Joined: 29 Sep 2013, 21:29
Location: Montreal, Quebec, Canada
Contact:

Re: Making the Remote TreeView class work

02 Nov 2014, 21:26

Hi just me,

I tested it on Win7 and WinXP and it works well on both patforms.

I'll post an updated version of the class and example scripts in the next comment.

Many thanks!
:thumbup: Author of freeware Quick Access Popup, the powerful Windows folders, apps and documents launcher!
:P Now working on Quick Clipboard Editor
:ugeek: The Automator's Courses on AutoHotkey
User avatar
JnLlnd
Posts: 487
Joined: 29 Sep 2013, 21:29
Location: Montreal, Quebec, Canada
Contact:

Re: Making the Remote TreeView class work

02 Nov 2014, 21:33

The updated script with fixes from just me:

TreeView Example.ahk: adapted to work on both Win_XP and Win_7.

Code: Select all

#NoEnv
#SingleInstance force
SetBatchLines -1
ListLines Off
SendMode Input
SetWorkingDir %A_ScriptDir%

; Autoexecute
	#Include %A_ScriptDir%\Const_TreeView.ahk
	#Include %A_ScriptDir%\Const_Process.ahk
	#Include %A_ScriptDir%\Const_Memory.ahk
	#Include %A_ScriptDir%\RemoteTreeViewClass.ahk
	
	Run Explore C:\
	if (A_OSVersion = "WIN_XP")
		WinWaitActive ahk_class ExploreWClass, , 10
	else if (A_OSVersion = "WIN_7")
		WinWaitActive ahk_class CabinetWClass, , 10
	else
		Exit
	if ErrorLevel
		Exit
	WinId := WinActive("A")
	ControlGet TVId, Hwnd, , SysTreeView321, % "ahk_id " WinId
	MyTV := new RemoteTreeView(TVId)
	hItem = 0  ; Causes the loop's first iteration to start the search at the top of the tree.
	Loop
	{
		hItem := MyTV.GetNext(hItem, "Full")
		if not hItem  ; No more items in tree.
			break
		ItemText := MyTV.GetText(hItem)
		MsgBox The next Item is %hItem%, whose text is "%ItemText%".
	}
return
Const_TreeView.ahk: no change

Code: Select all

; ======================================================================================================================
; Function:         Constants for TreeView controls
; AHK version:      1.1.05+
; Language:         English
; Version:          1.0.00.00/2012-04-01/just me
; ======================================================================================================================
; CCM_FIRST = 0x2000
; TV_FIRST  = 0x1100
; TVN_FIRST = -400
; ======================================================================================================================
; Class ================================================================================================================
Global WC_TREEVIEW             := "SysTreeView32"
; Messages =============================================================================================================
Global TVM_CREATEDRAGIMAGE     := 0x1112 ; (TV_FIRST + 18)
Global TVM_DELETEITEM          := 0x1101 ; (TV_FIRST + 1)
Global TVM_EDITLABELA          := 0x110E ; (TV_FIRST + 14)
Global TVM_EDITLABELW          := 0x1141 ; (TV_FIRST + 65)
Global TVM_ENDEDITLABELNOW     := 0x1116 ; (TV_FIRST + 22)
Global TVM_ENSUREVISIBLE       := 0x1114 ; (TV_FIRST + 20)
Global TVM_EXPAND              := 0x1102 ; (TV_FIRST + 2)
Global TVM_GETBKCOLOR          := 0x112F ; (TV_FIRST + 31)
Global TVM_GETCOUNT            := 0x1105 ; (TV_FIRST + 5)
Global TVM_GETEDITCONTROL      := 0x110F ; (TV_FIRST + 15)
Global TVM_GETEXTENDEDSTYLE    := 0x112D ; (TV_FIRST + 45)
Global TVM_GETIMAGELIST        := 0x1108 ; (TV_FIRST + 8)
Global TVM_GETINDENT           := 0x1106 ; (TV_FIRST + 6)
Global TVM_GETINSERTMARKCOLOR  := 0x1126 ; (TV_FIRST + 38)
Global TVM_GETISEARCHSTRINGA   := 0x1117 ; (TV_FIRST + 23)
Global TVM_GETISEARCHSTRINGW   := 0x1140 ; (TV_FIRST + 64)
Global TVM_GETITEMA            := 0x110C ; (TV_FIRST + 12)
Global TVM_GETITEMHEIGHT       := 0x111C ; (TV_FIRST + 28)
Global TVM_GETITEMPARTRECT     := 0x1148 ; (TV_FIRST + 72) ; >= Vista
Global TVM_GETITEMRECT         := 0x1104 ; (TV_FIRST + 4)
Global TVM_GETITEMSTATE        := 0x1127 ; (TV_FIRST + 39)
Global TVM_GETITEMW            := 0x113E ; (TV_FIRST + 62)
Global TVM_GETLINECOLOR        := 0x1129 ; (TV_FIRST + 41)
Global TVM_GETNEXTITEM         := 0x110A ; (TV_FIRST + 10)
Global TVM_GETSCROLLTIME       := 0x1122 ; (TV_FIRST + 34)
Global TVM_GETSELECTEDCOUNT    := 0x1146 ; (TV_FIRST + 70) ; >= Vista
Global TVM_GETTEXTCOLOR        := 0x1120 ; (TV_FIRST + 32)
Global TVM_GETTOOLTIPS         := 0x1119 ; (TV_FIRST + 25)
Global TVM_GETUNICODEFORMAT    := 0x2006 ; (CCM_FIRST + 6) CCM_GETUNICODEFORMAT
Global TVM_GETVISIBLECOUNT     := 0x1110 ; (TV_FIRST + 16)
Global TVM_HITTEST             := 0x1111 ; (TV_FIRST + 17)
Global TVM_INSERTITEMA         := 0x1100 ; (TV_FIRST + 0)
Global TVM_INSERTITEMW         := 0x1142 ; (TV_FIRST + 50)
Global TVM_MAPACCIDTOHTREEITEM := 0x112A ; (TV_FIRST + 42)
Global TVM_MAPHTREEITEMTOACCID := 0x112B ; (TV_FIRST + 43)
Global TVM_SELECTITEM          := 0x110B ; (TV_FIRST + 11)
Global TVM_SETAUTOSCROLLINFO   := 0x113B ; (TV_FIRST + 59)
Global TVM_SETBKCOLOR          := 0x111D ; (TV_FIRST + 29)
Global TVM_SETEXTENDEDSTYLE    := 0x112C ; (TV_FIRST + 44)
Global TVM_SETIMAGELIST        := 0x1109 ; (TV_FIRST + 9)
Global TVM_SETINDENT           := 0x1107 ; (TV_FIRST + 7)
Global TVM_SETINSERTMARK       := 0x111A ; (TV_FIRST + 26)
Global TVM_SETINSERTMARKCOLOR  := 0x1125 ; (TV_FIRST + 37)
Global TVM_SETITEMA            := 0x110D ; (TV_FIRST + 13)
Global TVM_SETITEMHEIGHT       := 0x111B ; (TV_FIRST + 27)
Global TVM_SETITEMW            := 0x113F ; (TV_FIRST + 63)
Global TVM_SETLINECOLOR        := 0x1128 ; (TV_FIRST + 40)
Global TVM_SETSCROLLTIME       := 0x1121 ; (TV_FIRST + 33)
Global TVM_SETTEXTCOLOR        := 0x111E ; (TV_FIRST + 30)
Global TVM_SETTOOLTIPS         := 0x1118 ; (TV_FIRST + 24)
Global TVM_SETUNICODEFORMAT    := 0x2005 ; (CCM_FIRST + 5) ; CCM_SETUNICODEFORMAT
Global TVM_SHOWINFOTIP         := 0x1147 ; (TV_FIRST + 71) ; >= Vista
Global TVM_SORTCHILDREN        := 0x1113 ; (TV_FIRST + 19)
Global TVM_SORTCHILDRENCB      := 0x1115 ; (TV_FIRST + 21)
; Notifications ========================================================================================================
Global TVN_ASYNCDRAW           := -420 ; (TVN_FIRST - 20) >= Vista
Global TVN_BEGINDRAGA          := -427 ; (TVN_FIRST - 7)
Global TVN_BEGINDRAGW          := -456 ; (TVN_FIRST - 56)
Global TVN_BEGINLABELEDITA     := -410 ; (TVN_FIRST - 10)
Global TVN_BEGINLABELEDITW     := -456 ; (TVN_FIRST - 59)
Global TVN_BEGINRDRAGA         := -408 ; (TVN_FIRST - 8)
Global TVN_BEGINRDRAGW         := -457 ; (TVN_FIRST - 57)
Global TVN_DELETEITEMA         := -409 ; (TVN_FIRST - 9)
Global TVN_DELETEITEMW         := -458 ; (TVN_FIRST - 58)
Global TVN_ENDLABELEDITA       := -411 ; (TVN_FIRST - 11)
Global TVN_ENDLABELEDITW       := -460 ; (TVN_FIRST - 60)
Global TVN_GETDISPINFOA        := -403 ; (TVN_FIRST - 3)
Global TVN_GETDISPINFOW        := -452 ; (TVN_FIRST - 52)
Global TVN_GETINFOTIPA         := -412 ; (TVN_FIRST - 13)
Global TVN_GETINFOTIPW         := -414 ; (TVN_FIRST - 14)
Global TVN_ITEMCHANGEDA        := -418 ; (TVN_FIRST - 18) ; >= Vista
Global TVN_ITEMCHANGEDW        := -419 ; (TVN_FIRST - 19) ; >= Vista
Global TVN_ITEMCHANGINGA       := -416 ; (TVN_FIRST - 16) ; >= Vista
Global TVN_ITEMCHANGINGW       := -417 ; (TVN_FIRST - 17) ; >= Vista
Global TVN_ITEMEXPANDEDA       := -406 ; (TVN_FIRST - 6)
Global TVN_ITEMEXPANDEDW       := -455 ; (TVN_FIRST - 55)
Global TVN_ITEMEXPANDINGA      := -405 ; (TVN_FIRST - 5)
Global TVN_ITEMEXPANDINGW      := -454 ; (TVN_FIRST - 54)
Global TVN_KEYDOWN             := -412 ; (TVN_FIRST - 12)
Global TVN_SELCHANGEDA         := -402 ; (TVN_FIRST - 2)
Global TVN_SELCHANGEDW         := -451 ; (TVN_FIRST - 51)
Global TVN_SELCHANGINGA        := -401 ; (TVN_FIRST - 1)
Global TVN_SELCHANGINGW        := -450 ; (TVN_FIRST - 50)
Global TVN_SETDISPINFOA        := -404 ; (TVN_FIRST - 4)
Global TVN_SETDISPINFOW        := -453 ; (TVN_FIRST - 53)
Global TVN_SINGLEEXPAND        := -415 ; (TVN_FIRST - 15)
; Styles ===============================================================================================================
Global TVS_CHECKBOXES          := 0x0100
Global TVS_DISABLEDRAGDROP     := 0x0010
Global TVS_EDITLABELS          := 0x0008
Global TVS_FULLROWSELECT       := 0x1000
Global TVS_HASBUTTONS          := 0x0001
Global TVS_HASLINES            := 0x0002
Global TVS_INFOTIP             := 0x0800
Global TVS_LINESATROOT         := 0x0004
Global TVS_NOHSCROLL           := 0x8000 ; TVS_NOSCROLL overrides this
Global TVS_NONEVENHEIGHT       := 0x4000
Global TVS_NOSCROLL            := 0x2000
Global TVS_NOTOOLTIPS          := 0x0080
Global TVS_RTLREADING          := 0x0040
Global TVS_SHOWSELALWAYS       := 0x0020
Global TVS_SINGLEEXPAND        := 0x0400
Global TVS_TRACKSELECT         := 0x0200
; Exstyles =============================================================================================================
Global TVS_EX_AUTOHSCROLL         := 0x0020 ; >= Vista
Global TVS_EX_DIMMEDCHECKBOXES    := 0x0200 ; >= Vista
Global TVS_EX_DOUBLEBUFFER        := 0x0004 ; >= Vista
Global TVS_EX_DRAWIMAGEASYNC      := 0x0400 ; >= Vista
Global TVS_EX_EXCLUSIONCHECKBOXES := 0x0100 ; >= Vista
Global TVS_EX_FADEINOUTEXPANDOS   := 0x0040 ; >= Vista
Global TVS_EX_MULTISELECT         := 0x0002 ; >= Vista - Not supported. Do not use.
Global TVS_EX_NOINDENTSTATE       := 0x0008 ; >= Vista
Global TVS_EX_NOSINGLECOLLAPSE    := 0x0001 ; >= Vista - Intended for internal use; not recommended for use in applications.
Global TVS_EX_PARTIALCHECKBOXES   := 0x0080 ; >= Vista
Global TVS_EX_RICHTOOLTIP         := 0x0010 ; >= Vista
; Others ===============================================================================================================
; Item flags
Global TVIF_CHILDREN           := 0x0040
Global TVIF_DI_SETITEM         := 0x1000
Global TVIF_EXPANDEDIMAGE      := 0x0200 ; >= Vista
Global TVIF_HANDLE             := 0x0010
Global TVIF_IMAGE              := 0x0002
Global TVIF_INTEGRAL           := 0x0080
Global TVIF_PARAM              := 0x0004
Global TVIF_SELECTEDIMAGE      := 0x0020
Global TVIF_STATE              := 0x0008
Global TVIF_STATEEX            := 0x0100 ; >= Vista
Global TVIF_TEXT               := 0x0001
; Item states
Global TVIS_BOLD               := 0x0010
Global TVIS_CUT                := 0x0004
Global TVIS_DROPHILITED        := 0x0008
Global TVIS_EXPANDED           := 0x0020
Global TVIS_EXPANDEDONCE       := 0x0040
Global TVIS_EXPANDPARTIAL      := 0x0080
Global TVIS_OVERLAYMASK        := 0x0F00
Global TVIS_SELECTED           := 0x0002
Global TVIS_STATEIMAGEMASK     := 0xF000
Global TVIS_USERMASK           := 0xF000
; TVITEMEX uStateEx
Global TVIS_EX_ALL             := 0x0002 ; not documented
Global TVIS_EX_DISABLED        := 0x0002 ; >= Vista
Global TVIS_EX_FLAT            := 0x0001
; TVINSERTSTRUCT hInsertAfter
Global TVI_FIRST               := -65535 ; (-0x0FFFF)
Global TVI_LAST                := -65534 ; (-0x0FFFE)
Global TVI_ROOT                := -65536 ; (-0x10000)
Global TVI_SORT                := -65533 ; (-0x0FFFD)
; TVM_EXPAND wParam
Global TVE_COLLAPSE            := 0x0001
Global TVE_COLLAPSERESET       := 0x8000
Global TVE_EXPAND              := 0x0002
Global TVE_EXPANDPARTIAL       := 0x4000
Global TVE_TOGGLE              := 0x0003
; TVM_GETIMAGELIST wParam
Global TVSIL_NORMAL            := 0
Global TVSIL_STATE             := 2
; TVM_GETNEXTITEM wParam
Global TVGN_CARET              := 0x0009
Global TVGN_CHILD              := 0x0004
Global TVGN_DROPHILITE         := 0x0008
Global TVGN_FIRSTVISIBLE       := 0x0005
Global TVGN_LASTVISIBLE        := 0x000A
Global TVGN_NEXT               := 0x0001
Global TVGN_NEXTSELECTED       := 0x000B ; >= Vista (MSDN)     
Global TVGN_NEXTVISIBLE        := 0x0006
Global TVGN_PARENT             := 0x0003
Global TVGN_PREVIOUS           := 0x0002
Global TVGN_PREVIOUSVISIBLE    := 0x0007
Global TVGN_ROOT               := 0x0000
; TVM_SELECTITEM wParam
Global TVSI_NOSINGLEEXPAND     := 0x8000 ; Should not conflict with TVGN flags.
; TVHITTESTINFO flags
Global TVHT_ABOVE              := 0x0100
Global TVHT_BELOW              := 0x0200
Global TVHT_NOWHERE            := 0x0001
Global TVHT_ONITEMBUTTON       := 0x0010
Global TVHT_ONITEMICON         := 0x0002
Global TVHT_ONITEMINDENT       := 0x0008
Global TVHT_ONITEMLABEL        := 0x0004
Global TVHT_ONITEMRIGHT        := 0x0020
Global TVHT_ONITEMSTATEICON    := 0x0040
Global TVHT_TOLEFT             := 0x0800
Global TVHT_TORIGHT            := 0x0400
Global TVHT_ONITEM             := 0x0046 ; (TVHT_ONITEMICON | TVHT_ONITEMLABEL | TVHT_ONITEMSTATEICON)
; TVGETITEMPARTRECTINFO partID (>= Vista)
Global TVGIPR_BUTTON           := 0x0001
; NMTREEVIEW action
Global TVC_BYKEYBOARD          := 0x0002
Global TVC_BYMOUSE             := 0x0001
Global TVC_UNKNOWN             := 0x0000
; TVN_SINGLEEXPAND return codes
Global TVNRET_DEFAULT          := 0
Global TVNRET_SKIPOLD          := 1
Global TVNRET_SKIPNEW          := 2
; ======================================================================================================================
Const_Memory.ahk: no change

Code: Select all

global PAGE_NOACCESS          := 0x01     
global PAGE_READONLY          := 0x02     
global PAGE_READWRITE         := 0x04     
global PAGE_WRITECOPY         := 0x08     
global PAGE_EXECUTE           := 0x10     
global PAGE_EXECUTE_READ      := 0x20     
global PAGE_EXECUTE_READWRITE := 0x40     
global PAGE_EXECUTE_WRITECOPY := 0x80     
global PAGE_GUARD            := 0x100     
global PAGE_NOCACHE          := 0x200     
global PAGE_WRITECOMBINE     := 0x400     
global MEM_COMMIT           := 0x1000     
global MEM_RESERVE          := 0x2000     
global MEM_DECOMMIT         := 0x4000     
global MEM_RELEASE          := 0x8000     
global MEM_FREE            := 0x10000     
global MEM_PRIVATE         := 0x20000     
global MEM_MAPPED          := 0x40000     
global MEM_RESET           := 0x80000     
global MEM_TOP_DOWN       := 0x100000     
global MEM_WRITE_WATCH    := 0x200000     
global MEM_PHYSICAL       := 0x400000     
global MEM_ROTATE         := 0x800000     
global MEM_LARGE_PAGES  := 0x20000000     
global MEM_4MB_PAGES    := 0x80000000     
Const_Process.ahk: no change

Code: Select all

global PROCESS_TERMINATE                  := (0x0001)  
global PROCESS_CREATE_THREAD              := (0x0002)  
global PROCESS_SET_SESSIONID              := (0x0004)  
global PROCESS_VM_OPERATION               := (0x0008)  
global PROCESS_VM_READ                    := (0x0010)  
global PROCESS_VM_WRITE                   := (0x0020)  
global PROCESS_DUP_HANDLE                 := (0x0040)  
global PROCESS_CREATE_PROCESS             := (0x0080)  
global PROCESS_SET_QUOTA                  := (0x0100)  
global PROCESS_SET_INFORMATION            := (0x0200)  
global PROCESS_QUERY_INFORMATION          := (0x0400)  
global PROCESS_SUSPEND_RESUME             := (0x0800)  
global PROCESS_QUERY_LIMITED_INFORMATION  := (0x1000)
RemoteTreeViewClass.ahk: with update from just me (rev 2014-11-03)

Code: Select all

;--------------------------------------------------------------------------------------------------
; Title:  Remote TreeView class
;         This class allows a script to work with TreeViews controlled by a third party process.
;
;         8/30/2012  Released for beta testing
;
;         8/31/2012  Added a wait parameter to SetSelection
;                    Changed name of ExpandCollapse to Expand
;                    Changed default WaitTime of Expand to 0
;
;         9/2/2012	 Removed GetState method and replaced it with the IsBold, IsChecked, IsExpanded
; 					 and IsSelected methods.
;
;         9/7/2012   Added Check method.
;                    For ease of use, changed parameters of SetSelection, Expand and IsChecked methods.
;
;         9/17/2012  Extended the "Full" option of GetNext() to allow it to transverse sub-trees. 
;                    Given a starting node, all decendents of that node will be  transversed depth
;                    first. Those nodes which are not descendants of the starting node will NOT be
;                    visited. To traverse the entire tree, including the real root, pass zero as the
;                    starting node.
;
;         11/02/2014 Fix for GetText and ddditional function from just me
;                    See http://ahkscript.org/boards/viewtopic.php?f=5&t=4998#p29339
;
class RemoteTreeView
{
	;----------------------------------------------------------------------------------------------
	; Method: __New
	;         Stores the TreeView's Control HWnd in the object for later use
	;
	; Parameters:
	;         TVHnd			- HWND of the TreeView control
	;
	; Returns:
	;         Nothing
	;
	__New(TVHnd)
	{
		this.TVHnd := TVHnd
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: SetSelection
	;         Makes the given item selected and expanded. Optionally scrolls the 
	;         TreeView so the item is visible.
	;
	; Parameters:
	;         pItem			- Handle to the item you wish selected
	;
	; Returns:
	;         TRUE if successful, or FALSE otherwise
	;
	SetSelection(pItem)
	{
		; ORI SendMessage TVM_SELECTITEM, TVGN_CARET|TVSI_NOSINGLEEXPAND, pItem, , % "ahk_id " this.TVHnd
		; sle118 : 
		SendMessage TVM_SELECTITEM, TVGN_FIRSTVISIBLE, pItem, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: GetSelection
	;         Retrieves the currently selected item
	;
	; Parameters:
	;         None
	;
	; Returns:
	;         Handle to the selected item if successful, Null otherwise.
	;
	GetSelection()
	{
		SendMessage TVM_GETNEXTITEM, TVGN_CARET, 0, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: GetRoot
	;         Retrieves the root item of the treeview
	;
	; Parameters:
	;         None
	;
	; Returns:
	;         Handle to the topmost or very first item of the tree-view control
	;         if successful, NULL otherwise.
	;
	GetRoot()
	{
		SendMessage TVM_GETNEXTITEM, TVGN_ROOT, 0, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}

	;----------------------------------------------------------------------------------------------
	; Method: GetParent
	;         Retrieves an item's parent
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	; Returns:
	;         Handle to the parent of the specified item. Returns
	;         NULL if the item being retrieved is the root node of the tree.
	;
	GetParent(pItem)
	{
		SendMessage TVM_GETNEXTITEM, TVGN_PARENT, pItem, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}

	;----------------------------------------------------------------------------------------------
	; Method: GetChild
	;         Retrieves an item's first child
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	; Returns:
	;         Handle to the first Child of the specified item, NULL otherwise.
	;
	GetChild(pItem)
	{
		SendMessage TVM_GETNEXTITEM, TVGN_CHILD, pItem, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}

	;----------------------------------------------------------------------------------------------
	; Method: GetNext
	;         Returns the handle of the sibling below the specified item (or 0 if none).
	;
	; Parameters:
	;         pItem			- (Optional) Handle to the item
	;
	;         flag          - (Optional) "FULL" or "F"
	;
	; Returns:
	;         This method has the following modes:
	;              1. When all parameters are omitted, it returns the handle
	;                 of the first/top item in the TreeView (or 0 if none). 
	;
	;              2. When the only first parameter (pItem) is present, it returns the 
	;                 handle of the sibling below the specified item (or 0 if none).
	;                 If the first parameter is 0, it returns the handle of the first/top
	;                 item in the TreeView (or 0 if none).
	;
	;              3. When the second parameter is "Full" or "F", the first time GetNext()
	;                 is called the hItem passed is considered the "root" of a sub-tree that 
	;                 will be transversed in a depth first manner. No nodes except the
	;                 decendents of that "root" will be visited. To traverse the entire tree, 
	;                 including the real root, pass zero in the first call.
	;
	;                 When all descendants have benn visited, the method returns zero.
	;
	; Example:
	;				hItem = 0  ; Start the search at the top of the tree.
	;				Loop
	;				{
	;					hItem := MyTV.GetNext(hItem, "Full")
	;					if not hItem  ; No more items in tree.
	;						break
	;					ItemText := MyTV.GetText(hItem)
	;					MsgBox The next Item is %hItem%, whose text is "%ItemText%".
	;				}
	;
	GetNext(pItem = 0, flag = "")
	{
		static Root := -1
		
		if (RegExMatch(flag, "i)^\s*(F|Full)\s*$")) {
			if (Root = -1) {
				Root := pItem
			}
			SendMessage TVM_GETNEXTITEM, TVGN_CHILD, pItem, , % "ahk_id " this.TVHnd
			if (ErrorLevel = 0) {
				SendMessage TVM_GETNEXTITEM, TVGN_NEXT, pItem, , % "ahk_id " this.TVHnd
				if (ErrorLevel = 0) {
					Loop {
						SendMessage TVM_GETNEXTITEM, TVGN_PARENT, pItem, , % "ahk_id " this.TVHnd
						if (ErrorLevel = Root) {
							Root := -1
							return 0
						}
						pItem := ErrorLevel
						SendMessage TVM_GETNEXTITEM, TVGN_NEXT, pItem, , % "ahk_id " this.TVHnd
					} until ErrorLevel
				}
			}
			return ErrorLevel
		}
		
		Root := -1
		if (!pItem)
			SendMessage TVM_GETNEXTITEM, TVGN_ROOT, 0, , % "ahk_id " this.TVHnd
		else
			SendMessage TVM_GETNEXTITEM, TVGN_NEXT, pItem, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}

	;----------------------------------------------------------------------------------------------
	; Method: GetPrev
	;         Returns the handle of the sibling above the specified item (or 0 if none).
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	; Returns:
	;         Handle of the sibling above the specified item (or 0 if none).
	;
	GetPrev(pItem)
	{
		SendMessage TVM_GETNEXTITEM, TVGN_PREVIOUS, pItem, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: Expand
	;         Expands or collapses the specified tree node
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	;         flag			- Determines whether the node is expanded or collapsed.
	;                         true : expand the node (default)
	;                         false : collapse the node
	;
	;
	; Returns:
	;         Nonzero if the operation was successful, or zero otherwise.
	;
	Expand(pItem, DoExpand = true)
	{
		flag := DoExpand ? TVE_EXPAND : TVE_COLLAPSE
		SendMessage TVM_EXPAND, flag, pItem, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}

	;----------------------------------------------------------------------------------------------
	; Method: Check
	;         Changes the state of a treeview item's check box
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	;         fCheck        - If true, check the node
	;                         If false, uncheck the node
	;
	;         Force			- If true (default), prevents this method from failing due to 
	;                         the node having an invalid initial state. See IsChecked 
	;                         method for more info.
	;
	; Returns:
	;         Returns true if if successful, otherwise false
	;
	; Remarks:
	;         This method makes pItem the current selection.
	;
	Check(pItem, fCheck, Force = true)
	{
		SavedDelay := A_KeyDelay
		SetKeyDelay 30
		
		CurrentState := this.IsChecked(pItem, false)
		if (CurrentState = -1) 
			if (Force) {
				ControlSend, , {Space}, % "ahk_id " this.TVHnd
				CurrentState := this.IsChecked(pItem, false)
			}
			else 
				return false
		
		if (CurrentState and not fCheck) or (not CurrentState and fCheck )
			ControlSend, , {Space}, % "ahk_id " this.TVHnd
		
		SetKeyDelay %SavedDelay%
		return true
	}

    ;----------------------------------------------------------------------------------------------
    ; Method: GetText
    ;         Retrieves the text/name of the specified node
    ;
    ; Parameters:
    ;         pItem         - Handle to the item
    ;
    ; Returns:
    ;         The text/name of the specified Item. If the text is longer than 127, only
    ;         the first 127 characters are retrieved.
    ;
    ; Fix from just me (http://ahkscript.org/boards/viewtopic.php?f=5&t=4998#p29339)
	;
    GetText(pItem)
    {
        TVM_GETITEM := A_IsUnicode ? TVM_GETITEMW : TVM_GETITEMA

        WinGet ProcessId, pid, % "ahk_id " this.TVHnd
        hProcess := OpenProcess(PROCESS_VM_OPERATION|PROCESS_VM_READ
                               |PROCESS_VM_WRITE|PROCESS_QUERY_INFORMATION
                               , false, ProcessId)

        ; Try to determine the bitness of the remote tree-view's process
        ProcessIs32Bit := A_PtrSize = 8 ? False : True
        If (A_Is64bitOS) && DllCall("Kernel32.dll\IsWow64Process", "Ptr", hProcess, "UIntP", WOW64)
            ProcessIs32Bit := WOW64

        Size := ProcessIs32Bit ?  60 : 80 ; Size of a TVITEMEX structure

        _tvi := VirtualAllocEx(hProcess, 0, Size, MEM_COMMIT, PAGE_READWRITE)
        _txt := VirtualAllocEx(hProcess, 0, 256,  MEM_COMMIT, PAGE_READWRITE)

        ; TVITEMEX Structure
        VarSetCapacity(tvi, Size, 0)
        NumPut(TVIF_TEXT|TVIF_HANDLE, tvi, 0, "UInt")
        If (ProcessIs32Bit)
        {
            NumPut(pItem, tvi,  4, "UInt")
            NumPut(_txt , tvi, 16, "UInt")
            NumPut(127  , tvi, 20, "UInt")
        }
        Else
        {
            NumPut(pItem, tvi,  8, "UInt64")
            NumPut(_txt , tvi, 24, "UInt64")
            NumPut(127  , tvi, 32, "UInt")
        }

        VarSetCapacity(txt, 256, 0)
        WriteProcessMemory(hProcess, _tvi, &tvi, Size)
        SendMessage TVM_GETITEM, 0, _tvi, ,  % "ahk_id " this.TVHnd
        ReadProcessMemory(hProcess, _txt, txt, 256)

        VirtualFreeEx(hProcess, _txt, 0, MEM_RELEASE)
        VirtualFreeEx(hProcess, _tvi, 0, MEM_RELEASE)
        CloseHandle(hProcess)

        return txt
    }
 
	;----------------------------------------------------------------------------------------------
	; Method: EditLabel
	;         Begins in-place editing of the specified item's text, replacing the text of the 
	;         item with a single-line edit control containing the text. This method implicitly 
	;         selects and focuses the specified item.
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	; Returns:
	;         Returns the handle to the edit control used to edit the item text if successful, 
	;         or NULL otherwise. When the user completes or cancels editing, the edit control 
	;         is destroyed and the handle is no longer valid.
	;
	EditLabel(pItem)
	{
		TVM_EDITLABEL := A_IsUnicode ? TVM_EDITLABELW : TVM_EDITLABELA
		SendMessage TVM_EDITLABEL, 0, pItem, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: GetCount
	;         Returns the total number of expanded items in the control
	;
	; Parameters:
	;         None
	;
	; Returns:
	;         Returns the total number of expanded items in the control 
	;
	GetCount()
	{
		SendMessage TVM_GETCOUNT, 0, 0, , % "ahk_id " this.TVHnd
		return ErrorLevel
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: IsChecked
	;         Retrieves an item's checked status
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	;         Force			- If true (default), forces the node to return a valid state.
	;                         Since this involves toggling the state of the check box, it
	;                         can have undesired side effects. Make this false to disable 
	;                         this feature.
	; Returns:
	;         Returns 1 if the item is checked, 0 if unchecked.
	;
	;         Returns -1 if the checkbox state cannot be determined because no checkbox
	;         image is currently associated with the node and Force is false. 
	;
	; Remarks:
	;         Due to a "feature" of Windows, a checkbox can be displayed even if no checkbox image
	;         is associated with the node. It is important to either check the actual value returned 
	;         or make the Force parameter true.
	; 
	;         This method makes pItem the current selection.
	;
	IsChecked(pItem, Force = true)
	{
		SavedDelay := A_KeyDelay
		SetKeyDelay 30
		
		this.SetSelection(pItem)
		SendMessage TVM_GETITEMSTATE, pItem, 0, , % "ahk_id " this.TVHnd
		State := ((ErrorLevel & TVIS_STATEIMAGEMASK) >> 12) - 1
		
		if (State = -1 and Force) {
			ControlSend, , {Space 2}, % "ahk_id " this.TVHnd
			SendMessage TVM_GETITEMSTATE, pItem, 0, , % "ahk_id " this.TVHnd
			State := ((ErrorLevel & TVIS_STATEIMAGEMASK) >> 12) - 1
		}
		
		SetKeyDelay %SavedDelay%
		return State
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: IsBold
	;         Check if a node is in bold font
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	; Returns:
	;         Returns true if the item is in bold, false otherwise.
	;
	IsBold(pItem)
	{
		SendMessage TVM_GETITEMSTATE, pItem, 0, , % "ahk_id " this.TVHnd
		return (ErrorLevel & TVIS_BOLD) >> 4
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: IsExpanded
	;         Check if a node has children and is expanded
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	; Returns:
	;         Returns true if the item has children and is expanded, false otherwise.
	;
	IsExpanded(pItem)
	{
		SendMessage TVM_GETITEMSTATE, pItem, 0, , % "ahk_id " this.TVHnd
		return (ErrorLevel & TVIS_EXPANDED) >> 5
	}
	
	;----------------------------------------------------------------------------------------------
	; Method: IsSelected
	;         Check if a node is Selected
	;
	; Parameters:
	;         pItem			- Handle to the item
	;
	; Returns:
	;         Returns true if the item is selected, false otherwise.
	;
	IsSelected(pItem)
	{
		SendMessage TVM_GETITEMSTATE, pItem, 0, , % "ahk_id " this.TVHnd
		return (ErrorLevel & TVIS_SELECTED) >> 1
	}
	
}
;==================================================================================================
;
;	Functions
;
;==================================================================================================


;----------------------------------------------------------------------------------------------
; Function: OpenProcess
;         Opens an existing local process object.
;
; Parameters:
;         DesiredAccess - The desired access to the process object. 
;
;         InheritHandle - If this value is TRUE, processes created by this process will inherit
;                         the handle. Otherwise, the processes do not inherit this handle.
;
;         ProcessId     - The Process ID of the local process to be opened. 
;
; Returns:
;         If the function succeeds, the return value is an open handle to the specified process.
;         If the function fails, the return value is NULL.
;
OpenProcess(DesiredAccess, InheritHandle, ProcessId)
{
	return DllCall("OpenProcess"
	             , "Int", DesiredAccess
				 , "Int", InheritHandle
				 , "Int", ProcessId
				 , "Ptr")
}

;----------------------------------------------------------------------------------------------
; Function: CloseHandle
;         Closes an open object handle.
;
; Parameters:
;         hObject       - A valid handle to an open object
;
; Returns:
;         If the function succeeds, the return value is nonzero.
;         If the function fails, the return value is zero.
;
CloseHandle(hObject)
{
	return DllCall("CloseHandle"
	             , "Ptr", hObject
				 , "Int")
}

;----------------------------------------------------------------------------------------------
; Function: VirtualAllocEx
;         Reserves or commits a region of memory within the virtual address space of the 
;         specified process, and specifies the NUMA node for the physical memory.
;
; Parameters:
;         hProcess      - A valid handle to an open object. The handle must have the 
;                         PROCESS_VM_OPERATION access right.
;
;         Address       - The pointer that specifies a desired starting address for the region 
;                         of pages that you want to allocate. 
;
;                         If you are reserving memory, the function rounds this address down to 
;                         the nearest multiple of the allocation granularity.
;
;                         If you are committing memory that is already reserved, the function rounds 
;                         this address down to the nearest page boundary. To determine the size of a 
;                         page and the allocation granularity on the host computer, use the GetSystemInfo 
;                         function.
;
;                         If Address is NULL, the function determines where to allocate the region.
;
;         Size          - The size of the region of memory to be allocated, in bytes. 
;
;         AllocationType - The type of memory allocation. This parameter must contain ONE of the 
;                          following values:
;								MEM_COMMIT
;								MEM_RESERVE
;								MEM_RESET
;
;         ProtectType   - The memory protection for the region of pages to be allocated. If the 
;                         pages are being committed, you can specify any one of the memory protection 
;                         constants:
;								 PAGE_NOACCESS
;								 PAGE_READONLY
;								 PAGE_READWRITE
;								 PAGE_WRITECOPY
;								 PAGE_EXECUTE
;								 PAGE_EXECUTE_READ
;								 PAGE_EXECUTE_READWRITE
;								 PAGE_EXECUTE_WRITECOPY
;
; Returns:
;         If the function succeeds, the return value is the base address of the allocated region of pages.
;         If the function fails, the return value is NULL.
;
VirtualAllocEx(hProcess, Address, Size, AllocationType, ProtectType)
{
	return DllCall("VirtualAllocEx"
				 , "Ptr", hProcess
				 , "Ptr", Address
				 , "UInt", Size
				 , "UInt", AllocationType
				 , "UInt", ProtectType
				 , "Ptr")
}

;----------------------------------------------------------------------------------------------
; Function: VirtualFreeEx
;         Releases, decommits, or releases and decommits a region of memory within the 
;         virtual address space of a specified process
;
; Parameters:
;         hProcess      - A valid handle to an open object. The handle must have the 
;                         PROCESS_VM_OPERATION access right.
;
;         Address       - The pointer that specifies a desired starting address for the region 
;                         to be freed. If the dwFreeType parameter is MEM_RELEASE, lpAddress 
;                         must be the base address returned by the VirtualAllocEx function when 
;                         the region is reserved.
;
;         Size          - The size of the region of memory to be allocated, in bytes. 
;
;                         If the FreeType parameter is MEM_RELEASE, dwSize must be 0 (zero). The function 
;                         frees the entire region that is reserved in the initial allocation call to 
;                         VirtualAllocEx.
;
;                         If FreeType is MEM_DECOMMIT, the function decommits all memory pages that 
;                         contain one or more bytes in the range from the Address parameter to 
;                         (lpAddress+dwSize). This means, for example, that a 2-byte region of memory
;                         that straddles a page boundary causes both pages to be decommitted. If Address 
;                         is the base address returned by VirtualAllocEx and dwSize is 0 (zero), the
;                         function decommits the entire region that is allocated by VirtualAllocEx. After 
;                         that, the entire region is in the reserved state.
;
;         FreeType      - The type of free operation. This parameter can be one of the following values:
;								MEM_DECOMMIT
;								MEM_RELEASE
;
; Returns:
;         If the function succeeds, the return value is a nonzero value.
;         If the function fails, the return value is 0 (zero). 
;
VirtualFreeEx(hProcess, Address, Size, FType)
{
	return DllCall("VirtualFreeEx"
				 , "Ptr", hProcess
				 , "Ptr", Address
				 , "UINT", Size
				 , "UInt", FType
				 , "Int")
}

;----------------------------------------------------------------------------------------------
; Function: WriteProcessMemory
;         Writes data to an area of memory in a specified process. The entire area to be written 
;         to must be accessible or the operation fails
;
; Parameters:
;         hProcess      - A valid handle to an open object. The handle must have the 
;                         PROCESS_VM_WRITE and PROCESS_VM_OPERATION access right.
;
;         BaseAddress   - A pointer to the base address in the specified process to which data 
;                         is written. Before data transfer occurs, the system verifies that all 
;                         data in the base address and memory of the specified size is accessible 
;                         for write access, and if it is not accessible, the function fails.
;
;         Buffer        - A pointer to the buffer that contains data to be written in the address 
;                         space of the specified process.
;
;         Size          - The number of bytes to be written to the specified process.
;
;         NumberOfBytesWritten   
;                       - A pointer to a variable that receives the number of bytes transferred 
;                         into the specified process. This parameter is optional. If NumberOfBytesWritten 
;                         is NULL, the parameter is ignored.
;
; Returns:
;         If the function succeeds, the return value is a nonzero value.
;         If the function fails, the return value is 0 (zero). 
;
WriteProcessMemory(hProcess, BaseAddress, Buffer, Size, ByRef NumberOfBytesWritten = 0)
{
	return DllCall("WriteProcessMemory"
				 , "Ptr", hProcess
				 , "Ptr", BaseAddress
				 , "Ptr", Buffer
				 , "Uint", Size
				 , "UInt*", NumberOfBytesWritten
				 , "Int")
}

;----------------------------------------------------------------------------------------------
; Function: ReadProcessMemory
;         Reads data from an area of memory in a specified process. The entire area to be read 
;         must be accessible or the operation fails
;
; Parameters:
;         hProcess      - A valid handle to an open object. The handle must have the 
;                         PROCESS_VM_READ access right.
;
;         BaseAddress   - A pointer to the base address in the specified process from which to 
;                         read. Before any data transfer occurs, the system verifies that all data 
;                         in the base address and memory of the specified size is accessible for read 
;                         access, and if it is not accessible the function fails.
;
;         Buffer        - A pointer to a buffer that receives the contents from the address space 
;                         of the specified process.
;
;         Size          - The number of bytes to be read from the specified process.
;
;         NumberOfBytesWritten   
;                       - A pointer to a variable that receives the number of bytes transferred 
;                         into the specified buffer. If lpNumberOfBytesRead is NULL, the parameter 
;                         is ignored.
;
; Returns:
;         If the function succeeds, the return value is a nonzero value.
;         If the function fails, the return value is 0 (zero). 
;
ReadProcessMemory(hProcess, BaseAddress, ByRef Buffer, Size, ByRef NumberOfBytesRead = 0)
{
	return DllCall("ReadProcessMemory"
	             , "Ptr", hProcess
				 , "Ptr", BaseAddress
				 , "Ptr", &Buffer
				 , "UInt", Size
				 , "UInt*", NumberOfBytesRead
				 , "Int")
}
Last edited by JnLlnd on 03 Nov 2014, 08:47, edited 1 time in total.
:thumbup: Author of freeware Quick Access Popup, the powerful Windows folders, apps and documents launcher!
:P Now working on Quick Clipboard Editor
:ugeek: The Automator's Courses on AutoHotkey
just me
Posts: 9423
Joined: 02 Oct 2013, 08:51
Location: Germany

Re: Making the Remote TreeView class work

03 Nov 2014, 03:40

Hi JnLlnd,

I'm glad to here that the modified version is working for you. When rereading my code, I noticed some issues and revised the function:

Code: Select all

    ;----------------------------------------------------------------------------------------------
    ; Method: GetText
    ;         Retrieves the text/name of the specified node
    ;
    ; Parameters:
    ;         pItem         - Handle to the item
    ;
    ; Returns:
    ;         The text/name of the specified Item. If the text is longer than 127, only
    ;         the first 127 characters are retrieved.
    ;
    GetText(pItem)
    {
        TVM_GETITEM := A_IsUnicode ? TVM_GETITEMW : TVM_GETITEMA

        WinGet ProcessId, pid, % "ahk_id " this.TVHnd
        hProcess := OpenProcess(PROCESS_VM_OPERATION|PROCESS_VM_READ
                               |PROCESS_VM_WRITE|PROCESS_QUERY_INFORMATION
                               , false, ProcessId)

        ; Try to determine the bitness of the remote tree-view's process
        ProcessIs32Bit := A_PtrSize = 8 ? False : True
        If (A_Is64bitOS) && DllCall("Kernel32.dll\IsWow64Process", "Ptr", hProcess, "UIntP", WOW64)
            ProcessIs32Bit := WOW64

        Size := ProcessIs32Bit ?  60 : 80 ; Size of a TVITEMEX structure

        _tvi := VirtualAllocEx(hProcess, 0, Size, MEM_COMMIT, PAGE_READWRITE)
        _txt := VirtualAllocEx(hProcess, 0, 256,  MEM_COMMIT, PAGE_READWRITE)

        ; TVITEMEX Structure
        VarSetCapacity(tvi, Size, 0)
        NumPut(TVIF_TEXT|TVIF_HANDLE, tvi, 0, "UInt")
        If (ProcessIs32Bit)
        {
            NumPut(pItem, tvi,  4, "UInt")
            NumPut(_txt , tvi, 16, "UInt")
            NumPut(127  , tvi, 20, "UInt")
        }
        Else
        {
            NumPut(pItem, tvi,  8, "UInt64")
            NumPut(_txt , tvi, 24, "UInt64")
            NumPut(127  , tvi, 32, "UInt")
        }

        VarSetCapacity(txt, 256, 0)
        WriteProcessMemory(hProcess, _tvi, &tvi, Size)
        SendMessage TVM_GETITEM, 0, _tvi, ,  % "ahk_id " this.TVHnd
        ReadProcessMemory(hProcess, _txt, txt, 256)

        VirtualFreeEx(hProcess, _txt, 0, MEM_RELEASE)
        VirtualFreeEx(hProcess, _tvi, 0, MEM_RELEASE)
        CloseHandle(hProcess)

        return txt
    }
The incomplete function IsProcess32Bit() isn't needed any more.
User avatar
JnLlnd
Posts: 487
Joined: 29 Sep 2013, 21:29
Location: Montreal, Quebec, Canada
Contact:

Re: Making the Remote TreeView class work

03 Nov 2014, 08:48

Thank you just me. I updated the comment above with the changes to TreeView Example.ahk.
:thumbup: Author of freeware Quick Access Popup, the powerful Windows folders, apps and documents launcher!
:P Now working on Quick Clipboard Editor
:ugeek: The Automator's Courses on AutoHotkey
RHCP
Posts: 202
Joined: 30 Sep 2013, 10:59

Re: Making the Remote TreeView class work

03 Nov 2014, 19:17

just me wrote: You need an additional function:

Code: Select all

IsProcess32Bit(PID) {
   If (A_Is64bitOS) {
      If (HPROC := DllCall("Kernel32.dll\OpenProcess", "UInt", 0x0400, "Int", False, "UInt", PID, "Ptr"))
      && DllCall("Kernel32.dll\IsWow64Process", "Ptr", HPROC, "UIntP", WOW64) {
         Return WOW64
      }
      Else {
         ErrorLevel := True
         Return False
      }
   }
   Return True
}
You should call CloseHandle before returning WOW64.
just me
Posts: 9423
Joined: 02 Oct 2013, 08:51
Location: Germany

Re: Making the Remote TreeView class work

04 Nov 2014, 02:59

Yes, that's why it has been removed here.
UppyDan
Posts: 18
Joined: 03 May 2014, 15:23

Re: Making the Remote TreeView class work

05 Dec 2016, 14:19

I implemented a method for TVM_GETITEMRECT that can be added to the class (just cut and paste). I tested it on Windows 7, 64-bit, using Explorer's browser pane.

Code: Select all

	GetRect(pItem, textAreaOnly := true)
	{
		WinGet ProcessId, pid, % "ahk_id " this.TVHnd
		hProcess := OpenProcess(PROCESS_VM_OPERATION|PROCESS_VM_READ
								|PROCESS_VM_WRITE|PROCESS_QUERY_INFORMATION
								, false, ProcessId)
		sizeof_RECT := 16
		VarSetCapacity(rect, sizeof_RECT, 0)
		NumPut(pItem, rect, 0, "int")
		
		pVirtMem := VirtualAllocEx(hProcess, 0, sizeof_RECT, MEM_COMMIT, PAGE_READWRITE)
		WriteProcessMemory(hProcess, pVirtMem, &rect, sizeof_RECT)
		
		SendMessage TVM_GETITEMRECT, textAreaOnly, pVirtMem,, % "ahk_id " this.TVHnd
		
		ReadProcessMemory(hProcess, pVirtMem, rect, sizeof_RECT)
		VirtualFreeEx(hProcess, pVirtMem, 0, MEM_RELEASE)
		CloseHandle(hProcess)
		
		rectObj := { left:    NumGet(rect, 0, "int")
					, top:    NumGet(rect, 4, "int")
					, right:  NumGet(rect, 8, "int")
					, bottom: NumGet(rect, 12, "int") }
		return rectObj
	}
Example: (You can add these lines inside the loop of the full example shown at the top of this subject.)

Code: Select all

rect := MyTV.GetRect(pItem)
MsgBox % "rect = {" rect.left ", " rect.top ", " rect.right ", " rect.bottom "}"
611
Posts: 1
Joined: 17 Sep 2017, 03:46

Re: Making the Remote TreeView class work

17 Sep 2017, 06:08

I've used the idea of this class in my script (I need a small specific subset of methods, so I've preferred to reimplement), as a result I have some observations to share:

1. You may want to modify SetSelection with extra SendMessage TVM_SELECTITEM, TVGN_CARET.
In my scenario TVGN_FIRSTVISIBLE does make the item visible, but doesn't actually select it.
Extra TVGN_CARET in separate TVM_SELECTITEM does the job (combining TVGN_FIRSTVISIBLE with TVGN_CARET in one TVM_SELECTITEM does not work for me).

2. Check is not universally working.
My target app just ignores {Space}, and needs a doubleclick on item or invokation of context menu to invert selection.

I had a quite lengthy series of experiments with this (you may want to try these options on your target app):
a) I've observed a lot of TVM_GETITEMW messages when the dialog with TheeView is closing, and concluded the app may read out the item state from TreeView (without storing the state internally while user selects items in tree).
So I've implemented SetItemStateImage. It worked, item images were changing as requested (in my case the indices were: 1 = unchecked, 2 = checked, 3 = semi-checked), but app just ignored my manipulations - it actually doesn't read out the state.

b) I've resorted to GetRect, and tried to doubleclick item. It hasn't worked (maybe I should have doubleclicked TheeView's parent, not the control itself).

c) With doubleclick failed, I've tried to bring up context menu. WM_CONTEXTMENU has not worked (should I have to send it to parent?), but right-clicking the item has.
As "invert selection" is the first and only item in context menu, I've just ControlSend {Down}{Enter}. It worked, but was unstable.

d) After this I've finally checked "Parent" box in Spy++, and saw a WM_COMMAND sent to TreeView's parent window (apparently some wrapper with "Afx..." class) when context menu item is chosen.
So in final version I'm just selecting the item (with TVGN_CARET!) and posting the right command to parent. Works like a bliss!

3. GetText has some (mainly, theoretical) flaws, in order of appearance:

a) Choice of TVM_GETITEMW or TVM_GETITEMA should be based on unicodeness of target window (could be determined with IsWindowUnicode), not on unicodeness of AHK.
See https://stackoverflow.com/questions/224 ... tree-views.
But that will also require unicode<->ANSI logic for all cases to be implemented in GetText, and (with non-unicode apps becoming rarity) it may not worth the time spent - you may prefer running your script with ANSI version of AHK to use it on ANSI app.

b) Offsets into 64-bit TVITEMEX structure looks wrong (by 4 bytes). The structure starts with (https://msdn.microsoft.com/en-us/librar ... s.85).aspx):

Code: Select all

  UINT      mask;
  HTREEITEM hItem;
  UINT      state;
  UINT      stateMask;
  LPTSTR    pszText;
  int       cchTextMax;
Only HTREEITEM and LPTSTR are 64-bit in 64-bit runtime, mask stays 32-bit, so 64-bit branch of TVITEMEX init should look like:

Code: Select all

            NumPut(pItem, tvi,  4, "UInt64")
            NumPut(_txt , tvi, 20, "UInt64")
            NumPut(127  , tvi, 28, "UInt")
I haven't checked it on 64-bit targets yet, so it's just my opinion.

c) VarSetCapacity(txt, -1) should be added after ReadProcessMemory(hProcess, _txt, txt, 256), otherwise string function will not work correctly on txt.
Somehow returning txt to caller does the same, so the flaw is not visible if you're using the class as-is.

Basically in my scenario I need only two functions:
1) wait for tree to become ready (as it may take up to 10 seconds to load several thousands of items from remote app server over slow VPN),
2) find (and select) first matching item in the tree.
So here's two functions I've made (along with short version of DllCall wrappers):

Code: Select all

; Waits for stable non-zero number of items in tree view
; Returns number of items
WaitForTreeView(TreeViewhWnd, LoopDelay)
{
   NumItems := -1
   Loop {
      SendMessage 0x1105, 0, 0,, % "ahk_id " TreeViewhWnd ; 0x1105 is TVM_GETCOUNT
      if (ErrorLevel != 0)
         if (ErrorLevel != NumItems)
            NumItems := ErrorLevel
         else
            break
      Sleep LoopDelay
   }
   return ErrorLevel
}

; Searches tree view for first matching item
; Returns item handle
; My target is 32-bit Unicode app (affects sizeof and offsets into TVITEMEX) and TVM_GETITEM message choice
SearchInTreeView(TreeViewhWnd, OwnerPID, Needle)
{
   ; Get owner appilcation handle, allocate two buffers in its address space, allocate variable for TVITEMEX structure
   hProcess := OpenProcess(0x438, false, OwnerPID) ; 0x438 is PROCESS_VM_OPERATION | PROCESS_VM_READ | PROCESS_VM_WRITE | PROCESS_QUERY_INFORMATION
   _TVIX := VirtualAllocEx(hProcess, 0, 60, 0x1000, 0x4) ; 60 is sizeof(TVITEMEX) for 32-bit application, 0x1000 is MEM_COMMIT, 0x4 is PAGE_READWRITE
   _ItemText := VirtualAllocEx(hProcess, 0, 256, 0x1000, 0x4) ; 256 is 128 Unicode chars  
   VarSetCapacity(TVIX, 60, 0)

   ; Get handle for root item in tree
   SendMessage 0x110A, 0x0, 0, , % "ahk_id " TreeViewhWnd ; 0x110A is TVM_GETNEXTITEM, 0x0 is TVGN_ROOT
   hItem := ErrorLevel

   ; Loop till the end of tree view, retriving next item each step
   Loop {
      ; First, try to get a level deeper
      SendMessage 0x110A, 0x4, hItem,, % "ahk_id " TreeViewhWnd ; 0x4 is TVGN_CHILD
      if (ErrorLevel = 0) {
         ; Second, try to get next item on the same level
         SendMessage 0x110A, 0x1, hItem,, % "ahk_id " TreeViewhWnd ; 0x1 is TVGN_NEXT
         if (ErrorLevel = 0)
            Loop {
               ; Third, try to accend to higher level
   	       SendMessage 0x110A, 0x3, hItem,, % "ahk_id " TreeViewhWnd ; 0x3 is TVGN_PARENT
   	       if (ErrorLevel = 0) ; Parent item not exists - it's a root of the tree
                  break
               hItem := ErrorLevel
               ; And get next element on that level
               SendMessage 0x110A, 0x1, hItem,, % "ahk_id " TreeViewhWnd 
            } Until ErrorLevel ; Accend until able to find next element on that level
      } ; Child was found
      hItem := ErrorLevel
      if (not hItem) ; No more items in tree
         break
   
      ; Retrive item text: fill TVITEMEX structure with data, copy it to target address space, ask control to fill structure, copy item text back to our variable
      NumPut(0x11, TVIX, 0, "UInt") ; 0x11 is TVIF_TEXT | TVIF_HANDLE 
      NumPut(hItem, TVIX,  4, "UInt"), NumPut(_ItemText, TVIX, 16, "UInt"), NumPut(127, TVIX, 20, "UInt")
      WriteProcessMemory(hProcess, _TVIX, &TVIX, 60)
      SendMessage 0x113E, 0, _TVIX,,  % "ahk_id " TreeViewhWnd ; 0x113E is TVM_GETITEMW
      VarSetCapacity(ItemText, 256, 0) ; Allocate new buffer for item text
      ReadProcessMemory(hProcess, _ItemText, ItemText, 256)
      VarSetCapacity(ItemText, -1) ; Adjust variable lenght, otherwise string functions won't work with this variable
   
      ; Compare item text with needed one 
      if (ItemText = Needle)
         break
   }
   
   ; Deallocate buffers in owner application address space, close appilcation handle
   VirtualFreeEx(hProcess, _TVIX, 0, 0x8000) ; 0x8000 is MEM_RELEASE
   VirtualFreeEx(hProcess, _ItemText, 0, 0x8000)
   CloseHandle(hProcess)
   
   ; Return found handle
   return hItem
}    

; Wrappers for DLL function calls
OpenProcess(DesiredAccess, InheritHandle, ProcessId) {
   return DllCall("OpenProcess", "Int", DesiredAccess, "Int", InheritHandle, "Int", ProcessId, "Ptr")
}
CloseHandle(hObject) {
   return DllCall("CloseHandle", "Ptr", hObject, "Int")
}
VirtualAllocEx(hProcess, Address, Size, AllocationType, ProtectType) {
   return DllCall("VirtualAllocEx", "Ptr", hProcess, "Ptr", Address, "UInt", Size, "UInt", AllocationType, "UInt", ProtectType, "Ptr")
}
VirtualFreeEx(hProcess, Address, Size, FType) {
   return DllCall("VirtualFreeEx", "Ptr", hProcess, "Ptr", Address, "UInt", Size, "UInt", FType, "Int")
}
WriteProcessMemory(hProcess, BaseAddress, Buffer, Size, ByRef NumberOfBytesWritten = 0) {
   return DllCall("WriteProcessMemory", "Ptr", hProcess, "Ptr", BaseAddress, "Ptr", Buffer, "Uint", Size, "UInt*", NumberOfBytesWritten, "Int")
}
ReadProcessMemory(hProcess, BaseAddress, ByRef Buffer, Size, ByRef NumberOfBytesRead = 0) {
   return DllCall("ReadProcessMemory", "Ptr", hProcess, "Ptr", BaseAddress, "Ptr", &Buffer, "UInt", Size, "UInt*", NumberOfBytesRead, "Int")
}
They are used from this piece of code (variable names thought to be self-explanatory):

Code: Select all

   ...
   
   ; Wait for device filter dialog to appear, get handle of tree view
   WinWait, %FilterDialogTitle% ahk_class #32770 ahk_pid %AppPID%
   WinGet, FDhWnd, ID ; "Last Found" style
   ControlGet, DeviceTreehWnd, Hwnd,, SysTreeView321, ahk_id %FDhWnd%

   ; Wait for tree view to load, get needed item handle
   WaitForTreeView( DeviceTreehWnd, 100)
   ACLItem := SearchInTreeView( DeviceTreehWnd, AppPID, ACLDevice_%A_Index%)

   ; Make found item visible, bring caret to it, and send "invert selection" command (to PARENT window!)
   SendMessage 0x110B, 0x5, ACLItem,, % "ahk_id " DeviceTreehWnd ; 0x110B is TVM_SELECTITEM, 0x5 is TVGN_FIRSTVISIBLE
   SendMessage 0x110B, 0x9, ACLItem,, % "ahk_id " DeviceTreehWnd ; 0x9 is TVGN_CARET
   SendCommand(DllCall("GetParent", "UInt", DeviceTreehWnd), %FilterDialogInvertCommand%) 

   ; Confirm selection
   Sleep, DialogDelay 
   ClickControl("Button1", FDhWnd)
   
   ...
   
; Clicks control named Control in window specified by WhWnd
ClickControl(Control, WhWnd)
{
   ControlGet BhWnd, Hwnd,, %Control%, % "ahk_id " WhWnd
   PostMessage 0x201, 1, 0,, % "ahk_id " BhWnd ; 0x201 is WM_LBUTTONDOWN
   PostMessage 0x202, 0, 0,, % "ahk_id " BhWnd ; 0x202 is WM_LBUTTONUP
} ; ClickControl

; Send WM_COMMAND with specified argument to the window specified by WhWnd
; Can be used to poke menu item if its ID is known
SendCommand( WhWnd, ID)
{
   PostMessage, 0x111, ID,,, % "ahk_id " WhWnd ; 0x111 is WM_COMMAND 
} ; SendCommand
Many thanks and best regards to rbrtryn, JnLlnd, just me and other contributors!
just me
Posts: 9423
Joined: 02 Oct 2013, 08:51
Location: Germany

Re: Making the Remote TreeView class work

17 Sep 2017, 16:25

611 wrote:b) Offsets into 64-bit TVITEMEX structure looks wrong (by 4 bytes).
They are correct.
User avatar
Xtra
Posts: 2744
Joined: 02 Oct 2015, 12:15

Re: Making the Remote TreeView class work

22 Sep 2020, 19:36

Updated FIXED VERSION code works well i just used it on 117k+ treeviews.

also @UppyDan :thumbup:.
gobbedy
Posts: 6
Joined: 01 Jan 2023, 00:59
Contact:

Re: Making the Remote TreeView class work

02 Jan 2023, 07:34

611 wrote:
17 Sep 2017, 06:08
c) VarSetCapacity(txt, -1) should be added after ReadProcessMemory(hProcess, _txt, txt, 256), otherwise string function will not work correctly on txt.
Thanks @611! GetText wasn't working for me until I added VarSetCapacity(txt, -1) after ReadProcessMemory(hProcess, _txt, txt, 256).

Thanks also to all other contributors. I haven't used this library much yet but it looks amazing.
User avatar
Xtra
Posts: 2744
Joined: 02 Oct 2015, 12:15

Re: Making the Remote TreeView class work

25 Feb 2023, 19:05

WaitForTreeView(TreeViewhWnd, LoopDelay)

Is not reliable for slow loading treeview.
Inserio
Posts: 5
Joined: 29 Jul 2018, 14:49

Re: Making the Remote TreeView class work

08 Dec 2023, 10:42

611 wrote:
17 Sep 2017, 06:08
b) Offsets into 64-bit TVITEMEX structure looks wrong (by 4 bytes). The structure starts with (https://msdn.microsoft.com/en-us/library/windows/desktop/bb773459(v=vs.85).aspx):

Code: Select all

  UINT      mask;
  HTREEITEM hItem;
  UINT      state;
  UINT      stateMask;
  LPTSTR    pszText;
  int       cchTextMax;
Only HTREEITEM and LPTSTR are 64-bit in 64-bit runtime, mask stays 32-bit, so 64-bit branch of TVITEMEX init should look like:

Code: Select all

            NumPut(pItem, tvi,  4, "UInt64")
            NumPut(_txt , tvi, 20, "UInt64")
            NumPut(127  , tvi, 28, "UInt")
After struggling with this for a while, then taking a break for a while, then coming back to it later, I believe I discovered the reason why your claim was false.
On 64-bit, the struct appears to get padded with an extra 4 bytes after the mask. Therefore, it would end up the same regardless of the pointer size. The full struct could be equated as follows:

Code: Select all

// ProcessPtrSize = ProcessIs32Bit ? 4 : 8
typedef struct tagTVITEMEXA {
	UINT		mask;			// 4 bytes
								// Padding of 4 bytes when 64-bit
	HTREEITEM	hItem;			// ProcessPtrSize
	UINT		state;			// 4 bytes
	UINT		stateMask;		// 4 bytes
	LPSTR		pszText;		// ProcessPtrSize
	int			cchTextMax;		// 4 bytes
	int			iImage;			// 4 bytes
	int			iSelectedImage;	// 4 bytes
	int			cChildren;		// 4 bytes
	LPARAM		lParam;			// ProcessPtrSize
	int			iIntegral;		// 4 bytes
#if _WIN32_IE >= 0x0600
	UINT		uStateEx;		// 4 bytes
	HWND		hwnd;			// ProcessPtrSize
	int			iExpandedImage;	// 4 bytes
#endif
#if NTDDI_VERSION >= 0x06010000
	int			iReserved;		// 4 bytes
#endif
} TVITEMEXA, *LPTVITEMEXA;
Thus, the NumPut can be done in either scenario with the following (it's a bit tacky for clarity's sake):

Code: Select all

ProcessPtrSize := ProcessIs32Bit ? 4 : 8
ptrType := ProcessIs32Bit ? "Int" : "Int64"
NumPut(pItem, tvi, ProcessPtrSize, "U" ptrType)
NumPut(_txt, tvi, ProcessPtrSize+ProcessPtrSize+4+4, "U" ptrType)
NumPut(127, tvi, ProcessPtrSize+ProcessPtrSize+4+4+ProcessPtrSize, "Int")
Regardless of that, I still have trouble getting this thing to work with certain different types of TreeViews, but if I end up figuring it out somehow, I'll post my updates.
Inserio
Posts: 5
Joined: 29 Jul 2018, 14:49

Re: Making the Remote TreeView class work

08 Dec 2023, 15:59

Double posting because I am somehow no longer able to edit my posts.
I figured out what my problem was with the "certain different types of TreeViews". I was trying to access a TreeView in a window that was running as admin. Even though I was using AHK with UIAccess, that wasn't enough to get OpenProcess to succeed.
Running the script as admin solved that issue, though I do wish there was an alternative for that scenario.

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: ShatterCoder and 130 guests