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