[Wnd-commit] wnd/wnd_doc/doc/1. Whats new whats new.dtpl,1.4,1.5
Status: Alpha
Brought to you by:
jurner
|
From: jürgen u. <cer...@us...> - 2005-07-23 19:39:54
|
Update of /cvsroot/wnd/wnd/wnd_doc/doc/1. Whats new In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv786 Modified Files: whats new.dtpl Log Message: bit of this and a bit of that Index: whats new.dtpl =================================================================== RCS file: /cvsroot/wnd/wnd/wnd_doc/doc/1. Whats new/whats new.dtpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** whats new.dtpl 2 Jul 2005 09:24:12 -0000 1.4 --- whats new.dtpl 23 Jul 2005 19:39:40 -0000 1.5 *************** *** 2,23 **** ! ::defaultpage:: whats new in 0.1.12 ::contents-header1:: news ::contents-header2:: version history ! ::site:: whats new in 0.1.12 ! <H3><a NAME="contents">changes in wnd 0.1.12</a></H3> ! release 0.1.1 3.06.05 <br><br> <UL> <LI><a HREF="#samples">changes sample guis</a> <LI><a HREF="#controls">changes controls</a> <LI><a HREF="#api">changes api</a> ! <LI><a HREF="#gdi">changes api</a> ! <LI><a HREF="#misc">miscelaneous changes</a> </UL> --- 2,28 ---- ! ::defaultpage:: whats new in 0.1.20 ::contents-header1:: news ::contents-header2:: version history ! ! ::site:: whats new in 0.1.20 ! <H3><a NAME="contents">release 23.07.05</a></H3> ! <br><br> <UL> + <LI><a HREF="#bic">changes backwards incompatible</a> <LI><a HREF="#samples">changes sample guis</a> + <LI><a HREF="#dlgs">changes dialogs</a> <LI><a HREF="#controls">changes controls</a> + <LI><a HREF="#custom">changes custom controls</a> <LI><a HREF="#api">changes api</a> ! <LI><a HREF="#gdi">changes gdi</a> ! <LI><a HREF="#tools">changes tools</a> ! </UL> *************** *** 29,35 **** <br><br> ! With the recent changes in shell and ole, drag and drop features are now implemented in ! the framework. ! <br><br> --- 34,106 ---- <br><br> ! <HR> ! <H3><a NAME="bic" HREF="#contents">-backwards incompatible changes</a></H3> ! <blockquote> ! Seems like I was so busy wrapping win32 apis that I forgot how to write PYTHON code. Some methods or functions are using the following synthax: ! <br> ! def (arg=None, *args): ! <br> ! Does not make to much sense like this. Corrected the affected methods and ! functions so they should behave now as expected. ! <br><br> ! ! The following methods or functions are affected by the changes: ! <br> ! ! <DL> ! <DT>gdi.Font.TextOutEx ! <DD>was: TextOutEx(dc, text, x, y, rect=None, spacing=None, *flags)<br> ! corrected: TextOutEx(dc, text, x, y, *flags, **kwargs) ! <br><br> ! ! <DT>controls.toolbar.Toolbar.Button ! <DD>was: Button(ID, title, iImage=0, lp=0, *state)<br> ! corrected: Button(ID, title, *state, **kwargs) ! <br><br> ! ! <DT>controls.toolbar.Toolbar.InsertButton ! <DD>was: InsertButton(i, ID, title, iImage=0, lp=0, *state)<br> ! corrected: InsertButton(i, ID, title, *state, **kwargs) ! <br><br> ! ! <DT>controls.menu.Menu.Separator ! <DD>was: Separator(ID=0, *flags)<br> ! corrected Separator(ID, *flags) ! <br><br> ! ! <DT>api.shell.FileOperation ! <DD> was: FileOperation(fileaction, From, To, title='', hwnd=0, *flags)<br> ! corrected: FileOperation(fileaction, From, To, *flags, **kwargs)<br> ! Same goes for: ! <P> ! MoveFiles<br> ! CopyFiles<br> ! RenameFiles<br> ! DeleteFiles ! </P> ! <br> ! ! <DT>api.privleges.EnablePrivleges ! <DD>was: EnablePrivleges(hProcess=None, *privleges)<br> ! corrected: EnablePrivleges(*privleges, **kwargs)<br> ! Same goes for: ! <P> ! DisablePrivleges ! </p> ! <br> ! ! ! <DT> dlgs.choosefont.ChooseFont ! <DD>the 'hook' flag should be set in the <b>Run</B> method not on <b>__init__</b> and the <b>Run</b> method is called now like this: ! Run(hwnd, *flags, **kwargs) ! <br> ! With this change all common dialogs provide unifiorm call synthax ! <br> ! ! </DL> ! ! If you use one of the affected methods or functions, you have to manualy ! adjust your code. ! </blockquote> *************** *** 37,157 **** <H3><a NAME="samples" HREF="#contents">-sample guis</a></H3> ! <OL> ! <br> ! <OL><b>gui_dobjview</b> ! <br> ! <LI>new sample gui to view the contents of a DataObject ! either from clipboard or by draging data upon <br> ! See <code class=import>wnd.sample guis.gui_dobjview.py</code> ! </OL> ! <br> ! <OL><b>explorer</b> ! <br> ! <LI>new sample gui to demonstrate shell and dragdrop capabilities of the framework <br> ! See <code class=import>wnd.sample guis.explorer/expl.py</code> ! </OL> ! <br> ! <OL><b>gui_shellnotify</b> ! <br> ! <LI>updated the gui to handle the new ShellChangeNotification class ! <br> ! See <code class=import>wnd.sample guis.explorer/expl.py</code> </OL> - </OL> <HR> ! <H3><a NAME="controls" HREF="#contents">-controls- bugs fixed and other changes</a></H3> <OL> ! <br> ! <OL><b>DriveCombo</b> ! <br> ! <LI>new control <b>DriveCombo</b> to view drives <br> ! See <code class=import>wnd.custom.dirlist</code> ! </OL> ! <br> ! <OL><b>DirList</b> ! <br> ! <LI> new control <b>DirList</b> to handle lists of files and folders <br> ! See <code class=import>wnd.custom.dirlist</code> ! </OL> ! <br> ! <OL><b>Combobox</b> ! <br> ! <LI> fixed bug in <b>GetEditControl</b>. The combobox was not fully functional ! when the editcontrol was subclassed. This is fixed now. Same goes for Treeview ! and Listview <br> ! See <code class=import>wnd.controls.treeview</code> ! </OL> ! ! <br> ! <OL><b>Treeview</b> ! <br> ! <LI> new method <b>EndEditLabel</b> to end label editing ! <br> ! See <code class=import>wnd.controls.treeview</code> ! </OL> ! <br> ! <OL><b>Listview</b> ! <br> ! <LI> new method <b>SetOverlayImage</b> + <b>GetOverlayImage</b> to set or retrieve the overlay image of an item <br> ! See <code class=import>wnd.controls.listview</code> ! </OL> ! <br> ! <OL><b>menu</b> ! <br> ! <LI> new method <b>>Clear</b> to remove all items from a menu ! ! <LI> fixed bug in <b>>GetPopup</b>. Should work now as expected ! ! ! <br> ! See <code class=import>wnd.controls.listview</code> ! </OL> ! <br> ! <OL><b>imagelist</b> ! <br> ! <LI> <b>SetbkColor</b> is now implemeted for SystemImagelist <br> See <code class=import>wnd.controls.listview</code> </OL> ! <br> ! <OL><b>splitter</b> ! <br> ! <LI> Splitter controls support a new flag: 'feedbackbar'. <br> Draws a feeedbackbar instead of moving the splitter dynmically along with the mouse. ! ! <br> ! See <code class=import>wnd.coustom.splitter</code> ! </OL> ! ! </OL> ! --- 108,440 ---- <H3><a NAME="samples" HREF="#contents">-sample guis</a></H3> ! ! <blockquote> ! <DL> ! <DT>gui_propertysheet ! <DD>new sample gui to demonstrate the use of propertysheet and wizard <br> ! See <code class=import>wnd.sample guis.gui_propertysheet.py</code> ! <DT>gui_mdiframe ! <DD>new sample gui to demonstrate the use of mdi frames <br> ! See <code class=import>wnd.sample guis.gui_mdiframe.py</code> ! ! </DL> ! </blockquote> ! ! <HR> ! <H3><a NAME="controls" HREF="#contents">-controls- bugs fixed and other changes</a></H3> ! ! <blockquote> ! <DL> ! <DT>MDIFrame ! <DD>new control <b>MDIFrame</b><br> ! See <code class=import>wnd.controls.mdiframe</code> ! <br><br> ! <DT>PropertySheet ! <DD>new control <b>PropertySheet</b>. Handles property sheets and ! wizards<br> ! See <code class=import>wnd.controls.propertysheet</code> ! <br><br> ! ! <DT>Rebar ! <DD>new control <b>Rebar</b><br> ! See <code class=import>wnd.controls.rebar</code> ! <br><br> ! ! <DT>Trackbar ! <DD>new control <b>Trackbar</b><br> ! See <code class=import>wnd.controls.trackbar</code> ! <br><br> ! ! <DT>Datepicker ! <DD>new control <b>Datepicker</b><br> ! See <code class=import>wnd.controls.datepicker</code> ! <br><br> ! ! <DT>Monthcal ! <DD>new control <b>Monthcal</b><br> ! See <code class=import>wnd.controls.monthcal</code> ! <br><br> ! ! <DT>Textin ! <DD><UL> ! <LI><b>__len__</b> method was not working. This is fixed now ! </UL> ! See <code class=import>wnd.controls.textin</code> ! <br><br> ! ! <DT>Tab ! <DD><UL> ! <LI>implemented new method <b>FindLparam</b> ! <LI>'flatseparators' style did not work. Fixed now. ! </UL> ! See <code class=import>wnd.controls.tab</code> ! <br><br> ! ! <DT>Editbox ! <DD>fixed a bug in Editbox. Editboxes 'wantreturn' style did not insert ! a new line when enter was hit. This is fixed now.<br> ! See <code class=import>wnd.controls.editbox</code> ! <br><br> ! ! <DT>dialog boxes ! <DD>fixed a bug for 'modeless' dialog boxes. Button message 'command' ! was not processed for the first button. This is fixed now<br> ! See <code class=import>wnd.controls.dialog</code> ! <br><br> ! 'dialoglike' keyboard works now for modeless dialogs ! <br><br> ! new method <b>GetDlgItem</b> for dialogs (was not documented) ! <br><br> ! new method <b>GetMainWindow</b> ! <br><br> ! ! ! ! <DT>misc enhancements ! <DD>mainwindows have a new method: <b>ForceSingleInstance</b> to disallow ! running of more then one instance of a GUI at a time ! <br><br> ! all controls and windows and dialogs support the following new methods: ! <OL> ! <LI><b>SetGUID</b> ! <LI><b>GetGUID</b> ! <LI><b>ThreadWindows</b> ! </OL> + </DL> + </blockquote> + <HR> + <H3><a NAME="dlgs" HREF="#contents">-dialogs- bugs fixed and other changes</a></H3> + + <blockquote> + + <OL> + <DL> + <DT>new common dialogs + <DD>implemented a few new common dialogs and templates: + <OL> + <LI>OpenSaveFile (OpenFile and SaveFile) + <LI>FindText + <LI>ReplaceText + <LI>ChooseColor + <LI>BrowseForFolder + <br><br> + </OL> + + See <code class=import>wnd.dlgs</code> + </DL> + </blockquote> <HR> ! <H3><a NAME="custom" HREF="#contents">-custom controls- bugs fixed and other changes</a></H3> + <blockquote> + <OL> + <DL> + <DT>DirList + <DD>new methods <b>SortBy / GetSortBy</b> to sort the view and retrieve + sorting flags <br> + See <code class=import>wnd.custom.dirlist</code> + </DL> + </blockquote> + + + <HR> + <H3><a NAME="api" HREF="#contents">-api- bugs fixed and other changes</a></H3> ! <blockquote> ! ! <DL> ! <DT>CopyData ! <DD>new class <b>CopyData</b> to handle interprocess data exchange ! via WM_COPYDATA</b> <br> ! See <code class=import>wnd.api.copydata</code> ! </DL> ! </blockquote> ! ! ! <HR> ! <H3><a NAME="gdi" HREF="#contents">-gdi- bugs fixed and other changes</a></H3> ! <blockquote> ! ! <DL> ! <DT>BitmapFromBytes ! <DD>bitmaps got a new class <b>BitmapFromBytes</b> <br> ! See <code class=import>wnd.gdi</code> ! </DL> ! </blockquote> ! ! ! <HR> ! <H3><a NAME="tools" HREF="#contents">-tools- bugs fixed and other changes</a></H3> + <blockquote> + + <DL> + <DT>dlgeditor + <DD>bitmaps got a new class <b>BitmapFromBytes</b> + font parameter was not mentioned in the documentation + <br> + was:<br> + BeginTemplate(classname, ID, title, x, y, w, h, *styles)<br> + corrected:<br> + BeginTemplate(classname, ID, title, x, y, w, h, font, *styles) + <br><br> + ex-styles did not work; fixed now + ! ! <br><br> ! For both, DlgEditor and DlgTemplate font can be None (was not mentioned in the docs) ! <br> ! See <code class=import>wnd.tools.dlgeditor</code> ! ! ! <DT>tools ! <DD>new function ClipGUID, to create a new GUID and set it to the clipboard ! ! </DL> ! </blockquote> ! ! <br><br><br><br><br><br><br> ! ! ! ! ! ::folder:: version history ! ! ::item:: release 0.1.12 + + <H3><a NAME="contents">release date 01.07.05</a></H3> + + <br><br> + + <UL> + <LI><a HREF="#samples">changes sample guis</a> + <LI><a HREF="#controls">changes controls</a> + <LI><a HREF="#api">changes api</a> + <LI><a HREF="#gdi">changes gdi</a> + <LI><a HREF="#misc">miscelaneous changes</a> + </UL> + + <strong>NOTE:</strong> + Everything in the framework is still highly experimental. + Guess up to version 0.2 everything in the framework may change + without warning. I see no way in this state of developement to care about + backwards compatibility. Sorry for this. + <br><br> + + With the recent changes in shell and ole, drag and drop features are now implemented in + the framework. + <br><br> + + + <HR> + <H3><a NAME="samples" HREF="#contents">-sample guis</a></H3> + + <blockquote> ! <DL> ! <DT>gui_dobjview ! <DD>new sample gui to view the contents of a DataObject ! either from clipboard or by draging data upon <br> ! See <code class=import>wnd.sample guis.gui_dobjview.py</code> ! <br><br> + <DT>explorer + <DD>new sample gui to demonstrate shell and dragdrop capabilities of the framework + <br> + See <code class=import>wnd.sample guis.explorer/expl.py</code> + <br><br> ! <DT>gui_shellnotify ! <DD>updated the gui to handle the new ShellChangeNotification class <br> ! See <code class=import>wnd.sample guis.gui_shellnotify.py</code> ! <br><br> ! ! </DL> ! </blockquote> ! ! ! <HR> ! <H3><a NAME="controls" HREF="#contents">-controls- bugs fixed and other changes</a></H3> ! <blockquote> ! ! <DL> ! <DT>DriveCombo ! <DD>new control <b>DriveCombo</b> to view drives ! <br> ! See <code class=import>wnd.custom.drivecombo</code> ! <br><br> ! ! <DT>DirList ! <DD>new control <b>DirList</b> to handle lists of files and folders ! <br> ! See <code class=import>wnd.custom.dirlist</code> ! <br><br> + <DT>Combobox + <DD>fixed bug in <b>GetEditControl</b>. The combobox was not fully functional + when the editcontrol was subclassed. This is fixed now. Same goes for: + <br>Treeview<br> + and Listview + <br> + See <code class=import>wnd.controls.combobox</code> + <br><br> + + <DT>Treeview + <DD>new method <b>EndEditLabel</b> to end label editing + <br> + See <code class=import>wnd.controls.treeview</code> + <br><br> ! <DT>Listview ! <DD>new method <b>SetOverlayImage</b> + <b>GetOverlayImage</b> to set or ! retrieve the overlay image of an item <br> See <code class=import>wnd.controls.listview</code> + <br><br> + + <DT>Menu + <DD> + <OL> + <LI>new method <b>>Clear</b> to remove all items from a menu<br> + <LI>fixed bug in <b>>GetPopup</b>. Should work now as expected </OL> + See <code class=import>wnd.controls.menu</code> + <br><br> ! <DT>Imagelist ! <DD>SetbkColor</b> is now implemeted for SystemImagelist ! <br> ! See <code class=import>wnd.controls.imagelist</code> ! <br><br> ! ! <DT>Splitter ! <DD>Splitter controls support a new flag: 'feedbackbar'. <br> Draws a feeedbackbar instead of moving the splitter dynmically along with the mouse. ! <br> ! See <code class=import>wnd.controls.splitter</code> ! <br><br> ! </DL> ! </blockquote> *************** *** 159,351 **** <H3><a NAME="api" HREF="#contents"> -api- bugs fixed and other changes</a></H3> ! ! <OL> ! <OL><b>clipboard</b> ! <br> ! <LI>new module <b>clipboard</b> to provide clipboard support. ! <br>This module introduces a package 'clipformats' to provide wrapper classes ! for clipboard formats ! ! <br> ! See <code class=import>wnd.api</code> ! </OL> ! ! ! <OL><b>ole</b> ! <br> ! <LI>new module <b>ole</b>. <br> highlights here are the <b>dataobject</b> module and the <b>dragdrop</b> module ! ! <br> See <code class=import>wnd.api.ole</code> ! </OL> ! ! ! <OL><b>shell</b> ! <br> ! ! <LI>- new class <b>ShellContextMenu</b>. This class handles the messy details of invoking a context menu for a shell namespace item - <LI>new method <b>GetSpecialFolderPath</b> ! ! <LI>implemented ms-anti-trust <b>pIdl methods</b> ! <br> ! <blockquote> ! <b> ! PidlRemoveLast<br> ! PidlFromPath<br> ! PidlGetNext<br> ! PidlGetChild<br> ! PidlGetLast<br> ! PidlCopyFirst<br> ! PidlAppend<br> ! PidlIsEqual<br> ! PidlIsParent<br> ! ILIsZero<br> ! </b> </blockquote> - <br> - - <LI> new method <b>GetIShellFolder</b>, - returns the pointer to the IShelFolder given an absolute pIdl <LI>fixed a bug in <b>GetPathFromPidl</b>, should return the right thing now ! ! <LI><b>FileOperation</b> and friends where not working as expected, should be fixed now ! ! ! <LI><b>GetContextMenu</b> now accepts an array of pIdls to query the context menu for ! ! <LI>new method <b>GetDataObject</b> to retrieve the DataObject for one or more items in a folder ! <LI><b>GetAttributes</b> lost its nItems parameter and takes ! an array of pIdls now aswell as a single pIdl as argument. Same goes for all other attribute requesting ! methods. ! ! ! <br> ! See <code class=import>wnd.api.shell</code> </OL> ! ! ! ! <OL><b>ShellNamespace</b> ! <br> ! <LI>new method <b>GetDataObject</b> to retrieve the DataObject for one or more items in a folder - <LI>new method <b>GetDropTarget</b> to retrieve the DropTarget inertface of a shell item - - <LI><b>GetAttributes</b> lost its nItems parameter and takes an array of pIdls now aswell as a single pIdl as argument. Same goes for all other attribute requesting methods. - - <LI>Reworked <b>GetContextMenu</b>. Changes are not ! backwards compatible !! Returns now tuple(IContextMenu, ! version) or None if something goes wrong + Version parameter ! is now supported + an array of pIdls is accepted to query the ! common contextmenu for multiple items. ! <LI>fixed a memory leak in <b>SetCwd</b> - - <br> - See <code class=import>wnd.api.shell</code> - - </OL> - - - <br><br> ! <OL><b>ShellNew</b> ! <br> ! ! <LI>new class <b>ShellNew</b>. This class mimics Explorers 'ShellNew' menu - <br> See <code class=import>wnd.api.shell.shellnew</code> ! </OL> ! ! ! <OL><b>ShellChangeNotification</b> ! <br> ! ! <LI>new class <b>ShellChangeNotification</b>. This class is an alternative to ! the <b>ShellNotify<br> class. ! <br> See <code class=import>wnd.api.shell</code> ! </OL> ! ! ! </OL> ! ! ! ! <br><br> <HR> <H3><a NAME="gdi" HREF="#contents"> -gdi- bugs fixed and other changes</a></H3> ! ! ! <OL> ! <OL><b>icon</b> ! <br> <LI> new method <b>DrawEx</b> ! ! <LI>- fixed bug in <b>GetSize</b>. Retrieving size for monochrome ! icons failed. Should work now ! ! <br> ! See <code class=import>wnd.api.gdi</code> ! </OL> - </OL> - <HR> <H3><a NAME="misc" HREF="#contents"> -miscelaneous- bugs fixed and other changes</a></H3> ! ! <OL> ! <OL><b>RECT</b> ! <br> ! ! <LI>Changed the the <b>Subtract</b> method slightly. <br>previous versions raised an error if the the two rects did not intersect completely. This case is ignored now and the rect is left unchanged ! ! <br> See <code class=import>wnd.wintypes</code> ! </OL> ! ! </OL> ! ! ! <br><br><br><br><br><br><br> ! ! ! ! ! ! ::folder:: version history ! ::item:: what was new in 0.1.11 ! <H3><a NAME="contents">changes in wnd 0.1.11</a></H3> ! release 0.1.1 18.05.05 <br><br> --- 442,592 ---- <H3><a NAME="api" HREF="#contents"> -api- bugs fixed and other changes</a></H3> ! </blockquote> ! ! <DL> ! <DT>Clipboard ! <DD>new module <b>clipboard</b> to provide clipboard support. ! <br>This module introduces a package 'clipformats' to provide wrapper ! classes for clipboard formats ! <br> ! See <code class=import>wnd.api.clipboard</code> ! <br><br> ! ! <DT>ole ! <DD>new module <b>ole</b>. <br> highlights here are the <b>dataobject</b> module and the <b>dragdrop</b> module ! <br> See <code class=import>wnd.api.ole</code> ! <br><br> ! ! <DT>shell ! <DD> ! <OL> ! <LI>new class <b>ShellContextMenu</b>. This class handles the messy details of invoking a context menu for a shell namespace item <LI>new method <b>GetSpecialFolderPath</b> ! <LI>implemented ms-anti-trust pIdl methods<br> ! <blockquote> ! <b> ! PidlRemoveLast<br> ! PidlFromPath<br> ! PidlGetNext<br> ! PidlGetChild<br> ! PidlGetLast<br> ! PidlCopyFirst<br> ! PidlAppend<br> ! PidlIsEqual<br> ! PidlIsParent<br> ! ILIsZero<br> ! </b> </blockquote> + <LI>new method <b>GetIShellFolder</b>, + returns the pointer to the IShelFolder given an absolute pIdl <LI>fixed a bug in <b>GetPathFromPidl</b>, should return the right thing now ! <LI>FileOperation</b> and friends where not working as expected, should be fixed now ! <LI><b>GetContextMenu</b> now accepts an array of pIdls to query the ! context menu for ! <LI>new method <b>GetDataObject</b> to retrieve the DataObject for ! one or more items in a folder <LI><b>GetAttributes</b> lost its nItems parameter and takes ! an array of pIdls now aswell as a single pIdl as argument. Same goes ! for all other attribute requesting methods. </OL> + See <code class=import>wnd.api.shell</code> + <br><br> ! <DT>ShellNamespace ! <DD> ! <OL> <LI>new method <b>GetDataObject</b> to retrieve the DataObject for one or more items in a folder <LI>new method <b>GetDropTarget</b> to retrieve the DropTarget inertface of a shell item <LI><b>GetAttributes</b> lost its nItems parameter and takes an array of pIdls now aswell as a single pIdl as argument. Same goes for all other attribute requesting methods. <LI>Reworked <b>GetContextMenu</b>. Changes are not ! backwards compatible !! Returns now tuple(IContextMenu, ! version) or None if something goes wrong + Version parameter ! is now supported + an array of pIdls is accepted to query the ! common contextmenu for multiple items. <LI>fixed a memory leak in <b>SetCwd</b> + </OL> + See <code class=import>wnd.api.shell</code> + </OL> + <br><br> ! ! <DT>ShellNew ! <DD>new class <b>ShellNew</b>. This class mimics Explorers 'ShellNew' menu <br> See <code class=import>wnd.api.shell.shellnew</code> ! <br><br> ! ! <DT>ShellChangeNotification ! <DD>new class <b>ShellChangeNotification</b>. This class is an alternative to ! the <b>ShellNotify</b> class. <br> See <code class=import>wnd.api.shell</code> ! <br><br> ! ! <DT>ShellLink ! <DD>new module <b>shelllink</b> to handle shortcuts ! <br> ! See <code class=import>wnd.api.shell.shelllink</code> ! <br><br> ! ! </DL> ! </blockquote> <HR> <H3><a NAME="gdi" HREF="#contents"> -gdi- bugs fixed and other changes</a></H3> ! <blockquote> ! <DL> ! <DT>Icon ! <DD> ! <OL> <LI> new method <b>DrawEx</b> ! <LI> fixed bug in <b>GetSize</b>. Retrieving size for monochrome ! icons failed. Should work now ! ! <br> ! See <code class=import>wnd.gdi</code> ! <br><br> ! </DL> ! </blockquote> <HR> <H3><a NAME="misc" HREF="#contents"> -miscelaneous- bugs fixed and other changes</a></H3> ! <blockquote> ! <DL> ! <DT>RECT ! <DD>Changed the the <b>Subtract</b> method slightly. <br>previous versions raised an error if the the two rects did not intersect completely. This case is ignored now and the rect is left unchanged ! ! <br> See <code class=import>wnd.wintypes</code> ! <br><br> ! </DL> ! </blockquote> + <br><br><br><br><br><br><br> ! ! ::item:: release 0.1.11 ! <H3><a NAME="contents">release date 18.05.05</a></H3> ! <br><br> *************** *** 430,438 **** ! ::item:: what was new in 0.1.1 ! <H3><a NAME="contents">changes in wnd 0.1.1</a></H3> - release 0.1.1 17.05.05 <br><br> --- 671,678 ---- ! ::item:: release 0.1.1 ! <H3><a NAME="contents">release date 17.05.05</a></H3> <br><br> *************** *** 678,681 **** ! ::item:: what was new in release 0.1 initial release 29.04.05 --- 918,921 ---- ! ::item:: release 0.1 initial release 29.04.05 |