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