[Wnd-commit] wnd/wnd_doc/doc/controls controls.dtpl,1.3,1.4
Status: Alpha
Brought to you by:
jurner
|
From: jürgen u. <cer...@us...> - 2005-07-23 19:44:07
|
Update of /cvsroot/wnd/wnd/wnd_doc/doc/controls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1704 Modified Files: controls.dtpl Log Message: bit of this and a bit of that Index: controls.dtpl =================================================================== RCS file: /cvsroot/wnd/wnd/wnd_doc/doc/controls/controls.dtpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** controls.dtpl 2 Jul 2005 09:39:05 -0000 1.3 --- controls.dtpl 23 Jul 2005 19:43:59 -0000 1.4 *************** *** 132,135 **** --- 132,144 ---- </P> + + ::item:: ThreadWindows + <code>ThreadWindows(flag=None)</code><br> + <P>Returns a list containing the hwnds of all windows of the same thread + <br><br> + flag can be 'excludehidden' to return the hwnds of visible thread windows + only or 'excludevisible' to exclude all visible thread windows + </P> + ::item:: SetParent <code>SetParent(window)</code><br> *************** *** 1005,1010 **** </P> ! --- 1014,1038 ---- </P> + ::item:: SetGUID + <code>SetGUID(guid)</code><br> + <P>Assigns a globally unique identifier to the control or window + <br><br> + You can use this identifier to uniquely identify a control or window + cross process or network boundaries. The guid should be a string + representing the id. To make best use of it guid should be a + GUID as defined in the win32 SDK, that is a 128-bit + number you hard code in your script. Use either 'guidgen.exe' as it comes + shipped with the platform SDK to genereate such an id or the ClipGUID + function wich you will find in the 'tools' module of the framework + </P> ! ::item:: GetGUID ! <code>GetGUID()</code><br> ! <P>Returns the globally unique identifier assigned to a window or ! None. ! <br><br> ! For details see <a HREF="SetGUID.html">SetGUID</a> ! </P> ! |