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