From: Jos v.d.V. <jo...@us...> - 2009-11-29 22:17:32
|
Update of /cvsroot/win32forth/win32forth/src/lib In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv2370/src/lib Modified Files: treeview.f Log Message: Jos: With GetFirstVisible: and GetLastVisible: can a number of items be determined. Index: treeview.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/src/lib/treeview.f,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** treeview.f 31 Oct 2009 18:10:58 -0000 1.13 --- treeview.f 29 Nov 2009 22:17:22 -0000 1.14 *************** *** 256,260 **** :M GetNext: ( hItem -- hItem ) TVGN_NEXT GetNextItem: self ;M :M GetPrevious: ( hItem -- hItem ) TVGN_PREVIOUS GetNextItem: self ;M ! :M GetLastVisible: ( hItem -- hItem ) TVGN_LASTVISIBLE GetNextItem: self ;M int maxwidth --- 256,261 ---- :M GetNext: ( hItem -- hItem ) TVGN_NEXT GetNextItem: self ;M :M GetPrevious: ( hItem -- hItem ) TVGN_PREVIOUS GetNextItem: self ;M ! :M GetLastVisible: ( hItem -- hItem ) TVGN_LASTVISIBLE GetNextItem: self ;M ! :M GetFirstVisible: ( hItem -- hItem ) TVGN_FIRSTVISIBLE GetNextItem: self ;M int maxwidth |