- Fixed bug with wrong text wrapping (Alexey Voinov <voins@voins.program.ru>)
[wmaker-crm.git] / WINGs / ChangeLog
blobee91141b6609d5efb1d150e7b1a9840af64925dd
1 Changes since wmaker 0.80.1:
2 ............................
4 - added WMSetConnectionShutdownOnClose()
5 - added an extra member to the ConnectionDelegate: canResumeSending
6   see NEWS for details.
7 - WMDrawString() and WMDrawImageString() now take WMColor instead of GC as
8   arguments. WMDrawImageString() receives 2 colors (text & background).
9   This is to allow easy extension for Xft/Xrender and hide X low level details
10   Read NEWS for details since this will break backward compatibility.
11 - Added alpha channel to WMColor. 2 new functions also:
12   WMCreateRGBAColor() and WMSetColorAlpha()
13 - Miscelaneous code cleanups in wtext.c
14 - Added Xft support in WINGs (for drawing antialiased fonts with transparency).
15 - Added a new function: WMCreateAntialiasedFont() to create a font which will
16   be drawn antialiased using Xft (if available, else function returns NULL)
17 - New options in WMGLOBAL: AntialiasedText, AntialiasedSystemFont and
18   AntialiasedBoldSystemFont. Check NEWS for details.
19 - Fixed some improper calls to snprintf in wfont.c
20 - Added double buffering when drawing a WMFrame title with an antialiased font
21   to avoid flickering.
22 - Added double buffering when drawing WMList items to avoid flickering.
23   Double buffering for list also works for user drawn lists. Read NEWS for
24   details and incompatibilities introduced by this change.
25 - Added WMIsAntialiasedFont(WMFont *font) to check if a font is antialiased.
26 - Added WMGetColorAlpha(WMColor *color)
27 - Better outline when drawing balloons.
28 - Added WMCreateFontWithFlags()
29 - You can now pass "SystemFont", "BoldSystemFont", "SystemFont-##" or
30   "BoldSystemFont-##", with ## being the font size to any font creating
31   function to create a font with the (bold) system font font specification.
32 - Added WMCreateAntialiasedFontSet() (like WMCreateAntialiasedFont() but for
33   languages with multibyte text). Note however that these specific font
34   creating functions (as well as WMCreateNormalFont() and WMCreateFontSet())
35   are not meant to be called directly except in very special cases.
36   The more generic WMCreateFont() or WMCreateFontWithFlags() should be used.
37 - Multibyte languages can now render antialiased text too (only tested on
38   russian since this is the only multibyte language I can test).
39 - Added WMCopyFontWithChanges(). This is a more generic and powerful function
40   meant to replaces the obsoleted WMEmphasizeFont(), WMNormalizeFont(),
41   WMStrenghtenFont() and the other similar functions. To get the same effect
42   you pass some predefined structs to it: WFANormal, WFABold, WFAEmphasized,
43   etc which are declared in WINGs.h).
44 - Fixed a bug with empty frame titles (Alexey Voinov <voins@voins.program.ru>)
45 - Added WMGetWidgetBackgroundColor()
46 - Code cleanup in wtext.c
47 - Fixed a memory leak in wfontpanel.c
48 - Added a check that only %d is used in a font specification in WMGLOBAL and at
49   most once for each font in a fontset (eliminates a possible security exploit)
50 - Fixed WMGetTextDefaultColor() not to retain the returned color. It returns
51   only a reference to the internal color, which you shouldn't release
52 - Added wstrndup()
53 - Added WMGetFontName()
54 - Added fontpanel callback
55 - Added WMSetTableViewHasHorizontalScroller()
56 - Fixed bug that could cause SIGSEGV by accessing beyond the end of text in
57   a WINGs textfield widget.
58 - Fixed small memory leak in the font panel code.
59 - Fixed call to qsort in WMSortArray.
60 - Fixed a memleak in the file panel.
61 - Double/triple-click selection in text widgets (Vitaly Ovtchinnikov
62   <ov@rbcmail.ru>)
63 - fixed bug in tableview (clicked row callback got incorrect row) (Carlos Torres 
64   <vlaadbrain@operamail.com>)
65 - Fixed bug in resizing a scrollview
66 - Fixed bug with wrong text wrapping (Alexey Voinov <voins@voins.program.ru>)
69 Changes since wmaker 0.80.0:
70 ............................
72 - fixed a bug in wfindfile() (rewrote wfindfile() with better logic).
73 - separated the font caches for normal fonts and fontsets in WINGs (they can
74   have the same names and collide in the cache giving unwanted results)
75 - fixed labels not to display '\n' as a character if multiple '\n' are passed
76   but just skip to the next line.
77 - better warning when importing non-digit characters in PropList Data.
78 - rewrote WMBox to use a WMArray for subviews. with this change fixed a bug
79   about arranging subviews after removing one and a memleak occuring in the
80   same case.
81 - Fixed WMGetViewScreenPosition() to consider the window decorations.
82 - Added ability to enable/disable individual WMTableViewItems.
83 - Fixed textfields regarding interpretation of special keys with modifiers.
84 - Fixed some functions that accept a boolean flag as a paramater, to set only
85   1 or 0 for the flag value, not the flag passed by the user.
86 - Added 2 functions to retrieve the default system fonts:
87   WMDefaultSystemFont(WMScreen *scr) and WMDefaultBoldSystemFont(WMScreen *scr)
88 - Added WMSetButtonImageDimsWhenDisabled() and WMGetButtonEnabled()
89 - Cleaned-up the header files of functions/vars declared but not implemented
90 - Added WMGetTextFieldDelegate()
93 Changes since wmaker 0.70.0:
94 ............................
96 - added an internal strcasecmp() (only on systems where is not present)
97 - removed some redundant includes of ../src/config.h when wconfig.h is 
98   included too
99 - removed a wsyserror() message when reading a property list from file
100   (the programmer should decide if to give that message or just ignore).
101 - added a 'Bool recursive' flag to WMMergePLDictionaries()
102 - added WMSubtractPLDictionaries()
105 Changes since wmaker 0.65.0:
106 ............................
108 - fixed problem with WINGs based apps exiting with a "X_RotateProperties"
109   related error when text was selected in a textfiled.
110 - moved wstrdup(), wstrconcat() and wstrappend() from memory.c to string.c
111 - added property list handling code making libPropList unnecessary and
112   obsolete. Backward compatibility is provided through the 
113   WINGs/proplist-compat.h header file which has #defines from old libPropList
114   function names to new function names with minimal changes. Read this
115   header file and the NEWS file for more details about this subject.
116 - Renamed WMGetUDAllKeys() to WMGetUDKeys()
119 Changes since wmaker 0.64.0:
120 ............................
122 - made programmatic scroller changes send notifications
123 - replaced WMSetBoxExpandsToParent with WMSetViewExpands...
124 - added WMGetLabelFont()
125 - added WMAddPersistentTimerHandler()
126 - Moved all internal handlers (timer, idle and input) to handlers.c
127 - simplified wevent.c and wutil.c.
128 - fixed handling of input with poll (was broken)
129 - fixed mem leak that occured when input handling was done with poll
130 - simpler and more straightforward event handling for timer, idle, input
131   and X events (also fixed some problems the old handling logic had)
132 - moved timer, idle and input handler definitions and prototypes from
133   WINGs.h to WUtil.h because they're not GUI related.
134 - better and more robust handling of events (timer, idle, input, X) in
135   WMMaskEvent(). Also fixed a bug where input and timer events were not
136   treated for undefined periods of time under some circumstances.
137 - fixed secure textfields not to allow text selection, to avoid compromising
138   sensitive information by pasting it to a terminal.
139 - replaced wmkrange(), wmkpoint() and wmksize() functions with macros.
140 - added WMRemoveFromArrayMatching(array, match, cdata), which will remove the
141   first element in the array that is matched by match(item, cdata)==True.
142 - added WMArrayFirst(), WMArrayLast(), WMArrayNext() and WMArrayPrevious()
143   functions and also WM_ITERATE_ARRAY() and WM_ETARETI_ARRAY() macros, to make
144   interfaces to WMBag and WMArray similar and to make life a little simpler
145   when iterating through all elements of an array.
146 - replaced bags with arrays wherever appropriate. This will improve
147   performance a bit.
148 - replaced some recursive code with iterative code in selection.c
149 - added WMCreateBlendedPixmapFromRImage()
150 - small API change:
151   1. Renamed WMSetApplicationIconImage(), WMGetApplicationIconImage() and
152      WMSetWindowMiniwindowImage() to respectively WMSetApplicationIconPixmap(),
153      WMGetApplicationIconPixmap() and WMSetWindowMiniwindowPixmap()
154      They operate on a WMPixmap which is practically an X Pixmap with no alpha
155      channel information and the new name is more suggestive and also leaves
156      room for the new functions added for operating on images with alpha info.
157   2. Added WMSetApplicationIconImage() and WMGetApplicationIconImage() which
158      operate on an RImage and store alpha information too.
159   3. Added WMCreateApplicationIconBlendedPixmap() which will take the image
160      set by WMSetApplicationIconImage() and will combine it with a color.
161      If color is NULL it will blend using the default panel color (#aeaaae)
162   All these changes will allow WINGs to handle images with alpha blending
163   correctly in panels and wherever else needed. More about in NEWS.
164 - updated panels to use the newly available RImages if present and fallback
165   to old WMPixmaps if not, to properly show alpha blended images.
166 - replaced some still left malloc's with wmalloc's.
167 - fixed a bug in WMReparentWidget()
168 - added WMReparentWidget() to WINGs.h
169 - fixed a bug that made the scroller knob jump backwards when dragged (this
170   bug had no relation with the behavior that #define STRICT_NEXT_BEHAVIOUR
171   attempts to accomplish).
172 - fixed scrolling direction with mouse wheel for horizontal scroller.
175 changes since wmaker 0.63.1:
176 ............................
177 - added WMRunModalLoop() and WMBreakModalLoop()
178 - added WMSetBoxExpandsToParent()
179 - added WMRemoveBoxSubview()
180 - moved WINGs headers in a WINGs subdirectory when installed.
181   use #include <WINGs/header_file_name> in your application from now on.
182   Also updated get-{wings|wutil}-flags.
183 - Fixed a mem leak in WMList.
184 - Fixed a bug that caused sigsegv for a WMList with more than 32767 items.
185 - Added an example of how to create a server type program with WMConnection.
186 - added WMOpenScreen()
189 changes since wmaker 0.62.1:
190 ............................
191 - added WRuler widget
192 - added WText widget (rtf multiline text widget) 
193         Nwanua Elumeze <nwanua@colorado.edu>
194 - added a new AUTO option for the UseMultiByte option
195 - added WMRaiseWidget()/WMLowerWidget()
196 - added missing EscapeTextMovement to textfield delegate/notification
197 - added WMGetLabelText()
198 - added WMReparentWidget()
199 - added WMCreateTabViewItem()
200 - added W_CreateUnmanagedTopView()
201 - added wtokenjoin(), wtokensplit(), wtokenfree(), wtrimspace()
202 - added WMWidgetIsMapped()
203 - added WMSetApplicationIconWindow()
204 - restructured the directory tree. Added Documentation, Examples and Tests
205   subdirectories
206 - removed WMArrayBag and reorganized WMTreeBag to be WMBag.
207 - added WMArray class.
208 - added WMSetWindowUserPosition()
209 - added WMGetListSelectedItems()
210 - added WMSetListAllowMultipleSelection(), WMListAllowsMultipleSelection().
211 - added WMSetListAllowEmptySelection(), WMListAllowsEmptySelection().
212 - WMListSelectionDidChangeNotification passes NULL as the notification 
213   client data (previously passed the selected item row).
214 - added WMUnselectListItem(), WMSelectAllListItems(), WMUnselectAllListItems()
215 - better behavior of wheel mices in WMList. Simple mouse wheel events
216   will scroll by 1/3 of the WMList height. Using Shift as a modifier will
217   scroll line by line, while using Control as a modifier will scroll page
218   by page.
219 - better behavior of WMScroller regarding mouse wheel events. 'Shift' modifier
220   will scroll line by line, while 'Control' modifier will scroll page by page.
221 - fixed some buffer overflow allowing bugs.
222 - added WSDecrementWheel and WSIncrementWheel for handling mouse wheel in
223   scrollers and scrolled widgets. This should be treated like the WSxxxPage
224   counterparts, except it should scroll by page_size/3 instead of one full page
225 - added WMSetBrowserAllowMultipleSelection(), WMSetBrowserAllowEmptySelection()
226   WMBrowserAllowsMultipleSelection() and WMBrowserAllowsEmptySelection()
227 - WMBrowser now allows multiple selections.
228 - Added WMGetBrowserPaths() to retrieve the paths for browsers that allow
229   multiple selections.
230 - WMDestroyWidget() now calls WMUnmapWidget() first
231 - added WMScrollerDidScrollNotification to scroller
232 - added WMGetScrollViewVisibleRect()
233 - fixed a mem leak in the browser code.
234 - renamed wstrappend() to wstrconcat(). wstrconcat(str1, str2) concatenates
235   str1 with str2 and returns that in a newly malloc'ed string.
236   Be sure to rename wstrappend with wstrconcat in your code too, else
237   hazardous things can happen!
238 - implemented a new wstrappend() function. wstrappend(dst, src) will append 
239   src to dst modifing dst and returning a pointer to it. No new string is 
240   generated, except if dst is NULL, in which case its the same as calling
241   wstrdup(src).
242   dst can ONLY be NULL or a dynamically allocated string (obtained from a
243   call to malloc, realloc, wmalloc, wrealloc, ...). dst CANNOT be a static
244   or a constant string!
245 - added wmessage() for printing a variable formatted string to stderr, with
246   the program name prepended to it. Similar to wwarning(), except that it
247   doesn't add "warning:" in the output message.
248 - added WMBox widget
249 - added WMAddTabViewItemWithView()
250 - added W_SetViewCursor()
251 - made Extra widgets library
252 - added table widget in Extras library
253 - added WMGetConnectionUnsentData() (WMGetConnectionQueuedData() too as an
254   alias).
255 - added WMSetConnectionCloseOnExec() to specify if the socket associated
256   with a connection survives an exec* call or not. When a new connection is
257   created using the WMCreate... or WMAcceptConnection() calls, it has the
258   close on exec flag set automatically to 'True' by the library. Unless
259   you want to let the socket of some connection to survive across an exec*
260   call, you need not to call this function.
261 - removed all the wsyserror() and wwarning() calls from host.c and
262   connection.c and replaced where appropriate with assertions. If a function
263   returns some invalid result, you can still get the system error message if
264   you need, by calling wsyserrorwithcode() and passing WCErrorCode, if
265   WCErrorCode > 0. If WCErrorCode==0, that is not a system error, and
266   wsyserrorwithcode() should not be called in this case.
267 - added WMNextHashEnumeratorKey() to retrieve all keys in some hash enumerator
268   one by one.
269 - fixed a bug with mouse wheels scrolling in scrollers even with the widget
270   fully visible.
271 - Fixed a memory leak (the destroy function for a view was never called and
272   as a result the shaded windows didn't go away when closed. The non-shaded
273   windows were unmapped on close but not destroyed either so they only
274   apparently went away, but continued to use memory).
275 - Fixed a bug in the hashtable code which free'd the whole item instead of
276   just the item key in WMResetHashTable() (possible source of SIGSEGVs)
279 changes since wmaker 0.62.0:
280 ............................
281 - added WMSetWidgetDefaultFont(), WMSetWidgetDefaultBoldFont()
285 changes since wmaker 0.62.0:
286 ............................
287 - added WM{S,G}etDataFormat()
288 - added drag and drop
289 - changed selection code
290 - added clientdata to WMFindInBag
291 - removed SetWindowInitialSize()
292 - added SetWindowAspectRatio()
293 - added initial timeout when establishing a connection.
294 - added WMSetConnectionDefaultTimeout() and WMSetConnectionOpenTimeout();
295 - added WMGetConnectionTimeoutState()
297 changes since wmaker 0.61.1:
298 ............................
300 - WARNING: semantic of bags has changed!
301         An index assigned to an item will always keep that index unless
302         you insert an item before it.
304         For example:
305                 bag = WMCreateBag();
306                 WMSetInBag(bag, 10, "bla");
307         That code will put "bla" in index 10, instead of 0, as it used to be.
308 - fixed WMInsertInBag(). It ignored index, and always put the new item at end.
309 - added WMSaveUserDefaults().
310 - rewrote WMPopUpButton to use WMMenuItem
311 - added WMGetPopUpButtonMenuItem(WMPopUpButton *bPtr, int index)
312 - WMSortListItemsWithComparer(WMList *lPtr, (int)(f)(const void*, const void*))
313 - WMSortBrowserColumnWithComparer()
314 - fixed bug with sorting list items.
315 - fixed bug in handling keyboard input associated with selection and
316   notification sending.
317 - filepanel puts dirs on top of list (Wolff <wolff@cybercable.fr>)
318 - added WMReplaceInBag (Wolff <wolff@cybercable.fr>)
319 - added vertical views and multiple views in WMSplitView (Wolff <wolff@cybercable.fr>)
320 - changed values of parameter values of WMSplitViewConstrainProc()
321 - configurable default fontsize patch (Igor P. Roboul <igor@mordor.myip.org>)
322 - fixed a bug that crashed the programm when a popup button was scrolled.
323 - fixed a bug that caused incorrect drawing position of the popup indicator.
324 - fixed a bug that prevented selecting no item (-1) in a popup button.
325 - an assertion will be raised if the program tries to select a popup button
326   item that is beyond the total number of items present in the popup button.
327 - changed names of functions for SplitView to be consistent. Some contained
328   SubView while other Subview. Now all have Subview.
329 - fixed a bug in how input events were posted. Establishing 2 or more input 
330   handlers for the same file descriptor, handling different (read/write/except)
331   events, caused wrong handlers to be called.
332 - Reimplemented the input and idle handlers with WMBag to avoid a functional
333   problem with them: inability to remove handlers next to the called one, from
334   the called handler itself. Trying to do this with the old version caused the
335   program to crash.
336 - changed wrealloc behaviour to be like this: new = wrealloc(old, new_size);
337     1. if old is NULL, return wmalloc(new_size).
338     2. if new_size is 0, call wfree(old), and return NULL.
339     3. if both old is a valid pointer and new_size>0, call realloc.
340 - added wstrerror(int errnum) to return the string associated with errnum.
341 - new wsyserrorwithcode(int error, const char* fmt, ...), similar to 
342   wsyserror(), but printing the message for the specified error code.
343 - added 3 new classes: WMData, WMHost and WMConnection
344 - fixed a big memory leak in the color panel code (from Pascal Hofstee).
345 - added scrolling to tabview
347 changes since wmaker 0.61.0:
348 ............................
350 - added WMGetTextFieldFont()
351 - escape key in panels (craig nellist <crn@ozemail.com.au>)
352 - applied patch with fixes and enhancements to textfield 
353         (Franck Wolff <wolff@cybercable.fr>)
354 - changed WMList to use WMBag internally, instead of a linked list
355 - replaced WMAddSortedListItem() with WMSortListItems()
356 - replaced WMAddSortedBrowserItem() with WMSortBrowserColumn()
358 changes since wmaker 0.60.0:
359 ............................
361 - added WMScreenWidth() and WMScreenHeight() functions.
362 - fixed some problems when compiling with non gcc compilers.
363 - added WMSetTextFieldFont()
364 - added WMSetButtonImageDefault() (craig nellist <crn@ozemail.com.au>)
365 - added WMBag (array/list)
366 - added libWUtil, a library that is a subset of libWINGs. It contains utils
367   that can be used in writing non-GUI programs. They include: hashes,
368   notifications, input/idle/timer handlers, user defaults database handling,
369   memory handling, application resource handling, etc.
370   All the non-GUI stuff from libWINGs is present.
371   Still linWINGs contain all this stuff so if you use libWINGs, you don't
372   need to link against libWUtil too.
373   One notable aspect of libWUtil is that it has a modified version of the
374   event handling function. It is named WHandleEvents() and will handle all
375   input/idle/timer events the app has.
376   If your app has a permanent input handler (as for example a socket a server
377   is listening on), then the main loop of the app can be:
378         while(1) {
379             WHandleEvents();
380         }
381   but if there is no permanent input handler, you need to add some delay to
382   avoid a too high cpu load by your program:
383         while(1) {
384             WHandleEvents();
385             wusleep(5000);
386         }
387   A permanent input handler is one that is established when the program starts
388   and is present until the program exits.
389   One that is deleted and later reinstalled, is not considered permanent.
390   This difference is because if there is some input handler, the function will
391   block until some event appears, while if there is no input handler the
392   function will return almost immediately (after handling the timer/idle
393   stuff).
395   Except the stuff declared in WUtil.h, the following functions declared in
396   WINGs.h are also present in libWUtil (you will need to #include <WINGs.h>
397   if you use one of these):
398         WMInitializeApplication(char *applicationName, int *argc, char **argv);
399         WMSetResourcePath(char *path);
400         WMGetApplicationName();
401         WMPathForResourceOfType(char *resource, char *ext);
402         WMAddTimerHandler(int milliseconds, WMCallback *callback, void *cdata);
403         WMDeleteTimerWithClientData(void *cdata);
404         WMDeleteTimerHandler(WMHandlerID handlerID);
405         WMAddIdleHandler(WMCallback *callback, void *cdata);
406         WMDeleteIdleHandler(WMHandlerID handlerID);
407         WMAddInputHandler(int fd, int condition, WMInputProc *proc,
408                           void *clientData);
409         WMDeleteInputHandler(WMHandlerID handlerID);
410 - added progress indicator widget
411 - Changed WMSetWindowUPosition() and WMSetWindowUSize() to
412   WMSetWindowInitialPosition() and WMSetWindowInitialSize() respectively,
413   for better naming conventions.
416 changes since wmaker 0.53.0:
417 ............................
419 - added balloon help
420 - fixed a bug with setting initial path in browsers.
421 - added WMSetButtonImageDimsWhenDisabled()
422 - changed simple callback/notifications to delegate-like stuff. Affected
423   widgets are:
424         WMBrowser
425         - WMSetBrowserFillProc() was replaced with WMSetBrowserDelegate
426         - WMBrowserDidScrollNotification was replaced with a delegate callback
428         WMTextField (not completed yet)
429         The notifications will still work, but using the delegate is preferable
431   How to convert old code to delegate callbacks:
432         1 - create a variable (static or dynamic) of the type of the 
433             delegate for the widget type.
434         2 - Replace the notification observers with the equivalent 
435             delegate callbacks. 
436         3 - Put pointers to the callbacks in the delegate variable.
438         Take a look in wfilepanel.c to see how it is used there.
440 - changed W_ViewProcedureTable to delegates
441         This will only affect user created widgets. If you have a custom
442         widget, you will need to update the callbacks and the declaration
443         of the W_ViewProcedureTable variable to be a W_ViewDelegate,
444         which is declared in WINGsP.h  To setup the delegate, assign
445         the delegate variable to view->delegate.
447 - WMTextField
448         Removed all the didChange notifications that were sent when the text
449         was changed programmatically. Only changes made by user interaction
450         will be notified now. If you need the old behaviour, send notifications
451         manually when you change the text.
453 - added WMTabView
454 - added WMGetColorPanelColor(WMColorPanel *panel)
455 - made WMGetUDStringForKey() to only return a reference to the string, not a
456   wstrdup()'ed copy. DO NOT FREE IT ANYMORE!
457 - added MultiByteText option to userdefaults file to control use of multibyte
458   string drawing functions
459 - renamed WMCreateFont() to WMCreateFontSet()
460 - renamed WMCreateFontInDefaultEncoding() to WMCreateNormalFont()
461 - added WMCreateFont() with different semantics
464 changes since wmaker 0.52.0:
465 ............................
467 - added int WMGetBrowserMaxVisibleColumns(WMBrowser *bPtr);
470 changes since wmaker 0.51.2:
471 ............................
473 - added WMColorWellDidChangeNotification
474 - added wfindfileinarray()
475 - fixed bug in window title setting 
476         (MANOME Tomonori <manome@itlb.te.noda.sut.ac.jp>)
478 changes since wmaker 0.51.1:
479 ............................
481 - wusergnusteppath() will return a statically allocated string now.
482  DO NOT FREE IT ANYMORE!!
486 changes since wmaker 0.51.0:
487 ............................
489 - applied c++ compat header patch from Martynas Kunigelis <mkunigelis@alna.lt>
490 - added WMSetTextFieldBeveled()
491 - removed W_GC() : use WMColorGC() instead
492 - added WMCreatePixmap()
493 - changed WMSetTextFieldEnabled() to WMSetTextFieldEditable()
495 changes since wmaker 0.50.1:
496 ............................
498 - fixed various bugs
499 - added patch from Franck Wolff <frawolff@club-internet.fr>, with
500   many fixes and enhancements
501 - added notification queues, asynchronous notifications etc.
502 - added WMSetBrowserDoubleAction()
503 - fixed list double click action
505 changes since wmaker 0.50.2:
506 ............................
508 - added wsetabort() - look WUtil.h
509 - fixed bug in WMList resize
510 - added notification sending when changing textfield programatically
511 - removed WMHideWindow()
512 - fixed bug in WMCloseWindow()
513 - added textfield selection patch
514 - added color panel code
515 - added auto name completion for the file panel
516 - added function to select text range, and to set cursor position in text
517   fields programatically
519 changes since wmaker 0.20.3:
520 ............................
522 - added WMSetSliderImage(), WMSetSliderKnobThickness()
523 - added WMGetListItemHeight()
524 - added WMListDidScrollNotification
525 - added WSetColorWellBordered()
526 - added hacky color dragging in colorwell
527 - added poll() support in WMNextEvent. WARNING: the stuff needed for
528   WMAddInputHandler() is not yet implemented for the poll stuff
529 - added WMSetFilePanelAccessoryView(), WMGetFilePanelAccessoryView()
530 - added WMSetPopUpButtonEnabled()
531 - added WMGetLabelImage()
532 - autoscroll for popup button menus
533 - added WMDrawPixmap()
534 - WARNING: changed parameter list for WMListDrawProc
536 changes since wmaker 0.20.2:
537 ............................
539 - WMSetBrowserMaxVisibleColumns() - untested
543 changes since wmaker 0.20.0:
544 ............................
546 - added generic object field for WMListItem. This is for hanging generic
547   clientdata
550 changes since wmaker 0.20.0:
551 ............................
553 - changed WMGetFilePanelFile() with WMGetFilePanelFileName()
554 - made SavePanel
556 changes since wmaker 0.19.3:
557 ............................
559 - added WMCreatePanelForWindow()
560 - added extra parent parameter for filepanel, alertpanel and inputpanel
561 - WMCloseWindow()
562 - WMChangePanelOwner()
563 - added WMAddInputHandler()
564 - change range related function arguments (WMTextField) to use WMRange
566 changes since wmaker 0.19.1:
567 ............................
569 - added wstrappend()
570 - fixed bug when changing selected radio button by hand
572 changes since wmaker 0.18.1:
573 ............................
575 - removed textHeight arg from W_PaintImageAndText
576 - added WMCreateWindowWithStyle()
577 - added WMSetWindowBaseSize() and ResizeIncrements()
578 - added WMSetWindowLeve()
579 - added WMSetWindowDocumentEdited()
580 - added WMSetScrollViewLineScroll(), WMSetScrollViewPageScroll()
581 - added WMSetWindowMiniwindowTitle()
582 - added WMSetWindowMiniwindowImage()
584 changes since wmaker 0.18.0:
585 ............................
587 - added functions to get RGB components and "#rrggbb" string from WMColor.
588 - added function to create color from a name
589 - fixed bug that caused blocking until some new event arrives, even
590   when there already were events in the queue
591   (like having to move the pointer over window to force the window to be
592   painted)
594 changes since wmaker 0.17.5:
595 ............................
597 I don't remember everything, but here it goes:
599 - fixed some bugs in text field
600 - added a incomplete implementation of split view (not yet usable)
601 - added a slider
602 - changed the filepanel stuff. Each application can have only 1 file panel.
603 The same panel will be reused every time you call for it, unless you free it.
604 - changed semantics of WMCreateFont() so that it returns NULL if the requested
605   font can't be loaded
606 - removed WMAddDestroyCallback() 
607 - fixed bug in WMRemovePopUpButtonItem()
608 - added function for user specified item height in WMList
609 - added WMSetPopUpButtonText(). It will set the default text in the button
610   when no options are selected
611 - fixed bug in remove/add item in already mapped popupbuttons. Note: it is
612   not good practice to change the contents of a popup button when it's
613   already visible and the user has probably interacted with it.
614 - fixed behaviour of "radio buttons"
615 - WMInitializeApplication() must be the first function to be called in the
616   program
617 - removed applicationName, argc and argv arguments from the WMCreateScree...
618   functions
619 - WMReleaseColor(scr,color) changed to WMReleaseColor(color)
620 - WMPaintColorRectangle() changed to WMPaintColorSwatch()
621 - added various functions in font and color handling
622 - added WMSetButtonFont()
623 - changed WMCreateCommandButton() so that the buttons it creates will change
624         their label when pushed
625 - added WMGetSystemPixmap(WMScreen *scr, int image)
626 - added partial I18N support
627 - added libPropList requirement and some related utility functions
628 - added a interface to prooplist, so that it works as a user defaults db
629 - added WMWidthOfString() (removed WMFontWidthOfString())
630 - added WMDrawString()
631 - added WMSetTextFieldSecure(WMTextField *tPtr, Bool flag)
632 - WMGetListItem() will dup the returned string
633 - removed need for ProgName being defined
634 - rewrote hashtable stuff and made it available for outside use
635 - added notification functions, with view resize notification
636 - added WMSetWindowMinSize() and MaxSize()
637 - text editing notification
638 - added WMSetListPosition() etc.
639 - added WMInsertBrowserItem()
640 - the above 2 functions return WMListItem*, instead of Bool
641 - rewrote browser
642 - WMGetListItem() will return WMListItem*
643 - removed WMGetListItems() and WMSetListItems()
644 - fixed focus stuff for multi-window apps
645 - changed all WMList function names that contained index to row