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