[pywin32-checkins] pywin32/win32/Lib win32con.py,1.16,1.17
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2006-12-24 06:00:18
|
Update of /cvsroot/pywin32/pywin32/win32/Lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7893/win32/Lib Modified Files: win32con.py Log Message: Add layout flags Index: win32con.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/Lib/win32con.py,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** win32con.py 8 Dec 2006 10:48:42 -0000 1.16 --- win32con.py 24 Dec 2006 06:00:13 -0000 1.17 *************** *** 4307,4310 **** --- 4307,4312 ---- RGN_MIN = RGN_AND RGN_MAX = RGN_COPY + + ## Stretching modes used with Get/SetStretchBltMode BLACKONWHITE = 1 WHITEONBLACK = 2 *************** *** 4312,4318 **** --- 4314,4333 ---- HALFTONE = 4 MAXSTRETCHBLTMODE = 4 + STRETCH_ANDSCANS = BLACKONWHITE + STRETCH_ORSCANS = WHITEONBLACK + STRETCH_DELETESCANS = COLORONCOLOR + STRETCH_HALFTONE = HALFTONE + ALTERNATE = 1 WINDING = 2 POLYFILL_LAST = 2 + + ## flags used with SetLayout + LAYOUT_RTL = 1 + LAYOUT_BTT = 2 + LAYOUT_VBH = 4 + LAYOUT_ORIENTATIONMASK = LAYOUT_RTL|LAYOUT_BTT|LAYOUT_VBH + LAYOUT_BITMAPORIENTATIONPRESERVED = 8 + TA_NOUPDATECP = 0 TA_UPDATECP = 1 |