[pywin32-checkins] pywin32/win32/Lib commctrl.py,1.2,1.3
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
|
From: Mark H. <mha...@us...> - 2004-05-26 08:53:17
|
Update of /cvsroot/pywin32/pywin32/win32/Lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9236 Modified Files: commctrl.py Log Message: New BTNS_ constants. Index: commctrl.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/Lib/commctrl.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** commctrl.py 2 Jul 2003 03:39:12 -0000 1.2 --- commctrl.py 26 May 2004 08:53:08 -0000 1.3 *************** *** 250,253 **** --- 250,263 ---- TBSTYLE_TRANSPARENT = 32768 TBSTYLE_EX_DRAWDDARROWS = 1 + BTNS_BUTTON = TBSTYLE_BUTTON + BTNS_SEP = TBSTYLE_SEP # 0x0001 + BTNS_CHECK = TBSTYLE_CHECK # 0x0002 + BTNS_GROUP = TBSTYLE_GROUP # 0x0004 + BTNS_CHECKGROUP = TBSTYLE_CHECKGROUP # (TBSTYLE_GROUP | TBSTYLE_CHECK) + BTNS_DROPDOWN = TBSTYLE_DROPDOWN # 0x0008 + BTNS_AUTOSIZE = TBSTYLE_AUTOSIZE # 0x0010; automatically calculate the cx of the button + BTNS_NOPREFIX = TBSTYLE_NOPREFIX # 0x0020; this button should not have accel prefix + BTNS_SHOWTEXT = 64 # 0x0040 // ignored unless TBSTYLE_EX_MIXEDBUTTONS is set + BTNS_WHOLEDROPDOWN = 128 # 0x0080 // draw drop-down arrow, but without split arrow section TBCDRF_NOEDGES = 65536 # Don't draw button edges TBCDRF_HILITEHOTTRACK = 131072 # Use color of the button bk when hottracked |