[Wnd-commit] wnd/wnd_doc/doc/api/shell/shellnotify shellnotify.dtpl,1.1.1.1,1.2
Status: Alpha
Brought to you by:
jurner
|
From: jürgen u. <cer...@us...> - 2005-05-15 10:19:43
|
Update of /cvsroot/wnd/wnd/wnd_doc/doc/api/shell/shellnotify In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11231 Modified Files: shellnotify.dtpl Log Message: bit of this and a bit of that Index: shellnotify.dtpl =================================================================== RCS file: /cvsroot/wnd/wnd/wnd_doc/doc/api/shell/shellnotify/shellnotify.dtpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** shellnotify.dtpl 29 Apr 2005 15:15:52 -0000 1.1.1.1 --- shellnotify.dtpl 15 May 2005 10:19:34 -0000 1.2 *************** *** 40,44 **** </pre> ! <br><br> See <a HREF="ShellNotify methods/HandleMessage.html">HandleMessage</a> --- 40,44 ---- </pre> ! <br><br> See <a HREF="ShellNotify methods/HandleMessage.html">HandleMessage</a> *************** *** 47,50 **** --- 47,53 ---- + + + ::folder:: ShellNotify methods The ShellNotify class defines the following methods: <br><br> *************** *** 59,67 **** ::item:: Register ! <code>Register(pIdl)</code><br> Registers a pIdl for being observed of changes. Registering another pIdl for being monitored will replace the current one. Call Close to free the last monitoring handle. --- 62,84 ---- ::item:: Register ! <code>Register(pIdl, *flags)</code><br> ! <P> Registers a pIdl for being observed of changes. Registering another pIdl for being monitored will replace the current one. Call Close to free the last monitoring handle. + <br><br> + The pIdl passed is not freed in this call + <br><br> + You can pass one or more flags, to specify more detailed wich + events you would like to monitor. + The corrospond to the events listed in + <a HREF="HandleMessage.html">HandleMessage</a> + + <pre> + ShellNotify.Register(MyPidl, 'rename', 'delete') + </pre> + + </P> *************** *** 95,101 **** <DL> <DT>'rename' ! <DD>a file has been renamed<br> lp= tuple(old pIdl, new pIdl) <br><br> <DT>'create' --- 112,119 ---- <DL> <DT>'rename' ! <DD>a file has been renamed or moved<br> lp= tuple(old pIdl, new pIdl) <br><br> + <DT>'create' *************** *** 121,125 **** <DT>'renamefolder' ! <DD>a folder has been renamed<br> lp= tuple(pIdl old, pIdl new) <br><br> --- 139,143 ---- <DT>'renamefolder' ! <DD>a folder has been renamed or moved<br> lp= tuple(pIdl old, pIdl new) <br><br> |