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