fixed a typo
[wmaker-crm.git] / WINGs / ChangeLog
blob576ad06cc14eb9720738aa1e9a7e93b28354bce3
1 changes since wmaker 0.53.0:
2 ............................
4 - added balloon help
5 - fixed a bug with setting initial path in browsers.
6 - added WMSetButtonImageDimsWhenDisabled()
7 - changed simple callback/notifications to delegate-like stuff. Affected
8   widgets are:
9         WMBrowser
10         - WMSetBrowserFillProc() was replaced with WMSetBrowserDelegate
11         - WMBrowserDidScrollNotification was replaced with a delegate callback
13         WMTextField (not completed yet)
14         The notifications will still work, but using the delegate is preferable
16   How to convert old code to delegate callbacks:
17         1 - create a variable (static or dynamic) of the type of the 
18             delegate for the widget type.
19         2 - Replace the notification observers with the equivalent 
20             delegate callbacks. 
21         3 - Put pointers to the callbacks in the delegate variable.
23         Take a look in wfilepanel.c to see how it is used there.
25 - changed W_ViewProcedureTable to delegates
26         This will only affect user created widgets. If you have a custom
27         widget, you will need to update the callbacks and the declaration
28         of the W_ViewProcedureTable variable to be a W_ViewDelegate,
29         which is declared in WINGsP.h  To setup the delegate, assign
30         the delegate variable to view->delegate.
32 - WMTextField
33         Removed all the didChange notifications that were sent when the text
34         was changed programmatically. Only changes made by user interaction
35         will be notified now. If you need the old behaviour, send notifications
36         manually when you change the text.
38 - added WMTabView
39 - added WMGetColorPanelColor(WMColorPanel *panel)
40 - made WMGetUDStringForKey() to only return a reference to the string, not a
41   wstrdup()'ed copy. DO NOT FREE IT ANYMORE!
44 changes since wmaker 0.52.0:
45 ............................
47 - added int WMGetBrowserMaxVisibleColumns(WMBrowser *bPtr);
50 changes since wmaker 0.51.2:
51 ............................
53 - added WMColorWellDidChangeNotification
54 - added wfindfileinarray()
55 - fixed bug in window title setting 
56         (MANOME Tomonori <manome@itlb.te.noda.sut.ac.jp>)
58 changes since wmaker 0.51.1:
59 ............................
61 - wusergnusteppath() will return a statically allocated string now.
62  DO NOT FREE IT ANYMORE!!
66 changes since wmaker 0.51.0:
67 ............................
69 - applied c++ compat header patch from Martynas Kunigelis <mkunigelis@alna.lt>
70 - added WMSetTextFieldBeveled()
71 - removed W_GC() : use WMColorGC() instead
72 - added WMCreatePixmap()
73 - changed WMSetTextFieldEnabled() to WMSetTextFieldEditable()
75 changes since wmaker 0.50.1:
76 ............................
78 - fixed various bugs
79 - added patch from Franck Wolff <frawolff@club-internet.fr>, with
80   many fixes and enhancements
81 - added notification queues, asynchronous notifications etc.
82 - added WMSetBrowserDoubleAction()
83 - fixed list double click action
85 changes since wmaker 0.50.2:
86 ............................
88 - added wsetabort() - look WUtil.h
89 - fixed bug in WMList resize
90 - added notification sending when changing textfield programatically
91 - removed WMHideWindow()
92 - fixed bug in WMCloseWindow()
93 - added textfield selection patch
94 - added color panel code
95 - added auto name completion for the file panel
96 - added function to select text range, and to set cursor position in text
97   fields programatically
99 changes since wmaker 0.20.3:
100 ............................
102 - added WMSetSliderImage(), WMSetSliderKnobThickness()
103 - added WMGetListItemHeight()
104 - added WMListDidScrollNotification
105 - added WSetColorWellBordered()
106 - added hacky color dragging in colorwell
107 - added poll() support in WMNextEvent. WARNING: the stuff needed for
108   WMAddInputHandler() is not yet implemented for the poll stuff
109 - added WMSetFilePanelAccessoryView(), WMGetFilePanelAccessoryView()
110 - added WMSetPopUpButtonEnabled()
111 - added WMGetLabelImage()
112 - autoscroll for popup button menus
113 - added WMDrawPixmap()
114 - WARNING: changed parameter list for WMListDrawProc
116 changes since wmaker 0.20.2:
117 ............................
119 - WMSetBrowserMaxVisibleColumns() - untested
123 changes since wmaker 0.20.0:
124 ............................
126 - added generic object field for WMListItem. This is for hanging generic
127   clientdata
130 changes since wmaker 0.20.0:
131 ............................
133 - changed WMGetFilePanelFile() with WMGetFilePanelFileName()
134 - made SavePanel
136 changes since wmaker 0.19.3:
137 ............................
139 - added WMCreatePanelForWindow()
140 - added extra parent parameter for filepanel, alertpanel and inputpanel
141 - WMCloseWindow()
142 - WMChangePanelOwner()
143 - added WMAddInputHandler()
144 - change range related function arguments (WMTextField) to use WMRange
146 changes since wmaker 0.19.1:
147 ............................
149 - added wstrappend()
150 - fixed bug when changing selected radio button by hand
152 changes since wmaker 0.18.1:
153 ............................
155 - removed textHeight arg from W_PaintImageAndText
156 - added WMCreateWindowWithStyle()
157 - added WMSetWindowBaseSize() and ResizeIncrements()
158 - added WMSetWindowLeve()
159 - added WMSetWindowDocumentEdited()
160 - added WMSetScrollViewLineScroll(), WMSetScrollViewPageScroll()
161 - added WMSetWindowMiniwindowTitle()
162 - added WMSetWindowMiniwindowImage()
164 changes since wmaker 0.18.0:
165 ............................
167 - added functions to get RGB components and "#rrggbb" string from WMColor.
168 - added function to create color from a name
169 - fixed bug that caused blocking until some new event arrives, even
170   when there already were events in the queue
171   (like having to move the pointer over window to force the window to be
172   painted)
174 changes since wmaker 0.17.5:
175 ............................
177 I don't remember everything, but here it goes:
179 - fixed some bugs in text field
180 - added a incomplete implementation of split view (not yet usable)
181 - added a slider
182 - changed the filepanel stuff. Each application can have only 1 file panel.
183 The same panel will be reused every time you call for it, unless you free it.
184 - changed semantics of WMCreateFont() so that it returns NULL if the requested
185   font can't be loaded
186 - removed WMAddDestroyCallback() 
187 - fixed bug in WMRemovePopUpButtonItem()
188 - added function for user specified item height in WMList
189 - added WMSetPopUpButtonText(). It will set the default text in the button
190   when no options are selected
191 - fixed bug in remove/add item in already mapped popupbuttons. Note: it is
192   not good practice to change the contents of a popup button when it's
193   already visible and the user has probably interacted with it.
194 - fixed behaviour of "radio buttons"
195 - WMInitializeApplication() must be the first function to be called in the
196   program
197 - removed applicationName, argc and argv arguments from the WMCreateScree...
198   functions
199 - WMReleaseColor(scr,color) changed to WMReleaseColor(color)
200 - WMPaintColorRectangle() changed to WMPaintColorSwatch()
201 - added various functions in font and color handling
202 - added WMSetButtonFont()
203 - changed WMCreateCommandButton() so that the buttons it creates will change
204         their label when pushed
205 - added WMGetSystemPixmap(WMScreen *scr, int image)
206 - added partial I18N support
207 - added libPropList requirement and some related utility functions
208 - added a interface to prooplist, so that it works as a user defaults db
209 - added WMWidthOfString() (removed WMFontWidthOfString())
210 - added WMDrawString()
211 - added WMSetTextFieldSecure(WMTextField *tPtr, Bool flag)
212 - WMGetListItem() will dup the returned string
213 - removed need for ProgName being defined
214 - rewrote hashtable stuff and made it available for outside use
215 - added notification functions, with view resize notification
216 - added WMSetWindowMinSize() and MaxSize()
217 - text editing notification
218 - added WMSetListPosition() etc.
219 - added WMInsertBrowserItem()
220 - the above 2 functions return WMListItem*, instead of Bool
221 - rewrote browser
222 - WMGetListItem() will return WMListItem*
223 - removed WMGetListItems() and WMSetListItems()
224 - fixed focus stuff for multi-window apps
225 - changed all WMList function names that contained index to row