[pywin32-checkins] pywin32/com/win32comext/shell shellcon.py,1.14,1.15
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2006-01-10 00:52:12
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/shell In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1155/com/win32comext/shell Modified Files: shellcon.py Log Message: More shell constants. Index: shellcon.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/shell/shellcon.py,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** shellcon.py 16 May 2005 04:26:31 -0000 1.14 --- shellcon.py 10 Jan 2006 00:52:04 -0000 1.15 *************** *** 936,937 **** --- 936,956 ---- SHGVSPB_USERDEFAULTS = SHGVSPB_PERUSER | SHGVSPB_ALLFOLDERS SHGVSPB_GLOBALDEAFAULTS = SHGVSPB_ALLUSERS | SHGVSPB_ALLFOLDERS + + # IDeskband and related + DBIM_MINSIZE = 0x0001 + DBIM_MAXSIZE = 0x0002 + DBIM_INTEGRAL = 0x0004 + DBIM_ACTUAL = 0x0008 + DBIM_TITLE = 0x0010 + DBIM_MODEFLAGS = 0x0020 + DBIM_BKCOLOR = 0x0040 + + DBIMF_NORMAL = 0x0000 + DBIMF_VARIABLEHEIGHT = 0x0008 + DBIMF_DEBOSSED = 0x0020 + DBIMF_BKCOLOR = 0x0040 + + DBIF_VIEWMODE_NORMAL = 0x0000 + DBIF_VIEWMODE_VERTICAL = 0x0001 + DBIF_VIEWMODE_FLOATING = 0x0002 + DBIF_VIEWMODE_TRANSPARENT = 0x0004 |