[pywin32-checkins] pywin32/win32/Lib commctrl.py,1.4,1.5
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2005-01-30 22:57:39
|
Update of /cvsroot/pywin32/pywin32/win32/Lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15558 Modified Files: commctrl.py Log Message: Add LVN_KEYDOWN, INDEXTOOVERLAYMASK and INDEXTOSTATEIMAGEMASK Index: commctrl.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/Lib/commctrl.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** commctrl.py 13 Jul 2004 07:44:13 -0000 1.4 --- commctrl.py 30 Jan 2005 22:57:29 -0000 1.5 *************** *** 1053,1056 **** --- 1053,1057 ---- LVN_SETDISPINFO = LVN_SETDISPINFOA LVIF_DI_SETITEM = 4096 + LVN_KEYDOWN = (LVN_FIRST-55) LVN_MARQUEEBEGIN = (LVN_FIRST-56) LVGIT_UNFOLDED = 1 *************** *** 1541,1542 **** --- 1542,1549 ---- FSB_ENCARTA_MODE = 1 FSB_REGULAR_MODE = 0 + + def INDEXTOOVERLAYMASK(i): + return i << 8 + + def INDEXTOSTATEIMAGEMASK(i): + return i << 12 |