[pywin32-checkins] pywin32/com/win32comext/shell shellcon.py,1.9,1.10
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2004-04-09 11:38:16
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/shell In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29179/com/win32comext/shell Modified Files: shellcon.py Log Message: Yet more shell constants. Index: shellcon.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/shell/shellcon.py,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shellcon.py 12 Mar 2004 08:44:13 -0000 1.9 --- shellcon.py 9 Apr 2004 11:24:53 -0000 1.10 *************** *** 234,237 **** --- 234,240 ---- SVGIO_SELECTION = 1 SVGIO_ALLVIEW = 2 + SVGIO_CHECKED = 0x3, + SVGIO_TYPE_MASK = 0xf, + SVGIO_FLAG_VIEWORDER = -2147483648 # 0x80000000 STRRET_WSTR = 0 STRRET_OFFSET = 1 *************** *** 567,570 **** --- 570,574 ---- SHGDN_NORMAL = 0 # default (display purpose) SHGDN_INFOLDER = 1 # displayed under a folder (relative) + SHGDN_FOREDITING = 4096 # for in-place editing SHGDN_INCLUDE_NONFILESYS = 8192 # if not set, display names for shell name space items that are not in the file system will fail. SHGDN_FORADDRESSBAR = 16384 # for displaying in the address (drives dropdown) bar *************** *** 847,848 **** --- 851,863 ---- FVM_TILE = 6 FVM_THUMBSTRIP = 7 + + SVUIA_DEACTIVATE = 0 + SVUIA_ACTIVATE_NOFOCUS = 1 + SVUIA_ACTIVATE_FOCUS = 2 + SVUIA_INPLACEACTIVATE = 3 + + # SHChangeNotifyRegister flags + SHCNRF_InterruptLevel = 1 + SHCNRF_ShellLevel = 2 + SHCNRF_RecursiveInterrupt = 4096 + SHCNRF_NewDelivery = 32768 |