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