From: Rod O. <rod...@us...> - 2006-06-15 20:55:14
|
Update of /cvsroot/win32forth/win32forth/apps/Win32ForthIDE In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv22425/apps/Win32ForthIDE Modified Files: EdToolbar.f Log Message: Rod: Removed divider from toolbars, added dividers between rebar bands. Index: EdToolbar.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/apps/Win32ForthIDE/EdToolbar.f,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** EdToolbar.f 14 Jun 2006 06:02:56 -0000 1.2 --- EdToolbar.f 15 Jun 2006 20:55:08 -0000 1.3 *************** *** 167,171 **** WindowStyle: super [ TBSTYLE_TOOLTIPS TBSTYLE_WRAPABLE or CCS_ADJUSTABLE or nostack1 ! CCS_NOPARENTALIGN or CCS_NORESIZE or ] LITERAL or FlatToolBar? if TBSTYLE_FLAT or --- 167,171 ---- WindowStyle: super [ TBSTYLE_TOOLTIPS TBSTYLE_WRAPABLE or CCS_ADJUSTABLE or nostack1 ! CCS_NOPARENTALIGN or CCS_NORESIZE or CCS_NODIVIDER or ] LITERAL or FlatToolBar? if TBSTYLE_FLAT or *************** *** 246,250 **** WindowStyle: super [ TBSTYLE_TOOLTIPS TBSTYLE_WRAPABLE or nostack1 ! CCS_NOPARENTALIGN or CCS_NORESIZE or ] LITERAL or FlatToolBar? if TBSTYLE_FLAT or --- 246,250 ---- WindowStyle: super [ TBSTYLE_TOOLTIPS TBSTYLE_WRAPABLE or nostack1 ! CCS_NOPARENTALIGN or CCS_NORESIZE or CCS_NODIVIDER or ] LITERAL or FlatToolBar? if TBSTYLE_FLAT or *************** *** 335,339 **** :M WindowStyle: ( -- style ) WindowStyle: super ! [ WS_CLIPSIBLINGS WS_CLIPCHILDREN or CCS_NODIVIDER or RBS_VARHEIGHT or RBS_BANDBORDERS or RBS_AUTOSIZE or ] literal or ;M --- 335,339 ---- :M WindowStyle: ( -- style ) WindowStyle: super ! [ WS_CLIPSIBLINGS WS_CLIPCHILDREN or WS_BORDER or RBS_VARHEIGHT or RBS_BANDBORDERS or RBS_AUTOSIZE or ] literal or ;M |