From: <th...@us...> - 2007-11-29 21:26:28
|
Revision: 292 http://ro-oslib.svn.sourceforge.net/ro-oslib/?rev=292&view=rev Author: thughes Date: 2007-11-29 13:26:14 -0800 (Thu, 29 Nov 2007) Log Message: ----------- Add support to Toolbox_ShowObject for showing an object as a child window. (20071129-1, Christian Ludlam) Modified Paths: -------------- trunk/!OSLib/Source/Toolbox/oslib/Toolbox.swi trunk/!OSLib/docs/ChangeLog Modified: trunk/!OSLib/Source/Toolbox/oslib/Toolbox.swi =================================================================== --- trunk/!OSLib/Source/Toolbox/oslib/Toolbox.swi 2007-11-19 17:19:03 UTC (rev 291) +++ trunk/!OSLib/Source/Toolbox/oslib/Toolbox.swi 2007-11-29 21:26:14 UTC (rev 292) @@ -14,10 +14,14 @@ specifying a position", Toolbox_Full = .Struct (OS_Box: visible, .Int: xscroll, .Int: yscroll, Wimp_W: next) "One way of specifying a position", + Toolbox_Child = .Struct (OS_Box: visible, .Int: xscroll, .Int: yscroll, + Wimp_W: next, Wimp_WindowFlags: flags, Wimp_W: parent, + Wimp_WindowNestingFlags: linkage) "One way of specifying a position", Toolbox_Position = .Union ( OS_Coord: top_left, - Toolbox_Full: full "A distributed union for each object type" + Toolbox_Full: full "A distributed union for each object type", + Toolbox_Child: child ) "One way of specifying a position"; CONST @@ -206,8 +210,9 @@ // ) ); TYPE Toolbox_ShowFlags = .Bits; -CONST Toolbox_ShowAsMenu = Toolbox_ShowFlags: 1, - Toolbox_ShowAsSubMenu = Toolbox_ShowFlags: 2; +CONST Toolbox_ShowAsMenu = Toolbox_ShowFlags: 1, + Toolbox_ShowAsSubMenu = Toolbox_ShowFlags: 2, + Toolbox_ShowAsChildWindow = Toolbox_ShowFlags: 4; SWI Toolbox_ShowObject = ( NUMBER 0x44EC3 "Shows an object on the screen", ENTRY Modified: trunk/!OSLib/docs/ChangeLog =================================================================== --- trunk/!OSLib/docs/ChangeLog 2007-11-19 17:19:03 UTC (rev 291) +++ trunk/!OSLib/docs/ChangeLog 2007-11-29 21:26:14 UTC (rev 292) @@ -14,7 +14,9 @@ build system (currently only supporting cross-compilation); renamed top !OsLib into !OSLib. (20071119-1, John Tytgat / John-Mark Bell) - + - Add support to Toolbox_ShowObject for showing an object as a + child window. (20071129-1, Christian Ludlam) + * Bug Fixes: - Macro.h/Macro.Hdr: the macro Bool didn't write its result to first parameter but modified the 2nd one. (20070505-1, John Tytgat) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |