Fixed bug with sorting list items in WINGs
[wmaker-crm.git] / WINGs / ChangeLog
blob71a7b6a3b14ebf585b010cf4b9ea8371882a8df4
1 changes since wmaker 0.61.1:
2 ............................
4 - fixed WMInsertInBag(). It ignored index, and always put the new item at end.
5 - added WMSaveUserDefaults().
6 - fixed bug with sorting list items.
9 changes since wmaker 0.61.0:
10 ............................
12 - added WMGetTextFieldFont()
13 - escape key in panels (craig nellist <crn@ozemail.com.au>)
14 - applied patch with fixes and enhancements to textfield 
15         (Franck Wolff <wolff@cybercable.fr>)
16 - changed WMList to use WMBag internally, instead of a linked list
17 - replaced WMAddSortedListItem() with WMSortListItems()
18 - replaced WMAddSortedBrowserItem() with WMSortBrowserColumn()
20 changes since wmaker 0.60.0:
21 ............................
23 - added WMScreenWidth() and WMScreenHeight() functions.
24 - fixed some problems when compiling with non gcc compilers.
25 - added WMSetTextFieldFont()
26 - added WMSetButtonImageDefault() (craig nellist <crn@ozemail.com.au>)
27 - added WMBag (array/list)
28 - added libWUtil, a library that is a subset of libWINGs. It contains utils
29   that can be used in writing non-GUI programs. They include: hashes,
30   notifications, input/idle/timer handlers, user defaults database handling,
31   memory handling, application resource handling, etc.
32   All the non-GUI stuff from libWINGs is present.
33   Still linWINGs contain all this stuff so if you use libWINGs, you don't
34   need to link against libWUtil too.
35   One notable aspect of libWUtil is that it has a modified version of the
36   event handling function. It is named WHandleEvents() and will handle all
37   input/idle/timer events the app has.
38   If your app has a permanent input handler (as for example a socket a server
39   is listening on), then the main loop of the app can be:
40         while(1) {
41             WHandleEvents();
42         }
43   but if there is no permanent input handler, you need to add some delay to
44   avoid a too high cpu load by your program:
45         while(1) {
46             WHandleEvents();
47             wusleep(5000);
48         }
49   A permanent input handler is one that is established when the program starts
50   and is present until the program exits.
51   One that is deleted and later reinstalled, is not considered permanent.
52   This difference is because if there is some input handler, the function will
53   block until some event appears, while if there is no input handler the
54   function will return almost immediately (after handling the timer/idle
55   stuff).
57   Except the stuff declared in WUtil.h, the following functions declared in
58   WINGs.h are also present in libWUtil (you will need to #include <WINGs.h>
59   if you use one of these):
60         WMInitializeApplication(char *applicationName, int *argc, char **argv);
61         WMSetResourcePath(char *path);
62         WMGetApplicationName();
63         WMPathForResourceOfType(char *resource, char *ext);
64         WMAddTimerHandler(int milliseconds, WMCallback *callback, void *cdata);
65         WMDeleteTimerWithClientData(void *cdata);
66         WMDeleteTimerHandler(WMHandlerID handlerID);
67         WMAddIdleHandler(WMCallback *callback, void *cdata);
68         WMDeleteIdleHandler(WMHandlerID handlerID);
69         WMAddInputHandler(int fd, int condition, WMInputProc *proc,
70                           void *clientData);
71         WMDeleteInputHandler(WMHandlerID handlerID);
72 - added progress indicator widget
73 - Changed WMSetWindowUPosition() and WMSetWindowUSize() to
74   WMSetWindowInitialPosition() and WMSetWindowInitialSize() respectively,
75   for better naming conventions.
78 changes since wmaker 0.53.0:
79 ............................
81 - added balloon help
82 - fixed a bug with setting initial path in browsers.
83 - added WMSetButtonImageDimsWhenDisabled()
84 - changed simple callback/notifications to delegate-like stuff. Affected
85   widgets are:
86         WMBrowser
87         - WMSetBrowserFillProc() was replaced with WMSetBrowserDelegate
88         - WMBrowserDidScrollNotification was replaced with a delegate callback
90         WMTextField (not completed yet)
91         The notifications will still work, but using the delegate is preferable
93   How to convert old code to delegate callbacks:
94         1 - create a variable (static or dynamic) of the type of the 
95             delegate for the widget type.
96         2 - Replace the notification observers with the equivalent 
97             delegate callbacks. 
98         3 - Put pointers to the callbacks in the delegate variable.
100         Take a look in wfilepanel.c to see how it is used there.
102 - changed W_ViewProcedureTable to delegates
103         This will only affect user created widgets. If you have a custom
104         widget, you will need to update the callbacks and the declaration
105         of the W_ViewProcedureTable variable to be a W_ViewDelegate,
106         which is declared in WINGsP.h  To setup the delegate, assign
107         the delegate variable to view->delegate.
109 - WMTextField
110         Removed all the didChange notifications that were sent when the text
111         was changed programmatically. Only changes made by user interaction
112         will be notified now. If you need the old behaviour, send notifications
113         manually when you change the text.
115 - added WMTabView
116 - added WMGetColorPanelColor(WMColorPanel *panel)
117 - made WMGetUDStringForKey() to only return a reference to the string, not a
118   wstrdup()'ed copy. DO NOT FREE IT ANYMORE!
119 - added MultiByteText option to userdefaults file to control use of multibyte
120   string drawing functions
121 - renamed WMCreateFont() to WMCreateFontSet()
122 - renamed WMCreateFontInDefaultEncoding() to WMCreateNormalFont()
123 - added WMCreateFont() with different semantics
126 changes since wmaker 0.52.0:
127 ............................
129 - added int WMGetBrowserMaxVisibleColumns(WMBrowser *bPtr);
132 changes since wmaker 0.51.2:
133 ............................
135 - added WMColorWellDidChangeNotification
136 - added wfindfileinarray()
137 - fixed bug in window title setting 
138         (MANOME Tomonori <manome@itlb.te.noda.sut.ac.jp>)
140 changes since wmaker 0.51.1:
141 ............................
143 - wusergnusteppath() will return a statically allocated string now.
144  DO NOT FREE IT ANYMORE!!
148 changes since wmaker 0.51.0:
149 ............................
151 - applied c++ compat header patch from Martynas Kunigelis <mkunigelis@alna.lt>
152 - added WMSetTextFieldBeveled()
153 - removed W_GC() : use WMColorGC() instead
154 - added WMCreatePixmap()
155 - changed WMSetTextFieldEnabled() to WMSetTextFieldEditable()
157 changes since wmaker 0.50.1:
158 ............................
160 - fixed various bugs
161 - added patch from Franck Wolff <frawolff@club-internet.fr>, with
162   many fixes and enhancements
163 - added notification queues, asynchronous notifications etc.
164 - added WMSetBrowserDoubleAction()
165 - fixed list double click action
167 changes since wmaker 0.50.2:
168 ............................
170 - added wsetabort() - look WUtil.h
171 - fixed bug in WMList resize
172 - added notification sending when changing textfield programatically
173 - removed WMHideWindow()
174 - fixed bug in WMCloseWindow()
175 - added textfield selection patch
176 - added color panel code
177 - added auto name completion for the file panel
178 - added function to select text range, and to set cursor position in text
179   fields programatically
181 changes since wmaker 0.20.3:
182 ............................
184 - added WMSetSliderImage(), WMSetSliderKnobThickness()
185 - added WMGetListItemHeight()
186 - added WMListDidScrollNotification
187 - added WSetColorWellBordered()
188 - added hacky color dragging in colorwell
189 - added poll() support in WMNextEvent. WARNING: the stuff needed for
190   WMAddInputHandler() is not yet implemented for the poll stuff
191 - added WMSetFilePanelAccessoryView(), WMGetFilePanelAccessoryView()
192 - added WMSetPopUpButtonEnabled()
193 - added WMGetLabelImage()
194 - autoscroll for popup button menus
195 - added WMDrawPixmap()
196 - WARNING: changed parameter list for WMListDrawProc
198 changes since wmaker 0.20.2:
199 ............................
201 - WMSetBrowserMaxVisibleColumns() - untested
205 changes since wmaker 0.20.0:
206 ............................
208 - added generic object field for WMListItem. This is for hanging generic
209   clientdata
212 changes since wmaker 0.20.0:
213 ............................
215 - changed WMGetFilePanelFile() with WMGetFilePanelFileName()
216 - made SavePanel
218 changes since wmaker 0.19.3:
219 ............................
221 - added WMCreatePanelForWindow()
222 - added extra parent parameter for filepanel, alertpanel and inputpanel
223 - WMCloseWindow()
224 - WMChangePanelOwner()
225 - added WMAddInputHandler()
226 - change range related function arguments (WMTextField) to use WMRange
228 changes since wmaker 0.19.1:
229 ............................
231 - added wstrappend()
232 - fixed bug when changing selected radio button by hand
234 changes since wmaker 0.18.1:
235 ............................
237 - removed textHeight arg from W_PaintImageAndText
238 - added WMCreateWindowWithStyle()
239 - added WMSetWindowBaseSize() and ResizeIncrements()
240 - added WMSetWindowLeve()
241 - added WMSetWindowDocumentEdited()
242 - added WMSetScrollViewLineScroll(), WMSetScrollViewPageScroll()
243 - added WMSetWindowMiniwindowTitle()
244 - added WMSetWindowMiniwindowImage()
246 changes since wmaker 0.18.0:
247 ............................
249 - added functions to get RGB components and "#rrggbb" string from WMColor.
250 - added function to create color from a name
251 - fixed bug that caused blocking until some new event arrives, even
252   when there already were events in the queue
253   (like having to move the pointer over window to force the window to be
254   painted)
256 changes since wmaker 0.17.5:
257 ............................
259 I don't remember everything, but here it goes:
261 - fixed some bugs in text field
262 - added a incomplete implementation of split view (not yet usable)
263 - added a slider
264 - changed the filepanel stuff. Each application can have only 1 file panel.
265 The same panel will be reused every time you call for it, unless you free it.
266 - changed semantics of WMCreateFont() so that it returns NULL if the requested
267   font can't be loaded
268 - removed WMAddDestroyCallback() 
269 - fixed bug in WMRemovePopUpButtonItem()
270 - added function for user specified item height in WMList
271 - added WMSetPopUpButtonText(). It will set the default text in the button
272   when no options are selected
273 - fixed bug in remove/add item in already mapped popupbuttons. Note: it is
274   not good practice to change the contents of a popup button when it's
275   already visible and the user has probably interacted with it.
276 - fixed behaviour of "radio buttons"
277 - WMInitializeApplication() must be the first function to be called in the
278   program
279 - removed applicationName, argc and argv arguments from the WMCreateScree...
280   functions
281 - WMReleaseColor(scr,color) changed to WMReleaseColor(color)
282 - WMPaintColorRectangle() changed to WMPaintColorSwatch()
283 - added various functions in font and color handling
284 - added WMSetButtonFont()
285 - changed WMCreateCommandButton() so that the buttons it creates will change
286         their label when pushed
287 - added WMGetSystemPixmap(WMScreen *scr, int image)
288 - added partial I18N support
289 - added libPropList requirement and some related utility functions
290 - added a interface to prooplist, so that it works as a user defaults db
291 - added WMWidthOfString() (removed WMFontWidthOfString())
292 - added WMDrawString()
293 - added WMSetTextFieldSecure(WMTextField *tPtr, Bool flag)
294 - WMGetListItem() will dup the returned string
295 - removed need for ProgName being defined
296 - rewrote hashtable stuff and made it available for outside use
297 - added notification functions, with view resize notification
298 - added WMSetWindowMinSize() and MaxSize()
299 - text editing notification
300 - added WMSetListPosition() etc.
301 - added WMInsertBrowserItem()
302 - the above 2 functions return WMListItem*, instead of Bool
303 - rewrote browser
304 - WMGetListItem() will return WMListItem*
305 - removed WMGetListItems() and WMSetListItems()
306 - fixed focus stuff for multi-window apps
307 - changed all WMList function names that contained index to row