[pywin32-checkins] pywin32/Pythonwin/pywin/mfc afxres.py,1.1,1.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2006-01-10 04:28:48
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/mfc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6037/pythonwin/pywin/mfc Modified Files: afxres.py Log Message: [ 1043730 ] New afxres.py constants Index: afxres.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/mfc/afxres.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** afxres.py 1 Sep 1999 23:33:52 -0000 1.1 --- afxres.py 10 Jan 2006 04:28:40 -0000 1.2 *************** *** 19,22 **** --- 19,23 ---- CBRS_SIZE_FIXED = 0x0002 CBRS_FLOATING = 0x0001 + CBRS_GRIPPER = 0x00400000 CBRS_ORIENT_HORZ = (CBRS_ALIGN_TOP|CBRS_ALIGN_BOTTOM) CBRS_ORIENT_VERT = (CBRS_ALIGN_LEFT|CBRS_ALIGN_RIGHT) *************** *** 28,31 **** --- 29,38 ---- CBRS_RIGHT = (CBRS_ALIGN_RIGHT|CBRS_BORDER_LEFT) CBRS_BOTTOM = (CBRS_ALIGN_BOTTOM|CBRS_BORDER_TOP) + SBPS_NORMAL = 0x0000 + SBPS_NOBORDERS = 0x0100 + SBPS_POPOUT = 0x0200 + SBPS_OWNERDRAW = 0x1000 + SBPS_DISABLED = 0x04000000 + SBPS_STRETCH = 0x08000000 ID_INDICATOR_EXT = 0xE700 ID_INDICATOR_CAPS = 0xE701 |