6d61c66353dbca5a6f1bf9eaff02006e2a7121ab
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-11-19  Everaldo Canuto  <ecanuto@novell.com>
2
3         * Form.cs: Check for empty Text before assign to cp.Caption in CreateParams
4         it prevent problems when empty captions. [Fixes #342141]
5
6 2007-11-19  Jonathan Pobst  <monkey@jpobst.com>
7
8         * Label.cs: Use Size instead of None.  Fixes bug #342077.
9
10 2007-11-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11
12         * ListViewItem.cs: Implement 2.0 FindNearestItem method.
13
14 2007-11-17  Jonathan Pobst  <monkey@jpobst.com>
15
16         * MenuStrip.cs: Guard against a NRE when a MdiWindowItem is set
17         but there isn't a MdiContainer.
18         [Fixes bug #342358]
19
20 2007-11-17  Jonathan Pobst  <monkey@jpobst.com>
21
22         * TextControl.cs: Don't recalculate document if the recalc_start and
23         recalc_end hasn't changed.
24         [Fixes bug #342505]
25
26 2007-11-17  Gert Driesen  <drieseng@users.sourceforge.net>
27
28         * DataGridViewTextBoxCell.cs: Removed CWL.
29
30 2007-11-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
31
32         * ListView.cs: Implement 2.0 SearchForVirtualItem event support.
33
34 2007-11-16  Jonathan Pobst  <monkey@jpobst.com>
35
36         * TextControl.cs: Missed some code for bug 341534 to trigger a
37         recalculation when the font changes.
38
39 2007-11-16  Andreia Gaita <avidigal@novell.com>
40
41         * Control.cs: When updating the zorder, check if the child to update is
42         the same control that is set to always be on top (i.e., scrollbars), and 
43         just put it on top directly. Fixes BadMatch error on pdn3
44
45 2007-11-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
46
47         * ListView.cs: Throw the needed exceptions for FindNearestItem.
48
49 2007-11-16  Jonathan Pobst  <monkey@jpobst.com>
50
51         * Control.cs: Don't perform a new layout when a label changes its text,
52         cause label handles its own autosizing.
53         [Fixes bug #342077]
54
55 2007-11-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
56
57         * ListView.cs: Implement 2.0 FindNearestItem methods.
58
59 2007-11-15  Jonathan Pobst  <monkey@jpobst.com>
60
61         * ToolStripPanel.cs: Make Join at least add the control to the panel,
62         even if the rest of what Join does isn't supported.  Add some more
63         support for vertical toolbars.
64         * ToolStripPanelRow.cs: Add some more support for vertical toolbars.
65         [Fixes the application breaking parts of bug #341998]
66
67 2007-11-15  Jonathan Pobst <monkey@jpobst.com>
68
69         * ToolStripItem.cs: When determining if we have a check/image margin,
70         we need to look at ShowCheckMargin as well as ShowImageMargin.
71
72 2007-11-15  Geoff Norton  <gnorton@novell.com>
73
74         * XplatUIOSX.cs: Rename to...
75         * XplatUICarbon.cs: and refactor all event handling out to the new event handling
76         system in System.Windows.Forms.CarbonInternal.  Lots of code cleanup as well.
77
78 2007-11-15  Jonathan Pobst  <monkey@jpobst.com>
79
80         * KeysConverter.cs: The default values should be an array of Keys, not
81         strings.  Also, the array has more values for 2.0.
82         [Fixes bug #341851]
83
84 2007-11-14  Jonathan Pobst  <monkey@jpobst.com>
85
86         * Application.cs: Change ExecutablePath to use 
87         Process.GetCurrentProcess ().MainModule.FileName instead of Assembly.GetEntryAssembly.
88         [Fixes bug #323552]
89
90 2007-11-14  Jonathan Pobst  <monkey@jpobst.com>
91
92         * LineTag.cs: Don't attempt to draw '\r', treat it like it doesn't exist.
93         When measureing CR or LF, use /u000D instead of /u0013. (Hex, not decimal.)
94         * TextControl.cs: Fix a case in GetLineEnding where a \n before a \r would
95         be ignored.  Create a new GetLineEnding that can specify which types of
96         line endings to look for.  On Insert, only create new lines for \n and \r\n.
97         [Fixes bug #324274]
98
99 2007-11-14  Jonathan Pobst  <monkey@jpobst.com>
100
101         * TextBoxBase.cs: As we loop through each line changing the font, tell
102         the document that the line needs to be recalculated.  Fixes bug #341534.
103
104 2007-11-13  Jonathan Pobst  <monkey@jpobst.com>
105         [Another round of refactoring]
106         * Line.cs: Add DeleteCharacters.
107         * LineTag.cs: Add Delete.
108         * TextBoxBase.cs: Update to use new methods.
109         * TextControl.cs: Refactor the Delete* methods.
110
111 2007-11-13  Everaldo Canuto  <ecanuto@novell.com>
112
113         * Win32DnD.cs: Implement Win32 Drop files, thank you Srikanth Madikeri for
114         the patch. [Fixes #324856]
115
116 2007-11-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
117
118         * ListView.cs:
119         * ListViewItem.cs: Add an initial implementation of
120         2.0 ListViewItem.Position getter.
121
122 2007-11-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
123
124         * ListView.cs: Add a reordered_items_indices array, to allow us
125         to have a different sorting than that of Items (the sorting in Items
126         could not match the actual sorting in screen). This is needed to
127         implement a pair of 2.0 features.
128         * ListViewItem.cs: Add a DisplayIndex property to keep track of the
129         actual position in the ListView grid, since it could have a position
130         different than its Index (position in ListViewItemCollection). 
131
132 2007-11-09  Jonathan Pobst  <monkey@jpobst.com>
133
134         * Label.cs: Add StringFormatFlags.LineLimit.  This tells DrawString to
135         not draw partial lines.
136         * LinkLabel.cs: Change FormatFlags setter from = to |= so that the
137         LineLimit flag from the base is preserved.
138         Fixes the windows part of bug #338965.
139
140 2007-11-09  Jonathan Pobst  <monkey@jpobst.com>
141
142         * TextBoxBase.cs: Move handling of the enter key from KEYDOWN to CHAR
143         so that it can be canceled in KeyPress.
144         Fixes bug #340078.
145
146 2007-11-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
147
148         * ListView.cs: In ItemControl, reset mouse-handling related
149         fields even if we dont' have items (we still should reset them when
150         we had items but then called Items.Clear). Partially based in a patch
151         by George Giolfan.
152         Fixes #338399.
153
154 2007-11-08  Gert Driesen  <drieseng@users.sourceforge.net>
155
156         * Application.cs: In ProductVersion first try AssemblyFileVersion
157         before falling back to assembly version. Fixes bug #339787.
158
159 2007-11-08  Andreia Gaita <avidigal@novell.com>
160
161         * HtmlElement.cs: Implement InnerText setter.
162         * WebBrowserBase.cs: Implement Navigated event support.
163         Add flag to track when the browser "document" is ready to be retrieved.
164         * WebBrowser.cs: Implement CanGoBack, CanGoForward, Title, Url.
165         Make sure browser document is ready before retrieving it.
166         Clean up cached objects (document) when moving to a new page through
167         any of the navigation methods.
168         Use the new Mono.WebBrowser.INavigation interface to control navigation.
169         Implement OnNavigated event.
170
171 2007-11-07  Jonathan Pobst  <monkey@jpobst.com>
172
173         * ThemeWin32Classic.cs: Don't draw the background in DrawLabel or
174         DrawLinkLabel, this is handled by OnPaintBackground.
175         Fixes bug #339565, part II.
176
177 2007-11-07  Andreia Gaita <avidigal@novell.com>
178
179         * Control.cs: Revert r88915. Selecting text on a textbox depends on
180         getting a Select call on click, so this call needs to be here for now.
181         Unfixes #325809
182
183 2007-11-07  Geoff Norton  <gnorton@novell.com>
184
185         * OSXStructs.cs: Add the kEventClassApplication constants.
186         * XplatUIOSX.cs: Send a WM_LBUTTONDOWN to the Grab window when the 
187         application is deactivated otherwise Menu overlays linger on top of
188         other application windows.
189
190 2007-11-07  Geoff Norton  <gnorton@novell.com>
191
192         * XplatUIOSX.cs: Dont throw an exception on OverrideCursor as we
193         dont support cursors yet anyways.  This allows Reflector to run.
194
195 2007-11-07  Geoff Norton  <gnorton@novell.com>
196
197         * XplatUIOSX.cs: Implement DragSize.
198
199 2007-11-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
200
201         * ListView.cs: When we receive a WM_LBUTTONDOWN message in
202         ItemControl, request the focus, as .Net does. This is needed after 
203         Control does not request focus anymore when it receives a
204         WM_LBUTTONDOWN.
205
206 2007-11-06  Jonathan Pobst  <monkey@Jpobst.com>
207
208         * Label.cs: Make DrawImage internal so it can be called from Theme code.
209         Remove the DrawImage call from OnPaint.
210         * LinkLabel.cs: Remove the DrawImage call from OnPaint.
211         * ThemeWin32Classic.cs: Call DrawImage after we paint the background,
212         but before we draw the text for DrawLabel and DrawLinkLabel.
213         Fixes bug #339565.
214
215 2007-11-05  Andreia Gaita <avidigal@novell.com>
216
217         * Control.cs: Remove select call on click. Fixes #325809
218
219 2007-11-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
220
221         * ListViewItem.cs: Add 2.0 Position property getter.
222
223 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
224
225         * ListView.cs: Add 2.0 BackgroundImageTiled property.
226         Also, to make it work properly, change item's BackColor and
227         BackgroundImageLayout as needed.
228         * ThemeWin32Classic.cs: Don't fill any background rectangle 
229         in ListView.ItemControl when drawing items; just let the Control
230         base implementation fill it.
231
232 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
233
234         * ListViewGroup.cs: Adda TypeConverter attribute for this class,
235         as well as adding a custom 'dummy' Converter, as .net does.
236
237 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
238
239         * PropertyGridView.cs: When clicking drop-down button,
240         select an index in the listbox only if our standard values collection 
241         has one or more items.
242
243 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
244
245         * ListViewItem.cs: Add a DefaultValue attribute to 2.0 IndentCount
246         property.
247
248 2007-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
249
250         * PropertyGrid.cs: In PropertySort, update the toolbar buttons even if
251         the value is not changed. This ensure a pushed button remains in that
252         state when clicked again. When switching the value of PropertySort
253         between Categorized and CategorizedAlphabetical, do not update the
254         grid items and do not fire a PropertyChangedEvent. When clicking the
255         sorting buttons, do not modify the PropertySort value when switching
256         between Categorized and CategorizedAlphabetical but only update the
257         button state.
258
259 2007-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
260
261         * Label.cs: Make AutoEllipsis internal on 1.0 profile. Code
262         formatting.
263         * PropertyGrid.cs: Also put Categorized button in pushed state when
264         PropertySort is CategorizedAlphabetical. Set AutoEllipsis to true
265         for help description label.
266
267 2007-11-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
268
269         * ListView.cs: When calculating the biggest item for a given column,
270         take into account 2.0 LIstViewItem.IndentCount, since it directly affects
271         the item's width.
272
273 2007-11-03  Gert Driesen  <drieseng@users.sourceforge.net>
274
275         * PropertyGrid.cs: Fixed default value for PropertySort. Allow invalid
276         value for PropertySort on 1.0 profile. PropertySortChanged event
277         should only be fired on 2.0 profile. Fixed NullReferenceException
278         in UpdateSortLayout when PropertyGrid contains no items.
279
280 2007-11-02  Jonathan Pobst  <monkey@jpobst.com>
281
282         * MessageBox.cs: Patch from George to implement MessageBoxDefaultButton.
283         [Fixes bug #338554]
284
285 2007-11-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
286
287         * ListViewItem.cs: Implement 2.0 IndentCount property.
288
289 2007-11-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
290
291         * X11Dnd.cs: When sending status in a dnd operation, compare current
292         effect with the 'allowed' field instead of 'drag_data.Allowed', since
293         the later is only created when a Winforms application is both the
294         source and the target, but not when we are the target only.
295         Fixes part of #324251.
296
297 2007-11-01  Geoff Norton  <gnorton@novell.com>
298
299         * XplatUI*.cs: Add GetPreviousWindow utility method to return windows in
300         order of Z-Order.
301         * Hwnd.cs: Add initial implementation of GetClippingRectangles to clip sibling 
302         children out of the drawing view on mac.
303         * XplatUIOSX.cs: Code cleanup.  Handle more window grab cases.  Fix SetParent
304         to handle the orphan and invisible case (1/2 fixes TabStrip drawing in FormsTest)
305         
306 2007-11-01  Jonathan Pobst  <monkey@jpobst.com>
307
308         * ToolStrip.cs: Don't process MouseUp for a ToolStripControlHost, clicking
309         on the non-hosted-control part of it shouldn't do anything.
310         Fixes part of bug #327498.
311
312 2007-11-01  Andreia Gaita <avidigal@novell.com>
313
314         * WebBrowserBase.cs: revert previous change, resize can be called anytime
315
316 2007-11-01  Jonathan Pobst  <monkey@jpobst.com>
317
318         * Application.cs: When a toolstrip has the keyboard input loop, let messages
319         it does not use flow through to controls that are hosted in menus.
320         Same with mouse clicks.
321         * Form.cs: Don't close all menus on click if the click is on a
322         control hosted in a menu.
323         Fixes part of bug #327498, and part of bug #325969.
324
325 2007-10-31  Andreia Gaita <avidigal@novell.com>
326
327         * WebBrowserBase.cs: Only call resize on gluezilla when it is active
328
329 2007-10-31  Jonathan Pobst  <monkey@jpobst.com>
330
331         * TextBoxBase.cs: Use int.MaxValue for MaxLength instead of magic number.
332         Addresses an issue raised in bug #336218.
333
334 2007-10-30  Jonathan Pobst  <monkey@jpobst.com>
335
336         * Form.cs: Patch from George that moves the conversion of ClientSize->Size
337         for PreferredSize from OnLayout to PreferredSize.  Fixes bug #325242.
338
339 2007-10-30  Andreia Gaita <avidigal@novell.com>
340
341         * ContainerControl.cs: Check if the active control is a
342         child of a removed control and update active_control accordingly.
343         Fixes #329718
344
345 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
346
347         * DateTimePicker.cs: Throw ArgEx if the Value is set outside the MinDate
348         or the MaxDate.  Fixed bug #337693.
349
350 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
351
352         * XplatUIWin32.cs: Always call SetWindowPos with SWP_FRAMECHANGED flag
353         after calling SetWindowLong for a form, to force an immediate NC refresh.
354         Fixes first part of bug #325150.
355
356 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
357
358         * ComboBox.cs: Don't try to resize the listbox when we are DropDownStyle
359         simple.  Fixes the last part of bug #322668.
360
361 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
362
363         * MessageBox.cs: If the owner is TopMost, then the MessageBox form
364         needs to be TopMost as well, or else the MessageBox is under the form.
365         Patch by George fixes bug #325300.
366
367 2007-10-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
368
369         * X11Dnd.cs: When starting a new drag operation, reset the static
370         'dropped' field to false (previously the implementation didn't reset
371         it and got confused after the first drag).
372         Fixes #325071.
373
374 2007-10-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
375
376         * PropertyGrid.cs: When PropertySort changes, re-organize the grid
377         items instead of re-creating them all. For this purpose we now cache
378         both CategoryGridEntry items and the GridEntries for the main object's
379         properties.
380         * GridItem.cs: Make SetParent method abstract.
381         * GridEntry.cs: Override the SetParent method (already there, but now
382         we override it).
383         Fixes #324866.
384
385 2007-10-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
386
387         * PropertyGridView.cs: Set the plus/minus bounds of a grid item
388         depending on its depth (as .Net does). Update the needed values in
389         MouseDown handler. Also draw the plus/minus rect after the label,
390         so we don't draw on top of it.
391
392 2007-10-24  Everaldo Canuto  <ecanuto@novell.com>
393
394         * MenuAPI.cs: Return true as default in ProcessKeys to prevent keys to be
395         processed by forms or controls when menu is active. [Fixes #333548]
396
397 2007-10-24  Jonathan Pobst  <monkey@jpobst.com>
398
399         * ToolStripItem.cs: Don't focus a ToolStripControlHost on Select of the
400         parent doesn't have focus.  This was causing ToolStripTextBoxes to take
401         focus on mouse over.
402
403 2007-10-24  Jonathan Pobst  <monkey@jpobst.com>
404
405         * TextControl.cs: Code cleaning, simplifying.
406
407 2007-10-24  Geoff Norton  <gnorton@novell.com>
408
409         * XplatUIOSX.cs: Route mouse events to the grab hwnd on mouse down as well.
410         * XplatUIStructs.cs: Fix the ToString method of POINT and MSG.
411
412 2007-10-24  Jonathan Pobst  <monkey@jpobst.com>
413
414         * TextBoxBase.cs: If the user sets maxlength to 0, it should mean
415         the cap is maxvalue, not actually 0.  [Fixes bug #336218]
416
417 2007-10-24  Andreia Gaita <avidigal@novell.com>
418
419         * SendKeys.cs: apply jpobst's patch to bug #332409
420
421 2007-10-23  Andreia Gaita <avidigal@novell.com>
422
423         * TextBoxTextRenderer.cs: Lower bounds max size to Int16.MaxValue, the 
424         Windows 2000 gdi DrawText call doesn't draw if it's higher than that
425         for some reason
426
427 2007-10-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
428
429         * PropertyGridView.cs: If a property has an UIEditor available,
430         make the drop-down/editor button available only if the property
431         is _not_ read only.
432
433 2007-10-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
434
435         * PropertyGridView.cs: Don't make the grid item textbox 
436         editable when a drop-down control is available, but 
437         CanConvertFrom (typeof (string)) is false or GetStandardValuesExclusive () is
438         true. The same bur the color of the grid item value's label.
439
440 2007-10-22  Geoff Norton  <gnorton@novell.com>
441
442         * OSXStructs.cs: Add the needed constants for keyboard modifiers.
443         * OSXKeyboard.cs: Initial support for keyboard and limited modifiers.
444         * XplatUIOSX.cs: New reversible frame support.  Wire in the new keyboard
445         driver.  Padd the bottom of all real windows so the resize thumb doesn't
446         obscure scroll/status bars.
447
448 2007-10-22  Jonathan Pobst  <monkey@jpobst.com>
449
450         * WindowsFormsSection.cs: Implement.
451
452 2007-10-22  Everaldo Canuto  <ecanuto@novell.com>
453
454         * MdiClient.cs: Maximize new active mdi child when a maximized child is 
455         closed see #325434 patch.
456
457 2007-10-22  Everaldo Canuto  <ecanuto@novell.com>
458
459         * MdiClient.cs: Fix remaining issues from layout vertical and horizontal,
460         see #325434 patch.
461
462 2007-10-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
463
464         * PropertyGridView.cs: When showing the textbox for a grid item,
465         have two local variables to store the read-only and non-editable
466         status of a grid item (we were previously using just one variable
467         to do this, when actually they are slightly different).
468         Fixes part of #325023.
469
470 2007-10-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
471
472         * PropertyGridView.cs: When showing a drop-down list, try to get the
473         values using TypeConverter.ConvertTo (to convert to a string). Fixes
474         part of #325023.
475
476 2007-10-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
477
478         * PropertyGrid.cs: When updating a property and populating sub grid
479         items, remove the previous ones, and invalidate the specific area.
480         * PropertyGridView.cs: A new InvalidateBelowGridItem to invalidate the
481         area behind a grid item.
482         * GridItemCollection.cs: Add an internal Clear method, to allow us to
483         clean the items if needed (specially for controls implementing 
484         ICustomTypeDescriptor and returning a variable number of properties).
485         Fixes #324865.
486
487 2007-10-19  Jonathan Pobst  <monkey@jpobst.com>
488
489         * TextControl.cs: Clean up and document the Insert function.
490
491 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
492
493         * TextControl.cs: Make sure we know our start point for updating the view
494         in ReplaceSelection.  Fixes an issue where pasting multiline text wouldn't
495         update the view.
496
497 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
498
499         * ListView: Couple of corcompare fixes.
500
501 2007-10-17  Geoff Norton  <gnorton@novell.com>
502
503         * XplatUIOSX.cs: Implement support for window icons in the dock.  Set
504         the title caption of real window.
505
506 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
507
508         * ErrorProvider.cs: Add the error provider's internal window to a 
509         containercontrol when the parent changes.  [Fixes bug #329714]
510
511 2007-10-17  Geoff Norton  <gnorton@novell.com>
512
513         * XplatUIOSX.cs: Implement ScrollWindow.  Properly create TOOLWINDOWs.
514         When we make a new window; restore the old active window - fixes dialogs.
515
516 2007-10-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
517
518         * PropertyGridView.cs: Look for RefreshPropertiesAttribute
519         when modifying a property, and if found then invalidate as
520         requested.
521         Fixes part of #324865.
522
523 2007-10-17  Geoff Norton  <gnorton@novell.com>
524
525         * XplatUIOSX.cs: Re-enable the native driver on the Mac.  This is still
526         highly experimental.  Fixed coordinate translation.  Fixed window locations.
527         Initial support for clipping. Implemented NC areas and menus.  Support for
528         launching from command line from Will Johansson (wjohansson@atacomm.com).
529         * OSXStructs.cs: Add ProcessSerialNumer (Patch from Will Johansson
530         wjohansson@atacomm.com)
531         * Hwnd.cs: Add some internal structures for tracking Mac cursors.
532         Hwnds now track the existence of all of their children for Mac clipping.
533     * XplatUI.cs: Re-enabled the native driver on the Mac.
534
535 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
536
537         * Line.cs: Move the InsertString function to here.
538         * TextControl.cs: Cleanup some duplicate code, move some InsertString
539         functionality to Line.
540
541 2007-10-17  Geoff Norton  <gnorton@novell.com>
542
543         * ComboBox.cs: Destroy the popup after hiding it.  Fixes #322582
544
545 2007-10-16  Gert Driesen  <drieseng@users.sourceforge.net>
546
547         * ButtonBase.cs: Fixed IsDefault to use assigned value instead of
548         always setting value to true.
549         * Form.cs: When changing AcceptButton, notify new and original button.
550
551 2007-10-16  Jonathan Pobst  <monkey@jpobst.com>
552
553         * Form.cs: Guard against an NRE when the user sets the AcceptButton to
554         a custom control that implements IButtonControl instead of an actual
555         button.  [Fixes bug #334244]
556
557 2007-10-15  Everaldo Canuto  <ecanuto@novell.com>
558
559         * Form.cs: Change SelectActiveControl to internal, we need to call it in
560         MdiWindowManager.
561         
562         * MdiWindowManager.cs: In RaiseActivated call SelectActiveControl to select
563         active control when activate a new mdi window.
564         
565         [Fixes bug #330495]
566
567 2007-10-15  Everaldo Canuto  <ecanuto@novell.com>
568
569         * ComboBox.cs: Dont implicit add listbox_ctrl on OnHandleCreated because it
570         is already added.
571         [Fixes bug #333617]
572
573 2007-10-15  Jonathan Pobst  <monkey@jpobst.com>
574
575         * TextControl.cs: When SuspendRecalc is first called, reset the recalc_start
576         to MaxValue and recalc_end to MinValue.  Currently, recalc_start is always 1,
577         so we always recalculate the whole document instead of just the new part.
578         [Fixes bug #325082]
579
580 2007-10-15  Jonathan Pobst  <monkey@jpobst.com>
581
582         * LineTag.cs: Fix a case where the GetCharIndex would not return 0
583         when the mouse was to the left of the first character in the line.
584
585 2007-10-15  Jonathan Pobst  <monkey@jpobst.com>
586
587         * TextBox.cs, TextBoxBase.cs: When setting the document's password
588         character, use the property instead of the variable so that the
589         UseSystemPasswordChar property is taken into account.
590         [Fixes bug #333748]
591
592 2007-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
593
594         * FolderBrowserDialog.cs: When a node is right clicked and the "New
595         folder" contex menu appears, actually add the new folder to it, even
596         if the node is not currently selected. Still use SelectedNode in case 
597         there wasn't found a node under the pointer.
598         Fixes #325452.
599
600 2007-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
601
602         * ListViewItem.cs: When retrieving the focused state, the index check
603         should be done only when ListView is in virtualmode, as it is an
604         expensive check for normal mode.
605
606 2007-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
607
608         * ListViewItem.cs: Make the focus state information be stored
609         in the ListView, not in the items. This is done to match the MS
610         behaviour for items that are not yet part of a ListView control;
611         besides that, since just one item can be focused at the same time,
612         we save a little space in our items.
613         Fixes part of #331643.
614
615 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
616
617         * ComboBox.cs: When focus is lost, deselect the text. When setting
618         text of control, select all text. Do not hide selection when control
619         does not have focus. Fixes bug #333663.
620
621 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
622
623         * TextBoxBase.cs: On 2.0 profile, throw ArgumentOutOFRangeException
624         instead of ArgumentException when SelectionLength is set to negative
625         value. Added same check to SelectionStart. Code formatting.
626
627 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
628
629         * TextBoxBase.cs: Invalidate selection before changing SelectionLength
630         or SelectionStart. Code formatting.
631
632 2007-10-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
633
634         * TreeView.cs: drag_begin_x and drag_begin_y are now set to -1,
635         indicating that there was not a previous drag-and-drop operation going
636         on.
637         Fixes part of #325071.
638
639 2007-10-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
640
641         * X11Dnd.cs: When DragEventArgs.Effect is set to a value not part of
642         AllowedEffect, don't let the drop operation happen. 
643         Fixes #32580.
644
645 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
646
647         * TextRenderer.cs: Use GDI on Windows in both the 1.1 and 2.0 profiles.
648
649 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
650
651         * Line.cs, LineTag.cs: Guard against an exception when Document.Clear
652         is called.
653
654 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
655
656         * Line.cs: Add a method that finds the tag that contains an x-coord.
657         * LineTag.cs: Add a method that finds the character at an x-coord using
658         a binary search, the old way was a linear search.
659         * TextControl.cs: Change FindCursor to use the above new methods.
660
661 2007-10-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
662
663         * DragEventArgs.cs: Allow Effect to have a non allowed value (a
664         value different than AllowedEffect). This should be possible to
665         indicate that dragging is not possible in some control/area.
666
667 2007-10-11  Jonathan Pobst  <monkey@jpobst.com>
668
669         * LineTag.cs: Encapsulate all variables with properties.  Calculate ascent/
670         descent internally when font changes instead of outside code being responsible
671         for setting it.
672         * Line.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs: Use Tag properties
673         instead of accessing internal variables.
674
675 2007-10-09  Everaldo Canuto  <ecanuto@novell.com>
676
677         * MdiClient.cs: Always call ArrangeIconicWindows before any arrangement and
678         remove special treatment for ArrangeIcons since it is already arranged.
679
680 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
681
682         * TextBoxTextRenderer.cs: Draw takes a Color now instead of a Brush, as
683         the Win32 backend uses Color.
684         * Line.cs, LineTag.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs:
685         Refactor to store a Color instead of a Brush for Color.
686
687 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
688
689         * Line.cs, LineTag.cs: Override GetHashCode to make a compiler warning go
690         away.  I didn't realize I needed this when I refactored these earlier.
691
692 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
693
694         * LineTag.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs: Refactor to
695         store a Color structure and use the ResPool for back color instead of
696         holding onto brushes.
697
698 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
699
700         * TextControl.cs: Fix how we calculate the end of the tag we are drawing.
701         [Fixes bug #325592]
702
703 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
704
705         * MonthCalendar.cs: When ShowWeekNumbers is changed, force the calendar
706         to recalculate its size.  Fixes a part of bug #331052.
707
708 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
709
710         * NotifyIcon.cs: Set the correct mouse button when handling right mouse
711         button.  Fixes a part of bug #331052.
712
713 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
714
715         * Form.cs: Trim NewLine before setting XPlatUI.SetText, and when setting
716         the CreateParams.
717         * ThemeWin32Classic.cs: Trim NewLine before drawing MDI children window
718         decorations.
719         [Fixes bug #330986]
720
721 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
722
723         * TextBoxTextRenderer.cs: Don't make this a static class, as static
724         doesn't exist in 1.1.  (Thanks jb!)
725
726 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
727
728         * TextBoxTextRenderer.cs: Abstract text measuring and drawing to this
729         class to allow us to use different backends on different platforms.
730         Linux uses the current [Draw|Measure]String backend.  Windows uses
731         the TextRenderer.[Draw|Measure]Text backend, which uses GDI instead
732         of GDI+.  This leads to better looking text and more accurate measurements
733         on Windows, fixing many of the reported issues.
734         * Line.cs, LineTag.cs: Update to use TextBoxTextRenderer.
735
736 2007-10-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
737
738         * FolderBrowserDialog.cs: When running on Windows,
739         try to detect paths such "C:" and add Path.DirectorySeparatorChar,
740         since we must match both "C:" and "C:\" forms. A little hackish, but
741         works.
742         Fixes #325247.
743
744 2007-10-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
745
746         * ListView.cs: When calling EndEdit (after editing an item),
747         create a new instance of LabelEditEventArgs to keep clean the fields
748         in case we get a new call to BeginEdit; also do Application.DoEvents
749         to have focus in synch. This is a fix similar to TreeView's #325244.
750
751 2007-10-07  Andreia Gaita <avidigal@novell.com>
752
753         * HtmlDocument.cs, HtmlElement.cs, WebBrowser.cs: Added dom support
754         * WebBrowserBase.cs: Added dialog support, calling the
755           WebBrowserDialogs classes for each specific dialog type.
756
757 2007-10-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
758
759         * ListView.cs: When the last item is focused and is removed,
760         move the focus to the previous item (in Items order). This is what MS
761         does.
762         Fixes #330415.
763
764 2007-10-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
765
766         * ListView.cs: In ListViewItemCollection, make Remove call RemoveAt,
767         instead of the opposite (RemoveAt call Remove). This is a better
768         approach since we don't need to to a pair of traversals when using
769         RemoveAt.
770
771 2006-10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
772
773         * TreeView.cs: When Keys.Left is pressed, before trying to Collapse
774         check that the node actually has nodes, and if not, move to the
775         parent node instead. 
776         Fixes #325265.
777
778 2006-10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
779
780         * TreeView.cs: Move the previous change to the general case (to
781         call Application.DoEvents in cases where the method was called by
782         different places).
783
784 2007_10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
785
786         * TreeView.cs: When calling EndEdit and we need to hide the textbox,
787         call Application.DoEvents. This is neccessary when we get a call to
788         BeginEdit from an AfterLabelEdit handler, because the focus always
789         goes to the TreeView, even if we try to give it to our
790         LabelEditTextBox. The call do Application.DoEvents seems to
791         synchronize the focus, basically.
792         Fixes #325244.
793
794 2007-10-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
795
796         * TreeView.cs: When AfterLabelEdit event is fired, TreeNode.IsEditing
797         should be false. This also removes some nasty recursive paths. Fixes
798         part of #325244.
799
800 2007-10-04  Everaldo Canuto  <ecanuto@novell.com>
801
802         * MdiClient.cs: When cascade (layout) mdi window that is maximized, set the
803         state to normal. Also resize window when cascading. Fixes #325433. 
804
805 2007-10-04  Jonathan Pobst  <monkey@jpobst.com>
806
807         * RichTextBox.cs: When SelectionColor is set to Color.Empty, use
808         DefaultForeColor, as drawing empty colored lines isn't very useful.
809         [Fixes the not drawn lines part of bug #324358]
810
811 2007-10-04  Jonathan Pobst  <monkey@jpobst.com>
812
813         * TextControl.cs: Move Line and LineTag classes into separate files to
814         make things easier to find.
815         * Line.cs, LineTag.cs: Bring coding standards up to Mono's guidelines.
816         * RichTextBox.cs: Capitalize LineTag.Length property access.
817         - This is purely an organizational/formatting change, no logic changed. -
818
819 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
820
821         * ThemeWin32Classic.cs: Do not show focus rectangle in radio buttons when
822         text is empty.
823
824 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
825
826         * ThemeWin32Classic.cs: Do not show focus rectangle in checkboxes when
827         text is empty.
828
829 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
830
831         * ComboBox.cs: On contructor use backgound_color instead of BackColor to
832         prevent calling of OnBackColorChanged. Fixes #325321.
833
834 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
835
836         * TextBox.cs: When check enabled uses Enabled property instead of is_enabled
837         because control can be disabled because owner is disabled.
838
839 2007-10-02  Jonathan Pobst  <monkey@jpobst.com>
840
841         * ComboBox.cs: For the 1.1 profile, the default SelectedText is
842         string.Empty, test failed from previous change.
843
844 2007-10-02  Jonathan Pobst  <monkey@jpobst.com>
845
846         * TextBoxBase.cs: For the 1.1 profile, the default SelectedText
847         is null, not String.Empty.  See bug #323038.
848
849 2007-10-01  Jonathan Pobst  <monkey@jpobst.com>
850
851         * TextControl.cs: Change the margins to match MS a little better.
852         Still not perfect for X11 due to some DrawString differences, but
853         is still an improvement over the old stuff.
854         Partially fixes #324467.
855
856 2007-09-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
857
858         * FolderBrowserDialog.cs: When using MyComputer as 
859         RootFolder, let absolute paths be considered as valid ones. Also, use
860         Path.DirectorySeparatorChar instead of Path.AltDirectorySeparatorChar,
861         for Windows compatibility.
862         Partially fixes #325247.
863
864 2007-09-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
865
866         * FolderBrowserDialog.cs: Fix the recursive FindPathInNodes method.
867         Also remove the stack.Count > 0 check in FBTreeView.SetSelectedNode
868         method, since it causes the dialog to not select folders directly
869         under the root path (when setting SelectedPath property).
870
871 2007-09-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
872
873         * TreeNode.cs: When calling Expand/Collapse and need to call 
874         ExpandBelow/CollapseBelow respectively, take into account
875         partially visible nodes (previously Expanding/Collapsing
876         a partially visible node in the bottom was not updating its +- sign).
877
878 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
879
880         * TreeView.cs: When calling Expand on a TreeNode, and we need to
881         expand nodes below (ExpandBelow), scroll the entire Viewport
882         area if the node is above it and not visible (instead of scrolling
883         the area from node's Bottom, which applies only when the node is
884         visible).
885         Fixes #325266.
886
887 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
888
889         * TreeView.cs: When calling ExpandAll, set SelectedNode to the top
890         node in the bottom area (as .Net does). This is done to preserve the
891         scroll position when ExpandAll is called before handle is created for
892         the 1.1 profile (bottom area, as opposed to top area in 2.0).
893         Fixes #324103.
894
895 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
896
897         * TreeView.cs: When calling ExpandAll, don't move the scroll to the 
898         bottom area if we are in fact not using the vertical scroll bar.
899         Fixes #324824.
900
901 2007-09-27  Jonathan Pobst  <monkey@jpobst.com>
902
903         * Control.cs: Comment out a double buffering optimization that doesn't
904         take into account invalidates created in OnPaint, causing the control
905         to never be redrawn.  It would take quite a bit of work to work around
906         this, but I left it commented with an explanation for later possible
907         optimization.
908         [Fixes bug #328681]
909
910 2007-09-27  Jonathan Pobst  <monkey@jpobst.com>
911
912         * Control.cs: Ask parent to perform a layout if control is AutoSize and
913         the text changes.
914         * RadioButton.cs: Implement GetPreferredSizeCore.
915         [Fixes bug #328672]
916
917 2007-09-26  Jonathan Pobst  <monkey@jpobst.com>
918
919         * RichTextBox.cs, TextBoxBase.cs, WindowsFormsSynchronizationContext.cs:
920         corcompare stuffs.
921
922 2007-09-26  Jonathan Pobst  <monkey@jpobst.com>
923
924         * Application.cs: Move the sync context stuff to Run instead of RunLoop
925         so that it doesn't get uninstalled on modal forms.
926         * Control.cs: Install a sync context when a control is created.
927         * WindowsFormsSyncronizationContext.cs: Create a private static control
928         to invoke on.  This is easier than trying to find a created control we
929         can use.
930         [Fixes bug #327608]
931
932 2007-09-25  Jonathan Pobst  <monkey@jpobst.com>
933
934         * Application.cs: Install a WindowsFormsSynchronizationContext in the
935         run loop, and uninstall it when done.
936         * WindowsFormsSynchronizationContext.cs: Implement.
937         [Fixes the common case in bug #327608]
938
939 2007-09-23  Gert Driesen  <drieseng@users.sourceforge.net>
940
941         * DataGridViewCellCollection.cs: Added argument checks for indexers.
942         Use case-insensitive lookup of column name in indexer. Code
943         formatting.
944
945 2007-09-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
946
947         * TreeNode.cs: When collapsing or expanding a node, check whether its
948         change will affect the visible area (we were previously doing a
949         IsVisible check, but that check is not enough since children nodes
950         could be still visible). Fixes part of #325266.
951
952 2007-09-21  Jonathan Pobst  <monkey@jpobst.com>
953
954         * TreeView.cs: Always select the first node when the TreeView gets
955         focus if there is no currently selected node.
956         [Fixes bug #324279]
957
958 2007-09-21  Jonathan Pobst  <monkey@jpobst.com>
959
960         * TreeView.cs: Do not raise BeforeSelect or AfterSelect when the
961         node being selected is null.
962         [Patch from Yves Bastide fixes bug #326858]
963
964 2007-09-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
965
966         * TreeNode.cs: Add an internal ArePreviousNodesExpanded, to know
967         whether all the parent nodes are expanded.
968         * TreeNodeCollection.cs: When adding a new node an calling SetupNode,
969         call RecalculateVisibleOrder if all previous nodes are expanded.
970         Before that we were doing a IsVisible check, but sometimes the node
971         is not in the visible area, but _should_already be ready, because of
972         all previous nodes are expanded. Fixes #325259.
973
974 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
975
976         * ToolStripSplitButton.cs: Call the ButtonClick event if the button
977         portion of the item is clicked.
978
979 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
980
981         * TextControl.cs: Do not tell the system to move the cursor if the
982         textbox isn't focused.  Fixes part of bug #322668.
983
984 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
985
986         * ComboBox.cs: When there are no items, do not show the dropdown if
987         the down arrow is clicked.  Fixes part of bug #322668.
988
989 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
990
991         * ToolStripComboBox.cs: Manually set the size of this control in the
992         constructor, as it doesn't seem to be the same as DefaultSize.
993         Fixes a failing monobuild test.
994
995 2007-09-19  Jonathan Pobst  <monkey@jpobst.com>
996
997         * DateTimePicker.cs: If the user sets MinDate to DateTime.MinValue,
998         change it to DateTimePicker.MinDateTime.  [Fixes bug #326609]
999
1000 2007-09-19  Jonathan Pobst  <monkey@jpobst.com>
1001
1002         * Theme.cs: FileDialogs should be using DesktopDirectory instead of
1003         Desktop.  This lets it work for people who have moved their desktops
1004         from the default location on windows.  For people who have not, both
1005         values are the same, so it shouldn't hurt anything.  [Fixes bug #325270]
1006
1007 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1008
1009         * ToolStripControlHostTest.cs: DefaultSize is based off hosted control,
1010         but when the base constructor sets this, the control is null.  Set it
1011         again in the constructor.  Fixes a failing monobuild test.
1012
1013 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1014
1015         * ToolStripDropDownItem.cs: Make sure Click and DropDownOpened events
1016         get called.
1017         * ToolStripSplitButton.cs: Make sure MouseDown and MouseUp events get
1018         called.
1019
1020 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1021
1022         * ToolStrip.cs: Don't show tooltips for ToolStripTextBoxes, they
1023         will handle it themselves.
1024         * ToolStripItem.cs: When deciding what the text of a tooltip should
1025         be, use the Text property instead of the text field.
1026         * ToolStripTextBox.cs: Handle tooltips.
1027         [Fixes bugs #325417 and #325973]
1028
1029 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1030
1031         * ToolStripDropDownButton.cs: Only drop down overflow menu with a
1032         left click.  Fixes the easy part of bug #325969.
1033
1034 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1035
1036         * ToolStrip.cs: Set AutoSizeMode back to GrowAndShrink to refix
1037         bug #325406, but set a minimum for StatusStrip to 22 to keep
1038         bug #325390 fixed.  I think this minimum would have been figured
1039         up automatically if the grip was actually a ToolStripItem, but it
1040         currently is not.
1041
1042 2007-09-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1043
1044         * ListView.cs: max_label_wrapping is now 30 pixels instead of 38,
1045         as this is apparently the actual value used by .Net. Also apply
1046         ItemPadding in Details view only, and decrease the general width padding,
1047         to have only the needed. This should fix #324340 in Windows too.
1048
1049 2007-09-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1050
1051         * ListViewItem.cs: Don't Invalidate item if parent is inside
1052         a BeginUpdate/EndUpdate block. This prevents to have differences
1053         between the ListView and items state, as well as avoid some exceptions
1054         there.
1055         * ListView.cs: Make 'updating' field internal.
1056
1057 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1058
1059         * ToolStripControlHost.cs: Realign control when ControlAlign changes.
1060         * ToolStripItem.cs: Use ImageScalingSize when calculating preferred
1061         size if appropriate.
1062         Fixes reopened bug #325414.
1063
1064 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1065
1066         * ToolStrip.cs: Set AutoSizeMode back to GrowOnly.
1067         * ToolStripItem.cs: Invalidate before and after our new autosize when
1068         text changes.
1069         Fixes reopened bug #325390.
1070
1071 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1072
1073         * ToolStripMenuItem.cs: Make sure we invalidate when clicked so
1074         mnemonics can be drawn or undrawn correctly.  Fixes reopened bug 
1075         #325044.
1076
1077 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1078
1079         * Control.cs: Do WM_CONTEXTMENU before OnMouseUp.  [Fixes bug #325535]
1080
1081 2007-09-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1082
1083         * ColumnHeader.cs: When drawing column text, use EllipsisCharacter
1084         instead of EllipsisWord (by equistango at gmail.com). Fixes part of
1085         #82734.
1086
1087 2007-09-14  Jonathan Pobst  <monkey@jpobst.com>
1088
1089         * ToolStrip.cs: Make ToolStrip selectable when TabStop = true.  Find an
1090         item to select when the ToolStrip is selected.
1091         * ToolStripControlHost: Realign the control when the bounds or visibility
1092         change.
1093         * ToolStripItem.cs: When selected, if it's a control host, focus the control.
1094         * ToolStripOverflow.cs: When laying out the drop down, respect the item's
1095         preferred height.
1096         * ToolStripTextBox.cs: OnPaintInternal should call base.OnPaintInternal, not
1097         base.OnPaint.  Was causing text not to be drawn.
1098
1099 2007-09-14  Jonathan Pobst  <monkey@jpobst.com>
1100
1101         * SplitterPanel.cs: Ignore attempts to set AutoSizeMode.
1102
1103 2007-09-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1104
1105         * TreeView.cs: When creating the label edit text box,
1106         set is initially to Visible = false. This is done to
1107         prevent a confusion in the layout which makes it to lose
1108         focus when shown the first time. Fixes part of #82592.
1109
1110 2007-09-13 Andreia Gaita <avidigal@novell.com>
1111
1112         * WebBrowserBase.cs: add FocusOption enumeration for finer focus control
1113
1114 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1115
1116         * ToolStrip.cs: Take Margin into account when calculating preferred
1117         size.  Also, allow preferred size to get smaller than the explicit
1118         size.
1119         * ToolStripTextBox.cs: Don't change the GetPreferredSize implementation.
1120         First step towards fixing bug #82747.
1121
1122 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1123
1124         * TreeView.cs: Applied patch from latency@gmx.de to not paint the
1125         full row select background over the plus/minus glyph.  Also, turn
1126         off the focus rectangle for full row select since MS doesn't seem
1127         to ever paint it.  [Fixes bug #81839]
1128
1129 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1130
1131         * ToolStrip.cs: Don't FocusInternal if there is no selected item.
1132         This was causing keyboard opened dropdowns to lose focus.
1133         [Fixes bug #82803]
1134
1135 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1136
1137         * Control.cs: If Rectangle.Empty is passed to Invalidate, use
1138         ClientRectangle instead.  [Fixes bug #82838]
1139
1140 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1141
1142         * SplitContainer.cs: We can't reset Visible on every layout because
1143         someone may have set Visible = false explicitly on a SplitterPanel.
1144         Make sure when we switch orientation the SplitterDistance does not
1145         change.  Fixes two failing tests.
1146
1147 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1148
1149         * TreeView.cs: Use MeasureTextInternal instead of MeasureText in
1150         TextRenderer, since the latter is only available in 2.0.
1151
1152 2007-09-13  Ivan N. Zlatev <contact@i-nz.net>
1153
1154         * Cursor.cs: Fix Cursor.Current to apply Cursor.Default.
1155         * SplitContainer.cs: Implement FixedPanel layouting.
1156
1157 2007-09-12  Andreia Gaita  <avidigal@novell.com>
1158
1159         * WebBrowserBase.cs: setup shutdown routine
1160
1161 2007-09-12  Andreia Gaita  <avidigal@novell.com>
1162
1163         * Application.cs: Let keyboard events that are targetted 
1164                 to non-mwf windows hosted inside mwf (as in, webbrowser),
1165                 propagate properly. Fixes keyboard handling on the webbrowser.
1166
1167 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1168
1169         * ListView.cs: When handling MouseUp event and we are 
1170         highligting a node with the mouse right button, don't trigger
1171         Before/AfterSelecting event, since we are not actually selecting
1172         the node.
1173
1174 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1175
1176         * TreeView.cs: When editing a node, modify the edit text box
1177         depending on the text length (as you are typing), like MS does.
1178
1179 2007-09-12  Jonathan Pobst  <monkey@jpobst.com>
1180
1181         * ToolStrip.cs: Fixup preferred size calculations for vertical toolbars. 
1182         Override GetPreferredSizeCore to perform calculations.  Remove custom
1183         autosize logic.  [Fixes bug #82739]
1184
1185 2007-09-12  Jonathan Pobst  <monkey@jpobst.com>
1186
1187         * TextBoxBase.cs: Modified should default to false.
1188
1189 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1190
1191         * Control.cs: Update the anchoring distances even when layout is supspended.
1192         Patch provided by George fixes bug #82805.
1193
1194 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1195
1196         * Control.cs: Provide a setter for ExplicitHeight.
1197         * TextBoxBase.cs: Now that we have the implementation for explicit heights,
1198         remove the hacks in here for requested_height.
1199         [Fixes bug #82749]
1200
1201 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1202
1203         * ScrollBar.cs: Fix an issue reported on the lists where setting a scrollbar's
1204         Maximum to lower that its current Value caused an ArgumentException by setting
1205         the Value to the new Maximum.
1206
1207 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1208
1209         * ThemeWin32Classic.cs: Math is hard!  Fix some math so that the TrackBar
1210         handle moves to the closest tick when it is being dragged.
1211         [Fixes bug #82751]
1212
1213 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1214
1215         * ToolStripManager.cs: When we have added MDI buttons onto a MenuStrip, we
1216         can't let them count as real items when calculating where to merge in the
1217         user's items.  [Fixed bug #82786]
1218
1219 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1220
1221         * ToolStripMenuItem.cs: Add a parent type check so we don't crash on people
1222         who want to add a menu item directly onto a toolstrip.
1223         [Fixes bug #82775, part II]
1224
1225 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1226
1227         * StatusStrip.cs: Synchronize SetDisplayedItems with the ToolStrip version.
1228         * ToolStrip.cs: If a ToolStripItem set to not visible is added to a ToolStrip,
1229         don't set it to available.
1230         * ToolStripItem.cs: When Visible is changed, tell the owner to perform a layout.
1231         [Fixes bug #82727, part II]
1232
1233 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1234
1235         * StatusStrip.cs: Change item placement to None if not visible.
1236         * ToolStripItem.cs: Invalidate when InternalVisible changes.
1237         These should have been committed to fix 82723, but I missed them.
1238
1239 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1240
1241         * ToolStrip.cs: Make sure ItemClicked is raised before the ToolStripItem's
1242         Click, and that it is only called once.
1243         * ToolStripMenuItem.cs: Call OnClick even when there are dropdown items.
1244         * ToolStripDropDownItem.cs: Override HandleItemClick so dropdowns stay
1245         dropped down.
1246         [Fixes bug #82775]
1247
1248 2007-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1249
1250         * ColumnHeaderSample.cs: Use 5 pixels as extra height instead of 8
1251         to match .Net.
1252         * ThemeWin32Classic.cs: For the columns text, use 5 pixels as left padding
1253         instead of 8, just like above. Partially fixes #82734.
1254
1255 2007-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1256
1257         Patch by Ernesto Carrea <equistango at gmail.com>. Partially 
1258         fixes #82734.
1259
1260         * ListView.cs: Remove extra space between rows in Details view (match
1261         .Net). 
1262         * ThemeWin32Classic.cs: Header text should use ListView.Font, not
1263         the DefaultFont.
1264
1265 2007-09-08  Gert Driesen  <drieseng@users.sourceforge.net>
1266
1267         * Application.cs: Modified ProductVersion to return value of
1268         AssemblyInformationVersion if available, and fallback to assembly
1269         version. Fixes bug #82746. Code formatting.
1270         * BindingSource.cs: Remove NIE from Dispose, and mark it MonoTODO
1271         instead.
1272
1273 2007-09-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1274
1275         * Control.cs: When updating ZOrder for a child control,
1276         take into account the implicit ones (we need it in our controls
1277         using them). Fixes #82642.
1278
1279 2007-09-07  Jonathan Pobst  <monkey@jpobst.com>
1280
1281         * ToolStripItem.cs: Add support for animated images.
1282         [Fixes bug #82726]
1283
1284 2007-09-07  Jonathan Pobst  <monkey@jpobst.com>
1285
1286         * ToolStrip.cs: Make sure we aren't drawing anything that isn't 
1287         visible.  [Fixes bug #82727]
1288
1289 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1290
1291         * ToolStripItem.cs: If AutoSize changes the size of our item, invalidate
1292         so we repaint using the new size.  [Fixes bug #82723]
1293
1294 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1295
1296         * TreeView.cs: If ShowLines is true, we should ignore the FullRowSelect
1297         option.  [Fixes bug #81779]
1298
1299 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1300
1301         * TreeView.cs: Override HandleClick because the StandardClick style is
1302         set to false.  According to MSDN (and testing), the click events should
1303         only be raised when the click occurs on a TreeNode.  [Fixes bug #81739]
1304
1305 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1306
1307         * ToolStripTextBox.cs: Invalidate our textbox when it loses focus, so
1308         the border will disappear.  Fixes reopened #82653.
1309
1310 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1311
1312         * Control.cs: If the control is autosize, and its preferred size changes
1313         when it lays out its children, tell its parent so it can be re-layed out.
1314         Fixing some of the fallout from r85433.
1315
1316 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1317
1318         * ThemeWin32Classic.cs: Fix a NRE caused by r85427 because RadioButton
1319         and CheckBox share some code.
1320
1321 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1322
1323         * TrackBar.cs: Only call OnScroll if we actually changed the Value of
1324         the TrackBar, not every mouse move.  [Fixed bug #82718]
1325
1326 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1327
1328         * ThemeWin32Classic.cs: Allow a CheckBox to be rendered like a Button
1329         under 2.0 rendering.  [Fixes bug #82657]
1330
1331 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1332
1333         * TreeView.cs: If we found a TreeNode to display a context menu, but
1334         it doesn't have one to show, let the TreeView display its menu
1335         instead.  [Fixes bug #82680]
1336
1337 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1338
1339         * ToolStripTextBox.cs: TextBox no longer call OnPaint, we need to use
1340         OnPaintInternal instead.  Give the internal TextBox a Border property
1341         so it can draw itself more correctly.  [Fixes bug #82653]
1342
1343 2007-09-06  Zoltan Varga  <vargaz@gmail.com>
1344
1345         * HtmlHistory.cs HtmlWindow.cs HtmlWindowCollection.cs ListBindingHelper.cs WindowsFormsSection.cs WindowsFormsSynchronizationContext.cs: Stubs for missing 2.0 classes.
1346
1347 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
1348
1349         * ComboBox.cs: Adjust combobox button state to reflect current state when
1350         back to enabled = true. Fixes first issue of #82654.
1351
1352 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
1353
1354         * Control.cs: Fix last patch regression, prevent forms to update zorder when
1355         setting visible property.
1356
1357 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
1358
1359         * Control.cs: Update zorder after control creation in SetVisibleCore, it 
1360         fix zorder for controls initially created as non visible. Fixes #82667.
1361
1362 2007-09-04  Everaldo Canuto  <everaldo@simios.org>
1363
1364         * ThemeWin32Classic.cs: Adjust checkbox light color to ControlLightLight to
1365         mimic win32 look. Fixes #82656.
1366
1367 2007-09-01  Zoltan Varga  <vargaz@gmail.com>
1368
1369         * FileDialogCustomPlace.cs FileDialogCustomPlacesCollection.cs: 
1370         Stubs for new net 3.5 classes.
1371
1372 2007-08-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1373
1374         * ListViewItem.cs: In ListViewItemCollection operations calculate
1375         Layout for owner as well as invalidate it. Fixes part of #82642.
1376
1377 2007-08-31  Jonathan Pobst  <monkey@jpobst.com>
1378
1379         * ToolStripItem.cs: Take Parent/Owner's Enabled state in to account
1380         when returning Enabled.  [Fixes bug #82651]
1381
1382 2007-08-30  Everaldo Canuto  <everaldo@simios.org>
1383
1384         * ToolBar.cs: Fix button size for non flat toolbars. Fixes #82368.
1385
1386 2007-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1387
1388         * ListView.cs: Put item padding info in a single place
1389         (Theme.ListViewItemPaddingWidth) to have working AutoResize on
1390         columns again.
1391         * ThemeWin32Classic.cs:
1392         * Theme.cs: Likewise.
1393
1394 2007-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1395
1396         * ListView.cs: When a ListViewSubItem instance is invalidated,
1397         invoke Invalidate on parent ListViewItem, not parent ListView.
1398         Fixes #81570.
1399
1400 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
1401
1402         * ListView.cs, ListViewItem.cs: corcompare stuffs.
1403
1404 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
1405
1406         * BindingMemberInfo.cs: Implement == and != operators.
1407
1408 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
1409
1410         * HtmlElementEventArgs.cs: Implement properties.
1411
1412 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1413
1414         * HtmlElementErrorEventArgs.cs, HtmlElementErrorEventHandler.cs: Added.
1415
1416 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1417
1418         * TabControl.cs: I was looking into the MonoTODO on TabPageCollection.
1419         Add (string,string,string) to implement the imagekey.  It turns out, we
1420         use the requested imagekey whereas .Net does not.  So I broke ours to match
1421         theirs.  :(
1422
1423 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1424
1425         * Form.cs, UserControl.cs: Override ValidateChildren, AutoValidate.
1426
1427 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1428
1429         * ContainerControl.cs: Implement ValidateChildren and new Validate overload.
1430
1431 2007-08-29  Gert Driesen  <drieseng@users.sourceforge.net>
1432
1433         * FolderBrowserDialog.cs: Set Tag of newly created node, and keep it
1434         up-to-date. Fixes bug #82618.
1435
1436 2007-08-29  Everaldo Canuto  <everaldo@simios.org>
1437
1438         * TextBoxBase.cs: Call CalculateDocument after changes Lines property to
1439         reflect document changes. Fixes #82367.
1440
1441 2007-08-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1442
1443         * ListView.cs: Add/fix some override differences between 1.1 and 2.0,
1444         as well as add new ones. This should make work the BackgroundImage
1445         property for ListView again.
1446
1447 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1448
1449         * DataGrid.cs, DataGridViewButtonColumn.cs, DataGridViewCheckBoxColumn.cs,
1450         DataGridViewComboBoxColumn.cs, DataGridViewImageColumn.cs, DataGridViewLinkColumn.cs,
1451         DataGridViewTextBoxColumn.cs, ToolTip.cs: corcompare stuffs.
1452
1453 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1454
1455         * Control.cs, XPlatUI.cs, XPlatUIDriver.cs, XPlatUIWin32.cs: Implement
1456         IsKeyLocked.
1457
1458 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1459
1460         * Cursor.cs: Add HotSpot, hook into XPlatUI.GetCursorInfo.
1461         * XPlatUIWin32.cs: Implement hotspot lookup in GetCursorInfo.
1462
1463 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1464
1465         * RadioButton.cs: Use 2.0 rendering.  Use base implementation of TextAlign.
1466         * Theme.cs, ThemeWin32Classic.cs: Implement 2.0 rendering for RadioButton.
1467
1468 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
1469
1470         * CursorConverter.cs: Implement conversion to InstanceDescriptor.
1471
1472 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
1473
1474         * GridEntry.cs: Implement GetService.
1475
1476 2007-08-27  Jonathan Pobst  <monkey@jpobst.com>
1477
1478         * LabelEditTextBox.cs, TreeView.cs: After hiding the textbox used
1479         for label editting, make sure we focus back on the TreeView.
1480         [Fixes bug #82590]
1481
1482 2007-08-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1483
1484         * ListView.cs: Add some 2.0 overrides.
1485
1486 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
1487
1488         * Form.cs: Uses opacity var instead of Opacity property in CreateHandle
1489         because getter dont returns right value before handle creation. Thanks 
1490         to George. Fixes #82569.  
1491
1492 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
1493
1494         * Theme.cs: Revert last patch, it causes error under win32. 
1495
1496 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
1497
1498         * Theme.cs: Uses Environment.SpecialFolder.DesktopDirectory instead of 
1499         Environment.SpecialFolder.Desktop in Places method, Desktop returns the 
1500         logical Desktop rather than the physical file system location. Fixes #82603. 
1501
1502 2007-08-26  Everaldo Canuto  <ecanuto@novell.com>
1503
1504         * MessageBox.cs: Add clipboard copy (ctrl+c) to messagebox. Thanks Andy Hume
1505         for the patch. Fixes #82568.
1506
1507 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1508
1509         * ListView.cs: Add a pair of missing 2.0 ListViewItemCollection.Insert
1510         methods.
1511
1512 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1513
1514         * ListViewInsertionMark.cs: New stubbed class.
1515
1516 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
1517
1518         * FolderBrowserDialog.cs: When adding folder, immediately create the
1519         directory with temporary name and rename the directory when editing
1520         finishes. This matches MS. Ensure the node for the new folder is 
1521         selected and LabelEdit is disabled, when editing is either finished
1522         or cancelled.
1523
1524 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
1525
1526         * TreeView.cs: When editing label of node, ensure node is visible.
1527
1528 2007-08-25  Ivan N. Zlatev  <contact@i-nz.net>
1529
1530         * PropertyGridView.cs: Set the value only if it has changed.
1531
1532 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1533
1534         * ListView.cs: Some more code refactoring to add support sorting
1535         with groups (now for Details view). Remove unused code also.
1536
1537 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1538
1539         * NodeLabelEditEventArgs.cs: EndEdit immediately when CancelEdit is called.
1540         Not a big fan of reacting immediately to a field in an EventArg, but that's
1541         the way it's done.  (This is part of the previous commit that got left out.)
1542
1543 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
1544
1545         * FolderBrowserDialog.cs: Removed need for separate description field.
1546         Replaced "" with string.Empty. Fixed tabindex. Ensure OK button
1547         has focus when dialog box is displayed again, regardless of what
1548         button was pressed the previous time. Set RootFolder and SelectedPath
1549         each time dialog box is displayed. This ensures the treeview is
1550         refreshed, and fixes bug #82579. Do no hide selected node in TreeView
1551         when it does not have focus. Added support for more special folders.
1552
1553 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1554
1555         * TreeView.cs: Create a CancelEdit method.  Clone the edit_args in EndEdit
1556         before calling AfterLabelEdit.  If the user calls BeginEdit in that event,
1557         it resets the edit_args.
1558         * TreeNode.cs: Call CancelEdit if the user passes cancel = true to EndEdit.
1559         [Fixes bug #82577]
1560
1561 2007-08-24  Gert Driesen  <drieseng@users.sourceforge.net>
1562
1563         * FolderBrowserDialog.cs: Modifies form caption and text of new folder
1564         button to match MS. Provide more meaningful exception message for
1565         invalid RootFolder value. Use zero-length string when SelectedPath
1566         is set to null. Allow non-rooted paths in SelectedPath, but ignore
1567         them in FolderBrowserTreeView. Allow folders to be created in
1568         RootFolder. Fixes bug #82576.
1569
1570 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1571
1572         * ListView.cs: Correctly compute the layout_ht (height) when using groups,
1573         since we need to take into account the group headers and the margin
1574         between them.
1575         * ListViewGroup.cs: Add a rows field to store the number of rows per
1576         group.
1577
1578 2007-08-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1579
1580         * DateTimePicker.cs: The MS' MTB has a really stupid year formatting.
1581           Anyways, let's just follow the lead.
1582
1583 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1584
1585         * CheckBox.cs: Set the AutoSizeMode to GrowAndShrink.
1586         * Form.cs, GroupBox.cs: Don't skip Right or Bottom anchored 
1587         controls in GetPreferredSizeCore.
1588         * ThemeWin32Classic.cs: Tweak text drawing of CheckBoxes.
1589         [Fixes bug #82488]
1590
1591 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1592
1593         * PrintDialog.cs: Need to instantiate the form variable here too.
1594
1595 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1596
1597         * ListView.cs: Do some reorganization to support sorting in groups,
1598         by doing the layout sequentially in ListView.Items. Also add support
1599         for the Default Group, which should be available for items with no
1600         group assigned.
1601         * ListViewGroup.cs: Add support for DefaultGroup. Include new members
1602         for storing layout info also.
1603         * ListViewGroupCollection.cs: Add a DefaultGroup as part of the
1604         collection, as well as providing internal members to do a traversal
1605         including the default group (needed when doing layout/drawing).
1606         * ThemeWin32Classic.cs: When drawing group headers use internal
1607         ListViewGroupCollection members to take into account the default
1608         group.
1609
1610 2007-08-23  George Giolfan  <georgegiolfan@yahoo.com>
1611
1612         * FlowLayoutPanel.cs: Add GetPreferredSizeCore.  [Fixes bug #82537]
1613
1614 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
1615
1616         * TreeView.cs: IsInputKey: don't ask for any keys if the handle hasn't
1617         been created.  If handle is created, we want arror keys.  If we are editing
1618         a node, we want things like enter, esc, home, end, page up, page down.
1619         Allows Esc to work for FolderBrowserDialog.
1620
1621 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
1622
1623         * ColorDialog.cs, FontDialog.cs: Set the form's CancelButton so that
1624         they close when ESC is pressed.  Thanks Andy!
1625
1626 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
1627
1628         * CommonDialog.cs: Do not instantiate form, leave that for derived classes.
1629         This way we can tell if this is a CommonDialog provided with mono, or one
1630         that is being implemented outside by a developer.  If it is an external one,
1631         the developer is responsible for showing their own form.  We were showing
1632         our blank form after the developer showed his.
1633         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs, FontDialog.cs,
1634         PageSetupDialog.cs: Instantiate form variable in our constructor.
1635         [Fixes bug #82531]
1636
1637 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
1638
1639         * ListBox.cs, ListView.cs, TreeView.cs: Override IsInputCharInternal
1640         and always return true.  [Fixes bug #81616]
1641
1642 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
1643
1644         * TextBoxBase.cs: Allow 2.0 AutoSize to change the height of the
1645         TextBox.  [Fixes bug #82549]
1646
1647 2007-08-23  Gert Driesen  <drieseng@users.sourceforge.net>
1648
1649         * FileDialog.cs: When Save/Open is clicked and no filename is selected
1650         or entered then do not close the dialog. Fixes bug #82539. Removed
1651         CWLs.
1652
1653 2007-08-22  Everaldo Canuto  <ecanuto@novell.com>
1654
1655         * FileDialog.cs: Create UpdateRecentFiles and move the recent files refresh
1656         code to this method. It is calling every time filter changes. This method
1657         will help to fix the bug #80887.
1658
1659 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
1660
1661         * CheckBox.cs: Implement AutoSize calculation.
1662
1663 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
1664
1665         * CheckBox.cs: Use new 2.0 rendering for 2.0.
1666         * Theme.cs: Method declarations for 2.0 rendering path.
1667         * ThemeWin32Classic.cs: 2.0 rendering implementation for CheckBox.
1668
1669 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1670
1671         * ListViewGroupCollection.cs: Fix a typo of the previous patch.
1672
1673 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1674
1675         * ListViewGroupCollection.cs: Implement AddRange the right way, to
1676         only call Redraw on the parent one time.
1677
1678 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1679
1680         * DataGridViewRowHeaderCell.cs, DataGridViewColumnHeaderCell.cs: Implemented
1681           GetClipboardContent.
1682         * DataGridViewCell.cs: Implemented GetClipboardContent,
1683           GetEditedFormattedValue, GetFormattedValue.
1684         * DataGridView.cs: Implemented GetClipboardContent, TopLeftHeaderCell.
1685
1686 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
1687
1688         * TableLayoutStyleCollection.cs: corcompare fix.
1689
1690 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1691
1692         * DataObject.cs: Implemented retrieval of convertible / not convertible
1693           objects.
1694
1695 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
1696
1697         * ToolStripItem.cs: When changing the item's text, invalidate before we resize
1698         ourselves.  This ensures the entire old bounds are repainted, in case our new
1699         size is smaller.  [Fixes bug #82518]
1700
1701 2007-08-20  Everaldo Canuto  <ecanuto@novell.com>
1702
1703         * XplatUIX11.cs: Apply patch from #81588, it makes use of PointerMotionHintMask
1704         flag to make fast handle of mouse events, without this the mouse move is
1705         handled in some manner, whether it is a mouse move or not. Fixes #81588.
1706
1707 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1708
1709         * ListView.cs: When doing layout calculations don't use a ref
1710         param to keep the current item; instead use its Index value (this 
1711         is specially important when doing the layout with Groups
1712         and Items being sparse). Also don't take into account items added to
1713         the Group but not yet added to the main ListView.Items collection.
1714
1715 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1716
1717         * ListViewGroupCollection.cs: Forgot to mimic an issue
1718         in the indexer (don't assign the ListView owner for new values).
1719
1720 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1721
1722         * ListViewGroupCollection.cs: Make the string indexer use
1723         the int based indexer to re-use code, instead of duplicate the code.
1724         Also Redraw as needed and take into account null values.
1725
1726 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
1727
1728         * StatusStrip.cs: Make sure the item's parent gets set in SetDisplayedItems.
1729         [Fixes bug #82481]
1730
1731 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
1732
1733         * ToolStrip.cs: Add some logic to un-focus controls in ToolStripControlHosts
1734         when other buttons are clicked or navigated to.
1735
1736 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1737
1738         * XplatUIX11.cs: Treat toolwindows as if they had no window manager, since
1739           it's XplatUIX11 that attaches them.
1740
1741 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1742
1743         * DataGridView.cs: If a column has been added, recreate the editing row.
1744           Fixes #82226.
1745
1746 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1747
1748         * TextControl.cs: Use Math.Max instead of Math.Min when deciding the length
1749           of the tag to draw. Makes disappearing text show up again.
1750
1751 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1752
1753         * StatusBar.cs: Take into account any icons when a panel has AutoSize =
1754           Contents. Fixes #82487.
1755
1756 2007-08-19  Andreia Gaita  <avidigal@novell.com>
1757
1758         * Added HtmlElement.cs, HtmlElementCollection.cs, 
1759           HtmlElementEventArgs.cs, HtmlElementEventHandler.cs
1760           
1761 2007-08-19  Andreia Gaita  <avidigal@novell.com>
1762
1763         * BindingSource.cs: Implement this, dispose and getenumerator.
1764         * DataGridViewRowCollection.cs: Move the InvalidOperationException
1765         out of AddInternal, throw it only on public Add calls. The 
1766         UsingWebBrowser sample was blowing up with this when setting the
1767         DataSource after adding DataBindings, so it's likely that .net
1768         only throws this exception when Add is called directly. 
1769         
1770         * ToolStripControlHost.cs: Return the hosted control's text
1771         property, and not the ToolStripItem one (it would always return
1772         the initial value).
1773         
1774         * HtmlDocument.cs: Implement GetElementById and All
1775         * WebBrowser.cs: Remove exception on set_DocumentStream.        
1776
1777 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1778
1779         * Form.cs: Fix the max and min value for opacity (0~1).
1780
1781 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1782
1783         [Fixes #80118]
1784         * DataGridTableStyle.cs: Default header font is now null, on getter it 
1785         returns datagrid font when is null. On setter permits null.
1786
1787         * DataGrid.cs:
1788         - When ResetHeaderFont set header font to null.
1789         - On EndInit set grid_style.DataGrid.
1790
1791 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1792
1793         * TabControl.cs: Fix regression in default padding x.
1794
1795 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1796
1797         * TabControl.cs: Fix tab page text area removing padding. Fixes #82471.
1798
1799 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1800
1801         * TabControl.cs: Fix first tab drawing, when selected it must have x = 0
1802         not 2. Fixes #82229.
1803
1804 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1805
1806         * TabControl.cs: Fix tab size when image height is less than text height.
1807         Partially fixes #81837.
1808
1809 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1810
1811         * Form.cs: Add WS_EX_CONTROLPARENT to forms to make it selectable using 
1812         "alt + tab". It works only for Win32, for X11 theres no way to remove window
1813         from taskbar and keep it on "alt_tab". Fixes #81722.
1814
1815 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1816
1817         * XplatUIX11.cs: Apply patch from Jurek Bartuszek to fix DrawReversibleFrame
1818         and DrawReversibleLine, also apply same behavior to FillReversibleRectangle. 
1819         Fixes #80877 and #79418.
1820
1821 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1822
1823         * MenuAPI.cs: Fix popup menu position when the size is larger than distance 
1824         between position and one of the screen borders. Fixes #82349.
1825
1826 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1827
1828         * MessageBox.cs: When there is no form that invoked the MessageBox, shows
1829         the MessageBox in the taskbar. Fixes #82457.
1830
1831 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1832
1833         * MessageBox.cs: Fix form size when icon is set and text height is bigger
1834         than icon. Fixes #82468.
1835
1836 2007-08-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1837
1838         * ThemeWin32Classic.cs: A FixedToolWindow has border size 3.
1839         * InternalWindowManager.cs: Change HandleCalcSize to return a boolean value
1840           if handled or not. Implement WM_NCCALCSIZE for WParam == 0 as well.
1841           Refactored HandleNCCalcSize somewhat to avoid code duplication.
1842         * Form.cs: Add is_clientsize_set, set in set_ClientSize, used by
1843           FormBorderStyle to decide if we're calculating a new size from the
1844           client size or not. CreateParams: Don't fake tool windows, only the X11
1845           backend manages toolwindows manually.
1846
1847 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1848
1849         * Form.cs: Only reset is_visible if !IsDisposed to prevent an
1850         ObjectDisposedException.
1851
1852 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1853
1854         * Form.cs: Reset is_visible back to true after OnLoad.  Setting this
1855         in OnLoad should not have any effect.  [Fixes bug #82470]
1856
1857 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1858
1859         * ToolTip.cs: Add a hack to ToolTipWindow so it will still size and
1860         paint for controls that create their own ToolTipWindow instead of
1861         going through ToolTip.
1862
1863 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1864
1865         * ToolTip.cs: Make Hide internal instead of public to match MS API.
1866
1867 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1868
1869         * ListViewGroupCollection.cs: Use generic List instead of an
1870         ArrayList, since this collection is 2.0 only.
1871
1872 2007-08-17  Jeffrey Stedfast  <fejj@novell.com>
1873
1874         * ToolTip.cs (Hide): Made public to make the build work (should
1875         this not be public?).
1876
1877 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1878
1879         * ToolBar.cs, ToolStrip.cs, TreeView.cs: Use a ToolTip instead of a
1880         ToolTipWindow.
1881         * ToolTip.cs: Add an internal Visible property to facilitate transition.
1882
1883 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1884
1885         * DrawToolTipEventArgs.cs, DrawToolTipEventHandler.cs, PopupEventArgs.cs,
1886         PopupEventHandler.cs: Make these internal for 1.1.
1887         * ThemeClearlooks.cs, ThemeWin32Classic.cs: Use TextRenderer, and modify to not
1888         use ToolTipWindow internals.
1889         * ToolTip.cs: Add 2.0 modal Show methods.  Had to move a lot of stuff around to
1890         support this.  A lot of stuff in the ToolTipWindow got moved to the ToolTip.
1891
1892 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1893
1894         * X11Dnd.cs: Add a null check.
1895
1896 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1897
1898         * X11Dnd.cs: MwfWindow: Try to load the control directly from the handle if
1899           nothing else succeeds. Fixes #82453.
1900
1901 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1902
1903         * XplatUIWin32.cs: PaintEventStart: validate the entire source client
1904           rectangle if we're painting to another window than the one the paint
1905           message was generated on. Simplify the code somewhat, which makes
1906           PaintEventEnd also simpler.
1907
1908 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1909
1910         * Control.cs: When changing parent of a form, let the form decide whether
1911           XplatUI.SetParent should be called or not.
1912         * Form.cs: ChangingParent: only call XplatUI.SetParent if we're not
1913           recreating the handle. If the new parent's handle isn't created, don't
1914           recreate our handle, just destroy it. CreateParams: Check if the
1915           parent's handle is created before fetching it.
1916
1917 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1918
1919         * Control.cs, Form.cs, InternalWindowManager.cs, MainMenu.cs, MdiClient.cs:
1920           Update calls to PaintEventStart/End to take a Message argument.
1921         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Update PaintEventStart/End to
1922           take a Message argument.
1923         * XplatUIWin32.cs, XplatUIX11.cs: Update PaintEventStart/End to take a
1924           Message argument, and handle the case where we don't paint to the window
1925           for which the paint message was generated.
1926
1927 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1928
1929         * XplatUIWin32.cs: Don't call Win32GetLastError directly, use
1930           Marshal.GetLastWin32Error. Plug nasty memory leak in
1931           PaintEventStart/End, we were creating a DC we weren't releasing.
1932
1933 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1934
1935         * ListView.cs: Add Groups support in Details view. Also have a small
1936         method to do the layout of the group header. Don't use a separate
1937         method to do the groups calculation in Icons view, since our methods
1938         are now a little simpler.
1939         * ListViewGroup.cs: Use the more accurate `HeaderBounds' name than
1940         `Bounds'.
1941         * ThemeWin32Classic.cs: Likewise.
1942
1943 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
1944
1945         * Application.cs: Add FilterMessage method and rework our message loop
1946         logic to use it.
1947
1948 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
1949
1950         * Application.cs: Add some methods and stub a few methods that are
1951         pretty much never used.
1952
1953 2007-08-15  Jonathan Pobst  <monkey@jpobst.com>
1954
1955         * TreeNode.cs: Add some serialization methods.
1956
1957 2007-08-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1958
1959         * ListView.cs: In ListViewItemCollection have a 
1960         'is_main_collection' field to not modify ListViewItem.ListView
1961         when using it as ListViewGroup.Items (and not ListView.Items)
1962         and also don't modify selection state (.Net behaviour). 
1963         Instead, set group for items contained in a ListViewGroup.Items collection.
1964         * ListViewItem.cs: Simplify some code in Group setter.
1965         * ListViewGroup.cs: use the new .ctor to pass the current instance
1966         to the ItemsCollection.
1967         * ListViewGroup.cs: Set the ListView property for ListViewGroup
1968         instances when adding/removing. Also make Remove use RemoveAt, which
1969         should perform better.
1970
1971 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
1972
1973         * Message.cs, TabControl.cs, TextBox.cs, TextBoxBase.cs: Hide some 2.0 API
1974         that crept into the 1.1 profile.
1975
1976 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
1977
1978         * ToolBarButton.cs: Implement ImageKey.
1979
1980 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
1981
1982         * ToolBar.cs: Implement ScaleControl/ScaleCore.
1983
1984 2007-08-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1985
1986         * PictureBox.cs: OnAnimateImage/UpdateAnimateImage: Check if handle is still
1987           created, it might have gotten destroyed since we last checked. Fixes
1988           #82405.
1989
1990 2007-08-11  Jonathan Pobst  <monkey@jpobst.com>
1991
1992         * ToolTip.cs: Remove mouse in control check from mouseleave handler so
1993         tooltip will hide when mouse is moved off the control.
1994         [Fixes bug #82407]
1995
1996 2007-08-11 Andreia Gaita <avidigal@novell.com>
1997
1998         * WebBrowserBase.cs, WebBrowser.cs: add implementation
1999         using Mono.Mozilla for loading and navigating webcontrol
2000         with xulrunner.
2001         The initial implementation was done on 
2002         /trunk/mozembed/tests/browser , and copied here.
2003
2004 2007-08-11  Gert Driesen  <drieseng@users.sourceforge.net>
2005
2006         * ThemeWin32Classic.cs: On 2.0 profile, use ForeColor and BackColor of
2007         ToolTipWindow for drawing the tooltip. Fixes bug #82408.
2008
2009 2007-08-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2010
2011         * DataGridView.cs: Add support for an editing row. Fixes #82226.
2012           RowTemplateFull: throw an exception if a column doesn't have a template.
2013         * DataGridViewRowCollection.cs: AddInternal: if there are any editing rows,
2014           add the row just before it.
2015         * DataGridViewTextBoxCell.cs: Don't paint cells which are in edit mode as
2016           selected.
2017         * DataGridViewSelectedRowCollection.cs: Don't return the editing row. Add a
2018           DataGridView field to be able to reach the grid's editing row.
2019
2020 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
2021
2022         * ToolTip.cs: If the control's handle hasn't been created when it has a
2023         tooltip set on it, don't check to see if we need to show the tooltip.  This
2024         check was causing the control's handle to be created.
2025         [Fixes bug #82399]
2026
2027 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
2028
2029         * TextBoxBase.cs: Fix SelectionLength when no text selected to match MS:
2030                                         1.1             2.0
2031         Handle Not Created      -1              0
2032         Handle Created          0               0
2033         [Fixes bug #82371]
2034
2035 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
2036
2037         * ToolTip.cs: Hide the tooltip if the control is clicked to match MS behavior.
2038         [Fixes bug #82348]
2039
2040 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
2041
2042         * DrawToolTipEventArgs.cs: Don't dispose a brush we got from the respool.
2043         * ToolTip.cs: Implement some properties and owner draw.
2044
2045 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2046
2047         * DataGridView.cs: OnPaint: don't set scrollbar visibility to false then
2048           show them again, since setting visibility causes a paint, causing an
2049           endless loop (instead use a temporary and set it all when it's known if
2050           they should be shown or not). Fixes #79265.
2051
2052 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2053
2054         * DataGridView.cs: Only do a full column/row selection if a header was
2055           clicked and we're in Column/RowHeader selection mode. If shift and ctrl
2056           isn't pressed, deselect everything before selecting something.
2057
2058 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2059
2060         * DataGridView.cs: Fix SelectedRows and SelectedColumns to match MS
2061           behaviour according to bug #81075 - they are returned in the order they
2062           are selected. Fix HitTest to check if the point is within any of the
2063           headers. Allow for row/column selection when in ColumnHeader or
2064           RowHeader selection mode. Add SetSelected[Column|Row]CoreInternal for
2065           the row and column to call when their selected state changes, and
2066           updated selected_[rows|columns] whenever SetSelected* is called.
2067         * DataGridViewBand.cs: Initialize isRow correctly. Call
2068           SetSelected[Row|Column]CoreInternal when the selected state changes, and
2069           add a SelectedInternal to avoid StackOverflows.
2070         * DataGridViewColumn.cs, DataGridViewRow.cs: If DGV is ReadOnly, we're also
2071           ReadOnly no matter what.
2072         * DataGridViewSelectedColumnCollection.cs,
2073           DataGridViewSelectedRowCollection.cs: Add an InternalAddRange that adds
2074           the items in reverse order (just as MS does...)
2075
2076 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
2077
2078         * Application.cs: Only release menustrips if Alt (MenuKey) is pressed by
2079         itself, not part of a mnemonic.  [Fixes bug #82378]
2080
2081 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2082
2083         * DataGridView.cs: BeginEdit: don't allow editing of readonly cells.
2084         * DataGridViewCell.cs: Implement ReadOnly better: the cell is ReadOnly if
2085           the DGV, the column, the row, or the cell itself is readonly.
2086
2087 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
2088
2089         * ThemeNice.cs: Use XplatUI.RunningOnUnix instead of checking
2090         OSVersion.Platform.
2091         * FileDialog.cs: Same.
2092         * TextRendered.cs: Same.
2093         * FolderBrowserDialog.cs: Same.
2094         * TextBoxBase.cs: Same.
2095         * Application.cs: Same.
2096         * Cursors.cs: Same.
2097         * ThemeClearLooks.cs: Same.
2098
2099 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
2100
2101         * XplatUI.cs: Added RunningOnUnix property to be used by controls
2102         instead of duplicating these checks everywhere.
2103         * FileDialog.cs: Use case-insensitive comparison for populating the
2104         DirComboBox when not running on unix. Fixes bug #82385.
2105         * OpenFileDialog.cs: to match MS, change label of DirComboBox to 
2106         "Look in".
2107
2108 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2109
2110         * DataGridView.cs: SelectedRows: we need to check if selectionMode is
2111           FullRowSelect (not FullColumnSelect). Fixes #81075. Implemented
2112           BeginEdit, EndEdit, SetSelected<Cell|Row|Column>Core. Implemented row,
2113           cell and column selection with ctrl and shift pressed. Call the correct
2114           BeginEdit/EndEdit whenever we start/end editing. Move painting code to
2115           the corresponding virtual method (PaintBackground to paint background,
2116           etc).
2117         * DataGridViewCell.cs: Implement Selected correctly, we're selected if
2118           either the column, row or the cell itself is selected.
2119         * DataGridViewRowCollection.cs: Use DGV.OnRowsAddedInternal instead of
2120           OnRowsAdded.
2121         * DataGridViewRow.cs: Moved some of the painting code from DataGridView
2122           here. When the row is selected, don't select all cells. Each cell now
2123           queries the row to see if the row is selected.
2124
2125 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2126
2127         * DataGridViewColumn.cs: Throw if the SortMode conflicts with DataGridView's
2128           SelectionMode.
2129
2130 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2131
2132         * ListView.cs: In ListViewItemsCollection check that owner is
2133         not null before trying to access it (this happens quite often
2134         using Groups). Also don't duplicate calls by calling CollectionChanged
2135         method.
2136
2137 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
2138
2139         * ToolStrip.cs: Record if we were activated by mouse or keyboard.  Redraw
2140         when we are dismissed to clear keyboard mnemonics.
2141         * MenuStrip.cs, ToolStripDropDown.cs, ToolStripItem.cs, 
2142         ToolStripMenuItem.cs: Record if we were activated by mouse or keyboard.
2143         * ToolStripItemTextRenderEventArgs.cs: Draw mnemonic underlines if menu
2144         was activated by keyboard or the OS tells us to always draw them.
2145         * ToolStripManager.cs: Setup storage for activated by mouse or keyboard.
2146         [Fixes bugs #82376, #82377]
2147
2148 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
2149
2150         * Control.cs: If no one accepts a mnemonic, let the MenuStrip have a 
2151         shot at having it because Alt was pressed.
2152         * MenuStrip.cs: When handling Alt, don't select a SystemMenuItem, select
2153         the first real menu item.
2154         * ToolStrip.cs: Don't crash when looking for a ToolStripItem to handle
2155         a mnemonic if Text is null.
2156         [Fixes bug #82374]
2157
2158 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2159
2160         * ListView.cs: In ListViewItemCollection.AddItem, don't do a linear
2161         search do check whether the item is already contained in the
2162         collection or not; instead check if the owner of the item is the same
2163         as ours. Also, remove a redundant check in the same method. 
2164
2165 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
2166
2167         * Control.cs: Allow the clip region to be set back to null.
2168         * XplatUIWin32.cs: If we are sent a null clip region, use IntPtr.Zero.
2169         [Fixes button still showing up in bug #82370 when Show Through is turned off]
2170
2171 2007-08-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2172
2173         * GridEntry.cs: Add a null check.
2174         * PropertyGrid.cs: When checking for existing grid entries, ignore category
2175           entries. Fixes #82297.
2176
2177 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
2178
2179         * OwnerDrawPropertyBag.cs: Make the serialization constructor protected
2180         for 2.0.
2181
2182 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
2183
2184         * ListBox.cs: Implement ScaleControl.
2185
2186 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2187
2188         * Form.cs: Add a few ActiveMenu null checks. ActiveMenu might be null if we
2189           have a menu strip.
2190         * MdiWindowManager.cs: Don't create a maximized menu if the child or it's
2191           parent has a menu strip. Fixes #81689.
2192
2193 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2194
2195         * ToolTip.cs: We don't get mouse events on all platforms in the exact same
2196           moments, so apply some fuzzy logic to determine if the mouse is still
2197           inside a control or not. Fixes #82288 (for the third time).
2198
2199 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2200
2201         * Control.cs: CreateControl: create implicit children as well. Fixes #82344.
2202           Don't create the child if it has been disposed already (may happen if
2203           the user closes the form the Load event).
2204
2205 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2206
2207         * ToolTip.cs: If ReshowDelay is 0, show the tooltip immediately. Fixes
2208           #82288.
2209
2210 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2211
2212         * Control.cs: Add a null check in OnParentBindingContextChanged. The parent
2213           might call us after we've been destroyed, in which case our own private
2214           parent field is null. Fixes #82326.
2215
2216 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
2217
2218         * ToolStripDropDown.cs: Fix a failing test on X11 by adding a null
2219         check for setting the dropdown's owner.
2220
2221 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
2222
2223         * MdiClient.cs: Fix some failing tests on X11 by adding a null check
2224         before removing system menu items.
2225
2226 2007-08-02  Jonathan Pobst  <monkey@jpobst.com>
2227
2228         * MdiClient.cs, MdiWindowManager.cs: Support 2.0 Mdi MenuStrip
2229         folding.
2230         * MdiControlStrip.cs: Added.  These are the menu items used in mdi
2231         folding.
2232         * ToolStrip.cs: Add a null check to mnemonics.
2233         * ToolStripDropDownMenu.cs: When using a SystemMenuItem, there is
2234         no ConnectedArea.
2235         [Fixes most of bug #81689]
2236
2237 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2238
2239         * PropertyGrid.cs: Add a null-check. Fixes #82289/SVGPad.
2240
2241 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2242
2243         Use InitialDelay if ReshowDelay is zero. Fixes #82288.
2244
2245 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2246
2247         * DataGridViewCell.cs: EditType: returns
2248           DataGridViewTextBoxEditingControl always.
2249
2250 2007-08-01  Jonathan Pobst  <monkey@jpobst.com>
2251
2252         * TextRenderer.cs: Remove the LineLimit string format flag from the
2253         DrawString fallback method so that things like buttons that aren't
2254         tall enough to draw a full line will still draw part of the text.
2255         [Fixes part of bug #82272]
2256
2257 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2258
2259         * DataGridView.cs: Implemented AutoResizeColumn(s).
2260         * DataGridViewCellStyle.cs: Added SetAlignment, fills in a StringFormat
2261           according to the Alignment.
2262         * DataGridViewColumnHeaderCell.cs, DataGridViewTextBoxCell.cs:
2263           Implement alignment and padding when painting.
2264         * DataGridViewRow.cs: SetValues: Don't create a cell if it already
2265           exists.
2266         * DataGridViewCell.cs: Implement BorderWidths in the most primitive
2267           way.
2268         * DataGridViewColumnCollection.cs: Raise OnColumnAdded on the DGV when
2269           a column is added.
2270
2271 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
2272
2273         * TextBoxBase.cs: Use Control.ExplicitBounds instead of explicit_bounds,
2274         which is internal.
2275
2276 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
2277
2278         * ToolStrip.cs: Stub out drag and drop methods, fix some corcompare stuff,
2279         hide GetPreferredSize from public API.
2280         * ToolStripDropDown.cs: Override AllowItemReorder, fix AccessibleObject.
2281         * ToolStripItem.cs: Stub out drag and drop methods and events.
2282         * ToolStripManager.cs: Stub out Save/LoadSettings.
2283         * ToolStripOverflow.cs: Use renamed ToolStrip.GetPreferredSize.
2284         * ToolStripPanel.cs: Fix corcompare error.
2285         * ToolStripPanelRow.cs: Use renamed ToolStrip.GetPreferredSize.
2286         * ToolStripSplitButton.cs: Fix AccessibleObject stuff.
2287         * ToolStripSplitStackLayout.cs: Use renamed ToolStrip.GetPreferredSize.
2288
2289 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
2290
2291         * TextBoxBase.cs: In our new GetPreferredSizeCore, return the explicit
2292         bounds height instead of PreferredHeight.  Puts things back the way 
2293         they were for height while still fixing the width.  Fixes broken unit
2294         tests.
2295
2296 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2297
2298         * Binding.cs: Implement 2.0 constructors and add a null check.
2299
2300 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2301
2302         * DataGridViewRowCollection.cs: Allow a null DGV in the constructor,
2303           and fix row index (off by one).
2304
2305 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2306
2307         * PropertyGridView.cs: Remove debug output.
2308
2309 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2310
2311         * Control.cs: We need to reset the is_created flags when the handle is
2312           destroyed. Fixes #82187.
2313         * XplatUIWin32.cs: In GetWindowRect don't offset screen coordinates to
2314           client coordinates if the window doesn't have a parent.
2315           Win32GetParent returns the parent or the owner, and for top-level
2316           windows with no parent (but with an owner) we were calculating the
2317           location from the location of the owner.
2318         * Form.cs: Remove incorrect fix for #82187. Don't raise OnLoad if the
2319           form has been disposed.
2320         * MdiClient.cs: Add a null-check.
2321
2322 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
2323
2324         * TextBoxBase.cs: TextBoxBase reports itself at AutoSize, but doesn't
2325         actually do auto-sizing.  Override the internal GetPreferredSizeCore 
2326         so we can provide an implementation that returns the current width
2327         and preferred height.  Allows anchor = right to work with TextBox 2.0.
2328         [Fixes bug #82233]
2329
2330 2007-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2331
2332         * ListView.cs: Add support for navigating items in Groups mode, by
2333         creating a big matrix containing all rows and cols of all groups. When
2334         are in other mode than Details, pressing Up should have a similar
2335         behaviour as that one of Down (moving to the next available column if
2336         current one doesn't have an item in the requested row). Also, don't
2337         proceed to use groups if ShowGroups is false.
2338         * ListViewGroup.cs: Add an internal int field to store the starting
2339         row of the group (used by the big matrix used for navigating the
2340         ListView).
2341         * ThemeWin32Classic.cs: Don't draw headers if ListView.ShowGroups is
2342         false.
2343
2344 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
2345
2346         * ToolStripDropDown.cs: When we do Show, start with the 
2347         DefaultDropDownDirection, but if our popup menu is going to off-screen,
2348         modify the direction to keep it on screen.  [Fixes bug #82210]
2349
2350 2007-07-29  Gert Driesen  <drieseng@users.sourceforge.net>
2351
2352         * FileDialog.cs: Accept any FilterIndex value, and store it
2353         unmodified. When FilterIndex is less than 1, or greater than number
2354         of filters, then default to first filter. Only add filter extension to
2355         file if user did not specifiy an extension. When type of dialog is
2356         OpenFileDialog and DefaultExt is set, then only use filter extension
2357         if: CheckFileExists is true and no file wih the default extension
2358         exists, or CheckFileExists is false, and user specified file does not
2359         exist. When CheckFileExists is true, then add first extension of 
2360         selected filter that matches existing file. Perform checks for
2361         existing file, overwrite and create after extension has been added to
2362         file name. When CheckFileExists is true and type is SaveFileDialog,
2363         then only consider first filter extension if DefaultExt is set.
2364         When CheckFileExists is true, then ignore DefaultExt if file with that
2365         extension does not exist. Also perform check for existing file when
2366         type is SaveFileDialog. Changed some field to constants.
2367
2368 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2369
2370         * ListView.cs: Take into account the region used by header
2371         control when doing the vertical scroll (this way we invalidate
2372         the precise area, and don't get any dirty one).
2373
2374 2007-07-27  Everaldo Canuto  <ecanuto@novell.com>
2375
2376         * FileDialog.cs: Check for valid filterIndex on button open/save. 
2377         Fixes #82184.
2378
2379 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2380
2381         * ListView.cs: Update some layout calculations in details view
2382         and clean the code in a pair of assignations.
2383
2384 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
2385
2386         * ComboBox.cs, ContainerControl.cs, DataGrid.cs, FontDialog.cs, Label.cs,
2387         LinkLabel.cs, ListBox.cs, ListView.cs, ListViewItem.cs, MessageBox.cs,
2388         MonthCalender.cs, StatusBar.cs, ThemeClearlooks.cs, ThemeWin32Class.cs,
2389         ToolBar.cs, TreeView.cs: First pass at using thread-safe string measuring.
2390
2391 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
2392
2393         * TextRenderer.cs: Use [ThreadStatic] instead of locks to improve
2394         performance of thread-safe Graphic methods.  (Thanks rolf!)
2395
2396 2007-07-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2397
2398         * ListView.cs: When doing the layout calculations, don't calculate
2399         scroll bars before handle is created. This is unnecessary and also
2400         calculating them before handle creation item causes a number of random
2401         bugs (which begin to appear after Chris' big patch for handle creation
2402         fixes). 
2403
2404 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
2405
2406         * TextRenderer.cs: Create thread-safe versions of Graphics.MeasureString
2407         for things that don't have a Graphics object.  Currently, things just use
2408         the static Hwnd.bmp_g which is not thread safe.
2409
2410 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2411
2412         * Form.cs: ShowDialog: don't destroy handles if the dialog is a common
2413           dialog. Fixes #82187.
2414
2415 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2416
2417         * DataGridViewElement.cs: Initialize state.
2418         * DataGridView.cs: Forward a few Mouse events to cells. Add
2419           GetRowInternal and GetCellInternal that doesn't unshare rows.
2420           Implement GetCellDisplayRectangle. HitTest: if the row is shared,
2421           don't use the index, but look it up. Add
2422           DataGridViewControlCollection.RemoveInternal to remove controls
2423           that Remove won't remove (scrollbars, edit control).
2424         * DataGridViewColumn.cs: Initialize State correctly.
2425         * DataGridViewColumnHeaderCell.cs, DataGridViewComboBoxCell.cs,
2426           DataGridViewHeaderCell.cs, DataGridViewRowHeaderCell.cs: Started
2427           implementing this.
2428         * DataGridViewRowCollection.cs: Implemented shared rows.
2429         * DataGridViewRow.cs: Throw exceptions as MS do.
2430         * DataGridViewCell.cs: A few properties are implemented by a
2431           Get<Property> method, so move implementation there and remove the
2432           NIEX in the method. Add a bunch of OnXInternal that DataGridView
2433           calls when necessary.
2434         * DataGridViewComboBoxEditingControl.cs: Remove a few NIEX'es that just
2435           complicates matters.
2436         * DataGridViewCellCollection.cs: Add a GetCellInternal that doesn't
2437           unshare any rows.
2438
2439 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
2440
2441         * UpDownBase.cs: We cannot override SetBoundsCore for 2.0, which was relayout-ing
2442         the children controls.  Instead, we will just set up the proper docking for the
2443         children controls so we don't have to worry about it.  [Fixes bug #82188]
2444
2445 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
2446
2447         * TreeView.cs, NodeLabelEditEventArgs.cs, LabelEditTextBox.cs: Support edit
2448         canceling and correct Before/AfterLabelEdit properties as layed out in bug
2449         81847.  [Fixes bug #81847]
2450
2451 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
2452
2453         * Label.cs: If AutoSize = true and a width or height is set, ignore it and
2454         redo the autosize.  VS2005 defaults to setting the AutoSize, and then setting
2455         an explicit size based on the design-time size of the text.  Since our fonts
2456         may not match this explicit size, we tend to cut off the ends of people's labels.
2457
2458 2007-07-24  Jonathan Pobst  <monkey@jpobst.com>
2459
2460         * Menu.cs: Add some missing methods to MenuItemCollection.
2461
2462 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2463
2464         * DataGridView.cs: Added RowTemplateFull, creates a row from the templates in the columns.
2465         * DataGridViewBand.cs: DefaultHeaderCellType: initialize correctly. Resizable: if not set, check DGV.
2466         * DataGridViewColumn.cs: InheritedAutoSizeMode: if not set, check DGV. Resizable: delegate to base class. ToolTipText: Never return null. Initialize a few other properties correctly.
2467         * DataGridViewColumnCollection.cs: Add: Default column is a TextBoxColumn.
2468         * DataGridViewComboBoxCell.cs: Started implementing this, lots left still.
2469         * DataGridViewElement.cs: State defaults to Visible.
2470         * DataGridViewRowCollection.cs: Add: creates the new row based on a template.
2471         * DataGridViewTextBoxColumn.cs: SortMode: delegate to base class, but initialize to Automatic. ToString: implement correctly.
2472
2473 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2474
2475         * Control.cs: Minor 1.1 corcompare fix.
2476
2477 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
2478
2479         * LinkLabel.cs, PrintPreviewDialog.cs, TabPage.cs, TextBox.cs,
2480         TextBoxBase.cs, ToolBar.cs: 2.0 corcompare work.
2481
2482 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2483
2484         * DataGridViewLinkColumn.cs, DataGridViewRowCollection.cs,
2485           DataGridViewImageColumn.cs, DataGridViewSelectedCellCollection.cs,
2486           DataGridViewComboBoxCell.cs, DataGridViewLinkCell.cs,
2487           DataGridViewSelectedColumnCollection.cs,
2488           DataGridViewSelectedRowCollection.cs: Corcompare work.
2489
2490 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
2491
2492         * PrintDialog.cs: Stub UseEXDialog.  I chose to stub this because
2493         it is autoset by VS2005 designer and the effect is barely noticeable.
2494
2495 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
2496
2497         * TreeView.cs: Implement HitTest.
2498
2499 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2500
2501         * DataGridViewTextBoxCell.cs: Use DGV.EditControlInternal instead of
2502           manually adding and removing the control from the Controls
2503           collecftion.
2504         * DataGridView.cs: Implement DataGridViewControlCollection. Add an
2505           EditingControlInternal property that tracks the editing control.
2506           Always keeping the scrollbars in the Controls collection, as MS
2507           testing confirms is the right behaviour.
2508
2509 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2510
2511         * ScrollableControl.cs: Fix implementation of AutoScrollPosition
2512           according to MSDN and new test.
2513
2514 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2515
2516         * TreeNode.cs: Implement ToolTipText.
2517         * TreeView.cs: Implement tooltips, NodeMouse* events.
2518
2519 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2520
2521         * TreeView.cs: Implement OnNodeMouseClick and OnNodeMouseDoubleClick.
2522
2523 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2524
2525         * TreeNode.cs: Implement ContextMenu, ContextMenuStrip, and Level.
2526         * TreeView.cs: Use the node's contextmenu[strip] if applicable.
2527
2528 2007-07-20  Ivan N. Zlatev  <contact@i-nz.net>
2529
2530         * Control.cs, Form.cs, ContainerControl.cs,
2531         ScrollableControl.cs, ButtonBase.cs:  Added ShouldSerialize
2532         for misc properties.
2533
2534 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2535
2536         * TreeNode.cs: Implement StateImageIndex and StateImageKey.
2537         * TreeView.cs: Implement StateImageList.
2538
2539 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2540
2541         * Form.cs: Don't check if the current form is the active form before
2542           activating it. Fixes #81904.
2543
2544 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2545
2546         * Form.cs: Don't check if the current form is the active form before
2547           activating it. Fixes #81904.
2548
2549 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2550
2551         * TreeView.cs: Apply patch from Tyron (tmm@aon.at). Fixes #81847.
2552
2553 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2554
2555         * Form.cs: Don't try to position the form after loading if the form was
2556           disposed. Fixes #81969.
2557
2558 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2559
2560         * PropertyGrid.cs, PropertyGridView.cs: Implemented 2.0 methods and
2561           properties. Had to change ToolBar into ToolStrip, which required a
2562           few #ifs.
2563
2564 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2565
2566         * PropertyGrid.cs: PropertyToolBar: Redraw the entire toolbar when it's
2567           resized, fixes part of #79829 (vertical lines in toolbar).
2568           PropertyGrid: Refactored Populate* to something that's easier to
2569           follow at least for me, as well as splitting it up into several new
2570           methods, required to update only subitems when something has
2571           changed by a popup editor or listbox. Don't use events to check
2572           when any values are changed, since the events are unreliable (we're
2573           changing the objects the events are registered with, and if the
2574           event handling requires the objects to be immutable (objects stored
2575           in hashtables for instance), the events will never be raised).
2576         * PropertyGridView.cs: Call PropertyGrid.PropertyValueChangedInternal
2577           everytime we change a value, since events are unreliable.
2578           DropDownButtonClicked: For the same reason don't compare objects to
2579           check if it has changed or not, it would require all objects to
2580           derive Equals. Fix dialog location on windows, MS is doing weird
2581           things when creating parented forms.
2582         * GridEntry.cs: Add a SelectedObject setter.
2583
2584 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
2585
2586         * TreeNode.cs: Add some corcompare attributes.
2587         * TreeNodeCollection.cs: Implement 2.0 stuffs.
2588         * TreeView.cs: Implement some 2.0 stuffs.
2589
2590 2007-07-18  Andreia Gaita  <avidigal@novell.com>
2591
2592         * WebBrowser.cs, WebBrowserBase.cs: add some more MonoTODOs now
2593         for moma.
2594
2595 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
2596
2597         * ListBox.cs: Implement custom tab offsets.
2598
2599 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2600
2601         * ToolStripContentPanel.cs: Support System renderer.
2602         * ToolStripControlHost.cs: Set RightToLeft to default to No.
2603
2604 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2605
2606         * ScrollableControl.cs: Don't mess up the user's explicit bounds.
2607
2608 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2609
2610         * CheckBox.cs: Chain TextAlign to base implementation instead of
2611         maintaining another one.
2612
2613 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2614
2615         * ButtonBase.cs: Fix an incorrect string constant.
2616
2617 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2618
2619         * TextRenderer.cs: Use the static Graphics context in Hwnd instead
2620         of creating one for measuring strings.
2621
2622 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2623
2624         * ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownMenu.cs: 
2625         Implement MaxItemSize.
2626
2627 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
2628
2629         * Control.cs: Remove per-control 1x1 Bitmap and Graphics context used
2630         for DeviceContext.  Instead, use the static one available in Hwnd.
2631         Informal tests show this saves about 500k on formtest.exe.
2632
2633 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
2634
2635         * ContainerControl.cs: Implement 2.0 AutoScaling.
2636
2637 2007-07-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2638
2639         * ComboBox.cs: Work around bug #82120 (bug in mcs).
2640
2641 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
2642
2643         * ThemeWin32Classic.cs: Allow a Flat button to be Focused and Entered.
2644         Darken the focus color.
2645
2646 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
2647
2648         * ListBox.cs: When measuring items, if it's a CheckedListBox, add room
2649         for the checkbox.
2650         * ThemeWin32Classic.cs: Make the checkbox bigger in a CheckedListBox and use
2651         X, Y instead of a rect for drawing text.
2652         - For ControlPaint.DrawCheckBox, center the check a little better when the
2653         checkbox is odd width.  When drawing a flat checkbox, use a white background
2654         when state != inactive.
2655         [Fixes bugs #82097, 82100]
2656
2657 2007-07-16  Gert Driesen  <drieseng@users.sourceforge.net>
2658
2659         * ListControl.cs: When changing CurrencyManager, disconnect event
2660         handlers from previous one. Fixes bug #81771. Code formatting.
2661
2662 2007-07-15  Andreia Gaita <avidigal@novell.com>
2663
2664         * PrintPreviewControl.cs: Remove extraneous Invalidate calls. Separate
2665         full preview invalidation from layout invalidation, and only invalidate
2666         the layout when setting zoom or other properties. Invalidation should
2667         always be done even when resetting properties with the same values as
2668         what is there. Fixes #81744 and #79830.
2669
2670 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2671
2672         * ListView.cs: Implement initial support for Groups. Split some of the
2673         LayoutIcons code to render a partial list of the items (needed by
2674         items contained in ListViewGroup instances). Let the
2675         ListViewItemsCollection.ListView property be modifiable (needed when
2676         using Groups, too).
2677         * ListViewGroup.cs: Use a Bounds property rather than a Location
2678         one. Also invalidate the bounds when they get changed.
2679         * ThemeWin32Classic.cs: When drawing items, also draw the group header
2680         if ListView.Groups.Count is bigger than 0. Add a DrawListViewGroupHeader
2681         method as well.
2682
2683 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2684
2685         * ListView.cs: When space gets pressed and CheckBoxes is true, 
2686         don't invoke the Begin and EndUpdate methods. We are generating 
2687         a redraw of the entire control without need to do so.
2688
2689 2007-07-13  William Holmes <billholmes54@gmail.com> 
2690
2691         * Control.cs: Changing logic in FindFlatForward and 
2692           FindFlatBackward to handle multiple Controls with 
2693           the same TabIndex.  
2694           This fixes bug 81687.
2695
2696 2007-07-13  Jonathan Pobst  <monkey@jpobst.com>
2697
2698         * OSFeature.cs: Enable IsPresent.
2699
2700 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2701
2702         * Control.cs: Don't do anything in WmShowWindow if the control has been
2703           disposed. We can get WM_SHOWWINDOW after a control is disposed: a
2704           control is created, put on a form, the control is disposed (the
2705           form is never shown), and then we get a MapNotify, triggering a
2706           WM_SHOWWINDOW.
2707         * Form.cs: Exclude the current form when sending Deactivate to all
2708           MdiChildren.
2709         * NativeWindow.cs: Set WindowCreating to null as soon as possible,
2710           there was a race condition because assigning the handle raises
2711           events, we can get more messages, therefore trying to assign the
2712           handle again, which would fail if any of those event handlers
2713           closed/disposed the control.
2714
2715 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2716
2717         * Form.cs: Make the fix for #80775 windows-only (fixes #81957).
2718
2719 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
2720
2721         * SystemInformation.cs, Theme.cs, XplatUI.cs, XplatUIDriver.cs,
2722         XplatUIWin32.cs: Implement SystemInformation 2.0 properties.
2723
2724 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2725
2726         * DateTimePicker.cs: If there's no part format specifier, return an
2727           empty string.
2728
2729 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
2730
2731         * FlatButtonAppearance.cs: Throw NotSupportedException for a
2732         Transparent BorderColor.
2733
2734 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2735
2736         * DataGridView.cs, TextControl.cs, ProgressBar.cs, PrintDialog.cs,
2737           MessageBox.cs, ButtonBase.cs, PageSetupDialog.cs, NumericUpDown.cs,
2738           X11Dnd.cs, Binding.cs, DataGrid.cs, AxHost.cs,
2739           LinkLabelLinkClickedEventArgs.cs, TextRenderer.cs, Label.cs,
2740           LinkLabel.cs, TreeNode.cs, BindingSource.cs, TabPage.cs,
2741           TextBoxBase.cs, BindingNavigator.cs, Application.cs,
2742           ToolStripPanel.cs, TabControl.cs, ThemeClearlooks.cs, TreeView.cs:
2743           Remove warnings.
2744         * X11Structs.cs: Remove warnings, add ToString implementations.
2745
2746 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2747
2748         * XplatUIX11.cs: Translate min/max size according to the actual min/max
2749           size, and not the current size. Fixes #81798.
2750
2751 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2752
2753         * XplatUIX11.cs: Fix #80822 again (DefWndProc can be reached before
2754           XplatUI.CreateWindow returns, in which case the hwnd isn't assigned
2755           to the control yet).
2756
2757 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2758
2759         * PropertyGridTextBox.cs: Add a method that sends any forwarded
2760           mousedowns to the contained textbox.
2761         * X11Structs.cs: More ToString implementation.
2762         * PropertyGridView.cs: Forward any mousedowns to the textbox, fixes
2763           #81791.
2764
2765 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2766
2767         * PropertyGridView.cs: Add a null-check, fixes a few tests.
2768
2769 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
2770
2771         * TableLayoutPanelCellPosition.cs: TypeConverter.
2772
2773 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2774
2775         [ Fixes #79761]
2776         
2777         * PropertyGridTextBox.cs: Propagate any color changes to all contained
2778           controls.
2779         * PropertyGridView.cs: A few color fixes.
2780
2781 2007-07-10  Jackson Harper  <jackson@ximian.com>
2782
2783         * TextControl.cs: Remove some old unused text formatting stuff.
2784
2785 2007-07-10  Jackson Harper  <jackson@ximian.com>
2786
2787         * TreeView.cs: Update full row select invalidation to match the
2788         newer DrawSelection... method.
2789         - Make sure to invalidate the entire width when selecting a new
2790         node, if we have full row selection enabled.
2791
2792 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2793
2794         * PropertyGridView.cs: Fix for #81800, makes text show up on initial
2795           display of properties again.
2796
2797 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
2798
2799         * ListBox.cs: Add IntegerCollection and Add, Clear, Remove
2800         to existing collections.
2801
2802 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2803
2804         * AccessibleObject.cs, RadioButton.cs: Fix some base classes
2805         that changed between 1.1 and 2.0.
2806
2807 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2808
2809         * PowerStatus.cs: Added.  This is just a data class, it is filled
2810         in by SystemInformation.
2811
2812 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2813
2814         * Message.cs: Add op_Equality and op_Inequality.
2815
2816 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2817
2818         * MenuStrip.cs: Finish corcompare work.
2819
2820 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2821
2822         * LinkArea.cs: Add op_Equality and op_Inequality.
2823
2824 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2825
2826         * Application.cs: Add MessageLoopCallback delegate.
2827
2828 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2829
2830         * ListBox.cs: First set of 2.0 stuffs.
2831
2832 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2833
2834         * Control.cs: Make an internal Height property we can override
2835         without messing up the public API.
2836         * ListBox.cs: Override HeightInternal to always return the size
2837         the user set.  [Fixes bug #80466]
2838
2839 2007-07-08  Jonathan Pobst  <monkey@jpobst.com>
2840
2841         * TableLayoutPanel.cs: Add a null check so we don't NRE trying to
2842         paint cell borders if we haven't calculated where they go yet.
2843         [Fixes bugs #82040 and #82041]
2844
2845 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2846
2847         * ListView.cs: In Details view, set the location of item_control
2848         in the (0,0) position (and the header_control is thus on the
2849         item_control). This way the Bounds of the Items are relative to the
2850         ListView control (before this, they had a Bounds value without the
2851         header_control offset, which wasn't matching .Net). Fixes #82004.
2852
2853 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2854
2855         * ListControl.cs: When DataSource is set to null, pass an empty
2856         array of object to SetItemsCore. This is done to clean the items
2857         in the ListContol children. Fixes #81788.
2858
2859 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2860
2861         * ListControl.cs: Add 2.0 stuffs.
2862
2863 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2864
2865         * Label.cs: Finish up 2.0 stuffs.  Replace calls to Refresh with Invalidate,
2866         Refresh is overkill for just about every repaint request.
2867
2868 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2869
2870         * ToolStripItem.cs: TextDirection getter handles looking up Inherit for us,
2871         so remove my custom Get method and fix the property getter.
2872
2873 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2874
2875         * Label.cs: DefaultMargin for 2.0.
2876
2877 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2878
2879         * ComboBox.cs: Override IsInputCharInternal and return true.  Fixes 
2880         reported issue where other controls with mnemonics would steal strokes
2881         from a selected ComboBox.
2882
2883 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2884
2885         * ScrollOrientation.cs: Make internal for 1.1.
2886         * ScrollEventArgs.cs: Add 2.0 stuffs.
2887
2888 2007-07-05  Jonathan Pobst  <monkey@jpobst.com>
2889
2890         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
2891         ToolStripItem.cs, ToolStripItem.cs, ToolStripItemTextRenderEventArgs.cs,
2892         ToolStripRenderer.cs, ToolStripSeparator.cs: Implement TextDirection.
2893
2894 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2895
2896         * ListViewItem.cs: Implement the small 2.0 GetSubItemAt method.
2897
2898 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2899
2900         * ListView.cs: Implement the so-incredibly broken 2.0 
2901         VirtualItemsSelectionRangeChanged event.
2902
2903 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2904
2905         * ListView.cs: When enter is pressed and selection is non empty,
2906         an OnItemActivate event must be fired.
2907
2908 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2909
2910         * ListView.cs: Store the FocusedItem information as an
2911         int instead of a ListViewItem (needed by VirtualMode).
2912         Update the calls to SetFocusedItem to pass an index instead of
2913         an item.
2914         * ListViewItem.cs: Likewise. Also, in VirtualMode retrieve
2915         the Focused state from the owner ListView. 
2916
2917 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2918
2919         * ListView.cs: Set ListView.focused_item from ListViewItem.Focused
2920         property. Also, invalidate previous focused item in the mentioned
2921         property (match .Net).
2922
2923 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2924
2925         * ListView.cs: Implement 2.0 FocusedItem property setter.
2926
2927 2007-07-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2928
2929         * ListView.cs: Implement 2.0 TopItem property setter.
2930
2931 2007-07-03  Jonathan Pobst  <monkey@jpobst.com>
2932
2933         * StatusStrip.cs: The default renderer is System.
2934         * ToolStrip.cs, ToolStripManager: Now that we have System renderer, use it 
2935         if the user specifies it.
2936         * ToolStripDropDown.cs: Don't reset our Renderer on changing OwnerItem
2937         if we are ManagerRenderMode.
2938         * ToolStripMenuItem.cs: Calculate our text color better.
2939         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Move some stuff
2940         from Professional to the base class based off working with the System renderer.
2941         * ToolStripSystemRenderer.cs: Added.
2942
2943 2007-07-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2944
2945         * ListView.cs: I'm so lame - the real name is HitTest, not HitInfo.
2946
2947 2007-07-02  Jonathan Pobst  <monkey@jpobst.com>
2948
2949         * ToolTip.cs: Implement 2.0 Tag property.
2950
2951 2007-06-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2952
2953         * ListView.cs: Implement 2.0 HitTest methods.
2954
2955 2007-06-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2956
2957         * ListViewItem.cs: Add a 2.0 bool Hot property, to tell whether the
2958         item is under the pointer or not (sugar). Also remove the TODO
2959         regarding to the cursor changes in OneClick activation.
2960         * ThemeWin32Classic.cs: When HotTracking is true and we are drawing
2961         the subitems use the parent's HotFont if UseItemStyleForSubItems is
2962         true; otherwise don't show the underline style.
2963
2964 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2965
2966         * ListView.cs: In ItemControl.ItemsMouseMove, refactor
2967         the code to retrieve the item at position only one time. Also
2968         change cursor when Activation is ItemActivation.OneClick as well
2969         as invalidate the item if HotTracking is true (to show/hide the
2970         underline style). Add an internal HotItemIndex property to retrieve
2971         the current hot item's index.
2972         * ListViewItem.cs: Add an internal HotFont property to cache the
2973         font used when HotTracking is true and the pointer moves within the
2974         item's borders.
2975         * ThemeWin32Classic.cs: When drawing the item's text, use Font or
2976         HotFont depending on the hot state of the item.
2977
2978 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2979
2980         * ListView.cs: Implement 2.0 HotTracking property.
2981
2982 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
2983
2984         * ToolStripControlHost.cs: If our hosted control never got created,
2985         don't try to dispose it.  [Fixes bug #81909]
2986
2987 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
2988
2989         * TableLayoutPanel.cs: Implement ScaleCore, ScaleControl.
2990
2991 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
2992
2993         * TableLayoutPanel.cs: Implement CellBorderStyle.  [Fixes bug #81884]
2994
2995 2007-06-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2996
2997         * ThemeWin32Classic.cs: In OwnerDraw mode draw subitems only for 
2998         Details view.
2999         * DrawListViewColumnHeaderEventArgs.cs:
3000         * DrawListViewSubItemEventArgs.cs: Add padding to the bounds when drawing text
3001         using the DrawText () methods.
3002
3003 2007-06-19  Jonathan Pobst  <monkey@jpobst.com>
3004
3005         * ToolStripProfessionalRenderer.cs: Put back clearing a ToolStripDropDown's
3006         background which got erased in my changes yesterday.
3007
3008 2007-06-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3009
3010         * ListViewItem.cs: Actually set bounds for subitems in Details view
3011         (2.0 feature).
3012         * ThemeWin32Classic.cs: Refactor the drawing code for subitems, so we
3013         can invoke from the owner draw routines if we need it. Also, add
3014         support for Owner draw in Details view.
3015
3016 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
3017
3018         * ToolStripDropDownMenu.cs, ToolStripItem.cs, ToolStripLabel.cs,
3019         ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs: Respect the
3020         ShowImageMargin setting, properly align text in a ToolStripLabel
3021         hosted on a ToolStripDropDown.
3022
3023 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
3024
3025         * ToolStrip.cs, ToolStripContentPanel.cs, ToolStripDropDownMenu.cs,
3026         ToolStripProfessionalRenderer.cs: Refactor and clean up some rendering code.
3027
3028 2007-06-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3029
3030         * DrawListViewSubItemEventArgs.cs: Actually implement its methods.
3031
3032 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
3033
3034         * ToolStripLabel.cs: If the label is on a dropdown, adjust the text
3035         location to match ToolStripMenuItems.
3036
3037 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3038
3039         * DrawListViewColumnHeaderEventArgs.cs:
3040         * ThemeWin32Classic.cs: Implement 2.0 OwnerDraw support for
3041         column headers in ListView. 
3042
3043 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
3044
3045         * UserControl.cs: Implement AutoSize.
3046
3047 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3048
3049         * DrawListViewItemEventArgs.cs:
3050         * ListView.cs:
3051         * ThemeWin32Classic.cs: Implement basic support for 2.0 OwnerDraw in
3052         ListView.
3053
3054 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
3055
3056         * ToolStripDropDownItemAccessibleObject.cs: Added.
3057         * ToolStripDropDownItem.cs, ToolStripItem.cs, ToolStripMenuItem.cs,
3058         ToolStripOverflow.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
3059         ToolStripProgressBar.cs, ToolStripSeparator.cs, ToolStripSplitButton.cs,
3060         ToolStripTextBox.cs: corcompare work.
3061
3062 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
3063
3064         * OSFeature.cs, StatusStrip.cs, TabControl.cs, TableLayoutSettings.cs,
3065         TableLayoutStyle.cs, TableLayoutCollection.cs, ToolStripContentPanel.cs,
3066         ToolStripControlHost.cs, ToolStripDropDown.cs, ToolStripDropDownButton.cs:
3067                 corcompare.
3068
3069 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
3070
3071         * OSFeature.cs: Add IsPresent.
3072         * PrintPreviewControl.cs: Add RightToLeft.
3073         * SplitContainer.cs: Add AutoScrollOffset, ScaleControl.
3074         * SplitterPanel.cs: Add AutoSizeMode.
3075
3076 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3077
3078         * LayoutEventArgs.cs: Add 2.0 AffectedComponent.
3079         * MdiClient.cs: Add 2.0 ScaleControl.
3080         * NativeWindow.cs: Implement 2.0 interface IWin32Window.
3081         * NumericUpDownAccelerationCollection.cs: Add [ListBinding].
3082
3083 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3084
3085         * Form.cs: Implement some scaling methods, stub some RTL methods,
3086         corcompare work.
3087
3088 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3089
3090         * Control.cs: corcompare work.
3091         * FlatButtonAppearance.cs, FolderBrowserDialog.cs: Add TypeConverters.
3092
3093 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3094
3095         * ControlPaint.cs, Theme.cs, ThemeWin32Classic.cs: Implement
3096         ControlPaint 2.0 stuffs.
3097
3098 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3099
3100         * ThreadExceptionDialog.cs: Add 2.0 stuffs.
3101
3102 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3103
3104         * UpDownBase.cs: Add 2.0 stuffs.
3105
3106 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3107
3108         * NumericUpDown.cs: Add 2.0 stuffs.
3109
3110 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3111
3112         * NotfiyIcon.cs: Add MouseDoubleClick event, hook up MouseClick event.
3113
3114 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3115
3116         * ErrorProvider.cs: Implement 2.0 stuffs.
3117
3118 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3119
3120         * DomainUpDown.cs: Implement 2.0 stuffs.
3121
3122 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3123
3124         * CheckedListBox.cs: Fix RefreshItems signature.
3125
3126 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3127
3128         * PictureBox.cs: Implement 2.0 stuffs.
3129
3130 2007-06-12  Andreia Gaita  <avidigal@novell.com>
3131         
3132         * TabControl.cs: Check if there are tabpages before checking
3133         the selected index - fix #81802 (font changes raise a ResizeTabs
3134         call on controls.add, which blew up nicely with no tabpages)
3135
3136 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3137
3138         * ListView.cs:
3139         * ListViewItem.cs: Implement 2.0 ItemSelectionChanged event.
3140
3141 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3142
3143         * ListView.cs:
3144         * ListViewItem.cs: In VirtualMode the selection information
3145         resides in the ListView, rather than in the Items. Also, throw
3146         InvalidOperationExceptions when VirtualMode is being used and
3147         CheckedItemCollection is accessed.
3148
3149 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3150
3151         * ComboBox.cs: Add ScaleControl.
3152
3153 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3154
3155         * ButtonBase.cs: ButtonBaseAccessibleObject.State should not be visible to 1.1.
3156
3157 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3158
3159         * GroupBox.cs: Add 2.0 stuffs.
3160
3161 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3162
3163         * Panel.cs: Add autosize properties/event.
3164
3165 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
3166
3167         * Control.cs:
3168         - When we remove a control, remove it from the collection before performing the layout.
3169         - Setup an internal property for explicit_bounds.
3170         - Don't let the UpdateBounds in CreateHandle overwrite our explicit bounds.
3171         - Perform a layout when we set a new AutoSizeMode.
3172
3173 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
3174
3175         * ScrollableControl.cs: Add 2.0 stuffs.
3176
3177 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3178
3179         * ScrollBar.cs: Add 2.0 stuffs.
3180
3181 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3182
3183         * Splitter.cs: Add 2.0 stuffs.
3184
3185 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3186
3187         * SplitContainer.cs: Apply patch from Neil Cawse <neilcawse@geotab.com>
3188         to have BindingContext simply use base implementation.
3189
3190 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3191
3192         * ColumnHeader.cs: corcompare fix.
3193
3194 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3195
3196         * Button.cs: corcompare fixes.
3197         * ButtonBase.cs: corcompare fixes, add ButtonBaseAccessibleObject.State.
3198
3199 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3200
3201         * Button.cs: Override GetPreferredSizeCore.
3202         * ButtonBase.cs: PerformLayout after changing properties that can affect
3203         AutoSize.  Simplify some mouse/keyboard code.
3204         * Control.cs: PerformLayout after changing Padding if AutoSize = true.
3205         * MouseEventArgs.cs: Make Location internal for 1.1.
3206         * TextRenderer.cs: Make MeasureTextInternal (string, Font, bool) internal for 1.1.
3207         * Theme.cs: Add CalculateButtonAutoSize.
3208         * ThemeWin32Classic.cs: Implement CalculateButtonAutoSize.
3209
3210 2007-06-05  Miguel de Icaza  <miguel@novell.com>
3211
3212         * TreeNodeCollection.cs: Applied patch from Neil Cawse <neilcawse@geotab.com>
3213
3214 2007-06-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3215
3216         * ListViewItem.cs: We can't cache Bounds in VirtualMode 
3217         since we can get different item instances every time we retrieve it.
3218
3219 2007-06-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3220
3221         * ListView.cs: Work around for #81602, since an unkown an pretty
3222         infrequent condition appears only in some systems (old linux boxes, it
3223         seems).
3224
3225 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3226
3227         * Button.cs: Completely reformat and a little refactor to bring
3228         this closer to Mono circa 2007.
3229
3230 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3231
3232         * CheckBox.cs, Form.cs, RadioButton.cs: Change call to ButtonBase.Redraw
3233         to be ButtonBase.Invalidate.
3234
3235 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3236
3237         * ButtonBase.cs: GetPreferredSize is 2.0 only.  Fixes build.
3238
3239 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3240
3241         * ButtonBase.cs: Completely reformat and a little refactor to bring
3242         this closer to Mono circa 2007.
3243
3244 2007-06-01  Everaldo Canuto  <ecanuto@novell.com>
3245
3246         * Label.cs: Fixes preferred sizes for 2.0 profile, also adjust some
3247         values for autosize. Fixes #80137.
3248
3249 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
3250
3251         * Control.cs: Don't perform layout when AutoSize changes.
3252         * Form.cs: Perform layout in AutoSize override.  Don't set ClientSize
3253         directly when autosizing, use SetBounds with BoundsSpecified.None.
3254         Fixes unit tests my last commit broke.
3255
3256 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
3257
3258         * Control.cs: Perform layout when AutoSize changes.
3259         * Form.cs: Implement AutoSizing.
3260
3261 2007-06-01  Chris Toshok  <toshok@ximian.com>
3262
3263         * DataGrid.cs: remove the XXX'ed check at the top of
3264         ProcessGridKey.  fixes #80464.
3265
3266 2007-06-01  Chris Toshok  <toshok@ximian.com>
3267
3268         * DataGridTextBoxColumn.cs: TextBox.TextChanged event handler
3269         adding idempotent (add/remove in Edit()), and also make sure we
3270         don't add it until after we set the text, so it's not tripped in
3271         Edit().  Fixes unit test regression.
3272
3273 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
3274
3275         * Control.cs: In UpdateBounds, only recalculate anchor distances if the
3276         change is user explicit, not when the layout engine moves stuff.  Fixes
3277         anchoring to bottom and right.  [Fixes bug #81790]
3278
3279 2007-06-01  Andreia Gaita  <avidigal@novell.com>
3280
3281         * PrintDialog.cs: Add collation preview thumbnails. Fixes #80726.
3282
3283 2007-06-01  Andreia Gaita  <avidigal@novell.com>
3284
3285         * ContainerControl.cs: 
3286         Fire enter event for common ancestor if it is not a ContainerControl.
3287         Send focus to the active_control and not the 'value', the active 
3288         control might have been changed in one of the events fired.     
3289         Definitely fixes #80159.
3290
3291 2007-06-01  Andreia Gaita  <avidigal@novell.com>
3292
3293         * DataGrid.cs: Finish editing when focus leave the datagrid. Fixes #80159.
3294
3295 2007-06-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3296
3297         * PropertyGrid.cs: Anchor the help description to the bottom of the
3298           help panel and refactor SelectGridItem into a
3299           SelectGridItemInternal that can be set to null (and update it to
3300           clear the help texts when it is set to null). Set root item to null
3301           when there's no SelectedObject. Fixes #80438.
3302         * ScrollableControl.cs: In Recalculate we need to ResumeLayout(true)
3303           when we're recalculating after a resize (only).
3304
3305 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3306
3307         * ListView.cs: Implement 2.0 RedrawItems method.
3308
3309 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3310
3311         * ListControl.cs: Disconnect PositionChanged and ItemChanged
3312         handlers from previous data manager when DataSource is set to
3313         null. Fixes #81771.
3314
3315 2007-05-31  Jackson Harper  <jackson@ximian.com>
3316
3317         * TextBoxBase.cs: These seem to be the correct values.
3318
3319 2007-05-31  Everaldo Canuto  <ecanuto@novell.com>
3320
3321         * FileDialog.cs: When close dialog with ok set filterindex using combobox
3322         value. Fixes #81784.
3323
3324 2007-05-31  Jonathan Pobst  <monkey@jpobst.com>
3325
3326         * Control.cs: Implement 2.0 scaling methods.
3327
3328 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3329
3330         * ProgressBar.cs, WebBrowserBase.cs, Control.cs, MaskedTextBox.cs,
3331           MessageBox.cs, PropertyGrid.cs, RichTextBox.cs: Fix warnings and
3332           corcompare issues.
3333
3334 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3335
3336         * ProgressBar.cs: Implemented missing 2.0 members.
3337
3338 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3339
3340         * Control.cs: Corcompare issues.
3341         * MessageBox.cs: Implemented missing 2.0 functions.
3342
3343 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3344
3345         * CheckedListBox.cs, ListBox.cs, ListControl.cs, ComboBox.cs:
3346           Implemented more 2.0 members.
3347
3348 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3349
3350         * Application.cs: Try to avoid NRE when Assembly.GetEntryAssembly is
3351           null (strange, but it seems to happen when running unit tests).
3352
3353 2007-05-30  Andreia Gaita  <avidigal@novell.com>
3354
3355         * ContainerControl.cs: Set active_control even earlier, before 
3356         firing any events, and undo it if validation returns false.
3357
3358 2007-05-30  Andreia Gaita  <avidigal@novell.com>
3359
3360         * ContainerControl.cs: Raise Validation and Enter/Leave events
3361         even if there is no Form and set active_control earlier, just
3362         before firing Enter events (toshok's patches). Fixes #80647.
3363
3364 2007-05-30  Jackson Harper  <jackson@ximian.com>
3365
3366         * TextControl.cs: Redid the pageup/pagedown a little to simplify
3367         things and fix bug #81311.
3368
3369 2007-05-30  Jackson Harper  <jackson@ximian.com>
3370
3371         * X11Dnd.cs: Now that we have our own event loop, we need to
3372         cancel when we get a mouseup but it won't be accepted.
3373
3374 2007-05-30  Chris Toshok  <toshok@ximian.com>
3375
3376         * DataGrid.cs (set_CurrentCell): guard against negative
3377         column/row.
3378
3379         * DataGridColumnStyle.cs (CheckValidDataSource): just use the
3380         array index syntax instead of looping over the property names.
3381
3382         * DataGridTextBoxColumn.cs: add a changed handler on the textbox,
3383         and set IsInEditOrNavigateMode to false there.
3384
3385 2007-05-30  Jackson Harper  <jackson@ximian.com>
3386
3387         * TreeView.cs: Make sure we don't get a bad visible order when
3388         setting to the top node.  Fixes some misc crashing in
3389         ControlInspector.
3390
3391 2007-05-30  Andreia Gaita  <avidigal@novell.com>
3392
3393         * UserControl.cs: Add 2.0 AutoSizeMode
3394
3395 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3396
3397         * DataGridTextBoxColumn.cs: Fix textbox horizontal offset.
3398
3399 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3400
3401         * DataGridTextBoxColumn.cs: Fix textbox position to prevent override grid
3402         lines. Fixes #80285. 
3403
3404 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3405
3406         * DataGridColumnStyle.cs: Add char trimming column header text format. 
3407
3408 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3409
3410         * DataGridColumnStyle.cs: Fix grid header arrow drawing over column name. 
3411         Fixes #80147.
3412
3413 2007-05-29  Jackson Harper  <jackson@ximian.com>
3414
3415         * TreeNode.cs: Fix off by one on calculating whether or not a node
3416         is visible.
3417
3418 2007-05-29  Jonathan Pobst  <monkey@jpobst.com>
3419
3420         * Control.cs: ResumeLayout(false) should recalculate anchor distances.
3421         * ScrollableControl.cs: Force an UpdateDistances when we move the
3422         scrollbars.
3423         [Fixes bug #80605]
3424
3425 2007-05-29  Andreia Gaita  <avidigal@novell.com>
3426
3427         * PageSetupDialog.cs: Fix #80728 - Changing the printer doesn't
3428         update the page setup screen.
3429
3430 2007-05-29  Andreia Gaita  <avidigal@novell.com>
3431
3432         * PageSetupDialog.cs: Fix landscape mode.
3433
3434 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3435
3436         * SystemInformation.cs: Add 2.0 IconSizeVerticalSpacing and
3437         IconSizeHorizontalSpacing.
3438
3439 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3440
3441         * ListView.cs: The declaration of prev_tooltip_item should be inside
3442         a NET_2_0 conditional (avoid a warning).
3443
3444 2007-05-28  Andreia Gaita  <avidigal@novell.com>
3445
3446         * PageSetupDialog.cs: Implement PrintPreview control to display
3447         the preview thumbnail. Change unit conversion to use 
3448         PrinterUnitConvert methods.
3449         
3450         Note: there is a huge bug in ms.net where the default margins are 
3451         interpreted as centimeters (?), when in fact they are set in inches. When 
3452         loading the page setup dialog initially (ms.net), the default margins 
3453         are set to 1 inch, and the dialog shows them with value 10, when in fact 
3454         it should be 25 (properly converted). Our dialog doesn't have this bug.
3455         
3456         * Theme.cs, ThemeWin32Classic.cs: Add a CPDrawBorder override for 
3457         RectangleF.
3458         * ControlPaint.cs: Add a DrawBorder internal method for RectangleF.
3459
3460 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3461
3462         * ListView.cs:
3463         * ListViewItem.cs: Implement 2.0 ToolTipText support for listview
3464         items.
3465
3466 2007-05-28  Andreia Gaita  <avidigal@novell.com>
3467
3468         * X11Dnd.cs: A direct cast to VirtualKeys is not allowed from
3469         an IntPtr on csc (it builds fine on mcs, could it be a compiler
3470         bug?), convert the ptr to Int32 first.
3471
3472 2007-05-28  Jackson Harper  <jackson@ximian.com>
3473
3474         * X11Dnd.cs: Add a timer, so after drop, if a finish is not
3475         recieved, we will exit the dnd tracking loop.
3476
3477 2007-05-28  Jackson Harper  <jackson@ximian.com>
3478
3479         * X11Dnd.cs: Keep tracking until the xdnd finished event is
3480         recieved. TODO: I should probably stick a timer on the dropped
3481         event, and finish the drag if the XDND Finished event never shows
3482         (because some apps don't seem to send it).
3483
3484 2007-05-28  Everaldo Canuto  <ecanuto@novell.com>
3485
3486         * ToolBar.cs: Fix toolbar default width for button with image. Fixes
3487         #81733.
3488
3489 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3490
3491         * MonthCalendar.cs: Only mark the keypresses we actually handle as
3492           handled.
3493
3494 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3495
3496         * MonthCalendar.cs: Set the size after initializing all the relevant
3497           variables. Fixes #81742.
3498
3499 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3500
3501         * KeyEventArgs.cs: Fix typo.
3502
3503 2007-05-28  Gert Driesen  <drieseng@users.sourceforge.net>
3504
3505         * DateTimePicker.cs: Changed exceptions thrown by MinDate and MaxDate
3506         to match MS. Fixed MinDate to only accept value less than or equal
3507         to MaxDate on 2.0 profile and less than MaxDate on 1.0 profile.
3508         Removed TODO's that are now verified by unit tests.
3509
3510 2007-05-27  Gert Driesen  <drieseng@users.sourceforge.net>
3511
3512         * TreeNodeCollection.cs: Minor corrections to exceptions to match
3513         MS.
3514
3515 2007-05-25  Jackson Harper  <jackson@ximian.com>
3516
3517         * X11Dnd.cs: Rework to make StartDrag a blocking call that runs
3518         it's own message loop.
3519         * XplatUIX11.cs: Remove some of the dnd hooks
3520
3521 2007-05-25  Gert Driesen  <drieseng@users.sourceforge.net>
3522
3523         * XplatUIX11.cs: Change MinimumWindowSize to {Width=0,Height=0}
3524         instead of MinimizedWindowSize.
3525
3526 2007-05-25  Jackson Harper  <jackson@ximian.com>
3527
3528         * TextBoxBase.cs: Raise textchanged when cutting and pasting text.
3529
3530 2007-05-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3531
3532         * KeyEventArgs.cs: Added SuppressKeyPress.
3533         * Control.cs: Added support for SuppressKeyPress.
3534
3535 2007-05-24  Andreia Gaita  <avidigal@novell.com>
3536
3537         * NumericUpDown.cs: Refactor code to fix regressions on #79950 and
3538         problems with PieChart. suppress_validation should not be a counter,
3539         if there are several BeginInit calls, the first EndInit will 
3540         activate validation. Fix exceptions thrown by set_Value.
3541         * UpDownBase.cs: ValidateText only if it's the user editing it.
3542
3543 2007-05-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3544
3545         * ListControl.cs: FilterItemOnProperty should return the filtered
3546         item proeprty even if DataSource is null. The same applies for
3547         GetItemText. Fixes #80427.
3548
3549 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
3550
3551         * Control.cs: If a control doesn't have a parent when it's Dock is
3552         set, but it has children, it needs to do a layout.  Fixes some nested
3553         controls issues.  [Fixes bug #81199]
3554
3555 2007-05-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3556
3557         * ComboBox.cs: If there are few items in the drop down list, make it
3558           the exact size the items need, no bigger. Fixes #81612.
3559
3560 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
3561
3562         * Application.cs: When we have captured the keyboard for a menu,
3563         check for mouse down events in case we need to close the menu.
3564         * Control.cs, Form.cs: Remove mouse down checks for menus.
3565
3566 2007-05-24  Jackson Harper  <jackson@ximian.com>
3567
3568         * TextControl.cs: Handle tabs in non multiline mode a little
3569         differently.
3570
3571 2007-05-24  Jackson Harper  <jackson@ximian.com>
3572
3573         * TextControl.cs: We need to manually break apart tabbed text and
3574         move the tabs, since the system.drawing tabbing mechanism relies
3575         on tab stops.
3576         * TextBoxBase.cs: Move the caret properly when the user enters a
3577         tab.
3578
3579 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
3580
3581         * ContainerControl.cs: Don't check CanSelect before calling
3582         ProcessMnemonic.
3583         * ToolStrip.cs: Only do implicit mnemonics on MenuStrips.  Don't
3584         release a KeyboardActive on click if it's not ours.
3585
3586 2007-05-23  Andreia Gaita  <avidigal@novell.com>
3587
3588         * ColumnHeader.cs: Add TypeConverter
3589
3590 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3591
3592         * LinkLabel.cs: Implement LinkCollection.Add with Link parameter (2.0).
3593
3594 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3595
3596         * LinkLabelLinkClickedEventArgs.cs, LinkLabel.cs: Implement Button property.
3597
3598 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3599
3600         * LinkLabel.cs: Implement public Padding property.
3601
3602 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3603
3604         * LinkLabel.cs: Implement public FlatStyle.
3605
3606 2007-05-23  Jonathan Pobst  <monkey@jpobst.com>
3607
3608         * Control.cs: Apply patch from George to call parent.PerformLayout
3609         when Visible is changed.  [Fixes bugs #81118, 81718]
3610
3611 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3612
3613         * MainMenu.cs, MenuAPI.cs: Implement Collapse event for MainMenu (2.0).
3614
3615 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3616
3617         * ContextMenu.cs: Implement ProcessCmdKey with control parameter.
3618
3619 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3620
3621         * ContextMenu.cs: Implement Collapse.
3622
3623 2007-05-23  Rolf Bjarne Kvinge <RKvinge@novell.com>
3624
3625         * ToolBarButton.cs: Implement Name.
3626
3627 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
3628
3629         * ToolBar.cs: Fix OnButtonDropDown to save item used in dropdown instead of
3630         use current_item, it prevents some NRE. Fixes #81675.  
3631
3632 2007-05-22  Andreia Gaita  <avidigal@novell.com>
3633
3634         * NumericUpDown.cs: Fix PieChart by not returning from UpdateEditText
3635         without updating the text.
3636
3637 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
3638
3639         * XplatUIWin32.cs: Plug a GDI leak caused by calling Font.ToHfont ()
3640         without calling DeleteObject.  [Should fix bug #81709]
3641
3642 2007-05-22  Jackson Harper  <jackson@ximian.com>
3643
3644         * RichTextBox.cs: Set the line endings correctly, when flushing
3645         RTF text.
3646
3647 2007-05-22  Gert Driesen  <drieseng@users.sourceforge.net>
3648
3649         * XplatUIX11.cs: MinimumWindowSize on X11 is actually
3650          {Width=0,Height=0}.
3651
3652 2007-05-22  Jackson Harper  <jackson@ximian.com>
3653
3654         * TreeView.cs: Setting top with a null node should set to the very
3655         top.
3656
3657 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3658
3659         * Form.cs: ShowDialog: destroy the handle when message loop is
3660           finished, matches MS behaviour. Refactor parts of WmClose into
3661           RaiseCloseEvents, that only raises events if they haven't already
3662           been raised. Fixes #81688 and #81521.
3663         * Application.cs: Don't call close on the form when exiting a modal
3664           loop, it will raise all the (Form)Closed/Closing events again if
3665           WM_CLOSE has been sent earlier on, instead call RaiseCloseEvent,
3666           which doesn'r raise any events it they have been raised before.
3667
3668 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
3669
3670         * Control.cs: Add OnPrint.
3671         * ToolStrip.cs: Add GetChildAtPoint.
3672         * ToolStripContainer.cs: Add OnRightToLeftChanged.
3673         * ToolStripRenderer.cs: Make CreateMirrorImage internal.
3674
3675 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
3676
3677         * MenuAPI.cs: Prevent context menu to be typed as MainMenu. Fixes #81509.  
3678
3679 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3680
3681         * InternalWindowManager.cs: ToolTipShow: Don't show tooltip if the form
3682           isn't visible anymore. Fixes #81651.
3683
3684 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3685
3686         * Control.cs: WmShowWindow: Update children's z-order after setting
3687           their parent. SetParent may show the window, thereby corrupting
3688           z-order, since the window will be shown on top.
3689         * XplatUIWin32.cs: SetParent: don't call SetVisible on forms. Prevents
3690           multiple (and redundant) WM_SHOWWINDOW messages.
3691         * MdiWindowManager.cs: RaiseDeactivate: only raise after an Activate
3692           event has already been raised.
3693         * Form.cs: Change is_changing_visible_state to a counter, since
3694           SetVisibleCore can be called recursively. CreateHandle: when
3695           creating mdi children, send (De)Activated events.
3696         * MdiClient.cs: Update use of is_changing_visible_state.
3697         * Application.cs: OnThreadException: Surround exception handling with
3698           try/finally to ensure we always reset the error-handling state
3699           before leaving.
3700
3701 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3702
3703         * ThemeWin32Classic.cs: DrawProgressBar: Avoid a DivideByZero exception
3704           (#81704).
3705
3706 2007-05-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3707
3708         * ListView.cs: Use Theme.ListViewHorizontalSpacing for List and
3709         SmallIcon views, now that we have a standarized horizontal spacing.
3710
3711         * ThemeWin32Classic.cs: ListViewHorizontalSpacing now has a value of
3712         4, just like the other views (Match .Net).
3713
3714 2007-05-21  Jonathan Pobst  <monkey@jpobst.com>
3715
3716         * Control.cs: Delay calculating anchor distances until we actually layout.
3717         Always query the WM for the actual size and location it put us at instead of
3718         only when we send negative values.
3719         [Fixes bugs #81694, 81695]
3720
3721 2007-05-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3722
3723         * Application.cs: Avoid a possible stack overflow when trying to exit
3724           the application.
3725
3726 2007-05-19  Marek Safar  <marek.safar@gmail.com>
3727
3728         * Theme.cs (GetHatchBrush): A key uses internal value instead of formated
3729         enum value.
3730
3731 2007-05-19  Andreia Gaita  <avidigal@novell.com>
3732
3733         * NumericUpDown.cs: Added 2.0 methods (spin acceleration)
3734         * NumericUpDownAcceleration.cs, 
3735           NumericUpDownAccelerationCollection.cs: Added 2.0
3736           implementation.
3737
3738 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
3739
3740         * RichTextBox.cs: Recalculate the document after the ScrollBars
3741         property is changed. Fixes bug #81681.
3742
3743 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
3744
3745         * DataObject.cs: Implement 2.0 methods.
3746
3747 2007-05-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3748
3749         * ThemeWin32Classic.cs: Draw the check marks in ListViewItems
3750         in the center of the checkbox, not in the left-top corner. 
3751         Fixes #80037.
3752
3753 2007-05-18  Jackson Harper  <jackson@ximian.com>
3754
3755         * RichTextBox.cs: Recalculate the document after the scrollbars
3756         property is changed.
3757         * TextBoxBase.cs: ScrollBars is not a flags enum...This fixes
3758         81486.
3759
3760 2007-05-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3761
3762         * CreateParams.cs: Make HasWindowManager marginally faster.
3763         * XplatUIX11.cs, Hwnd.cs: CreateWindow: Move the default location code
3764           into Hwnd so that other drivers can use it as well.
3765         * XplatUIWin32.cs: CreateWindow: If the window has a window manager get
3766           the default location from Hwnd. Fixes MDI client windows always
3767           showing up at (0,0) in Windows (Win32 won't set the default
3768           location since the window styles aren't correct).
3769
3770 2007-05-18  Gert Driesen  <drieseng@users.sourceforge.net>
3771
3772         * TreeView.cs: Modified DoubleBuffered to just use the base
3773         implementation.
3774
3775 2007-05-18  Jackson Harper  <jackson@ximian.com>
3776
3777         * TreeView.cs: Set the top node to the last child node when
3778         expanding all
3779         - When we get focus, if there is no selected node, use the top
3780         node.
3781
3782 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
3783
3784         * KeysConverter.cs: Add CanConvertTo.
3785         * LinkLabel.cs: Add some 2.0 constructors and properties to LinkLabel.Link.
3786         * LinkConverter.cs: Added.
3787
3788 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3789
3790         * Cursor.cs: Apply Sebastien patch from #81669 to open file in read mode,
3791         it prevents error when file dont have write access. Fixes #81669 and #81667.  
3792
3793 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3794
3795         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw toolbar 
3796         button text. Fixes #79640.  
3797
3798 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3799
3800         * Control.cs: According to MSDN controls created in the designer theres 
3801         keyboard accelerators visible by default. So included check for design
3802         in ShowKeyboardCuesInternal.  
3803
3804 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3805
3806         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw combobox 
3807         text. Fixes #81621.  
3808
3809 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3810
3811         * Control.cs: ShowKeyboardCuesInternal add to expose ShowKeyboardCues
3812         for 1.0, becuse ShowKeyboardCues is protected on 1.0.  
3813
3814 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
3815
3816         * Control.cs: Finish implementation of UI State using WmChangeUIState
3817         to send WM_UPDATEUISTATE to all child controls. Some hack will be needed
3818         in some controls to check for show_keyboard_cues to draw accell keys "_".  
3819
3820 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3821
3822         * ListBox.cs: When calculating the horizontal scrollbar
3823         in single column mode, don't use values less than 0 for
3824         Maximum. Fixes #81474.
3825
3826 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3827
3828         * ListBox.cs: Throw the some missing exceptions in
3829         ListBox.ObjectCollection methods.
3830
3831 2007-05-17  Jackson Harper  <jackson@ximian.com>
3832
3833         * TextBoxBase.cs: Recalculate the document when the word wrap
3834         value has changed. This fixes 81488.
3835
3836 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
3837
3838         * Clipboard.cs: Implement missing GetText overload.
3839
3840 2007-05-17  Chris Toshok  <toshok@ximian.com>
3841
3842         * Control.cs (CheckDataBindings): remove the binding_context arg
3843         to binding.Check.
3844
3845         * CurrencyManager.cs (OnItemChanged): fix this now that
3846         BindingManagerBase is fixed. also remove the comment telling where
3847         the fix should go.  We set transfering_data to true/false around
3848         the call to PushData to keep UpdateIsBinding from being called.
3849         (ListChangedHandler): remove the extra OnMetaDataChanged call for
3850         PropertyDescriptorAdded in the 1.1 case.  The extra call is
3851         actually generated by System.Data generating 2 metadata changed
3852         events of its own per column add.  The fix should go there.  Add a
3853         comment to that affect in our test's Assert.Ignore.
3854
3855         * BindingManagerBase.cs: Rework PullData and PushData slightly.
3856         we keep a boolean flag (transfering_data) that keeps us from
3857         calling UpdateIsBinding multiple times if we re-enter either of
3858         them.
3859
3860         * ControlBindingsCollection.cs (AddCore): remove the
3861         binding_context arg to binding.Check.
3862
3863         * Binding.cs (IsBinding): don't check if we're binding here, just
3864         return our cached value.  we update it in UpdateIsBinding.
3865         (Check): don't take the binding_context arg, we'll just use our
3866         control's.  Also, for some reason MS doesn't use the data member
3867         field when getting the bindingmanager for this binding.  it just
3868         uses the datasource.  Make this method callable multiple times,
3869         and only do the is_null_desc stuff if manager.Position != -1 (so
3870         we don't get an exception accessing manager.Current).
3871         (UpdateIsBinding): move the code from IsBinding here.
3872         (PositionChangedHandler): call Check here to we can initialize
3873         things that require a non- -1 position.
3874
3875 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
3876
3877         * Form.cs: When alt keys is pressed send WM_CHANGEUISTATE to top level
3878         control.
3879
3880 2007-05-17  Andreia Gaita  <avidigal@novell.com>
3881
3882         * TabControl.cs: Add 2.0 methods and events, including
3883         OnEnter / OnLeave and raises it for tabpages (fixes #79869)
3884         * TabPage.cs: Add 2.0 methods
3885
3886 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
3887
3888         * Control.cs: Implement WmUpdateUIState, show_focus_cues and
3889         keyboard_cues is properly handled by message method.  
3890
3891 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
3892
3893         * TreeViewImageIndexConverter.cs: Add 2.0 methods.
3894
3895 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
3896
3897         * ToolStripTextBox.cs: Wire up new 2.0 Textbox methods/properties.
3898
3899 2007-05-16  Everaldo Canuto  <ecanuto@novell.com>
3900
3901         * Control.cs: 
3902         - WmUpdateUIState added to handle state changes, it make call to
3903         OnChangeUICues event.
3904         - Fixed ShowKeyboardCues to check for MenuAccessKeysUnderlined in
3905         SystemInformation.
3906
3907 2007-05-16  Jonathan Pobst  <monkey@jpobst.com>
3908
3909         * ImageKeyConverter.cs: Added.
3910         * TreeViewImageKeyConverter.cs: Added.
3911
3912 2007-05-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3913         
3914         * ToolTips.cs: Update Text if SetToolTip is called for a control
3915         already showing the tooltip, as well as restarting its timer; show
3916         tooltip if we are inside the control bounds by the time of calling
3917         SetToolTip. Inside ShowTooltip remove the check to not show the 
3918         tooltip again for the active control (it is allowed by .Net to 
3919         show the tooltip on the same control multiple times).
3920
3921 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3922
3923         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
3924
3925 2007-05-16  Andreia Gaita <avidigal@novell.com> 
3926
3927         * ContainerControl.cs: only process tab key if there are no 
3928         modifier keys present, otherwise the control does the 
3929         tab processing, if it needs to. Fixes #81622
3930         * TabControl.cs: Fixes calculation for which tab to select on
3931         shift+ctrl+tab.
3932
3933 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3934
3935         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
3936
3937 2007-05-15  Jonathan Pobst  <monkey@jpobst.com>
3938
3939         * Control.cs: Make IsInputCharInternal to allow controls to
3940         override it and still match MS API.
3941         * TextBoxBase.cs: Override IsInputCharInternal and always
3942         return true.
3943         [Fixes bug #81616]
3944
3945 2007-05-15  Jackson Harper  <jackson@ximian.com>
3946
3947         * TextBox.cs: Disable some of the menu options when using a
3948         readonly textbox.
3949
3950 2007-05-15  Jackson Harper  <jackson@ximian.com>
3951
3952         * TextBox.cs:
3953         * TextBoxBase.cs:
3954         * RichTextBox.cs: Some new 2.0 methods
3955
3956 2007-05-15  Gert Driesen  <drieseng@users.sourceforge.net>
3957
3958         * FileDialog.cs: On 1.0 profile, do not support multidotted 
3959         extensions.
3960
3961 2007-05-14  Jackson Harper  <jackson@ximian.com>
3962
3963         * TextBoxBase.cs: Implement some of the new 2.0 methods.
3964         * RichTextBox.cs: We need to override these methods on 2.0.
3965         * MaskedTextBox.cs: These are implemented now
3966         * TextControl.cs: This was off by one.
3967
3968 2007-05-14  Jackson Harper  <jackson@ximian.com>
3969
3970         * TextControl.cs: Because the line endings are including in the
3971         text, we don't need to add them in anymore.
3972
3973 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3974
3975         * ToolBar.cs: Fix autosize and get it working only after hadle is created,
3976         also prevent redraw in set_autosize if handle is not created. Fixes #81523.
3977
3978 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3979
3980         * ToolBar.cs: Adjust size to default size when button theres no text and
3981         image, it fixes remaining issues from #81524.
3982
3983 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3984
3985         * ToolBar.cs: 
3986         - When not flat call redraw to recalculate sizes on creare handle to match
3987         win32 behavior.
3988         - Revert 77220 because it causes some regressions in toobar
3989         button.
3990
3991 2007-05-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3992
3993         * MaskedTextBox.cs: Update the base text whenever the text changes. MTB
3994           now actually enters a usable state.
3995
3996 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3997
3998         * ToolBar.cs: Check for handle created in redraw to prevent unneeded size
3999         calculations, it reduces the size cauculation from 7 to 3 on a toolbar with
4000         3 buttons.
4001
4002 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4003
4004         * ToolBar.cs: Save default_size on create handle to use later for buttons
4005         without text, needed to mimic win32 behavior.
4006
4007 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4008
4009         * ToolBar.cs: Fix button layour to best fit width or height according to
4010         vertical or not. Fixes #81524.
4011
4012 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
4013
4014         * ToolBarButton.cs: When change style call ToolBar.Redraw to update
4015         toolbar size info because different styles theres different sizes.
4016         Fixes #81522.
4017
4018 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4019
4020         * ThemeWinClassic.cs: For .Net 2.0 don't draw any image
4021         if we are using checkboxes, checked is true, and we have less
4022         than two images in StateImageList; for the 1.1 in the same scenario
4023         draw the first image if we have at least one image in StateImageList.
4024         Fixes part of #81191.
4025
4026 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
4027
4028         * ToolStrip.cs, ToolStripManager.cs: We need to remove items from
4029         the owner's Items collection on merge.
4030
4031 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
4032
4033         * ToolStrip.cs: Use new internal ToolStripItemCollection constructor.
4034         * ToolStripItemCollection.cs: Lots of fixes to when events get called
4035         and parent/owner gets changed based on gert's unit tests.
4036
4037 2007-05-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4038
4039         * MaskedTextBox.cs: Started implementing parts of it.
4040
4041 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4042
4043         * ListView.cs: When clicking the checkbox on the items
4044         take into account the double clicks even if we have only
4045         one image in StateImageList (only for 1.0/1.1). Also 
4046         generate an extra change of checked state when we receive
4047         the second click on checkbox (match .Net behaviour). 
4048         Fixes part of #81191.
4049
4050 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
4051
4052         * ThemeWin32Classic.cs: Fix text rectangles in Tooltips.
4053
4054 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
4055
4056         * Form.cs: Move some of OnLoad to OnLoadInternal so it gets called
4057         even if OnLoad is overriden and base.OnLoad is not called.
4058         [Fixes bug #81582]
4059
4060 2007-05-10  Andreia Gaita  <avidigal@novell.com>
4061
4062         * TableLayoutSettings.cs: A big doh! fix and bowing down of head in 
4063         shame. (I blame my ever-persisting and annoying cold)
4064
4065 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4066
4067         * ListView.cs: Don't eat navigation keys.  Let them flow through to
4068         KeyDown/KeyPress routines.  [Fixes bug #81569]
4069
4070 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4071
4072         * ListView.cs: When handling keys for selecting the item based off
4073         keyboard input, do not consider keys pressed with Alt or Control.  Also,
4074         correctly handle keys when the Shift key is down. [Fixes bug #81578]
4075
4076 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4077
4078         * Control.cs: When using UseWaitCursor, we have to store the requested
4079         Cursor to use when UseWaitCursor is turned off.
4080
4081 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4082
4083         * Control.cs: Implement PreProcessControlMessage.  Default IsInputChar
4084         to false.
4085         * Application.cs: Use PreProcessControlMessage instead of
4086         PreProcessMessage.
4087         * PreProcessControlMessage.cs: Make internal for 1.1.
4088
4089 2007-05-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4090
4091         * Control.cs: Add InternalContains focus property, which hast the same
4092         functionality of ContainsFocus, but also including implicit controls.
4093         * ListViewItem.cs: Use InternalContainsFocus instead of ContainsFocus,
4094         since we need to know if the focus is contained in our implicit
4095         ItemControl when calculating Layout. Fixes part of #80888.
4096
4097 2007-05-08  Everaldo Canuto  <everaldo@simios.org>
4098
4099         * ToolTip.cs: Remove center form string alignment as it must be align to
4100         left.
4101
4102 2007-05-08  Jonathan Pobst  <monkey@jpobst.com>
4103
4104         * ToolStripItemCollection.cs: Set the new item's parent and owner
4105         in Insert like we do in Add.  [Fixes bug #81568]
4106
4107 2007-05-08  Jackson Harper  <jackson@ximian.com>
4108
4109         * TreeView.cs: GotFocus differences between 1.1 and 2.0.
4110         - Off by one error in SetTop
4111         - Disable DoubeBuffering
4112         
4113 2007-05-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4114
4115         * ScrollableControl.cs: ScrollIControlntoView: we now only move the
4116           control as much as necessary in order to make it entirely visible,
4117           instead of centering the control in the container (matches MS
4118           behaviour). CalculateCanvasSize: we need to take the current scroll
4119           position into account when calculating the maximum canvas,
4120           otherwise the following scenario will fail: resize so that the
4121           scrollbars appear, use the scrollbars to scroll, resize again
4122           smaller, and now the canvas size is too small. Recalculate: when
4123           showing scrollbars make sure they start off at 0, and try to scroll
4124           the active control into view. Fixes #79540. HandleScrollBar: don't
4125           scroll anywhere if the scrollbar isn't visible.
4126
4127 2007-05-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4128
4129         * ListView.cs: When focus changed, call Layout/Invalidate
4130         in the focused item to update the selected state (should show
4131         entire label when ListView is focused, and a part of it if is not).
4132         * ListViewItem.cs: When doing layout for LargeIcon, take into account
4133         for displaying the entire label not only the Focused state of the
4134         item, but also the Focused state of the ListView (match .Net
4135         behaviour).
4136
4137 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4138
4139         * Control.cs: Stub CanRaiseEvents, IsMirrored, and NotifyClients.
4140         Implement UseWaitCursor. 
4141
4142 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4143         Applying contributed patch from Sergey Volk.
4144
4145         * Clipboard.cs: Implement SetDataObject retry logic and new overload
4146         of SetDataObject.
4147         * XplatUIWin32.cs: Throw an ExternalException if the clipboard set fails.
4148
4149 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4150
4151         * Control.cs: Implement DrawToBitmap.
4152
4153 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4154         Applying contributed patch from Stefan Noack.
4155         
4156         * Control.cs: Add [Get|Set]AutoSizeMode.
4157
4158 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4159
4160         * MdiClient.cs: Unmerge menus when the last child is closed.
4161
4162 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4163
4164         * ToolStrip.cs: Do not call BeginMerge on DropDowns.
4165         * ToolStripManager.cs: Call Merge on DropDowns.
4166         [Fixes bug #81477]
4167
4168 2007-05-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4169
4170         * XplatUIWin32.cs: Changed Win32CreateWindow to take enums instead of
4171           uints.
4172         * Form.cs: CreateParams: don't set WS_VISIBLE if we're changing
4173           visibility. We can't create forms visible, since we have to set the
4174           owner before making the form visible (otherwise Win32 will do
4175           strange things with task bar icons). The problem is that we set the
4176           internal is_visible to true before creating the control, so
4177           is_changing_visible_state is the only way of determining if we're
4178           in the process of creating the form due to setting Visible=true -
4179           this works because SetVisibleCore explicitly makes the form
4180           visibile afterwards anyways. Fixes #80775.
4181
4182 2007-05-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4183
4184         * ThemeWin32Classic.cs: When drawing ListViewItems,
4185         use StringTrimming.EllipsisCharacter if the view is Tile, Details,
4186         or LargeIcon _and_ item is not focused (match .Net behaviour).
4187
4188 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
4189
4190         * Control.cs, Form.cs: Fix some obsolete method warnings.
4191
4192 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
4193
4194         * Control.cs: Implement GetChildAtPoint and OnParentCursorChanged.
4195         * GetChildAtPointSkip.cs: Make internal for 1.1 profile.
4196
4197 2007-05-04  Andreia Gaita  <avidigal@novell.com>
4198
4199         * ContainerControl.cs: Fix active_control attribution when going
4200         up the parent chain so that the first parent container gets the control
4201         and the rest of the parent containers get the child containers (skips
4202         non-containers). Fixes #80729
4203
4204 2007-05-04  Randolph Chung  <tausq@debian.org>
4205
4206         * FileDialog.cs: Implement the SupportMultiDottedExtensions property.
4207         [Fixes bug #81499]
4208
4209 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4210
4211         * XplatUIX11.cs: Add a TranslateWindowSizeToXWindowSize overload that
4212           takes a size parameter, since the CreateParam's size isn't true for
4213           minimized forms. Fixes #81518,
4214
4215 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4216
4217         * Form.cs: Add OnDeactivateInternal.
4218         * MdiClient.cs: Raise Deactivate event. Fixes #81409.
4219
4220 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4221
4222         * DateTimePicker.cs: CalculateDropDownLocation: do a null check before
4223           accessing the parent. Fixes #81508.
4224
4225 2007-05-03  Chris Toshok  <toshok@ximian.com>
4226
4227         * CurrencyManager.cs (CurrencyManager.ListChangeHandler): in the
4228         2.0 block, pass listposition + 1 to ChangeRecordState when a row
4229         was added before the current listposition.  Fixes the
4230         TestInsertRowBeforeCurrent unit test.
4231
4232 2007-05-03  Jonathan Pobst  <monkey@jpobst.com>
4233
4234         * Application.cs: Add RaiseIdle.
4235         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
4236         XplatUIX11.cs: Implement RaiseIdle.
4237
4238 2007-05-02  Jonathan Pobst  <monkey@jpobst.com>
4239         corcompare work: N - Z
4240         * NotifyIcon.cs
4241         * ProgressBar.cs
4242         * RadionButton.cs
4243         * ScrollableControl.cs
4244         * SplitContainer.cs
4245         * SplitterPanel.cs
4246         * StatusBar.cs
4247         * SystemInformation.cs
4248         * TabControl.cs
4249         * TableLayoutControlCollection.cs
4250         * TableLayoutPanel.cs
4251         * TabPage.cs
4252         * ToolBar.cs
4253         * ToolBarButton.cs
4254         * ToolStrip.cs
4255         * ToolStripComboBox.cs
4256         * ToolStripContainer.cs
4257         * ToolStripContentPanel.cs
4258         * ToolStripDropDown.cs
4259         * ToolStripDropDownItem.cs
4260         * ToolStripDropDownMenu.cs
4261         * ToolStripItem.cs
4262         * ToolStripItemCollection.cs
4263         * ToolStripMenuItem.cs
4264         * ToolStripPanel.cs
4265         * ToolStripSplitButton.cs
4266         * ToolTip.cs
4267         * TreeNode.cs
4268         * TreeNodeCollection.cs
4269         * TreeNodeMouseHoverEventArgs.cs
4270         * TreeView.cs
4271
4272 2007-05-01  Everaldo Canuto  <everaldo@simios.org>
4273
4274         * ContextMenu.cs: Add public method Show with alignment property to 2.0
4275         stuff. Thanks aatdark for the patch. 
4276
4277 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4278
4279         * GridItem.cs: Implement 2.0 Tag property.
4280
4281 2007-05-01  Frederik Carlier <frederik.carlier@carlier-online.be> 
4282
4283         * TreeNodeCollection.cs: Fix ContainsKey and IndexOfKey methods to use
4284         count instead of Nodes.Length.  [Fixes bug #81448]
4285
4286 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4287
4288         * ComboBox.cs: Fix paramName sent to ArgumentOutOfRangeException's.
4289         [Fixes bug #81506]
4290
4291 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4292         corcompare work: A - M
4293         * BindingNavigator.cs
4294         * Button.cs
4295         * ButtonBase.cs
4296         * CheckBox.cs
4297         * Control.cs
4298         * FlowLayoutPanel.cs
4299         * Form.cs
4300         * Label.cs
4301         * LinkLabel.cs
4302         * ListView.cs
4303
4304 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4305
4306         * Application.cs: Give toolstrips a chance to process mnemonics.
4307         * ToolStrip.cs, ToolStripDropDownButton.cs, ToolStripItem.cs,
4308         ToolStripItemTextRenderEventArgs.cs, ToolStripLabel.cs,
4309         ToolStripMenuItem.cs, ToolStripSplitButton.cs: Implement keyboard mnemonics.
4310
4311 2007-05-01  Jackson Harper  <jackson@ximian.com>
4312
4313         * TextBoxBase.cs: Better preferred height, FixedSingle gets the
4314         wider area too.
4315         - Don't set the BoundsSpecified
4316
4317 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
4318
4319         * Application.cs: When using the toolstrip shortcut mechanism, allow the
4320         message to pass through to a regular control if it hosted by a toolstrip.
4321         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
4322         ToolStripManager.cs: Enable keyboard navigation for ToolStrips.
4323
4324 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
4325
4326         * TextRenderer.cs: Use the flags argument when using the MeasureString
4327         fallback algorithm.
4328
4329 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
4330
4331         * MenuStrip.cs: Don't let multiple ToolStripSeparators get added to
4332         the MDI menu item.  [Fixes bug #81483]
4333
4334 2007-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
4335
4336         * DataGridViewColumn.cs: Initialize value of headercell to zero-length
4337         string. When setting Name to null, use zero-length string instead.
4338
4339 2007-04-29  Andreia Gaita  <avidigal@novell.com>
4340
4341         * TabControl.cs: Implement missing 2.0 methods (SelectTab, 
4342         DeselectTab). Implement missing 2.0 TabPageCollection methods
4343         (Add, ContainsKey, RemoveByKey, IndexOfKey)
4344
4345 2007-04-29  Pedro Martínez Juliá  <pedromj@gmail.com>
4346
4347         * DataGridViewColumn.cs: Make HeaderText take preference over Name.
4348
4349 2007-04-29  Gert Driesen  <drieseng@users.sourceforge.net>
4350
4351         * RichTextBox.cs: In LoadFile, use StreamReader to read plain text.
4352         Fixes bug #81479. Include details of exception when LoadFile fails.
4353
4354 2007-04-28  Alan McGovern <alan.mcgovern@gmail.com>
4355
4356         * DrawListViewSubItemEventArgs.cs: Added missing setter
4357
4358 2007-04-27  Andreia Gaita  <avidigal@novell.com>
4359
4360         * ToolTip.cs: Add missing 2.0 properties. Implement 2.0 Show and 
4361         Hide methods (not complete). Implement missing 2.0 OnPopup event.
4362
4363 2007-04-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4364
4365         * ListView.cs: In ItemControl.OnMouseDown restore a pair of braces I
4366         removed in ly last commit (it was breaking the Label edit feature).
4367
4368         * ThemeWin32Classic.cs: When drawing a ListViewItem use
4369         StringAlignment.Near for LineAlignment (match .Net).
4370
4371 2007-04-27  Andreia Gaita  <avidigal@novell.com>
4372
4373         * TabControl.cs: Change SetTab so it adds the tabpage to the list
4374         of controls if it isn't already there - was blowing up when doing
4375         tabcontrol.TabPages[i]=new TabPage(). 
4376         SetTab now does a replace by removing the page at the index. 
4377         Add a new InsertTab method that inserts a page in a given index 
4378         instead of replacing. 
4379         Implements TabPageCollection.Insert(int, TabPage).
4380
4381 2007-04-27  Chris Toshok  <toshok@ximian.com>
4382
4383         * BindingManagerBase.cs: fill in CurrentItemChanged (and have an
4384         internal handler that can be invoked from our subclasses.)  Also,
4385         add a comment to PushData about how we need to fix it.
4386
4387         * CurrencyManager.cs: tons of changes here.  trying to get things
4388         matching the behavior of .net wrt event orders (ItemChanged,
4389         CurrentChanged, PositionChanged.)  I've implemented a private .net
4390         symbol (ChangeRecordState) that appears in stack traces because
4391         it's actually easier to do this than to effective inline all its
4392         various behaviors at every call site.
4393
4394         * RelatedPropertyManager.cs: guard against an exception here by
4395         not using parent.Current if the position is set to -1 (if the
4396         parent datasource is cleared, for instance).
4397
4398         * Binding.cs: don't parse data in PushData (this might be wrong,
4399         but it jives with MS's behavior.)  Also, don't call PushData when
4400         we get a CurrentChanged event.
4401
4402 2007-04-27  Andreia Gaita  <avidigal@novell.com>
4403
4404         * WebBrowser.cs,
4405           WebBrowserBase.cs,
4406           WebBrowserSiteBase.cs,
4407           HtmlDocument.cs: Added stubbed out classes, no real implementations 
4408           yet.
4409
4410 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
4411
4412         * MainMenu.cs: In draw method without parameters call draw method with 
4413         PaintEvent, another one (just rect) adjust rectangle and we dont need it
4414         as Rect property is already adjusted. Fixes #80694.
4415
4416 2007-04-27  Jonathan Pobst  <monkey@jpobst.com>
4417
4418         * Application.cs: Need to handle keyboard menu deselection here.
4419         * Control.cs: Use WM_SYSKEYUP instead of WM_SYSCOMMAND to start menu keyboard
4420         navigation, allowing keyboard to work on X11.
4421         * ToolStrip.cs: Don't worry about handling the Menu key here anymore.
4422
4423 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
4424
4425         * MenuAPI.cs: When deactivate menu verify if hotkey (_) is active and redraw
4426         menu bar. It fixes some drawing issues in menu bar.
4427
4428 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
4429
4430         * MenuAPI.cs: Remove unneeded "keynav_state = KeyNavState.Idle" before 
4431         Deactivate calls, Deactivate method already do it. Also ser ActiveTracker
4432         when <alt> key is pressed.
4433
4434 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
4435
4436         * XplatUIX11.cs: Simplify SystrayRemove to be like other libraries,     Gtk as 
4437         example just set visible to false and make this prevent from other problems.
4438         In SystrayAdd always remove pending expose. Fixes #81072.
4439
4440 2007-04-26  Marek Safar  <marek.safar@gmail.com>
4441
4442         * TextBoxBase.cs (CaretMoved): Consider scroll maximum when scroll
4443         value is set.
4444
4445 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
4446
4447         * ListView.cs: Added three missing 2.0 events and corresponding
4448         EventHandlers. Added the OwnerDraw property.
4449         * DrawListViewColumnHeaderEventHandler.cs: fixed typo
4450
4451 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
4452
4453         * DrawListViewItemEventArgs.cs
4454         * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
4455
4456 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
4457
4458         * TextControl.cs: Fixed typo in constructor
4459
4460 2007-04-26  Jonathan Pobst  <monkey@jpobst.com>
4461
4462         * Application.cs: Create a shortcut path so that currently selected
4463         MenuStrips can intercept keyboard events without having focus.
4464         * Control.cs: Handle WM_SYSCOMMAND message to activate MenuStrips.
4465         * MenuStrip.cs, ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownItem.cs,
4466         ToolStripItem.cs, ToolStripManager.cs, ToolStripMenuItem.cs: Support
4467         keyboard navigation (arrows, tab, enter, esc) on Windows.  Still need to
4468         generate WM_SYSCOMMAND message in X11 for other platforms.
4469         * ToolStripProfessionalRenderer.cs: ToolStripMenuItems need to be painted
4470         in OnRenderMenuItemBackground instead of OnRenderButtonBackground.
4471         * ToolStripSplitButton.cs: Add DefaultItem property.
4472         
4473 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
4474
4475         * MainMenu.cs: In OnMenuChanged pass PaintEventArgs to Draw method, it
4476         fixes some menu draw problem on Windows with border diferent from default
4477         it also fixes #81403.
4478
4479 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4480
4481         * Form.cs: Refactor WndProc into separate methods, just like Control is
4482           doing it.
4483
4484 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4485
4486         * Control.cs: set_Text: move the call to the driver into a seperate
4487           virtual method so that Form can override it.
4488         * MaskedTextBox.cs: Corcompare fixes.
4489         * Form.cs: Override UpdateWindowText and only update the styles if the
4490           form has been shown (fixes #81405).
4491
4492 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
4493
4494         * Control.cs, Form.cs: Use the better supported WM_?BUTTONDOWN and
4495         WM_ACTIVATE messages instead of WM_MOUSEACTIVATE and
4496         WM_ACTIVATEAPP.  This fixes menus not disappearing on X11 when
4497         the form lost focus or another control was clicked.
4498
4499 2007-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
4500
4501         * DataGrid.cs: Uncomment MakeTransparent calls since bug #80151 is
4502         fixed.
4503
4504 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4505
4506         * DrawListViewColumnHeaderEventHandler.cs, DrawToolTipEventArgs.cs,
4507           DrawListViewItemEventHandler.cs,
4508           DrawListViewSubItemEventHandler.cs, DrawToolTipEventHandler.cs:
4509           Added.
4510         * X11Structs.cs: More ToString implementation.
4511
4512 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
4513
4514         * ToolStripDropDownItem.cs: Don't lazy create a DropDown in Dispose.
4515         * ToolStripOverflowButton.cs: Don't lazy create a DropDown in HasDropDownItems.
4516
4517 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4518
4519         * Control.cs: Only raise OnVisibleChanged if we're not recreating the
4520           handle.
4521         * FormCollection.cs: Don't add a form if it's already in the
4522           collection.
4523         * Form.cs: Change ShowDialog () to call ShowDialog (owner) with a null
4524           according to behaviour and MSDN. The ownerWin32 is the active
4525           window at the moment when we call ShowDialog, not the context's
4526           main form (the context's main form may open another form that opens
4527           a form with ShowDialog, the win32 owner is the second form). Add
4528           and remove forms to the Application.OpenForms in other places to
4529           better match MS behaviour. Add an IsActive property that raises
4530           On(de)Activated only if the active state has changed (we were
4531           raising OnDeactivated before OnActivated while creating forms).
4532         * Application.cs: Refactor Enabling/Disabling of windows for modal
4533           dialog loops out to separate methods, and restore the thread
4534           context when we quit the method. Fixes #81407.
4535
4536 2007-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4537
4538         * ListView.cs: In ItemControl.HandleClicks, also fire 
4539         2.0 MouseClick or MouseDoubleClick events on the parent,
4540         not only the Click/DoubleClick events.
4541
4542 2007-04-24  Andreia Gaita  <avidigal@novell.com>
4543
4544         * TableLayoutSettings.cs: 
4545         - Added a GetControls method and a support structure to help the 
4546         TypeConverter to enumerate the controls for     serialization. 
4547         - Added a new serialization constructor. 
4548         - Added a isSerialized flag initialized to true on the 
4549         serialization constructor so that the TableLayoutPanel.LayoutSettings 
4550         setter does not throw the designed NotSupportedOperation exception
4551         when the object is built through deserialization.
4552         - Implemented GetObjectData
4553         
4554         * TableLayoutPanel.cs: Added check on LayoutSettings.
4555
4556 2007-04-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4557
4558         * ListView.cs: Report Click and DoubleClick events to the parent
4559         from ItemsMouseUp, instead of ItemsMouseDown. This prevents us
4560         from breaking the click count state when using dialog forms (Control
4561         reports the clicks in a similar fashion). In the previous behaviour
4562         the last WM_LBUTTONUP message in a  double click was sent to the
4563         ListView's form, instead of the ListView, which was breaking the click
4564         count for it. Fixes #80387.
4565
4566 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
4567
4568         * BindingNavigator.cs : fixed bugs revealed by new nunit tests
4569
4570 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
4571
4572         * ToolStripDropDownItem.cs: Lazy initialize the DropDown.  This prevents
4573         us from created dropdowns for menu items that do not have subitems.
4574         * ToolStripItem.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs:
4575         Check HasDropDownItems before calling DropDown so a dropdown will not be
4576         created if it isn't needed.
4577
4578 2007-04-24  Jackson Harper  <jackson@ximian.com>
4579
4580         * TreeView.cs: Set the first node to the selected node when we get
4581         focus if there is no selected node.
4582
4583 2007-04-24  Andreia Gaita  <avidigal@novell.com>
4584
4585         * MimeIcon.cs: remove using blocks so that image streams are
4586         not disposed of. Fixes #80151
4587
4588 2007-04-24  Jackson Harper  <jackson@ximian.com>
4589
4590         * TextBoxBase.cs: Fixup the height of textboxes when the control
4591         is created.
4592
4593 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
4594
4595         * ToolStrip.cs: Fully implement GetNextItem.  Call OnParentRightToLeftChanged
4596         for each ToolStripItem when the parent's RightToLeftChanged is called.
4597
4598 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4599
4600         * ComboBox.cs: Forward ContextMenu to the underlying textbox, if any.
4601           Fixes #80163.
4602         * Control.cs: Replace GetContextMenuInternal() with ContextMenuInternal
4603           property, so that the setter can be overriden too.
4604         * TextBox.cs: Change GetContextMenuInternal() to use
4605           ContextMenuInternal.
4606
4607 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4608
4609         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
4610           #81406.
4611
4612 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4613
4614         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
4615           #81406.
4616
4617 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4618
4619         * MaskedTextBox.cs: Commit this so nobody else starts working on it and
4620           avoid duplicate work. Mostily skeleton code, it's not working at
4621           all yet.
4622
4623 2007-04-20  Leszek Ciesielski <skolima@gmail.com>
4624
4625         * NotifyIcon.cs : stub for MouseClick event
4626         * Application.cs: stub for SetUnhandledExceptionMode
4627
4628 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
4629
4630         * BindingNavigator.cs : Initial (partial) implementation
4631
4632 2007-04-23  Jackson Harper  <jackson@ximian.com>
4633
4634         * TreeView.cs: Do not create the treeview's handle when setting
4635         the scroll position.
4636         - ExpandAll needs to compute the scrollbars so it knows which
4637         position to set the bar too.
4638         * TreeNode.cs: 
4639         * TreeNodeCollection.cs: Pass new flag to UpdateScrollBars
4640
4641 2007-04-23  Jackson Harper  <jackson@ximian.com>
4642
4643         * TextBoxBase.cs: Non multiline textboxes shouldn't take the enter
4644         key. Fixes #81408.
4645
4646 2007-04-23  Jonathan Pobst  <monkey@jpobst.com>
4647
4648         * ToolStripItem.cs: Make GetImageSize internal.
4649         * ToolStripMenuItem.cs: Use GetImageSize to determine the size we
4650         need to draw an item.  Fixes a reported issue where images on menus
4651         that were not 16x16 were drawing incorrectly.
4652
4653 2007-04-21  Miguel de Icaza  <miguel@novell.com>
4654
4655         * Padding.cs: Use the converter, fixes the resgen2 issue with
4656         XMLNotePad. 
4657
4658 2007-04-21  Jackson Harper  <jackson@ximian.com>
4659
4660         * TreeView.cs: Dont try to unhighlight the selected node if there
4661         isn't a selected node.
4662
4663 2007-04-21  Jackson Harper  <jackson@ximian.com>
4664
4665         * UpDownBase.cs:
4666         * TextBoxBase.cs:
4667         * ListView.cs:
4668         * ListBox.cs:
4669         * TreeView.cs: Use the InternalBorderStyle property to set the
4670         initial border style, this forces the client rectangle to be sized
4671         correctly.
4672
4673 2007-04-20  Jackson Harper  <jackson@ximian.com>
4674
4675         * TreeView.cs: Simplify scrolling to the last node after expanding
4676         all.
4677         - Fix some off by ones with setting the bottom.
4678
4679 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
4680
4681         * Control.cs: Use DefaultSize for Size, calculate ClientSize from
4682         that.  We were incorrectly doing it the other way around.  Also,
4683         update ClientSize if we change the BorderStyle before the control
4684         is created.
4685
4686 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
4687
4688         * XplatUI.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
4689         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
4690         XplatUIDriver.Caption to CaptionHeight. Spaces to tabs.
4691         * XplatUIDriver.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
4692         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
4693         Caption to CaptionHeight.
4694         * XplatUIX11.cs: Renamed Caption to CaptionHeight.
4695         * Theme.cs: Modified Border3DSize, BorderSize, CaptionButtonSize
4696         and FixedFrameBorderSize to return value from current XplatUI driver.
4697         * XplatUIWin32.cs: Implemented Border3DSize, BorderSize,
4698         CaptionButtonSize, DragFullWindows, DoubleClickSize, DoubleClickTime
4699         and FixedFrameBorderSize using win32 API. Renamed Caption to
4700         CaptionHeight.
4701         * XplatUIOSX.cs: Renamed Caption to CaptionHeight.
4702         * SystemInformation.cs: Fixed typo in BorderSize.
4703
4704 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
4705
4706         * XplatUI.cs: Added MenuAccessKeysUnderlined.
4707         * XplatUIDriver.cs: Added MenuAccessKeysUnderlined.
4708         * XplatUIX11.cs: Implemented MenuAccessKeysUnderlined by always
4709         returning false.
4710         * Theme.cs: Modified MenuAccessKeysUnderlined to return corresponding
4711         value from XplatUI driver.
4712         * XplatUIWin32.cs: Implemented MenuAccessKeysUnderlined using
4713         SystemParametersInfo.
4714         * ThemeWin32Classic.cs: Remove obsolete MenuAccessKeysUnderlined
4715         override.
4716         * XplatUIOSX.cs: Implemented MenuAccessKeysUnderlind by always
4717         returning false.
4718
4719 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4720
4721         * XplatUIX11.cs, Hwnd.cs: Remove warnings.
4722
4723 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4724
4725         * MessageBox.cs, XplatUIX11.cs, Hwnd.cs: Remove warnings.
4726
4727 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
4728
4729         * ToolStripManager.cs: Fix a reported InvalidCastException when unmerging
4730         MenuStrips that contain ToolStripSeparators.
4731
4732 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4733
4734         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Add
4735           DefineStdCursorBitmap.
4736         * Cursor.cs: Add an internal constructor so that the Cursor knows if it
4737           has been created off a standard cursor. This is used to get a
4738           bitmap of the standard cursor when Draw or DrawStretched is called
4739           in order to draw the cursor.
4740         * X11Structs.cs: Added XcursorImage and XcursorImages.
4741         * XplatUIX11.cs, XplatUIWin32.cs: Add and implement
4742           DefineStdCursorBitmap.
4743         * Cursors.cs: Update all relevant creations of Cursor to use the new
4744           internal constructor.
4745
4746 2007-04-19  Jackson Harper  <jackson@ximian.com>
4747
4748         * TextBox.cs: Move the has_been_focused into the base control, so
4749         some of the text adding methods can manipulate it (probably time
4750         for a better name for this flag too).
4751         - Call a new version of selectall that doesn't scroll
4752         * TextBoxBase.cs: When we append text, if the document is empty,
4753         don't scroll.  If the document has text already, we scroll to the
4754         end of the appended text.
4755         - When the text is changed, we reset the has_been_focused, so the
4756         next time the control gets focused, all the text is selected.
4757
4758 2007-04-19  Jackson Harper  <jackson@ximian.com>
4759
4760         * TextControl.cs: Move the margins to the document, add a method
4761         so the margin sizes can be updated.
4762         * TextBoxBase.cs: When the border style is changed, update the
4763         border sizes.
4764
4765 2007-04-19  Jonathan Pobst  <monkey@jpobst.com>
4766
4767         * Control.cs: Respect DefaultPadding.
4768         * GroupBox.cs: Implement DefaultPadding, DisplayRectangle takes
4769         padding into account.
4770         * ToolStrip.cs: Remove setting padding to DefaultPadding in constructor.        
4771
4772 2007-04-19  Jackson Harper  <jackson@ximian.com>
4773
4774         * TextControl.cs: Oops, we need to use the ClientRect not the
4775         bounds here.
4776
4777 2007-04-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4778
4779         * ListView.cs: In ItemControl.ItemsMouseDown, take into
4780         account the double clicks when CheckBoxes are used and
4781         the pointer is inside the checkbox. Fixes part of #81191.
4782
4783 2007-04-18  Jackson Harper  <jackson@ximian.com>
4784
4785         * TextControl.cs: Pressing the end key shouldn't move the caret
4786         past the line ending.
4787         * TextBoxBase.cs: We can still delete if we are in the line
4788         ending and the combine will just kill the existing line ending.
4789
4790 2007-04-18  Jackson Harper  <jackson@ximian.com>
4791
4792         * TextControl.cs: We can't move lines, then invalidate their
4793         bounds, we need to get the old bounds and combine that with the
4794         new bounds.
4795         * TextBoxBase.cs: Before combining two lines for a delete, we need
4796         to invalidate the area of the old line, since that will be moved
4797         in the combine operation.
4798
4799 2007-04-18  Everaldo Canuto  <everaldo@simios.org>
4800
4801         * LinkLabel.cs: In OnPaint invoke draw background to fix problems
4802         with transparent background. Fixes #80482.
4803
4804 2007-04-18  Jonathan Pobst  <monkey@jpobst.com>
4805
4806         * PictureBox.cs: Refresh on resize when SizeMode = Zoom.
4807         * ThemeWin32Classic.cs: Implement PictureBox.SizeMode = Zoom.
4808         [Fixes bug #81391]
4809
4810 2007-04-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4811
4812         * CreateParams.cs: Add a couple of helper methods and do a less string
4813           concatenation in ToString.
4814         * XplatUIX11.cs: Add an TranslateClientRectangleToXClientRectangle
4815           overload that takes a Control parameter, since this method may be
4816           called before a control is assigned to the hwnd (from
4817           CreateWindow), and update CreateWindow to use the new overload. In
4818           GetMenuOrigin subtract the title bar from the y position if the
4819           form has a window manager (since we're painting it and not X).
4820         * XplatUIWin32.cs: If we can get a form in GetMenuOrigin use the form's
4821           CreateParams to calculate the origin (since border sizes may vary).
4822           In ScreenToMenu only subtract the title height if we actually have
4823           a title.
4824         * MdiWindowManager.cs: Override MenuHeight to always return 0, since
4825           mdi children never have menus of themselves.
4826         * InternalWindowManager.cs: Implement menu handling like form does.
4827           Added GetMenuOrigin to calculate the menu origin, can't use the
4828           CreateParams from the form like normally since it's lying.
4829         * Hwnd.cs: Implement GetBorderSize better (in the sense more
4830           windows-like) and add Inflate and comparison operators to the
4831           Borders type. When calculating MenuOrigin and it's a form with a
4832           window manager, use the window manager to calculate it.
4833
4834 2007-04-17  Chris Toshok  <toshok@ximian.com>
4835
4836         * Control.cs (CreateControl): turns out in 2.0 we don't need this
4837         OnBindingContextChanged thing here.  It's only generated from
4838         ContainerControl.OnCreateControl.  Fixes a newly written unit test
4839         - BindingTest.BindingContextChangedTest4.
4840         
4841 2007-04-17  Jackson Harper  <jackson@ximian.com>
4842
4843         * ScrollBar.cs: When setting values, make sure the current
4844         position stays within the new values range.
4845
4846 2007-04-17  Chris Toshok  <toshok@ximian.com>
4847
4848         * Control.cs (CreateControl): talk about a bizarre corner case.
4849         Don't emit OnBindingContextChanged here if we're a parentless
4850         control (i.e. if we're a form.).  Fixes
4851         BindingTest.BindingContextChangedTest2.
4852
4853 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
4854
4855         * ButtonBase.cs: Remove TextFormatFlags.WordBreak to mimic same behavior 
4856         from win32. Fixes #81255.
4857
4858 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
4859
4860         * ThemeWin32Classic.cs: Remove text offset from DrawButtonText as it is
4861         already present in CalculateButtonTextAndImageLayout.
4862
4863 2007-04-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4864
4865         * XplatUIX11.cs: When setting min/max size for a window we need to
4866           translate the coordinates to x coordinates. Create an overload of
4867           SetWindowMinMax that takes a CreateParams handling this, and change
4868           SetWMStyles to call this function (can't use Control.FromHandle in
4869           the SetWindowMinMax to get the control/CreateParams from the handle
4870           because the handle might not have been assigned to the control
4871           yet). Fixes #81371.
4872
4873 2007-04-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4874
4875         * ListView.cs: In ItemControl.ItemMouseDown, don't change check state
4876         if StateImageList is non-null and it has less than two items (match MS
4877         behaviour). Also, in HandleNavKeys handle the Space key, calling
4878         the new ToggleItemsCheckState method, which tries to change the
4879         checked state of the selected items. Fixes part of #81191.
4880
4881 2007-04-16  Jackson Harper  <jackson@ximian.com>
4882
4883         * RichTextBox.cs: namespace cleanup.
4884
4885 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
4886
4887         * XplatUIWin32.cs: Back last parameter to true in SetClipRegion.
4888
4889 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
4890
4891         [Fixes #79447]
4892         * Control.cs: Call invalidate in set_Region.
4893
4894         * XplatUIX11.cs, XplatUIWin32.cs: Remove invalidate from SetClipRegion as
4895         it dont works here.
4896
4897 2007-04-16  Jackson Harper  <jackson@ximian.com>
4898
4899         * TextBoxBase.cs: When enter is pressed, we need to update all
4900         lines below the current.
4901
4902 2007-04-16  Jonathan Pobst  <jpobst@monkey.com>
4903
4904         * MdiClient.cs: Implement implicit menu merging for MDI
4905         children.  When a child form is active, if it has a menustrip
4906         and the parent form has a MainMenuStrip, automatically merge
4907         the menus.
4908
4909 2007-04-15  Andreia Gaita  <avidigal@novell.com>
4910
4911         * TabControl.cs: Refactored sizing methods to not repeat
4912         code all over the place. Tab bounds are now calculated
4913         as if alignment is top and single line, and only when 
4914         setting the bounds are the positions adjusted according
4915         to alignment. Replaced hardcoded positions, spacings and
4916         paddings by getting the values the ThemeEngine. 
4917         Fixes #79619.
4918         
4919         * Theme.cs: Change TabControl properties and methods so
4920         that all start with TabControl*. Added more properties
4921         to help remove hardcoded values on tabcontrol.
4922         Add CPDrawBorder3D declaration so the Theming classes
4923         can access it.
4924         
4925         * ThemeClearlooks.cs, ThemeNice.cs: Method signature changes from Theme.
4926
4927         * ThemeWin32Classic.cs: Rector TabControl out to the TabControlPainter
4928         on the Theming namespace, and call the appropriate methods here.
4929         Change CPDrawBorder3D to public.
4930
4931 2007-04-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4932
4933         * Control.cs: In WmRButtonUp, send the WM_CONTEXTMENU message to
4934         the control after firing the OnMouseUp event, instead of sending
4935         the message before the mentioned event. This is so we can match the
4936         MS behaviour. Fixes part of #80385.
4937
4938 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
4939
4940         * ToolStripItem.cs: Call the RightToLeftChanged event when setting the
4941         RightToLeft property.
4942
4943 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
4944
4945         * ToolStrip.cs: Add properties and internal methods to support merging.
4946         * ToolStripItem.cs: Add MergeAction and MergeIndex.
4947         * ToolStripItemCollection.cs: Add Insert and Remove methods that do
4948         not trigger reparenting or layouts.
4949         * ToolStripManager.cs: Add Merge and RevertMerge methods.
4950         * ToolStripOverflow.cs: Add a convenience method to find the ToolStrip that
4951         is hosting the overflow menu.
4952
4953 2007-04-13  Jackson Harper  <jackson@ximian.com>
4954
4955         * TextControl.cs: Set the line ending correctly for the first
4956         inserted line.
4957
4958 2007-04-13  Sebastien Pouliot  <sebastien@ximian.com>
4959
4960         * Theme.cs: Update GetMethod to get the new definition for 
4961         KnownColors.Update (and fix theme color updates).
4962
4963 2007-04-12  Everaldo Canuto  <everaldo@simios.org>
4964
4965         * MessageBox.cs: Fix some test and button position.
4966
4967 2007-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4968
4969         * Form.cs: Consider the implicit controls in
4970         GetRealChildAtPoint. We need it since this method
4971         is called on Form when handling the some messages in
4972         WndProc, and need to consider those implicit ones too.
4973         Fixes #80385.
4974
4975 2007-04-12  Jonathan Pobst  <monkey@jpobst.com>
4976
4977         * ToolStripMenuItem.cs: Display the ShortcutKeyDisplayString even
4978         if there are no ShortcutKeys set.
4979         * ToolStripProfessionalRenderer.cs: If an item has had its BackColor
4980         set, use it when painting.
4981
4982 2007-04-12  Jackson Harper  <jackson@ximian.com>
4983
4984         * TextControl.cs: Fix some off-by-one issues in line duplication
4985         and insertion in the undo manager. Also, overwrite the first tag
4986         of a line on insert, if it is just a zero lengthed tag. This
4987         prevents us from getting an extra stranded tag at the beginning of
4988         the first line.
4989
4990 2007-04-11  Everaldo Canuto  <everaldo@simios.org>
4991
4992         * Label.cs: Remove check for handle created in CalcAutoSize, we need 
4993         to calculated proper size including when handle was not created yet.
4994
4995 2007-04-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4996
4997         * MdiWindowManager.cs: When moving a form, allow the form to be moved
4998           when the mouse is outside of it's parent's client rectangle. Fixes
4999           #79982 (take 3, part 2).
5000
5001 2007-04-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5002
5003         * X11Structs.cs: Add a few ToString() overrides.
5004         * XplatUIX11.cs: Added GetTopLevelWindowLocation to try to calculate
5005           the window location in a window-manager independent way. Reworked
5006           FrameExtents, it now actually works. Reworked AddConfigureNotify
5007           and ReparentNotify handling to use GetTopLevelWindowLocation
5008           instead of the earlier, more hacky solution. Reworked SetWMStyles,
5009           hopefully for the better: we now set _NET_WM_WINDOW_TYPE* for all
5010           windows, DIALOG for modal windows, UTILITY for toolboxes and NORMAL
5011           for all other windows (fixes #81281 part 1), a toolwindow is hidden
5012           from the taskbar if it has a parent (fixes #81281 part 2 for kwin),
5013           and generally refactored to do as few calculations as possible
5014           inside the lock.
5015
5016 2007-04-09  Sebastien Pouliot  <sebastien@ximian.com>
5017
5018         * Theme.cs: Change "reflective-contract" between MWF and SD to 
5019         minimize # of calls, avoid Color serialization and avoid updating 
5020         every "known colors" each time a single one is updated.
5021
5022 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
5023
5024         * DataGridTextBoxColumn.cs: Only set IsInEditOrNavigateMode to false
5025         when not readonly and the text is explicitly set. Code style updates.
5026         * DataGridTableStyle.cs: Removed extra line.
5027         * DataGrid.cs: Code style updates. Removed extra whitespace.
5028         * DataGridColumnStyle.cs: Code style updates. Removed extra 
5029         whitespace.
5030
5031 2007-04-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5032
5033         * XplatUIX11.cs: Added comment that "fixes" #80021.
5034
5035 2007-04-09  Jackson Harper  <jackson@ximian.com>
5036
5037         * TextControl.cs: We don't need this -1 on the line count anymore.
5038
5039 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
5040
5041         * DataGridTextBoxColumn.cs: In Commit, use TypeConverter to convert
5042         entered value to underlying type, and convert it back to a string to
5043         apply formatting. Modified GetFormattedValue to use TypeConverter
5044         if available.
5045
5046 2007-04-08  Gert Driesen  <drieseng@users.sourceforge.net>
5047
5048         * ListViewItem.cs: Added null checks. Avoid duplicating code in ctors.
5049         Use SubItems property when we want to ensure there's at least one
5050         subitem. Modified SubItems property to ensure there's always at least
5051         one subitem. Avoid using ListViewSubItemCollection.AddRange to match
5052         the NRE's reported by MS.
5053
5054 2007-04-07  Gert Driesen  <drieseng@users.sourceforge.net>
5055
5056         * ProgressBar.cs: On 2.0 profile, default forecolor is Highlight. Added
5057         ResetForeColor override on 2.0. Fixed a few API compatibility issues.
5058         Spaces to tabs. Removed extra tabs.
5059
5060 2007-04-06  Jonathan Pobst  <monkey@jpobst.com>
5061
5062         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
5063         infinite loop.  (Forgot to copy to the horizontal toolstrip case.)
5064
5065 2007-04-06  Jackson Harper  <jackson@ximian.com>
5066
5067         * TextBoxBase.cs: When a delete removes a line, recalculate all
5068         lines below that line (they need to get offsets setup correctly)
5069         and invalidate.
5070
5071 2007-04-05  Jackson Harper  <jackson@ximian.com>
5072
5073         * TextControl.cs: We need to invalidate across the width of the
5074         document when we are invalidating multiple lines.
5075         * TextBoxBase.cs: Don't delete into the line ending.
5076
5077 2007-04-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5078
5079         * ListView.cs: Restore the check for the MouseHover event
5080         in ListView. It looks like the ListView fires more than one MouseHover
5081         event when HoverSelection is true  _only_ in weird-corner scenarios, but
5082         in most of the cases it only fires one. Also, add the 2.0 ItemMouseHover
5083         event.
5084
5085 2007-04-05  Mike Kestner  <mkestner@novell.com>
5086
5087         * ListView.cs : raise MouseDown before updating selection.
5088         [Fixes #80373 tab 1&3]
5089
5090 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
5091
5092         * ToolStripRenderer.cs: Add static method to mirror image.
5093         * ToolStripProfessionalRenderer.cs: Support ImageTransparentColor
5094         and RightToLeftAutoMirrorImage.
5095         * ToolStripItem.cs: Remove MonoTODO from ImageTransparentColor.
5096
5097 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
5098
5099         * ToolStripSplitStackLayout.cs: Support Alignment property.
5100         * ToolStripItem.cs: Remove MonoTODO from the Alignment property.
5101
5102 2007-04-05  Jackson Harper  <jackson@ximian.com>
5103
5104         * TextControl.cs: Move around the line endings when crossing line
5105         boundaries.
5106         - When combining lines, strip the ending text off the first line.
5107
5108 2007-04-05  Jackson Harper  <jackson@ximian.com>
5109
5110         * TextControl.cs:
5111         * TextBoxBase.cs: Try to never move the cursor into the line
5112         ending.
5113         
5114 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
5115
5116         * ToolStripItem.cs: Make sure we aren't firing mouse events when
5117         the item is disabled.  Also add a few missing methods.
5118
5119 2007-04-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5120
5121         * ListView.cs: We don't need the MouseEnter/MouseLeave check
5122         to fire just one MouseHover event when HoverSelection is true, since
5123         .Net does fire more than one MouseHover event in that scenario. Also,
5124         fix the selection in HoverSelection, by invoking UpdateMultiSelect
5125         if MultiSelect is true, instead of only setting ListViewItem.Selected.
5126         Finally, we need to reset the Hover logic in MouseMove, even when we
5127         don't have a selected item.
5128
5129 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
5130
5131         * ToolStrip.cs: Add several missing methods, properties, and events.
5132
5133 2007-04-04  Chris Toshok  <toshok@ximian.com>
5134
5135         * DataGridTextBoxColumn.cs: set the bounds of the text box to
5136         (0,0,0,0) in Commit, as MS does.
5137
5138         * DataGrid.cs: call EndEdit() from Select() as microsoft does, and
5139         make sure we set CurrentRow on a row header click *before* calling
5140         Select.  This moves the current cell (and the textbox) to the new
5141         row.  The call to Select then hides the textbox, giving us the
5142         correct behavior.  Fixes #80362.
5143
5144         * CurrencyManager.cs (UpdateIsBinding): raise ItemChanged (-1).
5145         (ListChangedHandler): reorder the position/current changed events,
5146         and call UpdateIsBinding in the ItemAdded case.
5147
5148         * GridColumnStylesCollection.cs: add some columns events, one of
5149         which raises the CollectionChanged event.
5150
5151 2007-04-04  Jackson Harper  <jackson@ximian.com>
5152
5153         * TextControl.cs: When we delete multiple selection lines
5154         invalidate the selection area, don't need to do that for single
5155         lines because the final update view will handle it.
5156
5157 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
5158
5159         * Control.cs: When we CreateControl, we need to also create all of the
5160         control's children.  The child's OnLoad must also fire before the parent's
5161         OnLoad.  Fixes the toolbox size in PDN.
5162
5163 2007-04-04  Jackson Harper  <jackson@ximian.com>
5164
5165         * TextBoxBase.cs: When the user presses enter, insert a line
5166         ending into the text. (Maybe this would be a good spot for
5167         Environment.NewLine).
5168         * TextControl.cs: Remove undo manager hack, line endings get
5169         inserted properly now.
5170         
5171 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
5172
5173         * MenuAPI.cs: 
5174         - Remove unneeded parameters in UpdateCursor.
5175         - Fix UpdateCursor to check if menu is active.
5176         - Call UpdateCursor when menu deactivate my click.
5177         [Fixes remaining issues from #80410]
5178
5179 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
5180
5181         * Control.cs: GetRealChildAtPoint method added, it make an
5182         recursive child control search for the point. 
5183
5184         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
5185         menu.
5186
5187         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
5188
5189 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
5190
5191         * Form.cs: Fix mouse position when send back mouse event after closes
5192         menu.
5193
5194 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
5195
5196         * Form.cs: Simplify the BUTTONDOWN for active tracker.
5197
5198 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
5199
5200         * Control.cs: Fix an issue where if a user resized a control inside
5201         a sizing method like OnResize, we would overwrite their explicit
5202         value.  Also, only call DefaultSize once in the constructor instead
5203         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
5204         nothing actually changed.
5205
5206 2007-04-03  Jackson Harper  <jackson@ximian.com>
5207
5208         * TextControl.cs: Don't attempt to copy text for lines with no
5209         text in them (technically this shouldn't happen, but we aren't
5210         always inserting line endings when we should be).
5211
5212 2007-04-03  Jackson Harper  <jackson@ximian.com>
5213
5214         * TextBoxBase.cs: Calculate the scrollbars before calculating the
5215         document, because this sets some of the document size properties
5216         that are needed.
5217
5218 2007-04-03  Jackson Harper  <jackson@ximian.com>
5219
5220         * TextBoxBase.cs: We need to calculate maximums even if this is
5221         not a multiline control, because the maxs are used for scrolling.
5222         - Display the caret after doing a page up/down, we need to
5223         manually display it because a proper CaretMoved event isn't
5224         triggered (this is because of the way the math is done to
5225         determine how far to scroll).
5226
5227 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
5228
5229         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
5230         (ToolBar was relying on SetBoundsCore to default the values sent 
5231         base off of BoundsSpecified.)
5232
5233 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5234
5235         * DateTimePicker.cs: Change Text so that when a null value or empty
5236           string is assigned to the test we always raise ValueChanged and
5237           TextChanged (earlier implementation would only raise ValueChanged
5238           if the current date value was different from DateTime.Now).
5239
5240 2007-04-03  Andreia Gaita <avidigal@novell.com> 
5241
5242         * ButtonBase: Call update after invalidation, fixes #80194
5243
5244 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5245
5246         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
5247           #79335.
5248
5249 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5250
5251         * XplatUIX11.cs: SetWMStyles: If the control is a form with
5252           FormBorderStyle = None, don't give the window any decorations.
5253           Fixes #81276.
5254
5255 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5256
5257         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
5258         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
5259           to check for is a mix of several styles (such as WS_CAPTION for
5260           instance).
5261         * Control.cs: Don't paint an area bigger than the client area when
5262           painting the background colour. Add an internal GetCreateParams.
5263           Update calls to XplatUI.CalculateWindowRect due to API change.
5264         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
5265           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
5266           the size if it hasn't been handled by any windows. When creating
5267           and moving windows, X wants the location of the entire window, but
5268           the size of the client window, so add
5269           TranslateClientRectangleToXClientRectangle,
5270           TranslateWindowSizeToXWindowSIze and
5271           TranslatedXWindowSizeToWindowSize to cope with this, and call them
5272           before every window creation and move. Update CalculateWIndowRect
5273           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
5274           In AddConfigureNotify don't do anything if the hwnd is a zombie
5275           (fixes the BadWindow we were getting while running the tests),
5276           always calculate the offsets when it's a parentless window, not
5277           only when reparented, and translate the window size, since we're
5278           getting the client size of the whole window, excluding entire
5279           window.
5280         * Theme.cs: Added BorderSizableSize.
5281         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
5282           anymore. Update calls to XplatUI.CalculateWindowRect due to API
5283           chang
5284         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
5285           change. Fake the window styles here instead of in XplatUIWin32 so
5286           that all back-ends get the same window styles (and it's Form that's
5287           deciding when to use wm, not the Win32 backend anyways)
5288         * Hwnd.cs: Completely reworked GetWindowRectangle and
5289           GetClientRectangle - they are now passed a CreateParams and they
5290           only use Style and ExStyle to determine the rectangles (they should
5291           now work just like Win32AdjustWindowRectEx - though quite a few
5292           special cases are probably missing). They should also be 100%
5293           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
5294           == rect), and all numbers (borders, menu sizes) are taken from the
5295           current theme. Added a GetBorders helper function that will return
5296           the borders for any given CreateParams (including captions and
5297           menus), and GetBorderSize that returns the given border size only.
5298         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
5299           Hwnd.GetClientRectangle.
5300
5301 2007-04-02  Chris Toshok  <toshok@ximian.com>
5302
5303         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
5304         logic between the values we present to the user and the values
5305         which are stored in the column's property.  Also, don't call
5306         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
5307
5308 2007-04-02  Jackson Harper  <jackson@ximian.com>
5309
5310         * TextBoxBase.cs: Scroll faster!
5311
5312 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
5313
5314         * StatusStrip.cs: Layout fixes for PDN.
5315         * ToolStrip.cs: Set item's available to true, and placement to main when
5316         added.
5317         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
5318         changing in setter before doing any work, add InternalVisible.
5319         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
5320         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
5321         infinite loop.
5322
5323 2007-04-02  Jackson Harper  <jackson@ximian.com>
5324
5325         * TextBox.cs: LBUTTON does not make the textbox select all of it's
5326         text on focus.
5327
5328 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5329
5330         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
5331           Makes ToolStripComboBoxes show up again.
5332
5333 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5334
5335         * ListView.cs: Add a hover_pending field in ListView
5336         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
5337         cycle (we are resetting the MouseHover logic in XplatUI
5338         to handle HoverSelection). Fixes #80429.
5339
5340 2007-04-02  Jackson Harper  <jackson@ximian.com>
5341
5342         * TextControl.cs: Make sure the attributes get set on the last
5343         tag.
5344         - Still have to do the end tag if we have stepped all the ways to
5345         the end.
5346
5347 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
5348
5349         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
5350         on an internal libgdiplus call when the information is already 
5351         available via the public API.
5352
5353 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5354
5355         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
5356           control is removed from a control collecftion.
5357         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
5358           Fixes FormPropertyTest (failed on rare occasions).
5359         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
5360           of Win32SetParent (when changing from no parent to a parent it
5361           might add the new parent's location in screen coordinates to this
5362           window's location).
5363         * Form.cs: Rework ChangingParent once again, now the handle is
5364           recreated whenever a FormWindowManager is added or removed (that is
5365           whenever a normal form is parented or abandoned). Also change
5366           CreateParams so that all non-toplevel windows always get the
5367           specified sice (StartupPosition is never considered for
5368           non-TopLevel forms).
5369         * ContainerControl.cs: Add ChildControlRemoved, the container control
5370           needs to be notified when a control is removed from it's
5371           collection, in the case the removed control is the active control.
5372
5373 2007-04-02  Jackson Harper  <jackson@ximian.com>
5374
5375         * RichTextBox.cs: Use the new methods for setting the font and
5376         color, these methods set the specified attribute without
5377         overriding the other attributes.
5378
5379 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
5380
5381         * ToolStripPanel.cs: Fixes for better layouts in PDN.
5382
5383 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
5384
5385         * TextBox.cs: Added internal ChangeBackColor method to special-case
5386         Color.Empty. Added check for invalid ScrollBars value.
5387         * TextBoxBase.cs: Added internal ChangeBackColor method.
5388         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
5389         internal ChangeBackColor method to special-case Color.Empty. Added
5390         check for invalid ScrollBars value.
5391
5392 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
5393
5394         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
5395
5396 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
5397
5398         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
5399         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
5400         [Based on submitted patch from Olivier Duff.]
5401
5402 2007-03-30  Jackson Harper  <jackson@ximian.com>
5403
5404         * TextBox.cs: Only select all on initial focus if the user has not
5405         specified a selection area.
5406
5407 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
5408
5409         * UserControl.cs: Override CreateParams.
5410
5411 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5412
5413         [ Fixes #80995 ]
5414
5415         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
5416         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
5417           check for is a mix of several styles (such as WS_CAPTION for instance).
5418         * Control.cs: Don't paint an area bigger than the client area when painting
5419           the background colour. Add an internal GetCreateParams. Update calls to
5420           XplatUI.CalculateWindowRect due to API change.
5421         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
5422           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
5423           hasn't been handled by any windows. When creating and moving windows, X
5424           wants the location of the entire window, but the size of the client
5425           window, so add TranslateClientRectangleToXClientRectangle,
5426           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
5427           to cope with this, and call them before every window creation and move.
5428           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
5429           removing DeriveStyles). In AddConfigureNotify don't do anything if the
5430           hwnd is a zombie (fixes the BadWindow we were getting while running the
5431           tests), always calculate the offsets when it's a parentless window, not
5432           only when reparented, and translate the window size, since we're getting
5433           the client size of the whole window, excluding entire window.
5434         * Theme.cs: Added BorderSizableSize.
5435         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
5436           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
5437         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
5438           Fake the window styles here instead of in XplatUIWin32 so that all
5439           back-ends get the same window styles (and it's Form that's deciding when
5440           to use wm, not the Win32 backend anyways)
5441         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
5442           they are now passed a CreateParams and they only use Style and ExStyle
5443           to determine the rectangles (they should now work just like
5444           Win32AdjustWindowRectEx - though quite a few special cases are probably
5445           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
5446           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
5447           sizes) are taken from the current theme. Added a GetBorders helper
5448           function that will return the borders for any given CreateParams
5449           (including captions and menus), and GetBorderSize that returns the given
5450           border size only.
5451         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
5452           Hwnd.GetClientRectangle.
5453
5454 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5455
5456         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
5457           layout of the mdi children is handled by CreateParams. Fixes
5458           #79964,
5459
5460 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5461
5462         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
5463         processed.
5464
5465         * Form.cs: When active tracker mouse down is not processed, send event 
5466         back to control inside mouse position. [Fixes #81227]
5467
5468 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
5469
5470         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
5471         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
5472         stealing focus from the active form on Windows.  (Control will be made
5473         visible in ShowWindow.)
5474
5475 2007-03-29  Mike Kestner  <mkestner@novell.com>
5476
5477         * ImageList.cs : add internal Changed event.
5478         * ListView.cs : hook up to StateImageList.Changed to perform
5479         invalidations when the the state icon list changes. [Fixes #81191]
5480
5481 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
5482
5483         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
5484         to prevent tooltips from stealing focus from the active form on Windows.
5485
5486 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5487
5488         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
5489
5490         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
5491
5492 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5493
5494         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
5495         balloons.
5496
5497 2007-03-29  Jackson Harper  <jackson@ximian.com>
5498
5499         * TextControl.cs: When deleting text from non multiline textboxes,
5500         we need to update the entire document, because line offsets will
5501         be shifting.
5502
5503 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5504
5505         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
5506         added to theme, now we can create themes that uses diferent notify engines
5507         like notification-daemon from galago project or growl for Mac OS.
5508
5509 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
5510
5511         * NotifyIcon.cs: Prevent Balloon to show in task bar.
5512
5513 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
5514
5515         * XplatUIX11.cs: Prevent system to open more than one balloon.
5516
5517         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
5518         some compiler warning messages.
5519
5520 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
5521
5522         [Fixes #79149]
5523
5524         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
5525
5526         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
5527         implemented, this methods is used by NotifyIcon.BalloonWindow class.
5528
5529         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
5530         systems.
5531
5532 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5533
5534         * ListViewItem.cs: Forgot to make Invalidate internal.
5535
5536 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5537
5538         * ListView.cs: Add a InvalidateSelection method to
5539         invalidate methods which are currently selected, and call
5540         it when setting FullRowSelect and HideSelection, instead of
5541         calling Redraw.
5542
5543 2007-03-28  Chris Toshok  <toshok@ximian.com>
5544
5545         * XplatUIX11.cs (UnmapWindow): reindent this block.
5546
5547         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
5548         the selection_start if we're moving the selection (that is, not
5549         extending it). Fixes bug #80461.
5550
5551 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5552
5553         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
5554         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
5555         create private ControlCollection.
5556
5557 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5558
5559         * Control.cs: We need to call OnVisibleChanged for our implicit
5560         children as well as our normal children.  Fixes scrollbars in
5561         comboboxes not showing up.
5562
5563 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5564
5565         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
5566         the check for IsHandleCreated first.  The check in CreateHandle is not
5567         good enough because CreateHandle can be overriden, and the override 
5568         should not be called if the handle is already created.
5569
5570 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5571
5572         * ToolStrip.cs: Remove MonoTODO for tooltips.
5573         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
5574         * ToolStripContainer.cs: Add custom ControlCollection class.
5575         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
5576         * ToolStripDropDown.cs: Add some missing properties/methods.
5577         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
5578         * ToolStripItem.cs: Remove MonoTODO for tooltips.
5579         * ToolStripManager.cs: Add IsShortcutDefined.
5580         * ToolStripOverflow.cs: Override LayoutEngine.
5581         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
5582         * ToolStripSeparator.cs: Add ImageKey.
5583
5584 2007-03-28  Jackson Harper  <jackson@ximian.com>
5585
5586         * TextControl.cs: If a char delete removes a line ending, we need
5587         to update the ending style.
5588         - Make sure the line ending calcs get called.
5589
5590 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5591
5592         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
5593           it was making the new code not work. Fixed a typo in the new code
5594           as well. Fixes #79826.
5595
5596 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
5597
5598         * XplatUIWin32.cs:
5599         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
5600         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
5601         - SystrayBalloon method implemented.
5602         [Add support for notifyicon balloon on win32, #79149]
5603
5604 2007-03-27  Mike Kestner  <mkestner@novell.com>
5605
5606         * ThemeWin32Classic.cs : update StateImageList selection to mirror
5607         the ms behavior when only one image is added to the list.
5608         [Fixes #81191]
5609
5610 2007-03-27  Jackson Harper  <jackson@ximian.com>
5611
5612         * TextControl.cs: Improvements to non multiline line ending
5613         drawing/measuing.
5614
5615 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
5616
5617         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
5618
5619 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
5620
5621         * NotifyIcon.cs: 
5622         - Balloon message handling added.
5623         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
5624
5625         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
5626         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
5627         to SystrayBalloon to me like other Systray method, also a
5628         handle parameter added.
5629
5630 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5631
5632         * ListView.cs: Show scrollbars even when items.Count == 0
5633         but the columns Width is bigger than the ListView.Width.
5634         Also, when columns.Count == 0 set layout_wd and layout_ht
5635         to the ClientRectangle values, so we don't show any scrollbar
5636         in that case.
5637
5638 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
5639
5640         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
5641
5642 2007-03-27  Jackson Harper  <jackson@ximian.com>
5643
5644         * RichTextBox.cs: The RTF library decodes the text properly for us
5645         now.
5646
5647 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5648
5649         * ListView.cs: Display HeaderControl even when columns.Count == 0.
5650         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
5651         ListView header (HeaderControl), instead of Control.BackColor.
5652
5653 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
5654
5655         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
5656         Fixes tab control issues where controls would not show up because they
5657         never received their OnVisibleChanged call.
5658
5659 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
5660
5661         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
5662         BalloonTipShown).
5663
5664 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
5665
5666         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
5667         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
5668         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
5669         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
5670         the handle.  Fix WindowState by using the internal variable until we are 
5671         sure that we've been shown.
5672         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
5673         max or min.
5674         [Fixes bug #81198]
5675
5676 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5677
5678         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
5679           (at least borders). Fixes #79386 on Linux (with a small difference
5680           in behaviour: when trying to resize a caption-less window metacity
5681           shows the sysmenu. Resizing is still possible though).
5682         * XplatUIWin32.cs: When setting window styles send request an extra
5683           WM_NCCALCSIZE when it's a form without title (due to no text and no
5684           caption), since Win32 seems to calculate it wrong the first time we
5685           get the message, though the second time things work as they should.
5686         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
5687           newly reparented window might show up unparented. Update
5688           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
5689           there's no title text. Fixes #79386.
5690
5691 2007-03-27  Mike Kestner  <mkestner@novell.com>
5692
5693         * ListBox.cs : don't perform invalidations if the handle hasn't been
5694         created.  [Fixes #80753]
5695
5696 2007-03-27  Mike Kestner  <mkestner@novell.com>
5697
5698         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
5699         [Fixes #80428]
5700
5701 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
5702
5703         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
5704         needed to implement Balloon.
5705
5706 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5707
5708         * ListViewItem.cs: In the constructors that take
5709         an array of strings, don't use ListViewSubItemCollection.AddRange
5710         method to add items, since we need to have a different behaviour (in
5711         the constructors we add an item for each null string, opposed to
5712         the behaviour of AddRange, which adds nothing).
5713
5714 2007-03-26  Andreia Gaita  <avidigal@novell.com>
5715
5716         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
5717
5718 2007-03-26  Jackson Harper  <jackson@ximian.com>
5719
5720         * TextControl.cs: Draw and measure line endings when in non
5721         multiline mode.
5722         - When searching the text, count the end of the last line as a
5723         word boundary.
5724
5725 2007-03-26  Jackson Harper  <jackson@ximian.com>
5726
5727         * RichTextBox.cs: The selection_start and selection_end don't
5728         really track the correct tags for the selection. So we'll manually
5729         compute the correct tag here.
5730
5731 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5732
5733         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
5734           and Continuous styles. Fixes #79469.
5735
5736 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
5737
5738         * ToolStrip.cs: Implement Tooltips.
5739         * ToolStripItem.cs: Create internal method for determining tooltip.
5740
5741 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
5742
5743         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
5744
5745 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
5746
5747         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
5748         it prevents a problem thak keeps icon visible after application 
5749         closes on win32.
5750
5751 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
5752
5753         * NotifyIcon.cs: Balloon properties and methods created.
5754
5755         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
5756         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
5757
5758 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
5759
5760         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
5761
5762 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
5763
5764         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
5765         parameter indicates which aspects were explicit/user-set.
5766         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
5767
5768 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
5769
5770         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
5771         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
5772         SmallChange, and Value (2.0).
5773         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
5774
5775 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5776
5777         * ListView.cs: Always set item_control.Width in LayoutDetails
5778         if View is Details. Setting it later in CalculateScrollBars
5779         in a not-so-corner scenario (the sum of columns width is
5780         not bigger than the ListView width when handle is created, and then
5781         that sum gets bigger by increasing the width of the columns)
5782         causes a very weird recursion path (which shouldn't be happening,
5783         since header_control sets it in CalculateScrollBars too). This bug
5784         appeared after Chris' fixes for handle created issues, so probably
5785         it's related to some handle-creation time.
5786
5787 2007-03-23  Chris Toshok  <toshok@ximian.com>
5788
5789         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
5790         case where there's an add row, just so we don't end up in a case
5791         where it's not displayed (this happens when the row is partially
5792         obscured).  Fixes bug #79574.
5793
5794 2007-03-23  Jackson Harper  <jackson@ximian.com>
5795
5796         * TextControl.cs:
5797         * TextBoxBase.cs:
5798         * RichTextBox.cs: Preserve line endings in the lines text buffer,
5799         also added an enum that represents the line ending type. 
5800
5801 2007-03-23  Andreia Gaita  <avidigal@novell.com>
5802
5803         * NumericUpDown.cs: Fix logic so Text and Value properties are not
5804         messed with in every method call, but only from DownButton, 
5805         UpButton, UpdateEditText() and ValidateText. Fixes #80346
5806
5807 2007-03-23  Chris Toshok  <toshok@ximian.com>
5808
5809         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
5810         format objects if the format spec is "".  Fixes bug #80889.
5811
5812 2007-03-22  Miguel de Icaza  <miguel@novell.com>
5813
5814         * ToolStripPanel.cs (Join): added stubs to build PDN3
5815
5816         * Control.cs (AutoScrollOffset): Add.
5817
5818         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
5819         property, its only implemented for Win32, on X11 it defaults to
5820         some hardcoded value.
5821
5822         * ToolStripItem.cs (AllowDrop): Add property
5823
5824 2007-03-22  Mike Kestner  <mkestner@novell.com>
5825
5826         * ListView.cs : in FullRowSelect Details mode, only enable box
5827         selection if the user clicks over the "item" column outside of the
5828         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
5829
5830 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5831
5832         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
5833           handle is not created yet.
5834         * Form.cs: Select: Don't call CreateHandle if the handle is already
5835           created, avoids a stack overflow on Windows when we are recreating
5836           controls.
5837         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
5838           they are made visible, and override AfterTopMostControl to keep
5839           them on top when other controls are brought to front.
5840           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
5841           or force_*scroll_visible is true (old implementation always shows
5842           scrollbars when needed, no matter what auto_scroll was set to).
5843         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
5844           IsHandleCreated check.
5845
5846 2007-03-22  Andreia Gaita  <avidigal@novell.com>
5847
5848         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
5849         row or col separator.
5850         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
5851
5852 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
5853
5854         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
5855
5856 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
5857
5858         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
5859         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
5860         every time. Fixes #80410.
5861
5862 2007-03-22  Chris Toshok  <toshok@ximian.com>
5863
5864         * BindingSource.cs (AddNew): partially implement.
5865
5866         remove a couple of NotImplementedException's
5867         to get bug #81148 closed.
5868
5869 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
5870
5871         [Fixes #80380]
5872         
5873         * Control.cs:
5874         - UpdateCursor method added to update the screen cursor.
5875         - GetAvailableCursor method added to return cursor for enabled tree,
5876         it searches for cursor on control and it's parent's for enabled control.
5877         - Call UpdateCursor method on setter of Cursor property.
5878         - On setter of Enabled call UpdateCursor when it is false, we need to
5879         change cursor to normal (or to this parent cursor) because cursor 
5880         setting theres no effect to disabled controls.
5881         - Some minor source changes to follow the coding style guidelines.
5882
5883         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
5884         controls.
5885
5886 2007-03-22  Chris Toshok  <toshok@ximian.com>
5887
5888         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
5889         generates.
5890
5891 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5892
5893         * XplatUIX11.cs: Implement default locations for forms.
5894         * Form.cs: Completely rework startup location for forms. Fixes #79964.
5895         * Hwnd.cs: Add previous_child_startup_location (to track the current
5896           startup location for any child forms of the current form) and
5897           previous_main_startup_location (to track the startup location for
5898           the current toplevel form).
5899
5900 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
5901
5902         * Control.cs: Don't trigger a layout if an implicit control is added
5903         that isn't visible.  Also, don't notify the owner when an implicit control
5904         is added.  (Owners shouldn't even know about their implicit controls.)
5905
5906 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
5907
5908         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
5909         to save some re-layouts.
5910
5911 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
5912
5913         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
5914         [Fixes #81203]
5915
5916 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
5917
5918         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
5919         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
5920
5921 2007-03-21  Mike Kestner  <mkestner@novell.com>
5922
5923         * ListView.cs : disable selection update for non-left button clicks
5924         with mods and over selected items.  [Fixes #80524]
5925
5926 2007-03-20  Jackson Harper  <jackson@ximian.com>
5927
5928         * TextControl.cs:
5929         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
5930         \r\r\n, \n.
5931
5932 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5933
5934         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
5935           very probably a more complicated calculation there. Update the
5936           textbox' ForeColor and BackColor when the ComboBox' colors are
5937           changed. Change the border change in LayoutComboBox to only affect
5938           the textbox, not all the calculations there. Seems to fix most of
5939           #79436.
5940
5941 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5942
5943         * ComboBox.cs: Handle Home and End keys as well as all combinations of
5944           modifiers + navigation keys as input keys, enables advanced text
5945           selection in the combobox (like Shift+Left Arrow for instance).
5946           ComboTextBox now overrides Focused and returns whatever
5947           ComboBox.Focused returns, since it really should be focused
5948           whenever the ComboBox is. Fixes #80795. Also make the border around
5949           the text box one pixel bigger, as mentioned in #79436.
5950
5951 2007-03-20  Jackson Harper  <jackson@ximian.com>
5952
5953         * TreeView.cs: Don't offset the images, this was causing some
5954         artifacts when expanding/collapsing with images that were the
5955         exact height of the treenode.
5956
5957 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5958
5959         * TrackBar.cs: Query the theme for the correct value when the mouse
5960           moves and the thumb is pressed. 
5961         * Theme.cs: Added TrackBarValueFromMousePosition
5962         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
5963           implementation was updating the trackbar value when drawing, now
5964           the drawing methods only draw. Fixes #80900. Refactored the
5965           calculations out to TrackBarValueFromMousePosition and
5966           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
5967           according to the mouse position whenever it wants to. Changed the
5968           light coloured pen when drawing the thumb from ControlLight to
5969           ControlLightLight, because the ControlLight is the same colour as
5970           the background so the 3D effect is lost. 
5971
5972 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5973
5974         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
5975         defined. Fixes #80784.
5976
5977 2007-03-20  Marek Habersack  <mhabersack@novell.com>
5978
5979         * ContextMenuStrip.cs: align with the change introduced in
5980         revision 74664.
5981
5982 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5983
5984         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
5985         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
5986         in SetTopmost.
5987
5988 2007-03-19  Chris Toshok  <toshok@ximian.com>
5989
5990         * Control.cs (WmPaint): don't make use of the Handle property
5991         after an event is emitted, as the user could have closed the
5992         form/destroyed the control.  Store the Handle in a local variable
5993         and make use of that.  Fixes bug #80768.
5994
5995 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5996
5997         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
5998         behavior in X11 environments.
5999
6000 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6001
6002         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
6003         because on setter of topmost we dont call SetTopmost when handle is not
6004         created.
6005
6006 2007-03-20  Jackson Harper  <jackson@ximian.com>
6007
6008         * TextControl.cs: Need to use SelectionLength () not
6009         selection_length, since that var is reset to -1.
6010         - Draw the caret when we don't have focus.
6011         * TextBox.cs: The selectall actually doesn't occur until the first
6012         focus.
6013         * TextBoxBase.cs: Need to update the caret position after a
6014         selectall.
6015         
6016 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6017
6018         * ListView.cs: Enable scrolling when using Tile view.
6019
6020 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6021
6022         [Fixes #80902]
6023
6024         * XplatUIDriver.cs: Abstract SetOwner method created.
6025
6026         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
6027         must be implemented and was masked as todo.
6028
6029         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
6030         GWL_HWNDPARENT.
6031
6032         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
6033         cheking for null owner to remove transient. The SetTopmost will be change
6034         on a decond step.
6035
6036         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
6037         SetTopmost. Now owned forms will work properly in win32 and X11.
6038
6039 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6040
6041         * MdiWindowManager.cs: Update function name.
6042         * Form.cs: After closing a form MdiParent is always null.
6043         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
6044           better what it should do: necessary book-keeping when the form is
6045           closed, it should not close the form itself.
6046
6047 2007-03-19  Andreia Gaita  <avidigal@novell.com>
6048
6049         * ListViewItem.cs: Fix back and fore color. The subitems only
6050         use their own colors if they are set, otherwise use the listview's
6051         colors. Don't set default colors on constructor for subitem.
6052         Fixes #79315.
6053
6054 2007-03-19  Mike Kestner  <mkestner@novell.com>
6055
6056         * ListView.cs : make box selection for Details views with 
6057         FullRowSelect conform to MS behavior when clicking in the "item" 
6058         column and clicking outside the defined columns.
6059         [Fixes case 5-6 of #80374]
6060
6061 2007-03-19  Chris Toshok  <toshok@ximian.com>
6062
6063         * ScrollableControl.cs: create the controls from within the ctor,
6064         but don't actually add them until our handle is created.  this
6065         fixes a NRE possibility jpobst found (if you override OnLayout in
6066         a subclass, it's called before your ctor).  Also, add a
6067         IsHandleCreated guard to UpdateSizeGripVisibility as well.
6068
6069 2007-03-19  Jackson Harper  <jackson@ximian.com>
6070
6071         * TextBox.cs: Reduce the amount of invalidation we do.
6072         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
6073         some of them are true by default on MS.
6074         - Add some functions to reduce the amount of invalidates we do.
6075         * TextControl.cs: Less invalidation.
6076
6077 2007-03-19  Chris Toshok  <toshok@ximian.com>
6078
6079         [ Fixes #81773, and *seems* to fix #81553 as well ]
6080
6081         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
6082         AccumulateDestroyedHandles.  We need to do it *after* we send
6083         WM_DESTROY, as the user's code can access Control.Handle in
6084         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
6085         move the WM_DESTROY/zombie handling to before the call to
6086         XDestroyWindow.  For some reason without this ordering
6087         FormTest.RecreateHandle hangs.  This ordering is semantically
6088         equivalent, however, as XDestroyWindow is async anyway.
6089
6090 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
6091
6092         * RichTextBox.cs: Reset backcolor_set after setting default.
6093
6094 2007-03-19  Chris Toshok  <toshok@ximian.com>
6095
6096         * ScrollableControl.cs: the scroll position should not effect the
6097         canvas size.  commit patch from georgegiolfan@yahoo.com, which
6098         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
6099         
6100 2007-03-19  Chris Toshok  <toshok@ximian.com>
6101
6102         * ScrollableControl.cs: clean this up a bit.  create the
6103         scrollbars in the ctor and just show/hide them as needed.  Also,
6104         make hscroll_visible/vscroll_visible internal to Recalculate, and
6105         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
6106         everywhere else.  This seems to fix the scrollbars appearing
6107         beneath the content for me (i have *no* idea why that is,
6108         however.)
6109
6110 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
6111
6112         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
6113         some redundacy for stuff in Anchor and Dock that base will take care of.
6114         [Fixes #80762]
6115
6116 2007-03-19  Mike Kestner  <mkestner@novell.com>
6117
6118         * ListView.cs : make box selection for Details views without 
6119         FullRowSelect dependent on the text bounds, not item bounds.
6120         * ListViewItem.cs : add an internal property to obtain the TextBounds
6121         in Details view.  [Fixes case 1-4 of #80374]
6122
6123 2007-03-19  Andreia Gaita  <avidigal@novell.com>
6124
6125         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
6126         we're < 2.0. #78448 && #80316
6127
6128 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
6129
6130         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
6131         have the same style available as the previously selected one.  Also,
6132         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
6133
6134 2007-03-19  Jackson Harper  <jackson@ximian.com>
6135
6136         * TextControl.cs: Add an alignment property that all new lines
6137         will be given.
6138         - Make sure to use the align shift when calculating the line's X
6139         position.
6140         * TextBox.cs: Set the alignment on the document as well as on all
6141         the document lines.
6142
6143 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6144
6145         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
6146           throw if setting the parent of an mdichild that already has an
6147           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
6148           AssemblyProductAttribute in the assembly, use the type's namespace (as
6149           MS seems to do). CreateControl: don't create the handle if the control
6150           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
6151           create handle if the control is not a form. Change FocusInternal to
6152           virtual so that it can be overriden by Form.
6153         * TextBox.cs: Update call to FocusInternal.
6154         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
6155           form is not a toplevel form when it's a mdi child, so update is_toplevel
6156           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
6157           hasn't been created. Show (IWin32Window): Don't allow this overload for
6158           toplevel windows. CenterToParent/CenterToScreen/Select: create the
6159           handle as MS does. SetVisibleCore: if called on a MdiChild and the
6160           parent isn't visible yet, save the visibility and restore it when the
6161           parent is made visible.
6162         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
6163           methods, since the visibility of the scrollbars can be changed from
6164           several places, not only from AutoScroll.
6165           [Fixes #81179]
6166
6167 2007-03-19  Jackson Harper  <jackson@ximian.com>
6168
6169         * RichTextBox.cs: Enable shortcuts by default.
6170         * TextBoxBase.cs: Add conditional shortcuts.  
6171
6172 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
6173
6174         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
6175
6176 2007-03-19  Chris Toshok  <toshok@ximian.com>
6177
6178         [ Fixes bug #80604]
6179         
6180         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
6181         swallow the message we're waiting on, instead of delivering it, as
6182         this is only used for the WM_SHOWWINDOW raised from
6183         MapWindow/UnmapWindow, and the message needs to be generated
6184         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
6185         before doing the Map/Unmap.  Also make sure that the Hwnd is still
6186         alive after the message has been handled.
6187
6188         *before* the window is shown.
6189
6190         * Control.cs (CreateControl): guard a few more things inside the
6191         if (!is_created) block, as we might end up being called again -
6192         yay .net.
6193         (WmShowWindow): call CreateControl if we're showing the control.
6194
6195 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6196
6197         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
6198           controls without a handle if they have any parent with a handle. In
6199           Dispose add a check whether the handle is created or not before
6200           calling BeginInvoke, this removes the need of the extra disposing
6201           parameter (which was bogus anyway since it didn't prevent the
6202           invoke from happening, it only skipped the check for an existing
6203           handle, meaning that the invoke would call on an inexistent
6204           handle).
6205
6206 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
6207
6208         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
6209         appears in taskbar.
6210
6211 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
6212
6213         * MessageBox.cs:
6214         - Fixed a problem that dont show help button for messages with 3 buttons.
6215         - Refactory button size and position calculations, now dont use fixed 
6216         values, also fixed button sizes (#80043) and form's border space.
6217         - AddButton method created, now all other AddButton methods call this one.
6218         - Some other source code cosmetic changes.
6219
6220 2007-03-18  Jackson Harper  <jackson@ximian.com>
6221
6222         * RichTextBox.cs: Don't do this all fonts must match check if
6223         there is only one char selected.
6224
6225 2007-03-18  Jackson Harper  <jackson@ximian.com>
6226
6227         * TreeView.cs: ScrollWindow works properly now, so we don't need
6228         to screw around with the scroll area.  This fixes some artifacts
6229         when expanding and collapsing.
6230
6231 2007-03-18  Jackson Harper  <jackson@ximian.com>
6232
6233         * TextBoxBase.cs: Allow updating the selection position when the
6234         cursor is outside the textarea, but we have a capture.
6235         * TextControl.cs: A special case for when the cursor is outside
6236         the bounds of the TB.
6237         
6238 2007-03-18  Jackson Harper  <jackson@ximian.com>
6239
6240         * TextBoxBase.cs: Remove image pasting code for now.  There is no
6241         way to get an image on the clipboard right now anyways.
6242         * TextControl.cs:
6243         * RichTextBox.cs: Use the new RTF Picture class for pictures.
6244
6245 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
6246
6247         * MessageBox.cs:
6248         - Set window properties in constructor intead of on CreateParams.
6249         - Remove topmost from Window ExStyle.
6250         - Set ShowInTaskbar to false.
6251         - Set form border to FixedDialog.
6252         - Some cosmetic changes and remove unneeded comments.
6253         - It fixes itens 2,3 and 4 of bug #80043.
6254
6255 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
6256
6257         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
6258         none was explicitly set. Fixes part of bug #79949.
6259
6260 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
6261
6262         * ToolStripComboBox.cs: Add AutoComplete*.
6263
6264 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
6265
6266         * ToolStripComboBox.cs: Add FlatStyle.
6267
6268 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
6269
6270         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
6271         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
6272
6273 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6274
6275         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
6276           CheckBox.cs, RadioButton.cs, BindingSource.cs,
6277           DataGridColumnStyle.cs: Remove warnings.
6278
6279 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6280
6281         * Menu.cs: MergeMenu: Check menu argument for null before looping over
6282           it.
6283         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
6284           visibility of mdi child forms. FormSizeChangedHandler: update the
6285           maximized size if size has changed while maximized.
6286         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
6287           creating the handle.
6288         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
6289           avoid creating the handle if not created.
6290         * XplatUI.cs: Update debug output.
6291         * XplatUIStructs.cs: Added ToString's for a couple of structs.
6292
6293 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
6294
6295         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
6296         ProcessCmdKey().
6297         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
6298         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
6299         Implement keyboard shortcuts.
6300
6301 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
6302
6303         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
6304         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
6305         ColorDialog and all derived classes.
6306
6307 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
6308
6309         [ Fixes bug #79828 ]
6310
6311         * ToolBar.cs:
6312         - Rename ToolBarButtonInfor to ToolBarItem.
6313         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
6314         - Maintain an array of ToolBarItem, used instead of ToolBarButton
6315         collection to be able add same button more than one time on a toolbar.
6316         - Refactory all properties and methods to use ToolBarItem. 
6317
6318         * ToolBarButton.cs: 
6319         - Remove all propeties and methods that is now in ToolBarItem.
6320         - Rectangle propery now gets the rectangle from first ToolBarItem to
6321         mimic win32 behavior.
6322         - Size calculation and layout methods also removed.
6323
6324         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
6325         ToolBarItem instead of ToolBarButton to right drawing buttons when
6326         same button/separator was added more than one time to ToolBar.
6327
6328         * ThemeNice.cs: Same as above. 
6329
6330 2007-03-15  Andreia Gaita  <avidigal@novell.com>
6331
6332         * XplatUIX11.cs: Fire extra MouseMove events right after
6333         MouseDown and MouseUp, emulating win32's <censored> behaviour
6334         for apps that rely on it.
6335
6336 2007-03-15  Jackson Harper  <jackson@ximian.com>
6337
6338         * TextControl.cs:
6339         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
6340         it is drawn on the controls client window and there is no NC
6341         area.
6342         - Set the background color to gray on 2.0 when we are readonly.
6343
6344 2007-03-15  Chris Toshok  <toshok@ximian.com>
6345
6346         [ Fixes bug #81144 ]
6347         
6348         * XplatUIX11.cs: implement VirtualScreen independently of
6349         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
6350         property.
6351
6352 2007-03-15  Chris Toshok  <toshok@ximian.com>
6353
6354         * Hwnd.cs: add an internal field for the cached_window_state.
6355
6356         * XplatUIX11.cs: cache the window state, invalidating the cache
6357         (and thus re-querying the X server) only when we see an update to
6358         the _NET_WM_STATE property.
6359
6360 2007-03-15  Chris Toshok  <toshok@ximian.com>
6361
6362         * BindingSource.cs: get a lot of the unit tests working.
6363
6364 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
6365
6366         * Control.cs: Modify UpdateStyles to store distances when bounds >=
6367         0 instead of just bounds > 0.  [Fixes bug #80912]
6368
6369 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
6370
6371         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
6372         and methods.
6373
6374 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
6375         
6376         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
6377         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
6378         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
6379         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
6380
6381 2007-03-15  Chris Toshok  <toshok@ximian.com>
6382
6383         [ Fixes #81101 ]
6384         
6385         * Control.cs: add Ivan's fix for 81101, with a slight modification
6386         - you can set control.Target to null.
6387
6388 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
6389
6390         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
6391         HideDropDown, use Hide instead to prevent an NRE.
6392         [Fixes bug #81147]
6393
6394 2007-03-14  Jackson Harper  <jackson@ximian.com>
6395
6396         * TextBoxBase.cs: Mess with the creation stuff a little. We need
6397         to calculate the document before the handle is created, in some
6398         cases. (Actually just one case).
6399
6400 2007-03-14  Jackson Harper  <jackson@ximian.com>
6401
6402         * TextBoxBase.cs: Need to display the caret after letting the base
6403         wndproc handle the focus methods, because the caret display
6404         methods check the focus state.
6405         - Try to display the caret after updating it's position with SelectWord.
6406         - Don't need to do an immediate update on this recalc, since there
6407         will be an invalidate anyways.
6408
6409 2007-03-14  Jackson Harper  <jackson@ximian.com>
6410
6411         * TreeView.cs: Some workarounds so that we can match event order a
6412         little better.
6413
6414 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
6415
6416         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
6417         #80803. Avoid NullReferenceException when Control does not have
6418         parent. Fixed different blinkstyle issues. Only subscribe to Tick
6419         event a single time. Only draw error icon when control is created and
6420         visible. Fixes failing unit tests.
6421
6422 2007-03-14  Andreia Gaita  <avidigal@novell.com>
6423
6424         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
6425         Selecting events. Fire Leave and Enter events when changing tabs.
6426
6427 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
6428
6429         * TreeView.cs: Add TreeViewNodeSorter.
6430         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
6431
6432 2007-03-14  Chris Toshok  <toshok@ximian.com>
6433
6434         * Form.cs: go ahead and remove the RecreateHandles that jpobst
6435         removed earlier and I had him add back it.  It turns out metacity
6436         *does* in fact handle the MOTIF_WM_HINTS property changing, it
6437         just doesn't redraw the window titlebar until you resize the
6438         window.  This also means we aren't recreating the entire window
6439         hierarchy on X when you change this property.  And it looks better
6440         on windows, too.
6441
6442 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6443
6444         * ListViewItem.cs:
6445         * ListView.cs: Collecting selection information
6446         is now done in SelectedIndexCollection rather than in
6447         SelectedListViewItemCollection. This is done so we can
6448         have the selection information code in one single place
6449         (virtual mode selection information entirely depends on
6450         SelectedIndexCollection).
6451
6452 2007-03-13  Miguel de Icaza  <miguel@novell.com>
6453
6454         * ErrorProvider.cs: Add stubs for ISupportInitialize
6455
6456 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6457
6458         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
6459         in the right order with the right values, from the Checked property, 
6460         just as MS does (instead of triggering them from ListView).
6461
6462         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
6463
6464 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6465
6466         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
6467         the correct handler in OnItemCheck method (ItemCheckEventHandler 
6468         instead of EventHandler). This used to throw an InvalidCastException.
6469
6470 2007-03-13  Jackson Harper  <jackson@ximian.com>
6471
6472         * TextBoxBase.cs: Calculate the document before the handle is
6473         created, so there isn't an extra invalidate called.
6474
6475 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
6476
6477         * Form.cs: Don't set owner in ShowDialog until we are sure
6478         that we aren't going to throw an exception.  [Fixes bug #80773]
6479
6480 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
6481
6482         * TreeView.cs: Make it compile.
6483
6484 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6485
6486         * Control.cs: Another place we don't call SizeFromClientSize.
6487         * Form.cs: Another place we don't call SizeFromClientSize.
6488         [Fixes bug #81125]
6489
6490 2007-03-12  Jackson Harper  <jackson@ximian.com>
6491
6492         * TreeView.cs: Basically emulating some strangness here with
6493         exanding nodes and setting node positions when windows aren't
6494         created.
6495         - Also attempting to walk the node tree less than previously, and
6496         just use visible order calculations for determining offsets.
6497         - oops made scrolling backwards.
6498         * TreeNode.cs: We need to start nodes with a zero visible order,
6499         because the order calcs are based on the first nodes order.
6500
6501 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6502
6503         * Form.cs: Don't exit the program if RecreateHandle is called on
6504         the main form.
6505
6506 2007-03-12  Chris Toshok  <toshok@ximian.com>
6507
6508         * XEventQueue.cs: remove the use of PostQuitState.
6509
6510         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
6511         WM_QUIT message in GetMessage, return false (and if we're in the
6512         nested WaitForHwndMessage, repost the WM_QUIT message).
6513
6514 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6515
6516         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
6517         or the MaximizeBox properties.  [Part of bug #80640]
6518
6519 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
6520
6521         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
6522         no links.
6523
6524 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6525
6526         * ToolStripItem.cs: Fix some tests I broke by checking Visible
6527         instead of visible.
6528
6529 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
6530
6531         * FileDialog.cs: Use text of File name combobox to determine what
6532         files the user selected. Added tokenizer to parse the file names.
6533         Fixes bug #81123.
6534
6535 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6536
6537         * Control.cs: We can't call SizeFromClientSize in the constructor,
6538         but we still need to do the same work, so make an internal version.
6539         [Fixes bug #80621]
6540
6541 2007-03-12  Jackson Harper  <jackson@ximian.com>
6542
6543         * TreeView.cs:
6544         * TreeNode.cs:
6545         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
6546         IsExpanded.
6547
6548 2007-03-12  Jackson Harper  <jackson@ximian.com>
6549
6550         * TextBoxBase.cs: Now that the handles are being created a little
6551         later, we need to make sure that the document is recalculated when
6552         the handle is created.
6553
6554 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
6555
6556         * Theme.cs: GetLinkFont abstract method added.
6557         
6558         * LinkLabel.cs: 
6559         - Remove CalcTrimRectangle, no longer needed.
6560         - Factor also remove, position issues must be fixed in libgdiplus.
6561         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
6562         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
6563         care about font used to draw links.
6564         - Set TabStop to true when control is "Selectable", control is selectable
6565         when have one or more links. Fixes #80501 (test case is also added).
6566         - Set the LinkArea values after links change, LinkArea values must be
6567         based in first link position and size, a test case was created.
6568         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
6569         the attribute must be true LinkArea.Length > 0. The same was applied to
6570         TabStop.
6571         
6572         * ThemeWin32Classic.cs: 
6573         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
6574         in draw method.
6575         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
6576         color change.
6577         - Draw focus rectangle for every parts focused, including parts that 
6578         is on another line, its because regions returns various rectangles
6579         and not only one. Needed to mimic W32 look.
6580         - Uses Graphics.Clip to delimite region painted, it mean that now 
6581         complete text is passed to DrawString, with this we solve layout
6582         issues without create another text renderer.
6583         - Uses Region.Intersect to fix some flickers problems, now only needed
6584         parts will redrawed.
6585         - This changes fixes #79614 and some other unreported issues, on Linux 
6586         some layout problems still remain, the problem is under 
6587         MeasureCharacterRanges but it is an libgdiplus bug.
6588
6589 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
6590
6591         * TextBox.cs: Set for foreground color.
6592         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
6593         this is already done in Control.
6594
6595 2007-03-10  Jackson Harper  <jackson@ximian.com>
6596
6597         * TextBox.cs: Set the background color, but reset the
6598         backcolor_set flag which is just for the user setting the
6599         background color.
6600
6601 2007-03-09  Chris Toshok  <toshok@ximian.com>
6602
6603         * Control.cs: really remove the call to XplatUI.SetVisible from
6604         CreateHandle(), like I said I did when I merged the branch.
6605
6606         * BindingSource.cs: implement some more of this stuff.
6607
6608 2007-03-09  Jackson Harper  <jackson@ximian.com>
6609
6610         * TextBox.cs: Don't explicitly set our background colors.
6611         * TextControl.cs:
6612         * TextBoxBase.cs: Draw readonly text.
6613         - Need to invalidate when backcolor or readonly are changed.
6614         
6615 2007-03-09  Jackson Harper  <jackson@ximian.com>
6616
6617         * TextBoxBase.cs: Don't set the forecolor until the handle is
6618         created.
6619         - Do not raise OnPaint, and removed some old debug code.
6620
6621 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
6622
6623         * ScrollableControl.cs: Fix mouse wheel scrolling.
6624
6625 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
6626
6627         * Control.cs: Wire up MouseDoubleClick event.
6628
6629 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
6630
6631         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
6632         top or bottom.
6633         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
6634         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
6635         item is added.  This logic was moved to ToolStrip.OnItemAdded.
6636         [Fixes bug #81090]
6637
6638 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6639
6640         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
6641
6642 2007-03-08  Jackson Harper  <jackson@ximian.com>
6643
6644         * TreeView.cs: Show the correct image for selected node (this used
6645         to work, not sure how the code got deleted). Also implemented 2.0 feature
6646         SelectedImageKey.
6647
6648 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6649
6650         * ListView.cs:
6651         * ListViewItem.cs: Cache index in items when retrieving them
6652         in VirtualMode.
6653
6654 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
6655
6656         * ToolStripItem.cs: Don't return the explicit_size if we are using 
6657         AutoSize.  Fixes invalidation issue when user has explicitly set a
6658         size and has AutoSize = true.
6659
6660 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
6661
6662         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
6663
6664 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6665
6666         * DataGridView.cs: Remove event handler from DataView when a
6667         DataTable is used as DataSource.
6668
6669 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
6670
6671         * Control.cs: Create internal setter for client_size to allow it to be
6672         set without triggering resizing code.
6673         * Form.cs: Calculate client_size in constructor, only change client_size
6674         in FormBorderStyle property if Handle has been created.
6675         [Fixes #80574, #80791]
6676
6677 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
6678
6679         * SystemInformation.cs: Add TerminalServerSession.
6680
6681 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
6682
6683         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
6684         TreeView code.
6685
6686 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
6687
6688         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
6689         Handle before we were supposed to.  Now checks ActivateOnShow property
6690         in Control.
6691         * Control.cs: Add internal ActivateOnShow property.
6692         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
6693         for ActivateOnShow.
6694         * Hwnd.cs Remove no longer needed no_activate field.
6695
6696 2007-03-07  Jackson Harper  <jackson@ximian.com>
6697
6698         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
6699         2.0 properties
6700         * DrawTreeNodeEventHandler.cs: Add
6701         * DrawTreeNodeEventArgs.cs: Correct default value.
6702         
6703 2007-03-07  Chris Toshok  <toshok@ximian.com>
6704
6705         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
6706         to be called before NativeWindow.WndProc.  Put the HwndCreating
6707         magic there to hook up our Hwnd's to handles.
6708
6709 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
6710
6711         * DataGridView.cs: Comment out debug code.
6712
6713 2007-03-07  Chris Toshok  <toshok@ximian.com>
6714
6715         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
6716         to make the rest of the world happy]
6717
6718         * Control.cs (CreateHandle): there's no need to call
6719         XplatUI.SetVisible here, it's effectively done by
6720         XplatUI.CreateWindow on X now, and always was on windows.
6721
6722         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
6723         shortcircuit out of the loop if we have a message loop running on
6724         this thread.
6725
6726         [Changelog from merge]
6727
6728         2007-03-05  Chris Toshok  <toshok@ximian.com>
6729
6730                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
6731                 causes handle creation.
6732
6733         2007-02-28  Chris Toshok  <toshok@ximian.com>
6734
6735                 * ApplicationContext.cs: Add a flag to make sure we only raise the
6736                 ThreadExit event once (ExitThreadCore can be indirectly called
6737                 from a few places.)  I don't like the additional flag, but it
6738                 makes the event ordering/count correct.
6739
6740                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
6741                 without locking the collection.  An enumerator doesn't give us any
6742                 protection from modification anyway.  Lock the thread hash and
6743                 replace the complicated enumerator loop with a foreach.
6744                 (Application.CloseForms): make internal so it can be called from
6745                 ApplicationContext.  This should probably be moved to MWFThread.
6746                 (Application.ExitThread): don't call MWFThread.Current.Exit()
6747                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
6748                 when the runloop exits (in response to WM_QUIT.)
6749                 (Application.RunLoop): add a comment (and check) for
6750                 context.MainForm being null after setting context.MainForm.Visible
6751                 = true.  This is because you're perfectly free to dispose of a
6752                 form in VisibilityChanged.  Chalk this up to another case where we
6753                 need to synchronously generate WM_ACTIVATE from Control.Show.
6754                 Also, add handling for WM_QUIT here so we'll exit the loop.
6755                 
6756                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
6757                 fact that we don't wait if we're only unmapping the whole_window
6758                 makes me a bit nervous, but it doesn't seem to cause any problems
6759                 yet.
6760
6761                 also, add a comment about the stupid, broken and wrong resetting
6762                 of PostQuitState to false in GetMessage().
6763
6764                 In PostQuitMessage, we need to add a WM_QUIT message to the
6765                 thread's queue.  We use the FosterParent to get the right
6766                 handle/hwnd/queue.
6767
6768                 Lastly, in SetVisible, we need to unmap both windows, since the
6769                 waiting only happens when we're unmapping the client window.  So
6770                 now, the *only* time we unmap just the whole_window is in the hack
6771                 for resizing a control to 0,0.
6772                 
6773         2007-02-21  Chris Toshok  <toshok@ximian.com>
6774
6775                 * Application.cs (CloseForms): rewrite this so that we don't
6776                 modify the list while we're traversing it.
6777
6778         2007-02-20  Chris Toshok  <toshok@ximian.com>
6779
6780                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
6781                 of OnHandleCreated.
6782                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
6783                 handle is created.  otherwise we'll create it here.
6784                 (VerticalScrollEvent): same here.
6785
6786                 * Application.cs (CloseForms): call Form.Dispose, don't post
6787                 WM_CLOSE_INTERNAL.
6788
6789                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
6790                 here. Application should Dispose() of the Form's.
6791
6792                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
6793                 WM_DESTROY as well.
6794                 (MapWindow,UnmapWindow): only actually do the waiting for
6795                 SHOWWINDOW if the control we're dealing with is a Form.
6796                 (CreateWindow): if the control isn't a form, SendMessage
6797                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
6798
6799                 * Control.cs (SetVisibleCore): always use is_visible here, not
6800                 value.  If we use value, we can end up re-setting something
6801                 visible if, for instance, you do Control.Hide() in a delegate
6802                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
6803
6804         2007-02-20  Chris Toshok  <toshok@ximian.com>
6805
6806                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
6807                 the message we need.  PeekMessage returning false should not be a
6808                 condition under which we exit the loop.
6809
6810         2007-02-15  Chris Toshok  <toshok@ximian.com>
6811
6812                 * Control.cs (Refresh): only refresh if we've got a handle and are
6813                 visible.
6814                 (CreateAccessibilityInstance): CreateControl() here.
6815                 (UpdateChildrenZOrder): complicate the code loop even more by
6816                 taking into account controls that haven't had their handle
6817                 created, and those that aren't visible.  But on the flip side,
6818                 simplify the code by splitting it into two loops.  one which
6819                 builds up the list of child controls we're interested in, and the
6820                 other that sets the z order of those children.
6821
6822         2007-02-14  Chris Toshok  <toshok@ximian.com>
6823
6824                 * Control.cs: Control.AccessibilityObject causes the control to be
6825                 created, not just the handle.
6826
6827         2007-02-14  Chris Toshok  <toshok@ximian.com>
6828
6829                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
6830                 problem on X where a window might have its handle created (and be
6831                 visible) while the window is unmapped.  calling XConfigureWindow
6832                 on an unmapped window is bad, and generates X errors.
6833
6834         2007-02-13  Chris Toshok  <toshok@ximian.com>
6835
6836                 * Control.cs (CreateHandle): don't loop over our children setting
6837                 their parent here.  do it when in WndProc when we're shown.
6838                 (UpdateChildrenZOrder): make this internal so we can call it from
6839                 ScrollableControl.
6840                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
6841                 creating its handle.  Also, remove the calls to PerformLayout from
6842                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
6843                 OnVisibleChanged only seems to be called directly here for the
6844                 toplevel control.  It's propagated down the window hierarchy by
6845                 calls to child.OnParentVisibleChanged.
6846                 (OnVisibleChanged): don't do layout here - it's done (oddly
6847                 enough, according to a glance at stack traces on ms.net..) in
6848                 ScrollableControl.
6849                 
6850                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
6851                 z order of our children before calling PerformLayout.
6852
6853         2007-02-12  Chris Toshok  <toshok@ximian.com>
6854
6855                 [big change, fixes #80020]
6856                 
6857                 * AccessibleObject.cs: we need to make owner internal again to fix
6858                 some of ControlAccessibleObject.
6859
6860                 * Control.cs: lots of changes here.  add support for WM_CREATE,
6861                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
6862                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
6863                 we create child controls.  leave the MonoTODO's for the
6864                 accessibility calls, but fix the exceptions so the tests pass.
6865
6866                 Add the InvalidOperationExceptions to Invoke methods, and remove a
6867                 couple of InvokeInternal methods we aren't using.
6868                 
6869                 Also, add a couple of CreateHandle calls in places where we know
6870                 the handles are being created but our code doesn't reference
6871                 .Handle.
6872
6873                 Make SetVisibleCore call OnVisibleChange if the handle isn't
6874                 created.  If the handle is created, we rely on XplatUI.SetVisible
6875                 generating the event synchronously.
6876                 
6877                 Lastly, make sure we don't use this.Handle inside CreateHandle,
6878                 because we can call back into client (and that code can dispose of
6879                 the control).
6880
6881                 * XplatUIStructs.cs: misc/cleanup.
6882
6883                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
6884                 although we don't populate the wParam properly.
6885                 (CreateWindow): generate WM_CREATE.
6886                 (MapWindow,UnmapWindow): make these calls synchronous, at great
6887                 performance expense (particularly in the unmap case), to match
6888                 win32 behavior.
6889
6890                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
6891                 to call it.
6892                 (set_MdiParent): don't recreate the handle unless it's been
6893                 created already.
6894                 
6895                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
6896                 it's created.
6897
6898                 * NativeWindow.cs: this is probably the weirdest part of the
6899                 patch.  We need a way to link up the window being created to the
6900                 WM_CREATE message.  Since we can only be creating one window at a
6901                 time on a given thread, we keep track of a per-thread reference so
6902                 we can dispatch it properly.  We also need to keep track of the
6903                 Hwnd currently being created so that the win32 backend doesn't
6904                 have problems.
6905                 
6906                 * XplatUIWin32.cs: a similar change to the one we made in
6907                 NativeWindow.cs.
6908
6909 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
6910
6911         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
6912         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
6913         to draw the menu shortcut string.
6914
6915 2007-03-07  Jackson Harper  <jackson@ximian.com>
6916
6917         * TreeNode.cs: Add the 2.0 collapse method.
6918
6919 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6920
6921         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
6922
6923 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6924
6925         * DataGridView.cs: Change DataSource will clear column and row
6926         lists. Call Invalidate() to reflect DataSource change.
6927
6928 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6929
6930         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
6931         and a new row is added to it.
6932
6933 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6934
6935         * DataGridView.cs: Add columns when DataSource is en empty list but
6936         is a System.Data.DataView (from a System.Data.DataTable).
6937
6938 2007-03-06  Andreia Gaita  <avidigal@novell.com>
6939
6940         * Label.cs: Implement AutoEllipsis (2.0)
6941
6942 2007-03-06  Jackson Harper  <jackson@ximian.com>
6943
6944         * TreeView.cs: Implement 2.0 TopNode setter property.
6945         - Use a local var instead of the skipped_nodes field for computing
6946         how many nodes to skip.  Otherwise we won't scroll because the
6947         valuechanged handler checks if skipped_nodes is equal to the new
6948         value.
6949         - Implement 2.0 Sort method.
6950         - Add useless 2.0 DoubleBuffer property
6951         - Implement 2.0 LineColors property.  Lets you change the color of
6952         the lines in the tree. Terribly useful for creating non cohesive
6953         desktops.
6954         - Implement 2.0 image key feature.
6955
6956 2007-03-06  Jackson Harper  <jackson@ximian.com>
6957
6958         * TreeView.cs: We can't get the bounds of the nodes before raising
6959         the AfterSelect event, because that event could change the node's
6960         bounds (scrolling, font change, etc).
6961
6962 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6963
6964         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
6965         * Form.cs: Don't recreate handle when creating FormWindowManager, just
6966           update window styles. In CreateParams us VisibleInternal instead of
6967           VIsible to get the actual visible flag set for this form.
6968         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
6969           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
6970           handle the case when the form is already maximized, in which case
6971           it should be restored. Fixes #81043.
6972
6973 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6974
6975         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
6976
6977 2007-03-05  Jackson Harper  <jackson@ximian.com>
6978
6979         * TreeViewHitTestInfo.cs: implement.
6980
6981 2007-03-05  Jackson Harper  <jackson@ximian.com>
6982
6983         * InternalWindowManager.cs: class status fix.
6984
6985 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6986
6987         * InternalWindowManager.cs: All windows that have a parent
6988         are confined to their parent when they're being moved.
6989         Fixes #80822.
6990
6991 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
6992
6993         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
6994         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
6995
6996 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6997
6998         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
6999           buttons invisible before deciding which ones should be visible
7000           (fixes minimize/maximize buttons showing up in toolwindows). Remove
7001           an unused variable.
7002         * InternalWindowManager.cs: Remove warning.
7003
7004 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7005
7006         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
7007         to throw an InvalidOperationException is virtual mode is being used.
7008
7009 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
7010
7011         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
7012         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
7013         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
7014         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
7015         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
7016         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
7017
7018 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7019
7020         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
7021           driver.KeyboardDelay from XplatUI.KeyboardDelay 
7022         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
7023           (patch by Sergey Volk)
7024
7025 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7026
7027         * ToolWindowManager.cs: Added, contains logic for
7028           tool windows.
7029         * CreateParams.cs: Add a few helper methods and an
7030           internal variable to know which control the CreateParams belongs
7031           to.
7032         * Control.cs: Call Form.ChangingParent when the
7033           parent is about to be changed.
7034         * XplatUIX11.cs: DeriveStyles (): Set
7035           caption_height for all windows that have captions and are children.
7036           Update to use ToolWindowManager instead of InternalWindowManager
7037           for ToolWindows.
7038         * XplatUIWin32.cs: Set fake window styles for all
7039           windows that have window managers.
7040         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
7041           now duplicated for mdi windows when they are
7042           maximized, first for the buttons the window itself has, then for
7043           the buttons that appear in the menu bar. Makes things a little
7044           easier). Updated UpdateWindowDecorations, SetWindowState and the
7045           mouse eventhandlers accordingly.
7046         * Form.cs: Add ChangingParent (), contains the
7047           logic of what should happen when the parent changes. In MdiParent
7048           don't set things that ChangingParent () is doing. When handling
7049           WM_CLOSE, we can close the form if there are any other modal forms
7050           and the current form is a descendent of the modal form.
7051         * InternalWindowManager.cs: A lot of refactoring,
7052           the title buttons are now extracted to a separate container class
7053           that takes care of all button code (clicks, tooltips, etc). Moved
7054           Iconic|Maximized|Normal Bounds properties to this class from
7055           MdiWindowManager, so that the window state logic can succeed for
7056           other than mdi wm's. Implemented general window state change logic.
7057           Moved CreateButtons to ThemeWin32Classic, since the theme might
7058           override which buttons are available when as well as the exact
7059           location.
7060         * FormWindowManager.cs: Added, contains logic for
7061           normal forms.
7062         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
7063           which buttons go where (and if they are at all visible). 
7064           Removed special handling of maximized windows, since they aren't special. 
7065           In DrawManagedWindowDecorations don't try to draw the text if it is
7066           empty.
7067         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
7068           use whatever the wm gives us.
7069
7070 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
7071
7072         * ButtonBase.cs: Add 2.0 properties.
7073         * Button.cs: Override Draw for 2.0.
7074         * Control.cs: Add Entered and Selected properties.
7075         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
7076         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
7077         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
7078         buttons.
7079         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
7080
7081 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
7082
7083         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
7084
7085 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
7086
7087         * XplatUIWin32.cs: Register a new class with Windows each time we get
7088         a new ClassStyle.  [Fixes bugs #79432, #80817]
7089         * Controls.cs: Set the correct ClassStyle in CreateParams.
7090         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
7091
7092 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
7093
7094         * ListView.cs: Add fireEvent argument to ReorderColumn since the
7095         ColumnReordered event must not be signaled when modifying DisplayIndex
7096         of a ColumnHeader. Added internal ReorderColumns method which takes
7097         care of drawing, and updating the internal DisplayIndex of the
7098         ColumnHeader. Added AddColumn method which is invoked from
7099         ColumnHeaderCollection when adding or inserting columns, and which
7100         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
7101         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
7102         Recalculated dispay indices after removing a ColumnHeader.
7103         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
7104         match MS. Allows last display index to be returned after ListView
7105         is disposed. Update actual location of ColumnHeader when DisplayIndex
7106         is modified.
7107
7108 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
7109
7110         * LinkLabel.cs: Improve CalcTrimRectangle.
7111         
7112         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
7113
7114 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
7115
7116         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
7117         get rectangle as a result value.
7118
7119 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
7120
7121         * LinkLabel.cs: Theres some diferences between rectangle return from 
7122         MeasureCharacterRanges and the area used for DrawString to fix this 
7123         CalcMeasurementFactor method was created, it calcules the diferences
7124         to be use later to adjust rectangle in draw operations. Fixes #80473.
7125         
7126         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
7127         to adjust draw rectangle.
7128
7129 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
7130
7131         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
7132         text and some other changes to reduce and optimize source code.
7133
7134 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
7135
7136         * RadioButton.cs: Implement 2.0 event.
7137         * RelatedImageListAttribute.cs: Implement new class.
7138
7139 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
7140
7141         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
7142
7143 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
7144
7145         * CheckBox.cs: Implement 2.0 functionality.
7146
7147 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7148
7149         * ListView.cs: Refactor Add and AddRange methods of
7150         ListViewItemCollection, to not update the ListView
7151         everytime an item is added in AddRange. Also move the update
7152         code to a new CollectionChanged method, and call it
7153         from other methods that need it as well (this should also fix some
7154         bugs when Sorting is used).
7155
7156 2007-02-27  Jackson Harper  <jackson@ximian.com>
7157
7158         * TextControl.cs: Try to never let the caret stay in a non-text
7159         tag.
7160         * TextBoxBase.cs: Update the caret.
7161
7162 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
7163
7164         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
7165         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
7166         delete POINT structure, duplicate of one in XplatUIStructs.
7167         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
7168
7169 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
7170
7171         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
7172         edit box since otherwise the Label would immediately be set (even if
7173         the user did not modify the label). In OnKeyDown set Handled to true
7174         if Return or Escape was pressed. In ColumnHeaderCollection unlink
7175         columns that are to be removed. In ListViewItemCollection unlink items
7176         that are to be removed.
7177
7178 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
7179
7180         * TextRenderer.cs: If we set a GDI clip region, we need to clear
7181         it when we are done.  [Fixes bug #80949]
7182
7183 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7184
7185         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
7186
7187 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7188
7189         * ListView.cs: I forgot to commit the changes for ListView 
7190         in my previous patch.
7191
7192 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7193
7194         * Clipboard.cs: Partially implement an overload of SetDataObject.
7195         * Form.cs: Implement ShowWithoutActivation.
7196         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
7197
7198 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7199
7200         This is a first set of changes to make the Virtual mode works,
7201         by avoiding the retrieval of ListViewItem instances until
7202         draw time.
7203
7204         * ListView.cs: Store item position in the ListView instead of the
7205         ListViewItem, this way we don't request the Bounds property of
7206         ListViewItem inside the ListView calculations, as well as cache the item
7207         size in item_size field. Store indexes instead of ListViewItem
7208         instances in the matrix used by icon view. Add a ItemMatrixLocation
7209         struct to hold the row and col info of the matrix info.
7210
7211         * ListViewItem.cs: Don't store the location anymore, and only cache
7212         the rectangles for GetBounds. Use the ListView.GetItemLocation
7213         method to retrieve the actual location.
7214
7215 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7216
7217         * TextRenderer.cs: Add clipping support, thanks to George.
7218         [Fixes bug #80949]
7219
7220 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
7221
7222         * ListViewItem.cs: Cancel label edit when item is removed from 
7223         ListView.
7224         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
7225         event before the edit textbox is displayed.  Added CancelEdit method
7226         which is used end to editing while ignoring the value set by the
7227         user. In EndEdit, set focus to ListView to avoid losing focus to
7228         other controls. In ListViewItemCollection.Clear, cancel editing of
7229         any of the items.  In Remove, cancel editing of item being removed.
7230         Avoid udplicate code by modifing RemoveAt to invoke Remove.
7231
7232 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
7233
7234         * FileDialog.cs: Update FSEntry when move is successful. Fixes
7235         bug #80948.  
7236
7237 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
7238
7239         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
7240         compatible with non X11 systems. Fixes #80901.
7241
7242 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
7243
7244         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
7245         whether the item should be unselected and reselect. We do no want this
7246         when we're starting to edit the label. Do not fire the 
7247         SelectedIndexChanged event from ListView when its already been fired
7248         by modifying ListViewItem.Selected. Fixes bug #80943.
7249
7250 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7251
7252         * TextRenderer.cs: Previos commit logic was backwards.
7253
7254 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7255
7256         * TextRenderer.cs: Don't add padding on MeasureText if we were
7257         sent the NoPadding flag.
7258
7259 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
7260
7261         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
7262         after DrawButton. To prevent image overlaps button borders SetClip and 
7263         ResetClip added before and after draw image. Fixes #79129.
7264
7265 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
7266
7267         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
7268         window size, it fix problem when you run under win32 that theres
7269         Size diferent than ClientSize. Also fix controls size and positions
7270         to mimic Win32. Fixes #80837.
7271
7272 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
7273
7274         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
7275         menu area to fix some problems for non X11 systems. Fixes #80613.
7276
7277 2007-02-22  Jackson Harper  <jackson@ximian.com>
7278
7279         * TreeNode.cs: When a node is expanded, set its is_expanded flag
7280         even if it doesn't have any children.
7281
7282 2007-02-22  Jackson Harper  <jackson@ximian.com>
7283
7284         * TreeView.cs: Calculate the top node 'on the fly', this
7285         eliminates issues where you need to click on the tree before
7286         scrolling it to get the top node computed correctly.
7287         * TreeNodeCollection.cs: We don't need to mess with the top node
7288         anymore.
7289
7290 2007-02-22  Jackson Harper  <jackson@ximian.com>
7291
7292         * DataGridViewRow.cs: Fix typo so height can actually be set.
7293         Patch by Peter Grimm.
7294
7295 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
7296
7297         * FileDialog.cs: Fixed support for renaming files and directories.
7298         * ListView.cs: Do not lose focus when edit is canceled. Process
7299         Escape as regular key (to prevent closing of dialogs).
7300
7301 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
7302
7303         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
7304         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
7305
7306 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
7307
7308         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
7309         did not modify label.
7310         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
7311         modified the text. Reset Label when user presses Escape in edit mode.
7312         Move focus to ListView after having cancelled or finished editing the
7313         label.
7314
7315 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
7316
7317         * ComboBox.cs: Removed unnecessary initializations. Marked items field
7318         private. Clear textbox when Text is set to null and SelectedIndex is
7319         already -1.
7320         * FileDialog.cs: Removed unnecessary initializations. Removed 
7321         workarounds for ComboBox bugs that are now fixed. Modified
7322         DefaultExt, InitialDirectory and Title property to change null to
7323         zero-length string in getters. Avoid directly accessing fields.
7324
7325 2007-02-20  Jackson Harper  <jackson@ximian.com>
7326
7327         * TextControl.cs: Remove RecalAlignments call, that was some
7328         debugging leftovers.
7329         - Don't use the line indent when we shouldn't.
7330         * RichTextBox.cs: Add support for paragraph left indents.
7331
7332 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7333
7334         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
7335         Seems like the class status pages doesn't catch params differences.
7336
7337 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
7338
7339         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
7340
7341 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
7342
7343         * ComboBox.cs: Setting Text should have no effect if item text of
7344         selected item exactly matches value. First lookup text using
7345         case-sensitive comparison, and fallback to case-insensitive comparison.
7346         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
7347         allow startIndex to be last index. Changed ArgumentOutOfRangeException
7348         paramname to match MS. Restart from first item if string is not found
7349         after startIndex. Fixed paramname of ArgumentNullException that is
7350         thrown for null value in ObjectCollection.Contains.
7351
7352 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
7353
7354         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
7355
7356 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7357
7358         * ListControl.cs: In SelectedValue use value.Equals to compare for
7359         equality instead of ==, otherwise it will fail for strings.
7360         Fixes #80794.
7361
7362 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7363         
7364         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
7365         since the caret won't show up unless ShowSelection is true. 
7366         Fixes #80795.
7367
7368 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7369
7370         * Application.cs: When disabling all forms but the main form, do not
7371           disable any descendants of the main form (such as mdi children or
7372           other parented forms). Fixes #80822 on Windows.
7373         * Form.cs: If we have a parent, set the WS_CHILD style.
7374         * Control.cs: Update the window styles if the control whose parent has
7375           changed is a form (the WS_CHILD style has to be switched).
7376
7377 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
7378
7379         * XplatUIStructs.cs: MsgUIState structure added.
7380
7381 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
7382
7383         * FileDialog.cs: Removed need for separate fileName field. On 2.0
7384         profile, do not check filename(s) for illegal character if filename(s)
7385         were set non-interactively but always check on 1.0 profile. Fixed NRE
7386          in DefaultExt and only strip off first leading dot. Improve exception
7387         message when invalid Filter is set. Do not ignore InitialDirectory if
7388         it does no exist. Store specified Title, and if empty use default
7389         title (depending on type of dialog). Added an internal DialogTitle 
7390         property for retrieving dialog title. Fixed logic of displayed dir to
7391         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
7392         string as its buggy.
7393         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
7394         FileName is a zero-length string (it can never be null). Override 
7395         DialogTitle property to set default title of dialog box.
7396         * SaveFileDialog.cs: Override DialogTitle property to set default
7397         title of dialog box.
7398
7399 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
7400
7401         * FileDialog.cs: Modify default text of filename and filetype labels
7402         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
7403         after we've updated the SelectedIndex. Fixes part of bug #80887.
7404         * SaveFileDialog.cs: Set text of filetype label.
7405
7406 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7407
7408         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
7409         label field. Needed by latest Jackson's fixes for ListView.
7410
7411 2007-02-16  Andreia Gaita  <avidigal@novell.com>
7412
7413         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
7414         print preview images.
7415
7416 2007-02-16  Jackson Harper  <jackson@ximian.com>
7417
7418         * ListView.cs: Make AfterLabelEdit work correctly.
7419         * FileDialog.cs: After changing the name of the folder, we have to
7420         make sure that it is created, or that we pop up an error because
7421         it already exists.
7422
7423 2007-02-16  Jackson Harper  <jackson@ximian.com>
7424
7425         * X11Dnd.cs: Implement aliases on mime handlers, so things like
7426         System.String are mapped to text.
7427         - Handle dataobjects, getting all the possible formats out of them
7428         - We dont need the drag event args before we give feedback. This
7429         allows feedback cursors to be immediate before selections have
7430         been converted.
7431
7432 2007-02-16  Jackson Harper  <jackson@ximian.com>
7433
7434         * TextBoxBase.cs: Modified the method for inserting images to
7435         taking a line and position instead of tag and position.
7436         * RichTextBox.cs: Handle PngBlip data by inserting the png image
7437         into the RTF file.
7438         * TextControl.cs: Allow images to be inserted as the first tag of
7439         a line.
7440         - Fix some off by one issues when we assume the first tag is a
7441         text tag, not an image tag.
7442
7443 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7444
7445         * ListView.cs: Set focus to ListView when ItemControl gets a
7446         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
7447         Fixes part of #80467.
7448
7449 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7450
7451         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
7452           validate Text input (if null or empty string reset Value to default
7453           value). Fixes #80830.
7454
7455 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7456
7457         * ListView.cs: Set owner as null for columns and items when
7458         Dispose is invoked. Fixes #80607.
7459
7460 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
7461
7462         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
7463         showing DropDowns, don't show a Grip when doing Flow layout.
7464         [This fixes the toolbox in PDN 2.72.]
7465         * ToolStripItem.cs: Add Anchor property and some internal properties to
7466         reduces needed changes to FlowLayout.
7467         * ToolStripOverflow.cs: Remove unused variable.
7468         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
7469         use it in the layout calculations.
7470
7471 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7472
7473         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
7474         reported in #79640.
7475         
7476         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
7477         size calculation.
7478
7479 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7480
7481         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
7482         MeasureString format, it can make button very large in some cases, it is
7483         strange but is what win32 do.
7484
7485 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7486
7487         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
7488         size calculation.
7489
7490         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
7491         rendering, the value is based on MenuAccessKeysUnderlined.
7492
7493 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7494
7495         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
7496         for most themes.
7497         
7498         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
7499         
7500         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
7501         and use MenuAccessKeysUnderlined instead.
7502
7503 2007-02-13  Andreia Gaita  <avidigal@novell.com>
7504
7505         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
7506         A selected control would not get a Focus call if:
7507                 - the default active control of the container is the same as
7508                   the one that was selected
7509                 - we are switching from one container to another
7510         Under these conditions, the container being selected already has
7511         an active_control, which is the same as the one being activated, 
7512         so set_ActiveControl would always return and not send the Focus
7513         call. Fix to check if the currently active control of the container
7514         is actually focused.
7515
7516 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
7517
7518         * StatusStrip.cs: Implement the spring layout.
7519         * ToolStripControlHost.cs: Make sure the hosted control's visibility
7520         always matches the host.
7521         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
7522         and TextAfterImage.
7523
7524 2007-02-13  Andreia Gaita  <avidigal@novell.com>
7525
7526         * Control.cs: Code reorganization only.
7527           - Reorganize the WndProc cases so that each case has it's own handling method, 
7528           to help with the no-line-numbering stack traces.
7529           - Formatting changes (it's vstudio's fault, really :p)
7530
7531 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7532
7533         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
7534           Thread.CurrentUICulture to match DateTimePicker's (and MS)
7535           behaviour.
7536
7537 2007-02-12  Jackson Harper  <jackson@ximian.com>
7538
7539         * RichTextBox.cs:
7540         * TextBox.cs: By default we have a non multiline document
7541         - use the multiline property instead of the internal variable
7542         * TextBoxBase.cs: Treat multiline and non multiline the same in
7543         most places.
7544         - Use the documents multiline flag instead of tracking it ourself
7545         * TextControl.cs: Attempt at getting multiline to match MS
7546         behavior.  Lines now track an offset, which is either their X or Y
7547         offset depending on whether or not we are in multiline mode.
7548         - Update all the methods to understand that lines have an X value.
7549         - Fix crash in Undo::Duplicate when empty lines are deleted.
7550
7551 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
7552
7553         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
7554         code moved to properties PreferredHeight and PreferredWidth. It solve the
7555         all problems when preferred sizes must be recalculated. Fixes #80801.
7556
7557 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
7558
7559         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
7560         font height when compatible_text_rendering is false. Partially fix #80801.
7561
7562 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
7563
7564         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
7565
7566 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
7567
7568         * Form.cs: Improved exception messages in ShowDialog.
7569
7570 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
7571
7572         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
7573         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
7574         if not set. Fixes bug #80764. Avoid accessing current_settings field
7575         directly.
7576
7577 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
7578
7579         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
7580         false.
7581
7582         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
7583         public in 2.0 and for easy maintenance and dont break compatibility it is 
7584         internal in 1.1.
7585         
7586 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
7587
7588         * ToolStripItem.cs: Implement using images from ImageList.
7589
7590 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7591
7592         * DateTimePicker.cs: Change default date-formatting culture from
7593           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
7594           seems to be the way MS does it.
7595
7596 2007-02-08  Andreia Gaita  <avidigal@novell.com>
7597
7598         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
7599         (the 6 was cut off on the right side)
7600
7601 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
7602
7603         * Form.cs: Tell MenuStrips to close when the form is clicked.
7604         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
7605         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
7606         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
7607         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
7608         support for Overflow, where items that do not fit are automatically
7609         reparented to a drop down menu.
7610         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
7611         Also: fixes bug #80747.
7612
7613 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7614
7615         * ComboBox.cs: Remove warning (unused code).
7616         * ScrollableControl.cs: Remove warning for 1.1 profile.
7617
7618 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7619
7620         * Form.cs: Remove a warning.
7621
7622 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7623
7624         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
7625           'g' specifier, not documented anywhere, but seems to always show up
7626           as a single space (might have something to do with the DateTime 'g'
7627           specifier, which is the era format, but since DateTimePicker can't
7628           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
7629           won't crash if the format has an unmatched quote. Now shows
7630           single-character formats correctly. Fixes #80744.
7631
7632 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
7633
7634         * StatusStrip.cs: Stretch property needs to call base.Stretch,
7635         not this.Stretch to fix stack overflow. [Fixes bug #80760]
7636
7637 2007-02-07  Chris Toshok  <toshok@ximian.com>
7638
7639         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
7640         background color.  it overwrites the background image we've
7641         already painted.  Fixes #80599.
7642
7643 2007-02-07  Chris Toshok  <toshok@ximian.com>
7644
7645         * DataGrid.cs: return immediately from Edit() when there are no
7646         columns.  Fixes #80662.
7647
7648 2007-02-07  Chris Toshok  <toshok@ximian.com>
7649
7650         * MessageBox.cs: fix #80625.  don't always show the Help button in
7651         2.0.  use the displayHelpButton parameter to determine if we
7652         should show it. Also, make the internal show_help field private.
7653
7654 2007-02-07  Chris Toshok  <toshok@ximian.com>
7655
7656         * Control.cs (SetVisibleCore): check in the proposed patch for
7657         80604, and set is_visible before calling CreateControl.
7658
7659 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
7660
7661         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
7662         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
7663         on it.
7664
7665 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
7666
7667         * MenuAPI.cs: hotkey_active internal field added, it is required because
7668         we need to know when hotkeys must be draw, before this change a keystate
7669         Navigating was used but we can have menu in navigating state without
7670         hotkeys. Fixes #80694.
7671         
7672         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
7673
7674 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7675
7676         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
7677           corresponding events and methods to be internal for 1.1 profile and
7678           public for 2.0 profile (required by SizeGrip).
7679         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
7680           implicit control list). Don't set the size nor the location of the
7681           SizeGrip anymore as it's not needed.
7682         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
7683           draw directly on the captured control (fixes #80656). Removed
7684           ShowGrip (it wasn't used anywhere), redraw (always true), added
7685           GetDefaultSize and GetDefaultRectangle to calculate defaults.
7686         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
7687           be called from SizeGrip.
7688
7689 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7690
7691         * Timer.cs: Throw ArgumentException if Interval <= 0.
7692
7693 2007-02-05  Jackson Harper  <jackson@ximian.com>
7694
7695         * TreeView.cs: We need to check scrollbar visibility when window
7696         visibility is updated, because non visible trees don't ever add
7697         scrollbars.
7698         * Cursor.cs: We want the override cursor to be reset to NULL when
7699         we set current cursor to the default cursor.
7700
7701 2007-02-05  Jackson Harper  <jackson@ximian.com>
7702
7703         * TextControl.cs: Don't have crlfs when we are non multiline.
7704         - Consolidate the line position.
7705
7706 2007-02-05  Jackson Harper  <jackson@ximian.com>
7707
7708         * X11Keyboard.cs: BACK+CTRL gets a special char code.
7709
7710 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7711
7712         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
7713           handling LeaveNotify->NotifyUngrab in order to send
7714           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
7715           after calling XUngrabPointer, so we call WindowUngrabbed directly
7716           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
7717         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
7718           MouseCaptureChanged correctly. Also create handles if changing
7719           Capture (matches MS behaviour).
7720
7721 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7722
7723         * SizeGrip.cs: Make the last change 2.0 only.
7724
7725 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7726
7727         * SizeGrip.cs: If resizing and the capture is lost, revert any size
7728           changes to initial size (fixes #80597).
7729
7730 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7731
7732         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
7733
7734 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7735
7736         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
7737           background) and only allow dragging if enabled. This way the
7738           sizegrip can be used to fill the open square that otherwise would
7739           have been shown in the bottom right corner of ScrollableControl
7740           when ScrollableControl is not suppose to support sizing.
7741         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
7742           sizegrip is shown and enabled, and hook up with necessary events.
7743
7744 2007-02-01  Chris Toshok  <toshok@ximian.com>
7745
7746         * DataGridTextBoxColumn.cs: clean up the
7747         GetFormattedString/GetColumnValueAtRow combination of functions.
7748         Also fix UpdateUI, and the initial state of
7749         IsInEditOrNavigateMode.
7750
7751         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
7752         aren't supposed to scroll the textbox here, we're supposed to
7753         scroll the datagrid.
7754
7755 2007-02-01  Chris Toshok  <toshok@ximian.com>
7756
7757         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
7758         setting the position.
7759
7760 2007-02-01  Chris Toshok  <toshok@ximian.com>
7761
7762         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
7763         here, since the most recent focus fixes keep us from generating
7764         the Leave event when our textbox gets focus.
7765         (Edit): we should be passing null for the column style's
7766         instantText parameter.
7767         
7768 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
7769
7770         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
7771         raised.  Fixes menu text/icons not showing up in PDN.
7772
7773 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7774
7775         * Control.cs: Remove code in constructor that makes every
7776         control with WS_CHILD set have initial location -1, -1.
7777
7778 2007-01-31  Jackson Harper  <jackson@ximian.com>
7779
7780         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
7781         XplatUIX11.
7782         * XplatUIX11.cs: Give teh keyboard to teh dnd.
7783
7784 2007-01-31  Jackson Harper  <jackson@ximian.com>
7785
7786         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
7787         - Remove some debug code.
7788
7789 2007-01-31  Jackson Harper  <jackson@ximian.com>
7790
7791         * XplatUIX11.cs: If you set the override cursor during a grab, it
7792         should actually override the grab cursor.  This comes into play
7793         when you are setting custom cursors in a DND feedback method.
7794
7795 2007-01-31  Jackson Harper  <jackson@ximian.com>
7796
7797         * X11Dnd.cs: Add support for handling the QueryContinue and
7798         GiveFeedback events.
7799         - Cancel drag and drop actions when the escape key is clicked.
7800         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
7801         can handle the ESCAPE key.
7802         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
7803         done when dnd events are continued after the button is released.
7804         - Add a new helper method so that dnd can translate key events.
7805
7806 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
7807
7808         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
7809         make it more obvious what is happening.
7810
7811 2007-01-30  Jackson Harper  <jackson@ximian.com>
7812
7813         * XplatUIX11.cs: Don't break when handling button release in drag
7814         and drop operations. We need that BUTTONUP message to get through
7815         so capture is released.
7816         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
7817         this is handled automatically when the mouse is down.
7818
7819 2007-01-30  Jackson Harper  <jackson@ximian.com>
7820
7821         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
7822         is closed, so we need to make sure that we aren't changing the
7823         dialog result when the OK (Open or Save) button has been clicked
7824         and we are closing the window ourselves.  Note we don't need to
7825         worry about the cache being written in this case, because it was
7826         already done in the previous FilOk call.
7827
7828 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7829         
7830         * DateTimePicker.cs: Remove a warning.
7831         * ComboBox.cs: Remove a couple of warnings.
7832
7833 2007-01-29  Chris Toshok  <toshok@ximian.com>
7834
7835         * XplatUIX11.cs: don't crash, and remove the icon if the user has
7836         set one, if SetIcon is passed a null icon.
7837
7838 2007-01-29  Andreia Gaita  <avidigal@novell.com>
7839
7840         * TextBox.cs: Redraw when the password characters changes
7841         * TextControl.cs: Check if textbox has a password char and draw 
7842         a line of password chars instead of the text in the line. LineTag gets 
7843         an extra Draw() method which allows document.Draw to override the text 
7844         that will be drawn. Removes 1024 char limitation on length of passworded 
7845         lines.
7846
7847 2007-01-29  Jackson Harper  <jackson@ximian.com>
7848
7849         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
7850         single chars is not.
7851
7852 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
7853
7854         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
7855         one pixel.  Fix a StackOverflowException caused by an overload wrongly
7856         calling itself.
7857
7858 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
7859
7860         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
7861         also remove ProcessArrowKey and put the code inside ProcessKeys.
7862
7863 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
7864
7865         * PaddingConverter.cs: Added.
7866
7867 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7868         
7869         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
7870         ShowPanels is false (fixes #80600). Only draw up to 127 characters
7871         of text (fixes #80601). For panels clip the text to draw to the
7872         panel (fixes #80603).
7873
7874 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7875
7876         * ComboBox.cs: Fixed implementation of ResetText.
7877
7878 2007-01-25  Jackson Harper  <jackson@ximian.com>
7879
7880         * TextControl.cs: For the last char of a line we need to use the
7881         line size, not that chars width, since it won't actually be
7882         computed since the right side of a char is based on the start of
7883         the left side of the next char, and the next char does not exist.
7884
7885 2007-01-25  Chris Toshok  <toshok@ximian.com>
7886
7887         * Splitter.cs: fix the new unit tests, and reindent some switch
7888         statements.
7889
7890 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7891
7892         * ComboBox.cs: Implemented 2.0 methods and events.
7893         * TextBoxBase.cs: Added OnTextUpdate, so that
7894         ComboBox.ComboTextBox can inform ComboBox of it.
7895
7896 2007-01-25  Jackson Harper  <jackson@ximian.com>
7897
7898         * TextControl.cs: Respect ShowSelection when deciding whether or
7899         not to display the caret, this allows comboboxes to have carets
7900         when the combotextbox does not have focus.
7901
7902 2007-01-25  Jackson Harper  <jackson@ximian.com>
7903
7904         * TextControl.cs: Add a Suspend/Resume for updating, basically the
7905         same as the Suspend/Resume for recalc, except this will do actual
7906         Invalidates.
7907         - New Undo manager, works much like the MS version.
7908         - Implemented Redo
7909         * TextBoxBase.cs: The Cut operation is undoable.
7910
7911 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7912         
7913         * TextBoxBase.cs: Don't antialias text. Makes it look way better
7914         on Windows (no difference on Linux).    
7915
7916 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7917
7918         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
7919         we don't want to activate any windows. Fixes #79433.
7920
7921 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
7922
7923         - ButtonBase.cs: Fix capitalization of parameter: disposing.
7924         [Fixes bug #80609]
7925
7926 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
7927
7928         * FileDialog.cs:
7929         - Move to using System.ComponentModel.EventHandlerList
7930         - Replace Refresh with Invalidate
7931         - Clear the mime filecache on closing
7932         - Some other memory reducing work. After beeing closed FD now uses
7933           only about 300 KB for the fdo mime stuff plus the memory of the
7934           cached icons.
7935         * Mime.cs: Changed coding style and removed unnecessary commented
7936         code. Some more memory memory reducing work.
7937
7938 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7939
7940         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
7941         a few other missing 2.0 properties.
7942         * Theme.cs: Added DrawFlatStyleComboBox.
7943         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
7944
7945 2007-01-24  Chris Toshok  <toshok@ximian.com>
7946
7947         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
7948         wake_waiting flag, not just when there's data to be read.  if we
7949         don't, then future wakeup's won't reach us and we'll be doomed to
7950         wait for the entire 1 second timeout forever (unless there are X
7951         events to be had).
7952
7953 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
7954
7955         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
7956         until you pass Items.Count, not Items.Count - 1 like 1.1.
7957
7958 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
7959
7960         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
7961
7962 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
7963
7964         * ToolStripContainer.cs: The recent Dock fix exposed that I was
7965         adding the panels in the wrong order.
7966
7967 2007-01-24  Jackson Harper  <jackson@ximian.com>
7968
7969         * TextBoxBase.cs: When we move the caret we also need to move the
7970         selection, this fixes some random crashing after doing select
7971         text, unselect, delete a char, paste.
7972
7973 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7974
7975         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
7976
7977 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
7978
7979         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
7980         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
7981         * ToolBar.cs: Force redraw in BackgroundImageChanged.
7982
7983 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
7984
7985         * ToolBar.cs:
7986         - Implement support for vertical toolbars. Fixes #80539;
7987         - Call LayoutToolBar when resize, it fix some other problems in layout.
7988         - Rename requested_height to requested_size, as we can have width on it
7989         when toolbar is vertical.
7990         - Create a private property "Vertical" that uses Dock to verify when 
7991         toolbar is vertical or not.
7992         - Set ControlStyles when change Dock property.
7993         - Refactory in LayoutToolBar to have better variables names and to support
7994         vertical toolbars.
7995         - Fixes default value for ButtonSize when button count is equal zero, size
7996         must be (39, 36) test case writed.
7997
7998 2007-01-23  Chris Toshok  <toshok@ximian.com>
7999
8000         * Control.cs: fix the checks so that they work correctly for mdi
8001         parents/children.
8002
8003 2007-01-23  Chris Toshok  <toshok@ximian.com>
8004
8005         * Control.cs: ControlCollection seems to have super-secret
8006         abstraction breaking knowledge of Mdi containers.  allow MdiClient
8007         to add toplevel controls.
8008
8009 2007-01-23  Chris Toshok  <toshok@ximian.com>
8010
8011         * Control.cs: throw an ArgumentException if a toplevel control is
8012         added to our control collection from ControlCollection.Add, as
8013         well as from ControlCollection.IList.Add.  This fixes the
8014         ControlSetTopLevelTest.TestTopLevelAdd unit test.
8015
8016         Also, in ControlCollection.IList.Add, don't through an
8017         ArgumentNullException, throw an ArgumentException, when value ==
8018         null.  This matches MS.
8019
8020 2007-01-23  Chris Toshok  <toshok@ximian.com>
8021
8022         * BindingSource.cs: initial, incomplete, implementation of
8023         BindingSource.
8024
8025 2007-01-23  Jackson Harper  <jackson@ximian.com>
8026
8027         * TextControl.cs:
8028         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
8029         that I can fix a broken unit test (TextBoxTest::ClearUndo)
8030         
8031 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
8032
8033         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
8034
8035 2007-01-23  Andreia Gaita  <avidigal@novell.com>
8036
8037         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
8038         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
8039         IndexOfKey() for 2.0
8040
8041 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8042
8043         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
8044         to prevent it from changing z-order.
8045         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
8046         leave UI updates in MdiWindowManager.
8047         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
8048         1 sized (NC handling goes weird on Linux otherwise).
8049         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
8050         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
8051         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
8052         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
8053         and SetWindowState(s) to allow for changing the size of an activated child
8054         before activating it (reduces a lot of flicker).
8055
8056 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
8057
8058         * Form.cs: Changing FormBorderStyle has different semantics based
8059         on whether the Form is visible or not.  If not visible, don't change
8060         the Size.  But InvalidateNC needs to be called to force the window
8061         to pick up the changes and redraw itself.  [Fixes bug #80574]
8062
8063 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
8064
8065         [Moma work]
8066         * ContainerControl.cs: ProcessCmdKey.
8067         * ErrorProvider.cs: new constructor.
8068         * Form.cs: fix AutoValidateEvent compiler warning.
8069         * Label.cs: fix OnAutoSizeChanged compiler warning.
8070         * MenuStrip.cs: fix CanOverflow compiler warning.
8071         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
8072         * TextBox.cs: Dispose.
8073         * ToolStrip.cs: CanOverflow, re-enable double buffering.
8074         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
8075         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
8076         * ToolStripItem.cs: Overflow, RightToLeft properties.
8077
8078 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8079
8080         * Form.cs: Move the layout of the main form to MdiWindowManager.
8081         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
8082         do a layout of the main window to update MdiClient's client area to
8083         the right area. Fixes #80533. Remove the calculation of nc size, 
8084         it was just wrong and the correct one is the same as for 
8085         InternalWindowManager. 
8086
8087 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
8088
8089         * Control.cs: Setting Anchor or Dock needs to reset the other
8090         to its default.  [Fixes bug #80556]
8091
8092 2007-01-20  Chris Toshok  <toshok@ximian.com>
8093
8094         * CheckedListBox.cs: class status changes.
8095
8096         * ScrollableControl.cs: same.
8097
8098         * RichTextBox.cs: same.
8099
8100         * ContainerControl.cs: same.
8101
8102         * ListView.cs: same.
8103
8104         * NotifyIcon.cs: same.
8105
8106         * MenuStrip.cs: same.
8107
8108         * RadioButton.cs: same.
8109
8110         * CheckBox.cs: same.
8111
8112         * PrintPreviewDialog.cs: same.
8113
8114         * Form.cs: same.
8115
8116 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
8117
8118         * TreeNode.cs: Apply Alan's patch for Name property.
8119
8120 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8121         
8122         * Form.cs: Implemented SizeGripStyle.
8123         * SizeGrip.cs: Check for minimum and maximum size for the
8124         control being resized and only resize if size has actually
8125         changed.
8126
8127 2007-01-19  Chris Toshok  <toshok@ximian.com>
8128
8129         * DataGridColumnStyle.cs: stop setting _readonly in the
8130         PropertyDescriptor setter.  fixes a unit test failure.
8131
8132         also, rename ParentReadOnly to TableStyleReadOnly, and have it
8133         just consult our table style (if we have one).  We don't need to
8134         consult the datagrid readonly attribute because that's passed in
8135         as the _ro arg to Edit.  this simplifies things a little.
8136         
8137         * DataGrid.cs: use CurrentColumn instead of
8138         current_cell.ColumnNumber just to simplify some of the code.
8139
8140         switch the order of some things in the CurrentCell setter to keep
8141         the previous cell from getting a textbox again -
8142         EnsureCellVisibility causes scrolling to happen, which calls Edit.
8143         So we need to set the new cell before calling it.
8144         
8145         call Edit in OnEnter, as does Microsoft.
8146         
8147         also, make sure the current table style isn't the one we create
8148         initially when checking to see if it's different than the one
8149         we're setting it to in BindColumns (this fixes #80421).
8150
8151         * GridTableStylesCollection.cs: table styles can have "" for a
8152         mapping name.  part of the fix for #80421.
8153
8154         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
8155         Edit significantly.
8156
8157 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8158
8159         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
8160         and less GDI object leaky-er.
8161
8162 2007-01-18  Andreia Gaita  <avidigal@novell.com>
8163
8164         * LinkLabel.cs: Add opaque control style
8165
8166 2007-01-18  Jackson Harper  <jackson@ximian.com>
8167
8168         * TextControl.cs: Calculate width properly.
8169         - Don't store the tag's X offset, this can be figured out very
8170         easily.
8171         - When getting the caret tag make sure to get the last empty tag.
8172
8173 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8174
8175         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
8176         [Fixes bug #79959]
8177
8178         * Control.cs: Color.Empty shouldn't count for previous transparent
8179         redraw changes.
8180
8181 2007-01-18  Jackson Harper  <jackson@ximian.com>
8182
8183         * TextBox.cs:
8184         * RichTextBox.cs:
8185         * TextControl.cs: Starting to merge in some pieces of my older
8186         undo work.  Basically just some slight cleanup of the undo API.
8187
8188 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8189
8190         * TrackBar.cs: Fix signature of RightToLeftLayout.
8191         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
8192         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
8193         * Application.cs: Implemented UseWaitCursor.
8194
8195 2007-01-18  Jackson Harper  <jackson@ximian.com>
8196
8197         * TextControl.cs: We can't skip tags if any part of the tag is
8198         visible.
8199
8200 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8201
8202         * ContainerControl.cs: Override OnLayout.
8203
8204 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8205
8206         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
8207
8208         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
8209         everything else.
8210
8211 2007-01-18  Chris Toshok  <toshok@ximian.com>
8212
8213         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
8214         (leftover from the container_selected days, I'd wager).  fixes bug
8215         #80546.
8216
8217 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8218
8219         * Control.cs: Apply patch from George to fix the new testcase on
8220         bug #80451.  We can't just check for Color.Transparent, we need 
8221         to check if the back color's alpha channel is < 255.
8222
8223 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8224
8225         * Form.cs: Move setting show_icon = true to before the constructor
8226         so that the base constructor has that information when it calculates
8227         the form's size.  Was causing forms to be (6, 6) bigger than they
8228         were supposed to be.  Thanks for catching this Rolf!
8229
8230 2007-01-18  Jackson Harper  <jackson@ximian.com>
8231
8232         * TextControl.cs: When replacing a selection we need to invalidate
8233         from the initial selection start, because selection start is moved
8234         to the end of the replacement.
8235
8236 2007-01-18  Andreia Gaita  <avidigal@novell.com>
8237
8238         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
8239
8240 2007-01-18  Chris Toshok  <toshok@ximian.com>
8241
8242         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
8243         I just added.
8244
8245 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
8246
8247         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
8248         layout methods and properties from ToolBarButton must be available
8249         into ToolBarButtonInfo.
8250
8251 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
8252
8253         * Control.cs: If the control has a transparent background, we
8254         need to refresh it when it moves and when it's parent's background
8255         image changes.  [Fixes bug #80451]
8256
8257 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
8258
8259         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
8260
8261 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
8262
8263         * XplatUIWin32.cs: Implement proper double buffering for Windows.
8264         [Fixes bug #80447, and probably speeds up things as well]
8265
8266 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8267
8268         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
8269         * XplatUIWin32.cs: We need to recalculate NC size after changing 
8270         window style to toolwindow (otherwise the client rectangle will be
8271         3 pixels to small for some reason).
8272         * MdiWindowManager.cs: Revert NC size calculations to match how
8273         they are calculated only based on window styles (to match
8274         Win32AdjustWindowRectEx, since otherwise when setting size or 
8275         location, Control will call Win32AdjustWindowRectEx to update client 
8276         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
8277         calculate a different value of client size causing another paint 
8278         (and flickering))
8279         * InternalWindowManager.cs: When moving or resizing a window only
8280         update size or location if they actually changed.
8281         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
8282         (seems to match Windows behaviour better). Cleaned up 
8283         ManagedWindowDecorations to draw what's needed and nothing else
8284         (was drawing borders and lines where they shouldn't be)
8285         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
8286         (style = 0xFFFF) and takes into account caption height when 
8287         calculating window rectangle.   
8288
8289 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
8290
8291         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
8292         can be added to toolbar multiple times, we need to maintain a list of 
8293         button information for each positions.
8294
8295 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
8296
8297         * ToolBar.cs: Some small stetic changes.
8298
8299 2007-01-16  Jackson Harper  <jackson@ximian.com>
8300
8301         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
8302         that allow us to have nested recalc = false blocks.
8303         - Add paste support for images in the RichTextBox
8304         * RichTextBox.cs: flush the text after the color is changed, so
8305         the change takes effect.
8306         - Use SuspendRecalc
8307         - Some extra debugging info
8308         * TextControl.cs: Tags no longer track their length, it is just
8309         computed from the next tags length, this makes things a little
8310         simpler and reduces places that we have to track length changes.
8311         - Refactored the linetag class a little so we could make it
8312         a base class for different kinds of tags
8313         - Created a image tag, a tag that can have a single image inserted
8314         into it
8315         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
8316         that we can call suspend multiple times.
8317         - Add some debugging methods
8318
8319 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8320
8321         * MdiClient.cs: Add ActivatePreviousChild for 
8322         mdi child window navigation.
8323         * Form.cs: Use MdiClient.ActivateNextChild/
8324         ActivatePreviousChild instead of Form.SelectNextControl
8325         to select the next/previous child since 
8326         SelectNextControl doesn't do it in the same order
8327         as mdi children should do it.
8328
8329 2007-01-16  Chris Toshok  <toshok@ximian.com>
8330
8331         * Control.cs: remove container_selected field.
8332
8333 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8334
8335         * MdiClient.cs: Update main form's ActiveChild when
8336         updating keyboard focus for the mdi child.
8337
8338 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
8339
8340         * Control.cs: PreferredSize fix.
8341
8342         * Form.cs: Add several 2.0 events, properties, and methods.
8343
8344 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
8345
8346         * Form.cs: Provide meaningful message when MdiParent is assigned a
8347         Form that is not an MdiContainer.
8348
8349 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8350
8351         * MdiClient.cs: Update main form's ActiveChild when
8352         activating a mdi child.
8353
8354 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8355
8356         * MdiWindowManager.cs: Fix NRE when merging menus and main form
8357         doesn't have a menu.
8358
8359         * Form.cs: Request NCRecalc after creating a mdi child window.
8360         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
8361         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
8362         
8363         * MdiClient.cs: Add new method SendFocusToActiveChild that either
8364         sends keyboard focus to the active child, or to the MdiClient
8365         if there are no child forms.
8366         
8367 2007-01-15  Chris Toshok  <toshok@ximian.com>
8368
8369         * ListView.cs: drop the *Internal overrides, just do our work in
8370         ItemControl's WndProc instead.
8371
8372         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
8373         of the various controls, and forward the events properly (in the
8374         same manner as MS) from the textbox to the UpDown.  Also the
8375         ActiveControl of the UpDownBase gets set properly now.  Finally,
8376         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
8377
8378         * NumericUpDown.cs: set Text in the ctor.
8379
8380         * DomainUpDown.cs: call UpdateEditText in the ctor.
8381         
8382         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
8383         so even a Selectable = false textbox can be focused if you click
8384         in it.  Go figure.
8385
8386         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
8387         just add their handling in their respective WndProc's.  Also add
8388         an explicit FocusInternal method that doesn't consult CanFocus
8389         before calling Select(this).
8390
8391         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
8392         do our work in WndProc instead.
8393
8394         * TabControl.cs: same.
8395
8396         * ComboBox.cs: same.
8397
8398 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
8399
8400         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
8401         Fixes #80006.
8402
8403 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8404
8405         * ListViewItem.cs:
8406         * ThemeWin32Classic.cs: Don't draw the item text outside
8407         item bounds in Details view, as well as use trimming.
8408         Fixes bug #80376.
8409
8410 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
8411
8412         * Form.cs: Implement Form.ShowIcon.
8413         
8414         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
8415         null, which when combined with the DlgModalFrame window style removes
8416         the icon from the title bar.
8417
8418 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
8419
8420         * Control.cs: Call OnMouseClick after OnClick. (2.0)
8421
8422 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
8423
8424         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
8425         menu when mdi child windows theres a menu, uses insert to get icon
8426         at first position. Partially fix #80006.
8427
8428 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
8429
8430         * Clipboard.cs: Implement 2.0 methods.
8431
8432 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
8433
8434         * Menu.cs: Implement Insert method of MenuItemCollection class
8435         to fix MenuMerge.
8436
8437 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8438
8439         * ListView.cs: Implement 2.0 FindItemWithText method.
8440
8441 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
8442
8443         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
8444         to calculate menu bar size. Fixes #80290.
8445
8446 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
8447
8448         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
8449
8450 2007-01-11  Chris Toshok  <toshok@ximian.com>
8451
8452         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
8453         initial form.
8454
8455 2007-01-11  Chris Toshok  <toshok@ximian.com>
8456
8457         * LinkLabel.cs: make sure to call base.Select in our Select method
8458         if it turns out we're going to be selected (i.e. if we have a link
8459         that is going to receive focus).  That way our container's
8460         ActiveControl is updated properly.
8461
8462 2007-01-11  Chris Toshok  <toshok@ximian.com>
8463
8464         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
8465         they have 1 or more links.  this fixes the crash gert reported.
8466
8467 2007-01-11  Andreia Gaita  <avidigal@novell.com>
8468
8469         * ContainerControl.cs: Remove ContainerSelected flag, not needed
8470         anymore.
8471
8472         * Control.cs (Controls.Add): Check if control to be added to the collection
8473         is a top level control, and throw an ArgumentException if it is.
8474         Remove ContainerSelectedFlag, not needed anymore.
8475
8476         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
8477         top most control doesn't activate the form. This fixes a problem in the
8478         MessageBox, where the default button wouldn't get focus because the form
8479         was activated before being Loaded - when the Owner is set, SetTopMost is
8480         called, and it would activate it.
8481
8482 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
8483
8484         * Button.cs: When clicked and setting the parent form's DialogResult,
8485         use FindForm instead of Parent, since parent could be a container
8486         control and not the Form.  Fixes bug #80495.
8487
8488 2007-01-10  Chris Toshok  <toshok@ximian.com>
8489
8490         * Form.cs: move the call to SendControlFocus into the same
8491         is_loaded check.
8492
8493 2007-01-10  Chris Toshok  <toshok@ximian.com>
8494
8495         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
8496         It breaks in the face of the new ActiveControl stuff, and should
8497         be unnecessary.
8498
8499         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
8500         activecontrol's focus if it's not already set, after we set
8501         ActiveControl, but before we call OnActivated.  Re-fixes #79667
8502         after the previous focus/active control fixes regressed it.
8503
8504         * Control.cs: reindent some code.
8505         
8506 2007-01-10  Chris Toshok  <toshok@ximian.com>
8507
8508         * Splitter.cs: clearing some outstanding changes from my tree.
8509         Replace all accesses (not writes) to the internal dock_style field
8510         with the Dock property.
8511
8512 2007-01-10  Chris Toshok  <toshok@ximian.com>
8513
8514         * Control.cs: make FireEnter, FireLeave, FireValidating, and
8515         FireValidated virtual.
8516
8517         * Form.cs: override and don't chain up calls to FireEnter and
8518         FireLeave.
8519
8520 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8521
8522         * ListView.cs: Add more text padding space when using
8523         auto resize for columns (the previous value didn't work fine).
8524
8525         * ThemeWin32Classic.cs: Update text position inside columns,
8526         to match the appeareance of .Net.
8527
8528         * ColumnHeader.cs: When using auto resize, only the Width should
8529         depend on the sub items, not the Height. Also, set width after
8530         auto resizing (the value of Width should never remain as -1 or -2).
8531
8532 2007-01-10  Chris Toshok  <toshok@ximian.com>
8533
8534         * Application.cs: fix compilation errors when debug is enabled.
8535
8536 2007-01-10  Chris Toshok  <toshok@ximian.com>
8537
8538         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
8539         add some nice ascii art pictures and explanation of the process).
8540         (GetMostDeeplyNestedActiveControl): new utility function we need
8541         because our ActiveControl can refer to a child container with its
8542         own ActiveControl.
8543
8544         * Form.cs (OnActivated): remove the call to SelectActiveControl
8545         from here, since you can override this method and not chain up,
8546         and winforms still sets the active control.
8547         (OnCreateControl): also remove the unnecessary SelectActiveControl
8548         call from here.
8549         (WndProc): it's actually called from the WM_ACTIVATE block, just
8550         before calling OnActivated.
8551
8552         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
8553         inside the else.  the ActiveControl setter will end up setting
8554         focus on @control.  This keeps us from setting it again (and
8555         generating an extra LostFocus/GotFocus pair).
8556         (Select (bool, bool)): reindent.
8557
8558 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
8559
8560         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
8561         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
8562         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
8563         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
8564         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
8565         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
8566         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
8567         ToolStripTextBox.cs: Another wave of corcompare work.
8568
8569 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8570
8571         * ColumnHeader.cs: Implement 2.0 AutoResize method using
8572         the Width property.
8573
8574         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
8575         methods by callling Column.AutoResize method on columns.
8576
8577 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
8578
8579         * Control.cs: Provide proper implementations of PreferredSize
8580         and GetPreferredSize (2.0).
8581
8582 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
8583
8584         * Form.cs: Remove one character (!) to make my previous OnClosing
8585         stuff work for modal windows like MessageBox.
8586
8587 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8588
8589         * ListView.cs:
8590         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
8591         ListView.Columns to get the last displayed column. Fixes #80452.
8592
8593 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
8594
8595         * Label.cs, LinkLabel.cs: Source code identation fixes.
8596
8597 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
8598
8599         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
8600         we dont need to invalidate only borders because when we invalidate four
8601         border lines the invalidate's generates a complete redraw of button, 
8602         because it now invalidate a complete rect some other redraws operations
8603         are fixed. Fixes #80196.
8604         
8605         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
8606         Remove ToolBarInvalidateEntireButton as it is not used.
8607
8608 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
8609         
8610         * Form.cs: Make sure that both OnClosing and OnFormClosing are
8611         called for 2.0 profile.
8612         * CloseReason.cs: Make class internal for 1.1.
8613
8614 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
8615
8616         * ToolStripManager.cs: Implement FindToolStrip functionality.
8617         * ToolStrip.cs: Register and unregister with ToolStripManager.
8618
8619 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
8620
8621         * Control.cs: This was messy.  2.0 moves much of ControlCollection
8622         to ArrangedElementCollection.  Implemented this with as few #if's as 
8623         possible (which is still too many).
8624
8625 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
8626
8627         * Control.cs: Implement SizeFromClientSize() [2.0].
8628
8629 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
8630
8631         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
8632         use Theme.BorderSize to calculate area instead of static value 1, 
8633         by the way use new BorderStaticSize instead     Border3DSize when 
8634         border_static is true. Fixes #79537.
8635         
8636         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
8637         
8638         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
8639         it is not needed.
8640
8641 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
8642
8643         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
8644
8645 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
8646
8647         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
8648         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
8649         
8650         * Hwnd.cs: 
8651         - border_static field added, it will used to define when a control 
8652         theres 3D border but it must be static (thin).
8653         - In GetWindowRectangle use Theme.BorderSize to calculate area 
8654         instead of static value 1, by the way use new BorderStaticSize instead
8655         Border3DSize when border_static is true.
8656
8657         * XplatUIX11.cs, XplatUIOSX.cs: 
8658         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
8659         
8660         * Theme.cs: BorderStaticSize field added.
8661
8662 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
8663
8664         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
8665
8666 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
8667
8668         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
8669         mimic same behavior than win32 that set border only in CreateParams,
8670         it fix problems under CreateParams overrides. Fix #79442 and partial
8671         fix #79537.
8672         
8673         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
8674         of thi control you must call recreate handle. 
8675         
8676         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
8677         need to do anything as RecreateHangle will take care about borders.
8678
8679 2007-01-05  Mike Kestner  <mkestner@novell.com>
8680
8681         * ListView.cs: hack to eliminate Lost/Got focus notifications on
8682         cycles between the ItemControl and parent.  Fixes #80388.
8683
8684 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
8685
8686         * Control.cs: Lazy init layout engine. Do not directly use 
8687         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
8688
8689 2007-01-05  Chris Toshok  <toshok@ximian.com>
8690
8691         * DataGrid.cs: don't forceably rebind columns in SetDataSource
8692         unless our list manager has changed (i.e. unless we have reason to
8693         believe our columns have changed).  Fixes #80422.
8694         
8695         also, disable the call do BindColumns in
8696         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
8697         1.1 the event isn't raised in response to a column addition on a
8698         table.)
8699
8700 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
8701
8702         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
8703         that inheritors can not call it if they choose.  Fixes bug #80456.
8704
8705 2007-01-05  Andreia Gaita  <avidigal@novell.com>
8706
8707         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
8708         doesn't blow up with a null exception on marshalling.
8709         
8710 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
8711
8712         * Control.cs: Implement several 2.0 protected properties and methods.
8713         Ensure that all necessary events are being called when properties
8714         are set.
8715
8716 2007-01-05  Mike Kestner  <mkestner@novell.com>
8717
8718         * ListView.cs: implement PgUp/PgDn for Details view.  Also
8719         fixes First/LastVisibleIndex to use the item_control.ClientRect 
8720         instead of the parent control.  Fixes #80378.
8721
8722 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
8723
8724         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
8725           determine whether to use yard-pound or not (bug #78399).
8726
8727 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
8728
8729         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
8730         problems. So it is time to bring back the old popupbutton colors.
8731
8732 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8733
8734         * ColumnHeader.cs:
8735         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
8736         property by using the internal information of the
8737         columns order in ListView.
8738
8739 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
8740
8741         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
8742         Add 2.0 Tag properties.
8743
8744         * LinkArea.cs: Add 2.0 ToString method.
8745
8746 2007-01-03  Chris Toshok  <toshok@ximian.com>
8747
8748         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
8749         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
8750         when we're editing, which fixes #80047.
8751
8752 2007-01-03  Chris Toshok  <toshok@ximian.com>
8753
8754         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
8755         #80404.
8756
8757 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
8758
8759         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
8760         property and implementation.
8761
8762         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
8763         for MdiWindowListItem property.
8764
8765         * ToolStripDropDown.cs: Don't consider hidden menu items while
8766         laying out the menu.
8767
8768 2007-01-03  Andreia Gaita  <avidigal@novell.com>
8769
8770         * SendKeys.cs: window handle is not needed in win32, so just
8771         get the active window for X after parsing keys and don't use
8772         it when building the message; it is passed by parameter to the 
8773         Xplat method and used there to build the message instead. Also,
8774         wait for events to be processed on SendWait, as opposed to Send,
8775         which doesn't wait :) Playing with threads and Send() completely 
8776         hangs on ms.net, only SendWait() works.
8777         
8778         XplatUIX11.cs
8779         X11Display.cs: Check for valid window handle.
8780
8781 2007-01-03  Jackson Harper  <jackson@ximian.com>
8782
8783         * TextControl.cs: Need to prevent wrap calculations when replacing
8784         text (this was there before i removed it accidently).
8785         - Don't update the cursor during the positioning, just set it to
8786         selection_start at the end of the operaion.
8787
8788 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8789
8790         * Control.cs:
8791         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
8792         
8793 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8794
8795         * MonthCalendar.cs: Added Click and DoubleClick events again,
8796         but this time they only hide Control's Click and DoubleClick.
8797         
8798 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
8799
8800         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
8801         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
8802
8803 2007-01-02  Jackson Harper  <jackson@ximian.com>
8804
8805         * TextBoxBase.cs: We move the caret with the split now, so we
8806         don't need to explicitly move the caret after splitting.  This
8807         fixes the caret bumping down an extra line on Enter.
8808
8809 2007-01-02  Miguel de Icaza  <miguel@novell.com>
8810
8811         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
8812         2.72). 
8813
8814         * ScrollableControl.cs: Add Scroll event.
8815
8816 2007-01-02  Mike Kestner  <mkestner@novell.com>
8817
8818         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
8819         to fix all hdr height padding codepaths.  Fixes #80207.
8820
8821 2007-01-02  Chris Toshok  <toshok@ximian.com>
8822
8823         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
8824         setting it to the Control defaults anyway, and it being after the
8825         Dock set was screwing up layout.
8826         (set_Dock): don't short circuit out of setting base.Dock.  Also,
8827         no need to call UpdateStatusBar here, as it'll be re-layed out if
8828         it needs to be.
8829
8830 2007-01-02  Mike Kestner  <mkestner@novell.com>
8831
8832         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
8833         to header height for width == -1. Fixes the rest of #80207.
8834
8835 2007-01-02  Mike Kestner  <mkestner@novell.com>
8836
8837         * ListView.cs: rework the mouse event forwarding everaldo added
8838         to translate the coordinates to the parent control not
8839         raise the parent events until after we've done our work. Hover
8840         needs more work, in the case where HoverSelection is on, because
8841         the item control receives more than one MouseHover per Enter
8842         event, so we need to ensure only the "first" hover gets forwarded.
8843         Opening a minor bug for that.
8844
8845 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
8846
8847         * CheckedListBox.cs: Fixed SelectionMode to match MS.
8848         * ListControl.cs: Implemented AllowSelection property. Removed extra
8849         tabs.
8850         * ListBox.cs: Implemented AllowSelection property.
8851
8852 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8853
8854         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
8855         SelectedItem, it prevent for errors when you must disable item
8856         before perform click. Fixes #80409.
8857
8858 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8859
8860         * MenuAPI.cs: Prevent second level and beyond submenus to close
8861         until first level when move out side of popup.
8862         
8863 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8864
8865         * MenuAPI.cs:
8866         - Down submenu positin in three pixels.
8867         - Closes sub menu when mouse leaves from menu. Fixes #80402.
8868
8869 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8870
8871         * ThemeWin32Classic.cs:
8872         - Fix popup menu size adding one pixel on the top.
8873         - Down menu item border from two to one to mimic Win32.
8874         - Some source identation fixes. 
8875
8876 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
8877
8878         * ThemeWin32Classic.cs: Use float numbers to calculate size and
8879         position of menu arrows, it fix wrong arrow size.
8880
8881 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
8882
8883         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
8884         instead of line, it simplify draw operation and fix it using 3D
8885         borders to mimic Win32.
8886
8887 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
8888
8889         * StatusStrip.cs: Add implementation of the sizing grip.
8890
8891         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
8892         StatusStrip rendering.
8893
8894 2006-12-31  Chris Toshok  <toshok@ximian.com>
8895
8896         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
8897         override the layout style (anchor/dock) of the control.  assign to
8898         Dock instead.  Fixes bug #80416.
8899
8900         * ToolStrip.cs: same.
8901
8902 2006-12-31  Andreia Gaita  <avidigal@novell.com>
8903
8904         * ContainerControl.cs: Use ContainerSelected flag to check if 
8905         a Container is directly selected, or if Select is called on a 
8906         non-container. If a container is directly selected, focus events 
8907         should not be raised.
8908         Apply #80411 patch to throw exception on set_ActiveControl if 
8909         control is the same as the current one.
8910         
8911         * Control.cs: Use ContainerSelected flag (see above).
8912         Add invalidation check to raise event but not invalidate if 
8913         dimensions are 0.       
8914         Apply #80411 patch.
8915         
8916
8917 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
8918
8919         * MenuAPI.cs: After click, dont close popup menu when menu is
8920         ContextMenu. Fixes #80399.
8921
8922 2006-12-30  Chris Toshok  <toshok@ximian.com>
8923
8924         * ContainerControl.cs: make sure we throw the exception if the
8925         container control doesn't contain the control we're setting
8926         ActiveControl to.
8927
8928 2006-12-30  Chris Toshok  <toshok@ximian.com>
8929
8930         * Control.cs (SetTopLevel): fix the exception raised by
8931         SetTopLevel for child controls.
8932         (set_Anchor): call UpdateDistances when setting the anchor type.
8933         This fixes bug #80336.
8934
8935 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
8936
8937         * Theme.cs: For now, revert back to 8pt font.
8938
8939 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
8940
8941         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
8942         Fixes #80395.
8943
8944 2006-12-29  Chris Toshok  <toshok@ximian.com>
8945
8946         * Control.cs: reorder the code in OnResize to give the same event
8947         ordering as MS.
8948
8949 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8950
8951         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
8952         TileHorizontally and TileVertically.
8953         
8954 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
8955
8956         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
8957         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
8958         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
8959         Corrected copyright and email adress.
8960
8961 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
8962
8963         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
8964         of Exception in FullPath property if no TreeView is associated with
8965         the TreeNode.
8966
8967 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
8968
8969         * Theme.cs: Marked default_font as private, and initialize it in ctor
8970         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
8971         on 2.0 profile.
8972         * ThemeGtk.cs: Removed default_font intialization.
8973         * ThemeWin32Classic.cs: Removed default_font initialization.
8974
8975 2006-12-28  Chris Toshok  <toshok@ximian.com>
8976
8977         * Control.cs: fix a couple of place where we were creating handles
8978         more aggressively than we should be.  Fixes ControlRefresh unit
8979         tests.
8980
8981 2006-12-28  Chris Toshok  <toshok@ximian.com>
8982
8983         * Control.cs: contrary to what the comment said, Control.Dock does
8984         not supercede Control.Anchor - the last one you assign to decides
8985         the layout behavior.  so we need to keep track of which was the
8986         last set.  Also, fix some of the affected property arguments in
8987         PerformLayout calls, and remove an redundant parent.PerformLayout
8988         call in OnResized.
8989
8990         Add a VisibleInternal property, which returns is_visible.  We
8991         can/should get rid of all the usage of this field elsewhere.
8992
8993 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8994         
8995         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
8996         control style, not DoubleBuffer. Added UseDoubleBuffering property
8997         that indicates whether doublebuffering is enabled and supported.
8998         (comment from and code based on Gert Driesen's patch in #80324).
8999         Fixes #80324.
9000
9001 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9002         
9003         * Control.cs: Fixed a NRE.
9004
9005 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9006
9007         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
9008         for 2.0.
9009
9010 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9011
9012         * Control.cs: Rewrote double buffering, now a seperate
9013         class handles all the buffering, no Graphics is disposed of
9014         until the painting is finished (earlier implementation 
9015         would crash if the control was resized in the OnPaint, 
9016         since it would cause the double buffer to be recreated
9017         and the old one disposed), a separate Graphics is 
9018         created for every paint (MS behaviour and anyways the state
9019         of the Graphics would have to be saved and restored otherwise)
9020         
9021         * XplatUIDriver.cs: 
9022         * XplatUIX11.cs:
9023         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
9024         so that we can get the graphics for the back buffer without
9025         having to create a new one and remove the offscreen_dc parameter
9026         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
9027         
9028 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9029
9030         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
9031         Also make virtual all the key-related methods.
9032
9033         * ListViewItem.cs: Make virtual the key related methods for
9034         ListViewSubItemCollection.
9035
9036 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9037
9038         * ListView.cs:
9039         * ListViewItem.cs:
9040         * ThemeWin32Classic.cs:
9041         * Theme.cs: Initial support for Tile view in ListView,
9042         as well as the implementation of the required bits for it (Item
9043         and Subitem).
9044
9045 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9046
9047         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
9048         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
9049         Provide useful exception messages.
9050
9051 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9052
9053         * TrackBar.cs: Remove a warning.
9054         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
9055         when used by DateTimePicker, fixes #80287. This also requires that 
9056         MonthCalendar implements it's own drawing for the yearly updown control,
9057         otherwise the Capture tracking would be too complicated. Removed the Click 
9058         and DoubleClick events (according to comments they were hiding the base class
9059         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
9060         raise these events, not that they cannot be raised. It is possible to raise 
9061         them by calling OnClick and OnDoubleClick). Added two internal fields in 
9062         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
9063         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
9064         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
9065         event, no longer needed.
9066         
9067 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9068
9069         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
9070         true if new value differs from current value.
9071
9072 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9073
9074         * Control.cs: ControlCollection.Count must be public. Fixed build of
9075         unit tests.
9076
9077 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9078
9079         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
9080
9081 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9082
9083         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
9084
9085 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
9086
9087         * Control.cs: Invalidates control including when Width and Height is 
9088         equal zero or is not visible, only Paint event must be care about 
9089         this. Fixes #79913.
9090
9091 2006-12-26  Chris Toshok  <toshok@ximian.com>
9092
9093         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
9094         more corcompare work.
9095
9096         * DataGridView.cs: fix compiler warning.
9097
9098         * ColumnHeader.cs: some corcompare work, and also take the
9099         opportunity to make the internal fields private.
9100
9101         * ListView.cs: fix the fallout from the above field change.
9102
9103 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
9104
9105         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
9106         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
9107         ToolStripTextBox.cs: Fixes to events and corcompare.
9108
9109 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
9110
9111         * ListView.cs: Call owner.OnMousexx event to propagate events from
9112         item to ListView. Fixes #80367.
9113
9114 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
9115
9116         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
9117         if value is less than one. ItemHeight should not be set to a value
9118         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
9119         Removed extra tabs.
9120
9121 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
9122
9123         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
9124         * ToolStripStatusLabel.cs: Add Spring for Moma.
9125
9126 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
9127
9128         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
9129         Fixed code formatting. Removed debug code.
9130         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
9131
9132 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
9133
9134         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
9135         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
9136         ArgumentOutOfRangeException if ColumnCount is negative. In 
9137         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
9138         less than 4 or higher than 32768.
9139         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
9140         Fixed FormatProvider to return CurrentCulture unless explicitly set.
9141         Fixed IsFormatProviderDefault to return true if FormatProvider has
9142         not been explicitly set.
9143
9144 2006-12-25  Chris Toshok  <toshok@ximian.com>
9145
9146         * Application.cs: add a couple of 2.0 events.
9147
9148 2006-12-25  Chris Toshok  <toshok@ximian.com>
9149
9150         * Control.cs: fix compiler warning.
9151
9152         * AxHost.cs: corcompare fixes.
9153
9154         * ApplicationContext.cs: corcompare fixes.
9155
9156 2006-12-25  Chris Toshok  <toshok@ximian.com>
9157
9158         * Control.cs: only update dist_right/dist_bottom if the
9159         width/height is > 0.  this fixes anchored controls being resized
9160         smaller until they disappear and then resized larger again.
9161
9162 2006-12-25  Chris Toshok  <toshok@ximian.com>
9163
9164         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
9165         since they're nothing more than X/Left and Y/Top, respectively.
9166
9167         Also, move back to a per-control Bitmap/Graphics for
9168         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
9169         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
9170         Height.
9171
9172 2006-12-25  Miguel de Icaza  <miguel@novell.com>
9173
9174         * MessageBox.cs: Implemented overload that takes a new "bool
9175         displayHelpButton" by adding a new internal field "show_help".
9176         When clicked this will raise the HelpRequested on the owner or the
9177         main form. 
9178
9179         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
9180         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
9181
9182         * ListView.cs: Add support ColumnWidthChanged and
9183         ColumnWidthChanging. 
9184
9185         Add support for ColumnReordered event.
9186         (ReorderColumn): Add NET_2_0 specific support for cancelling the
9187         reorder.
9188
9189         Very nice codebase!
9190
9191         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
9192
9193         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
9194
9195 2006-12-24  Chris Toshok  <toshok@ximian.com>
9196
9197         * GridTablesFactory.cs: 2.0 corcompare work.
9198
9199         * ToolStripContainer.cs: add "override" to
9200         ContextMenuStripChanged, and remove the local event object.
9201
9202         * ToolStripDropDown.cs: same with a couple properties.
9203
9204         * ToolStripPanel.cs: same with AutoSizeChanged event.
9205
9206         * TextBoxBase.cs: add "override" to AutoSizeChanged.
9207
9208         * Form.cs: add the remaining 2.0 events, and do some corcompare
9209         attribute work.
9210
9211         * DateTimePicker.cs: add "new" to padding.
9212
9213         * ButtonBase.cs: use Control's use_compatible_text_rendering.
9214
9215         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
9216
9217         * DataGridView.cs: PaddingChanged is overridden.
9218
9219 2006-12-24  Chris Toshok  <toshok@ximian.com>
9220
9221         * Control.cs: corecompare work here too.
9222
9223         * DataGridViewElement.cs, DataGridView.cs,
9224         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
9225         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
9226         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
9227         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
9228         work.
9229
9230 2006-12-24  Miguel de Icaza  <miguel@novell.com>
9231
9232         * Control.cs: Switched the error message on the console for a
9233         todo.  A review of the code will have to cope with this anyways
9234         (since its a large feature, it is in our radar) and it was
9235         producing too much output when running PDN.
9236
9237         * ToolStripComboBox.cs: Set the text when the SelectedIndex
9238         changes.  Applications depend on this (PDN 2.72)
9239
9240 2006-12-23  Chris Toshok  <toshok@ximian.com>
9241
9242         * TableLayoutSettings.cs: finish up the corcompare work for this
9243         class.
9244
9245 2006-12-23  Chris Toshok  <toshok@ximian.com>
9246
9247         * Control.cs: make SetImplicitBounds internal, do some futzing
9248         with LayoutEngine so that it's available in 1.1, and remove the
9249         entire duplicated code mess from PerformLayout.  Use
9250         System.Windows.Forms.Layout.DefaultLayout instead.
9251
9252         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
9253
9254 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
9255
9256         * Form.cs: Add MainMenuStrip property.
9257
9258 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
9259
9260         * Control.cs: Add ContextMenuStrip property and implementation.
9261         Fix ContextMenu implementation to show menu centered on control when
9262         activated using the keyboard instead of showing at screen (0,0).
9263
9264         * ToolStripDropDown.cs: Fix needed overload of Show ().
9265
9266 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9267
9268         * Menu.cs: Name property added for 2.0 profile.
9269         
9270 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9271
9272         * Menu.cs: Update information about FindMenuItem, method to be
9273         implemented soon.
9274
9275 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9276
9277         * MenuAPI.cs: When deselect items deselect also selected subitems.
9278         
9279 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9280
9281         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
9282         FindSubItemByCoord to found itens that is not active, also an
9283         cheking added to FindSubItemByCoord to search for items only 
9284         in visible popup windows. Fixes #80274.
9285
9286 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
9287
9288         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
9289         internal property, it be care about change ExStyle. 
9290
9291 2006-12-22  Andreia Gaita  <avidigal@novell.com>
9292
9293         * ContainerControl.cs: set activeControl for parent forms up the 
9294         tree when the new activecontrol is a container.
9295         When validating the active control, if it is a container, also
9296         raise up the validation for it's active control. Fixes #80280
9297         
9298         * Control.cs: Add internal property flag and check to prevent
9299         Focus events from getting raised when Select() is called for
9300         a ContainerControl. There are still too many focus events being
9301         raised at the moment though.
9302         Cleaned up the code a bit.
9303
9304 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9305
9306         * Control.cs: Added all missing 2.0 events.and
9307         fixed a couple of corcompare issues.
9308         * TrackBar.cs: Implemented missing 2.0 bits.
9309         * MonthCalendar.cs, 
9310         * DateTimePicker.cs, 
9311         * MdiClient.cs: Fixed some corcompare issues.
9312
9313 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
9314
9315         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
9316         SplitterPanel.cs: corecompare work.
9317
9318 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
9319
9320         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
9321         Clean up warnings for BackgroundImageChanged and PaddingChanged
9322         events now that they are implemented in Control.cs.
9323
9324 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
9325
9326         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
9327         
9328         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
9329         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
9330         of TableLayoutPanel and supporting cast.
9331
9332 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9333
9334         * XplatUIWin32.cs: 
9335         - GrabWindow now confines the mouse pointer to the confine window.
9336         - Added Win32ClipCursor and Win32GetClipCursor.
9337
9338         * Control.cs: 
9339         - Added CaptureWithConfine to be able to capture and confine 
9340         mouse pointer.
9341         
9342         * InternalWindowManager.cs: 
9343         - Call CaptureWithConfine instead of Capture if we're an
9344         MdiChild (fixes #79982).
9345
9346 2006-12-21  Chris Toshok  <toshok@ximian.com>
9347
9348         * DataGrid.cs: guard against the initial state of selection, where
9349         selection_start == -1.  make sure we only select from index >= 0.
9350         Fixes bug #80291.
9351
9352 2006-12-21  Chris Toshok  <toshok@ximian.com>
9353
9354         * Control.cs: we don't need to be so draconian with
9355         UpdateDistances, and we thusly don't need to call it before
9356         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
9357
9358 2006-12-21  Daniel Nauck  <dna@mono-project.de>
9359
9360         * ComboBox.cs,
9361         TextBox.cs: Implemented AutoComplete properties.
9362
9363 2006-12-20  Chris Toshok  <toshok@ximian.com>
9364
9365         * DataGridView*.cs: some corecompare work.
9366
9367 2006-12-20  Jackson Harper  <jackson@ximian.com>
9368
9369         * XplatUIX11.cs: We need to hide the caret when deleting it,
9370         otherwise you get carets left lying around everywhere.
9371         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
9372         prevents getting some weird half drawn caret tracers when
9373         scrolling.
9374         * TextControl.cs: Attempt to reduce the number of times we need to
9375         recreate the caret.
9376
9377 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
9378
9379         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
9380
9381 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9382
9383         * DateTimePicker.cs:
9384         - Implemented missing 2.0 bits.
9385         - Changed some default values to match MS.
9386         
9387 2006-12-20  Jackson Harper  <jackson@ximian.com>
9388
9389         * TextBoxBase.cs: When changing the font across the document we
9390         can't recalculate after changing each line, since that will cahnge
9391         the line count.
9392         - PreferredHeight is a little different than i thought.
9393         - When backspacing, move the caret before we do the actual char
9394         delete, because when that delete crosses a wrap boundary the
9395         positional information will change.
9396
9397 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9398
9399         * Control.cs: Added some missing 2.0 bits: 
9400         BackgroundImageLayout, BackgroundImageLayoutChanged, 
9401         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
9402         add IBindableComponent and IDropTarget implementation.
9403         
9404         * MonthCalendar.cs: 
9405         - Added all missing 2.0 features:
9406         BackgroundImageLayout, RightToLeftLayout, 
9407         OnHandleDestroyed, RightToLeftLayoutChanged, 
9408         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
9409         PaddingChanged.
9410         - Rewrote all the BoldDate code, it was completely broken.
9411         - Fixed all the tests (the tests can now be re-enabled, the
9412         problems were not with the tests, but with the control, it was
9413         mostly broken).
9414         
9415         * DateTimePicker.cs: Changed the location where the 
9416         MonthCalendar is shown.
9417         
9418 2006-12-19  Chris Toshok  <toshok@ximian.com>
9419
9420         * DataGridView.cs: add IDropTarget implementation.
9421
9422         * ToolStripPanel.cs: add IDropTarget implementation.
9423
9424 2006-12-19  Jackson Harper  <jackson@ximian.com>
9425
9426         * TextControl.cs: soft now means something different than what it
9427         used to mean, we want to move the caret regardless of whether or
9428         not this break was soft (would we really have wanted the caret
9429         to not move with the break in the old context?)
9430         * TreeView.cs: Make sure we factor in the vert scrollbar when
9431         calculating the horizontal scrollbar's maximum.
9432
9433 2006-12-19  Andreia Gaita  <avidigal@novell.org>
9434
9435         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
9436         check for keywords in alternate casing, close bug #80049.
9437
9438 2006-12-19  Chris Toshok  <toshok@ximian.com>
9439
9440         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
9441         methods (which all do nothing).
9442
9443         * IDropTarget.cs: add the 4 missing methods.
9444
9445 2006-12-19  Chris Toshok  <toshok@ximian.com>
9446
9447         * TableLayoutRowStyleCollection.cs: corcompare work.
9448         
9449         * TableLayoutSettings.cs: same.
9450
9451         * TableLayoutStyle.cs: same.
9452
9453         * TableLayoutColumnStyleCollection.cs: same.
9454
9455 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
9456
9457         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
9458         TableLayoutPanel I've had in my local tree for way too long.
9459
9460 2006-12-19  Miguel de Icaza  <miguel@novell.com>
9461
9462         * TableLayoutSettings.cs: Finish the public API (still needs all
9463         the logic to update on changes). 
9464
9465         * TableLayoutPanelCellPosition.cs: new file.
9466         
9467         * TableLayoutRowStyleCollection.cs,
9468         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
9469         TableLayoutSettings.cs: Track the final 2.0 table api.
9470
9471 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9472
9473         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
9474         and Image List 2.0 members for ColummnHeader.
9475         * ListView.cs: Add key-related 2.0 methods for
9476         ColumnHeaderCollection.
9477
9478 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
9479
9480         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
9481         ArgumentNullException if items argument is null. Ignore null item in
9482         arrays. Removed extra tabs.
9483
9484 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
9485
9486         * MonthCalendar.cs: Fixed InvalidCastException.
9487
9488 2006-12-19  Jackson Harper  <jackson@ximian.com>
9489
9490         * TextControl.cs: Don't increment the position here.
9491         - When calculating char positions only add in the line break size
9492         for hard line breaks.
9493
9494 2006-12-19  Andreia Gaita  <avidigal@novell.org>
9495
9496         * SendKeys.cs: Changed some things to match ms.net behaviour
9497         when parsing shifted capital letters.
9498         
9499         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
9500         Add window handle as parameter to SendInput. X11 needs the 
9501         window handle, and the handle being passed      to it in the keys 
9502         queue is the active control handle (which windows needs), not 
9503         the window handle.
9504         
9505         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
9506         to support SendKeys on X.       
9507         
9508         * X11Keyboard: Implement helper method to lookup a linux keycode
9509         given the virtual keycode. Added table of keycode-2-virtualkey
9510         values to support this.
9511
9512 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9513
9514         * ListView.cs: Add support for SelectedIndexCollection
9515         and SelectedItemCollection 2.0 methods. Implement support
9516         for ImageKey too.
9517         * ListViewItem.cs: Add support for ListViewSubItemCollection
9518         2.0 methods. Also, fix an incorrect behavior of AddRange method
9519         (it shouldn't call Clear).
9520         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
9521
9522 2006-12-19  Jackson Harper  <jackson@ximian.com>
9523
9524         * RichTextBox.cs: 
9525         * TextBoxBase.cs: New args for FormatText
9526         * TextControl.cs: Rewrote the main drawing method, this version
9527         feels a little easier to understand and debug to me.  Hopefully it
9528         does to others also
9529         - Fix FormatText to OR in the new formating values.  Added
9530         FormatSpecified param, basically this works in the same way as
9531         BoundsSpecified in Control.
9532         - Set the caret properties when the caret is positioned.
9533         - When wrapping text make sure that we calculate the width of the
9534         last character
9535         - when calculating alignments we might have wrapped down to the
9536         next line, so don't search for an individual tag, search for the
9537         end of the line
9538         - We need to invalidate the selection area when we replace the
9539         selection.
9540         
9541 2006-12-19  Daniel Nauck  <dna@mono-project.de>
9542
9543         * Application.cs: add Restart () 2.0 support
9544
9545 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9546
9547         * MenuItem.cs: Invalidate menu item rectangle after change Enable
9548         property. Fixes #80268.
9549         
9550 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9551
9552         * MenuAPI.cs: Dont trigger select event when closes top menu
9553         item. Fixes #80270.
9554
9555 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9556
9557         * MenuAPI.cs: When you click on menuitem only trigger onselect
9558         event for top menu itens. Fixes #80271.
9559         
9560 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9561
9562         * MdiWindowManager.cs: Make IconicBounds depend on
9563         the bottom of MdiClient, not the top (fixes #80267)
9564         
9565 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9566
9567         * MdiClient.cs: Added missing 2.0 attribute
9568
9569 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9570
9571         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
9572         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
9573
9574 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9575
9576         * MenuAPI.cs: Fix click when menuitem is not popup,
9577         this regression was caused by last commit (#80272).
9578
9579 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
9580
9581         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
9582         fire click event or close menu. Fixes #80272.
9583
9584 2006-12-17  Daniel Nauck  <dna@mono-project.de>
9585
9586         * ListViewHitTestInfo.cs: add
9587
9588 2006-12-17  Daniel Nauck  <dna@mono-project.de>
9589
9590         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
9591         * FlatButtonAppearance.cs: add
9592         * DockingAttribute.cs: add
9593
9594 2006-12-17  Chris Toshok  <toshok@ximian.com>
9595
9596         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
9597         and rebind our columns when it does - this way, if you make
9598         changes to the DataTable (or set the Table attribute on a DataView
9599         after setting it as the DataGrid's DataSource, the changes are
9600         made visible.)  Fixes bug #80107.
9601
9602 2006-12-17  Daniel Nauck  <dna@mono-project.de>
9603
9604         * ListViewGroup.cs: add internal Location property for layouting.
9605         * Theme.cs: add abstract ListViewGroupHeight function.
9606         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
9607
9608 2006-12-16  Andreia Gaita  <avidigal@novell.com>
9609
9610         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
9611         Added reset of selected index to 0 when adding first tab page.
9612         Fixes #80264
9613         
9614         * NumericUpDown.cs: Fix NET_2_0 check
9615
9616 2006-12-16  Daniel Nauck  <dna@mono-project.de>
9617
9618         * ListViewGroup.cs: fixed DefaultValueAttribute value
9619
9620 2006-12-16  Daniel Nauck  <dna@mono-project.de>
9621
9622         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
9623
9624 2006-12-15  Miguel de Icaza  <miguel@novell.com>
9625
9626         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
9627         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
9628         ScrollableControl.cs: Add a handful of methods that are
9629         overwritten in 2.0 
9630
9631 2006-12-15  Chris Toshok  <toshok@ximian.com>
9632
9633         * XplatUIWin32.cs: initial implementation of the Reversible
9634         drawing functions.  there are some problems.  DrawReversibleFrame
9635         doesn't seem to work at all for Dashed FrameStyle, and in the
9636         Thick case there are drawing errors at the corners (we probably
9637         need to bind Rectangle instead of doing moveto/lineto's.)
9638
9639 2006-12-16  Andreia Gaita  <avidigal@novell.com>
9640         
9641         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
9642         to send blocks of key messages. Send accumulates keys to send with Flush, 
9643         while SendWait sends all keys immediately.
9644                 
9645         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
9646         XplatUIX11.cs,  XplatUIX11-new.cs:
9647         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
9648         to Win32 SendInput.
9649         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
9650         
9651         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
9652         testing for ms.net on this class is very tricky, as the tests run too fast 
9653         to allow the hook to release, essentially freezing the keyboard and the 
9654         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
9655         category :p
9656
9657 2006-12-16  Daniel Nauck  <dna@mono-project.de>
9658
9659         * Padding.cs: fixed serialization compability to MS ("_var" field names),
9660                         added missing attributes.
9661  
9662 2006-12-15  Daniel Nauck  <dna@mono-project.de>
9663
9664         * ListViewGroup.cs: Added missing attributes.
9665         * ListViewGroupCollection.cs: Added missing attributes.
9666
9667 2006-12-15  Daniel Nauck  <dna@mono-project.de>
9668
9669         * ListViewItem.cs: fixed ListViewSubItem text property.
9670
9671 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9672         
9673         * Control.cs: Added missing 2.0 attributes
9674         
9675 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9676         
9677         * MdiClient.cs: Added missing 2.0 attribute.
9678         * MonthCalendar.cs: Added some missing 2.0 attributes 
9679         and properties.
9680         
9681 2006-12-15  Daniel Nauck  <dna@mono-project.de>
9682
9683         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
9684
9685 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
9686
9687         * MainMenu.cs: Add the new 2.0 constructor to help out people
9688         using the MainMenu in VS2005.
9689
9690 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9691         
9692         * MdiChildContext.cs: Removed it, no longer used.
9693         * MdiClient.cs: Added missing 2.0 attributes.
9694         
9695 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9696         
9697         * InternalWindowManager.cs: Fix a NullRef with previous 
9698         changes for toolwindows.
9699         
9700 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9701
9702         * Control.cs: 
9703         - Added AfterTopMostControl to allow for certain controls 
9704         to always stay on top when normal controls are brought to 
9705         front.
9706         
9707         * XplatUIWin32.cs: 
9708         - (DrawInversibleRectangle): Get window rectangle from Win32 
9709         in stead of from control, since Win32 doesn't calculate
9710         screen coords correctly from control's Location if it 
9711         have docked siblings.
9712         
9713         * MdiWindowManager.cs:
9714         - Correct the control menu popup location when clicked on
9715         the maximized form icon. (fixes #80223.1)
9716         - Don't show moving rectangle if mouse hasn't moved from
9717         the original clicked point.
9718         - Removed FormGotFocus handler (not used).
9719         - Calculate the control buttons location from the main
9720         window's size and not client size (fixes #79770).
9721         - Form is now closed when the form icon is double-clicked
9722         (fixes #79775). 
9723         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
9724         
9725         * InternalWindowManager.cs:
9726         - Moved some MDI-only methods to MdiWindowManager.
9727         - Removed unused properties and methods.
9728         - Unified method naming for methods handling wm messages.
9729         - Moved all message handling to seperate methods for
9730         each message.
9731         
9732         * ThemeWin32Classic.cs:
9733         - DrawManagedWindowDecorations now draws the title bar 
9734         with a gradient brush.
9735         - Add a CPDrawButtonInternal that allows us to specify
9736         light, normal and dark colors for the buttons (control 
9737         buttons for MDI children were drawn with the same light
9738         color as the background, therefore loosing the 3D effect).
9739         
9740         * SizeGrip.cs:
9741         - Add a CapturedControl property that is used to 
9742         determine the control to resize (defaults to parent). 
9743         Needed for MdiClient, since its SizeGrip's parent is
9744         MdiClient, but the control to resize is the main form.
9745         
9746         * MdiClient.cs:
9747         - Set SizeGrip's CapturedControl to the main form in order
9748         to resize the main form and not the MdiClient.
9749         - Override AfterTopMostControl to leave the scrollbars 
9750         always on top.
9751
9752 2006-12-15  Daniel Nauck  <dna@mono-project.de>
9753
9754         * ListView.cs: fixed ListViewItemCollection AddRange and
9755                         implemented ListViewItemCollection AddRange 2.0 support.
9756
9757 2006-12-15  Daniel Nauck  <dna@mono-project.de>
9758
9759         * ListViewGroup.cs: Add.
9760         * ListViewGroupCollection.cs: Add
9761         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
9762         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
9763                                 stub for ImageKey 2.0 support.
9764
9765 2006-12-14  Mike Kestner  <mkestner@novell.com>
9766
9767         * ListView.cs: add text padding to the autocalculation for columns
9768         of width -2.  Fixes #80207.
9769  
9770 2006-12-14  Mike Kestner  <mkestner@novell.com>
9771
9772         * ListView.cs: add some index guarding for partial row navigation 
9773         logic.  Fixes #80250.
9774
9775 2006-12-14  Mike Kestner  <mkestner@novell.com>
9776
9777         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
9778         are added or inserted to the collection.  Fixes #81099.
9779
9780 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
9781
9782         * MenuAPI.cs: Closes menu when right click out side of popup
9783         it fix problem in ContextMenu and MainMenu. Fixes #80252.
9784
9785 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9786
9787         * ListViewItem.cs: Fix dumb error.
9788
9789         * ListView.cs: Add Find and ContainsKey methods in 
9790         ListViewItemCollection, and also return true for IsReadOnly
9791         and IsFixedSize (changes for 2.0). 
9792
9793 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
9794
9795         * Control.cs: Allow Region to be set to null.
9796
9797 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9798
9799         * MdiWindowManager.cs: Remove unused (commented out) code.
9800         * Form.cs: When the MdiChild is maximized, the form needs 
9801         WM_NCMOUSELEAVE, so request it.
9802         * InternalWindowManager.cs: 
9803         - Added tooltips to control buttons.
9804         - Removed duplicated control button handling code.
9805         - Removed unused (commented out) code.
9806         
9807 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
9808
9809         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
9810         was used because we must set cursor without trigger ChangeCursor event
9811         and without change Cursor control property. Fixes #79963.
9812
9813 2006-12-12  Andreia Gaita  <avidigal@novell.com>
9814         
9815         * Control.cs: Check if Region setter value is null, and ignore
9816
9817 2006-12-12  Jackson Harper  <jackson@ximian.com>
9818
9819         * TextControl.cs: We were almost always drawing one more line then
9820         needed, since the GetLineByPixel will return the last line found
9821         at that pixel. In most cases though, we were invalidating up to
9822         the junction between two lines.
9823         - Improve debug code.
9824
9825 2006-12-12  Chris Toshok  <toshok@ximian.com>
9826
9827         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
9828         and FillReversibleRectangle.
9829
9830         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
9831         and FillReversibleRectangle.
9832
9833         * XplatUIWin32.cs: add stubs which do nothing for
9834         DrawReversibleFrame, DrawReversibleLine, and
9835         FillReversibleRectangle.
9836
9837         * XplatUIOSX.cs: add stubs which raise NIE for
9838         DrawReversibleFrame, DrawReversibleLine, and
9839         FillReversibleRectangle.
9840
9841         * XplatUIX11.cs: add working implementation for
9842         DrawReversibleFrame, DrawReversibleLine, and
9843         FillReversibleRectangle.
9844         
9845         * ControlPaint.cs: implement DrawReversibleFrame,
9846         DrawReversibleLine, and FillReversibleRectangle, by calling into
9847         the appropriate XplatUI method.
9848
9849 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9850
9851         * Form.cs: Make MdiClient have the focus even if it's
9852         not selectable, since it should receive WM_KEY* and WM_MOUSE 
9853         messages. Fixes #79907.
9854         
9855 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9856
9857         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
9858         queried after the window is created.
9859         
9860         * XplatUIX11.cs: Added SendParentNotify to implement 
9861         WM_PARENTNOTIFY logic. Fixes #79965.
9862         
9863         * Control.cs: Added MakeParam.
9864         
9865 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9866
9867         * MdiClient.cs: Resume Layout before setting window
9868         states (fixes #80201).
9869
9870 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9871
9872         * MenuAPI.cs: Deselect a menu item after performing
9873         the click (fixes #80197).
9874
9875 2006-12-11  Jackson Harper  <jackson@ximian.com>
9876
9877         * TextBoxBase.cs: We need to cap this value, since Maximum -
9878         ViewPortHeight can be less than zero.
9879         - Only do selection with the left mouse button.
9880         * TextBox.cs: Don't tell the world that we have a context menu.
9881         * Control.cs: New method so that we can control whether or not the
9882         context menu is visible outside MWF.
9883
9884 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
9885
9886         * ToolBarButton.cs: Fix text positon. 
9887
9888 2006-12-11  Miguel de Icaza  <miguel@novell.com>
9889
9890         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
9891
9892         * Control.cs (DoubleBuffered): Add implementation.
9893
9894         * Application.cs (OpenForms): Add.
9895
9896 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
9897
9898         * Form.cs: Use opacity instead of Opactiy to determine if we need
9899         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
9900
9901 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
9902
9903         * Control.cs: Fix NRE if Control.Site was set to null.
9904
9905 2006-12-11  Chris Toshok  <toshok@ximian.com>
9906
9907         * Control.cs: ControlCollection.Remove should return if the arg is
9908         null, and ControlCollection.SetChildIndex should raise a ANE.
9909
9910 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
9911
9912         * Control.cs: Verify value set for Dock property. Code formatting
9913         updates.
9914
9915 2006-12-11  Jackson Harper  <jackson@ximian.com>
9916
9917         * TextControl.cs: Draw the caret and the selection when a flag is
9918         set on the owner.
9919         * TextBoxBase.cs: We want to draw the caret and the selection for
9920         TextBox but not for TextBoxBase.
9921         - If the window is resized and scrolling is no longer needed (the
9922         whole doc is visible) set the scroll position to zero.
9923         - The default SelectWord (the one TextBox uses) should move the
9924         caret to the end of the word.
9925         - SelectAll moves the caret to the end of the selection.
9926         * TextBox.cs: We don't selectall on focus, we just do it when the
9927         control is created.
9928         
9929 2006-12-11  Mike Kestner  <mkestner@novell.com>
9930
9931         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
9932
9933 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9934
9935         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
9936         2.0 support.
9937         * ListViewItem.cs: Add Name 2.0 property.
9938
9939 2006-12-11  Andreia Gaita  <avidigal@novell.com>
9940
9941         * TabControl.cs: Set visibility on selected or default tab 
9942         when tabcontrol handle is created, so that it's contents
9943         actually show up (duh). Fixes #80193
9944         Don't redraw the control if there is no handle created, as
9945         the selected index might be completely invalid. Added some tests
9946         to check for this.
9947
9948 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
9949
9950         * ToolBar.cs: Uses maximun width and height of all buttons as 
9951         button rectangle when ButtonSize specified, it looks strange but
9952         is what happens in Win32. Fixes #80189.
9953
9954 2006-12-11  Jackson Harper  <jackson@ximian.com>
9955
9956         * TextControl.cs: Need to track undo levels ourself, since
9957         compound actions will mess them up.
9958
9959 2006-12-10  Andreia Gaita  <avidigal@novell.com>
9960
9961         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
9962         SelectedIndex value is changed (even if it's not valid).
9963         Reset SelectedIndex to 0 when the handle is created and if
9964         the current index is invalid.
9965         Fixes SelectdeIndex unit tests and #80128
9966
9967 2006-12-08  Chris Toshok  <toshok@ximian.com>
9968
9969         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
9970         calls EndEdit, it needs to be called before we set current_cell to
9971         its new value.  Otherwise, we end up committing the value in the
9972         textbox to the new cell as well.  Fixes bug #80160.
9973
9974 2006-12-08  Chris Toshok  <toshok@ximian.com>
9975
9976         * Form.cs (set_CancelButton): if the button's DialogResult is
9977         None, set it to Cancel.  Fixes bug 80180.
9978
9979 2006-12-08  Jackson Harper  <jackson@ximian.com>
9980
9981         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
9982         to watch ourselves when setting the canvas size and setting the
9983         scrollbar values.
9984
9985 2006-12-08  Chris Toshok  <toshok@ximian.com>
9986
9987         * DataGrid.cs: comment out the two MakeTransparent calls for the
9988         time being so people using trunk (and not 1.2.2) on windows can
9989         actually use the datagrid.  This deals with bug #80151.
9990
9991 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
9992
9993         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
9994         Graphics.DrawImage (image, int, int, int, int) overload instead
9995         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
9996         the dpi difference and was blurring images it drew.
9997         [Fixes bug #79960]
9998
9999 2006-12-08  Chris Toshok  <toshok@ximian.com>
10000
10001         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
10002         rowcnt is 0 (such as with an empty datasource), and make sure we
10003         initialize not_usedarea.Y to cells.Y, so we don't draw over the
10004         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
10005
10006 2006-12-08  Chris Toshok  <toshok@ximian.com>
10007
10008         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
10009         grid.
10010
10011 2006-12-08  Chris Toshok  <toshok@ximian.com>
10012
10013         [ Fixes bug #80167 ]
10014         
10015         * ThemeWin32Classic.cs: don't draw the image if the button's flat
10016         style is FlatStyle.System.
10017
10018         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
10019         ButtonBase.flat_style private, and switch uses of it to the public
10020         property.
10021         
10022 2006-12-08  Chris Toshok  <toshok@ximian.com>
10023
10024         [ Fixes bug #80121 ]
10025         
10026         * ThemeWin32Classic.cs: center the caption text in the datagrid
10027         when we draw it.
10028
10029         * DataGrid.cs: lessen the amount we add to the caption height from
10030         6 to 2.  6 was making it huge.
10031
10032 2006-12-08  Andreia Gaita  <avidigal@novell.com>
10033
10034         * UpDownBase: Handle MouseWheel call directly instead of capturing
10035         the inner textbox's OnMouseWheel. Fixes #80166
10036
10037 2006-12-08  Jackson Harper  <jackson@ximian.com>
10038
10039         * TextControl.cs: We need to invalidate the textbox when we empty
10040         it (how had this not been discovered before?)
10041
10042 2006-12-08  Jackson Harper  <jackson@ximian.com>
10043
10044         * TextBoxBase.cs: Reworked the mouse down code so I could get it
10045         to behave like MS, we now ignore the eventargs.Click and just
10046         track state ourself, which we were already doing anyways.
10047         - Constrain the double click handler to the double click size.
10048         
10049 2006-12-08  Chris Toshok  <toshok@ximian.com>
10050
10051         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
10052         direction if that scrollbar isn't shown.  fixes bug #80158.
10053
10054 2006-12-08  Andreia Gaita  <avidigal@novell.com>
10055
10056         * NumericUpDown.cs: Update value on getter. Fixes #79950
10057
10058 2006-12-08  Chris Toshok  <toshok@ximian.com>
10059
10060         * MenuItem.cs: add back in the event cloning code.  I didn't know
10061         how to do it in the face of the EventHandlerList work i'd done
10062         last week.  Fixes bug #80183.
10063
10064 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
10065
10066         * Control.cs: Add an invalidate to the BackgroundImage setter.
10067         [Fixes 80184]
10068
10069 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
10070
10071         * ToolStrip*: Add some small properties reported by MoMA, fix event
10072         firing and default properties based off of unit tests, and add some
10073         attributes based off of the class status page.
10074
10075 2006-12-07  Jackson Harper  <jackson@ximian.com>
10076
10077         * TextBoxBase.cs: Take HideSelection into account when determining
10078         whether or not to show the selection.
10079         * RichTextBox.cs: After inserting the RTF into the document move
10080         the cursor to the beginning of the document.
10081
10082 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
10083
10084         * Control.cs: Remove static ArrayList "controls" which maintained
10085         a reference to every control created.
10086         * Application.cs: Create a static FormCollection to maintain a reference
10087         to every form created.  Use it in places that formerly enumerated through
10088         the controls one looking for forms.
10089         * Form.cs: Add and remove self from above FormCollection.
10090
10091 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
10092
10093         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
10094           not libgdk (though it makes me wonder why I didn't have any
10095           problems)
10096
10097 2006-12-07  Chris Toshok  <toshok@ximian.com>
10098
10099         [ you had to know this was coming after that last commit...]
10100         
10101         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
10102         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
10103         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
10104         XCopyArea).
10105
10106 2006-12-07  Chris Toshok  <toshok@ximian.com>
10107
10108         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
10109         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
10110         all the behavior we need for double buffering.
10111
10112         * XplatUIDriver.cs: implement the 3 double buffer methods using a
10113         client side Bitmap, just like the old Control-based double buffer
10114         code did.  The methods are virtual, so each XplatUI driver
10115         subclass can replace the implementation to use a faster, platform
10116         specific approach.
10117
10118         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
10119         double buffer code, and clean things up a bit in the process.
10120
10121 2006-12-06  Chris Toshok  <toshok@ximian.com>
10122
10123         * Control.cs: reindent WndProc.
10124
10125 2006-12-06  Chris Toshok  <toshok@ximian.com>
10126
10127         [ I wanna be like BenM when I grow up ]
10128         
10129         * Hwnd.cs: create a single static Graphics object on the static
10130         Bitmap we create.  use this for our text measurements.
10131
10132         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
10133         This was causing us to allocate a backbuffer for every control,
10134         even when it wasn't flagged as double buffered.  Instead use the
10135         single graphics instance.  This might have implications for
10136         multithreaded applications.  If we run into problems we can switch
10137         to creating 1 Graphics per control, on the static Hwnd bitmap.
10138
10139         this change nets us a 7M savings in private dirty mappings when
10140         running FormsTest.exe.
10141
10142 2006-12-06  Chris Toshok  <toshok@ximian.com>
10143
10144         * ListView.cs: the BackgroundImage override is just to set
10145         attributes.  chain up to base.BackgroundImage.
10146
10147         * RichTextBox.cs: same.
10148
10149         * ToolBar.cs: same, but we need to also redraw the toolbar when it
10150         changes, so instead a handler for BackgroundImageChanged.
10151         
10152         * Control.cs: make background_image private.
10153
10154 2006-12-06  Chris Toshok  <toshok@ximian.com>
10155
10156         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
10157         sure we even need this assignment, but roll with it for now.
10158
10159         * Control.cs: make the cursor field private.
10160
10161 2006-12-06  Chris Toshok  <toshok@ximian.com>
10162
10163         * Form.cs: we don't need to explicitly set ImeMode to
10164         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
10165         behavior in the face of ImeMode.Inherit.
10166
10167         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
10168         change the ctor's assignment to use ImeMode instead of ime_mode.
10169
10170         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
10171         ImeModeInherit.  Only check for the parent's imemode (and return
10172         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
10173         This fixes the button unit test, which sets both ImeMode and
10174         DefaultImeMode to ImeMode.Disable.
10175
10176         also make the ime_mode field private.
10177
10178 2006-12-06  Chris Toshok  <toshok@ximian.com>
10179
10180         * Control.cs: make control_style private.
10181
10182         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
10183         setting the styles to true, then setting them to false instead of
10184         reverting to their previous values.
10185
10186         also, call SetStyle on the scrollbars instead of using
10187         control_style directly.
10188
10189 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
10190
10191         * FormCollection.cs: Implement. [2.0]
10192
10193 2006-12-06  Chris Toshok  <toshok@ximian.com>
10194
10195         * Control.cs: make tab_stop private.
10196
10197         * Label.cs: set TabStop, not tab_stop.  reformat some event
10198         add/remove methods to make them more compact.
10199
10200 2006-12-06  Chris Toshok  <toshok@ximian.com>
10201
10202         * RadioButton.cs: fix TabStop handling.
10203
10204 2006-12-06  Chris Toshok  <toshok@ximian.com>
10205
10206         * TextBox.cs: remove the explicit assignments to has_focus.
10207         Control does that.
10208
10209         * ButtonBase.cs: remove the assignment to has_focus.  Control will
10210         manage that.
10211         
10212 2006-12-06  Chris Toshok  <toshok@ximian.com>
10213
10214         * ButtonBase.cs: remove all uses of is_enabled from this code.
10215         it's always true when any of the code containing the checks is
10216         executed.
10217
10218 2006-12-06  Chris Toshok  <toshok@ximian.com>
10219
10220         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
10221         with different semantics (some are present in both 1.1 and 2.0
10222         profiles) so that we match MS's behavior in our unit tests.
10223
10224 2006-12-06  Jackson Harper  <jackson@ximian.com>
10225
10226         * TextControl.cs: Make this operation undoable.
10227         * TextBoxBase.cs: Factor the border width into the preferred
10228         height.
10229         - implement Modified as per the spec.
10230
10231 2006-12-06  Chris Toshok  <toshok@ximian.com>
10232
10233         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
10234
10235 2006-12-06  Chris Toshok  <toshok@ximian.com>
10236
10237         * Control.cs: make right_to_left and context_menu fields private.
10238
10239 2006-12-06  Chris Toshok  <toshok@ximian.com>
10240
10241         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
10242         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
10243         Control.child_controls private.  switch all uses over to
10244         Control.Controls.
10245
10246 2006-12-06  Chris Toshok  <toshok@ximian.com>
10247
10248         * System.Windows.Forms/GroupBox.cs,
10249         System.Windows.Forms/AccessibleObject.cs,
10250         System.Windows.Forms/ErrorProvider.cs,
10251         System.Windows.Forms/Control.cs,
10252         System.Windows.Forms/UpDownBase.cs,
10253         System.Windows.Forms/ScrollBar.cs,
10254         System.Windows.Forms/DateTimePicker.cs,
10255         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
10256         System.Windows.Forms/ToolTip.cs,
10257         System.Windows.Forms/RadioButton.cs,
10258         System.Windows.Forms/LinkLabel.cs,
10259         System.Windows.Forms/Splitter.cs,
10260         System.Windows.Forms/TextBoxBase.cs,
10261         System.Windows.Forms/ToolStripTextBox.cs,
10262         System.Windows.Forms/ContainerControl.cs,
10263         System.Windows.Forms/ThemeWin32Classic.cs,
10264         System.Windows.Forms/SizeGrip.cs,
10265         System.Windows.Forms/ToolStripDropDown.cs,
10266         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
10267         private.  switch all uses over to Control.Parent.
10268
10269 2006-12-06  Chris Toshok  <toshok@ximian.com>
10270
10271         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
10272         Control does this before calling emitting these events.
10273
10274         * TabControl.cs: same.
10275
10276         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
10277         Control.client_rect.
10278
10279         * ButtonBase.cs: use the ClientSize property instead of the
10280         client_size field.
10281
10282         * ScrollableControl.cs: same.
10283
10284         * Control.cs: another pass at making properties private.  also,
10285         move the initialization of tab_stop to the ctor.
10286
10287 2006-12-05  Andreia Gaita <avidigal@novell.com>
10288
10289         * TabControl.cs: Let the selected index be set freely if the 
10290         control handle is not yet created.
10291
10292 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
10293
10294         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
10295         internal until I can rewrite DefaultLayout.
10296         * ToolStrip.cs: Fix build error and some general cleaning.
10297         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
10298         Fix build errors caused by making some of Control's fields private.
10299
10300 2006-12-05  Jackson Harper  <jackson@ximian.com>
10301
10302         * TextControl.cs: Redo Insert a little so that it use IndexOf
10303         instead of Split, this prevents it from messing up on things like
10304         \n\n\n. Also more effecient since the split array doesn't need to
10305         be created.
10306         * TextBoxBase.cs: AppendText doesnt handle multiline and non
10307         multiline text differently, this is the first of many fixes that
10308         will make multiline/non-multiline the same thing as far as the
10309         TextBoxBase is concerned.
10310         - Don't split the text and insert lines, this can lose some line
10311         endings (like is the last line a soft or hard break). Instead use
10312         the new Insert.
10313         - Fix an off by one when combining all the lines in the Text
10314         getter.
10315         - Remove separate multiline handling from the Text getter/setter.
10316
10317 2006-12-05  Chris Toshok  <toshok@ximian.com>
10318
10319         * ButtonBase.cs: a few changes:
10320
10321         - don't reinitialize internal Control fields in the ctor when they
10322         have the same values as Control sets them.
10323
10324         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
10325         this before calling those methods.
10326
10327         - we don't need to call Refresh for anything.  use Invalidate
10328         instead.
10329
10330         - OnEnabledChanged doesn't need to redraw at all - Control.cs
10331         calls Refresh in its OnEnabledChanged.
10332         
10333         - several of the events we were registered for in the ctor to
10334         redraw ourselves already include calls to Invalidate in the
10335         property setters that raise the events.  remove the extra
10336         invalidation.
10337
10338         - reformat a switch statement that was 83274658 columns wide.
10339         
10340 2006-12-05  Mike Kestner  <mkestner@novell.com>
10341
10342         * ComboBox.cs: fix a unit test regression from a TextBox
10343         SelectionLength return of -1 when there's no selection.  
10344
10345 2006-12-05  Chris Toshok  <toshok@ximian.com>
10346
10347         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
10348         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
10349         cleaning up some of the internal Control fields being used by
10350         subclasses.
10351
10352 2006-12-05  Mike Kestner  <mkestner@novell.com>
10353
10354         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
10355         listbox after AddImplicit calls since it defaults to hidden. Add a 
10356         hack to preserve requested heights across DropDownStyle changes.
10357
10358 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
10359
10360         * PropertyGrid.cs: Hide FindFirstItem method from public API.
10361
10362 2006-12-05  Chris Toshok  <toshok@ximian.com>
10363
10364         * DataGridView.cs: fix compiler warnings.
10365
10366         * PrintControllerWithStatusDialog.cs: same.
10367
10368         * ToolBar.cs: same.
10369
10370         * FolderBrowserDialog.cs: same.
10371
10372         * Splitter.cs: same.
10373
10374         * DataGridViewComboBoxCell.cs: same.
10375
10376         * XplatUIWin32.cs: same.
10377
10378         * PictureBox.cs: same.
10379
10380         * Win32DnD.cs: same.
10381
10382         * PageSetupDialog.cs: same.
10383
10384         * FileDialog.cs: same.
10385
10386         * PrintDialog.cs: same.
10387
10388         * DataGridTextBoxColumn.cs: same.
10389
10390         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
10391
10392 2006-12-05  Chris Toshok  <toshok@ximian.com>
10393
10394         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
10395         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
10396         System.ComponentModel.EventHandlerList work.
10397
10398 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
10399
10400         * DrawTreeNodeEventArgs.cs: Added.
10401
10402 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10403         
10404         * InternalWindowManager.cs: Remove an unused field.
10405         
10406 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10407
10408         * InternalWindowManager.cs:
10409         - Save the point where the title bar is clicked.
10410         
10411         * MdiWindowManager.cs:
10412         - Only allow moving of the window as long as the 
10413         clicked point on the title bar does not get out of
10414         MdiClient's rectangle. Fixes #79982.
10415         
10416         * MdiClient.cs:
10417         - Added Horizontal/VerticalScrollbarVisible.
10418         - Simplified the scrollbar sizing algorithm.
10419         - Cache the difference in scrolled value in
10420         H/VBarValueChanged and move the calculation out
10421         of the for loop.
10422
10423 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10424
10425         * Control.cs: Make the Console.WriteLine in WndProc 
10426         write more info.
10427
10428 2006-12-05  Chris Toshok  <toshok@ximian.com>
10429
10430         * ToolStripManager.cs, ToolStripButton.cs,
10431         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
10432         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
10433         ToolStripSplitButton.cs, ToolStripSeparator.cs,
10434         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
10435         ToolStripProgressBar.cs, ToolStripContainer.cs,
10436         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
10437         to using System.ComponentModel.EventHandlerList.
10438
10439 2006-12-04  Chris Toshok  <toshok@ximian.com>
10440
10441         * LinkLabel.cs: fix up compiler warnings.
10442
10443         * TableLayoutSettings.cs: same.
10444
10445         * TreeView.cs: same.
10446
10447         * ToolBar.cs: same.
10448
10449         * TabControl.cs: same.
10450
10451         * RichTextBox.cs: same.
10452
10453         * ListViewItem.cs: same.
10454
10455         * PropertyGrid.cs: same.
10456
10457         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
10458
10459         * ToolTip.cs same.
10460
10461         * TextRenderer.cs: fix up compiler warnings.
10462
10463         * Label.cs: same.
10464
10465         * Form.cs: corcompare fixes.
10466
10467         * PictureBox.cs: fix up compiler warnings.
10468
10469         * ImageListStreamer.cs: same.
10470
10471         * TrackBar.cs: corcompare fix.
10472
10473         * Control.cs: fix up compiler warnings.
10474
10475         * SplitterPanel.cs: same.
10476
10477         * NumericTextBox.cs: same.
10478
10479         * ImageList.cs: same.
10480
10481         * StatusStrip.cs: same.
10482
10483         * ProgressBar.cs: corcompare fix.
10484
10485         * ToolStripButton.cs: fix up compiler warnings.
10486
10487         * ToolStripStatusLabel.cs: same.
10488
10489         * ToolStripSplitButton.cs: same.
10490
10491         * ToolStripSeparator.cs: same.
10492
10493         * ToolStripProgressBar.cs: same.
10494
10495         * ToolStripDropDownMenu.cs: same
10496
10497         * ToolStripDropDown.cs: same.
10498
10499         * ToolStripDropDownButton.cs: same.
10500
10501         * ToolStrip.cs: same.
10502
10503         * ToolStripControlHost.cs: same.
10504
10505         * ToolStripContentPanel.cs: same.
10506
10507         * ToolStripDropDown.cs: same.
10508
10509         * ToolStripContainer.cs: same.
10510
10511         * ToolStripPanel.cs: same, and add "new" where we need it to work
10512         with the new ArrangedElementCollection.
10513
10514         * ToolStripItemCollection.cs: add "new" where we need it to work
10515         with the new ArrangedElementCollection.
10516
10517 2006-12-04  Andreia Gaita <avidigal@novell.com>
10518
10519         * TabControl.cs: Fix default tab selection to after TabControl
10520         gets focus and not before. Fixes #80128
10521
10522 2006-12-04  Chris Toshok  <toshok@ximian.com>
10523
10524         * DataGridTableStyle.cs: remove the gross calling of
10525         datagrid.Refresh from here.  It's a broken idea and it doesn't
10526         work anyway.
10527
10528         * DataGrid.cs: instead, just register/unregister from the
10529         DataGridTableStyle events in CurrentTableStyle.  we play it
10530         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
10531         even though some would most likely not require it.  Fixes bug
10532         #80115 (and one portion of #80117 as a side effect).
10533
10534 2006-12-04  Chris Toshok  <toshok@ximian.com>
10535
10536         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
10537         so the textbox (if any) goes away.  Fixes bug #80117.
10538
10539 2006-12-04  Chris Toshok  <toshok@ximian.com>
10540
10541         * DataGridColumnStyle.cs: set the column's readonly property
10542         initially based on the property descriptor's IsReadOnly.  Fixes
10543         bug #80044.
10544
10545 2006-12-04  Chris Toshok  <toshok@ximian.com>
10546
10547         * ComboBox.cs: wrap the dropdown style changing work in
10548         SuspendLayout/ResumeLayout.  Fixes bug #79968.
10549
10550 2006-12-04  Jackson Harper  <jackson@ximian.com>
10551
10552         * TextBoxBase.cs: Fix off by one, since these are one-based.
10553         * TextBox.cs: Select all the text when we get focus.  The TextBox
10554         does this but the RTB does not.
10555
10556 2006-12-04  Chris Toshok  <toshok@ximian.com>
10557
10558         * DataGridTextBoxColumn.cs: remove some spew.
10559
10560         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
10561         but some part of me is saying "it shouldn't be here.."  At any
10562         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
10563         setting the value.
10564
10565 2006-12-04  Chris Toshok  <toshok@ximian.com>
10566
10567         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
10568         to reassign the propertydescriptor.
10569
10570 2006-12-04  Jackson Harper  <jackson@ximian.com>
10571
10572         * TextBoxBase.cs:
10573         * TextControl.cs: Remove some unused variables.  Maybe this will
10574         patch things up between mike and I.
10575         - don't split lines less then one char wide, if the viewport is
10576         that small text won't be visible anyways.
10577         
10578 2006-12-04  Jackson Harper  <jackson@ximian.com>
10579
10580         * TextBoxBase.cs: Default selection length is -1, need to do some
10581         more testing on windows to see when this is used for the property.
10582         - Redid the Lines [] property to that we properly remove soft line
10583         breaks
10584         - added support for preserving carriage returns
10585         -  CanUndo is not a variable like 'is undo enabled' it just returns
10586         true if there is undo operations available.
10587         - AppendText doesn't need to grab the last tag itself anymore,
10588         this happens automatically when we move the cursor.
10589         * TextControl.cs: Add CompoundActions to the undo class. This
10590         allows combining the other operations into one big option.  ie a
10591         paste will combine { delete old, insert new, move cursor }
10592         - Add InsertString undo operation
10593         - New method for deleting multiline text
10594         - Add carriage returns to lines. So we can preserve carriage
10595         returns when text is 'roundtripped'
10596
10597 2006-12-04  Chris Toshok  <toshok@ximian.com>
10598
10599         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
10600         minimum 0.  Fixes the scrollbar exception in bug #80136.
10601
10602 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10603
10604         * MdiClient.cs: 
10605         * MdiWindowManager: Removed unused fields and methods.
10606         
10607 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10608         
10609         * StatusBar.cs: Update all panels when a AutoSize=Contents
10610         panel needs updating.
10611         
10612         * StatusBarPanel.cs: Remove twidth and only use initialize.
10613         Fixes #80031.
10614                 
10615 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10616
10617         * Form.cs: When a form's MdiParent is set add it directly
10618         on top of the z-order in stead of relying on MdiClient's
10619         ActivateChild to do it. Fixes #80135.
10620         
10621         * MdiClient.cs: 
10622         - Remove original_order, mdi_child_list is already doing
10623         the same thing.
10624         - Create mdi_child_list on construction in
10625         stead of first use (avoids a few null checks).
10626
10627         * MenuItem.cs: Use an already existing list of mdi children
10628         to get the correct order of children and remove the other
10629         redundant list.
10630
10631 2006-12-04  Chris Toshok  <toshok@ximian.com>
10632
10633         * PropertyGridView.cs: cached_splitter_location is only used in
10634         !DOUBLEBUFFER code.
10635
10636         * PropertyGrid.cs: implement the ComComponentNameChanged event
10637         using Events, hoping that would fix the warning.  Looks like a
10638         compiler bug instead (#80144).
10639
10640         * PropertyManager.cs: remove unused method.
10641
10642 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
10643
10644         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
10645         include parentesis to fix expression evaluation. Fixes #79634.
10646
10647 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
10648         
10649         * MenuAPI.cs:
10650         - Changes to fix behavior in Menu control, some reported in #80097
10651         and other detected during behavior refactory like a select event
10652         problems.
10653         - Remove unneded "if's" conditions.
10654         - Created an internal to flag when popup is active in control, we need 
10655         it because in .NET you can have menu active but without popup active
10656         when you active menu using popup without visible items.
10657         - Mimic win32 behavior for Select and Popup events.  
10658         - Dont open popup menu when you dont have visible subitems.
10659         - Do nothing when click on disabled menu item.
10660         - Some small changes to follow the coding style guidelines.
10661         - Unselect menu only when another control gives focus. Fixes #80097.
10662         - Remove unused code.
10663         
10664         * MenuItem.cs: internal VisibleItems method to check if menu
10665         theres visible subitems, it will be usefull to fix some 
10666         behavior in Menu control.
10667         
10668 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
10669         
10670         * Timer.cs: Tag property for 2.0 profile.
10671         
10672 2006-12-01  Chris Toshok  <toshok@ximian.com>
10673
10674         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
10675         
10676         * Win32DnD.cs: comment out some unused fields.
10677
10678         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
10679         some unused properties/methods.
10680
10681         * XplatUIX11.cs: fix MousePosition so we override the base class's
10682         property instead of conflicting with it.
10683
10684         * PictureBox.cs: comment out some unused fields
10685
10686         * OSXStructs.cs: make some struct fields public.
10687
10688         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
10689         MousePosition so we override the base class's property instead of
10690         conflicting with it.
10691
10692         * X11Dnd.cs: comment out some unused fields
10693
10694         * X11DesktopColors.cs: fix some struct field visibility to quiet
10695         the compiler.
10696
10697         * X11Dnd.cs: remove some debug code.
10698
10699         * ThemeClearlooks.cs: comment out unused field.
10700
10701         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
10702
10703         * ThemeGtk.cs: comment out some unused pinvokes.
10704
10705         * Timer.cs: remove some unused fields.
10706
10707         * ThemeClearlooks.cs: comment out unused field.
10708
10709         * UpDownBase.cs: comment out unused field.
10710
10711         * DataObject.cs: comment out unused field.
10712
10713         * DataGridBoolColumn.cs: reomve unused field.
10714
10715         * DataGrid.cs: remove unused field.
10716
10717         * Cursor.cs: remove old ToBitmap code.
10718
10719         * ControlPaint.cs: remove unused method.
10720
10721         * ScrollBar.cs: remove unused fields.
10722
10723         * ComboBox.cs: remove unused field, and chain up to
10724         AccessibleObject ctor.
10725
10726         * ListBox.cs: remove unused field.
10727
10728         * ButtonBase.cs: wrap a couple fields in NET_2_0.
10729
10730         * GridEntry.cs: remove unused fields.
10731
10732         * Binding.cs: remove unused fields.
10733
10734         * AxHost.cs: remove unused method.
10735
10736         * ContainerControl.cs: remove unused field.
10737
10738         * ScrollableControl.cs: remove unused fields.
10739
10740 2006-12-01  Chris Toshok  <toshok@ximian.com>
10741
10742         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
10743         the Where/WhereString stuff.  it's easy enough to CWL
10744         Environment.StackTrace.
10745
10746         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
10747         unused private fields.
10748
10749 2006-12-01  Jackson Harper  <jackson@ximian.com>
10750
10751         * TextControl.cs: Do not update the view while inserting multiline
10752         text. If we update the view we might wrap lines, before entering
10753         the new lines, which causes the new line insertion calculations to
10754         be totally fubared.
10755         - Remove an old TODO
10756         - Make debug output a little nicer
10757         
10758 2006-12-01  Chris Toshok  <toshok@ximian.com>
10759
10760         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
10761
10762 2006-12-01  Chris Toshok  <toshok@ximian.com>
10763
10764         [ fix the majority of the CS0108 warnings we've been suppressing ]
10765         
10766         * TreeView.cs: mark BackgroundImageChanged as 'new'.
10767
10768         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
10769         to "LayoutToolBar" to quiet mcs.
10770         
10771         * TabControl.cs: mark our ControlCollection class as 'new'.
10772
10773         * TextBoxBase.cs: mark some events as 'new'.
10774
10775         * Splitter.cs: TabStop is 'new'.
10776
10777         * ControlBindingsCollection.cs: mark a few methods as new since
10778         they change the visibility from protected to public.
10779
10780         * RadioButton.cs: DoubleClick -> base class, and remove unused
10781         HaveDoubleClick.
10782
10783         * MonthCalendar.cs: ImeMode property -> base class, and mark many
10784         events as new.
10785
10786         * NumericUpDown.cs: TextChanged -> base class.
10787
10788         * CheckedListBox.cs: mark our ObjectCollection class as new to
10789         quiet mcs.
10790
10791         * FolderBrowserDialog.cs: make HelpRequest event new and have it
10792         muck with the base class.
10793
10794         * StatusBar.cs: fix some mcs warnings about Update being the same
10795         name as a base class method.
10796
10797         * RichTextBox.cs: mark some events as new, and make them do things
10798         to the base class impl.
10799
10800         * UserControl.cs: mark TextChanged as new, and have it manipulate
10801         base.TextChanged.
10802
10803         * UpDownBase.cs: mark some things new.
10804
10805         * CheckBox.cs: mark DoubleClick "new", and add some text about
10806         what we need to look at.
10807
10808         * Panel.cs: make the events "new", and manipulate the base
10809         version.  these are just here for attributes.
10810
10811         * AccessibleObject.cs: make owner private.
10812
10813         * Control.cs: deal with AccessibleObject.owner being private.
10814         cache our own copy if we need it.
10815
10816         * Button.cs: add "new" to the DoubleClickEvent.
10817
10818         * ListBox.cs: no need to track our own has_focus here.  let
10819         Control.has_focus do it for us.  Also some other work to clear up
10820         warnings about not overriding base class methods of the same name.
10821         
10822         * ComboBox.cs: clear up some warnings about not override base
10823         class methods of the same name.
10824
10825 2006-12-01  Chris Toshok  <toshok@ximian.com>
10826
10827         * Form.cs: flag a few things as "new" to quiet some of the mcs
10828         warnings.
10829
10830         * AxHost.cs: same.
10831
10832         * PrintPreviewDialog.cs: same.
10833
10834         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
10835         now DGV isn't so horrible on the class status page.  also, move
10836         all events to using System.ComponentModel.EventHandlerList.  my
10837         wrists hurt.
10838
10839 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10840
10841         * MdiWindowManager.cs:
10842         - Set form to active mdi child if shown,
10843         and update the active mdi child to the next 
10844         remaining child in the z-order if the form is hidden.
10845
10846         * Form.cs: 
10847         - Track if the form has been visible and if its 
10848         visibility is beeing changed, so that the MdiClient
10849         can properly decide the ActiveMdiChild. The MdiClient 
10850         cannot track this since the form can change visibility 
10851         before MdiClient is created.
10852
10853         * MdiClient.cs:
10854         - Don't activate anything of the parent form is changing
10855         its visibility.
10856         - Rework ActiveMdiChild to only return visible mdi 
10857         children and take into account several other corner 
10858         cases.
10859
10860 2006-12-01  Chris Toshok  <toshok@ximian.com>
10861
10862         * IBindableComponent.cs: new 2.0 interface.
10863
10864 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
10865
10866         * DataGrid.cs: Font for caption area is bold by default.
10867
10868 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
10869
10870         * Menu.cs: Tag property for 2.0.
10871         
10872 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
10873
10874         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
10875         
10876 2006-12-01  Chris Toshok  <toshok@ximian.com>
10877
10878         * TreeView.cs: doh, the Begin* events should be
10879         TreeViewCancelEventHandler.
10880
10881 2006-12-01  Chris Toshok  <toshok@ximian.com>
10882
10883         * Form.cs: Form.ControlCollection already stores off the
10884         form_owner field.  don't access the base class's internal "owner"
10885         field.
10886
10887         * Control.cs: make all the fields in Control.ControlCollection
10888         private.  there's no need for any internal fields here.
10889
10890 2006-12-01  Chris Toshok  <toshok@ximian.com>
10891
10892         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
10893         OnHandleCreated.  Fixes bug #80109.
10894
10895 2006-12-01  Chris Toshok  <toshok@ximian.com>
10896
10897         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
10898         SplitContainer.cs, Control.cs, StatusStrip.cs,
10899         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
10900         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
10901         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
10902         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
10903         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
10904         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
10905         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
10906         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
10907         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
10908         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
10909
10910         do most of the work to convert our code over to use
10911         System.ComponentModel.Component.Events for
10912         adding/removing/dispatching events.
10913
10914
10915 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
10916
10917         * DataGridView.cs: Fix an ArgumentNullException reported 
10918         twice today in IRC.
10919
10920 2006-11-30  Mike Kestner  <mkestner@novell.com>
10921
10922         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
10923         grabbed listbox.  Fixes #80036 and #80101.
10924
10925 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
10926
10927         * Message.cs: Changed ToString() to match MS.
10928         
10929 2006-11-30  Jackson Harper  <jackson@ximian.com>
10930
10931         * TextBoxBase.cs: You can still change the selected text on a read
10932         only textbox.
10933         * TextControl.cs: Lower magic number for wrap calculations. This
10934         lets text get closer to the right (far) edge.
10935
10936 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
10937
10938         * Control.cs: Tweak 2.0 layout properties.
10939         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
10940         * TextRenderer.cs: Add a new overload.
10941         * ToolStrip*: Huge amount of changes and new features.
10942
10943 2006-11-30  Mike Kestner  <mkestner@novell.com>
10944
10945         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
10946         scroll range correct.  Fixes #79994.
10947
10948 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
10949
10950         * MdiWindowManager.cs: Update main form's text when
10951         a form is closed. (fixes #80038)
10952         
10953 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
10954
10955         * ToolBar.cs:
10956         - Fix an regression in ButtonSize.
10957         - Get ImeMode default value change to "Disable".
10958         - Get ShowTooltips default value change to true, default value is 
10959         "false" but after make a test in .NET we get "true" result as default.
10960         
10961 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
10962
10963         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
10964
10965 2006-11-29  Chris Toshok  <toshok@ximian.com>
10966
10967         * XplatUIWin32.cs (GetWindowTransparency): check return value of
10968         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
10969         SetWindowTransparency hasn't been called.
10970
10971 2006-11-29  Chris Toshok  <toshok@ximian.com>
10972
10973         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
10974         if it's supported.
10975         (set_AllowTransparency): reorder things a little so that the
10976         WS_EX_LAYERED style is removed properly.
10977
10978 2006-11-29  Chris Toshok  <toshok@ximian.com>
10979
10980         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
10981         
10982         * Form.cs: only call the XplatUI transparency method (get/set) if
10983         SupportsTransparency says it's supported. Otherwise fallback to
10984         doing nothing (in the set case) or returning the instance field we
10985         cache (in the get case).
10986
10987         * XplatUIStructs.cs: add TransparencySupport flag enum.
10988         
10989         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
10990         change to SupportsTransparency.
10991
10992         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
10993         TransparencySupport.None from SupportsTransparency.
10994
10995         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
10996         TransparencySupport.Set from SupportsTransparency.
10997
10998         * XplatUIWin32.cs: implement GetWindowTransparency calling
10999         GetLayeredWindowAttributes, and implement SupportsTransparency by
11000         checking whether or not both
11001         GetWindowTransparency/SetWindowTransparency are available
11002         entrypoints.  We need to do this since SetWindowTransparency is
11003         available as of win2k, but GetWindowTransparency requires winxp.
11004         yay win32 api.
11005
11006         * XplatUI.cs: Add GetWindowTransparency, and change
11007         SupportsTransparency to allow for either/both Get/Set.
11008
11009 2006-11-29  Chris Toshok  <toshok@ximian.com>
11010
11011         * DataGrid.cs: keep from going into an infinite loop redrawing a
11012         datagrid that has no datasource.  Fixes bug #80033.
11013
11014 2006-11-29  Chris Toshok  <toshok@ximian.com>
11015
11016         * MenuItem.cs: fix the NRE when we assign text (and therefore call
11017         Invalidate) before the mainmenu has been assigned to a control.
11018
11019 2006-11-29  Chris Toshok  <toshok@ximian.com>
11020
11021         * DataGrid.cs: detect when we should be double the double click
11022         row/column autosize stuff, although that codepath has yet to be
11023         written.  part of the work for bug #79891.
11024
11025 2006-11-29  Chris Toshok  <toshok@ximian.com>
11026
11027         * Binding.cs (SetControl): fix unit test.
11028
11029 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11030
11031         * PageSetupDialog.cs: Validate the margins and set them in
11032         PageSettings. 
11033         * NumericTextBox.cs: New class to mimic the behavior of the
11034         textboxes used in the printing dialogs.
11035
11036 2006-11-29  Andreia Gaita  <avidigal@novell.com>
11037         
11038         * Form.cs: Revert previous change (remove call UpdateBounds
11039         from form constructor), because it messes with the handle creation
11040         order, and that one needs lots and lots of love.
11041         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
11042         for valid printer and throw InvalidPrinterException if document
11043         is set but printer not valid), adding a MonoTODO. Once 
11044         handle creation is done properly, we can put this back in.
11045
11046 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
11047
11048         * MenuItem.cs: Create a invalidate method for menu item, to be
11049         calling from set text, it make text changes to imadiate update
11050         on screen. Fixes #80013. 
11051         
11052 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
11053
11054         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
11055         fixes bug #80070 and some other problem on toolbar buttons
11056         layout.
11057
11058 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
11059
11060         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
11061         with dotted brush.      Fixes #79564
11062         
11063 2006-11-28  Andreia Gaita  <avidigal@novell.com>
11064
11065         * Form.cs: Removed call to UpdateBounds on Form
11066         constructor, it was causing a call to CreateHandle
11067         before it was supposed to.
11068         * PrintControllerWithStatusDialog: Applied patch
11069         by Chris Toshok to hide controller when there are
11070         no printers available.
11071         PrintDialog.cs: initialize printer settings to 
11072         null - correct DefaultValues test #5
11073         * PrintPreviewControl.cs: Move PrintController
11074         initialization to GeneratePreview
11075         * PrintPreviewDialog.cs: 
11076         - Remove Preview generation     from Document_set(). It is 
11077         called on OnPaint
11078         - Throw InvalidPrinterException on CreateHandle if
11079         a Document is set but there are no printers or 
11080         printer is not valid.
11081         * ThemeWin32Classic: don't paint PrintPreviewControl
11082         if there is nothing to paint    
11083
11084 2006-11-28  Miguel de Icaza  <miguel@novell.com>
11085
11086         * Form.cs: Add another popular method.
11087
11088         * TabPage.cs: ditto.
11089
11090 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11091
11092         * MenuItem.cs: Fixed a warning.
11093         * InternalWindowManager: Fixed a warning.
11094
11095 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11096
11097         * MenuItem.cs:
11098         - When cloning a menu also clone MdiList and clone the 
11099           window menu items properly (as the forms and menuitems
11100           are kept in an internal hashtable, these need updating 
11101           as well)
11102         - Rewrote the window menu code, menu items are added in the
11103           order the forms were added to their parent, and they are
11104           updated every time the window menu is shown (before the
11105           list was only generated once, in the current order of the
11106           forms, and would never be updated). A checkmark is shown
11107           next to the item corresponding to the active mdi child.
11108
11109 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11110
11111         * XplatUIStructs.cs: 
11112         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
11113         
11114         * XplatUIWin32.cs: 
11115         - Added TME_NONCLIENT to TMEFlags.
11116         - Handles WM_NCMOUSEMOVE in GetMessage to 
11117           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
11118
11119         * MdiWindowManager:
11120         - Now merges mdi child menu to parent menu when maximized.
11121         - Recalculate NC areas of both mdi child and mdi parent. 
11122           Fixes #79757 (4).
11123           on window state and size changes.Fixes #79844 (3).
11124         - Handle WM_NCCALCSIZE to properly calculate borders.
11125
11126         * Form.cs:
11127         - Add/remove to the mdi containers list of mdi children 
11128           in the order they are added.
11129         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
11130           to the maximized mdi child.
11131         
11132         * InternalWindowManager.cs:
11133         - Only execute a click on the control buttons on the mouse up,
11134           not on the mouse down. Show the state of the button 
11135           (was only showing Normal state, never Pressed state). The
11136           pressed button now follows the mouse (if you click the Close 
11137           button and move the mouse over the Maximize button, the 
11138           Maximize button will be shown as pressed). Since Win32 does
11139           not generate WM_NCLBUTTONUP if you release the button outside
11140           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
11141           it as a mouse up.
11142         
11143         * ThemeWin32Classic.cs:
11144         - Draw a missing border around mdi child forms. Fixes #79844 (2).
11145
11146         * MdiClient.cs:
11147         - Added a list of forms which contains the order the forms are
11148           added to the mdi parent.
11149         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
11150         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
11151         - If the active form changes set the scrollbars to the top
11152           of the Z order, otherwise the form could hide them.
11153         - Scrollbars are now sized according to ClientSize, not 
11154           to Size, and they take into account the other scrollbar
11155           to determine maximum.
11156         
11157 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
11158         
11159         * XplatUI.cs:
11160         * XplatUIDriver.cs:
11161         * XplatUIX11.cs:
11162         * XplatUIWin32.cs:
11163         * XplatUIOSX.cs:
11164         - Added RequestAdditionalWM_NCMessages for windows to 
11165           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
11166           Currently only implemented in XplatUIWin32.
11167
11168 2006-11-27  Chris Toshok  <toshok@ximian.com>
11169
11170         * Hwnd.cs: only add the hwnd to the windows hash in
11171         set_WholeWindow and set_ClientWindow if whole_window/client_window
11172         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
11173
11174 2006-11-27  Mike Kestner  <mkestner@novell.com>
11175
11176         * ComboBox.cs: remove redundant OnDropDown call.  It is called
11177         from the ComboListBox.ShowWindow code. Fixes #79969.
11178
11179 2006-11-27  Chris Toshok  <toshok@ximian.com>
11180
11181         * Hwnd.cs: remove the setters for ExposePending and
11182         NCExposePending - noone uses them.
11183
11184 2006-11-27  Jackson Harper  <jackson@ximian.com>
11185
11186         * TextControl.cs: new param for ReplaceSelection which determines
11187         whether we select the new selection, or set the cursor to the end
11188         of the new selection.
11189         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
11190         pasting, select the new text.
11191         * RichTextBox.cs: Use new param for ReplaceSelection.
11192
11193 2006-11-27  Jackson Harper  <jackson@ximian.com>
11194
11195         * TextBoxBase.cs: Set the selection to the caret after the caret
11196         is moved, otherwise they get out of sync.
11197
11198 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
11199
11200         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
11201         it fixes #80015
11202
11203 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
11204
11205         * ThemeWin32Classic.cs: 
11206         - Fix toolbar drop down arrow position.
11207         - Fix drop down appearance when ToolBar.Appearance is normal,
11208         it fixes #80018.
11209         
11210 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
11211
11212         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
11213         * Control.cs: Same.
11214         * UpDownBase.cs: Same.
11215         * ButtonBase.cs: Same.
11216         * ScrollBar.cs: Same.
11217         * TrackBar.cs: Same.
11218         * PictureBox.cs: Same.
11219         * UserControl.cs: Same.
11220         * Label.cs: Same.
11221         * ListControl.cs: Same.
11222         * TextBoxBase.cs: Same.
11223         * ListView.cs: Same.
11224         * RichTextBox.cs: Same.
11225         * TreeView.cs: Same.
11226
11227 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
11228
11229         * PrintDialog.cs:
11230         - Text label for where 
11231         - Text label comment was not shown
11232
11233 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
11234
11235         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
11236
11237 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
11238
11239         * InternalWindowManager.cs: 
11240         - Handle WM_PARENTNOTIFY to activate the form
11241         if any child control is clicked.
11242         - The form is only sizable if not minimized.
11243
11244         * MdiWindowManager.cs:
11245         - Save the IconicBounds if the form is moved.
11246         - Rework SetWindowState, now the window bounds 
11247         are stored only if the old window state is Normal.
11248         
11249         * MdiClient.cs:
11250         - In SetWindowStates store the old window state if 
11251         the window is maximized and restore window state if
11252         the window looses focus.
11253         - Don't handle any scrollbar value changes if 
11254         initializing the scroll bars. Fixes #79771.
11255         - Reworked ArrangeIconicWindows. Current algorithm
11256         tests bounds agains all other minimized windows, if
11257         any intersections create new bounds (going left to 
11258         right, bottom to top) and then test again. When 
11259         successful the bounds are saved and never computed
11260         again. Fixes #79774.
11261
11262 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
11263
11264         * InternalWindowManager.cs: Added HandleTitleBarUp.
11265
11266 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
11267
11268         * NumericUpDown.cs: In .NET 1.1, user entered text is still
11269         hexadecimal in ParseUserEdit.
11270
11271         
11272 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
11273
11274         * MdiWindowManager.cs: 
11275         - Handle a click on the form's icon to show the 
11276         system menu (when maximized). Fixes #79775.
11277         - Change the existing click handler for the form's
11278         icon when not maximized to show on MouseUp.
11279         Fixes #79776.
11280
11281         * Form.cs: In OnResize only layout the mdi child's
11282         parent if it actually has a parent. Might not if
11283         the window is closing.
11284
11285
11286 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
11287
11288         * MdiClient.cs: Ignore active MDI client for text of parent, if
11289         child has no text set.
11290
11291 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
11292
11293         * ToolBar.cs: Fixed ToString to match MS.
11294
11295 2006-11-22  Andreia Gaita  <avidigal@novell.com>
11296
11297         * NumericUpDown: 
11298         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
11299         update inner values on set. Fixes #79966.
11300         - Override OnLostFocus to update value on NET 2. Fixes #79950.
11301         - Fix hexadecimal parsing.
11302         
11303         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
11304         parent. Fixes #79957
11305
11306 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11307
11308         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
11309         the actual size has to be queried, since if height /
11310         width is negative Win32 changes it to 0. 
11311         Fixes #79999 on Windows.
11312         
11313         * XplatUIX11.cs: Set height / width to 0 if negative
11314         in SetWindowPos. Fixes #79999 on Linux.
11315         
11316 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
11317
11318         * ThemeWin32Classic.cs: Fix text redenring when button is
11319         pressed.
11320
11321 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
11322
11323         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
11324         and later navigate by mouse. Fixes #79528.
11325
11326 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
11327
11328         * ToolBar.cs: Set default value for TabStop to false in
11329         constructor, it fixes remaining behavior of bug #79863.
11330
11331 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11332
11333         * MdiWindowManager.cs:
11334         * InternalWindowManager.cs:
11335         - Moved a few methods specific to Mdi from 
11336         InternalWindowManager to MdiWindowManager.
11337         Fixes #79996.
11338         
11339 2006-11-21  Chris Toshok  <toshok@ximian.com>
11340
11341         * XplatUIOSX.cs: stub out InvalidateNC.
11342
11343         * XplatUIWin32.cs: implement InvalidateNC using the call I found
11344         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
11345
11346         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
11347
11348         * XplatUIDriver.cs: add InvalidateNC abstract method.
11349
11350         * XplatUI.cs: add InvalidateNC.
11351
11352 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
11353
11354         * ToolBar.cs: Invalidate complete button area when pressed status 
11355         was changed.
11356         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
11357         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
11358         by 1 when button is pressed.
11359
11360 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
11361
11362         * ToolButton.cs: Invalidate middle of DropDown button when
11363         ToolBar theres DropDownArrows.
11364         * ThemeWin32Classic.cs: Change position of DropDown arrow and
11365         fix DropDown drawing operations.
11366
11367 2006-11-20  Chris Toshok  <toshok@ximian.com>
11368
11369         * NativeWindow.cs: fix the formatting of functions ('{' on the
11370         following line), and enable the thread exception dialog.
11371
11372         * Application.cs: remove the duplicate exception catching from
11373         here.
11374
11375 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
11376
11377         * Toolbar.cs: Triggers button click event when click on icon
11378         of dropdown ToolBarButton. Fixes #79912.
11379         
11380 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11381
11382         * Theme.cs:
11383         * ThemeWin32Classic.cs:
11384         - Added a property WindowBorderFont to enable themeing
11385           of mdi child windows' Text.
11386           
11387 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11388
11389         * InternalWindowManager.cs:
11390         * Form.cs:
11391         * MdiClient.cs:
11392         * MdiWindowManager.cs: 
11393         - If mdi child is maximized, set mdi parent's
11394           text to "Parent - [Child]". Fixes #79770.
11395         - If there is any maximized mdi child windows, only the active 
11396           window (and any new windows) is maximized, the rest are normal.
11397         - On a WindowState change only save mdi child's window bounds 
11398           if the old window state was normal. Fixes #79774.
11399         - The scroll bars are now calculated on hopefully all
11400           necessary events. Fixed #79771 / #79844->6 / #79906.
11401         - MdiClient.SizeScrollBars() now takes into account docked 
11402           controls in the parent when calculating available space.
11403         - InternalWindowManager now always repaints the entire title
11404           area. Fixes #79844->1/4/5.
11405         - Added RequestNCRecalc on mdi child windowstate changes.
11406           Fixes #79772.
11407
11408 2006-11-20  Mike Kestner  <mkestner@novell.com>
11409
11410         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
11411         in the MouseUp handler of the listbox and move the return handling
11412         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
11413
11414 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
11415
11416         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
11417
11418 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
11419
11420         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
11421           working in 1.2.x anymore. So, updated.
11422
11423 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
11424
11425         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
11426         NumberGroupSeparator of current culture instead of assuming en-US.
11427         Fixed bug #79967.
11428
11429 2006-11-17  Mike Kestner  <mkestner@novell.com>
11430
11431         * Control.cs: Add the concept of implicit bounds setting so that
11432         dock/undock round trips preserve explicitly set size/locations.
11433         Fixes #79313.
11434
11435 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
11436
11437         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
11438           can't handle those filters. (Fixes bug #79961)
11439
11440 2006-11-17  Chris Toshok  <toshok@ximian.com>
11441
11442         [ fixes the exit/crashes associated with #79835.  it's clearly
11443         suboptimal though, we need to figure out a better way to solve
11444         this. ]
11445         
11446         * PrintPreviewControl.cs: deal with the new invalid printer
11447         exceptions.
11448
11449         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
11450         and return false (so CommonDialog.ShowDialog doesn't actually show
11451         the form.)
11452
11453         * PrintDialog.cs: enable/disable the Ok button depending on
11454         whether or not the printer is valid.
11455
11456         * CommonDialog.cs (ShowDialog): only actually show the form if
11457         RunDialog returns true.
11458
11459 2006-11-17  Jackson Harper  <jackson@ximian.com>
11460
11461         * TextControl.cs: When soft splitting a line, mark it as a soft
11462         split line. Also carry over the current line break to the next
11463         line.
11464
11465 2006-11-17  Chris Toshok  <toshok@ximian.com>
11466
11467         * XplatUIX11.cs: when scrolling a window with an invalid area, we
11468         only want to shift the part of the invalid area that overlaps the
11469         area we're scrolling.  we also don't want to clear the invalid
11470         area unless the invalid area was entirely contained within the
11471         scrolling area.
11472
11473 2006-11-16  Chris Toshok  <toshok@ximian.com>
11474
11475         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
11476         also make sure to free the memory returned by XGetWindowProperty
11477         in GetText().
11478
11479         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
11480
11481 2006-11-16  Chris Toshok  <toshok@ximian.com>
11482
11483         * XplatUI.cs: add a new super secret way to get at the totally
11484         unsupported X11 backend.
11485
11486 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
11487
11488         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
11489
11490 2006-11-16  Jackson Harper  <jackson@ximian.com>
11491
11492         * TreeView.cs: Allow more explicit setting of top node position
11493         for scrollbars. Slower algo, but more accurate.
11494         - CollapseAll should maintain the current top node.
11495         * TextBoxBase.cs: When positioning the caret, use the line, pos
11496         method, since the x, y method does not grab the correct tag, and
11497         the caret height never gets set correctly. (Maybe I should just do
11498         away with the caret having its own height, and always use the
11499         carets current tag for height).
11500
11501 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
11502
11503         [Fixes 79778, 79923]
11504
11505         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
11506         Parent to the FosterParent instead.
11507
11508 2006-11-16  Jackson Harper  <jackson@ximian.com>
11509
11510         * TreeView.cs: Need to recalc the topnode when we expand or
11511         collapse. The scrolling methods can't handle this on their own,
11512         since they use differences between the last scroll position, and
11513         those difference get completely messed up since we are expanding
11514         nodes.  This problem should probably be fixed in the scrolling
11515         methods, so they can figure out exactly where they are, but this
11516         will slow things down a little.
11517         * ThemeWin32Classic.cs: Special case for groupboxes with empty
11518         strings, makes nunit-gui look a lot nicer.
11519
11520 2006-11-16  Chris Toshok  <toshok@ximian.com>
11521
11522         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
11523         the broken multithreaded event handling we have in here.  File
11524         this entry under "Why we should move to the new X11 backend".
11525
11526         Any thread can make it into UpdateMessageQueue, which gets events
11527         from the X socket - some of which could belong to hwnds being
11528         managed by a different thread.  We can also have multiple threads
11529         in UpdateMessageQueue at the same time, with each one reading from
11530         the X socket.  This leads to many problems, with the following
11531         solutions:
11532
11533         We can't use hwnd.Queue.Enqueue anywhere in here and must use
11534         EnqueueLocked.
11535
11536         The MotionNotify compression we do can't work across threads
11537         (without locking the entire queue, perhaps) since we call
11538         hwnd.Queue.Peek, so we just punt and don't compress motion events
11539         unless the owning thread is the one which got the X event.
11540
11541         ConfigureNotify is another fun one, since it modifies the hwnd's
11542         bounds and then enqueues the event.  We add a lock to Hwnd which
11543         is held when setting configure_pending to true (and enqueuing the
11544         event).
11545
11546         There is a race wrt the wake socket.  we need to make sure that
11547         only 1 thread is waiting on that socket, or else a thread could
11548         sleep waiting for data that never comes.  It's difficult (but not
11549         impossible) to make happen, because it seems to require something
11550         like the following:
11551
11552             1. Thread 1 polls on wake_receive
11553         
11554             2. poll returns saying there's data to be read on
11555                wake_receive.
11556         
11557             3. Thread 2 polls on wake_receive and immediately returns
11558                saying there's data to be read.
11559
11560             4. Thread 2 reads the wakeup byte from wake_receive
11561
11562             5. Thread 1 attempts to read the wakeup byte from
11563                wake_receive.
11564
11565             6. Thread 2 exits (due to a form closing, perhaps).
11566
11567             7. Thread 1 blocks forever.
11568         
11569         Fun, eh?
11570
11571         Fixing the Expose handling isn't done yet, and the races inherent
11572         in that piece of code are responsible for the drawing mistakes you
11573         see when generating expose events in a MT app (like NPlot).  This
11574         one is the likely to be the hardest to bandaid, and it doesn't
11575         appear to cause anything but drawing problems.  The other issues
11576         caused apps to exit or hang.
11577
11578         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
11579         called from a different thread than the one that should be calling
11580         these functions.
11581
11582         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
11583
11584 2006-11-15  Chris Toshok  <toshok@ximian.com>
11585
11586         * Application.cs: null out the context's MainForm when we exit
11587         RunLoop.  Fixes a newly checked in unit test as well as the last
11588         ODE from bug #79933.
11589
11590 2006-11-15  Chris Toshok  <toshok@ximian.com>
11591
11592         * Form.cs (set_Owner): allow a null value so we can clear the
11593         form's owner.
11594         (Dispose): set all our owned_form's Owner properties to null, and
11595         clear the owned_forms collection.
11596         (WM_CLOSE): clean up this a little bit.. still not right though.
11597
11598         * ApplicationContext.cs: OnMainFormClosed should only call
11599         ExitThreadCore if the main form isn't recreating.  Fixes unit
11600         test.
11601
11602 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
11603
11604         [Fixes 78346]
11605
11606         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
11607
11608 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
11609
11610         [Fixes 79433]
11611
11612         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
11613         keep popup window types from stealing focus from the main form
11614         on Windows.
11615
11616         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
11617
11618         * MenuAPI.cs: Set above flag to true.
11619
11620 2006-11-15  Chris Toshok  <toshok@ximian.com>
11621
11622         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
11623         the button being released is not in wParam.
11624
11625 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
11626
11627         * Form.cs: Add the released button to MouseEventArgs.Button
11628         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
11629         on Win32.
11630
11631 2006-11-15  Chris Toshok  <toshok@ximian.com>
11632
11633         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
11634         GetText().  untested because it's unused in our implementation.
11635         Control.Text always caches the text, even if
11636         ControlStyles.CacheText is not set.
11637
11638         fixes bug #79939.
11639
11640 2006-11-15  Chris Toshok  <toshok@ximian.com>
11641
11642         [ fixes #79933 ]
11643         
11644         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
11645         message.  no hiding, no disposing.
11646
11647         in the WM_CLOSE handler, hide the form if it's modal.
11648
11649 2006-11-15  Chris Toshok  <toshok@ximian.com>
11650
11651         * XplatUIX11.cs: use AddExpose instead of sending a message.
11652         fixes textbox border drawing.
11653
11654 2006-11-15  Chris Toshok  <toshok@ximian.com>
11655
11656         * PropertyGridView.cs: keep from crashing on mouse move/down when
11657         the property grid is empty.
11658
11659 2006-11-14  Jackson Harper  <jackson@ximian.com>
11660
11661         * TextControl.cs: Make PageUp and PageDown more like the MS
11662         versions.
11663         * TextBoxBase.cs: When we set the text property position the
11664         cursor at the beginning of the document.
11665
11666 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11667
11668         * Form.cs: if a mdi child's WindowState has changed
11669         before it's creation, it would display wrong control
11670         buttons.
11671         
11672 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
11673
11674         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
11675           (Fixes bug #79927)
11676
11677 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
11678
11679         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
11680         the window gets to paint its borders even if the window is
11681         getting smaller.
11682         
11683         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
11684         otherwise the old control buttons would still be painted 
11685         if the window gets bigger.
11686         
11687         * PaintEventArgs.cs: add an internal method so that the clip 
11688         rectangle can be changed.
11689         
11690 2006-11-13  Chris Toshok  <toshok@ximian.com>
11691
11692         [ fixes bug #79745 ]
11693         
11694         * NotifyIcon.cs: lots of cleanup.
11695
11696         * X11Structs.cs: add an enum for XEMBED messages.
11697
11698         * XplatUIX11.cs: reindent one of the giant switch statements, it
11699         was taking up an additional tab stop, and this file is already way
11700         too wide for my laptop's screen.
11701
11702         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
11703         we get it, resize the hwnd to the WMNormalHints max_width/height.
11704
11705 2006-11-13  Jackson Harper  <jackson@ximian.com>
11706
11707         * TextBoxBase.cs: Compute the value changes for the mouse wheel
11708         teh simple way.
11709
11710 2006-11-13  Chris Toshok  <toshok@ximian.com>
11711
11712         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
11713         #79898.  force a reference to the Region to stick around so the
11714         unmanaged object isn't collected (rendering our handle in the MSG
11715         stale).
11716
11717 2006-11-13  Chris Toshok  <toshok@ximian.com>
11718
11719         * XplatUIX11.cs: fix #79917 for window managers which support
11720
11721         using XStoreName on the raw utf8, and we need to convert to
11722         COMPOUND_TEXT if it's non-latin1.
11723
11724 2006-11-13  Chris Toshok  <toshok@ximian.com>
11725
11726         * Form.cs (set_DialogResult): we need to set closing to false if
11727         we're setting our result to None.  fixes bug #79908.
11728
11729 2006-11-13  Jackson Harper  <jackson@ximian.com>
11730
11731         * TextControl.cs: When formatting text, compute the adjusted tag
11732         lengths correctly, using FindTag for the end tag instead of trying
11733         to figure it out outselves.
11734         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
11735         the item, ItemHeight doesn't work, because trees with large
11736         imagelists use those for their height
11737         * TreeView.cs: ActualItemHeight factors in the image height
11738         - compute left edge of checkboxes correctly
11739         - when expanding/collapsing move the bottom down one pixel, so we
11740         aren't moving part of the node
11741
11742 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11743
11744         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
11745         stack in PaintEventStart so that it won't get disposed by the gc
11746         before reaching PaintEventEnd.
11747
11748 2006-11-13  Jackson Harper  <jackson@ximian.com>
11749
11750         * TextBoxBase.cs: Don't select the word if we are on a line with
11751         no text.
11752         - We don't need to position the caret on mouse up, since the mouse
11753         move handler should be doing this
11754         - When double clicking a blank line, the caret is advanced to the
11755         next line.
11756
11757 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
11758
11759         * TreeNodeCollection.cs: Avoid duplicating indexer code.
11760
11761 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
11762
11763         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
11764         Fixes part of bug #79910.
11765
11766 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
11767
11768         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
11769           (bug #79903). Some minor string updates to match ms.
11770
11771 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
11772
11773         * FileDialog.cs: Don't add an extension if the filename
11774           already ends with that extension.
11775
11776 2006-11-10  Jackson Harper  <jackson@ximian.com>
11777
11778         * TreeView.cs: Use the currently highlighted node for the
11779         BeforeSelect event.
11780         * TextBoxBase.cs: There is no need to expand selection on
11781         MouseMove.
11782         - CanUndo means 'is there any undo operations', not 'is undo
11783         allowed on this textcontrol. Fixed ClearUndo unit test.
11784
11785 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
11786
11787         * Button.cs: only perform click when button is Selectable (so as 
11788         not to activate default buttons when they're disabled)
11789         
11790         * Control.cs: Rewrite of the SelectNextControl and related 
11791         methods. HandleClick now selects next control if the current one
11792         is being disabled.
11793         
11794         * Form.cs: OnActivated selects next active control only if Load 
11795         has already occurred. If Load hasn't run, there's no point in 
11796         selecting here, Load might change the state of controls.
11797         
11798         * FocusTest.cs: Tests marked as working again for these fixes
11799
11800 2006-11-10  Chris Toshok  <toshok@ximian.com>
11801
11802         * XplatUIX11.cs: a couple of fixes.
11803
11804         - use XInternAtoms with almost all the atoms we need to register,
11805         instead of many, many calls to XInternAtom.  should help a bit on
11806         startup time, at the expense of making the code look a little
11807         worse.
11808
11809         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
11810         isn't reparented (which seems to be a clue that we're running fon
11811         compiz) and they have an Owner form.  This fixes the tool windows
11812         in paint.net when running under compiz.
11813
11814         - when setting the opacity of a window, support both the case
11815         where the window has been reparented and also when it hasn't been.
11816         Since compiz/beryl doesn't seem to reparent windows, and these are
11817         the only window managers which support translucency, I'm not sure
11818         why we need the hwnd.reparented case at all.. but leave it in.
11819         now we get translucent windows in paint.net under compiz/beryl.
11820
11821 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
11822
11823         * FileDialog.cs: Always return the value for FilterIndex that
11824           was set. Internally convert it to values that make sense.
11825
11826 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
11827         
11828         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
11829
11830 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
11831
11832         * Toolbar.cs: Change default value of DropDownArrows to true, the 
11833         signature still using false to make it compatible with MS but the 
11834         initial value is true. Fixes #79855.
11835
11836 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
11837
11838         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
11839           only available on Linux.
11840
11841 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
11842
11843         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
11844         reduce number of calls to redraw method during toolbar creation.
11845
11846 2006-11-09  Mike Kestner  <mkestner@novell.com>
11847
11848         * ListView.cs : raise SelectedIndexChanged when an item is selected
11849         programmatically via the Item.Selected property.  Gert's nice 
11850         ListViewSelectedIndexChanged test fixture now runs clean.
11851
11852 2006-11-09  Mike Kestner  <mkestner@novell.com>
11853
11854         * ListView.cs : raise SelectedIndexChanged when a selected item is
11855         removed from the item collection using Remove or RemoveAt.
11856
11857 2006-11-09  Mike Kestner  <mkestner@novell.com>
11858
11859         * ListView.cs : raise SelectedIndexChanged once per selected item
11860         for compat with MS.  Fixes #79849+.
11861
11862 2006-11-09  Chris Toshok  <toshok@ximian.com>
11863
11864         * TabControl.cs: initialize row_count to 0, and set it to 1 when
11865         we need to (if we have any tab pages).  Fixes unit test.
11866
11867 2006-11-09  Chris Toshok  <toshok@ximian.com>
11868
11869         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
11870         width is 0, not 3.  Fixes a unit test.
11871
11872 2006-11-09  Mike Kestner  <mkestner@novell.com>
11873
11874         * ListView.cs : use Implicit scrollbars so that focus isn't 
11875         stolen from the listview when they are clicked. Fixes #79850.
11876
11877 2006-11-09  Chris Toshok  <toshok@ximian.com>
11878
11879         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
11880         have a root item.  Fixes #79879.
11881
11882 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
11883
11884         * FileDialog.cs:
11885           - Fix ToString ()
11886           - An ArgumentException is now thrown if a wrong filter
11887             is applied (matches ms). The previous filter doesn't change
11888             anymore if an exception is thrown.
11889           - Changing the FileName property also affects FileNames
11890         * ColorDialog.cs: The length of the CustomColors array is always
11891           16. It doesn't matter if we use a smaller array or null to update
11892           or change the custom colors property.
11893         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
11894           for RootFolder if we get a undefined value.
11895
11896 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11897
11898         * StatusBarPanel.cs: 
11899         - Width is set to MinWidth if Width is smaller than
11900         MinWidth. Fixes #79842.
11901         - MinWidth now always overrides Width (MSDN says MinWidth
11902         is set to Width when AutoSize = None, but they do not 
11903         behave like that).
11904         - Style has now the the correct default value.
11905         
11906 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11907  
11908         * TrackBar.cs: 
11909         - The control is completely invalidated on 
11910         Got/LostFocus to draw the focus rectangle correctly.
11911         - When AutoSize then height is always 45 (width for 
11912         vertical controls).
11913         
11914         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
11915         on the mouse when moved and it doesn't move when grabbed
11916         until the mouse moves as well. Also fixed some wrong 
11917         calculations when clicking on the thumb (control thought
11918         click was outside of thumb and didn't grab it).
11919         Fixes some of the issues in #79718.
11920
11921 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
11922
11923         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
11924
11925 2006-11-08  Chris Toshok  <toshok@ximian.com>
11926
11927         * PropertyGridView.cs: only call ToggleValue if the item is not
11928         readonly.
11929
11930 2006-11-08  Jackson Harper  <jackson@ximian.com>
11931
11932         * TextBoxBase.cs: The RichTextBox and textbox have very different
11933         word selection methods.  Implement the textbox's simple word
11934         selection here, and let the RichTextBox override and provide it's
11935         own.
11936         - Don't do extra selection on mouseup
11937         * RichTextBox.cs: Use the documents word selection algorithm, I
11938         think ideally, this function will be pulled into the
11939         RichTextBox.cs code someday.
11940
11941 2006-11-08  Chris Toshok  <toshok@ximian.com>
11942
11943         * RootGridEntry.cs: new class to represent GridItemType.Root.
11944
11945         * CategoryGridEntry.cs: reformat, and add boilerplate.
11946         
11947         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
11948         returns the UI parent anyway, and we need special handling to
11949         implement the GetTarget method in the face of it.  Also, implement
11950         Select().
11951
11952         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
11953         a root grid item, and use that instead of PropertyGrid.grid_items.
11954         Also, make use of TypeConverters (and add limitted support for
11955         ICustomTypeDescriptors) when initially populating the grid.
11956         Arrays now show up more or less properly.
11957
11958 2006-11-08  Chris Toshok  <toshok@ximian.com>
11959
11960         * Application.cs: set the modal dialog to non modal after we close
11961         it.  Fixes bug #79866.
11962
11963 2006-11-08  Jackson Harper  <jackson@ximian.com>
11964
11965         * TextControl.cs: When combining lines carry over the line end
11966         style from the end line.
11967         - Invalidate the selected area when setting it, if it is visible.
11968         * TextBoxBase.cs: Only rich text box can do full line selects.
11969         - Make sure to set the cursor position when there is a click,
11970         otherwise two clicks in separate areas could cause a large chunk
11971         to be selected.
11972
11973 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11974
11975         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
11976         Fixes #79863.
11977
11978 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11979
11980         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
11981         time. Remove tooltips when ToolButton click events.  Fixes #79856.
11982
11983 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11984
11985         * MenuAPI.cs: Ignore right click for menu actions and fixes
11986         menu border when clicked.  Fixes #79846.
11987
11988 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11989
11990         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
11991         MouseState after create wParam for message, this fixes mouse button 
11992         equal none in mouse up events.
11993         
11994 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
11995
11996         * Control.cs : Focus() now calls Select to set the Container's
11997         Active Control and to give it focus. To avoid infinite recursion
11998         (because ActiveControl also calls Focus at one point), a check 
11999         is made in Focus with the help of a new internal variable
12000         is_focusing.
12001
12002 2006-11-07  Mike Kestner  <mkestner@novell.com>
12003
12004         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
12005         if there's a selection.  Fixes #79849.
12006
12007 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
12008
12009         * PropertyGrid.cs: Avoid fixed height of help description label.
12010         Fixes part of bug #79829.
12011
12012 2006-11-07  Chris Toshok  <toshok@ximian.com>
12013
12014         * XplatUIX11.cs: fix #79790 again, by using the
12015         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
12016
12017 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12018
12019         * ToolBar.cs: Fix left click checking.
12020
12021 2006-11-07  Chris Toshok  <toshok@ximian.com>
12022
12023         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
12024
12025 2006-11-07  Chris Toshok  <toshok@ximian.com>
12026
12027         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
12028         PropertyManager unit tests.
12029
12030         * PropertyManager.cs: make property_name internal.
12031
12032 2006-11-07  Chris Toshok  <toshok@ximian.com>
12033
12034         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
12035         pass a unit test.  Also, don't set image_index to anything in
12036         response to setting the ImageList property.
12037
12038 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12039
12040         * ToolBar.cs: Ignore click events when mouse button is not a
12041         left button, only accepts other button for dropdown menus.  
12042         Fixes #79854.
12043
12044 2006-11-07  Chris Toshok  <toshok@ximian.com>
12045
12046         * DataGrid.cs: make the back and parent row buttons a little less
12047         ugly.
12048
12049 2006-11-07  Jackson Harper  <jackson@ximian.com>
12050
12051         * TextBoxBase.cs: When converting to Text don't put line breaks in
12052         for soft line breaks.
12053         * TextControl.cs: There is an initial "fake" line in the document,
12054         this is now a soft break line, so that an extra line feed doesn't
12055         get added to the end of documents.
12056
12057 2006-11-07  Chris Toshok  <toshok@ximian.com>
12058
12059         [ fix bug #79778 ]
12060         
12061         * CurrencyManager.cs: if the list is readonly, don't bother
12062         checking if IBindingList.AllowNew is true.
12063
12064         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
12065         for non-DataRowView datasources..  or rather, make it not crash.
12066         (DataGridPaintRelationRow): make sure we limit the row painting to
12067         the area not covered by the row header, and make our cell width at
12068         least large enough to cover the relation area.  This allows grids
12069         that have relations but no rows to render correctly.
12070         (DataGridPaintRowContents): same type of changes here.
12071         (SetDataSource): move back to always calling
12072         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
12073         navigating back through relations.
12074         (HitTest): handle the case where we have no cells but have
12075         relations.  Right now we generate a hit in cell 0 of whatever the
12076         row is, not sure if this is strictly correct, but it works for our
12077         purposes.
12078         
12079         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
12080         bother doing anything.
12081
12082 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
12083
12084         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
12085         early version of StatusStrip.  Not responsible for eaten
12086         application or firstborn children.
12087
12088 2006-11-06  Chris Toshok  <toshok@ximian.com>
12089
12090         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
12091         call GetTabRect with a -1 index.  Fixes #79847.
12092
12093 2006-11-06  Jackson Harper  <jackson@ximian.com>
12094
12095         * TreeNodeCollection.cs: Update scrollbars after clearing.
12096
12097 2006-11-06  Chris Toshok  <toshok@ximian.com>
12098
12099         * NumericUpDown.cs: fix the ToString method for some unit test
12100         love.
12101
12102 2006-11-06  Chris Toshok  <toshok@ximian.com>
12103
12104         * PropertyGrid.cs:
12105         - set the initial SelectedGridItem if we can.
12106
12107         - Exclude non-mergable properties only if we're merging > 1
12108         object.  Merging 1 object isn't really merging, obviously.
12109
12110         - Handle PropertySort.NoSort just like Alphabetical, which is
12111         wrong of course, but at least gets things on the screen.
12112         
12113         * PropertyGridView.cs:
12114         - Add method "FindFirstItem" which finds the first property grid
12115         item, so we can select it by default.
12116
12117         - make use of GridEntry.CanResetValue.
12118
12119         - Don't call RedrawBelowItemOnExpansion here anymore, the
12120         individual GridEntry's will do that.
12121
12122         - Remove the ITypeDescriptorContextImpl internal class.
12123         
12124         * GridEntry.cs:
12125         - this class needs to implement ITypeDescriptorContext, as it's
12126         what MS's PropertyDescriptorGridEntry does, which means we can
12127         remove the ITypeDescriptorContextImpl internal class from
12128         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
12129
12130         - keep a reference to our PropertyGridView, and move the call to
12131         RedrawBelowItemOnExpansion here from PGV.  This means
12132         programmaticly setting Expanded actually does something visible.
12133
12134         - add a CanResetValue() function which takes into account our
12135         possibly multiple "selected_objects" in the merged case.  Shifting
12136         PropertyGridView to use this method fixes another unreported
12137         crasher found running the test for #79829.
12138
12139         - when Top or Bounds is updated, make sure the PropertyGridTextBox
12140         is updated to reflect this.
12141
12142         * CategoryGridEntry.cs: the ctor takes the PGV now.
12143         
12144 2006-11-06  Jackson Harper  <jackson@ximian.com>
12145
12146         * TextControl.cs: These are 1 based.
12147         * TextBoxBase.cs: When setting the selected text, don't change the
12148         selected text tags, this is done by ReplaceText, just position the
12149         cursor at the end of the new text.
12150
12151 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
12152
12153         * ListView.cs: Allow label edit only when, when LabelEdit is
12154           set to true.
12155
12156 2006-11-06  Jackson Harper  <jackson@ximian.com>
12157
12158         * TextControl.cs: If a suitable wrapping position isn't found,
12159         just wrap right in the middle of a word.
12160
12161 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
12162
12163         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
12164           bug #79820.
12165
12166 2006-11-06  Jackson Harper  <jackson@ximian.com>
12167
12168         * TreeView.cs: Can't use the VisibleCount property when setting
12169         scrollbar heights, because this doesn't take into account whether
12170         or not the horz scrollbar just came visible.
12171
12172 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
12173
12174         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
12175         activated.  Fixes #79369, #79832.
12176
12177 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
12178
12179         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
12180           had to remove support for links that point to a directory. FileInfo
12181           returns no usefull information (means, the directory they point to)
12182           for such links. Replaced some empty string ("") with String.Empty.
12183
12184 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
12185
12186         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
12187         NullReferenceException when attempting to remove node that is not in
12188         collection. Throw NullReferenceException when null is passed to 
12189         Remove. Allow first element of the collection to be removed. Fixes
12190         bug #79831.  In GetEnumerator ().Current return null if positioned 
12191         before the first element of the collection. In GetEnumerator ().Reset,
12192         position before first element of the collection.
12193
12194 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
12195
12196         * PropertyGrid.cs: To match MS, remove default title and description
12197         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
12198         buttons.
12199
12200 2006-11-04  Chris Toshok  <toshok@ximian.com>
12201
12202         * Theme.cs: add a Clamp method, just for kicks.
12203
12204         * ThemeWin32Classic.cs: clamp all color components to [0..255].
12205
12206 2006-11-04  Chris Toshok  <toshok@ximian.com>
12207
12208         * Form.cs: if the form isn't visible, Close() does nothing.
12209
12210 2006-11-03  Chris Toshok  <toshok@ximian.com>
12211
12212         * Form.cs (Close): if the form is modal, don't Dispose of it, only
12213         Hide it.
12214         (WndProc): don't Dispose after handling the WM_CLOSE message.
12215
12216         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
12217         them as such, instead of using casts from Control to Form.  Also,
12218         don't Dispose of the modal dialog when we fall out of the loop -
12219         Close() it instead.
12220
12221         fixes bug #79813.
12222
12223 2006-11-03  Chris Toshok  <toshok@ximian.com>
12224
12225         * Control.cs (Dispose): only go through the dispose thing if we're
12226         @disposing, and we haven't already been disposed.  Fixes bug
12227         #79814.
12228
12229         * Form.cs: no reason to call "base.Dispose()" here instead of
12230         "Dispose()".
12231
12232 2006-11-03  Mike Kestner  <mkestner@novell.com>
12233
12234         * ComboBox.cs : use ToString instead of casts in AddItem for
12235         sorting functionality.  Fixes #79812.
12236
12237 2006-11-03  Chris Toshok  <toshok@ximian.com>
12238
12239         * Application.cs: pave the way for actually using the thread
12240         exception dialog.  it's ifdefed out at the moment.
12241
12242 2006-11-03  Chris Toshok  <toshok@ximian.com>
12243
12244         * ThreadExceptionDialog.cs: until we get a better layout, actually
12245         hide the details textbox and label when we shouldn't see them.
12246
12247 2006-11-03  Jackson Harper  <jackson@ximian.com>
12248
12249         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
12250         multiline textboxes anymore.  This method also determines the
12251         width/height of a textboxes canvas area.
12252         - Sorta a revert of the last patch.  For multiline just position
12253         the controls, then bail.  This way the scrollbar width won't be
12254         altered.
12255
12256 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
12257
12258         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
12259         it dont need.  Fixes #79537.
12260
12261 2006-11-02  Jackson Harper  <jackson@ximian.com>
12262
12263         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
12264         send the status after firing the DndOver event.
12265
12266 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12267
12268         * TrackBar.cs: Now orientation only switches height / width if
12269         the control's handle is created (Win32 does it like this). Also 
12270         fixed a typo in ToString() for a test to pass, changed the 
12271         exception thrown in set_LargeChange and set_SmallChange to 
12272         match Win32 behaviour, and added TrackBar tests to the unit 
12273         tests.
12274
12275 2006-11-02  Chris Toshok  <toshok@ximian.com>
12276
12277         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
12278         not _NET_WM_STATE_NO_TASKBAR.
12279
12280 2006-11-02  Jackson Harper  <jackson@ximian.com>
12281
12282         * TextControl.cs: Increment count by one, since in the update view
12283         count - 1 is used.
12284
12285 2006-11-02  Jackson Harper  <jackson@ximian.com>
12286
12287         * TextBoxBase.cs: Use client rectangle not bounds for checking if
12288         the mouse is in the client rectangle (duh).
12289
12290 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12291         
12292         * TrackBar.cs: Fixed trackbar jumping around when clicking
12293         on it - the trackbar was not detecting correctly at which
12294         side of the thumb the click was done. (fixes #79718)
12295
12296 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
12297
12298         * ListBox.cs: scroll visible area when change SelectedIndex to
12299         a non visible area.  Fixes #79481.
12300
12301 2006-11-01  Jackson Harper  <jackson@ximian.com>
12302
12303         * TextControl.cs: When replacing the selection move the selection
12304         start/end/anchor to the end of the new text.
12305
12306 2006-11-01  Jackson Harper  <jackson@ximian.com>
12307
12308         * XplatUIWin32.cs: When setting the parent change the controls
12309         visibility to it's visibility flag, not to it's old parents
12310         visibility (.Visible walks the parent chain).
12311
12312 2006-11-01  Chris Toshok  <toshok@ximian.com>
12313
12314         * XplatUIX11.cs: revert the #79790 fix, as the simple.
12315         XSetTransientForHint fix breaks paint .net's tool windows.  more
12316         work needed for that one.
12317
12318 2006-11-01  Chris Toshok  <toshok@ximian.com>
12319
12320         * ScrollBar.cs: throw ArgumentException instead of Exception in
12321         LargeChange/SmallChange setters.  fixes unit tests.
12322
12323 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
12324
12325         * ContainerControl.cs: reverted rev.67183 (which was itself
12326         a reversion of rev.66853... eh).
12327         
12328         * Control.cs: Fixes Reflector hang by changing Focus() call
12329         to what it was before rev.66643 (calling Select() here sets 
12330         ActiveControl, which in some situations calls back Focus and 
12331         eventually does a stack overflow). Temp fix.    
12332         Changes to GetNextControl() to not look for children to select when
12333         parent cannot be selectable (so it looks for siblings instead)  
12334         
12335 2006-10-31  Mike Kestner  <mkestner@novell.com>
12336
12337         * CheckedListBox.cs : off by one error in returned index from
12338         ObjectCollection.Add.  Fixes #79758.
12339
12340 2006-10-31  Chris Toshok  <toshok@ximian.com>
12341
12342         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
12343         calls for the textbox/spinner, to keep from recursing to the point
12344         where we crash.  Fixes #79760.
12345
12346 2006-10-31  Chris Toshok  <toshok@ximian.com>
12347
12348         * ListControl.cs (set_SelectedValue): don't throw exceptions on
12349         null/"" value, just return.  matches ms's behavior and fixes some
12350         failing tests.
12351
12352 2006-10-31  Chris Toshok  <toshok@ximian.com>
12353
12354         * Control.cs (set_Capture): make a logic a little easier to
12355         follow.
12356
12357         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
12358         if it's being destroyed.  A necessary fix surely, but a bandaid
12359         also, to fix the stuck capture problem in bug #78413.
12360
12361 2006-10-31  Chris Toshok  <toshok@ximian.com>
12362
12363         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
12364         convention of clearing hwnd.ClientRect when we set the
12365         width/height (so it'll be recalculated by Hwnd).
12366
12367 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
12368
12369         * ContainerControl.cs: reversed Contains check from
12370         ActiveControl due to hanging problems. This fix
12371         partly regresses #79667 (button does not have
12372         initial focus), so this might be a symptom for 
12373         a larger parenting problem (set_ActiveControl
12374         is being called but the child control does
12375         not have the parent set yet?)   
12376         
12377 2006-10-31  Mike Kestner  <mkestner@novell.com>
12378
12379         * MenuAPI.cs : fix keynav when menu is click activated.
12380
12381 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
12382
12383         * ToolStrip*: Version 0.2.
12384
12385         * MenuStrip.cs: Version 0.1.
12386
12387         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
12388
12389 2006-10-30  Chris Toshok  <toshok@ximian.com>
12390
12391         [ fixes the oversized notify icon issue in bug #79745 ]
12392         
12393         * NotifyIcon.cs: scale the icon down to the size we're given by
12394         the XplatUI layer (this would be faster if we did it once instead
12395         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
12396         since it's never invoked.
12397
12398         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
12399         pixels high by default, so let's hardcode our systray icon to that
12400         size.  The SYSTEM_TRAY protocol should really have a way for
12401         client apps to query for the correct icon size.. but oh well.  A
12402         couple of patches to deal with the screwy client_window ==
12403         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
12404         instance, and also make sure we don't XSelectInput twice).
12405
12406 2006-10-30  Chris Toshok  <toshok@ximian.com>
12407
12408         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
12409         recreating forms.  Control recreation is the bane of my existence.
12410         Fix it in a way that keeps everyone happy.
12411
12412 2006-10-30  Chris Toshok  <toshok@ximian.com>
12413
12414         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
12415         just non-CHILD ones.  otherwise sometimes scrollbars end up with
12416         client_windows not being resized to the proper size (ReportBuilder
12417         shows this extremely well).
12418
12419 2006-10-30  Chris Toshok  <toshok@ximian.com>
12420
12421         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
12422         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
12423         showing up in the gnome taskbar.  Fixes bug #79790.
12424
12425 2006-10-30  Chris Toshok  <toshok@ximian.com>
12426
12427         * ApplicationContext.cs: guard against a NRE.
12428
12429         * Application.cs: null out the old MainForm for the context, so we
12430         don't try to use it again once it's disposed.  Fixes bug #79783.
12431
12432 2006-10-30  Chris Toshok  <toshok@ximian.com>
12433
12434         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
12435         BindingContext, set the data source directly, otherwise do the
12436         lazy approach - the actual ListManager will be created when we get
12437         a BindingContext. Fixes bug #79700.
12438
12439 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
12440
12441         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
12442           XplatUIX11.cs: Remove old 2 parameter SetVisible.
12443
12444         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
12445
12446 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
12447
12448         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
12449         of SetVisible that allows a window to be shown, but not activated.
12450         This is needed on Windows for MenuStrip, and can probably be used
12451         with MainMenu and ComboBox to fix the focus stealing issues on
12452         Windows.
12453
12454         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
12455
12456 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
12457
12458         * PictureBox.cs: Fix the output of the ToString method.
12459
12460 2006-10-29  Chris Toshok  <toshok@ximian.com>
12461
12462         * Control.cs (get_TopLevelControl): fix bug #79781.
12463
12464 2006-10-29  Chris Toshok  <toshok@ximian.com>
12465
12466         * ListControl.cs (set_DataSource): throw Exception here, not
12467         ArgumentException, to match MS behavior.
12468
12469 2006-10-29  Chris Toshok  <toshok@ximian.com>
12470
12471         * Form.cs: remove the try-catch's around calls to GetWindowState.
12472         We can just check the return value.
12473
12474         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
12475         Instead return -1.
12476
12477         * XplatUI.cs: Add note about additional return value for
12478         GetWindowState.
12479
12480 2006-10-29  Chris Toshok  <toshok@ximian.com>
12481
12482         * Control.cs (CreateHandle): when we create our handle, we also
12483         create the handles of our child controls.  Fixes one of the
12484         Control unit tests (CH11).
12485
12486 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
12487
12488         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
12489
12490 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
12491
12492         * ThemeClearlooks.cs: A little speedup.
12493
12494 2006-10-27  Chris Toshok  <toshok@ximian.com>
12495
12496         * Control.cs: implement Control.FromChildHandle in a way that
12497         matches the docs (and fixes the failed test.)
12498
12499 2006-10-27  Chris Toshok  <toshok@ximian.com>
12500
12501         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
12502         comments).
12503
12504         * DataGrid.cs: implement ResetForeColor such that the tests
12505         succeed.
12506         
12507 2006-10-27  Chris Toshok  <toshok@ximian.com>
12508
12509         * ToolBarButton.cs: setting text/tooltiptext to null results in it
12510         being set to "".  Fixes bug #79759.
12511
12512 2006-10-27  Jackson Harper  <jackson@ximian.com>
12513
12514         * TextControl.cs: We need to clear the entire selection area when
12515         setting the start, otherwise multiline selections are still
12516         visible.
12517
12518 2006-10-26  Chris Toshok  <toshok@ximian.com>
12519
12520         * PropertyGridView.cs: 
12521
12522         - ifdef all the code specific to the double
12523         buffer case, and provide some alternatives in the non-doublebuffer
12524         code, which makes heavy use of XplatUI.ScrollWindow to move things
12525         around without having to invalidate (and cause flicker).  There
12526         are still some drawing problems in the non-doublebuffered case, so
12527         DOUBLEBUFFER is defined by default.
12528
12529         - Fix the way dropdowns are handled.  now we explicitly watch for
12530         the events which might cause the dropdown to close, and break out
12531         of the nested event loop there.  This gets rid of all Capture
12532         code, at the expense of the Msg special casing.  Seems to work,
12533         though, and fixes bug #79743.
12534
12535 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
12536         * Control.cs: SetIsRecreating now recreates implicitly added
12537         child controls as well. Finally fixes #79629. The flag passed to 
12538         SetIsRecreating has also been removed since it wasn't used.
12539         
12540 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12541
12542         * PageSetupDialog.cs: Clean some code, fix some bits, 
12543         add some checks, and add a printer sub-dialog.
12544
12545 2006-10-26  Chris Toshok  <toshok@ximian.com>
12546
12547         * PropertyGrid.cs: make set_SelectedObject call
12548         set_SelectedObjects, and move the duplicate logic to the
12549         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
12550
12551         * PropertyGridView.cs: hide the textbox when we get a
12552         SelectedObjectsChanged event.
12553
12554         Fixes bug #79748.
12555
12556 2006-10-26  Chris Toshok  <toshok@ximian.com>
12557
12558         * PropertyGridView.cs: deal with the type converter not supporting
12559         GetStandardValues() or GetStandardValues() returning null, which
12560         is does in the default case.  Fixes #79742.
12561
12562 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
12563
12564         * CheckedListBox.cs: nunit no longer crashes when selecting 
12565         Project/Edit menu option
12566         
12567 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
12568
12569         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
12570         is no menu selected. fixes #79739
12571
12572 2006-10-25  Chris Toshok  <toshok@ximian.com>
12573
12574         * PropertyGridView.cs: factor out the splitter invalidation code
12575         into the SplitterPercent setter, and for kicks implement the
12576         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
12577         amount in either direction.
12578
12579 2006-10-25  Chris Toshok  <toshok@ximian.com>
12580
12581         * PropertyGridView.cs: do some cleanup of the brush used to draw
12582         text - read only fields should be grayed out.  not sure how to do
12583         this with the textbox, though.  but the textbox's should also be
12584         readonly now at least.  Also, hide/show the textbox when resizing
12585         the control.
12586         
12587         * CursorConverter.cs: use System.Reflection when getting the
12588         properties of Cursors, as TypeDescriptor.GetProperties isn't
12589         returning static properties.
12590
12591 2006-10-25  Chris Toshok  <toshok@ximian.com>
12592
12593         * PropertyGridView.cs: factor out the up/down handling, and reuse
12594         it for page up/down.  also add End/Home support.
12595
12596 2006-10-25  Chris Toshok  <toshok@ximian.com>
12597
12598         * PropertyGridView.cs:
12599
12600         - ensure the selected grid item is visible in the scrolled area,
12601         fixes bug #79572.
12602
12603         - fix Keys.Down handling when you're on the last item in the
12604         propertygrid.
12605
12606 2006-10-25  Mike Kestner  <mkestner@novell.com>
12607
12608         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
12609         clicks too.  Fixes #79725.
12610
12611 2006-10-24  Chris Toshok  <toshok@ximian.com>
12612
12613         * PropertyGrid.cs: use property.Converter instead of
12614         TypeDescriptor.GetConverter(property.PropertyType), so we catch
12615         TypeConverters declared on the property as well as on the
12616         PropertyType.  Fixes bug #79678.
12617
12618 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
12619
12620         * MimeIcon.cs, Mime.cs:
12621           Fallback to the default platform handler if no shared mime info
12622           stuff exists (fixes #79693).
12623
12624 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
12625         * ContainerControl.cs: Incorrect contains check in ActiveControl 
12626         from previous fix (duh).
12627
12628 2006-10-20  Chris Toshok  <toshok@ximian.com>
12629
12630         * PropertyGridView.cs: the dropdown should be MIN(number of items
12631         in list, 15).  Fixes #79551.
12632
12633 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
12634         Fixes #79384, #79394, #79652, #79667
12635         * Application.cs: 
12636         
12637         - Modal windows are now destroyed in the proper order for windows
12638         
12639         * ContainerControl.cs:
12640         
12641         - ActiveControl setter has more conditions on when to return:
12642                 - if we're reselecting the active control, but it actually
12643                 didn't have focus (window hidden or some such), it runs
12644                 - if the active control being selected doesn't actually 
12645                 exist in the container, it returns
12646         
12647         * Form.cs
12648         
12649         - The ShowDialog now gets the current form as the owner when
12650         invoking without parameters, and correctly activates the owner 
12651         when returning
12652         
12653         * MessageBox.cs
12654         
12655         - MessageBox now catches the Escape key to exit
12656
12657 2006-10-20  Chris Toshok  <toshok@ximian.com>
12658
12659         * PropertyGridView.cs: fix a number of issues (bug #78565, and
12660         most of bug #79676):
12661
12662         - you can navigate around the property grid with the arrow keys.
12663
12664         - the dropdown is sized properly when the pg has a vertical
12665         scrollbar.
12666
12667         - fix the indentation for subentries, and properly select the
12668         entire label rect.
12669
12670         - fix the gray bar's drawing (only draw it to the last element,
12671         not for the height of the control.  Also make sure we draw that
12672         last horizontal grid line.
12673
12674         - use the same mechanism the datagrid uses wrt the editing textbox
12675         when scrolling/resizing/etc.  Namely, we hide it first, do the
12676         operation, then show it again (if it's still visible).
12677         
12678         - aggressively remove a lot of unnecessary refreshes (and also
12679         calls to Invalidate(). call more limited variants, and only redraw
12680         what we need.)
12681         
12682         * PropertyGrid.cs:
12683
12684         - when we're populating the merged collection, fill in the UI
12685         parent with either the passed in item, or the category item we
12686         create.
12687
12688         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
12689
12690         * GridItem.cs: drop some fully qualified names.
12691         
12692         * GridEntry.cs: add a "UIParent", which is basically the parent
12693         treenode.
12694
12695         * GridItemCollection.cs: add an IndexOf method.
12696
12697 2006-10-20  Mike Kestner  <mkestner@novell.com>
12698
12699         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
12700         a working win32 NC invalidation mechanism, we can't invalidate
12701         menus.  [Fixes #79705]
12702
12703 2006-10-20  Mike Kestner  <mkestner@novell.com>
12704
12705         * ListBox.cs : don't update the VScrollbar if the list is empty,
12706         just hide it.  [Fixes #79692]
12707
12708 2006-10-20  Jackson Harper  <jackson@ximian.com>
12709
12710         * RichTextBox.cs: Handle some special chars better, and don't skip
12711         the entire group when we encounter a special char that we don't
12712         handle correctly.
12713
12714 2006-10-18  Chris Toshok  <toshok@ximian.com>
12715
12716         * PropertyGridView.cs: address a number of issues from bug #79676,
12717         mostly of the cosmetic variety.
12718
12719         - The highlight rectangle for indented items not extends all the
12720         way to the left.
12721
12722         - Indented items aren't indented so much.
12723
12724         - the dropdown is properly sized width-wise if the pg has a
12725         vertical scrollbar.
12726
12727 2006-10-18  Chris Toshok  <toshok@ximian.com>
12728
12729         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
12730         systray stuff is rather convoluted to begin with.
12731
12732         systray icons are a single window for some reason (that I haven't
12733         figured out yet), and for them, client_window == whole_window.
12734         Given the way the tests are structured elsewhere to determine
12735         which paints are pending (client vs. nc), that situation will
12736         always yield PAINT, not NCPAINT.  So, if we have a pending
12737         nc_expose and no pending expose, remove the hwnd from the paint
12738         queue, and also set nc_expose_pending to false, to keep us from
12739         blocking further expose's adding the hwnd to the paint queue.
12740
12741         phew.  like i said, a rather convoluted change.  Fixes the
12742         notifyicon repaint issues in bug #79645.
12743
12744 2006-10-18  Chris Toshok  <toshok@ximian.com>
12745
12746         * Form.cs: when getting the backcolor of the form, don't get
12747         base.BackColor, as this allows parents to influence the background
12748         color.  This breaks mdi forms.  Instead, if the background_color
12749         is empty, return the default.
12750
12751 2006-10-18  Chris Toshok  <toshok@ximian.com>
12752
12753         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
12754         to being private instead of internal static.
12755
12756         * Control.cs: remove all the stupid ParentWaitingOnRecreation
12757         crap, it wasn't working for more deeply nested controls anyway,
12758         and we already have the is_recreating flag - use that instead.
12759         Before calling DestroyHandle in RecreateHandle, recurse through
12760         the control tree setting it to true.  this returns the recreate
12761         code to much of its original simplicity, while now guaranteeing we
12762         actually recreate everything we're supposed to.  This change gets
12763         fyireporting actually showing mdi children.
12764
12765 2006-10-17  Chris Toshok  <toshok@ximian.com>
12766
12767         * Form.cs: remove some debug spew, and collapse some duplicate
12768         code at the end of SetClientSizeCore.
12769
12770         * XplatUIX11.cs: 
12771         - add some more debug spew here too wrt Destroy handling.
12772         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
12773         in Control's handling of WM_DESTROY.
12774         - Remove the handling of zombie window DestroyNotifies from the
12775         event loop - we don't need it.  Now the only DestroyNotifies we
12776         actually handle are ones generated by X.
12777         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
12778         match gtk's (functioning) handling of this. This keep metacity
12779         from leaving droppings in the form of wm borders with no window
12780         contents all over the place.
12781
12782         * Control.cs:
12783         - add a bunch of debug spew wrt control recreation.
12784         - fix a bug where we weren't tracking Visible properly on
12785         recreated hwnds.
12786         - fixed the WM_PAINT double buffer handling to support re-entrant
12787         calls (yes, i know it's gross, but it's happening to us).
12788
12789 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12790         * ThemeWin32Classic.cs: changed drawing of selected days
12791         to make them look better.
12792
12793 2006-10-16  Chris Toshok  <toshok@ximian.com>
12794
12795         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
12796         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
12797
12798         * XplatUIX11.cs: move away from using hwnd.client_dc and
12799         hwnd.non_client_dc and on to a stack of dc's (and in window's
12800         case, PAINTSTRUCT's), so we can deal with nested Paint calls
12801         without puking or not disposing of Graphics objects.
12802
12803         * XplatUIOSX.cs: same.
12804
12805         * XplatUIWin32.cs: same.
12806
12807 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
12808
12809         * FileDialog.cs: Don't call on_directory_changed inside
12810           OnSelectedIndexChanged (it changes the SelectedIndex too).
12811           Instead move it to OnSelectionChangeCommitted.
12812
12813 2006-10-13  Chris Toshok  <toshok@ximian.com>
12814
12815         * XplatUIX11.cs: more Destroy work.  the current code does the
12816         following things, in order:
12817
12818         1. Enumerates all handles of all controls at or below the one
12819         being destroyed, in pre-order.  As it is doing this, it marks the
12820         handles as zombie and clears all references to them.
12821         
12822         2. calls XDestroyWindow on the window passed in.
12823
12824         3. SendMessage's WM_DESTROY to all he handles in the accumulated
12825         list.
12826
12827 2006-10-13  Chris Toshok  <toshok@ximian.com>
12828
12829         * XplatUIX11.cs: set hwnd.zombie to true before calling
12830         SendMessage (WM_DESTROY).  this keeps us from marking the new
12831         window a zombie, and also keeps us from calling sendmessage at
12832         all.
12833
12834 2006-10-13  Jackson Harper  <jackson@ximian.com>
12835
12836         * TextControl.cs: Do not show the caret and selection at the same
12837         time.  Reduces ugliness by 35%.
12838
12839 2006-10-13  Chris Toshok  <toshok@ximian.com>
12840
12841         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
12842         zombie after we do the recursive call, so we actually do call
12843         SendMessage on the children controls.
12844         (GetMessage): if we find a pending paint event for a zombie hwnd,
12845         remove the hwnd from the paint queue, or else it will always be
12846         there (and we'll effectively loop infinitely)
12847
12848 2006-10-13  Mike Kestner  <mkestner@novell.com>
12849
12850         * MenuItem.cs : add Selected format under keynav too.
12851         Fixes #79528.
12852
12853 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
12854
12855         * PropertyGrid.cs: Fixed some NRE's and small difference between our
12856         implementation and that of MS.
12857
12858 2006-10-13  Chris Toshok  <toshok@ximian.com>
12859
12860         * Control.cs (OnInvalidated) only futz with the invalid_region if
12861         the control is double buffered.  this fixes the apparent hang in
12862         the ListView unit tests.  Someone needs to make the
12863         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
12864
12865 2006-10-13  Chris Toshok  <toshok@ximian.com>
12866
12867         * PropertyGridView.cs:
12868
12869         - do a little refactoring so that only one place calls
12870         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
12871         else call that.  Also make it Refresh, since there are redraw bugs
12872         otherwise (we should take a look at that...)
12873
12874         - do a little more refactoring work to share the body of code
12875         involved with the drop down.  it was duplicated in the code
12876         dealing with the listbox handling and in the code dealing with the
12877         UITypeEditors.
12878
12879         - add a Capture to the dropdown form's control once it's
12880         displayed, and add a MouseDown handler that checks to make sure
12881         the position is inside the control.  If it's not, close the
12882         dropdown.  This fixes #78190.
12883
12884         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
12885         if the value is different than the initial value.
12886         
12887 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
12888
12889         * Control.cs: see #78650
12890         - Fixed GetNextControl for several cases:
12891                 - Changed FindFlatForward to return 
12892                 correct sibling control when more than one
12893                 control has same TabIndex as the currently 
12894                 focused one.
12895                 - Changed FindFlatBackward to loop children
12896                 from last to first and apply same logic as in
12897                 FindFlatForward
12898                 - Changed FindControlForward to search for
12899                 children when control is not a container
12900                 but has children, or search for siblings if
12901                 control is a container...
12902                 - Changed FindControlBackward   to continue
12903                 searching for child controls when hitting 
12904                 Panel-like parents
12905                 
12906         - Fixed Focus method to update ActiveControl
12907         (FocusTest.FocusSetsActive failure)
12908         
12909         * TabControl.cs:
12910         - Focus rectangle now refreshes when gaining
12911         or losing focus
12912         - Removed grab for Tab key on IsInputKey that 
12913         was keeping tab navigation from working (#78650)
12914
12915 2006-10-13  Chris Toshok  <toshok@ximian.com>
12916
12917         * PropertyGridView.cs:
12918         - Rewrite SetPropertyValue to loop over SelectedGridItem's
12919         SelectedObjects.
12920
12921         - Deal with GridItem.Value == null a few places.
12922
12923         * PropertyGrid.cs: 
12924         - replace the PopulateGridItemCollection with a pair of methods
12925         which compute the intersection of all the properties in the
12926         SelectedObjects array.  Fixes #79615.
12927
12928         - Throw ArgumentException from set_SelectedObjects if there's a
12929         null in the array.
12930
12931         - Add GetTarget method which can be used to traverse up the
12932         GridItem.Parent chain.  It depends on the assumption that
12933         selected_objects for different GridEntries are always in the same
12934         order (a safe assumption).  Use this method and loop over all the
12935         selected objects in the entry when calling RemoveValueChanged and
12936         AddValueChanged.
12937         
12938         * GridEntry.cs: Make this handle multiple selected objects.
12939         .Value returns null if not all the selected objects share the same
12940         value.
12941
12942 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
12943         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
12944           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
12945           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
12946           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
12947           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
12948         add additional functionality.
12949
12950 2006-10-12  Mike Kestner  <mkestner@novell.com>
12951
12952         * ErrorProvider.cs : new ToolTipWindow ctor sig.
12953         * HelpProvider.cs : new ToolTipWindow ctor sig.
12954         * ToolTip.cs : remove ToolTip param from Window sig since it is
12955         not used.
12956         * ToolBar.cs : add tooltip support.  Fixes #79565.
12957
12958 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12959
12960         * ComboBox.cs: move the events in set_SelectedIndex to 
12961         after the call to HighlightIndex in order to avoid 
12962         possible recursion and subsequent problems with the call
12963         to HighlightIndex and include a range check in 
12964         set_HighlightIndex. Fixes #79588
12965         
12966 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12967
12968         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
12969         to ui thread's settings instead of sunday. 
12970         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
12971
12972 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12973
12974         * DateTimePicker.cs
12975         * MonthCalendar.cs
12976         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
12977         and implement missing functionality (selecting different parts 
12978         of the date and edit them individually with the keyboard).
12979         
12980 2006-10-11  Chris Toshok  <toshok@ximian.com>
12981
12982         * Control.cs (OnInvalidated): fix NRE relating to last change.
12983
12984 2006-10-11  Chris Toshok  <toshok@ximian.com>
12985
12986         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
12987         atoms in _NET_WM_STATE here if the window is maximized.  We need
12988         to do this because we're *replacing* the existing _NET_WM_STATE
12989         property, so those atoms will be lost otherwise, and any further
12990         call to GetWindowState will return Normal for a window which is
12991         actually maximized.  Fixes #79338.
12992
12993 2006-10-11  Jackson Harper  <jackson@ximian.com>
12994
12995         * TextControl.cs: Special case for setting selection end to
12996         selection start, we basically kill the anchor.
12997         - some todo comments.
12998
12999 2006-10-11  Chris Toshok  <toshok@ximian.com>
13000
13001         * Control.cs: switch to using an "invalid_region" to track which
13002         parts of the image buffer need updating.  This is more code than
13003         the simple fix from r66532.  That version just attempted to always
13004         fill the entire buffer on redraw, which turns out to be
13005         inefficient when invalidating small rectangles.  This version
13006         simply adds the invalid rectangle to the invalid region.  When we
13007         get any WM_PAINT message we see if it can be filled using the
13008         image buffer, and if it can't (if the paint event's clip rectangle
13009         is visible in the invalid region) we first fill the image buffer.
13010         So, the image buffer is still a cache, we just fill it lazily.
13011
13012         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
13013         need it any longer.
13014
13015 2006-10-11  Chris Toshok  <toshok@ximian.com>
13016
13017         * XplatUIX11.cs (SetWindowPos): we need to update both position as
13018         well as size after calling XMoveResizeWindow.  This keeps us from
13019         ignoring future SetWindowPos calls.  Fixes the disappearing
13020         DateTimePicker in the ToolBarDockExample from bug #72499.
13021
13022 2006-10-11  Chris Toshok  <toshok@ximian.com>
13023
13024         * TextBoxBase.cs: reorder things a bit when it comes to
13025         resizing-causing-recalculation.  we were recalculating the
13026         document when our position was changed, which shouldn't happen.
13027         We only care about size changes.  Clear up some more redundant
13028         recalculation calls while I'm at it.  This makes the toolbar dock
13029         example snappy when you're just dragging toolbars around (since it
13030         causes a relayout whenever you move one.)
13031
13032 2006-10-11  Chris Toshok  <toshok@ximian.com>
13033
13034         * ToolBarButton.cs (get_Rectangle): this only returns
13035         Rectangle.Empty if Visible == false, or Parent == null.
13036         Parent.Visible doesn't matter.
13037
13038 2006-10-10  Chris Toshok  <toshok@ximian.com>
13039
13040         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
13041         by .net 1.1, so switch to an internal method instead.
13042
13043 2006-10-10  Chris Toshok  <toshok@ximian.com>
13044
13045         * Control.cs (WM_PAINT): when a control is double buffered we draw
13046         initially to the ImageBuffer and then copy from there.  But when a
13047         parent control which has child controls is double buffered, the
13048         initial drawing doesn't encompass the entire ClientRectangle of
13049         the parent control, so we end up with uninitialized bits (this is
13050         easily seen by dragging the top toolbar in
13051         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
13052         manually set the ClipRectangle of the paint_event (only the one we
13053         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
13054         of the nastiness in bug #72499.
13055
13056         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
13057         which we use in Control.cs's WM_PAINT handling.
13058
13059 2006-10-10  Jackson Harper  <jackson@ximian.com>
13060
13061         * TextBoxBase.cs: Finish off the autoscrolling stuff.
13062
13063 2006-10-10  Chris Toshok  <toshok@ximian.com>
13064
13065         * Cursor.cs: Apply a slightly different patch to the one suggested
13066         in #79609.
13067
13068 2006-10-10  Jackson Harper  <jackson@ximian.com>
13069
13070         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
13071         not the parent form.
13072         * TextControl.cs: use difference in old line count vs new count to
13073         calculate how many lines were added, this takes into account soft
13074         line breaks properly.
13075
13076 2006-10-10  Chris Toshok  <toshok@ximian.com>
13077
13078         * LinkLabel.cs: don't call MeasureCharacterRanges against a
13079         rectangle located at 0,0 and the size of the text.  Use
13080         ClientRectangle instead.  This fixes rendering of non-left aligned
13081         link labels.
13082
13083 2006-10-10  Jackson Harper  <jackson@ximian.com>
13084
13085         * TextBoxBase.cs: When we set the selection start position the
13086         caret.
13087         * TextControl.cs: Need to update the caret when we decrement it to
13088         zero.
13089         - Make sure that the selection_visible flag gets reset to false if
13090         the selection isn't visible.  Before this you could get it set to
13091         visible by changing the selection start, then changing the end to
13092         equal the start.
13093
13094 2006-10-09  Jackson Harper  <jackson@ximian.com>
13095
13096         * TreeView.cs: Don't update scrollbars when we aren't visible.
13097         * TreeNodeCollection.cs: Only need to update scrollbars if being
13098         added to an expanded visible node or the root node.
13099
13100 2006-10-09  Chris Toshok  <toshok@ximian.com>
13101
13102         * XplatUIX11.cs (SendMessage): fix NRE.
13103
13104 2006-10-09  Jackson Harper  <jackson@ximian.com>
13105
13106         * TextBoxBase.cs: Implement horizontal autoscrolling.
13107         * TextControl.cs: Add a movement types that allows moving forward
13108         and backwards without wrapping.
13109
13110 2006-10-09  Mike Kestner  <mkestner@novell.com>
13111
13112         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
13113         with focus "expansion" of labels.  Fixes #79532 and then some.
13114         * ThemeWin32Classic.cs : add LineLimit to ListView label format
13115         when wrapping.
13116
13117 2006-10-09  Jackson Harper  <jackson@ximian.com>
13118
13119         * TextBoxBase.cs: Set the default max values to MaxValue since
13120         we use the scrollbar for autoscrolling and the default value is
13121         100.  If we don't do this the caret won't keep up with typing
13122         after about 18 characters.
13123         * TextControl.cs: Make sure the selection is offset by the
13124         viewport x.  This fixes selection when using auto scrolling.
13125
13126 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
13127         
13128         * Form.cs: The active control should be selected after the 
13129         OnLoad so that any child control initialization that affects
13130         the selection is done. Fixes #79406
13131
13132 2006-10-06  Chris Toshok  <toshok@ximian.com>
13133
13134         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
13135         to have no evil effects.
13136
13137         - Stop selecting StructureNotifyMask on non-toplevel windows.
13138
13139           The only way children should be resized is by using the SWF api,
13140           and we already send WM_WINDOWPOSCHANGED messages in those cases.
13141           Toplevel windows can be interacted with via the window manager,
13142           and so we keep the input mask there.
13143
13144           The other event StructureNotifyMask gives us (that we care
13145           about) is DestroyNotify.  The code is already structured such
13146           that it assumes we won't be getting a DestroyNotify event for
13147           the window we pass to XDestroyWindow (which is what
13148           StructureNotifyMask is supposed to guarantee.)  So, that code
13149           shouldn't be affected by this either.
13150
13151         - Stop selecting VisibilityChangeMask altogether.
13152
13153           We weren't doing anything with the resulting events anyway.
13154         
13155         This vastly reduces the number of X requests and events we see
13156         when resizing/laying out a large ui.
13157
13158 2006-10-06  Chris Toshok  <toshok@ximian.com>
13159
13160         * ScrollableControl.cs (DisplayRectangle): we need to take into
13161         account the DockPadding regardless of whether or not auto_scroll
13162         == true.  rework this slightly to this effect, and fix bug #79606,
13163         and part of #72499 (you can now see the drag handles and drag
13164         toolbars around).
13165
13166 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
13167
13168         * ListViewItem.cs: Collections of selected and checked items are now
13169         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
13170         we mark the collection "dirty".
13171         * ListView.cs: Marked collections readonly. Modified UpdateSelection
13172         to only clear SelectedItems when a new item is selected and MultiSelect
13173         is enabled. CheckedItems and SelectedItems now subscribe to Changed
13174         event of ListViewItemCollection, and mark its list dirty whenever
13175         that event is fire. This allows us to return selected/checked items 
13176         in the same order as they are in the Items collection. This matches
13177         the MS behavior.
13178
13179 2006-10-06  Chris Toshok  <toshok@ximian.com>
13180
13181         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
13182         right mouse clicks.  Fixes bug #79593.
13183
13184 2006-10-06  Chris Toshok  <toshok@ximian.com>
13185
13186         * Splitter.cs: doh, fix splitters that don't want to cancel the
13187         movement when you drag them.  Also, impose the limits on the
13188         values we send to the SplitterMovingEvent.  Fixes #79598.
13189
13190 2006-10-06  Jackson Harper  <jackson@ximian.com>
13191
13192         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
13193         since we use this for auto scrolling also.
13194
13195 2006-10-05  Chris Toshok  <toshok@ximian.com>
13196
13197         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
13198         beginning to think that most datagrid column types don't need this
13199         method.  Fixes bug #79392.
13200
13201 2006-10-05  Chris Toshok  <toshok@ximian.com>
13202
13203         * DataGrid.cs: move back to a more lazy scheme for creating the
13204         CurrencyManager, so we aren't updating it every time you set
13205         either DataSource or DataMember.  Also, don't call
13206         RecreateDataGridRows if the currency manager hasn't changed.
13207
13208 2006-10-05  Chris Toshok  <toshok@ximian.com>
13209
13210         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
13211         emitted, SelectedIndex should already be updated.  Fixes bug
13212         #78929.
13213
13214 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
13215
13216         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
13217           ToolStripTextBox.cs: Initial commit.
13218         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
13219
13220 2006-10-05  Jackson Harper  <jackson@ximian.com>
13221
13222         * TabControl.cs: We need to invalidate the tab control area when
13223         new ones are added (duh).
13224
13225 2006-10-03  Chris Toshok  <toshok@ximian.com>
13226
13227         * Form.cs (ProcessDialogKey): if the focused control is in this
13228         form and is a button, call its PerformClick method here.  Fixes
13229         #79534.
13230
13231 2006-10-04  Jackson Harper  <jackson@ximian.com>
13232
13233         * TabPage.cs: Ignore setting of Visible, and add an internal
13234         method for setting the controls visibility.  TabPage's Visible
13235         property is a little strange on MS, this seems to make us
13236         compatible, and fixes cases where people set all the tab pages to
13237         visible.
13238         * TabControl.cs: Use the new internal setting on tab pages
13239         visibility.
13240
13241 2006-10-03  Mike Kestner  <mkestner@novell.com>
13242
13243         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
13244
13245 2006-10-03  Mike Kestner  <mkestner@novell.com>
13246
13247         * ListView.cs : use is_visible instead of Visible to check if 
13248         scrollbars should be placed/sized.  Also some max_wrap_width
13249         love for LargeIcon view.  [Fixes #79533]
13250
13251 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
13252
13253         * TextControl.cs :
13254           Make set_TextAlign() do actually update the align. Fixed #78403.
13255
13256 2006-10-03  Chris Toshok  <toshok@ximian.com>
13257
13258         * DataGrid.cs: fix a crash when switching datasources if the
13259         vertical scrollbar is at someplace other than Value = 0.  Also,
13260         reduce the number of recalculation passes we do in SetDataSource
13261         from 2 to 1.
13262
13263 2006-10-03  Jackson Harper  <jackson@ximian.com>
13264
13265         * TextBoxBase.cs: Move the if value the same bail check up, we
13266         don't want to empty the document if it is already empty, this
13267         seems to severly mess up the caret.  TODO: I should probably fix
13268         the empty statement to update teh caret somehow.
13269
13270 2006-10-03  Chris Toshok  <toshok@ximian.com>
13271
13272         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
13273         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
13274         reflection, an internal row type, properties on said type, etc.)
13275         will work with our datagrid.  Fixes #79531.
13276
13277 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
13278
13279         * FileDialog.cs: Don't crash if a path is not accessible
13280           (System.UnauthorizedAccessException). Fixes #79569.
13281         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
13282           a ':' too. Return unknown icon for those paths/files.
13283
13284 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
13285
13286         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
13287         GetContainerControl returns null.
13288
13289 2006-10-02  Chris Toshok  <toshok@ximian.com>
13290
13291         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
13292         call to XGetWindowAttributes instead of "handle".  fixes an X
13293         error using notifyicon after the NotifyIconWindow to Form base
13294         class switch.
13295
13296 2006-10-02  Chris Toshok  <toshok@ximian.com>
13297
13298         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
13299         server grab and looping we need to do to get down to the most
13300         deeply nested child window.
13301         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
13302         QueryPointer again after the WarpPointer so we can generate a
13303         proper (fake) MotionNotify event to be enqueued in the destination
13304         window's queue.
13305         (GetCursorPos): call QueryPointer.
13306
13307         Fixes #79556.
13308
13309 2006-10-02  Jackson Harper  <jackson@ximian.com>
13310
13311         * NotifyIcon.cs: Derive the notify icon from a form, so things
13312         like FindForm work on it.
13313         - Swallow the WM_CONTEXTMENU message, since that is generated on
13314         mouse down, and context menu is a mouse up kinda guy.  I believe
13315         the correct fix here is probably to make the notify icon entirely
13316         NC area, but this seems to work fine for anyone not manipulating
13317         WndProc.
13318
13319 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
13320
13321         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
13322           ToolStripItemCollection.cs, ToolStripLabel.cs,
13323           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
13324           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
13325           Initial implementation.
13326         * TextRenderer.cs: Provide padding to MeasureText.
13327
13328 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
13329
13330         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
13331         of ButtonBaseAccessibleObject. Fix bug #79552.
13332
13333 2006-10-02  Jackson Harper  <jackson@ximian.com>
13334
13335         * MdiWindowManager.cs: When maximizing use the containers client
13336         rect, not it's bounds, so nc area is accounted correctly.
13337         - Use the parent form's size for the menu position, since the
13338         client isn't always the full form size.
13339
13340 2006-10-01  Chris Toshok  <toshok@ximian.com>
13341
13342         * ScrollableControl.cs: make sure neither right_edge or
13343         bottom_edge are < 0, since they're used as LargeChange for the
13344         horiz/vert scrollbars respectively.  Fixes #79539.
13345
13346 2006-10-01  Chris Toshok  <toshok@ximian.com>
13347
13348         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
13349         the xplatuix11 code can cause us to destroy/recreate our handle.
13350
13351         * XplatUIX11.cs
13352         (SystrayAdd):
13353         - this code can be invoked many times for the same Hwnd.  Make
13354           sure we only destroy the client window once (the first time this
13355           method is called).  This fixes bug #79544.
13356         - Remove the call to the improperly bound XSync.  why we had two
13357           bindings to this, I will never know, but this call resulted in
13358           events being discarded from the queue(!).
13359         - correct a misunderstanding of _XEMBED_INFO - the second atom is
13360           not our current state but the state we wish to be in.  So, 0 if
13361           we don't want to be mapped.  Change it to 1.
13362         (SystrayRemove): The XEMBED spec makes mention of the fact that
13363         gtk doesn't support the reparent of client windows away from the
13364         embedder.  Looking at gtksocket-x11.c seems to agree with this.
13365         The only avenue we have for removing systray icons is to destroy
13366         them.  We don't want the handle to go away for good, though, so
13367         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
13368         #79545.
13369         
13370 2006-10-01  Chris Toshok  <toshok@ximian.com>
13371
13372         * Form.cs (WndProc): inline the native_enabled variable usage into
13373         the cases in which it's used.  Fixes #79536.
13374
13375 2006-09-29  Mike Kestner  <mkestner@novell.com>
13376
13377         * ListView.cs : toggle the selection state for ctrl clicks in 
13378         multiselect mode. [Fixes #79417]
13379
13380 2006-09-29  Mike Kestner  <mkestner@novell.com>
13381
13382         * ListView.cs : kill CanMultiSelect and refactor the selection
13383         code to support multiselection in the absence of mod keys. Steal
13384         arrow/home/end keys by overriding InternalPreProcessMessage to
13385         restore regressed keynav behavior.
13386         [Fixes #79416]
13387
13388 2006-09-29  Jackson Harper  <jackson@ximian.com>
13389
13390         * MdiClient.cs: Repaint the titlebars when the active window is
13391         changed.
13392
13393 2006-09-29  Chris Toshok  <toshok@ximian.com>
13394
13395         * Application.cs: when entering a runloop with a modal, make sure
13396         the hwnd is enabled.  Fixes #79480.
13397
13398 2006-09-29  Chris Toshok  <toshok@ximian.com>
13399
13400         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
13401         when ListManager.CanAddRows == false, bump us back one.
13402
13403         * DataGridColumnStyle.cs (ParentReadOnly): remove the
13404         listmanager.CanAddRows check.  This makes ArrayLists uneditable
13405         using a datagrid, which is not right.
13406         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
13407         is an IEditable, but call property_descriptor.SetValue regardless.
13408         fixes #79435.
13409
13410 2006-09-29  Chris Toshok  <toshok@ximian.com>
13411
13412         * DataGridBoolColumn.cs: we need to test equality in the face of
13413         possible null values (as is the case with the default NullValue).
13414         This patch keeps us from crashing in that case.
13415
13416 2006-09-29  Jackson Harper  <jackson@ximian.com>
13417
13418         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
13419         here, since it will get called for every node collection in the
13420         tree. This is now done in the treeview once the sorting is
13421         finished.
13422         * TreeView.cs: Recalculate the visible order, and update the
13423         scrollbars after sorting, set the top nope to the root so that the
13424         recalc actually works.
13425
13426 2006-09-29  Chris Toshok  <toshok@ximian.com>
13427
13428         * LinkLabel.cs: more handling of the default link collection in
13429         the face of LinkArea manipulation.  The default link collection
13430         contains 1 element (start=0,length=-1).  If the user sets LinkArea
13431         to anything and the links collection is the default, clear it.
13432         Then only add the link if its nonempty.  Fixes #79518.
13433
13434 2006-09-29  Chris Toshok  <toshok@ximian.com>
13435
13436         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
13437         piece correctly when we hit a '\n'.  Fixes #79517.
13438
13439 2006-09-29  Chris Toshok  <toshok@ximian.com>
13440
13441         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
13442         change the binding of gdk_init_check to take two IntPtr's, and
13443         pass IntPtr.Zero for both of them.  Fixes #79520.
13444
13445 2006-09-29  Mike Kestner  <mkestner@novell.com>
13446
13447         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
13448         [Fixes #78779]
13449
13450 2006-09-28  Jackson Harper  <jackson@ximian.com>
13451
13452         * XplatUIX11.cs: When translating NC messages make sure we go from
13453         whole window to screen, not client window to screen.
13454         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
13455         method doesn't exist
13456         - Skip over controls that aren't forms when arranging.
13457
13458 2006-09-28  Jackson Harper  <jackson@ximian.com>
13459
13460         * XplatUIWin32.cs: Clip the rect to the parent window.
13461         * XplatUIStructs.cs: Add clipping modes struct.
13462         * InternalWindowManager.cs: New private method that factors title
13463         bar heights in when calculating the pos of an NC mouse message.
13464         - Use SendMessage to force a paint when the form's size is changed
13465         instead of painting the decorations immediately.
13466         - Don't let the NC button click messages get to DefWndProc,
13467         because they will attempt to handle windowing themself, and this
13468         messes up z-order (it will put them in front of the scrollbars).
13469         * XplatUIX11.cs: Make sure that we don't reset window managers if
13470         we already have one (ie the window is an MDI window).
13471
13472 2006-09-28  Chris Toshok  <toshok@ximian.com>
13473
13474         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
13475         menu code really needs going over.
13476
13477 2006-09-27  Chris Toshok  <toshok@ximian.com>
13478
13479         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
13480         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
13481         window is maximizable.  So, we need to make sure that even if we
13482         clear the border/wm frame of those functions, they're still
13483         available (basically, we remove the decoration without removing
13484         the function).  Half the fix for #79338.
13485
13486 2006-09-27  Chris Toshok  <toshok@ximian.com>
13487
13488         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
13489         Fixes bug #79515.
13490
13491 2006-09-27  Chris Toshok  <toshok@ximian.com>
13492
13493         * Splitter.cs: reorder things a bit so that we don't actually
13494         draw/move the splitter until after calling OnSplitterMoving.  This
13495         lets users cancel/disallow the movement by explicitly setting
13496         event.SplitX/SplitY.  Fixes #79372.
13497
13498 2006-09-27  Jackson Harper  <jackson@ximian.com>
13499
13500         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
13501         because it is most likely on a window being destroyed, and that
13502         will give us an X11 error.
13503
13504 2006-09-27  Chris Toshok  <toshok@ximian.com>
13505
13506         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
13507         the dropdown button now toggles between showing and hiding the
13508         dropdown.  Also, get rid of dropdown_form_showing and just use
13509         dropdown_form.Visible.  We still don't do a grab, but I'll leave
13510         that part to someone who has handled Capture-fu before.
13511
13512 2006-09-27  Chris Toshok  <toshok@ximian.com>
13513
13514         * DataGrid.cs: return false if alt isn't pressed when '0' is
13515         pressed.  this keeps the '0' key from being swallowed, and fixes
13516         bug #79350.
13517
13518 2006-09-27  Chris Toshok  <toshok@ximian.com>
13519
13520         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
13521         Calling Refresh (in response to a scrollbar event) screws up the
13522         scrollbar painting.  Fixes bug #78923.
13523
13524 2006-09-27  Chris Toshok  <toshok@ximian.com>
13525
13526         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
13527         then insert into hashtable" blocks threadsafe.
13528
13529 2006-09-27  Chris Toshok  <toshok@ximian.com>
13530
13531         * MessageBox.cs (CreateParams): the styles should be |'ed with our
13532         baseclass's, since otherwise the
13533         ControlBox/MinimizeBox/MaximizeBox assignments above have no
13534         effect.  This gets the close button back in messageboxes.
13535
13536 2006-09-27  Chris Toshok  <toshok@ximian.com>
13537
13538         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
13539         flag, not just != 0.  this makes flags that are actually multiple
13540         bits (like WS_CAPTION) work.  fixes bug #79508.
13541
13542 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
13543
13544         * PageSetupDialog.cs: add support for getting and settings the 
13545         paper size, source and orientation.
13546
13547 2006-09-26  Chris Toshok  <toshok@ximian.com>
13548
13549         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
13550         and caption == "", we need to remove the resize handles as well as
13551         the title bar.
13552
13553         * Control.cs (set_Text): turns out that setting Text on a form
13554         should change the WM styles on the window, since if ControlBox ==
13555         false, the only way to get a window border is to have a non-""
13556         Text property.  check winforms/forms/text.cs for an example.  so,
13557         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
13558         update both window styles and title.  This fixes a lot of dialogs
13559         (including the preferences dialog in MonoCalendar.)
13560
13561 2006-09-26  Chris Toshok  <toshok@ximian.com>
13562
13563         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
13564         control isn't a Form), call Win32ShowWindow to hide the window,
13565         but don't update the control Visible property.  When we reparent
13566         back to a parent control, call SetVisible in order for the
13567         window's visibility to be reinstated.
13568
13569         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
13570         the FosterParent.
13571
13572         * Control.cs (ControlCollection.Remove): remove that value.Hide()
13573         call for good, since it breaks MonoCalendar (and other things I'm
13574         sure.) Also, set all_controls to null *after* the owner calls,
13575         which end up regenerating it.
13576         (ChangeParent): allow new_parent to be == null, passing
13577         IntPtr.Zero down to XplatUI.
13578
13579         this fixes #79294 the right way.
13580
13581 2006-09-26  Mike Kestner  <mkestner@novell.com>
13582
13583         * GridEntry.cs : internal SetParent method.
13584         * PropertyGrid.cs : attach to property changed on the proper
13585         target if we have a hierarchical grid with subobjects. Setup
13586         GridItem.Parent for hierarchical items.
13587         * PropertyGridView.cs : Set value on the correct target for
13588         hierarchical grids. [Fixes #78903]
13589
13590 2006-09-26  Chris Toshok  <toshok@ximian.com>
13591
13592         * Control.cs (ChildNeedsRecreating): this should return true if
13593         either we're being recreated and the child is in our list, or our
13594         parent is waiting for our recreation.
13595
13596 2006-09-26  Chris Toshok  <toshok@ximian.com>
13597
13598         * Control.cs (ControlCollection.Remove): reinstate the
13599         value.Hide() call as suggested in bug #79294.
13600
13601 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
13602
13603         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
13604         coordinates (versus a relative move).
13605
13606 2006-09-26  Chris Toshok  <toshok@ximian.com>
13607
13608         * Control.cs: rework child recreation a little bit.  It turns out
13609         that we race between the DestroyNotify the WM_DESTROY message.  If
13610         the parent gets its DestroyNotify before the child gets the
13611         WM_DESTROY message, the child ends up not recreating (since the
13612         parent finishes its recreation on DestroyNotify, and the child
13613         checks ParentIsRecreating.)
13614
13615         So, instead we store off a list of all the child controls which
13616         need to be recreated when the parent control starts to recreate
13617         itself.  Then, when child controls get their WM_DESTROY message we
13618         check to see if they're in the parent's pending recreation list,
13619         and if so, we recreate.  This removes all dependency on ordering
13620         from the code and fixes the initial MonoCalendar upgrade dialog.
13621         
13622 2006-09-26  Jackson Harper  <jackson@ximian.com>
13623
13624         * TextControl.cs: Use the Line to get the length of the line,
13625         since soft line breaks can change the end line.
13626
13627 2006-09-26  Chris Toshok  <toshok@ximian.com>
13628
13629         * Control.cs (ControlCollection.AddImplicit): don't add the
13630         control again if it's already in one of our lists.  This keeps us
13631         from adding controls over and over again for comboboxes when their
13632         handle gets recreated (as the combobox adds implicit controls in
13633         OnHandleCreated).  Fixes the X11 errors in bug #79480.
13634
13635 2006-09-26  Jackson Harper  <jackson@ximian.com>
13636
13637         * TextControl.cs: When deleting characters make sure that any
13638         orphaned zero lengthed tags get deleted.
13639         - Fix ToString for zero lengthed tags.
13640
13641 2006-09-25  Jackson Harper  <jackson@ximian.com>
13642
13643         * TextControl.cs: When getting a tag at the location there can be
13644         multiple tags at the same spot, these are 0-lengthed tags that
13645         appear when extra formatting has been stuck in a location.  We
13646         need to pull out the last of these 0 lengthed tags.
13647
13648 2006-09-25  Jackson Harper  <jackson@ximian.com>
13649
13650         * TextControl.cs: Fix print out in debug method.
13651         * TextBoxBase.cs: When text is set bail if we are setting to the
13652         previous value.
13653         
13654 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
13655
13656         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
13657           It is now possible to change the selected index in a FontXXXListBox
13658           with the up and down arrow keys from the FontXXXTextBoxes.
13659           Also, send the FontXXXTextBox mouse wheel event to the corresponding
13660           FontXXXListBoxes to match ms.
13661
13662 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
13663
13664         * SystemInformation.cs: Return a clone of the theme's MenuFont because
13665         anyone can dispose it, anytime. All other properties returns enums, 
13666         structs or basic types so they don't need such tricks.
13667
13668 2006-09-22  Jackson Harper  <jackson@ximian.com>
13669
13670         * XplatUI.cs:
13671         * XplatUIWin32.cs:
13672         * Clipboard.cs:
13673         * DataFormats.cs:
13674         * XplatUIOSX.cs:
13675         * XplatUIDriver.cs: Update interface to add a primary selection
13676         flag, so the driver can use the primary selection buffer if
13677         needed.
13678         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
13679
13680         * RichTextBox.cs: We need to supply the data object to paste now
13681         (so we can choose to supply CLIPBOARD or PRIMARY).
13682         * TextBoxBase.cs: Supply data object to paste (see above).
13683         - Middle click uses the primary selection data object.
13684         
13685 2006-09-21  Chris Toshok  <toshok@ximian.com>
13686
13687         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
13688         of SetWMStyles.  It's still a rat's nest and is largely
13689         order-dependent which I dislike immensely.  This also fixes the X
13690         button disappearing from toplevel forms.
13691
13692 2006-09-21  Mike Kestner <mkestner@novell.com>
13693
13694         * ListBox.cs: move Jordi's click/dblclick raising code to the
13695         mouse up handler.
13696
13697 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
13698
13699         * ListBox.cs: Fixes 79450
13700
13701 2006-09-21  Mike Kestner <mkestner@novell.com>
13702
13703         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
13704         to deal with people updating the TreeNodeCollection after the tree
13705         is disposed.  "Fixes" 79330.
13706
13707 2006-09-20  Jackson Harper <jackson@ximian.com>
13708
13709         * TextControl.cs: Push the cursor record onto the undo stack
13710         before the delete action. This fixes 78651.
13711
13712 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
13713
13714         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
13715         CreateParams. Fixes 79329.
13716
13717 2006-09-19  Chris Toshok  <toshok@ximian.com>
13718
13719         * XplatUIX11.cs: a couple of blanket code massage passes to clean
13720         things up a bit.  First, get rid of the NetAtoms array (and the NA
13721         enum), and just embed the atoms as static fields.  Also, add a
13722         couple of functions (StyleSet and ExStyleSet) to clean up all the
13723         bitmask testing of styles.
13724
13725         * X11Structs.cs: remove the NA enum, not needed anymore.
13726         
13727 2006-09-19  Chris Toshok  <toshok@ximian.com>
13728
13729         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
13730         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
13731         added cleanup to get MessageBox titles appearing again, which were
13732         broken by my earlier fix for caption-less/ControlBox-less windows.
13733
13734 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
13735
13736         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
13737           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
13738           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
13739           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
13740           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
13741           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
13742           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
13743           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
13744           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
13745           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
13746           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
13747             Inital import.
13748         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
13749           ToolStripButton.cs: Stubs needed for above.
13750         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
13751
13752 2006-09-15  Chris Toshok  <toshok@ximian.com>
13753
13754         * XplatUIX11.cs:
13755         - make the MessageQueues hashtable Synchronized.
13756         
13757         - SendMessage: if the Hwnd is owned by a different thread, use the
13758         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
13759         thread.  Fixes bug #79201.
13760
13761 2006-09-15  Chris Toshok  <toshok@ximian.com>
13762
13763         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
13764         ControlBox == false, we disallow maximize/minimize/close.  If the
13765         form Caption is "" we also disallow move (and get rid of the Title
13766         decoration).  Unfortunately, regardless of how things are set,
13767         we're stuck with the Title and WM menu.
13768
13769 2006-09-15  Chris Toshok  <toshok@ximian.com>
13770
13771         * Application.cs: add locking around the static message_filters
13772         ArrayList, part of #79196.
13773
13774 2006-09-15  Chris Toshok  <toshok@ximian.com>
13775
13776         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
13777         Form.ControlBox == false, the window has no titlebar nor resize
13778         handles.  fixes bug #79368.
13779
13780 2006-09-15  Chris Toshok  <toshok@ximian.com>
13781
13782         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
13783         >= 0.  Fixes bug #79370.
13784
13785 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
13786         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
13787         * Control.cs:
13788             Add properties: LayoutEngine, Margin, DefaultMargin.
13789             Add method: GetPreferredSize.
13790             Move layout logic from PerformLayout to layout engines. 
13791
13792 2006-09-13  Chris Toshok  <toshok@ximian.com>
13793
13794         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
13795         fix for #79326 broke #78718, so this change addresses that.
13796
13797         - in SendWMDestroyMessages remove the call to
13798         CleanupCachedWindows, since we might be recreating the control and
13799         need to maintain the references to right Hwnd handles.  Also, set
13800         the zombie flag to true for each of the children in the hierarchy
13801         instead of calling hwnd.Dispose.  This will cause GetMessage to
13802         ignore all events for the window except for DestroyNotify.
13803
13804         - In GetMessage, ignore messages except for DestroyNotify for
13805         zombie hwnds.
13806         
13807         * Control.cs: revert the is_recreating fix from the last
13808         ChangeLog.  It's definitely "right", but it breaks switching from
13809         an MDI form to a non-MDI form.  Will need to revisit that.
13810
13811         * Hwnd.cs: add a zombie flag, which means "the
13812         client_window/whole_window handles are invalid, but we're waiting
13813         for the DestroyNotify event to come in for them".  Set the flag to
13814         false explicitly if setting WholeWindow/ClientWindow, and also
13815         when Disposing.
13816         
13817 2006-09-13  Chris Toshok  <toshok@ximian.com>
13818
13819         * XplatUIX11.cs: rework window destruction slightly.
13820
13821         - when destroying the windows associated with a control, we don't
13822         need 2 separate XDestroyWindow calls.  Just the one for the
13823         whole_window (or for client_window if whole_window is somehow
13824         IntPtr.Zero -- can this happen?) is enough.
13825
13826         - reworked SendWMDestroyMessages slightly, so we always dispose
13827         the child control hwnd's after sending the messages.
13828         
13829         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
13830         the two places it was used (one was even using hwnd.Handle and the
13831         other hwnd.client_window.  ugh), adding another call in
13832         SendWMDestroyMessages.  We need this new call because now the
13833         DestroyNotify events in the queue will be ignored for the child
13834         controls (as their hwnd's were disposed, and the window id's
13835         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
13836
13837         - this fixes bug #79326.
13838
13839 2006-09-13  Chris Toshok  <toshok@ximian.com>
13840
13841         * Control.cs: don't always set is_recreating to false at the end
13842         of RecreateHandle, since sometimes we're not done (and won't be
13843         until WndProc handles the WM_DESTROY message).  Also, set
13844         is_recreating to false in the WM_DESTROY handling code.  Part of
13845         the fix for bug #79326.
13846
13847 2006-09-13  Miguel de Icaza  <miguel@novell.com>
13848
13849         * X11DesktopColors.cs: Start the droppage of debugging messages.
13850
13851         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
13852
13853 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
13854
13855         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
13856
13857 2006-09-12  Chris Toshok  <toshok@ximian.com>
13858
13859         * DataGrid.cs (get_ListManager): if the list_manager is null, try
13860         to create it using SetDataSource.  Fixes bug #79151.
13861
13862 2006-09-11  Chris Toshok  <toshok@ximian.com>
13863
13864         * XEventQueue.cs: add a DispatchIdle property.
13865
13866         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
13867         either the queue is null, or the queue has DispatchIdle set to
13868         true.
13869         (DoEvents): set queue.DispatchIdle to false around the
13870         peek/translate/dispatch message loop in this method.  This keeps
13871         Application.Doevents from emitting idle events.  Part of the fix
13872         for #78823.
13873
13874 2006-09-11  Chris Toshok  <toshok@ximian.com>
13875
13876         * DataGrid.cs (set_DataSource): make this work for both the
13877         winforms/datagrid test and ReportBuilder.  It seems as though when
13878         we've created a ListManager (or maybe it's if we have a
13879         BindingContext?), when we set the DataSource it clears the
13880         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
13881         #79333.
13882
13883 2006-09-11  Chris Toshok  <toshok@ximian.com>
13884
13885         * XplatUIX11.cs: deal with queue being null, which happens in all
13886         the Clipboard functions.  Fixes one of the two problems mentioned
13887         in #78612.
13888
13889 2006-09-11  Chris Toshok  <toshok@ximian.com>
13890
13891         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
13892         button on various spots (including outside the menu) works closer
13893         to MS, and doesn't crash.  Fixes #79343.
13894
13895 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
13896
13897         * ListView.cs: Do not initialize item_sorter in init. To match MS,
13898         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
13899         and the internal comparer is set. When a new ListViewItemSorter is set,
13900         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
13901         was specified. No further processing is necessary if SortOrder is set
13902         to it's current value. If Sorting is modified to None, and View is
13903         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
13904         (either custom or our internal ItemComparer) to null, on 1.0 profile
13905         only set item_sorter to null if its our internal IComparer. If Sorting
13906         is modified to Ascending or Descending, then use our internal IComparer
13907         if none is set, and if the current IComparer is our internal one then:
13908         on 2.0 profile always replace it with one for new Sorting, and on 1.0
13909         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
13910         Enum.IsDefined to verify whether a valid View value is specified in
13911         its setter. Automatically sort listview items when listview is
13912         created. In Sort, do nothing if ListView is not yet created, or if
13913         no item_sorter is set (no Sorting was set, Sorting was explicitly set
13914         to None or ListViewItemSorter was set to null). Added Sort overload
13915         taking a bool to indicate whether the ListView should be redrawn when
13916         items are sorted (we use this in ListViewItemCollection to avoid double
13917         redraws). Modified our internal IComparer to take the sort order into
13918         account. In Add and AddRange methods of ListViewItemCollection, also
13919         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
13920         view), but use overload with noredraw option to avoid double redraw.
13921         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
13922         true when View is Tile, and do the same when attempting to set View to
13923         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
13924         for selected/checked indices, as it involves overhead when sorting is
13925         done while these collections are not used all that often. Instead
13926         we'll build the indices on demand. Modified IList implementation of
13927         CheckedIndexCollection to use public methods if object is int.
13928         Modified CheckedListViewItemCollection to hide checked items if
13929         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
13930         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
13931         IList implementation in SelectedIndexCollection to use public methods
13932         if object is int. Modified SelectedListViewItemCollection to hide
13933         selected items if listview is not yet created.
13934         * ListViewItem.cs: CheckedIndices list no longer needs to be
13935         maintained separately (see ListView changes). Also clone font, fixes
13936         test failure.
13937
13938 2006-09-11  Mike Kestner  <mkestner@novell.com>
13939
13940         * ComboBox.cs: if we are updating the contents of the currently
13941         selected index, refresh the control or the textbox selection.
13942         [Fixes #79066]
13943
13944 2006-09-11  Mike Kestner  <mkestner@novell.com>
13945
13946         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
13947         the 'specified' logic has been moved there.  This seems like a bug 
13948         in Control.cs, since our current SetBoundsCore completely ignores 
13949         the specified parameter.  Peter's commit seems to indicate that is 
13950         the way the MS control implementation works.  [Fixes #79325]
13951
13952 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
13953
13954         * XplatUI.cs: Set default_class_name to be composed
13955         of current domain id. This allows MWF to be loaded in multiple
13956         domains on Win32.
13957
13958 2006-09-09  Miguel de Icaza  <miguel@novell.com>
13959
13960         * X11Keyboard.cs: If we are unable to obtain the input method, do
13961         not call CreateXic to create the input context.   Should fix
13962         #78944/79276.
13963
13964 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
13965
13966         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
13967           Simplified gnome support by adding more pinvokes to get the
13968           icon for a file or mime type.
13969
13970 2006-09-08  Jackson Harper  <jackson@ximian.com>
13971
13972         * MenuAPI.cs: Deslect popup context menu items before closing the
13973         window, so that you don't see the previously selected item
13974         selected when you reopen the menu.
13975         * TextControl.cs: Update the cursor position even if we don't have
13976         focus.  This fixes typing in things like the ComboBox.  I'm not
13977         totally sure we should always set the visibility if we don't have
13978         focus, but couldn't find any corner cases where the cursor showed
13979         up when it shouldn't.
13980
13981 2006-09-08  Chris Toshok  <toshok@ximian.com>
13982
13983         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
13984         our arrays are length 256.  & 0xff before indexing.  Fixes the
13985         crash in bug #78077.
13986         
13987 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13988
13989         * ThemeWin32Classic.cs: 
13990         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
13991         is true. Handle that check box too.
13992
13993 2006-09-07  Chris Toshok  <toshok@ximian.com>
13994
13995         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
13996         79244.
13997
13998 2006-09-07  Chris Toshok  <toshok@ximian.com>
13999
14000         * Control.cs: in set_BackColor only do the work if
14001         background_color != value.
14002
14003         * XplatUIX11.cs: move the clearing of invalid areas (both client
14004         and nc) to the same block of code where we set (nc_)expose_pending
14005         to false.  That is, move it from PaintEventEnd to PaintEventStart,
14006         so things that cause invalidates from within OnPaint will trigger
14007         another call to OnPaint.  Fixes bug #79262.
14008
14009 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
14010
14011         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
14012         * FileDialog.cs: Fix typo
14013
14014 2006-09-07  Jackson Harper  <jackson@ximian.com>
14015
14016         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
14017         for tab pages if they have any.
14018
14019 2006-09-06  Mike Kestner  <mkestner@novell.com>
14020
14021         * Splitter.cs: use the "current" rect when finishing drag handle
14022         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
14023
14024 2006-09-06  Mike Kestner  <mkestner@novell.com>
14025
14026         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
14027         support offset splitters. [Fixes #79298]
14028
14029 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
14030
14031         * Mime.cs: Fixed a bug that could override the global mime type
14032           result.
14033
14034 2006-09-05  Jackson Harper  <jackson@ximian.com>
14035
14036         * TabControl.cs: Better calculation method for setting the slider
14037         pos. Prevents crashes on really wide tabs.
14038         - Draw Image on tab pages if an image list is used.
14039
14040 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14041
14042         * MonthCalendar.cs: When Font changes, the Size should be
14043         updated to fit the new font's space requirements.
14044
14045 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
14046
14047         * ListBox.cs: If the items are cleared with Items.Clear set
14048           top_index to 0.
14049
14050 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14051
14052         * MonthCalendar.cs: Handle arrow keys as input keys. Also
14053         fire DateChanged event instead of DateSelected event when
14054         the date was changed by keyboard interaction.
14055
14056 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14057
14058         * DateTimePicker.cs: Handle DateChanged for the associated
14059         month_calendar control, and set month_calendar.Font from 
14060         OnFontChanged method, as well as resize the height of the
14061         control when needed. Make PreferredHeight proportional.
14062
14063 2006-09-01  Chris Toshok  <toshok@ximian.com>
14064
14065         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
14066         properties.
14067
14068         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
14069
14070 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
14071
14072         * FileDialog.cs: Set ClientSize instead of window size, to allow space
14073           for decorations (Fixes #79219)
14074
14075 2006-09-01  Mike Kestner  <mkestner@novell.com>
14076
14077         * ComboBox.cs: first stab at sorting plus some selection handling
14078         fixes to bring us more in line with MS behavior.  Also switches back
14079         to index based selection.  Alternative patches for index-based 
14080         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
14081         and latency@gmx.de on bug 78848.  I assume they were similar to this
14082         code I've had simmering in my tree forever.
14083         [Fixes #78848]
14084
14085 2006-09-01  Chris Toshok  <toshok@ximian.com>
14086
14087         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
14088         when setting list position guard against ending up with a -1 index
14089         (the other part of the fix for #78812).  Should probably make sure
14090         we don't need the analogous fix in the ItemDeleted case.
14091
14092         * DataGrid.cs:
14093         - in SetDataSource, work around the fact that the way
14094         OnBindingContextChanged is invoked will cause us to re-enter this
14095         method.  I'll remove the hack once I investigate
14096         OnBindingContextChanged.
14097
14098         - fix the logic in set_DataSource and set_DataMember (basically
14099         what to do if the other of the two is null.)
14100         
14101         - in OnListManagerItemChanged, we need to take into account the
14102         edit row when deciding whether or not to call RecreateDataGridRows
14103         (part of the fix for #78812).
14104
14105 2006-09-01  Jackson Harper  <jackson@ximian.com>
14106
14107         * Splitter.cs: Don't do anything if there is no control to affect
14108         (prevents us from crashing in weird tet cases).
14109         * TreeView.cs: Bounding box for the mouse movement reverting
14110         focus/selection back to previously selected node.  This matches
14111         MS, and makes the tree a lot more useable.
14112         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
14113         use clipping so they are not drawn.  This fixes when the control
14114         is set to have a transparent background, or if it was over an
14115         image.
14116
14117 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
14118
14119         * MimeIcon.cs: Improved handling for reading default icons when
14120           using gnome (2.16 made it necessary). Check and read svg icons
14121           first, then 48x48 and then 32x32 icons.
14122
14123 2006-08-31  Chris Toshok  <toshok@ximian.com>
14124
14125         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
14126         visible.
14127
14128         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
14129         ProcessKeyPreview.  Fixes part of #77806.
14130
14131         * DataGrid.cs: big patch.
14132
14133         - revert the queueing up of DataSource/DataMember if inside
14134         BeginInit/EndInit calls.  That's not the way the datagrid achieves
14135         its delayed databinding.  Instead, call SetDataSource in
14136         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
14137         #78811.
14138
14139         - Also, it wasn't mentioned in #78811, but the test case exhibits
14140         behavior that was lacking in our datagrid implementation - Columns
14141         that have mapping names that don't exist in the datasource's
14142         properties aren't shown.  Yuck.  To fix this I added the bound
14143         field to the column style, and basically any calculation to figure
14144         out anything about columns uses a loop to find the bound columns.
14145         still need to investigate if I can cache an array of the bound
14146         columns or if the indices must be the same.
14147
14148         - When setting CurrentCell, we no longer abort if the cell being
14149         edited was in the add row.  This fixes the other part of #77806.
14150
14151         - The new code also fixes #78807.
14152         
14153         * ThemeWin32Classic.cs: perpetrate the same disgusting
14154         column.bound field hack, and only render bound fields.
14155
14156 2006-08-31  Chris Toshok  <toshok@ximian.com>
14157
14158         * DataGridColumnStyle.cs: add bound field.  this field is true if
14159         the datasource has a property corresponding to the mapping name.
14160
14161         * DataGridTableStyle.cs: set the bound field on the column styles
14162         depending on whether or not we have a column for that property.
14163
14164 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
14165
14166         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
14167           splitter control (fixes #79228)
14168
14169 2006-08-31  Chris Toshok  <toshok@ximian.com>
14170
14171         * DataGridColumnStyle.cs: we need to delay the assignment of
14172         property descriptor until the last possible moment due to the lazy
14173         databinding stuff in the datagrid.  Also, fix the exceptions
14174         thrown by CheckValidDataSource to match MS.
14175
14176 2006-08-31  Jackson Harper  <jackson@ximian.com>
14177
14178         * Form.cs: When activated select the active control, if there is
14179         no active control, we select the first control.
14180         * XplatUIX11.cs: If there is no focus control when we get a
14181         FocusIn event, find the toplevel form and activate it.  This
14182         occurs when you popup a window, it becomes the focus window, then
14183         you close that window, giving focus back to the main window.
14184
14185 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14186
14187         * MonthCalendar.cs: 
14188         * ThemeWin32Classic.cs: Cache Font in bold style, as well
14189         as StringFormat with Center alignments in MonthCalendar,
14190         instead of creating new ones when drawing the control. 
14191         Also, draw the month name in bold style.
14192
14193 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14194
14195         * Control.cs:
14196           - PerformLayout(): It would seem MS performs the fill even if the 
14197             control is not visible (part of #79218 fix)
14198           - ResetBackColor(): Use the setter to reset the color, to allow
14199             overriders to catch the change.
14200         * Form.cs:
14201           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
14202           - CreateHandle(): dito (part of $79218 fix)
14203           - Don't set an icon if we have a dialog
14204         * ScrollableControl.cs:
14205           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
14206           - ScrollIntoView(): No need to scroll if control is already visible
14207             (resolves fixme and fixes #79218)
14208
14209 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14210
14211         * MonthCalendar.cs: Change proportions in SingleMonthSize
14212         to match the aspect of the original control.
14213
14214 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
14215
14216         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
14217           get updated when they get maximized.
14218
14219 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
14220
14221         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
14222
14223 2006-08-29  Chris Toshok  <toshok@ximian.com>
14224
14225         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
14226
14227 2006-08-29  Jackson Harper  <jackson@ximian.com>
14228
14229         * TreeView.cs: Need to track selected node and highlighted node,
14230         they aren't always the same thing, when the mouse is down on a
14231         node it is hilighted, but not selected yet.
14232         - Do the HideSelection stuff right
14233         - Need to focus on rbutton mouse down. And redraw selection when
14234         right click is mouse upped.
14235
14236 2006-08-29  Mike Kestner  <mkestner@novell.com>
14237
14238         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
14239         when SubItems.Count < Columns.Count.  [Fixes #79167]
14240
14241 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
14242
14243         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
14244
14245 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
14246
14247         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
14248           from X. Only send based on ConfigureNotify if we don't have the
14249           correct location in hwnd (if the window manager moved us)
14250
14251 2006-08-28  Mike Kestner  <mkestner@novell.com>
14252
14253         * ListView.cs: remove a TODO. 
14254         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
14255         [Fixes ListView part of #79166]
14256
14257 2006-08-28  Mike Kestner  <mkestner@novell.com>
14258
14259         * ListView.cs: move wheel handler to parent since it is focused
14260         instead of the item_control now.  [Fixes #79177]
14261
14262 2006-08-28  Mike Kestner  <mkestner@novell.com>
14263
14264         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
14265         when the control is focused. [Fixes #79171]
14266
14267 2006-08-28  Mike Kestner  <mkestner@novell.com>
14268
14269         * ListView.cs: size the item and header controls for empty and
14270         unscrollable views.
14271         * ThemeWin32Classic.cs: draw disabled backgrounds.
14272         [Fixes #79187]
14273
14274 2006-08-28  Chris Toshok  <toshok@ximian.com>
14275
14276         * Form.cs: remove unused "active_form" static field.
14277
14278         * Hwnd.cs: lock around accesses to static windows collection.
14279
14280         * Application.cs: lock threads in Exit ().
14281
14282 2006-08-28  Chris Toshok  <toshok@ximian.com>
14283
14284         * NativeWindow.cs: lock around accesses to window_collection.
14285         
14286 2006-08-28  Chris Toshok  <toshok@ximian.com>
14287
14288         * Control.cs: err, fix this the right way, by locking on controls
14289         when using it.  not by making it synchronized.
14290
14291 2006-08-28  Chris Toshok  <toshok@ximian.com>
14292
14293         * Control.cs: make the static "controls" field synchronized, as it
14294         gets updated from multiple threads.
14295
14296 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
14297
14298         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
14299           Prevent other threads from exiting when calling thread sets quit state.
14300         * XEventQueue.cs: Added PostQuitState property
14301
14302 2006-08-27  Chris Toshok  <toshok@ximian.com>
14303
14304         * AsyncMethodData.cs: add a slot for the window handle.
14305
14306         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
14307         window (the destination control's window, not the foster window).
14308
14309         * Control.cs (BeginInvokeInternal): store the window's handle in
14310         the AsyncMethodData.
14311         
14312
14313 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
14314
14315         * XplatUIX11.cs:
14316           - PostQuitMessage: Removed resetting S.D display handle, we might have
14317             another loop started after calling PostQuitMessage (Fixes #79119)
14318           - Created destructor to reset S.D handle
14319
14320 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
14321
14322         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
14323
14324 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14325
14326         * TextControl.cs (Insert): Update the caret position even if we don't
14327           have a handle yet, just don't call the driver in that case.
14328         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
14329           to the end of the new selection text (Fixes #79184)
14330
14331 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14332
14333         * Form.cs (Activate): Only activate if the handle is created)
14334         * Control.c:
14335           - Mark window as invisible when it's disposed
14336           - Check if window handle is created when setting window visible, 
14337             instead of relying just on the is_created variable
14338           - Check if object is disposed when creating the control (Fixes #79155)
14339
14340 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14341
14342         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
14343           when allowing layout again. Otherwise we re-generate the anchoring 
14344           distance to the border again and actually alter what the user wanted
14345           This is ugly, it'd be better if we used DisplayRectangle instead of
14346           ClientRectangle for Control.UpdateDistances, but that causes us to
14347           have other problems (initial anchoring positons would be wrong)
14348           (Fixes #78835)
14349
14350 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14351
14352         * Control.cs:
14353           - The size and location setters shouldn't go directly to 
14354             SetBoundsCore, but to SetBounds, which triggers layout on the
14355             parent, then calls SetBoundsCore. (Related to fix for #78835)
14356           - SetBounds: Moved actual location update code into this function
14357             from SetBoundsCore, to match MS. Added call to PerformLayout if
14358             we have a parent (to trigger resizing of anchored parents if the 
14359             child size has changed (see testcase for #78835) 
14360         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
14361           new control code
14362         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
14363
14364 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14365
14366         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
14367           System.Drawing when a toplevel window gets closed; there might
14368           be other toplevel windows belonging to the same app (Fixes #78052)
14369
14370 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
14371
14372         * FileDialog.cs: After reading FileDialog settings from mwf_config
14373           use Desktop prefix only if a real folder doesn't exist anymore.
14374         * FontDialog.cs: Added char sets.
14375           It is now possible to select the font, size or style with the
14376           textboxes.
14377
14378 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
14379
14380         * PrintPreviewDialog.cs: Use assembly name constants.
14381
14382 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14383
14384         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
14385           scrollbar from whacking it's buttons)
14386
14387 2006-08-24  Chris Toshok  <toshok@ximian.com>
14388
14389         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
14390         in this patch (aggregating setting Left/Top/Width/Height to
14391         setting Bounds on the scrollbars), but the crux of the fix is in
14392         Recalculate, where we scroll by the remaining scroll_position if
14393         we're hiding a scrollbar.  The 2*$5 reward in the comment is
14394         serious.
14395
14396 2006-08-24  Jackson Harper  <jackson@ximian.com>
14397
14398         * MdiClient.cs:
14399         * MdiWindowManager.cs: If the form is made a non-mdi window we
14400         need to remove the form closed event so that closing forms works
14401         correctly.
14402
14403 2006-08-24  Jackson Harper  <jackson@ximian.com>
14404
14405         * Control.cs: Make IsRecreating internal so that the driver can
14406         check it
14407         - Temporarily remove the Hide when controls are removed, its
14408         making a whole bunch of things not work because visibility isn't
14409         getting reset elsewhere correctly
14410         * Form.cs: Need to do a full handle recreation when the mdi parent
14411         is set.
14412         * XplatUIX11.cs: If we are recreating handles don't dispose the
14413         HWNDs.  What was happening is the handles were being recreated in
14414         SendWMDestroyMessages, but then flow continued on in that method
14415         and destroyed the new handles.
14416
14417 2006-08-23  Jackson Harper  <jackson@ximian.com>
14418
14419         * Form.cs: MdiClient is always at the back of the bus
14420         * Control.cs: When the order of items in the collection is changed
14421         we need to reset the all_controls array
14422         - do the same sorta setup thats done when adding a control when a
14423         control is set on the collection.
14424
14425 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14426
14427         * TextBoxBase.cs (get_Text): Return an empty array if our document
14428           is empty (fixes #79052)
14429
14430 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14431
14432         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
14433           on WM_SYSCHAR messages (fixes #79053)
14434
14435 2006-08-23  Chris Toshok  <toshok@ximian.com>
14436
14437         * DataGrid.cs: fix flickering when scrolling vertically.
14438
14439 2006-08-23  Chris Toshok  <toshok@ximian.com>
14440
14441         * DataGrid.cs (EndEdit): only invalidate the row header when we
14442         need to.
14443
14444 2006-08-23  Chris Toshok  <toshok@ximian.com>
14445
14446         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
14447         methods.  fixes the flicker when scrolling around.
14448
14449 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14450
14451         * FileDialog.cs: Making sure the control is created before we get a 
14452           chance to use it with BeginInvoke (Fixes #79096)
14453
14454 2006-08-23  Chris Toshok  <toshok@ximian.com>
14455
14456         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
14457         width to use when painting the rows.
14458
14459 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14460
14461         * TextBoxBase.cs:
14462           - Throw ArgumentException if a negative value is passed to SelectionLength
14463           - Update the selection end if start is moved. end needs to be always
14464             after start. (Fixes #79095)
14465           - Track selection length; MS keeps the selection length even if start
14466             is changed; reset on all other operations affection selection
14467
14468 2006-08-22  Jackson Harper  <jackson@ximian.com>
14469
14470         * TreeView.cs: Make sure both scrollbars get displayed and sized
14471         correctly when the other bar is visible.
14472         - Use the original clip rectangle for checking if the area between
14473         the two scrollbars is visible, not the viewport adjusted clipping
14474         rectangle.
14475
14476 2006-08-22  Jackson Harper  <jackson@ximian.com>
14477
14478         * Binding.cs: We don't use IsBinding because it requires the
14479         control to be created, which really shouldn't be necessary just to
14480         set a property on the control.
14481
14482 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14483
14484         * ComboBox.cs: Some CB.ObjectCollection methods must throw
14485         ArgumentNullReferenceException when the argument is null.
14486
14487 2006-08-21  Jackson Harper  <jackson@ximian.com>
14488
14489         * Timer.cs: Track the thread that the timer is started in (NOT
14490         CREATED), this way messages for it will only be triggered on its
14491         queue.
14492         * XEventQueue.cs: Track the timers here, this makes timers per
14493         thread, like MS.
14494         * XplatUIX11.cs: The timers are moved to the XEventQueue.
14495
14496 2006-08-19  Chris Toshok  <toshok@ximian.com>
14497
14498         * XplatUIX11.cs: after further communication with pdb, we get the
14499         best of both worlds.  SetZOrder working for un-Mapped windows, and
14500         no X errors for un-mapped windows.
14501
14502 2006-08-19  Chris Toshok  <toshok@ximian.com>
14503
14504         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
14505         as it was causing pdn toolbars to not have the correct stacking.
14506
14507 2006-08-18  Mike Kestner  <mkestner@novell.com> 
14508
14509         * ListView.cs : guard against negative ClientArea.Width in scrollbar
14510         calculation.  Not sure why control should ever be setting a negative
14511         width though.  Fixes #78931.
14512
14513 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14514
14515         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
14516         null items in ObjectCollection class.
14517         * ListBox.cs.: Likewise.
14518
14519 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
14520
14521         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
14522           as the base method in ThemeWin32Classic should work fine.
14523           Fixed bug #78607.
14524
14525 2006-08-18  Jackson Harper  <jackson@ximian.com>
14526
14527         * Binding.cs: When validating if the value entered doesn't convert
14528         properly reset to the old value.
14529         * RadioButton.cs: Don't fire click when we get focus.
14530
14531 2006-08-18  Jackson Harper  <jackson@ximian.com>
14532
14533         * FileDialog.cs: Paint the selection on the directory combobox the
14534         same way as on MS. 
14535
14536 2006-08-17  Jackson Harper  <jackson@ximian.com>
14537
14538         * ErrorProvider.cs: Don't allow the error control to be selected.
14539         * Control.cs: Don't send the SetFocus messages, the control
14540         activation will do this, and if we do it blindly here validation
14541         does not work.
14542
14543 2006-08-17  Jackson Harper  <jackson@ximian.com>
14544
14545         * Control.cs:
14546         * ContainerControl.cs: Make validation events fire in the correct
14547         order.  TODO: For some reason the first validation event is not
14548         getting fired.
14549
14550 2006-08-17  Mike Kestner  <mkestner@novell.com> 
14551
14552         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
14553
14554 2006-08-17  Mike Kestner  <mkestner@novell.com> 
14555
14556         * ComboBox.cs : implement scroll wheel support for popped-down
14557         state. Fixes #78945. 
14558
14559 2006-08-17  Jackson Harper  <jackson@ximian.com>
14560
14561         * TreeView.cs: Specify treeview actions (old patch that didn't get
14562         committed for some reason).
14563         - Don't let the mouse wheel scroll us too far.  Just want to make
14564         the bottom node visible, not scroll it all the ways to the top.
14565
14566 2006-08-17  Jackson Harper  <jackson@ximian.com>
14567
14568         * XplatUIX11.cs: Mouse wheel events go to the focused window.
14569
14570 2006-08-17  Mike Kestner  <mkestner@novell.com> 
14571
14572         * ComboBox.cs : don't do mouseover selection in simple mode.
14573
14574 2006-08-16  Jackson Harper  <jackson@ximian.com>
14575
14576         * Form.cs: Fire the closing events for all the mdi child windows
14577         when a window is closed.  If the cancel args are set to true, the
14578         main window still gets the event fired, but it doesn't not close.
14579         * MdiWindowManager.cs: Do this closing cleanup in a Closed
14580         handler, instead of when the button is clicked, so cancelling the
14581         close works correctly.
14582         * ComboBox.cs: Send the mouse down to the scrollbar.
14583
14584 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14585
14586         * ListBox.cs: When passing 'null' to SelectedItem,
14587         set SelectedIndex to -1, to unselect items. This is the
14588         observed behaviour in .Net.
14589
14590 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
14591
14592         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
14593           MS flags saying there won't be any. (fixes #78800)
14594         * Control.cs (HandleClick): Made virtual
14595
14596 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
14597
14598         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
14599           cultures. Fixed bug #78399.
14600
14601 2006-08-16  Jackson Harper  <jackson@ximian.com>
14602
14603         * Form.cs: Use the MdiClients MdiChildren property to access
14604         MdiChildren instead of creating the array from the child controls.
14605         * MdiClient.cs: Maintain a separate array of the mdi children, so
14606         that insertion order is maintained when the Z-order is changed.
14607
14608 2006-08-16  Mike Kestner  <mkestner@novell.com> 
14609
14610         * ListView.cs : add an ItemComparer and default to it for sorting.
14611         Fixes #79076, but sorting needs a complete overhaul to be compat with
14612         MS.
14613
14614 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
14615
14616         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
14617
14618 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
14619
14620         * Hwnd.cs (Mapped): Properly traverse the tree
14621
14622 2006-08-15  Chris Toshok  <toshok@ximian.com>
14623
14624         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
14625         pass manager.Current.GetType() to ParseData.  It has to be the
14626         property type.  So, hold off doing the ParseData until we're in
14627         SetPropertyValue where we know the type.  This fixes the crash in
14628         #78821 but the textbox is still empty.
14629
14630 2006-08-15  Chris Toshok  <toshok@ximian.com>
14631
14632         * DataGrid.cs:
14633         - when we're scrolling, only call Edit() again if the
14634         current cell is still unobscured. Fixes bug #78927.
14635         - when handling mousedown on a cell, ensure the cell is visible
14636         before calling Edit.
14637         - remove the properties from DataGridRow, and remove the
14638         DataGridParentRow class altogether.
14639         
14640
14641 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
14642
14643         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
14644           fire OnTextChanged by ourselves. There's no point calling base,
14645           we don't set the base value anywhere else. Fixes #78773.
14646
14647 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14648
14649         * ListBox.cs: Call CollectionChanged when modifying
14650         an item from Items indexer, to update the actual items
14651         in the list box.
14652
14653 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14654
14655         * PrintDialog.cs: Small fixes for focus and a pair of checks,
14656         to match .Net behaviour.
14657
14658 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
14659
14660         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
14661
14662 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
14663
14664         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
14665
14666 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
14667
14668         * MessageBox.cs: Prevent potential NRE exception.
14669         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
14670
14671 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
14672
14673         * MessageBox.cs: Calculate the owner of a messagebox, also make
14674           it topmost. Fixes #78753
14675
14676 2006-08-14  Chris Toshok  <toshok@ximian.com>
14677
14678         * XplatUIX11.cs: A couple of fixes so that metacity will let us
14679         programmatically move windows.  first, set the PPosition hint as
14680         well as the USPosition hint.  Second include some code from pdb
14681         that sets the window type to NORMAL when we set the transient for
14682         hint.  This is because, in the absence of a window type, metacity
14683         thinks any window with TransientFor set is a dialog, and refuses
14684         to let us move it programmatically.  fascists.
14685
14686 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
14687
14688         * XplatUIX11.cs: When setting normal hints, take into consideration
14689           an different hints previously set so we don't delete them (fixes #78866)
14690
14691 2006-08-12  Chris Toshok  <toshok@ximian.com>
14692
14693         * ToolBarButton.cs: make Layout return a boolean, if something to
14694         do with the button's layout changed.
14695
14696         * ToolBar.cs:
14697         - add another parameter to Redraw, @force, which all existing
14698           calls set to true.
14699         - make the Layout function return a boolean which is true if the
14700           layout has actually changed.  Redraw now uses this (and @force)
14701           to determine when to invalidate.  At present the only place
14702           where @force can be false is the call from OnResize, when
14703           background_image == null.  So, resizing a toolbar when the
14704           layout doesn't change results in no drawing.
14705
14706 2006-08-12  Chris Toshok  <toshok@ximian.com>
14707
14708         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
14709         the VScrollBar and HScrollbar reversed.  oops.
14710
14711         * DataGrid.cs: fix the logic that assigns sizes to the implicit
14712         scrollbars.  we were assigning them twice (once in
14713         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
14714         therefore causing two scrollbar resizes (and redraws?) to happen
14715         per grid resize.
14716
14717 2006-08-12  Chris Toshok  <toshok@ximian.com>
14718
14719         * ToolBarButton.cs: redraw the entire button if the theme tells us
14720         to.
14721
14722         * Theme.cs: add ToolBarInvalidateEntireButton.
14723
14724         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
14725         buttons, just the border.
14726
14727         * ThemeNice.cs: redraw the entire toolbar button since we need to
14728         draw the highlight image.
14729
14730         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
14731         we need to redraw the entire button (not just the border).
14732
14733 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
14734
14735         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
14736           for vertical bars. Fixes the mismatches shown by #78513
14737
14738 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
14739
14740         * FileDialog.cs: If a saved/remembered path doesn't exist
14741           anymore, fall back to "Desktop".
14742
14743 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
14744
14745         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
14746           parent. It's apparently legal to not have one
14747         * XplatUIX11.cs:
14748           - SetZOrder: Don't try to set Z-Order on an unmapped window
14749           - CreateWindow: 0,0 are legal coordinates for a window. don't move
14750             it unless the coordinates are negative
14751
14752 2006-08-10  Mike Kestner  <mkestner@novell.com>
14753
14754         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
14755         when setting to null per msdn docs.  Fixes #78854.
14756
14757 2006-08-10  Chris Toshok  <toshok@ximian.com>
14758
14759         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
14760         flickering by setting a clip rectangle on the Graphics when we
14761         need to redraw just a particular menuitem.  Also, rename "OnClick"
14762         to "OnMouseDown" to reflect what it actually is.
14763         
14764         * Form.cs: track the OnMouseDown change.
14765
14766 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
14767
14768         * CommonDialog.cs: Properly inherit the CreateParams from the form
14769           and only change what we need. Fixes #78865
14770
14771 2006-08-10  Chris Toshok  <toshok@ximian.com>
14772
14773         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
14774         flickering in flat mode (and most of the flickering in general) by
14775         only invalidating the button border (and not the entire rectangle)
14776         when the state changes.  A couple of cases still flicker:
14777         ToggleButtons, and the dropdown arrow case when the user mouse
14778         ups.
14779
14780 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
14781
14782         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
14783           for german keyboards. Numlock state shouldn't affect the behaviour
14784           of the Del key. Fixes bug #78291.
14785
14786 2006-08-10  Chris Toshok  <toshok@ximian.com>
14787
14788         * ListControl.cs: remove the items.Clear line from BindDataItems,
14789         as this is the first thing done by both subclasses in their
14790         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
14791         passed -1, refresh the list.  This gets databinding working when
14792         the datasource is set on the list before the datasource is
14793         populated (as in wf-apps/ReportBuilder.)
14794
14795         * ComboBox.cs: remove the argument to BindDataItems.  This call
14796         should really go away, and be initiated by the ListControl code.
14797
14798         * ListBox.cs: same.
14799
14800 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
14801
14802         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
14803           if no data is in the document when the control is displayed
14804
14805 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
14806
14807         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
14808           yes (fixes #78806)
14809         * TextControl.cs: 
14810           - PositionCaret: Allow positioning of caret but don't call methods 
14811             requiring a handle if the window isn't created yet
14812           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
14813           - owner_HandleCreated: Don't position the caret, just update it's 
14814             location. User might have already set a different position
14815
14816 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
14817
14818         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
14819           windows. Screws up the returned coordinates for child windows. 
14820           Fixes #78825. I'm hoping this doesn't break something, since the
14821           code was explicitly put in 8 months ago, but no bug was attached.
14822           Menus still seem to work properly.
14823
14824 2006-08-08  Chris Toshok  <toshok@ximian.com>
14825
14826         * DataGrid.cs: make BeginInit/EndInit actually do what they're
14827         supposed to do - delay data binding until the EndInit call.  Also,
14828         make the table style collection's CollectionChangeAction.Refresh
14829         work properly.
14830
14831         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
14832         (with action = Refresh) when a consituent table's MappingName is
14833         changed.
14834
14835 2006-08-08  Chris Toshok  <toshok@ximian.com>
14836
14837         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
14838         Invalidate, since changing the text can change the size of the all
14839         toolbar buttons.
14840
14841 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
14842
14843         * Form.cs (AddOwnedForm): Still need to add the form to our listif
14844           we don't have it yet
14845
14846 2006-08-08  Chris Toshok  <toshok@ximian.com>
14847
14848         * PrintControllerWithStatusDialog.cs: don't .Close() the status
14849         dialog, as this causes X errors later on, since we actually
14850         destroy the window.  Instead, .Hide() it.
14851
14852 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
14853
14854         * ComboBox.cs: Added focus reflection for popup window
14855         * XplatUIX11.cs: 
14856           - Removed transient setting for non-app windows for now, not sure it
14857             was needed
14858           - Fixed logic checking if we have captions when deciding 
14859             override_redirect, WS_CAPTION is two bits and a 0 check was not
14860             sufficient
14861           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
14862             complicated
14863         * Form.cs: 
14864           - AddOwnedForm: Don't just add the form to the list, call the property
14865             to ensure the driver is informed about the ownership as well
14866           - CreateHandle: Set the TopMost status in the driver if we have an owner
14867         * XplatUI.cs: Fixed debug statement
14868
14869 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
14870         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
14871           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
14872           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
14873           TrackBarRenderer.cs: Make constructor private.
14874         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
14875         * ProfessionalColorTable.cs: Make properties virtual.
14876
14877 2006-08-06  Duncan Mak  <duncan@novell.com>
14878
14879         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
14880         is not changing.
14881
14882 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
14883         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
14884           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
14885           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
14886           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
14887           Initial import of new 2.0 classes.
14888
14889 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
14890         * Application.cs: Add 2.0 VisualStyles properties.
14891
14892 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
14893         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
14894           XplatUIX11.cs: Create property to allow access to existing private
14895           variable "themes_enabled"
14896
14897 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14898
14899         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
14900         file size, as otherwise our class libraries fail using windows. Fixes
14901         bug #78759.
14902
14903 2006-08-04  Jackson Harper  <jackson@ximian.com>
14904
14905         * Form.cs:
14906         * XplatUIX11.cs: Move the toolwindow window manager creation into
14907         the X11 driver, this way on win32 we can let windows create/handle
14908         the toolwindows.
14909
14910 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14911
14912         * PrintDialog.cs: Remove some redundant checks, add some others,
14913         clean some code, and move the focus to the text boxes when the
14914         values are incorrect.
14915
14916 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
14917
14918         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
14919
14920 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
14921
14922         * NumericUpDown.cs: Setting the Minimum and Maximum is now
14923           handled correctly. Fixes bug #79001.
14924
14925 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14926
14927         * PrintDialog.cs: The "Copies" numeric up down must have
14928         set the Minimum property to 1; only if the value is bigger
14929         than 1, activate "Collate" check box. This is the behaviour of .Net.
14930         Also modify the Document elements only if it is not null.
14931
14932 2006-08-03  Jackson Harper  <jackson@ximian.com>
14933
14934         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
14935         length. (We have a larger array then actual node count).
14936                 
14937 2006-08-03  Jackson Harper  <jackson@ximian.com>
14938
14939         * ComboBox.cs: Don't show selection by default.
14940         - The SelectAll isn't needed here, since the focus code should do
14941         that
14942         - DDL style lists to manual selection drawing, so when they
14943         get/lose focus they have to invalidate.
14944
14945 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
14946
14947         * TextBoxBase.cs: Don't always show all selections by default.
14948
14949 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
14950         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
14951           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
14952           Fixed various typos.
14953
14954 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
14955
14956         * Control.cs: Removing the controls in a ControlCollection with
14957           Clear now hides the controls as expected. Fixes bug #78804. 
14958
14959 2006-08-03  Jackson Harper  <jackson@ximian.com>
14960
14961         * Control.cs: Revert previous focus patch, it breaks reflector.
14962
14963 2006-08-03  Jackson Harper  <jackson@ximian.com>
14964
14965         * ComboBox.cs: Cleanup selection and focus with the combobox.
14966         This also eliminates some duplicated keyboard code, since now
14967         everything is handled by the main class.
14968         - Make list selection work on mouse up instead of down, to match
14969         MS.
14970
14971 2006-08-02  Jackson Harper  <jackson@ximian.com>
14972
14973         * Control.cs: Setting focus needs to go through the whole
14974         selection mechanism.
14975
14976 2006-08-02  Chris Toshok  <toshok@ximian.com>
14977
14978         * PrintPreviewDialog.cs: change MinimumSize to use
14979         base.MinimumSize so it works.
14980
14981 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
14982
14983         * TextControl.cs:
14984           - UpdateCaret: Added sanity check in case caret isn't defined yet
14985           - Line.Delete: Now updating selection and caret markers if we're
14986             transfering a node (Properly fixes #78323)
14987           - SetSelectionEnd: Added sanity check
14988         * TextBoxBase.cs: Removed broken attempt to fix #78323
14989
14990 2006-08-01  Chris Toshok  <toshok@ximian.com>
14991
14992         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
14993         Close() call is handled in Form, not here.
14994
14995 2006-08-01  Chris Toshok  <toshok@ximian.com>
14996
14997         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
14998         layout/rendering.
14999
15000         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
15001         for sizes < 100% zoom.  The code now aggressively attempts to keep
15002         from calling document.Print (), and tries not to use the scaling
15003         g.DrawImage whenever possible (it still does if you scale to >
15004         100%, since usually that involves huge images).
15005
15006         * PrintPreviewControl.cs: hook up the close button.
15007
15008 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
15009         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
15010           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
15011           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
15012           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
15013           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
15014           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
15015           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
15016           Removed [Serializable] for 2.0 Event Handlers.
15017
15018 2006-07-31  Jackson Harper  <jackson@ximian.com>
15019
15020         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
15021         * TextControl.cs: Uncomment out the body of this method.
15022
15023 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
15024
15025         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
15026           standard cursors.
15027
15028 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
15029
15030         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
15031           that embed TextBox and need selections visible even if textbox is not
15032           focused to enforce that behaviour.
15033         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
15034           selection drawing
15035
15036 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
15037
15038         * TextControl.cs:
15039           - Added new SetSelectionStart/SetSelectionEnd overloads
15040           - Fixed viewport width assignment to be accurate
15041           - Adjusted alignment line shift calculations to allow cursor on right
15042             aligned lines to be always visible at the right border (like MS)
15043         * TextBoxBase.cs:
15044           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
15045           - TextBoxBase_SizeChanged: recalculating canvas on size changes
15046           - CalculateScrollBars: Use ViewPort size instead of window size, to
15047             properly consider space occupied by the border and scrollbars 
15048             (Fixes #78661)
15049           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
15050             calculations; no longer leaves artifacts
15051           - CaretMoved: Adjusted window scrolling to match MS and fixed several
15052             calculation bugs (Still missing right/center align calculations)
15053
15054 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
15055
15056         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
15057           use of both scroll rect and clip rect, as they do the same.
15058
15059 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
15060
15061         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
15062           in the event handler (fixes #78912)
15063
15064 2006-07-31  Chris Toshok  <toshok@ximian.com>
15065
15066         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
15067         grid.ListManager.Count, since grid.ListManager might be null.
15068         This of course begs the question "why are we drawing rows for a
15069         grid with no list manager (and therefor no rows)?"  Fixes the
15070         crash in bug #78929.
15071
15072 2006-07-31  Chris Toshok  <toshok@ximian.com>
15073
15074         * RelatedPropertyManager.cs: Don't always chain up to the parent
15075         ctor.  instead, call SetDataSource if the parent's position is !=
15076         -1.  Fixes the crash in #78822.
15077
15078 2006-07-31  Chris Toshok  <toshok@ximian.com>
15079
15080         * DataGrid.cs (get_ListManager): use field instead of property
15081         accessors for datasource and datamember.
15082         (RowsCount): make internal again.
15083         (OnMouseDown): end edits before resizing columns/rows.
15084         (OnMouseUp): restart edits after resizing columns/rows.
15085
15086 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
15087
15088         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
15089           This fixes the situation where the last set cursor is displayed
15090           whenever the mouse is over scrollbars.
15091
15092 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15093
15094         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
15095         Document properties, as well as initial values.
15096
15097 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
15098
15099         * XplatUIWin32.cs (SetBorderStyle): Setting both border
15100           and ClientEdge results in a 3-pixel border, which is
15101           wrong.
15102
15103 2006-07-28  Jackson Harper  <jackson@ximian.com>
15104
15105         * TreeNodeCollection.cs: Fix the clear method.
15106         - Fix the Shrink also
15107
15108 2006-07-27  Jackson Harper  <jackson@ximian.com>
15109
15110         * TreeView.cs: Make sure the visible order is computed when we
15111         attempt to size the scrollbars (for trees that mess with the
15112         scrolling when they shouldn't.
15113         - Make sure to give the scrollbars valid values.
15114
15115 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
15116
15117         * XplatUIX11.cs: Move motion compression code to where it
15118           has less performance impact
15119
15120 2006-07-26  Jackson Harper  <jackson@ximian.com>
15121
15122         * UpDownBase.cs: When the control is selected make the child
15123         controls non selectable, so that a click on them won't do a
15124         focus/unfocus cycle.
15125         - Don't give focus to the text box when the spinner is selected.
15126         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
15127
15128 2006-07-26  Chris Toshok  <toshok@ximian.com>
15129
15130         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
15131         satisfied with this solution.  If the bitmaps are small, we should
15132         just cache them in the PrintPreviewDialog and draw them here.
15133         Also, the layout is broken for the 2-up and 3-up cases.
15134
15135         * Theme.cs: add PrintPReviewControlPaint.
15136
15137         * PrintPreviewDialog.cs: first pass implementation.
15138
15139         * PrintPreviewControl.cs: first pass implementation.  No
15140         scrollbars yet.
15141
15142         * PrintDialog.cs: only validate fields if that particular portion
15143         of the UI is enabled.  Also, set the document's controller to a
15144         PrintControllerWithStatusDialog wrapping the document's print
15145         controller.
15146
15147         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
15148         bring up a SaveFileDialog (i hope we don't want to match the
15149         behavior of the crappy windows file entry) and set the
15150         PrinterSettings.PrintFileName accordingly.
15151
15152 2006-07-26  Jackson Harper  <jackson@ximian.com>
15153
15154         * ContainerControl.cs: Add a field that disables auto selecting
15155         the next control in a container when the container is activated.
15156         * UpDownBase.cs: Don't select the text box when the up down is
15157         selected.
15158
15159 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
15160
15161         * XEventQueue.cs: Added methods for peeking (used for compression
15162           of successive events)
15163         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
15164           mouse move events (fixes #78732)
15165
15166 2006-07-25  Jackson Harper  <jackson@ximian.com>
15167
15168         * UpDownBase.cs: Use an internal class for the textbox so that we
15169         can control focus.  the updown control should always have focus,
15170         if either the text area or the buttons are clicked.
15171         - Send the key messages to the textbox, since it never actually
15172         has focus
15173         - Activate and decativate the textbox caret.
15174
15175 2006-07-24  Jackson Harper  <jackson@ximian.com>
15176
15177         * Control.cs: Use the directed select when selecting a control,
15178         this way the container controls override will get called and the
15179         whole ActiveControl chain will get triggered.  TODO: probably need
15180         to make sure this gets done everywhere instead of the old
15181         Select(Control).
15182         * ContainerControl.cs: Implement the directed Select method to
15183         find and activate the correct child control.    
15184         
15185 2006-07-22  Mike Kestner  <mkestner@novell.com>
15186
15187         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
15188         menu handling code so that clicks without a grab work too.
15189         [Fixes #78914]
15190
15191 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
15192
15193         * FileDialog.cs: Enable the BackButton when dirstack has one element.
15194           Added some small optimizations.
15195
15196 2006-07-21  Matt Hargett  <matt@use.net>
15197
15198         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
15199
15200 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
15201
15202         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
15203           tests pass and match MS in some strange border cases.
15204
15205 2006-07-21  Chris Toshok  <toshok@ximian.com>
15206
15207         * ThemeWin32Classic.cs: handle drawing of the relation links and
15208         parent row buttons.
15209
15210         * Theme.cs: change args to DataGridPaintParentRow.
15211
15212         * DataGrid.cs: Don't use controls for the relation links and
15213         parent buttons, so we have to handle all their interactions in
15214         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
15215         when we're navigating through child tables, so we can reinstate
15216         selection, expanded state, current cell, etc.
15217
15218 2006-07-20  Chris Toshok  <toshok@ximian.com>
15219
15220         * ToolBar.cs: When we redraw a button, for whatever reason,
15221         there's no reason to redraw the entire toolbar.  Also, don't call
15222         Control.Refresh from within Redraw, as it's much heavier than
15223         Invalidate (which is really what we want).
15224
15225 2006-07-20  Chris Toshok  <toshok@ximian.com>
15226
15227         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
15228         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
15229         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
15230         traces from within a debug IBindingList datasource
15231         (in mono/winforms/datagrid) for *days*, I've finally gotten things
15232         to work in a similar fashion.
15233
15234 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15235
15236         * ListBox.cs: Don't call Sort () when setting 
15237         the Sorted property to false (avoid an unnecessary sort).
15238
15239 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15240
15241         * ListControl.cs: DataSource should throw an ArgumentException
15242         instead of a normal exception when the argument is not of the 
15243         correct type.
15244
15245 2006-07-20  Mike Kestner  <mkestner@novell.com>
15246
15247         * Control.cs: add InternalPreProcessMessage to allow us to steal
15248         key events before MWF gets its paws on them.  Adapted from a
15249         suggestion by eno.
15250         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
15251         up/down/left/right navigation. Override the new internal control
15252         method to steal the events since they never make it to WndProc.
15253         * ToolBarButton.cs: don't worry about pushed when setting hilight
15254         since the drawing code prefers pushed to hilight. Invalidate on 
15255         Hilight changes. Fixes #78547 and #78525.
15256
15257 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
15258
15259         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
15260           the canvas size. Fixes #78868
15261
15262 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
15263
15264         * Splitter.cs: Track requested split position until first layout
15265           is performed. Fixes #78871
15266
15267 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
15268
15269         * Application.cs: Removed code that forces 1.x for the version
15270           number if the version started with 0. Not sure why that code was
15271           there and I couldn't find any bugs that indicated we needed it.
15272           Fixes #78869
15273
15274 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
15275
15276         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
15277           ResetDefaults(), just write some output to the console until it's
15278           implemented. Fixes bug #78907 for now. Eliminated two warnings.
15279
15280 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
15281
15282         * PropertyGridView.cs: set StartPosition of drop down forms
15283         so they appear in correct initial spot.  Fixes #78190.
15284
15285 2006-07-19  Mike Kestner  <mkestner@novell.com>
15286
15287         * ThemeWin32Classic.cs: use parent background color when drawing
15288         flat toolbars.  Restructure the conditionals to make sure non-flat
15289         non-Divider toolbars are filled too.  Fixes #78837.
15290
15291 2006-07-19  Mike Kestner  <mkestner@novell.com>
15292
15293         * ListBox.cs: Sort on collection changes even if the handle
15294         isn't created yet.  Fixes #78813.
15295
15296 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15297
15298         * ListControl.cs: DisplayMember should never be null,
15299         and now we assign String.Empty when null is passed to it (this
15300         is the .Net way).
15301
15302 2006-07-17  Mike Kestner  <mkestner@novell.com>
15303
15304         * ListViewItem.cs: restructure Font and subitem Font handling 
15305         to hold a specific font and refer back to owner on null.
15306         Fixes #78761.
15307
15308 2006-07-17  Mike Kestner  <mkestner@novell.com>
15309
15310         * ToolBar.cs: bandaid for side-effect of previous patch which was
15311         discarding explicit heights for non-AutoSize toolbars.  Need to
15312         extend my format tester to deal with AutoSize=false. Fixes #78864.
15313
15314 2006-07-15  Jackson Harper  <jackson@ximian.com>
15315
15316         * LabelEditTextBox.cs:
15317         * TreeView.cs: Use a new LabelEdit class for node editing, this
15318         class automatically 'closes' itself when it gets the enter key or
15319         loses focus.
15320         - Use the client rectangle when setting the trees scrollbars, so
15321         border style is taken into account.
15322         
15323 2006-07-14  Jackson Harper  <jackson@ximian.com>
15324
15325         * TreeNode.cs:
15326         * TreeView.cs: Make the editing work similar to MSs, firing the
15327         events correctly and ending edits correctly.
15328
15329 2006-07-14  Mike Kestner  <mkestner@novell.com>
15330
15331         * ToolBarButton.cs:
15332         * ToolBar.cs: layout restructuring and redraw enhancements to support
15333         formatting changes gracefully, like setting TextAlign, ImageList, 
15334         ButtonSize, and Appearance.  Handles explicit button sizing quirks
15335         of the MS controls.  Things like flat toolbars ignoring button size
15336         but becoming constant sized at the largest button's size.  Normal
15337         toolbars with an image set cannot be shrunk smaller than the image,
15338         but text can be clipped/ignored.
15339         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
15340         is zero.  Seems like DrawString should be smart enough to not put
15341         anything on screen though. Also trim labels and ellipsize at the char
15342         boundary, not word.
15343         Fixes #78711 and #78483.
15344
15345 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
15346
15347         * FolderBrowserDialog.cs: Disable "New Folder" button and
15348           "New Folder" contextmenu menuitem if a folder like "My Computer"
15349           is selected.
15350
15351 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
15352
15353         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
15354         * FolderBrowserDialog.cs:
15355           - Use MWFConfig to store and read size and position settings
15356           - Added code to create a new folder (button or context menu).
15357             Use TreeView labeledit to change the name of the new folder.
15358
15359 2006-07-14  Jackson Harper  <jackson@ximian.com>
15360
15361         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
15362         when the tree is scrolled we end editing.
15363
15364 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
15365
15366         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
15367           Down arrows
15368
15369 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
15370
15371         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
15372         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
15373         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
15374         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
15375         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
15376         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
15377         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
15378         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
15379         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
15380         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
15381         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
15382         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
15383         ListViewItemSelectionChangedEventHandler.cs,
15384         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
15385         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
15386         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
15387         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
15388         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
15389         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
15390         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
15391         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
15392         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
15393         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
15394         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
15395         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
15396         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
15397         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
15398         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
15399         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
15400         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
15401         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
15402         WebBrowserNavigatingEventHandler.cs, 
15403         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
15404
15405 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
15406
15407         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
15408         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
15409         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
15410         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
15411         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
15412         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
15413         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
15414         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
15415         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
15416         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
15417         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
15418         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
15419         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
15420         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
15421         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
15422         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
15423         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
15424         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
15425         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
15426         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
15427         ListViewItemStates.cs, MaskFormat.cs: Added
15428
15429 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
15430
15431         * PropertyGridView.cs: Fix keyboard navigation of drop down.
15432         Patch from eno for bug 78558.
15433         
15434 2006-07-13  Jackson Harper  <jackson@ximian.com>
15435
15436         * TreeView.cs: When an edit is finished make sure that the
15437         selected node is visible.
15438         - When setting the top/bottom use the scrollbars is_visible, so
15439         everything will be set correctly even if the tree isn't visible
15440         yet.
15441
15442 2006-07-13  Jackson Harper  <jackson@ximian.com>
15443
15444         * ComboBox.cs: Revert the item->index part of my previous patch.
15445         * TreeView.cs: Use LostFocus instead of Leave for detecting when
15446         the edit box has lost focus (duh).
15447         - Just make the edit box not visible when we get return, that will
15448         take the focus, which will call EndEdit
15449         * TreeNode.cs When we start editing, notify the treeview.
15450
15451 2006-07-12  Jackson Harper  <jackson@ximian.com>
15452
15453         * ComboBox.cs: Clear out old items before setting the item list.
15454         This prevents databound controls from having their items added
15455         twice.
15456         - Switch the combobox to use indices whereever possible instead of
15457         using Item's.  This allows usto navigate through lists that have
15458         more then one item with the same string value (ie a, b, b, a).
15459         - Scroll the listboxes scrollbar when a non visible item is
15460         highlighted
15461         - Allow keypress to cycle through all the possible values. For
15462         example if you have b1, b2, b3 and hold down the B key all the
15463         values will be cycled through.
15464         
15465 2006-07-12  Jackson Harper  <jackson@ximian.com>
15466
15467         * TextBoxBase.cs:
15468         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
15469         this using the internal methods.
15470         * Control.cs: Add OnGotFocusInternal.  A new method that allows
15471         controls to "override" OnGotFocus and change focus behavior if
15472         needed.
15473         - Same thing for LostFocus
15474         * ComboBox.cs: Pass off focus to the text control properly.
15475
15476 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
15477
15478         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
15479         * FolderBrowserDialog.cs: Almost a complete rewrite.
15480           - Better support for Environment.Specialfolders
15481           - Added support for MWFVFS
15482           - Made setting SelectedPath work
15483
15484 2006-07-12  Jackson Harper  <jackson@ximian.com>
15485
15486         * Control.cs: Optimze getting all the controls.
15487
15488 2006-07-11  Jackson Harper  <jackson@ximian.com>
15489
15490         * ContainerControl.cs: Override SETFOCUS in the container control,
15491         so that it is not selected on mouse click.
15492
15493 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
15494
15495         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
15496           Hopefully we will have a better way once all of focus is complete.
15497
15498 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
15499
15500         * ThemeWin32Classic.cs: Commented out some debug code and fixed
15501           a compile error with csc.
15502
15503 2006-07-11  Jackson Harper  <jackson@ximian.com>
15504
15505         * Control.cs: When hiding a control only select the next control
15506         if the current control was focused.
15507         - Don't handle enter/leave when setting/killing focus, this is
15508         done by the container control.
15509         - Remove is_selected, it's not needed anymore.
15510         - Add utility methods for selecting a child control, and for
15511         firing the Enter/Leave events.
15512         * ContainerControl.cs: When a control is activated fire the
15513         enter/leave events.
15514         - Don't wrap when processing the tab key, so that focus can be
15515         moved outside of the container.
15516         - Use the correct active control
15517
15518 2006-07-11  Jackson Harper  <jackson@ximian.com>
15519
15520         * ComboBox.cs: Remove some debug code that was blinding me.
15521         * UpDownBase.cs: These controls actually aren't implicit, they are
15522         visible to the user.
15523
15524 2006-07-10  Chris Toshok  <toshok@ximian.com>
15525
15526         * DataGrid.cs: move back to the is_adding boolean field.  god i
15527         hate this is_editing/is_adding/is_changing stuff.
15528
15529 2006-07-10  Chris Toshok  <toshok@ximian.com>
15530
15531         * DataGridTableStyle.cs: just check if the property type is bool.
15532         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
15533         Don't use CanRenderType.
15534
15535         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
15536         if our text == NullText.  Remove CanRenderType.
15537
15538         * DataGridBoolColumn.cs: nuke CanRenderType.
15539
15540         * DataGrid.cs: reenable some code to end the current edit inside
15541         of set_CurrentCell.  This fixes the other 1.1.16 regression.
15542         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
15543         Also, remove the visible_row_count arg from CalcRowHeaders, since
15544         we don't need to worry about the actual height of the area.
15545
15546 2006-07-10  Chris Toshok  <toshok@ximian.com>
15547
15548         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
15549         mode, just return.
15550
15551         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
15552         the real sense of the IsInEditOrNavigateMode property (true =
15553         navigate, false = edit).  Also, update OnKeyPress to reflect this.
15554
15555         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
15556         column style exists, we still need to set its property descriptor
15557         to match up with our list manager.
15558
15559 2006-07-10  Chris Toshok  <toshok@ximian.com>
15560
15561         * ThemeWin32Classic.cs: implement the new row/header painting
15562         approach.  The parent row painting will likely go away and
15563         replaced with label controls, but the rest seems to work ok (and
15564         efficiently).
15565
15566         * Theme.cs: change the way we draw datagrid rows.  we don't draw
15567         the row headers as a block now.  Instead we draw them in the
15568         normal draw-row loop.  Add some calls for drawing parent rows and
15569         relation rows.
15570
15571         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
15572         a default table style.  Set the defaults from ThemeEngine.Current,
15573         not SystemColors.  Fix lots of misc issues with property setters.
15574
15575         * DataGrid.cs: move loads of style information out of this class
15576         as it's being duplicated with DataGridTableStyle.  keep track of a
15577         special DataGridTableStyle for the properties we used to mirror
15578         here.  Switch all the style properties to access this table style
15579         instead of instance fields of this class.  Also add a internal
15580         class to represent parent rows (more needs to be stored here, like
15581         the selection state from the parent table, as well as the
15582         expansion state.)  Also, for datasources with relations, do the
15583         right thing for collapse/expand, and add support for the
15584         navigation/parent row buttons.
15585
15586         Lastly, fix the crash in the 1.1.16 build.
15587
15588         * GridTableStylesCollection.cs: make the explicit interface
15589         implementations call the class's methods as opposed to duplicating
15590         them.
15591
15592         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
15593         0 so the text doesn't jump around when we move the cursor.
15594
15595 2006-07-10  Jackson Harper  <jackson@ximian.com>
15596
15597         * TextBoxBase.cs:
15598         * ListBox.cs: Match MS's ToString (this makes debugging focus
15599         stuff infinitely easier).
15600
15601 2006-07-10  Jackson Harper  <jackson@ximian.com>
15602
15603         * Control.cs (SelectNextControl): When checking the control's
15604         parent use this instead of ctrl.parent so that null can be passed
15605         to SelectNextControl. (I have unit tests for this).
15606         - Remove unused var.
15607
15608 2006-07-10  Chris Toshok  <toshok@ximian.com>
15609
15610         * CurrencyManager.cs: correct one regression, the removal of the
15611         finalType field.  Also, add a MonoTODO on CanAddRows, implement
15612         Refresh() correctly, and fix some event emission in
15613         ListChangedHandler.
15614
15615 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
15616
15617         * FileDialog.cs: Don't use brackets for new folders if they exist
15618           under *nix. Instead use -(number of existing folders +1).
15619
15620 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
15621
15622         * FileDialog.cs:
15623           - Fixed really nasty bug #78771
15624           - Don't block the whole GUI when reading directories with a lot of
15625             entries. Use an other thread instead and call BeginInvoke to
15626             update the ListView in MWFFileView
15627
15628 2006-07-07  Chris Toshok  <toshok@ximian.com>
15629
15630         * Control.cs (Dispose): release any Capture when disposing.
15631
15632 2006-07-07  Chris Toshok  <toshok@ximian.com>
15633
15634         * LinkLabel.cs (Select): if we chain up to the parent, set
15635         focused_index to -1 so we'll search for the first available link
15636         the next time the user tabs into us.  Also, if the direction is
15637         backward and focused_index == -1, start the search from the last
15638         element.
15639
15640 2006-07-07  Chris Toshok  <toshok@ximian.com>
15641
15642         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
15643         is beyond the end of the text, don't do anything.
15644         (CreateLinkPieces): set our ControlStyles.Selectable based on
15645         whether or not we have any links.
15646         (Link.Invalidate): use a loop instead of foreach.
15647         (Link.set_Start): null out owner.sorted_links so it'll be
15648         recreated by CreateLinkPieces.
15649
15650 2006-07-06  Chris Toshok  <toshok@ximian.com>
15651
15652         * LinkLabel.cs: revert the SetStyle change.
15653
15654 2006-07-06  Chris Toshok  <toshok@ximian.com>
15655
15656         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
15657         (OnEnableChanged): s/Refresh/Invalidate
15658         (OnGotFocus): if we have a focused index already, refocus it (so
15659         if we mouse out/in to the window it'll focus the right link).
15660         (OnKeyDown): move the tab handling out of here.
15661         (OnLostFocus): don't set focused_index to -1, so we can refocus it
15662         when we lose focus.
15663         (OnMouseDown): don't Capture here - Control handles it.  Also,
15664         focus the active link.
15665         (OnMouseUp): don't deal with Capture.
15666         (OnPaintBackgroundInternal): remove.
15667         (OnTextAlignChanged): CreateLinkPieces before calling the
15668         superclass's method.
15669         (OnTextChanged): call CreateLinkPieces before calling superclass's
15670         method.
15671         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
15672         move around.
15673         (Select): implement this, moving the selection between different
15674         links, and call parent.SelectNextControl if we don't have another
15675         link to focus in the given direction.
15676         (CreateLinkPieces): call Invalidate instead of Refresh.
15677         
15678 2006-07-06  Chris Toshok  <toshok@ximian.com>
15679
15680         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
15681         new LinkLabel internals.
15682
15683         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
15684         over pieces looking for active/focused/etc links.  also, deal with
15685         runs of text (and links) with embedded \n's in them, and use
15686         MeasureCharacterRanges instead of MeasureString to figure out the
15687         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
15688         two-step.
15689
15690 2006-07-04  Jackson Harper  <jackson@ximian.com>
15691
15692         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
15693         XKB or key auto repeat, do it manually.  Without key auto repeat,
15694         when a key is held down we get key press, key release, key press,
15695         key release, ... with auto repeat we get key press, key press, key
15696         press ..., and then a release when the key is actually released.
15697
15698 2006-07-03  Jackson Harper  <jackson@ximian.com>
15699
15700         * TabControl.cs:
15701         * ThemeWin32Classic.cs: Tabs do not obey normal background color
15702         rules, they are always control color regardless of the background
15703         color.
15704
15705 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
15706
15707         * FileDialog.cs: Added internal class MWFConfig.
15708           Removed Registry support and replaced it with support for the new
15709           MWFConfig class. See MWFConfig comments for more information.
15710
15711 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
15712
15713         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
15714           rectangle. Added some patches from eno from bug #78490 and fixed
15715           the arrow position for small up and down CPDrawScrollButtons.
15716
15717 2006-06-30  Jackson Harper  <jackson@ximian.com>
15718
15719         * InternalWindowManager.cs: Remove some debug code.
15720         * Form.cs: When an MdiParent is set to null, the window is
15721         "detatched" and becomes a normal window.
15722         * MdiClient.cs: Don't bring the new child form to the front until
15723         it is activated (setting it as active does this), this makes the
15724         previously active forms titlebar get redrawn as inactive.
15725
15726 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
15727
15728         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
15729           with later controls
15730
15731 2006-06-29  Mike Kestner  <mkestner@novell.com>
15732
15733         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
15734         arrow in keynav state.  Fixes #78682.
15735
15736 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
15737
15738         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
15739           order (fixes #78393)
15740
15741 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
15742
15743         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
15744           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
15745           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
15746           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
15747           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
15748           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
15749           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
15750           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
15751           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
15752           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
15753           enumerations (FlagsAttribute, SerializableAttribute, added/removed
15754           values)
15755
15756 2006-06-28  Mike Kestner  <mkestner@novell.com>
15757
15758         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
15759
15760 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
15761
15762         * PropertyGrid.cs,
15763           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
15764           item lines from other area (It also makes BackColor consistent and
15765           compatible with .NET). Fixed bug #78564.
15766
15767 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
15768
15769         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
15770         Patch from Eno for #78555.
15771
15772 2006-06-27  Chris Toshok  <toshok@ximian.com>
15773
15774         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
15775
15776         * DataGridColumnStyle.cs: same.
15777
15778         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
15779         
15780         * DataGridDrawingLogic.cs: nuke.
15781
15782 2006-06-27  Chris Toshok  <toshok@ximian.com>
15783
15784         * DataGridTableStyle.cs: clean up the constructors, and build the
15785         list of child relations for this table.  I have no idea if this is
15786         where we should be doing it (it probably isn't), but since we're
15787         already iterating over the properties..
15788
15789         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
15790         struct and array for keeping track of row information, similar to
15791         what's shown in a hack on
15792         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
15793
15794         * Theme.cs: be consistent about the naming of DataGrid methods,
15795         prefering ColumnWidths and RowHeights over columnsWidths and
15796         RowsHeights.
15797
15798         * ThemeWin32Classic.cs: same, and also add support for variable
15799         sized rows (and the +/- expansion icons for related rows).
15800
15801 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
15802
15803         * TextBoxBase.cs: Applied Eno's patch from #78660
15804
15805 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
15806
15807         * Form.cs (ScaleCore): We don't want to scale our form if it's
15808           state is minimized or maximized, but we still need to scale our
15809           child windows. Also, added try/finally block to ensure layout
15810           gets reset (Fixes #78697)
15811
15812 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
15813
15814         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
15815
15816 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
15817
15818         * Form.cs: Fixed c+p error and added check to resize form if minimum
15819           size is bigger than current size (Fixes #78709)
15820
15821 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
15822
15823         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
15824
15825 2006-06-26  Mike Kestner  <mkestner@novell.com>
15826
15827         * ComboBox.cs: only do Keypress handling in the combo when there  
15828         are items in the collection. Fixes #78710.
15829
15830 2006-06-26  Chris Toshok  <toshok@ximian.com>
15831
15832         * Binding.cs: make this work bi-directionally.  also, clear up
15833         other mixups between Push/Pull Data (e.g. we're supposed to pull
15834         data when validating).
15835
15836         * BindingManagerBase.cs: trim some fully qualified collection
15837         types.
15838
15839         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
15840
15841 2006-06-23  Chris Toshok  <toshok@ximian.com>
15842
15843         * PropertyManager.cs: It appears (according to the unit tests)
15844         that PropertyManager doesn't use
15845         PropertyDescriptor.AddValueChanged to track propery value changes
15846         in its datasource, but uses the same scheme as Binding, where it
15847         looks for a <Property>Changed event and binds to it.
15848
15849         Also, according to the docs, IsSuspended always returns false for
15850         a property manager with a non-null datasource.
15851
15852 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
15853
15854         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
15855           need to update the actual DialogResult. (Fixes #78613)
15856
15857 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
15858
15859         * Form.cs (ShowDialog): Release any captures before running the
15860           new message pump (fixes #78680)
15861
15862 2006-06-22  Mike Kestner  <mkestner@novell.com>
15863
15864         * ListView.cs: Layout column widths properly in details mode even 
15865         if HeaderStyle.None is set.  Fixes #78691.
15866
15867 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
15868
15869         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
15870
15871 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
15872
15873         * Control.cs (ContainsFocus): Using new driver method to get focused
15874           window, instead of trying to use internal tracking var, which can
15875           recursion issues (Fixes #78685)
15876         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
15877           XplatUIWin32.cs: Added GetFocus method to return focused window
15878
15879 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15880
15881         * ColorDialog.cs: when the mouse button is pressed inside the color
15882         matrix, don't let the cursor move out of it until the button is
15883         released, which is the behavior on windows. Changed 'colours' by
15884         'colors' to use the same word consistently.
15885
15886 2006-06-21  Chris Toshok  <toshok@ximian.com>
15887
15888         * DataGrid.cs: add in some basic navigation stuff (navigating to a
15889         child relation and back, using a stack).  Also, remove
15890         GetDataSource and the code that calls it - it's not needed.  Also,
15891         track CurrencyManager.ListName's removal.
15892
15893 2006-06-21  Chris Toshok  <toshok@ximian.com>
15894
15895         * CurrencyManager.cs: push some of the original type checking from
15896         BindingContext.CreateBindingManager to here, and remove some of
15897         the finalType stuff.  Need more tests to make sure I've got the
15898         ListName part right, and we might need more in SetDataSource.
15899
15900         * PropertyManager.cs: add a ctor that takes just the datasource,
15901         and no property name.  Make SetDataSource work with a null
15902         property_name, and make Current return the data_source if the
15903         property descriptor is null.  this makes 'string foo = "hi";
15904         BindingContext[foo].Current' return "hi" as it should.
15905
15906         * RelatedCurrencyManager.cs: make this code more generic - there's
15907         no reason the parent manager has to be CurrencyManager, and
15908         there's no reason to pass the DataRelation.  It suffices to use a
15909         BindingManagerBase and PropetyDescriptor.
15910
15911         * RelatedPropertyManager.cs: make a similar change here.
15912         
15913         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
15914         flower I knew it could be.
15915
15916 2006-06-20  Chris Toshok  <toshok@ximian.com>
15917
15918         * PropertyManager.cs: the PropertyChangedHandler is invoked when
15919         data in the source has changed and we need to update the control,
15920         so s/PullData/PushData.
15921
15922         * CurrencyManager.cs: Refresh is meant to update the control from
15923         data in the datasource.  So, s/PullData/PushData.
15924
15925         * BindingContext.cs: add more ugliness (we weren't handling the
15926         case where data_source = DataTable and data_member = column_name).
15927
15928         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
15929         from the perspective of the datasource.  PullData pulls from the
15930         control, PushData pushes to the control.
15931
15932 2006-06-20  Chris Toshok  <toshok@ximian.com>
15933
15934         * BindingContext.cs: rewrite the CreateBindingManager code to
15935         handle navigation paths more or less properly.  This could
15936         definitely stand some more work, in particular to push the
15937         recursion up to the toplevel.  But that relies on fixes in other
15938         places (System.Data comes to mind).
15939
15940         Also, move to a flat hashtable (and encode the twolevel nature of
15941         the dictionary into the hash key).  This lets us implement the
15942         IEnumerable.GetEnumerator method.
15943
15944         * RelatedCurrencyManager.cs: new class.  Update our view based on
15945         our relation and our parent CurrencyManager's position.
15946
15947         * CurrencyManager.cs: split out some logic from the ctor into
15948         SetView, so it can be called from the new RelatedCurrencyManager
15949         subclass.
15950
15951         * RelatedPropertyManager.cs: new class.  Update our datasource
15952         based on the position of our parent CurrencyManager.
15953
15954         * PropertyManager.cs: split out some logic from the ctor into
15955         SetDataSource, so it can be called from the new RelatedDataSource
15956         subclass.  Also, make the Current getter return the value
15957         of the PropertyDescriptor, not the data_source.
15958
15959         * Binding.cs: no need to duplicate the string splitting code here.
15960
15961 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
15962
15963         * Control.cs:
15964           - set_Enabled: OnEnabledChanged is not called if the inherited state 
15965             of the control is not altered, even though  we might be changing the
15966             internal state of the control (#78458)
15967           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
15968             OnEnabledChanged, to allow easy altering of any child window state
15969           - OnEnabledChanged: Added code to enable/disable driver window state
15970           - OnParentEnabledChanged: Instead of firing the event, call 
15971             OnEnabledChanged, which will fire the event and also a) set driver
15972             window state and pass the enabled state to any grandchildren (#78458)
15973
15974 2006-06-19  Jackson Harper  <jackson@ximian.com>
15975
15976         * InternalWindowManager.cs: We don't set the cursor explicitly
15977         thats done via the response to NCHITTESTs.
15978         - Don't need to adjust for titlebar heights anymore, the
15979         coordinates are coming in the correct coordinates now (see peters
15980         last patch).
15981
15982
15983 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
15984
15985         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
15986           being translated relative to whole window, instead of client window.
15987           That caused broken offsets on mouseclick (and caused gas for our
15988           InternalWindowManager)
15989
15990 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
15991
15992         * TextControl.cs:
15993           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
15994           - Undo(): Added replay of cursor move on DeleteChars action; added
15995             calling Undo() again if a recorded cursor move is invalid (to
15996             ensure that some action is performed on Undo)
15997         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
15998
15999 2006-06-16  Jackson Harper  <jackson@ximian.com>
16000
16001         * MdiClient.cs: Instead of just sizing maximized windows when
16002         there is a resize we also have to adjust the Y of minimized
16003         windows, so they stay pinned to the bottom of the mdi container.
16004         - Eliminate separate tracking of the active control, we can just
16005         get this from the controls collection.
16006         - Paint the decorations for the newly activated titlebar so we get
16007         a pretty blue bar.
16008         * InternalWindowManager.cs:
16009         * ThemeWin32Classic.cs: Minimized windows get all three buttons
16010         even if they are a tool window.
16011         
16012 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
16013
16014         * TextControl.cs (Undo): Handle non-existent cursor locations in the
16015           undo buffer, these can happen when text was deleted and the cursor
16016           was recorded first. Since we will also have a recorded cursor
16017           after the delete this is not an issue. (Fixes #78651)
16018
16019 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
16020
16021         * AccessibleObject.cs: Remove dependence on Control.is_selected;
16022           instead properly track control states internally (allows us to
16023           remove is_selected from Control)
16024
16025 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16026
16027         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
16028         whose width is not a multiple of 8.
16029
16030 2006-06-13  Jackson Harper  <jackson@ximian.com>
16031
16032         * MdiClient.cs:  Only maximize the next child if the current one
16033         is maximized.
16034
16035 2006-06-13  Chris Toshok  <toshok@ximian.com>
16036
16037         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
16038         modified.  Also, guard against grid or grid_drawing being null in
16039         Invalidate.
16040
16041         * DataGrid.cs: Reformat tons of getters/setters.  In the
16042         DataMember setter, just call SetNewDataSource instead of
16043         duplicating some of its functionality.  In SetNewDataSource, don't
16044         check ListManager for null, since the property getter creates the
16045         object if needed.
16046
16047         * DataGridTableStyle.cs: don't set TableStyle or call
16048         SetDataGridInternal on the column here, it's done in
16049         GridColumnStylesCollection.Add.
16050
16051         * GridColumnStylesCollection.cs: fix all the explicit interface
16052         implementations to just call our methods.  Nuke AddInternal() and
16053         move the body of it to Add().  Also, add a call to
16054         column.SetDataGridInternal to Add().
16055
16056         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
16057         base()+duplicate code.  Also, use the Format property instead of
16058         format to generate an Invalidate ala MS.  Lastly, create the
16059         textbox here, unconditionally.
16060         (set_Format): call Invalidate.
16061         (get_TextBox): no need to call EnsureTextBox.
16062         (Commit): remove the message box.
16063         (Edit) remove the call to EnsureTextBox.
16064         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
16065         (EnterNullValue): no need to check textbox for null.
16066         (HideEditBox): no need to check textbox for null.
16067         (SetDataGridInColumn): add the textbox to the grid's controls.
16068         (EnsureTextBox): nuke.
16069         
16070 2006-06-13  Jackson Harper  <jackson@ximian.com>
16071
16072         * MdiWindowManager.cs: Hook up to the maximized menus paint event
16073         and redraw the buttons when needed. Unhook when the window is
16074         unmaximized.
16075         * MainMenu.cs: Add an internal Paint event, the mdi window manager
16076         needs this so that it can redraw its buttons when the menu is
16077         repainted.
16078         * InternalWindowManager.cs:
16079         * Form.cs: The method order has changed for DrawMaximizedButtons,
16080         so that it can be a PaintEventHandler.
16081         
16082 2006-06-13  Jackson Harper  <jackson@ximian.com>
16083
16084         * MdiClient.cs: When we close a maximized mdi window, the next mdi
16085         window is activated and maximized, even if it wasn't before.
16086         - When  a new window is activated repaint the decorations of the
16087         old one, so that it no longer has the Active "look" (the blue
16088         titlebar).
16089         * InternalWindowManager.cs: Open up CreateButtons to base classes
16090         so they can recreate the buttons on state changes.
16091         - If a window is maximized give it all three buttons
16092         * MdiWindowManager.cs: Create the titlebar buttons when the state
16093         is changed, this is needed because a toolwindow will not have all
16094         three buttons until it is maximized.
16095
16096 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
16097
16098         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
16099           Fixed bug #78609.
16100
16101 2006-06-12  Jackson Harper  <jackson@ximian.com>
16102
16103         * KeysConverter.cs: Make sure we handle the Ctrl special case
16104         if its the only key.
16105         
16106 2006-06-12  Jackson Harper  <jackson@ximian.com>
16107
16108         * Theme.cs: Add a method to get the size of a managed window
16109         toolbar button.
16110         * InternalWindowManager.cs: Remove the ButtonSize property, this
16111         should be retrieved from the theme.
16112         * MdiWindowManager.cs: Get the button size from the theme
16113         * ThemeWin32Classic.cs: Make the method to get the managed window
16114         titlebar button size public.
16115         - Handle the different button sizes of maximized toolwindows
16116         (should match any maximized window).
16117         - Get the titlebar height from the theme, not the WM (which gets
16118         it from the theme).
16119
16120 2006-06-12  Jackson Harper  <jackson@ximian.com>
16121
16122         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
16123         event down to the mdi window manager.
16124         - Expose some extra stuff to base classes
16125         - Make sure to end the Capture on an NC Mouse up, so that we can
16126         get double clicks properly, and the sizing doens't stick.
16127         - When doing PointToClient contain it in the workable desktop
16128         area, this prevents windows from changing size when the cursor is
16129         pulled outside of the working area while sizing.
16130         * MdiWindowManager.cs: When we get a double click maximize the
16131         window.
16132         - Reset the cursor after handling mode changes.
16133
16134 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
16135
16136         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
16137           current desktop, instead of just assuming a 0, 0 origin. This
16138           is needed for our internal window manager, to know the top
16139           margin of the desktop
16140
16141 2006-06-12  Chris Toshok  <toshok@ximian.com>
16142
16143         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
16144         we need this to get rid of the selected background in the bool
16145         column.
16146         (CancelEditing): move the ConcedeFocus call to above the Abort
16147         call.  Also, set is_changing to false and invalidate the row
16148         header if we were changing before.
16149         (ProcessKeyPreviewInternal): remove, since noone outside this
16150         class calls it anymore.  Roll the code into ProcessKeyPreview.
16151         (EndEdit): remove the internal version.
16152         (InvalidateCurrentRowHeader): make private.
16153
16154         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
16155         Keys.Escape handling (and with it the last call to
16156         DataGrid.EndEdit from outside the class.)
16157
16158
16159 2006-06-12  Chris Toshok  <toshok@ximian.com>
16160
16161         * DataGridTextBox.cs (.ctor): isedit defaults to false.
16162         (OnKeyPress): set isedit to true.
16163         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
16164         already handled by the grid.
16165
16166         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
16167         right.  ugh.
16168         (set_DataSource): SetDataSource always returns true, so stop
16169         putting it in an if statement.
16170         (EndEdit): get rid of some {}'s
16171         (ProcessGridKey): return true in case Keys.Escape.
16172         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
16173         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
16174         PositionChanged, stopped connecting to CurrentChanged.
16175         (GetDataSource): simplify this a bunch.
16176         (SetDataSource): change return type from bool to void.
16177         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
16178         to this, and make sure we don't set ListManager.Position inside
16179         set_CurrentCell.
16180         (OnListManagerItemChanged): if we're passed an actual index,
16181         redraw that row.
16182
16183         * CurrencyManager.cs (set_Position): don't call PullData here.
16184
16185 2006-06-09  Jackson Harper  <jackson@ximian.com>
16186
16187         * TreeNode.cs:  Recalculate the visible order before doing the
16188         Expand/Collapse Below calls, because those calls generate an
16189         expose.
16190         - Reduce calls to the TreeView property, which is mildly expensive
16191         by using a local var.
16192         * Form.cs: Layout the MDI child windows when creating the parent
16193         form.
16194         - Don't use the internal constructor anymore
16195         * MdiClient.cs: use the parent form width/height (if available)
16196         when laying out the child windows, we do this because the
16197         mdiclient isn't docked yet when the initial layout is done.
16198         - Don't need an internal constructor anymore.
16199
16200 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16201
16202         * FileDialog.cs: handle access errors when trying to create a folder
16203         or changing to a directory. No need to initialize out parameters.
16204
16205 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16206
16207         * FileDialog.cs: Append a number when creating a new folder if the
16208           folder already exists (use parenthesis instead of square brackets)
16209
16210 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16211
16212         * FileDialog.cs:
16213           - Disabled registry support for windows and added better registry
16214             error checking for other systems (need to investigate why it
16215             works perfectly on my system)
16216           - If a folder already exist show an error MessageBox instead of
16217             trying to create an indexed name.
16218           - Fixed a non intentional typo.
16219
16220 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16221
16222         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
16223
16224 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16225
16226         * FileDialog.cs: When creating a new folder don't crash if the
16227           folder already exists.
16228
16229 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16230
16231         * FileDialog.cs: Allmost a complete rewrite.
16232           - added a "virtual" file system that handles the differences
16233             between unix and windows file systems (especially the directory
16234             structure). Moved most of the directory and file handling code
16235             into the vfs.
16236             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
16237             UnixFileSystem and FSEntry.
16238           - Recently used folder/directory, size, location and used file names
16239             (file name ComboBox) are now stored in the registry and get read
16240             before the dialog shows up (fixes part 6 of bug #78446).
16241           - Creation of new folders/directories is now possible (context menu
16242             or ToolBar). Added TextEntryDialog for this that fills in the gap
16243             until ListView.LabelEdit works.
16244           - Fixed cursor handling (bug #78527) and focus handling for
16245             PopupButtonPanel
16246           - Various "Search in" ComboBox enhancements. The content of the
16247             dropdown listbox now almost matches ms.
16248           - Changed the behaviour when the user switches to SpecialFolder
16249             Recent to show the ListView in View.Details.
16250           - Beside using the ToolBar to change the View property of the
16251             file ListView it is now possible to use the context menu too.
16252
16253 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16254
16255         * ComboBox.cs: Don't create a new ObjectCollection when an item
16256           gets inserted. Just insert the item in the existing object_items
16257           ArrayList.
16258
16259 2006-06-08  Jackson Harper  <jackson@ximian.com>
16260
16261         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
16262         that the treeview and root node checks are done also, this fixes a
16263         regression i caused in the unit tests.
16264
16265 2006-06-07  Wade Berrier <wberrier@novell.com> 
16266
16267         * RichTextBox.cs: More ISO8859-1 -> unicode
16268
16269 2006-06-07  Mike Kestner  <mkestner@novell.com>
16270
16271         * ComboBox.cs : use items to hold highlight/selection so that
16272         collection insertions don't require synchronization.
16273
16274 2006-06-07  Jackson Harper  <jackson@ximian.com>
16275
16276         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
16277         routine.  We now always keep the sized edge at the cursor instead
16278         of computing movement and adjusting rects.  There is one buglet
16279         with this method though when the cursor is moved over area that
16280         the window can not expand too (such as the toolbars on the desktop).
16281
16282 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16283
16284         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
16285         here. Fixes crash on startup in AlbumSurfer.
16286
16287 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
16288
16289         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
16290           values
16291
16292 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16293
16294         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
16295         statement to avoid calling XNextEvent which will block if another thread
16296         took the event that we were expecting. Fixes bug #78605.
16297
16298 2006-06-07  Mike Kestner  <mkestner@novell.com>
16299
16300         * ListView.cs : isolated checkbox clicking from the selection logic.
16301         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
16302
16303 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16304
16305         * Form.cs: Check that the value passed to Form.DialogResult
16306         is a valid enum value.
16307
16308 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16309
16310         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
16311         Computer'. Clicking it in the network view goes to 'My Computer'.
16312         Added CIFS filesystem type. Display the mount point of filesystems.
16313         Avoid duplicate mount points (happens for me with CIFS);
16314
16315 2006-06-06  Jackson Harper  <jackson@ximian.com>
16316
16317         * InternalWindowManager.cs: Draw the maximized windows buttons
16318         when resizing.
16319
16320 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16321
16322         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
16323         all other dialogs. Fixes bug #78585.
16324
16325 2006-06-06  Mike Kestner  <mkestner@novell.com>
16326
16327         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
16328         Only invalidate checkbox on checkstate changes to avoid flicker.
16329         * ListBox.cs : avoid unselect/select when clicking selected item.
16330         avoid reselection flicker for already multiselected items.
16331         Fixes #78382.
16332
16333 2006-06-06  Jackson Harper  <jackson@ximian.com>
16334
16335         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
16336         the parent form so that the menu is removed if needed.
16337
16338 2006-06-06  Mike Kestner  <mkestner@novell.com>
16339
16340         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
16341         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
16342
16343 2006-06-06  Mike Kestner  <mkestner@novell.com>
16344
16345         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
16346
16347
16348 2006-06-06  Jackson Harper  <jackson@ximian.com>
16349
16350         * Control.cs: Use the property (instead of the field) to get the
16351         default cursor so it is instantiated correctly.
16352         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
16353         resizes so we need to manually repaint the window decorations here.
16354         - Set the titlebar button locations as soon as they are created,
16355         otherwise they are not set correctly on win32.
16356         
16357 2006-06-06  Chris Toshok  <toshok@ximian.com>
16358
16359         * CurrencyManager.cs (set_Position): call PullData before
16360         OnCurrentChanged.
16361         (AddNew): after calling IBindingList.AddNew, update our
16362         listposition, and call OnCurrentChanged/OnPositionChanged (without
16363         calling PullData).
16364         (OnCurrentChanged): remove the call to PullData from here.
16365         (OnItemChanged): remove the call to PushData from here.
16366         (OnPositionChanged): change the test from == null to != null to
16367         match the other methods.
16368         (ListChangedHandler): the grossest part of the patch.  Implement
16369         this such that it passes the unit tests in CurrencyManagerTest and
16370         the output more or less matches that of MS's implementation.
16371  
16372 2006-06-06  Mike Kestner  <mkestner@novell.com>
16373
16374         * ListView.cs : only update check state on single click.
16375         * ThemeWin32Classic.cs : fix focus drawing for details view without
16376         fullrowselect.  Fixes #78454.
16377         * XplatUIX11.cs : fix for double click emission.
16378
16379 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16380
16381         * PropertyGridView.cs : Applied Atsushi's patch to fix
16382         font dialog bug  (#78197).
16383
16384 2006-06-05  Jackson Harper  <jackson@ximian.com>
16385
16386         * TreeNode.cs: Compute the next node for expanding/collapsing
16387         correctly. We now factor in nodes without a NextNode
16388         correctly. (Fixes somes cases in nunit-gui).
16389         * InternalWindowManager.cs: Set the bounds when updating the
16390         virtual position of a tool window.
16391         
16392 2006-06-05  Chris Toshok  <toshok@ximian.com>
16393
16394         * DataGrid.cs: rename cached_currencymgr to list_manager.
16395         (set_CurrentCell): move SetCurrentCell code here, and clean it up
16396         some.
16397         (CurrentRow, CurrentColumn): single accessors so we can make the
16398         cursor movement code a lot easier to understand.
16399         (CurrentRowIndex): implement this in terms of CurrentRow.
16400         (BeginEdit): clean this up a bit.
16401         (CancelEditing): sort out the is_editing/is_changing/is_adding
16402         stuff a little.
16403         (EndEdit): minor changes.
16404         (OnKeyDown): add a comment about a (most likely) unnecessary
16405         check.
16406         (OnMouseDown): cancel editing when we click on a row header.  And
16407         use the CurrentRow setter, not CurrentCell.
16408         (ProcessDialogKey): directly call ProcessGridKey.
16409         (UpdateSelectionAfterCursorMove): factor out this common block of
16410         code (it's used everywhere that we move the cursor by updating row
16411         or column).
16412         (ProcessGridKey): pretty substantial overhaul.  Use the
16413         CurrentRow/CurrentColumn properties to make the code a lot more
16414         readable.  Only use the CurrentCell property when we have to
16415         modify both row and column at once.  Tab behavior is still broken,
16416         and Delete is untested.
16417         (Select): if we have no selected rows, set selection_start to
16418         @row.
16419         (EditCurrentCell): rename EditCell this.  It was only ever invoked
16420         with CurrentCell as the arg, so drop the arg and rename it.
16421
16422         * DataGridColumnStyle.cs: clean up the constructors a little, and
16423         drop CommonConstructor().
16424
16425         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
16426         actually get notified when the user hits it.
16427         (ProcessKeyMessage): *substantially* simplify this method.
16428         There's no reason (that I can see) for the textbox to be making
16429         calls into the datagrid at all.  Remove all of them but the ones
16430         for Enter handling.  those will take some more work.
16431
16432         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
16433         calling HideEditBox.
16434         (HideEditBox): if we have an active textbox, render it invisible
16435         without causing a re-layout of the datagrid.
16436
16437 2006-06-05  Mike Kestner  <mkestner@novell.com>
16438
16439         * ListView.cs : fix NRE crasher when focuseditem is cleared by
16440         collection changes by resetting it to Items[0].  Fixes #78587.
16441
16442 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16443
16444         * MessageBox.cs: if the height of the text is larger than the icon_size,
16445         use that. Fixes bug #78575.
16446
16447 2006-06-05  Jackson Harper  <jackson@ximian.com>
16448
16449         * TreeView.cs: Fix line drawing when scrolling.  To do this each
16450         node is basically responsible for drawing its entire horizontal
16451         area.  When drawing a node it draws its parent node lines if
16452         needed.
16453         - Adjust the clip area to the viewport rectangle
16454         - Fix Left/Right key handling to match MS. (It expand/collapses
16455         and moves to parents/first child but does not move selection to
16456         sibling nodes).
16457         - Fix SetTop to work with new bound calculation code
16458         - When scrollbars are no longer needed we need to reset scrolling
16459         vars and recalculate the visible order so the redraw is correct
16460         * TreeNode.cs: We can't expand/collapse nodes with no children.
16461
16462 2006-06-03  John Luke  <john.luke@gmail.com> 
16463
16464         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
16465         so the colors work without dev packages
16466         
16467 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
16468
16469         * Control.cs 
16470           - Select: Implemented to just use activate. Seems to match MS 
16471             behaviour closest. Documented to only do actual control walking 
16472             based on it's parameters if in a container control so I moved 
16473             the code there.
16474           - Removed selection check logic from our internal Select() method
16475         * ContainerControl.cs:
16476           - Select: Moved selection logic from Control here, since MS documents
16477             that containers obey the bool arguments. No longer calling base
16478
16479 2006-06-02  Jackson Harper  <jackson@ximian.com>
16480
16481         * TreeView.cs: If the selected node isn't changed when we get
16482         focus update the previously selected node so that we see the
16483         selection box.
16484
16485 2006-06-02  Mike Kestner  <mkestner@novell.com>
16486
16487         * ComboBox.cs: restructure grab and general mouse event handling.
16488         Make the composite control raise mouse events like it was a single
16489         control for leaves/enters/motion/up/down events.  fix dropdown list
16490         coordinate mangling and refactor it into the scrollbar subclass to
16491         reduce code duplication.  Fixes #78282 #78361 and #78457.
16492
16493 2006-06-02  Mike Kestner  <mkestner@novell.com>
16494
16495         * ScrollBar.cs: remove Capture setting/clearing, as it happens
16496         automatically in the Control.WndProc.
16497
16498 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16499
16500         * FileDialog.cs: fix crash when running SharpChess, which sets the
16501         FilterIndex to 2 with only one Filter.
16502
16503 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16504
16505         * ToolBar.cs: add SizeSpecified property.
16506         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
16507         try to figure out our real size, otherwise fallback to what the
16508         container says.
16509
16510 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
16511
16512         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
16513         * Control.cs (WndProc): MS always calls the DefWndProc to pass
16514           up the event
16515
16516 2006-06-01  Mike Kestner  <mkestner@novell.com>
16517
16518         * ListView.cs: revamp the focus management in ListView.  It still
16519         causes churn of LostFocus/GotFocus emissions on clicks, but it's
16520         better than not handling focus at all.  Will revisit when pdb feels
16521         the general focus handling is solid.  Fixes #78526.
16522
16523 2006-06-01  Jackson Harper  <jackson@ximian.com>
16524
16525         * TreeView.cs: Set the default border style in the constructor.
16526         - Move painting to use OnPaintInternal instead of capturing
16527         WM_PAINT, this is the correct way of doing things
16528         - UpdateBelow shouldn't invalidate the scrollbar area
16529         - Cap the top on update below in case the node was above the top
16530         of the viewport rectangle.
16531         - ExpandBelow and Collapse below need to obey Begin/End Update.
16532         * TreeNode.cs: Make is_expanded internal so the treenode
16533         collection can change it without firing the whole event chain.
16534         * TreeNodeCollection.cs: When clearing all the child nodes make
16535         sure to recalc the visible order.
16536         - Improve algo for remove the top node
16537
16538 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
16539
16540         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
16541           SendMessage directly calling window procedures, which in turn might
16542           call SetFocus()
16543
16544 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
16545
16546         * Control.cs: Don't handle WM_SETFOCUS if the same window already
16547           has focus (works around X11 sending a FocusIn after our SetFocus)
16548         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
16549
16550 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
16551
16552         * Mime.cs: Fix for the NET_2_0 build.
16553           NameValueCollection needs StringComparer now.
16554
16555 2006-05-31  Chris Toshok  <toshok@ximian.com>
16556
16557         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
16558         return (via an out parameter) the starting X of the column.
16559         (UpdateVisibleColumn): track change to FromPixelToColumn.
16560         (HitTest): add a ColumnResize case here.
16561         (DrawResizeLine): new function, probably poorly named.
16562
16563         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
16564         only need to keep one reference.
16565         (set_ListManager): same.
16566         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
16567         Also, add support for HitTestType.ColumnResize.
16568         (OnMouseMove): add column resize behavior here, and change the
16569         cursor to the correct one as we move around the datagrid.
16570         (OnMouseUp): terminate the column resize if we're resizing.
16571         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
16572         for the current cell.
16573         (ConnectListManagerEvents): use cached_currencymgr.
16574         (DisconnectListManagerEvents): fill this in, using
16575         cached_currencymgr.
16576         (SetCurrentCell): remove cached_currencymgr_events handling.
16577         (SetDataMember): only call DisconnectListManagerEvents if
16578         cached_currencymgr is != null.
16579         (SetDataSource): same.
16580         (OnListManagerCurrentChanged): cached_currencymgr_events ->
16581         cached_currencymgr.
16582
16583 2006-05-31  Jackson Harper  <jackson@ximian.com>
16584
16585         * BindingManagerBase.cs: Remove somedebug code that creeped into
16586         SVN.
16587         * TreeNode.cs: We get the indent level dynamically right now, so
16588         don't track it as a member.
16589         * TreeNodeCollection.cs: Make sure all nodes added to the list
16590         have parents, treeviews/topnodes setup properly.
16591         - Don't attempt to track indent level.
16592
16593 2006-05-30  Jackson Harper  <jackson@ximian.com>
16594
16595         * BindingContext.cs: Create the currency manager tables here.
16596         This allows us to more easily create null tables (when bad data
16597         members are used), and more easily create related currency
16598         managers.
16599         * CurrencyManager.cs: All the table creation stuff is done by the
16600         binding context now.
16601         - Current should throw an exception if listposition is -1.
16602         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
16603         been bound yet.
16604
16605 2006-05-30  Mike Kestner  <mkestner@novell.com>
16606
16607         * ListView.cs: allow reexpansion of zero-width column headers.
16608         Fixes #78528.
16609
16610 2006-05-28  Chris Toshok  <toshok@ximian.com>
16611
16612         * CurrencyManager.cs (get_Current): after the late binding
16613         listposition = -1 fix, we need to guard against it here and return
16614         null, otherwise we raise an exception (which is swallowed
16615         elsewhere, and breaks datagrid databinding.)
16616
16617 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
16618
16619         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
16620           than WM_SYSKEY, don't throw if get something unexpected (#78507)
16621
16622 2006-05-26  Jackson Harper  <jackson@ximian.com>
16623
16624         * ControlPaint.cs:
16625         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
16626         values, it's faster and it's all we care about (we don't care if
16627         the names aren't equal).
16628         * KeyboardLayouts.cs: Eliminate some dead code.
16629         - Lazy init things
16630         * X11Keyboard.cs: Lazy init keyboard detection.
16631         - Cleanup access modifiers a little.
16632
16633 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
16634
16635         * XplatUIX11.cs: Once again, attempting to get layout just right.
16636
16637 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
16638
16639         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
16640           the sizes of each link section, that will result in sizes that
16641           match DrawString's layout (Fixes #78391)
16642
16643 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
16644
16645         * FileDialog.cs: If AddExtension property is true autocomplete the
16646           extensions in SaveFileDialog correctly. Fixes bug #78453.
16647           Set MyNetwork and MyComputer to "C:\" for windows. This should
16648           fix part 8 of bug #78446 for now.
16649
16650 2006-05-26  Chris Toshok  <toshok@ximian.com>
16651
16652         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
16653         invalidate the current row header if we need to, but presumably
16654         we'll invalidate the row corrsponding to the bounds or
16655         editingControl.
16656         (GridHScrolled): switch back to this method, as it's part of the
16657         public api.  *sigh*.
16658         (GridVScrolled): same.
16659         (OnMouseWheel): hack up something that more or less works.  Call
16660         GridHScrolled/GridVScrolled directly, instead of duplicating much
16661         of their code here.
16662         (EnsureCellVisibility): reinstate a bunch of this code, since we
16663         can't just set the scrollbar Value and expect to do all the work
16664         in the ValueChanged handler.  Also, Call Update() after scrolling
16665         in one direction so the other XplatX11.ScrollWindow call has the
16666         proper stuff in the proper places.
16667         (EditCell): set is_editing to true before calling .Edit.
16668
16669         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
16670         don't bother comparing first.
16671         (OnKeyPress): call grid.ColumnStartedEditing before calling
16672         base.OnKeyPress.  this will set is_changing and invalidate the row
16673         header if necessary.
16674         (ProcessKeyMessage): for WM_CHAR messages, call
16675         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
16676         and WM_KEYDOWN.
16677         
16678         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
16679         it's done in the DataGrid.
16680         (NextState): call grid.ColumnStartedEditing, which takes care of
16681         invalidating the row header (and setting is_changing).
16682
16683         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
16684         here.  it's done in the DataGrid.
16685
16686 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16687
16688         * Control.cs: allow changing the cursor when the mouse position is
16689         out of bounds but Capture is set.
16690         * LinkLabel.cs: handle the case when the mouse button is pressed on the
16691         linklabel but released somewhere else.
16692
16693 2006-05-25  Jackson Harper  <jackson@ximian.com>
16694
16695         * TreeView.cs: When we get focus if there is no selected node make
16696         it the top node
16697         - Remove some uneeded setup code from Draw.
16698         * TreeNodeCollection.cs: If the tree doesn't have a top node when
16699         a new node is inserted make the new node the top.
16700         * XplatUIX11.cs:
16701         * Timer.cs: Use Utc time so that no local time zone stuff needs to
16702         be used (should be faster).
16703         
16704 2006-05-25  Chris Toshok  <toshok@ximian.com>
16705
16706         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
16707         problem with the last commit.
16708
16709 2006-05-25  Chris Toshok  <toshok@ximian.com>
16710
16711         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
16712         need the invalidate call here, while scrolling right-to-left via
16713         the left arrow key (i.e. moving the editing cell while scrolling).
16714
16715         * DataGrid.cs (.ctor): remove the initialization of
16716         ctrl_pressed/shift_pressed.  We no longer track them using key
16717         up/down handlers, but by using Control.ModifierKeys.  Also, switch
16718         to using ValueChanged handlers on the scrollbars instead of
16719         Scrolled event handlers.  This simplifies a bunch of the scrolling
16720         code.
16721         (GridHValueChanged): rename from GridHScrolled, and change it to
16722         work with the new event args.
16723         (GridVValueChanged): same.
16724         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
16725         (OnMouseWheel): actually scroll the datagrid.  Don't change the
16726         selected cell.
16727         (ProcessGridKey): correct all the keyboard navigation stuff I
16728         could find.  Ctrl up/down/left/right/home/end work now.
16729         (EnsureCellVisibility): correct method name spelling.  Also,
16730         simplify this a touch by not explicitly calling the
16731         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
16732         scrollbar value.
16733         (OnKeyUpDG): no need for this method now.
16734         
16735 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16736
16737         * LinkLabel.cs: display the OverrideCursor when hovering the label.
16738         Fixes bug #78392.
16739
16740 2006-05-25  Chris Toshok  <toshok@ximian.com>
16741
16742         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
16743         r61019.
16744
16745 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
16746
16747         * Application.cs: Moved setting of is_modal and closing to before
16748           we create the control, to allow the event handlers called as a
16749           result of creation affect closing. Also removed Gonzalo's previous
16750           change to setting DialogResult, the behaviour has been moved to 
16751           Form.ShowDialog()
16752         * Form.cs: 
16753           - ShowDialog(): Removed explicit creation of the form, let RunLoop
16754             handle it instead
16755           - ShowDialog(): If no dialog result is set, we need to return Cancel
16756           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
16757             the close is cancelled
16758
16759 2006-05-25  Jackson Harper  <jackson@ximian.com>
16760
16761         * StatusBar.cs: We only need to update the sizes of the other
16762         panels when we have auto size contents.  Also we are only updating
16763         the contents of the panel, not the borders, so compensate for the
16764         border width (TODO: get this width from the theme somehow).
16765         * TreeView.cs: Scrollable is true by default
16766         - Use invalidate instead of refresh where needed
16767         - Factor the scrollable value into scrollbar updating
16768         - Update the scrollbars if the Scrollable property is altered
16769         - Update the selected node if its ImageIndex is changed
16770         - Handle null nodes in UpdateNode (mainly so we don't have to
16771         check if selected is null when updating it
16772         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
16773         are factored into the visible count
16774         - Use VisibleCount for clarity in the code
16775         - When the font is changed we need to recurse through all the
16776         nodes and invalidate their sizes
16777         
16778 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16779
16780         * Application.cs: set the DialogResult to fixed when the main form is
16781         hidden or destroyed while being modal.
16782
16783 2006-05-25  Miguel de Icaza  <miguel@novell.com>
16784
16785         * Theme.cs: Use Tangoified messagebox icons. 
16786
16787         (GetSizedResourceImage): Also cope with width = 0 and do not
16788         trigger a warning in that case (0 means "give me your icon from
16789         the resouce, no special size needed).
16790
16791 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
16792
16793         * Application.cs: Leave runloop if the the main modal form is 
16794           hidden (fixes #78484)
16795
16796 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
16797
16798         * BindingContext.cs : reject null datasource in Contains() and
16799           Item[].
16800         * CurrencyManager.cs : check data_member validity when data_source
16801           is dataset. When it is late binding, the initial position is -1.
16802
16803 2006-05-24  Jackson Harper  <jackson@ximian.com>
16804
16805         * TreeNodeCollection.cs: Dont't recalculate the visible order on
16806         inserted nodes that aren't visible.  This changes the
16807         max_visible_order which confuses scrollbar settings.
16808         - Use the enumerator to get the prev node instead of duplicating
16809         code.
16810         * TreeView.cs: Use new method for setting scrollbar values
16811         - Don't set the bounds every time the scrollbar is updated
16812         - When updating below the root node use an invalidate instead of a
16813         refresh to prevent the child controls (scrollbars) from being
16814         refreshed. (UpdateBelow still needs to be reworked anyways).
16815         - Reenable SetBottom now that visible orders are set correctly,
16816         added some debug code incase we ever get bad values there again.
16817         - Set the scrollbar max to 2 less then the max value, this
16818         compensates for the max value being one above the node count, and
16819         for scrollbars adding one extra "notch".
16820         - When drawing image nodes if there is an imagelist we draw the
16821         first image in the list if the supplied image index is out of the
16822         image list's bounds.
16823         
16824 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
16825
16826         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
16827           we receive a size change from the WM (Fixes #78503)
16828
16829 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
16830
16831         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
16832           rectangle (Fixes #78501)
16833
16834 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
16835
16836         * ButtonBase.cs: 
16837           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
16838             as a bitfield.
16839           - Fixed MouseMove to no longer switch pressed state unless the left
16840             mouse button is pressed. Atsushi provided the original patch (#78485)
16841           
16842 2006-05-24  Jackson Harper  <jackson@ximian.com>
16843
16844         * ScrollBar.cs: New internal methods that allow us to change a
16845         couple values on the scrollbar (the most common case is maximum
16846         and large change) without getting multiple invalidates.
16847
16848 2006-05-24  Chris Toshok  <toshok@ximian.com>
16849
16850         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
16851         (Edit): save off the original state in oldState, and set
16852         grid.is_editing to true.
16853         (OnKeyDown): abort editing if escape is pressed.  also, call
16854         NextState if space is pressed.
16855         (OnMouseDown): call NextState.
16856         (NextState): factor out shared code from OnKeyDown and OnMouseDown
16857         here.  Also, only invalidate the row header once (on the initial
16858         is_changing switch) to save on redraws.
16859
16860 2006-05-24  Chris Toshok  <toshok@ximian.com>
16861
16862         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
16863         if the value in the cell is different than it was before.  This
16864         keeps us from triggering a layout when we move around a datarid
16865         with a highlighted cell.
16866         (Edit): suspend layout when creating/positining the text box, and
16867         resume passing false so we don't ever actually re-layout.
16868         (ReleaseHostedControl): same.
16869         (EnsureTextBox): reformat slightly, and set WordWrap to false.
16870
16871         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
16872         control-key sequences should go to the datagrid - remove that
16873         lock.  Also, modify the conditions under which we move between
16874         cells when moving the cursor within a cell, and remove the "this"
16875         and "base" from field accesses.  We weren't even consistent, given
16876         they all were in the base class.
16877
16878 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
16879
16880         * Binding.cs : (.ctor)
16881           An obvious NRE fix for BindingTest.CtorNullTest().
16882
16883 2006-05-23  Chris Toshok  <toshok@ximian.com>
16884
16885         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
16886         them between lines.  This fixes some quirks editing cells in the
16887         datagrid.
16888
16889 2006-05-23  Jackson Harper  <jackson@ximian.com>
16890
16891         * TreeView.cs: Use begin/end update when doing expand/collapse all
16892         so that we don't get flicker on the scrollbar.
16893
16894 2006-05-23  Jackson Harper  <jackson@ximian.com>
16895
16896         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
16897         treenode calculations to be independant of the painting code. To
16898         do this nodes track a visible order which is calculated by the
16899         treeview.
16900         - Call new methods for expanding/collapsing nodes.  These methods
16901         use scrollwindow so we don't have to update everything below the
16902         node.
16903         * TreeView.cs: Refactored drawing and scrolling code.  We don't
16904         need to update nodes when drawing anymore or calculate scrollbar
16905         stuff.
16906         - Added new methods for expanding/collapsing nodes. These methods
16907         use ScrollWindow so as to not have to redraw all the nodes below.
16908         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
16909         we add/remove nodes or sort.
16910         - Handle removing the selected and the top node properly.
16911
16912 2006-05-23  Chris Toshok  <toshok@ximian.com>
16913
16914         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
16915         maybe this should actually happen in the datagrid code?
16916         (EndEdit): no need to invalidate anything, given that
16917         ReleaseHostedControl causes the datagrid to relayout, which
16918         invalidates everything anyway.
16919
16920         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
16921         in SetCurrentCell).
16922         (set_SelectionBackColor): call InvalidateSelection instead of
16923         Refresh.
16924         (set_SelectionForeColor): same.
16925         (BeginEdit): Flesh this out a bit.
16926         (CancelEditing): only do any of this if we're editing/adding.
16927         (EndEdit): same.
16928         (OnMouseDown): there's no need to cancel editing here, it's done
16929         in SetCurrentCell.
16930         (SetCurrentCell): only invalidate the current row header if it's a
16931         different row than the new one.
16932         (ShiftSelection): fix this to work like MS does.
16933         (ResetSelection): factor out the invalidation of selected_rows to
16934         InvalidateSelection.
16935         (SetDataSource): cancel any editing that's going on.
16936
16937         * DataGridColumnStyle.cs
16938         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
16939         call the non-interface version.
16940
16941         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
16942         header rectangle with the clip rectangle so we don't redraw the
16943         entire header for just a small area.  Gets rid of the last flicker
16944         when horizontally scrolling.
16945         (DataGridPaintRow): same.
16946
16947 2006-05-23  Mike Kestner  <mkestner@novell.com>
16948
16949         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
16950         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
16951         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
16952         Critical bug report.
16953
16954 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
16955
16956         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
16957           and this fixes #78493
16958
16959 2006-05-23  Miguel de Icaza  <miguel@novell.com>
16960
16961         * Theme.cs (GetSizedResourceImage): Scale images if the proper
16962         size is not found.  
16963         
16964         * FileDialog.cs: Do not change the background for the side bar as
16965         it wont work nicely with the theme, and also reduces the artifacts
16966         in rendering the icons (which I want to fix too).
16967
16968         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
16969         resources, not resgen resources. 
16970
16971         (PlatformDefaultHandler): Pull images using the new API.
16972
16973 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
16974
16975         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
16976           a reference to the hwnd and will not remove it unless there are
16977           no pending exposures (fixes #78341)
16978         * XplatUI.cs: Improved debug
16979
16980 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
16981
16982         * MenuAPI.cs : don't handle OnClick event when it was not the left
16983           button. Fixed bug #78487.
16984
16985 2006-05-23  Mike Kestner  <mkestner@novell.com>
16986
16987         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
16988         prefer submenus to the top menu for item lookup, to avoid popping down
16989         top-row items.
16990
16991 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
16992
16993         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
16994           Graphics.FillRectangle as the visual results are really bad (even
16995           on win). We now draw perfect arrows (and perfect shadows when the
16996           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
16997           Pen.DashPattern to draw the dots of each line.
16998
16999 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
17000
17001         * FileDialog.cs: Update the filename combobox when navigating through
17002           the ListView with the cursor keys. Fixes part 7 of bug #78446.
17003
17004 2006-05-22  Mike Kestner  <mkestner@novell.com>
17005
17006         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
17007         Fixes #78463.
17008
17009 2006-05-22  Mike Kestner  <mkestner@novell.com>
17010
17011         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
17012         requests. Fix a misspelled parameter and a copy paste exception error
17013         in Select.
17014
17015 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
17016
17017         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
17018           to get the same width/height (5/13) on X11 as the default font has on
17019           win32. This means that our DefaultFont emSize is smaller than the 
17020           the MS SWF equivalent (even thought the width/height stays the same)
17021
17022 2006-05-20  Jackson Harper  <jackson@ximian.com>
17023
17024         * MdiClient.cs:
17025         * MdiWindowManager.cs:
17026         * InternalWindowManager.cs: Make sure to use the border width from
17027         the theme.
17028
17029 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
17030
17031         * PrintDialog.cs: Implements printer details
17032
17033 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
17034
17035         * FileDialog.cs: Added focus handling for PopupButtonPanel.
17036           Fixes part 1 and 2 of bug #78446
17037
17038 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
17039
17040         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
17041           instead of sticking to the first ever calculated value
17042
17043 2006-05-19  Mike Kestner  <mkestner@novell.com>
17044
17045         * ComboBox.cs: fix mouse motion selection to use MousePosition and
17046         PointToClient, since Capture is set. Fixes #78344.
17047
17048 2006-05-19  Mike Kestner  <mkestner@novell.com>
17049
17050         * ListView.cs: match MS behavior in Details view where items are not
17051         drawn if Columns.Count == 0. 
17052         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
17053         Use a separate pen to draw the check, since changing the width affects
17054         the box as well.  Fixes #78454.
17055
17056 2006-05-18  Miguel de Icaza  <miguel@novell.com>
17057
17058         * ListView.cs: ArgumentOutOfRangeException, single versions of the
17059         exception should throw the name of the invalid argument.
17060
17061         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
17062         there are no files listed. 
17063
17064 2006-05-18  Jackson Harper  <jackson@ximian.com>
17065
17066         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
17067         up.
17068
17069 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
17070
17071         * Control.cs: Brought back our old UpdateZOrder method as a private
17072           function and switched our calls from UpdateZOrder to the new one.
17073           This fixes the Paint.Net canvas disappearing bug.
17074
17075 2006-05-18  Jackson Harper  <jackson@ximian.com>
17076
17077         * Theme.cs:
17078         * ThemeWin32Classic.cs:
17079         * InternalWindowManager.cs: Move the drawing into the theme,
17080         expose everything the theme should need from the window manager.
17081
17082 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
17083
17084         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
17085           from the call to NativeWindow to avoid walking up the parent chain
17086           further than needed (speeds up setting cursors and avoids setting
17087           the wrong cursor if a parent has another cursor defined)
17088         * Cursor.cs: When loading an icon as cursor, MS uses the center of
17089           the icon as hotspot, not what's contained as hotspot in the icon
17090           file. This fixes the perceived drawing offset seen with Paint.Net
17091         
17092 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
17093
17094         * XplatUIX11.cs: 
17095           - Store the calculated rectangle in Hwnd object and use it when 
17096             setting the client size
17097           - Force Toolwindows to always be type Dock, to ensure they're on top
17098
17099 2006-05-18  Mike Kestner  <mkestner@novell.com>
17100
17101         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
17102         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
17103         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
17104         Substantial refactoring to remove confusing nested classes. Coding
17105         standard and Get+Set->property refactorings.  Shift to index based
17106         highlighting in ComboListBox instead of constantly using IndexOf and
17107         Items[]. Add invalidations on resize for DropDownList to fix ugliness
17108         in FileDialog growth.  Draw borders manually since Simple mode needs
17109         to look like two independent controls.  Make listbox border
17110         conditional to DropDownStyle.  Improved OwnerDraw support.
17111
17112 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
17113
17114         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
17115         Don't set the disposed graphics to null, so we can throw the "right"
17116         exception if the graphics is reused later (added a flag to avoid 
17117         double disposing). Some behaviours are different under 2.0 and are
17118         filled under bug #78448.
17119
17120 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
17121
17122         * Control.cs: When double-buffering is enabled, we need to reset
17123           our graphics context between paint calls. Otherwise, any 
17124           transformations and other alterations on the context will 
17125           become cumulative (#77734)
17126
17127 2006-05-18  Mike Kestner  <mkestner@novell.com>
17128
17129         * ListView.cs: do focused item selection like MS on clicks. 
17130         Rework focus handling for ItemControl so LostFocus invalidates as
17131         well.
17132         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
17133         the ListView ItemControl has focus.
17134
17135 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
17136
17137         * XplatUIX11.cs: If client_window ends up being width or height zero
17138           due to border settings, move it off window inside whole_window (#78433)
17139
17140 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
17141
17142         * Mime.cs: Shrink the mime file cache correctly.
17143
17144 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
17145
17146         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
17147
17148 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
17149
17150         * XplatUIX11.cs (AddExpose): More sanity checks
17151
17152 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17153
17154         * XplatUIX11.cs:
17155           - AddExpose: Don't add expose ranges outside the size of our
17156             window
17157           - Cast opacity values to Int32 to avoid crashes with certain
17158             values
17159           - Added disabled code paths that protect against illegal cross-
17160             thread painting (Developers.exe)
17161
17162 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
17163
17164         * ProgressBar.cs: Invalidate the control when it's resized
17165           since block size is based on control size. (#78388)
17166
17167 2006-05-16  Miguel de Icaza  <miguel@novell.com>
17168
17169         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
17170         of setting the incoming argument to the "reset" value, we set the
17171         this.datamember to string.empty (before we were invalidating the
17172         incoming data).   
17173
17174         Fixes 78420
17175
17176 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17177
17178         * Form.cs: Only apply transparency settings after the form
17179           is created. (Fixes #77800)
17180
17181 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
17182
17183         * ApplicationContext.cs: Grab the HandleDestroyed event so
17184           we know when to fire OnMainFormClosed 
17185
17186 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17187
17188         * Application.cs: Introduced sub-class to allow tracking of
17189           threads and centralized triggering of the event mess for
17190           ThreadExit, AppExit, etc..  (#76156)
17191
17192 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
17193
17194         * MimeIcon.cs:
17195           - Do not return a null icon index value for a mime subclass.
17196             Instead try the main mime type class too.
17197           - Seems that some newer distributions don't have a link to some
17198             gnome default icons anymore. So check the default gnome dir too.
17199           
17200
17201 2006-05-16  Jackson Harper  <jackson@ximian.com>
17202
17203         * MdiClient.cs: Don't paint the parent background image if we have
17204         our own background image.
17205
17206 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17207
17208         * Control.cs:
17209           - PerformLayout: Do not shrink space filled by DockStyle.Fill
17210             controls, all filled controls are supposed to overlap (#78080)
17211           - UpdateZOrder is supposed to update the control's z-order in the
17212             parent's z-order chain. Fixed to behave like that
17213           - BringToFront: Removed obsolete code
17214           - SendToBack: Simplyfied
17215           - SetChildIndex: Trigger layout calculations when Z-order changes
17216             since layout is done by z-order
17217
17218 2006-05-16  Chris Toshok  <toshok@ximian.com>
17219
17220         [ fixes bug #78410 ]
17221         * DataGrid.cs (set_AlternatingBackColor): use
17222         grid_drawing.InvalidateCells instead of Refresh().
17223         (set_BackColor): call grid_drawing.InvalidateCells.
17224         (set_BackgroundColor): use Invalidate instead of Refresh.
17225
17226         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
17227         invalidate the cell area.
17228
17229 2006-05-15  Chris Toshok  <toshok@ximian.com>
17230
17231         [ fixes bug #78011 ]
17232         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
17233         on to DataGridPaintRow.
17234         (DataGridPaintRow): take a clip argument, and only draw the cells
17235         which intersect it.  same with the not_usedarea.
17236
17237         * Theme.cs (DataGridPaintRow) add @clip parameter.
17238
17239         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
17240         XplatUI.ScrollWindow.
17241         (ScrollToRow): same.
17242
17243         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
17244         with last column which was causing a gray swath to appear with the
17245         XplatUI.ScrollWindow code.
17246
17247 2006-05-15  Chris Toshok  <toshok@ximian.com>
17248
17249         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
17250         use XplatUI.ScrollWindow.
17251         (VerticalScrollEvent): use XplatUI.ScrollWindow.
17252
17253 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
17254
17255         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
17256
17257 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
17258
17259         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
17260           file since there are no equivalent X11 cursors
17261
17262 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
17263
17264         * MonthCalendar.cs : DateTimePicker should reflect selected date
17265           on mouse*up*, not mouse*down*. Fixed originally reported part of
17266           bug #76474.
17267
17268 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
17269
17270         * TabControl.cs : When argument index is equal or more than tab
17271           count, just ignore. Fixed bug #78395.
17272
17273 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
17274
17275         * Control.cs: Dispose all child controls when control is diposed (#78394)
17276
17277 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
17278
17279         * ColorDialog.cs: Finally it is possible to select the color with
17280           the text boxes
17281
17282 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
17283
17284         * PrintDialog.cs: Fix typo
17285
17286 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
17287
17288         * PrintDialog.cs: PrintDialog is not resizable
17289         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
17290           color. Made some ToolBar drawing methods protected virtual.
17291
17292 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
17293
17294         * PrintDialog.cs: Implementation of the PrintDialog
17295
17296 2006-05-12  Chris Toshok  <toshok@ximian.com>
17297
17298         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
17299         thumb, instead use MoveThumb.  This has the side effect of making
17300         most of the other thumb moving machinery use MoveThumb as well.
17301         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
17302         need to actually invalidate the rectangle where the new thumb will
17303         go.
17304         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
17305         We force an Update() after, so it's not as fast as it could be,
17306         but at least there's zero flicker and no droppings.
17307         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
17308         (UpdateThumbPos): add another argument (dirty), which says whether
17309         or not to calculate/add dirty regions which we later invalidate.
17310         For cases where we know we're going to use MoveThumb, we pass
17311         false for this.  Otherwise, pass true.
17312
17313 2006-05-12  Jackson Harper  <jackson@ximian.com>
17314
17315         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
17316         the status bar.
17317         
17318 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
17319
17320         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
17321           and GetClipRegion methods and UserClipWontExposeParent property.
17322         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
17323           overriding UserClipWontExposeParent property, setting to false, since
17324           Win32 handles the required expose messages to draw our clipped parent
17325           areas internally
17326         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
17327           PaintEventStart to set the user clip region if set.
17328         * Control.cs: 
17329           - Now internally tracking the Region for the control since we need to
17330             store it if the handle is not yet created and only set it when it
17331             becomes created. Before setting the region forced handle creation
17332           - Added code to draw the parents underneath a user-clipped region
17333         * Hwnd.cs: Added UserClip property
17334
17335 2006-05-12  Chris Toshok  <toshok@ximian.com>
17336
17337         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
17338         (set_Maximum): same.
17339         (set_Minimum): same.
17340         (set_SmallChange): same.
17341         (OnMouseUpSB): remove the call to refresh when releasing the
17342         thumb.  We shouldn't need it.
17343         
17344 2006-05-12  Miguel de Icaza  <miguel@novell.com>
17345
17346         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
17347         AutoSize set to None, we do not need to relayout everything, we
17348         just need to invalidate the current region.
17349
17350         (Draw): Do not draw the entire ClientArea, just redraw the
17351         clip area being passed.
17352
17353         * MdiClient.cs: Make MdiClient constructor with the Form argument
17354         internal. 
17355
17356 2006-05-12  Jackson Harper  <jackson@ximian.com>
17357
17358         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
17359         parents background image,  but strangely not their own.
17360         - (DrawStatusBarPanel): Take into account horizontal alignment
17361         when drawing the strings and icons.
17362
17363 2006-05-12  Mike Kestner  <mkestner@novell.com>
17364
17365         * ListBox.cs: avoid invalidations for focus when the collection is
17366         empty. 
17367
17368 2006-05-12  Chris Toshok  <toshok@ximian.com>
17369
17370         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
17371         invalidate the entire thumb area.  Call InvalidateDirty which
17372         limits the redraw to the thumb itself and surrounding pixels.
17373
17374         * XplatUIX11.cs (ScrollWindow): optimize copying.
17375         
17376 2006-05-12  Chris Toshok  <toshok@ximian.com>
17377
17378         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
17379         Figure out the positioning/layout in a single pass instead of
17380         multiple recursive invocations.  Speeds up the initial display of
17381         the data grid.  Also, make many things private that were
17382         originally public but unused outside this class.
17383
17384 2006-05-11  Jackson Harper  <jackson@ximian.com>
17385
17386         * MdiClient.cs: Improved layout code.
17387
17388 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
17389
17390         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
17391           not SelectedObject.
17392
17393 2006-05-11  Chris Toshok  <toshok@ximian.com>
17394
17395         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
17396         union of that will always be {0,0,width,height}.
17397
17398 2006-05-11  Jackson Harper  <jackson@ximian.com>
17399
17400         * Form.cs: Match MS's DefaultSize for forms (they must have
17401         changed the size in sp2).
17402
17403 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
17404
17405         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
17406
17407 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
17408
17409         * TextControl.cs : Fixed bug #78109. This incorrect position
17410           comparison caused crash on automatic line split.
17411         * TextBoxBase.cs : reduce duplicate code.
17412
17413 2006-05-10  Jackson Harper  <jackson@ximian.com>
17414
17415         * MdiClient.cs: Active form is only sent to the back when using
17416         the Next form functionality, when a form is clicked the current
17417         active shouldn't be sent to the back.
17418         - Layout the mdi windows when the container is first made visible.
17419         * Form.cs: Give the MdiClient a ref to the containing form when we
17420         create it.
17421         
17422 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
17423
17424         * LinkLabel.cs : link_font could be uninitialized, so populate one
17425           before actual use. Fixed bug #78340.
17426
17427 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
17428
17429         * XplatUIX11.cs : clipboard format native value is IntPtr.
17430           Fixed bug #78283.
17431
17432 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
17433
17434         * Control.cs: 
17435           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
17436             which is passed up the parent chain by DefWndProc
17437           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
17438             to DefWndProc (#77956)
17439         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
17440
17441 2006-05-10  Jackson Harper  <jackson@ximian.com>
17442
17443         * MdiClient.cs: We need to remove the controls from the mdi
17444         collection, when we close the window.
17445         * MdiWindowManager.cs: Special handling of closing mdi windows.
17446         * InternalWindowManager.cs: Make the close method virtual so the
17447         mdi window manager can handle it specially.
17448
17449 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
17450
17451         * DataGrid.cs:
17452           - Recalculate grid when the data source has changed
17453           - Matches styles provided by user from all data sources types
17454         * DataGridTableStyle.cs: For columns that provided by the user set the
17455         with the preferred value is there was unassigned.
17456         * CurrencyManager.cs: throw OnItemChanged event
17457
17458 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
17459
17460         * PictureBox.cs: Don't animate until handle is created. Start animation
17461           when handle is created.
17462
17463 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
17464
17465         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
17466           current codebase.
17467         * XEventQueue.cs: We don't need to provide the extra info
17468
17469 2006-05-10  Jackson Harper  <jackson@ximian.com>
17470
17471         * MdiClient.cs: If the mdi clients parent form has a background
17472         image set, we draw that background image for the mdi area's
17473         background.
17474
17475 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
17476
17477         * TextBoxBase.cs: Set IBeam cursor (#78347)
17478
17479 2006-05-10  Mike Kestner  <mkestner@novell.com>
17480
17481         * ToolBar.cs: fix some text padding issues with ButtonSize
17482         calculation. Update the default size to match MS documentation.
17483         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
17484         button size. Fixes #78296.
17485
17486 2006-05-10  Mike Kestner  <mkestner@novell.com>
17487
17488         * ListBox.cs: use is_visible for scrollbar positioning in case the
17489         control isn't on screen yet.  Fix off by one with Right vs Width
17490         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
17491         
17492 2006-05-10  Jackson Harper  <jackson@ximian.com>
17493
17494         * X11Dnd.cs: Drop to a control with another control on top of it.
17495         * ToolBar.cs: Work on a copy of the buttons list, so that it can
17496         be modified in click handlers. TODO: Look for similar problems in
17497         other controls.
17498
17499 2006-05-09  Jackson Harper  <jackson@ximian.com>
17500
17501         * Form.cs: Window managers need the old window state when setting
17502         window state now.
17503         * InternalWindowManager.cs: Allow the base mdi window manager to
17504         handle more of the MDI only stuff (like maximize buttons).
17505         * MdiWindowManager.cs: Fix some snafus in changing the window
17506         state.  Add all the menu functionality, for both popup and
17507         maximized menus.
17508         * MdiClient.cs: When a new form is selected the currently
17509         activated form is sent to the back, this matches MS.
17510         - Implement a new method to activate the next mdi child window.
17511
17512 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
17513
17514         * Control.cs: 
17515           - Added new InternalCapture method to allow controls to prevent
17516             the capture behaviour on the click handlers
17517           - Switched to use InternalCapture
17518         * ComboBox.cs:
17519           - Using InternalCapture to prevent mouse captures from being released
17520             on mouse button release (Fixes #78100)
17521         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
17522           returns Form borders if a caption is present. (Fixes #78310)
17523
17524 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
17525
17526         * TreeNode.cs: Changed serialization .ctor to not require every field
17527           to be present. (#78265)
17528         * OwnerDrawPropertyBag.cs: Added serialization .ctor
17529
17530 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
17531
17532         * MimeIcon.cs: for is faster than foreach for strings.
17533
17534 2006-05-05  Mike Kestner  <mkestner@novell.com>
17535
17536         * CheckedListBox.cs: update check handling code to not use selected.
17537         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
17538         behavior for visual feedback, motion response, shift/ctrl handling,
17539         and properly deal with all 4 selection modes. Updates to bounds
17540         handling logic.  Add scroll wheel support. [Fixes #77842]
17541
17542 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
17543
17544         * ListView.cs:
17545           - Moved adding of Implicit controls into .ctor. That way, subsequent
17546             creation of the controls will not cause them to think they are 
17547             toplevel windows (fixes #78200 header problem)
17548           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
17549           - Switched visibility setting of header control to use internal field
17550             to avoid triggering handle creation
17551           - Now checking if handle is created before causing a refresh when items
17552             are added (This makes us now match handle creation time with MS)
17553         * Splitter.cs: Removed loading of private splitter cursor, switched to
17554           Cursors version now that that is loading the right ones
17555         * Cursors.cs: Load proper splitter cursors from resources
17556         * Cursor.cs: Added second method of loading resource cursors for the 
17557           VS.Net users amongst us
17558
17559 2006-05-05  Mike Kestner  <mkestner@novell.com>
17560
17561         * ListView.cs: give header_control a minimum size based on the
17562         ListView size.
17563
17564 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
17565
17566         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
17567           window seems to do that with metacity, so set that type. (#78120)
17568
17569 2006-05-05  Mike Kestner  <mkestner@novell.com>
17570
17571         * ListViewItem.cs: fix Details mode checkbox layout bug.
17572         * ThemeWin32Classic.cs: draw a ListView column header for unused space
17573         at the end of the header, if it exists. [Fixes for #78200]
17574
17575 2006-05-04  Jackson Harper  <jackson@ximian.com>
17576
17577         * MdiClient.cs: Add a helper property to get the container form.
17578         * MdiWindowManager.cs: We have to make sure to use the menu origin
17579         when drawing the icons and buttons, this fixes maximized window
17580         icons/buttons on win32.
17581         * InternalWindowManager.cs: Reset the restore captions when a
17582         window goes from Maximized to Minimized and vice versa. Move the
17583         DrawMaximizedButtons into the MdiWindowManager source, tool
17584         windows can't be maximized. NOTE: This could use a little
17585         refactoring if time ever permits.
17586         
17587 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
17588
17589         * TextBox.cs: Add MWFCategoryAttributes
17590         * TextBoxBase.cs: Add MWFCategoryAttributes
17591         * Form.cs: Add MWFCategoryAttributes
17592
17593 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
17594
17595         * Control.cs: Add MWFCategoryAttributes
17596         * ScrollableControl.cs: Add MWFCategoryAttributes
17597
17598 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
17599
17600         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
17601           Divider is true. Fix a little glitch in PropertyToolBar
17602           drawing code
17603
17604 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
17605
17606         * Control.cs:
17607           - Dispose: Call base.Dispose, this causes the disposed event
17608             to be fired (and probably other, more important stuff)
17609           - SetVisibleCore: Set is_visible to true after creating the
17610             window so that the window still gets created invisible (if
17611             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
17612             to generate a WM_ACTIVE message
17613         * Form.cs: Call Dispose when we want to destroy the window, instead of
17614           just destroying the handle (Dispose will do that for us)
17615         * XplatUIX11.cs:
17616           - RootWindow also needs a queue, so we can properly process the
17617             property change events from RootWindow (like Activate)
17618           - Generatic synthetic WM_ACTIVE message when the active window is
17619             being destroyed
17620
17621 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
17622
17623         * LinkLabel.cs: Trigger a recalc of our label dimensions when
17624           bounds are changed
17625
17626 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
17627
17628         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
17629           for determining width and height (image might not be assigned if
17630           we're drawing an imagelist)
17631
17632 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
17633
17634         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
17635         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
17636           height from system
17637         * Theme.cs: No longer returns hardcoded menu height, instead calls
17638           new driver method
17639         * Form.cs (OnLoad): Scaling happens before triggering Load events 
17640           on MS (# 78257)
17641
17642 2006-05-01  Mike Kestner  <mkestner@novell.com>
17643
17644         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
17645
17646 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
17647
17648         * TextBoxBase.cs: Removed Fixme
17649         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
17650
17651 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
17652
17653         * XplatUIX11.cs:
17654           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
17655             the rectangle relative to the parent, considering borders. We
17656             don't really want that.
17657           - ScrollWindow: Fixed warning to be more understandable
17658         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
17659           scrollbars and scroll only the visible area
17660         * RichTextBox.cs: Removed debug output
17661
17662 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
17663
17664         * NumericUpDown.cs (Text): Just use base
17665         * UpDownBase.cs: Ensure txtView is created before using it
17666
17667 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
17668
17669         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
17670           casting to IntPtr to avoid 64bit overflow errors
17671
17672 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
17673
17674         * Control.cs:
17675           - AllowDrop: Don't force handle creation.
17676           - CreateHandle: Added call to tell driver if we're allowed to drop
17677
17678 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
17679
17680         * FileDialog.cs: Remember the last directory not only for the
17681           current instance but also for new FileDialog instances.
17682
17683 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
17684         
17685         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
17686           broke sending async messages
17687
17688 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
17689
17690         * XplatUIX11.cs:
17691           - ScrollWindow: Fixed method. We finally generate expose events again
17692             for scrolled areas. This was causing 'garbage' when scrolling
17693             textbox and other controls that used ScrollWindow
17694           - Switched from using the regular queue for paint events to the MS 
17695             model of 'generating' paint events when the queue is empty.
17696             We use the new XQueueEvent.Paint subclass to store which windows
17697             need painting.
17698           - AddExpose now takes the x/y/width/height of the exposed area
17699             and inserts the window into the paint queue if not already there
17700           - InvalidateWholeWindow: Switched to use new AddExpose method
17701           - UpdateMessageQueue: Added which queue to monitor for paint events
17702           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
17703             the unlikely case nothing above handles it. We reset the expose
17704             pending states to get them off the queue.
17705           - GetMessage: Now pulls a paint event if no other events are in the
17706             queue
17707           - Invalidate: Switched to new AddExpose method
17708           - PeekMessage: Updated to understand pending paint events
17709           - UpdateWindow: Fixed logic bug. We were only updating if the window
17710             didn't need updating. Also switched to sending WM_PAINT directly,
17711             like MS does.
17712         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
17713           and random access Remove(). The random access is needed to handle
17714           UpdateWindow() where a WM_PAINT is sent directly without accessing
17715           the queue.
17716         * ScrollBar.cs: Added Update() calls to cause immediate updates to
17717           allow for better feedback when scrolling. Scrollbars are small and
17718           the immediate update should make it 'feel' more responsive without
17719           slowing things down. ScrollBar still needs it's invaliate logic
17720           updated to not always invalidate the whole bar on certain changes.
17721
17722 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17723
17724         * Control.cs:
17725         (BackColor): if the control does not support a transparent background,
17726         return the default backcolor when the parent backcolor is transparent.
17727
17728 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
17729
17730         * Application.cs: Updated to new StartLoop/GetMessage API
17731         * RichTextBox.cs: Provide some output on RTF parsing errors
17732         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
17733           new queue_id argument to GetMessage and PeekMessage to allow faster
17734           handling of per-thread queues in drivers.
17735         * Hwnd.cs: Added Queue tracking and property
17736         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
17737         * XEventQueue.cs: Added thread trackingA
17738         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
17739         * XplatUIX11.cs:
17740           - Implemented new per-thread queue
17741           - GetMessage: Fixed return/break behaviour on several cases. We were
17742             returning stale messages in some cases, instead of just processing
17743             the next message
17744
17745 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
17746
17747         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
17748
17749 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
17750
17751         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
17752           fixed off-by-one comparisons between Width/Height and Right/Bottom.
17753
17754 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
17755
17756         * PropertyGridView.cs: Fix drop down width.
17757
17758 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
17759
17760         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
17761           a mess in DrawToolBar, so I removed one of them.
17762
17763 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
17764
17765         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
17766           needed (clip). Otherwise we get artifacts.
17767
17768 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
17769
17770         * FixedSizeTextBox.cs: Added constructor to allow specifying which
17771           dimension is fixed
17772         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
17773           and switched FixedSizeTextBox to only be fixed vertical (#78116)
17774         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
17775           if it matches the scale base font (avoids unneeded scaling)
17776
17777 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
17778
17779         * X11DesktopColors.cs: One gtk_init_check should be enough
17780
17781 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
17782
17783         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
17784           match MS behaviour
17785
17786 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
17787
17788         * TextBoxBase.cs: 
17789           - Generate OnTextChanged for Backspace even if we're only deleting
17790             the current selection
17791           - When setting the Text property, only select all text if the
17792             control does not have focus when it is being set. Otherwise
17793             just place the cursor at the beginning of the control
17794
17795 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
17796
17797         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
17798           Added a little helper to draw PropertyGrid ToolBar with a different
17799           border and a different BackColor.
17800         * PropertyGrid.cs: Some background parts didn't get painted with the
17801           correct background color. Added a class that helps us to draw the
17802           correct border for PropertyGridView and a class that helps us to
17803           draw ToolBars with a different backcolor
17804         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
17805
17806 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
17807
17808         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
17809         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
17810
17811 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
17812
17813         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
17814           into the palette entries. Also, since we're working on a copy
17815           we needed to copy the palette back onto the bitmap.
17816         * Cursor.cs: Same fix as XplatUIWin32.cs.
17817
17818 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
17819
17820         * ImageListStreamer.cs: Need to read the var (or we're off)
17821
17822 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
17823
17824         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
17825           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
17826           TextBoxBase.cs: Unused var fixes
17827         * AxHost.cs: Small 2.0 fix
17828         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
17829           as it seems that is what at least Metacity expects. This will make
17830           icons show up on 64bit platforms. We still have some 64bit size
17831           issues, though, since the startup app window size still won't match.
17832
17833 2006-04-25  Mike Kestner  <mkestner@novell.com>
17834
17835         * *.cs: cleanup newly reported exception var unused warnings.
17836
17837 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
17838
17839         * ThemeWin32Classic.cs: Button image alignment now matches exactly
17840           ms
17841
17842 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
17843
17844         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
17845           image. The image position is always the same, no matter if the
17846           button is pressed or not.
17847
17848 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
17849
17850         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
17851           selection and set the correct filename for SaveFileDialog.
17852           Patch by Emery Conrad.
17853
17854 2006-04-24  Mike Kestner  <mkestner@novell.com>
17855
17856         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
17857         check for item.X outside the ClientRect instead of item.Y. Fixes
17858         #78151.
17859
17860 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17861
17862         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
17863         trust that value blindly and do some sanity check. Fixes bug #77814.
17864
17865 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17866
17867         * ImageListStreamer.cs: save the mask as a 1bpp image.
17868
17869 2006-04-21  Mike Kestner  <mkestner@novell.com>
17870
17871         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
17872         pass Checked and Indeterminate to the Theme Engine. Improve
17873         encapsulation with ListBox.
17874         * ListBox.cs: Keep a StringFormat instead of calculating it every item
17875         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
17876         nested types.  Move all CheckState functionality to CheckedListBox.
17877         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
17878         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
17879         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
17880         single base list. Fix scrollbar sizing and placement to mirror MS.
17881         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
17882         used.
17883         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
17884         for CheckedListBox by using new DrawItemState info.  Center the
17885         checkboxes on the items. Use new StringFormat property.
17886
17887 2006-04-18  Jackson Harper  <jackson@ximian.com>
17888
17889         * Form.cs: MdiChildren don't do default locations the same way as
17890         regular forms.  This prevents a crash when trying to position the
17891         mdi windows.
17892
17893 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
17894
17895         * PropertyGridTextBox.cs: Formatting, copyright
17896         * PropertiesTab.cs: Formatting
17897         * PropertyGrid.cs: Formatting
17898         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
17899           click toggling of values
17900           
17901 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
17902
17903         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
17904         * Control.cs (.ctor): verify_thread_handle is static, don't reset
17905           every time a control is created
17906         * Application.cs: Removed obsolete EnableRTLMirroring method
17907
17908 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
17909
17910         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
17911         SelectedIndex to -1. Fixes bug #78121.
17912
17913 2006-04-17  Jackson Harper  <jackson@ximian.com>
17914
17915         * Binding.cs: Handle null values for Current and BindingContext.
17916         This occurs when binding is a little delayed.
17917         * CurrencyManager.cs: return null for Current when there are no
17918         items in the list.
17919         - Hookup to the listchanged event on the DataView and update
17920         bindings when the list is changed.  This fixes late binding of
17921         controls.
17922
17923 2006-04-17  Jackson Harper  <jackson@ximian.com>
17924
17925         * X11Dnd.cs:
17926         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
17927         Ringenbach.
17928
17929 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
17930
17931         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
17932           place
17933         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
17934           with the correct ButtonState
17935
17936 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
17937
17938         * XplatUIX11.cs: Improved distinguishing between window types to
17939           tell the WM a type closer to what the app wants (Fixes #78107)
17940
17941 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
17942
17943         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
17944           GrabHandle
17945
17946 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
17947
17948         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
17949           drawing code to reflect the size grip changes
17950
17951 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17952
17953         * ImageListStreamer.cs: fix handling of the mask that follows the main
17954         bitmap when deserializing and serialize it properly. The generated mask
17955         should better be a 1bpp image, but I'll do that later.
17956
17957 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
17958
17959         * FileDialog.cs: Show something in the DirComboBox on *nix if the
17960           path doesn't fit into some of our Current.Places
17961
17962 2006-04-13  Jackson Harper  <jackson@ximian.com>
17963
17964         * ComboBox.cs: Use borders instead of drawing our own decorations,
17965         try to obey correct rules for heights.
17966         * Theme.cs:
17967         * ThemeNice.cs:
17968         * ThemeClearLooks.cs:
17969         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
17970         this is now handled by borders.
17971         - Remove unused DrawListBoxDecorationSize method.
17972         
17973 2006-04-13  Mike Kestner  <mkestner@novell.com>
17974
17975         * MenuAPI.cs: null guarding for the disbled click check fixes crash
17976         reported by Alex.
17977
17978 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
17979
17980         * ThemeWin32Classic.cs: 
17981           - Fixed CPDrawStringDisabled
17982           - Corrected drawing of disabled menu items
17983           - Fixed drawing of disabled radio buttons (bug #78095)
17984           - Draw check in a disabled CheckBox with color ControlDark 
17985
17986 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
17987
17988         * Form.cs: Use the provided width when calculating the menu size;
17989           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
17990           and ClientSize.Width won't be updated yet
17991         * Application.cs: Use Visible instead of Show() to make form visible,
17992           this way we create the handle later and menusize is considered
17993
17994 2006-04-12  Mike Kestner  <mkestner@novell.com>
17995
17996         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
17997         reporting.
17998
17999 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18000
18001         * TextBox.cs: Implemented context menu
18002
18003 2006-04-12  Mike Kestner  <mkestner@novell.com>
18004
18005         * ListView.cs: implement box selection. fixes #77838.
18006         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
18007
18008 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
18009
18010         * XplatUIX11.cs: Added setting of window type when transient window
18011           is created (metacity would move it otherwise)
18012         * X11Structs.cs: Added WINDOW_TYPE atoms
18013         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
18014           background (the control is Opaque but still wants transparent
18015           backgrounds)
18016
18017 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18018
18019         * Control.cs: Added OnPaintBackgroundInternal to allow controls
18020           that set Opaque but don't mean it (like all ButtonBase-derived
18021           controls) to still draw their background
18022         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
18023           the background
18024
18025 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
18026
18027         * Control.cs (PaintControlBackground): Set the graphics object
18028           on our PaintEvent to null to prevent it from being disposed
18029           when the PaintEvent gets disposed
18030
18031 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
18032
18033         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
18034         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
18035
18036 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18037
18038         * Control.cs: 
18039           - Added transparency check to BackColor property. Transparent
18040             backgrounds are only allowed if the control styles permit it
18041           - Added recursive painting of parent control background and
18042             foreground if a control with a transparent backcolor is drawn
18043             (Thanks to Tim Ringenback for providing his 'hack' as a base
18044              for this patch) Fixes #77985 and #78026.
18045           - Added Opaque style check before calling OnPaintBackground, no
18046             need to draw the background if the control is opaque
18047           - Removed ControlAccessibleObject owner variable (inherited from
18048             base, no need to define again)
18049           - Added some documentation links explaining the drawing events
18050             and styles
18051
18052 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
18053
18054         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
18055           that the affected control is the located at the left border of our
18056           parent (Fixes #77936)
18057
18058 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
18059
18060         * TextBoxBase.cs: When rendering disabled or readonly controls,
18061           draw the background with 'Control' instead of 'Window' color as
18062           long as the user hasn't specifically set a color
18063
18064 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
18065
18066         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
18067           since that won't be updated if the user types text (only if it's
18068           programatically set)
18069
18070 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
18071
18072         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
18073           layout changes do to app-triggered resizes will have the proper
18074           display rectangle for layout
18075
18076 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
18077
18078         * ThemeWin32Classic.cs:
18079           - Make use of the SystemBrushes and SystemPens wherever possible
18080           - Corrected some highlight colors
18081           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
18082             drawing
18083         * Theme.cs: Added Empty field to CPColor struct
18084
18085 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
18086
18087         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
18088           is displayed when calculating the display rectangle. Thanks to Mike
18089           for teaching me the err of my ways.
18090
18091 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
18092
18093         * ScrollableControl.cs:
18094           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
18095             (instead of 0,0) and we now return the real width/height instead of
18096             just the clientrectangle, adjusted for padding. The rectangle is
18097             now cached and created by the new CalculateDisplayRectangle method.
18098           - Created new CalculateDisplayRectange method, which basically does
18099             what get_DisplayRectangle() did originally, but now using the 
18100             right edge instead of DisplayRectangle to determine the size of
18101             our scrollbars
18102           - get_Canvas(): Fixed it to properly calculate canvas for 
18103             right/bottom controls which seem to be placed to the right/bottom
18104             of any controls that have a fixed location
18105           - Removed TODO that's taken care of
18106           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
18107             and SetDisplayRectLocation according to new MSDN2 docs
18108           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
18109             event when that is called, this is added for compatibility
18110           - ScrollControlIntoView(): Implemented.
18111           - Switched scrollbars to be implicit, they shouldn't be selectable
18112         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
18113           call it when the active control is set/changed
18114         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
18115         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
18116           implicit_control variable (used for native Win32 message generation)
18117         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
18118           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
18119         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
18120         * XplatUIStructs.cs: Added ScrollBarCommands enum
18121
18122 2006-04-10  Jackson Harper  <jackson@ximian.com>
18123
18124         * ButtonBase.cs:
18125         * CheckedListBox.cs:
18126         * ComboBox.cs:
18127         * DataGrid.cs:
18128         * DataGridView.cs:
18129         * Form.cs:
18130         * GroupBox.cs:
18131         * ListBox.cs:
18132         * PrintPreviewControl.cs:
18133         * ProgressBar.cs:
18134         * PropertyGrid.cs:
18135         * Splitter.cs:
18136         * StatusBar.cs:
18137         * TrackBar.cs:
18138         * UpDownBase.cs: Fixup base event overrides.
18139         
18140 2006-04-06  Mike Kestner  <mkestner@novell.com>
18141
18142         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
18143         all user-initiated value changes to min <= value <= max-thumbsz+1.
18144         (set_Value): check for vert/horiz when calculating new thumb position.
18145         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
18146         like MS does.
18147         (OnMouseMoveSB): refactor the thumb dragging code and refine
18148         invalidation logic to reduce flicker.
18149         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
18150         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
18151         (UpdateThumbPosition): small code readability cleanup
18152
18153 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
18154
18155         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
18156           different
18157
18158 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
18159
18160         * ThemeNice.cs: Use a better graphics effect when a button is pressed
18161
18162 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
18163
18164         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
18165         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
18166           This dramatically reduces the number of Pen.Dispose calls. 
18167           Where possible call ResPool methods only once instead of calling it
18168           over and over again (for example for the same color).
18169
18170 2006-04-06  Mike Kestner  <mkestner@novell.com>
18171
18172         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
18173         Also remove an unused private field on the collection. Fixes #77972.
18174
18175 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
18176
18177         * ThemeNice.cs: Added ToolBar drawing code
18178
18179 2006-04-06  Mike Kestner  <mkestner@novell.com>
18180
18181         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
18182         I'm assuming that means we need to look up the toplevel for the
18183         provided control. Fixes the crash trace in #77911 but exposes another
18184         crash in some strange reflection usage in NDocGui.
18185
18186 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
18187
18188         * ThemeNice.cs: Gave it a little silver touch and added Images
18189           method
18190         * FontDialog.cs: FontDialog is not resizable
18191         * FileDialg.cs: Added SizeGripStyle.Show
18192
18193 2006-04-05  Jackson Harper  <jackson@ximian.com>
18194
18195         * KeyboardLayouts.cs: Remove warning.
18196
18197 2006-04-05  Jackson Harper  <jackson@ximian.com>
18198
18199         * Control.cs: Enable OnPaintInternal so we can use it for drawing
18200         all of our controls instead of Paint +=.
18201         * ListBox.cs:
18202         * ListView.cs:
18203         * MenuAPI.cs:
18204         * MessageBox.cs:
18205         * NotifyIcon.cs:
18206         * ProgressBar.cs:
18207         * ScrollBar.cs:
18208         * Splitter.cs:
18209         * StatusBar.cs:
18210         * TabControl.cs:
18211         * TextBoxBase.cs:
18212         * ToolBar.cs:
18213         * TrackBar.cs:
18214         * UpDownBase.cs:
18215         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
18216         use OnPaintInternal. Remove Width/Height and Visible checks in
18217         paint handler, this is done at a higher level now.
18218         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
18219         * PaintEventArgs.cs: Add a handled flag so controls that don't
18220         want anymore painting after OnPaintInternal can make sure OnPaint
18221         isn't called.
18222
18223 2006-04-05  Mike Kestner  <mkestner@novell.com>
18224
18225         * Form.cs: fix the menu WndProc hacks to respect the native enabled
18226         state of the form, so that we don't process events when Modal dialogs
18227         are up. Fixes #77922.
18228
18229 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
18230
18231         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
18232           checking is done.
18233
18234 2006-04-05  Mike Kestner  <mkestner@novell.com>
18235
18236         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
18237
18238 2006-04-05  Mike Kestner  <mkestner@novell.com>
18239
18240         * ListView.cs (HeaderMouseMove): null guarding for the over column
18241         when setting up the drag_to_index.  Fixes #78015.
18242
18243 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
18244
18245         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
18246           in the taskbar. Transient windows seem to accomplish that.
18247
18248 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
18249
18250         * Form.cs:
18251           - Re-enabled CreateParams.X/Y code for FormStartPosition
18252           - Added code for manual placement when creating the Control
18253           - Incomplete patch to treat MDI forms differently when
18254             setting the ClientSizeCore. (Still need to figure out handling
18255             x/y coords there)
18256         * XplatUIX11.cs:
18257           - When we're explicitly setting the X/Y position of a non-Child
18258             window, let the WM know. Metacity really wants this.
18259
18260 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
18261
18262         * ThemeNice.cs: Added CPDrawButton
18263
18264 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
18265
18266         * ThemeNice.cs: Changed the color for focused buttons and activated
18267           the arrows for small scroll buttons.
18268
18269 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
18270
18271         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
18272           anymore. Changed some method modifiers to protected (virtual)
18273         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
18274           changes
18275         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
18276           Updated drawing of menus, buttons and progressbars; added
18277           CPDrawBorder3D 
18278
18279 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18280
18281         * ImageListStreamer.cs: implemented serialization/deserialization
18282         of the images.
18283
18284 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
18285
18286         * ThemeWin32Classic.cs:
18287           - Removed all the DrawFrameControl stuff; CPDrawButton,
18288             CPDrawCheckBox and CPDrawRadioButton are now handled directly
18289             inside the methods
18290           - Updated and corrected the drawing code of CPDrawButton,
18291             CPDrawCheckBox and CPDrawRadioButton to better match ms
18292           - Updated theme checkbox and radiobutton code to use the CP*
18293             methods
18294
18295 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
18296
18297         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
18298           bug is fixed
18299
18300 2006-03-31  Jackson Harper  <jackson@ximian.com>
18301
18302         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
18303         sometimes.
18304         * UpDownBase.cs: Don't CreateGraphics manually, use a
18305         Refresh. Ideally we would invalidate the correct areas here.
18306
18307 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
18308
18309         * XplatUIX11.cs: 
18310           - We now track the mapping state of windows. If a window (or 
18311             one of it's parents) is not mapped we no longer permit
18312             WM_PAINT messages to be generated since we'd otherwise get 
18313             lots of BadMatch X errors. Jackson did all the work figuring
18314             out the problem.
18315           - Destroying the caret if the window it's contained in is 
18316             destroyed. Can't use regular DestroyCaret method since it
18317             might fall into a drawing function (trying to remove the
18318             caret) and with that generate new BadMatch errors. Again,
18319             Jackson tracked this down.
18320           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
18321             make sure we send the messages to all windows. (The old code
18322             would send the WM_DESTROY to the window, and then all child
18323             windows would be 'gone' because the WM_DESTROY handle lookup
18324             would no longer find the destroyed window)
18325         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
18326         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
18327
18328 2006-03-31  Jackson Harper  <jackson@ximian.com>
18329
18330         * ScrollableControl.cs: Dont recalc if we are not visible.
18331
18332 2006-03-31  Mike Kestner  <mkestner@novell.com>
18333
18334         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
18335         the visibility branch.
18336
18337 2006-03-31  Jackson Harper  <jackson@ximian.com>
18338
18339         * ScrollBar.cs: Cap values when incrementing/decrementing.
18340
18341 2006-03-31  Mike Kestner  <mkestner@novell.com>
18342
18343         * MenuAPI.cs: setup menu.tracker for popup/context menus.
18344         * ToolTip.cs: guard against timer expirations with no active control.
18345         Not sure why it happened.
18346
18347 2006-03-31  Mike Kestner  <mkestner@novell.com>
18348
18349         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
18350         text.
18351         * ToolTip.cs: Position the tooltip based on where the cursor is at
18352         popup time, not at MouseEnter time.  Add a Down state so that we don't
18353         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
18354         positioning offset. Lookup DisplaySize at positioning time, since it
18355         can theoretically change during invocation.
18356         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
18357         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
18358
18359 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
18360
18361         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
18362           Fixes behaviour when the Text property of the box is String.Empty
18363
18364 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
18365
18366         * XplatUIX11.cs: Only send mouseleave for our client windows, not
18367           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
18368           a window)
18369
18370 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
18371
18372         * FileDialog.cs: Visual enhancement for the popup buttons in 
18373           PopupButtonPanel
18374
18375 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
18376
18377         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
18378           code
18379
18380 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
18381
18382         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
18383           highlighted menu items to match ms
18384
18385 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
18386
18387         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
18388
18389 2006-03-30  Mike Kestner  <mkestner@novell.com>
18390
18391         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
18392         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
18393         go active to account for HotLight to Selected transition.
18394         * MenuItem.cs: add internal Selected prop. Fill out the Status
18395         property by calculating it from item info. Add HotLight,
18396         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
18397
18398 2006-03-30  Mike Kestner  <mkestner@novell.com>
18399
18400         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
18401
18402 2006-03-29  Jackson Harper  <jackson@ximian.com>
18403
18404         * Form.cs: Implement TODO.
18405
18406 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
18407
18408         * PrintPreviewDialog.cs: Implemented missing methods and events; still
18409           missing proper dialog setup in the constructor
18410
18411 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
18412
18413         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
18414         * Control.cs:
18415           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
18416           - Fixed ResetBindings and removed TODO
18417           - Added check for cross-thread calls to get_Handle()
18418           - Added Marshaller attribute for set_Font to satisfy class status
18419         * FontDialog.cs: Removed TODOs that seemed implemented
18420         * UpDownBase.cs: Removed unneeded TODO and Fixme
18421         * MessageBox.cs: Implemented support for Default button and removed TODO
18422         * FileDialog.cs: Removed obsolete TODO
18423         * DomainUpDown.cs: Removed obsolete TODO
18424         * ButtonBase.cs: Removed obsolete TODO
18425         * XplatUIWin32.cs: Removed obsolete TODO
18426         * Form.cs:
18427           - Removed obsolete TODO
18428           - Calling CheckAcceptButton when the acceptbutton is changed to allow
18429             internal status updates
18430           - Making sure the active control is selected when the control is created
18431         * CurrencyManager.cs: Removed obsolete TODO
18432
18433 2006-03-29  Mike Kestner  <mkestner@novell.com>
18434
18435         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
18436         of PrintPreviewDialog and RichTextBox.
18437
18438 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
18439
18440         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
18441           DarkDark, Light and LightLight colors for a specific color
18442         * ThemeWin32Classic.cs:
18443           - Use Button drawing code to draw RadioButtons and CheckBoxes with
18444             Appearance = Button 
18445           - Make use of the new ResPool helper CPColor
18446           - Draw ProgressBar and StatusBar with correct 3D borders
18447
18448 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
18449
18450         * ColorDialog.cs: Return selected color. Fixes bug #77940.
18451
18452 2006-03-28  Mike Kestner  <mkestner@novell.com>
18453
18454         * ListView.cs: fix Icon layout to plan for scrollbar widths when
18455         calculating col/row counts.
18456
18457 2006-03-28  Mike Kestner  <mkestner@novell.com>
18458
18459         * ColumnHeader.cs:
18460         * ListView.cs:
18461         * ListViewItem.cs:
18462         * Menu.cs: 
18463         switch to explicit interface method implementation for some methods
18464         corcompare identifies as inconsistent with MS.
18465
18466 2006-03-28  Mike Kestner  <mkestner@novell.com>
18467
18468         * MainMenu.cs: 
18469         * Menu.cs:
18470         add a few missing methods from the class status output.
18471
18472 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
18473
18474         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
18475           correct.
18476
18477 2006-03-28  Mike Kestner  <mkestner@novell.com>
18478
18479         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
18480
18481 2006-03-27  Mike Kestner  <mkestner@novell.com>
18482
18483         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
18484         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
18485
18486 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
18487
18488         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
18489
18490 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18491
18492         * ThemeWin32Classic.cs:
18493           - GroupBox: Inserted a little gap between the text and the lines
18494             on the right side
18495           - Made the code in CPDrawBorder3D more readable
18496           - Corrected the drawing location of the up and down arrows in 
18497             CPDrawScrollButton
18498
18499 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18500
18501         * ControlPaint.cs: Corrected line widths in DrawBorder for
18502           ButtonBorderStyle Inset and Outset
18503
18504 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18505
18506         * ThemeWin32Classic.cs:
18507           - Rewrote the totally broken CPDrawBorder3D method. That was
18508             one of the main problems for the terrific ThemeWin32Classic
18509             look
18510           - Updated and corrected Button drawing
18511           - Correct the dimensions of the SizeGrip to match ms ones
18512           - Removed a small drawing glitch in DrawComboBoxEditDecorations
18513         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
18514           Border3DStyle.Sunken to match ms.
18515
18516 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18517
18518         * ThemeWin32Classic.cs: First small part of the "de-uglify
18519           ThemeWin32Classic" effort, SizeGrip
18520
18521 2006-03-24  Jackson Harper  <jackson@ximian.com>
18522
18523         * XplatUIX11.cs: Give a max idle time of one second, this matches
18524         MS and forces an Idle event every second when there are no other
18525         events in the queue.
18526
18527 2006-03-24  Mike Kestner  <mkestner@novell.com>
18528
18529         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
18530         * ListView.Item.cs: fix layout issues with null image lists and images
18531         smaller than checkbox size.
18532         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
18533         mode like MS does.  It's weird, but consistent.  ;-)
18534         Fixes #77890.
18535
18536 2006-03-24  Mike Kestner  <mkestner@novell.com>
18537
18538         * ListView.cs: Scroll wheel support for the item control.  Fixes
18539         #77839.
18540
18541 2006-03-23  Jackson Harper  <jackson@ximian.com>
18542
18543         * ScrollableControl.cs: Special case negative sized areas, not
18544         zero.
18545         * MonthCalendar.cs: Save the rect of the clicked date so we can
18546         use it for invalidation.
18547         - Try to cut down on the number of invalidates
18548         - Invalidate the rect the mouse is over and was over when moving
18549         the mouse, so we get the focus box following the cursor.
18550
18551 2006-03-23  Mike Kestner  <mkestner@novell.com>
18552
18553         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
18554         focus rectangle drawing. Fixes #77835.
18555
18556 2006-03-23  Mike Kestner  <mkestner@novell.com>
18557
18558         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
18559         the if and else if and reverting back to the original == check on the
18560         None conditional.
18561
18562 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
18563
18564         * FontDialog.cs: Update the example panel if the selected index of
18565           the fontListBox changes.
18566
18567 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
18568
18569         * FileDialog.cs: Make FileDialog remember which directory it was in
18570           last in the same execution.
18571
18572 2006-03-22  Mike Kestner  <mkestner@novell.com>
18573
18574         * FileDialog.cs: make the DropDownMenu on the toolbar display
18575         RadioChecks since they are mutually exclusive and that's what MS does.
18576
18577 2006-03-22  Mike Kestner  <mkestner@novell.com>
18578
18579         * Theme.cs: add Color param to CPDrawMenuGlyph.
18580         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
18581         checks and radio marks and arrows are visible on highlighted items.
18582         * ControlPaint.cs: update to use new Theme signature.
18583
18584 2006-03-22  Mike Kestner  <mkestner@novell.com>
18585
18586         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
18587         is active. Fixes #77870.
18588
18589 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
18590
18591         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
18592           to be focused/selected after startup
18593
18594 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
18595
18596         * ColorDialog.cs: 
18597           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
18598             CustomColors and ShowHelp properties
18599           - Some internal rewrites to get better results when using the
18600             ColorMatrix
18601
18602 2006-03-22  Mike Kestner  <mkestner@novell.com>
18603
18604         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
18605         HoverSelection.  Fixes #77836.
18606
18607 2006-03-22  Mike Kestner  <mkestner@novell.com>
18608
18609         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
18610         ToggleButtons.  (De)Sensitize the Back button around a stack count of
18611         1, not 0.  Update ButtonSize based on a pixel count of the win32
18612         control.  Adjust the toolbar size/location for new button size.
18613
18614 2006-03-22  Jackson Harper  <jackson@ximian.com>
18615
18616         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
18617         true.
18618         * ScrollBar.cs: When doing increments and decrements we need to
18619         set the Value property so that ValueChanged gets raised. A
18620         possible optimization here would be to make an internal SetValue
18621         that doesn't invalidate immediately.
18622         * ToolTip.cs: Tooltips get added to their container (when
18623         supplied) so they get disposed when the container is disposed.
18624         - Don't create tooltips for String.Empty. This prevents all these
18625         little 2-3 pixel windows from showing up when running nunit-gui
18626         and driving me mad.
18627         * Form.cs: Don't set topmost when setting the owner if the handles
18628         haven't been created yet.  The topmost set will happen when the
18629         handles are created.
18630
18631 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
18632
18633         * XplatUIX11.cs:
18634           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
18635           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
18636             visible (to allow them to recalculate their sizes)
18637
18638 2006-03-21  Mike Kestner  <mkestner@novell.com>
18639
18640         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
18641         methods. Removed a ton of redundant code.  Still not really happy with
18642         the border rendering, but I think that's mainly because of the
18643         ControlDarkDark being black instead of a dark grey. Depending on how 
18644         close we want to be, we might want to revisit those color choices.
18645         Among the new features added during the refactor were DropDownArrow
18646         pressed rendering, Disabled image rendering.  Proper flat appearance
18647         boundary rendering.  Removed the Divider and Wrapping dividers since I
18648         can't figure out any combination of themes and conditions to make the
18649         MS control draw a horizontal line on a toolbar despite what the
18650         Divider property docs indicate.
18651         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
18652         conditions and incorrect layout.  Updated to coding standard.
18653         * ToolBarButton.cs: refactored layout and positioning code from
18654         ToolBar to here.  Invalidate wherever possible instead of forcing
18655         redraws of the whole toolbar. 
18656         (Known remaining issues: explicit ButtonSize smaller than provided
18657         images.)
18658
18659 2006-03-21  Mike Kestner  <mkestner@novell.com>
18660
18661         * ContextMenu.cs (Show): use the position parameter instead of just
18662         showing at the MousePosition.
18663
18664 2006-03-21  Jackson Harper  <jackson@ximian.com>
18665
18666         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
18667         control handle this.
18668         * TreeNodeCollection.cs: If we are clearing the root node we need
18669         to reset top_node so calcs can still happen.
18670         * ThemeWin32Classic.cs: This is a Flags so we need to check
18671         properly.
18672         
18673 2006-03-21  Jackson Harper  <jackson@ximian.com>
18674
18675         * DataGrid.cs: Create columns when the binding context has been
18676         changed.
18677         * X11Structs.cs: Keysyms are uints.
18678         - Add size to fix build.
18679
18680 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
18681
18682         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
18683           XplatUIOSX.cs: 
18684           - Added ResetMouseHover method to allow controls to retrigger
18685             hovering if they need it more than once
18686           - Implemented MouseHoverTime and MouseHoverSize properties
18687         * Timer.cs: Start() must reset the interval
18688         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
18689           properties
18690
18691 2006-03-21  Jackson Harper  <jackson@ximian.com>
18692
18693         * X11Keyboard.cs: improved layout detection. Move the nonchar
18694         tables into this file.
18695         * KeyboardLayouts.cs: Move the tables into resource files.
18696
18697 2006-03-21  Mike Kestner  <mkestner@novell.com>
18698
18699         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
18700
18701 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
18702
18703         * Mime.cs: Various speed optimizations. Looking up mime types
18704           is now 2 times faster than before
18705
18706 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
18707
18708         * CreateParams.cs: Added internal menu field
18709         * Control.cs: 
18710           - Switched call order for UpdateBounds; now we always call
18711             the one that also takes ClientSize, and we're calculating the 
18712             client size via driver method in the others. The previous
18713             method of tracking client size by difference wasn't working
18714             for forms where even the starting client size wouldn't match
18715             the overall form size (due to borders) (Part of fix for #77729)
18716           - CreateParams(): Do not use parent.Handle unless the handle is
18717             already created. Causes havoc with Nexxia and throws off our
18718             creation of controls
18719         * XplatUIX11.cs:
18720           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
18721           - Switched handling of ConfigureNotify over to new PerformNCCalc 
18722             method (consolidates code)
18723           - Changed RequestNCRecalc to use new PerformNCCalc method
18724           - Added calls to RequestNCRecalc when menus and borders are changed
18725             to allow app to set NC size. (Part of fix for #77729) This matches
18726             when MS send a WM_NCRECALC on Win32 windows.
18727           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
18728             (Part of fix for #77729). This matches what MS does, they also
18729             send that message when the form is made visible.
18730           - XException.GetMessage: Improved usability of X errors by including
18731             a translation of the window into Hwnd and Control class
18732           - Improved debug info for window creation, reparenting and destruction
18733           - Created helper method WindowIsMapped() [Currently not used]
18734         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
18735         * Form.cs:
18736           - CreateParams: Now setting our menu on the new internal menu field
18737           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
18738             avoid calculating the same property twice
18739         * Hwnd.cs:
18740           - Improved usability of ToString() for debugging purposes
18741           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
18742             determine the height of the menu, instead of just the font. This
18743             required to also create a graphics context and to keep a bmp 
18744             around (for performance reasons)
18745
18746 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
18747
18748         * MenuAPI.cs: Added OnMouseUp method
18749         * Form.cs:
18750           - Now remembering the requested client size, avoids size errors
18751           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
18752             instead of base if the menu is active. This is required due to
18753             control now capturing and releasing on down/up and it would
18754             prematurely release our menu capture
18755
18756 2006-03-17  Jackson Harper  <jackson@ximian.com>
18757
18758         * KeyboardLayouts.cs: Add the czech layouts.
18759
18760 2006-03-16  Jackson Harper  <jackson@ximian.com>
18761
18762         * Control.cs: Use the viewport space when sizing not the controls
18763         client size, so things like ScrollableControl that effect the
18764         viewport size (when scrollbars are added) are computed correctly.
18765         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
18766         of ManagerEntrys.
18767         - Handle creating BindingManagers for null data sources.
18768         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
18769         source, otherwise when rows are added they are added to the 'fake'
18770         datasource and we will crash when trying to set the position in
18771         those rows.
18772         - Use Implicit scrollbars on the datagrid so they arent
18773         selectable.
18774         
18775 2006-03-16  Jackson Harper  <jackson@ximian.com>
18776
18777         * Binding.cs:
18778         * InternalWindowManager.cs:
18779         * MdiWindowManager.cs:
18780         * X11Keyboard.cs: I really want Mike to love me again (fix
18781         compiler warnings).
18782
18783 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
18784
18785         * DataGrid.cs:
18786           - OnMouseDown: Switch to editing mode when clicking on the cell
18787                          even if we're clicking on the cell that's currently 
18788                          selected
18789           - ProcessGridKey: Left/Right now wrap like MS.Net does
18790           - ProcessGridKey: Tab now knows to add a new row when tab is
18791                             pressed in the cell of the last column of the 
18792                             last row
18793           - ProcessGridKey: Enter now adds another row  if pressed in the last
18794                             row and selectes the new row, same column cell
18795           - ProcessGridKey: Home/End navigate columns, not rows, like 
18796                             originally implemented
18797           - Broke ProcessKeyPreview code out into an extra Internal method
18798             so it can be called from the edit code
18799         * DataGridTextBox.cs (ProcessKeyMessage):
18800           - Switched to accept Tab keypresses
18801           - Added F2 handling to allow jumping to the end of the edited cell
18802           - Added logic to allow moving caret left/right inside edited cell
18803             and making the edited cell jump when the caret hits cell borders
18804           - Tab and Enter are now passed to the datagrid after being handled
18805         * TextBoxBase.cs:
18806           - Removed capture code now that Control handles it
18807           - set_SelectionStart now ensures caret is visible
18808
18809 2006-03-16  Jackson Harper  <jackson@ximian.com>
18810
18811         * TrackBar.cs: Debackwards the increment/decrement for handling
18812         mouse clicks on the bar with vertical trackbars.
18813         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
18814         bottom to match MS.
18815
18816 2006-03-16  Mike Kestner  <mkestner@novell.com>
18817
18818         * ListView.cs: make shift/ctrl keyboard and mouse selection 
18819         consistent with the MS control. Fix a bug in
18820         SelectedListViewItemCollection.Clear that was pissing me off for the
18821         better part of a day because the collection was being altered
18822         underneath us as we walked the list.
18823
18824 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
18825
18826         * Control.cs: Not sure how we could miss this so long, but it seems
18827           that MS.Net has Capture set all the way from before calling 
18828           OnMouseDown through sending the mouse events until after
18829           OnMouseUp. This will fix DataGrid's selection being set to end
18830           at the location of the MouseUp.
18831
18832 2006-03-15  Jackson Harper  <jackson@ximian.com>
18833
18834         * BindingContext.cs: Check the binding after its added so that it
18835           can initialize the binding managers and hookup to events.
18836         * Binding.cs: Data members seem to sometimes include rows/cols in
18837           the format Row.Column we now take this into account.
18838           - Hookup to the position changed event so we can update the
18839           control when the position has changed in the data set.
18840         * CurrencyManager.cs: Take into account the row/col naming
18841           convention when creating dataset tables.
18842         * BindingContext.cs: Using a newer better way of storing
18843           datasource/datamember pairs.  Hopefully this better matches MS for
18844           looking up binding managers.
18845
18846
18847 2006-03-15  Jackson Harper  <jackson@ximian.com>
18848
18849         * BindingContext.cs: The currency manager needs the data member
18850         name, if the member is a data set we use the name to find the
18851         correct table.
18852         * CurrencyManager.cs: When creating the list prefer an IList over
18853         an IListSource.
18854         - Attempt to create a DataTable from a DataSet (TODO: might need
18855         some better error checking here, although MS doesn't seem to have much)
18856         - If we have a DataTable create a view and use it as our list.
18857
18858 2006-03-15  Mike Kestner  <mkestner@novell.com>
18859
18860         * ListView.cs: keep a matrix of the icon mode layout to facilitate
18861         keyboard navigation. Support Up/Down/Left/Right selection correctly
18862         for all 4 View modes.
18863         * ListViewItem.cs: add internal row/col fields for icon layouts.
18864
18865 2006-03-15  Jackson Harper  <jackson@ximian.com>
18866
18867         * TabControl.cs: Redraw the tabs when we resize so their newly
18868         calculated sizes are drawn on screen.
18869         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
18870         composite characters.
18871         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
18872         - filter events so that composite characters can be created
18873         patches by peter
18874         * X11Structs.cs: Add XIMProperties enum.
18875
18876 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
18877
18878         * Control.cs (BringToFront, SendToBack): Don't use window or handle
18879           unless it's created
18880
18881 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
18882
18883         * Control.cs (PerformLayout): We don't need to consider visiblity
18884           for anchoring, only for docking. This fixes 'whacky' alignment
18885           in listbox and other controls that use implicit scrollbars after
18886           the previous PerformLayout patch
18887         * ListBox.cs: Switched to use implicit scrollbars
18888           
18889 2006-03-14  Mike Kestner  <mkestner@novell.com>
18890
18891         * ToolBar.cs: 
18892         * VScrollBar.cs:
18893         - chain up the "new event" overrides to base and use
18894         OnEvent to raise them.  Part of fix for bug #76509.
18895
18896 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
18897
18898         * FileDialog.cs: Do not select an item in the parent directory
18899           on backspace
18900
18901 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
18902
18903         * Control.cs (PerformLayout): It would seem that we considered
18904           invisible windows for our layout. Not quite the right thing
18905           to do. Now we don't any longer, thereby fixing bug #76889.
18906
18907 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
18908
18909         * Control.cs (CanFocus): I goofed. A control can have focus 
18910           even though it's not selectable. Made it match MS docs.
18911
18912 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
18913
18914         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
18915           center by default (fixes #76895)
18916         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
18917           all uses of Border3DSides.All with the explicit ORd together
18918           Left|Right|Top|Bottom because I assume that nobody was aware 
18919           that All also implies a center fill. Most places I checked had
18920           a fill right above.
18921         * ProgressBarStyle.cs: Added
18922
18923 2006-03-13  Mike Kestner  <mkestner@novell.com>
18924
18925         * ListView.cs: fix breakage in drag shadow header positioning 
18926         from Peter's csc compilation fix.
18927
18928 2006-03-13  Mike Kestner  <mkestner@novell.com>
18929
18930         * ListView.cs: fix NRE produced by backspacing twice in a focused
18931         FileDialog.
18932
18933 2006-03-13  Mike Kestner  <mkestner@novell.com>
18934
18935         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
18936
18937 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
18938
18939         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
18940           be changed
18941         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
18942           the allowed size before making programmatic size changes
18943
18944 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
18945
18946         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
18947           set, metacity is broken and will still use the emty sizes in 
18948           the struct. (Fix for #77089)
18949
18950 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
18951
18952         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
18953           WindowExStyles and marked both enums as Flags
18954         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
18955           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
18956           to match WindowStyles split
18957         * XplatUIX11.cs:
18958           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
18959           - Updated to match WindowStyles split
18960         * XplatUIWin32.cs:
18961           - Fixed FosterParent creation, was using ExStyle on the Style field
18962             (This should help with Popup focus issues)
18963           - Updated to match WindowStyles split
18964
18965 2006-03-13  Jackson Harper  <jackson@ximian.com>
18966
18967         * MdiWindowManager.cs: Use the system menu height. Fixes some
18968         strange sizing issues.
18969
18970 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
18971
18972         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
18973         * TextBoxBase.cs:
18974           - Scroll to caret after inserting text (#77672)
18975           - Make scroll range one pixel higher, fixes off-by-one error (and
18976             makes underlines visible on the last line)
18977
18978 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
18979
18980         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
18981           the keyboard state from being stuck with keys in 'pressed' state when
18982           focus is switched away via keyboard
18983         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
18984           reset the keyboard if no X11 KeyUp events are expected to come
18985         * X11Structs.cs: Switched type of Visible to bool to match driver
18986
18987 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
18988
18989         * TextControl.cs:
18990           - Switched caret to be just 1 pixel wide, matches MS and looks less
18991             clunky
18992           - Moved caret display 1 pixel down from the top of the control
18993             to improve view
18994           - InsertCharAtCharet: Update the selection start if moving the caret
18995             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
18996           - No longer always creating the caret when the caret methods are
18997             called. Only the actual ShowCaret/HideCaret will do that now
18998           - Only setting caret visible if the owner control has focus
18999           - UpdateView: Added invalidation-shortcut logic for center and right 
19000             aligned text. Previously we'd update all according to the left
19001             logic which caused drawing errors. Also fixed height of invalidated
19002             areas, now properly invalidating the whole area (was off-by-one)
19003           - owner_HandleCreated: Always generate the document when the
19004             handle is created; this ensures that 
19005         * TextBoxBase.cs:
19006           - Fixed situation where caret would disappear under the right
19007             window border, also improved scrolling behaviour on left-
19008             aligned textboxes
19009           - Fixed right-aligned textboxes to have a border to the
19010             right instead of the caret being under the right border
19011         * XplatUIX11.cs:
19012           - Switched from 'nested' to simple visible/not visible tracking 
19013             for caret (part of fix for #77671)
19014           - No longer passing through translated FocusIn/FocusOut messages
19015             since we were notifying too often and the wrong windows. Instead
19016             we just notify our focussed window of receiving or loosing focus
19017         * XplatUIWin32.cs: Switched from 'nested' show/hide 
19018           counting for caret to simple visible yes/no behaviour (part of 
19019           fix for #77671)
19020
19021 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
19022
19023         * Mime.cs: Remove debug code...
19024
19025 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
19026
19027         * MimeGenerated.cs: Removed
19028         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
19029           and subclasses) from /usr/(local/)share/mime and
19030           $HOME/.local/share/mime.
19031
19032 2006-03-10  Jackson Harper  <jackson@ximian.com>
19033
19034         * MdiWindowManager.cs: Recalc the NC area when a window is
19035         maximized/restored so that the menu area is drawn on forms that
19036         don't have a menu.
19037
19038 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19039
19040         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
19041           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
19042           us to force a WM_NCCALCRESIZE message being sent. This is needed
19043           for MDI maximizing.
19044
19045 2006-03-10  Jackson Harper  <jackson@ximian.com>
19046
19047         * Form.cs: We need to use the ActiveMenu when calculating menu
19048         height.
19049         - Fix nullref when the window manager hasn't been created yet.
19050         * Control.cs: Fix nullref when we try to bring a control to the
19051         front that has no parent.
19052         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
19053         height.
19054         - Add a dummy item to the maximized menu so it always has the
19055         correct height. Otherwise when there are no menus we don't get our
19056         icon and buttons.
19057         
19058
19059 2006-03-10  Jackson Harper  <jackson@ximian.com>
19060
19061         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
19062         stuff.
19063         * Form.cs: Make the window_state internal so the window managers
19064         can track it.
19065         - When an MDI child is maximized let its window manager create the
19066         main menu (so it can add its icon).
19067         - Notify the window managers of state changes
19068         - Let the window manager paint its buttons and handle button
19069         clicks on the menu when it is maximized.
19070         * InternalWindowManager.cs: Move the prev_bounds into the mdi
19071         window manager, since tool windows don't use it, only mdi windows.
19072         - Tell the main form that we don't want it to handle NCPAINT
19073         itself to avoid extra painting.
19074         - Handle clicks on a maximized windows menu.
19075         - Handle window state changes
19076         - Handle minimize/maximize clicks correctly by setting the window state.
19077         * MdiWindowManager.cs: Add an icon menu that (the menu you get
19078         when clicking on the forms icon).
19079         - New method to create a forms maximized menu. This is its normal
19080         menu + an icon.
19081         - Handle window state changes.
19082         - Handle sizing of maximized windows.  Maximized windows are just
19083         drawn bigger then the parent visible area. All controls are still
19084         there, they are just outside the visible area (this matches windows).
19085         * MdiClient.cs: No scrollbars when a child window is maximized.
19086         - Let the children windows figure out how big they should be when
19087         sizing maximized windows.
19088         - Implement a version of ArrangeIconicWindows somewhat similar to
19089         Windows version.  There are some little differences, but I don't
19090         think any app will rely on the layout of minimized mdi windows.
19091
19092 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19093
19094         * Padding.cs: Several fixes to allow compiling with csc 2.0
19095
19096 2006-03-09  Jackson Harper  <jackson@ximian.com>
19097
19098         * Menu.cs:
19099         * MenuItem.cs: Cheap hack so we can add items to the list without
19100         the events being raised.  This allows adding mdi items during
19101         drawing. TODO: Should probably find a better time to add the items.
19102
19103 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19104
19105         * ThemeWin32Classic.cs:
19106           - CheckBox_DrawText: Added logic to not wrap if not enough space
19107             is available (Fix for bug #77727)
19108           - RadioButton_DrawText: Added logic not to wrap if not enough
19109             space is available (Fix for bug #77727). Also removed some
19110             duplicate code, DrawString always drawing the regular text
19111             before hitting the if statement.
19112
19113 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
19114
19115         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
19116
19117 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19118
19119         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
19120         * ContainerControl.cs: Partial implementation of some 2.0 scaling
19121           methods. Moved the new 2.0 properties into alphabetical order with
19122           other properties and added MonoTODO tags
19123
19124 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
19125
19126         * AutoScaleMode.cs: Added. Fix build.
19127
19128 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19129
19130         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
19131           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
19132           and was requiring premature handle creation for calls from above
19133         * Form.cs, Control.cs: Removed handle arguments from calls to
19134           CalculateClientRect()
19135
19136 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
19137
19138         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
19139           drag_column.column_rect is MarshalByRef and can't be used that way
19140
19141 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19142
19143         * AxHost.cs: Added deserialization constructor for 
19144           AxHost+State (fixes 77743)
19145
19146 2006-03-09  Mike Kestner  <mkestner@novell.com>
19147
19148         * ListView.cs: 
19149         - Added column drag reordering for details view.
19150         - fixed behavior when mouse is dragged off column and
19151         AllowColumnReorder is false.
19152         * ColumnHeader.cs: clone the format too in Clone.
19153         * Theme.cs: add DrawListViewHeaderDragDetails method.
19154         * ThemeWin32Classic.cs:
19155         - impl new method for drawing drag column shadows and targets.
19156         - support column offset for details mode in DrawListViewItem.
19157
19158 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19159
19160         * TextControl.cs: Reset the char_count when the document is cleared
19161           (Fixes bug reported on mono-winforms mailing list)
19162
19163 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
19164
19165         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
19166           of calling base we simply process the key ourselves, since both
19167           DefWindowProc and the handled method would set m.Result. 
19168           (Fixes #77732)
19169
19170 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19171
19172         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
19173           method also moves the window; instead implemented a copy of
19174           Control.ScaleCore (Part of fix for #77456)
19175         * TextBoxBase.cs: 
19176           - Created new CreateGraphicsInternal method to allow providing
19177             a graphics context when no handle is created without triggering
19178             handle creation. (Part of fix for #77456)
19179           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
19180         * TextControl.cs: 
19181           - Switched Constructor to require TextBoxBase instead of Control (to
19182             allow uncast access to CreateGraphicsInternal)
19183           - Safeguarded use of owner.Handle property. No longer accessing it
19184             unless the handle is already created.
19185           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
19186           - Now triggering a recalc when owning control becomes visible
19187         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
19188           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
19189           premature handle creation (Part of fix for #77456)
19190         * Control.cs:
19191           - We now only destroy our double-buffering buffers when the
19192             control is resized or disposed, but not when visibility
19193             changes. (The code even re-created them twice every time)
19194           - Now requiring a redraw of the buffer on visibility changes
19195             (fixes bug 77654 part 2)
19196           - Not passing OnParentVisibleChanged up unless the control
19197             is visible
19198           - CanFocus: Fixed to match MS documentation
19199           - Focus: Fixed to return actual focus state and to check if
19200             setting focus is legal before setting it
19201
19202 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
19203
19204         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
19205           when to draw focus rectangle by looking at parent focus and
19206           selected state instead. This fixes TabPages on Linux sometimes
19207           having none or multiple focus rectangles.
19208         * XplatUIX11.cs (SetFocus): 
19209           - Don't set the focus if the same window already has focus
19210           - Use SendMessage instead of PostMessage (like it's Win32
19211             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
19212             to match MS behaviour
19213         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
19214           are not selectable.
19215
19216 2006-03-07  Jackson Harper  <jackson@ximian.com>
19217
19218         * PictureBox.cs: Revert line I accidently committed last week.
19219
19220 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19221
19222         * Control.cs: 
19223           - Added new IsRecreating and ParentIsRecreating properties to
19224             allow testing if RecreateHandle has been called on ourselves
19225             or one of our parents
19226           - WndProc(WM_DESTROY): If our control handle is being recreated
19227             we immediately need to create the handle when receiving the
19228             destroy, that way our child windows find a valid parent handle
19229             when they themselves are being recreated upon WM_DESTROY receipt
19230             (fix for bug #77654 part 1)
19231         * XplatUIX11.cs:
19232           - DestroyWindow: WM_DESTROY must be sent to our own window before
19233             notifying any child windows. MS documents that child windows
19234             are still valid when WM_DESTROY is received. (Control now relies on
19235             this behaviour)
19236           - Added some fine-grain debug options
19237
19238 2006-03-06  Jackson Harper  <jackson@ximian.com>
19239
19240         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
19241         box and base calculations off this.
19242         * MdiChildContext.cs:
19243         * MdiWindowManager.cs: Don't need to ensure scrollbars here
19244         anymore.
19245         
19246 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
19247
19248         * Splitter.cs: In situations where the affected control is added
19249           to the parent's control list after the splitter, we would not
19250           populate affected. Now we try populating it on mousedown, if
19251           it's not already set, and force it to be re-set whenever our
19252           parent changes.
19253
19254 2006-03-03  Matt Hargett  <matt@use.net>
19255
19256         * Control.cs: implement Control.Padding
19257         * Padding.cs: -Padding.All returns -1 when constructing with the
19258         implicit default ctor
19259         -Padding.ToString() matches MS.NET
19260         * ContainerControl.cs: implement
19261         ContainerControl.AutoScaleDimensions
19262         * ListControl.cs: implement ListControl.FormattingEnabled
19263         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
19264         * ButtonBase.cs:
19265         * TabPage.cs: Implement UseVisualStyleBackColor.
19266         * PictureBox.cs: Implement PictureBox.InitialImage.
19267
19268 2006-03-03  Mike Kestner  <mkestner@novell.com>
19269
19270         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
19271         event declarations to proxy to base event.
19272         * ListViewItem.cs: update to use ItemControl.
19273         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
19274         * ThemeWin32Classic.cs: update to new ListView theme API and fix
19275         column header label rendering for 0 width columns.
19276
19277 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
19278
19279         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
19280           that causes the control to be created. Fixes #77476.
19281
19282 2006-03-02  Jackson Harper  <jackson@ximian.com>
19283
19284         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
19285         expose_pending.
19286
19287 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
19288
19289         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
19290           passed in for the EventArgs (fixes #77690)
19291
19292 2006-03-01  Jackson Harper  <jackson@ximian.com>
19293
19294         * ScrollBar.cs: Refresh afterbeing resized.
19295
19296 2006-02-28  Mike Kestner  <mkestner@novell.com>
19297
19298         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
19299         Clean up a tracker compile warning.
19300         * MenuItem.cs: add internal PerformPopup method.
19301         [Fixes #77457]
19302
19303 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
19304
19305         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
19306           implicit expose) when the text is set to null
19307
19308 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
19309
19310         * RichTextBox.cs (FlushText): When newline is true, we always
19311           need to split the line, even if no text is on it and we may
19312           never eat newlines. (Fixes #77669)
19313
19314 2006-02-28  Mike Kestner  <mkestner@novell.com>
19315
19316         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
19317         and set Selected instead.
19318         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
19319         collections.
19320
19321 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
19322
19323         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
19324
19325 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
19326
19327         * FontDialog.cs:
19328           - Got rid of the panel. All controls are now directly added to
19329             the dialog form
19330           - It is now possible to set a font with the Font property
19331           - MinSize and MaxSize property do now what they should
19332           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
19333           - Searching and selecting a font with the font textbox works now,
19334             the same applies to the style and size textbox
19335           - Draw the correct 3D border in the example panel
19336           - Fixed a little mem leak (unused fonts didn't get disposed)
19337           - Many other internal updates/rewrites...
19338           - Fix typo
19339
19340 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
19341
19342         * TextControl.cs: 
19343           - InsertRTFFromStream: Added 'number of characters inserted' argument
19344           - set_SelectedRTF: Now using the number of characters to calculate
19345             the new location for the selection and cursor (x/y cannot be used
19346             due to potentially already wrapped text)
19347
19348 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
19349
19350         * TextControl.cs: Added property and implemented means to allow 
19351           disabling recalculation of a document (can be used to speed up
19352           multiple inserts and is needed to make RTF inserts predictable, see
19353           bug #77659)
19354         * RichTextBox.cs: Using the new NoRecalc property of Document to
19355           keep x/y insert locations predictable. Also makes it faster inserting
19356           large chunks of RTF
19357
19358 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
19359
19360         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
19361           it's easier for a child control to handle the other messages without
19362           having to duplicate the special functionality
19363         * TextBoxBase.cs
19364           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
19365             code to handle processing the key ourselves, in order to get 
19366             access to the result of KeyEventArgs.Handled. We now only call 
19367             ProcessKey if they key hasn't been handled already. Fixes #77526.
19368           - set_Text: If null or empty string is given, just clear the 
19369             document. Fixes part of #77526
19370
19371 2006-02-27  Jackson Harper  <jackson@ximian.com>
19372
19373         * SizeGrip.cs: Paint the background color before painting the grip
19374         so things look right.
19375         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
19376
19377 2006-02-27  Mike Kestner  <mkestner@novell.com>
19378
19379         * ListView.cs:
19380           - Restructure layout and invalidation model to remove a ton of
19381           flicker from the control and speed up performance in general.
19382           - Add manual column resize, flickers like crazy, but I already have
19383           some ideas on how I'll fix that. (#76822)
19384           - Merge the three Icon-based views into a single layout method.
19385           - Move item selection interaction logic from the item since 
19386           interaction with the collections is more appropriate to the view.
19387           - Deselection on non-item clicks.
19388         * ListViewItem.cs:
19389           - Encapsulate most of the layout. Add some internal props to trigger
19390           layout.  Move to a model where Items invalidate themselves instead
19391           of just invalidating the whole control every time something changes.
19392           - Invalidate on Text/Caption changes.
19393           - switch to an offset based layout model to avoid having to absolute
19394           position every element on item moves.
19395           - correct checkbox layout to conform to MS layout.
19396         * ThemeWin32Classic.cs:
19397           - refactor some column header drawing code.
19398           - fix string justification for column headers (#76821)
19399           - make SmallIcon labels top justified for compat with MS impl.
19400         * ThemeClearlooks.cs:
19401           - adjust to new ListViewItem internal checkbox bounds api.
19402
19403 2006-02-27  Jackson Harper  <jackson@ximian.com>
19404
19405         * Control.cs:  Change where implicit controls fall in the zorder.
19406         They are now on top of all children.
19407         - Synced AddImplicit code with Add
19408         - Removed unused enumerator.
19409         * SizeGrip.cs: Remove the TODO as its been TODONE.
19410
19411 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
19412
19413         * TextControl.cs(Insert): Combine the last lines unless the insertion
19414           string ends with \n\n, otherwise we leave one line too many (Fixes
19415           something I noticed with the testapp for #77526; the bug itself was
19416           already fixed in the previous checkin)
19417
19418 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
19419
19420         * RichTextBox.cs:
19421           - SelectionColor and SelectionFont methods no longer set absolute
19422             styles. Instead, the keep font or color respectively (This 
19423             resolves a long-standing FIXME in the code)
19424           - When flushing RTF text, the insert code now considers text trailing
19425             behind the insertion point (Fixes the bug where when replacing
19426             the selected text via SelectedRTF the remainder of the line behind 
19427             the selection would stay on the first insertion line)
19428         * TextBoxBase.cs:
19429           - AppendText now updates the selection points after inserting text
19430           - AppendText now ensures that the last tag (sometimes 0-length) of
19431             the document is used for the style information (Fixes part of 
19432             bug #77220)
19433         * TextControl.cs:
19434           - Created new FontDefiniton class to allow describing partial style
19435             changes
19436           - StreamLine() now takes a lines argument, to allow it to decide
19437             whether an encountered zero-length tag is the last in the document
19438             (which must be kept to not loose the font/color contained in it,
19439             for later appends)
19440           - Created Combine() and Split() methods for Marker structs, to 
19441             support marker updates due to reformatted documents (soft line
19442             wraps)
19443           - Implemented Document.CaretTag setter
19444           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
19445             of the last line (Not the cause, but also exposed by bug #77220)
19446           - Added LineTag argument to InsertString method, to allow callers
19447             to force a certain tag to be used (required to force use of the
19448             trailing zero-length tag of a document)
19449           - Now updating markers in Combine(), to avoid stale tag markers
19450           - Added some method descriptions to aid maintenance
19451           - Implemented new FormatText concept, allowing additive/subtractive
19452             formatting by only specifying the components that are to be 
19453             changed. This was needed for resolving the RTB.SelectedColor/
19454             RTB.SelectedFont fixmes
19455           - Added Break() support method to allow breaking up linetags (used
19456             for partial formatting)
19457           - Added GenerateTextFormat() method. It is used for partial 
19458             formatting and allows to generate a full font/color from given
19459             attributes and an existing tag.
19460
19461 2006-02-26  Jackson Harper  <jackson@ximian.com>
19462
19463         * XplatUIX11.cs:  Use the correct caption height.
19464         - Translate hittest coordinates to screen coords to match MS.
19465         * XplatUIWin32.cs: When we create MDI windows we need to reset
19466         some of the style flags, so we get a nice blank window, and can
19467         draw all the decorations ourselves.
19468         - Set a clipping rectangle on the non client paint event, the
19469         window manager drawing code needs one.
19470         * Form.cs: The window manager needs to know when the window state
19471         has been updated.
19472         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
19473         don't need to factor in border and title sizes in these
19474         methods. TODO: Remove the args and fix the call points.
19475         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
19476         properly.
19477         - Let the driver set the cursors.
19478         - Improve active window handling
19479         - Correct sizes for title bars and buttons.
19480         - Match MS drawing better
19481         * MdiWindowManager.cs: We don't need to handle border style
19482         updates specially anymore.
19483         - Check for scrollbars when windows are done moving
19484         - Handle Active properly.
19485         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
19486         correctly. I am spewing the exception though, so we don't hide the
19487         bugs.
19488         
19489 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
19490
19491         * DataGridViewRowPostPaintEventArgs.cs,
19492           DataGridViewCellPaintingEventArgs.cs,
19493           DataGridViewRowCollection.cs,
19494           DataGridViewRowPrePaintEventArgs.cs,
19495           DataGridViewCell.cs: Clear a few warnings and implement a few
19496           exceptions that should be thrown.
19497
19498 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
19499
19500         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
19501           'inheriting' our parent's (non-default) cursor. (Part of
19502            the fix for #77479)
19503
19504 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
19505
19506         * XplatUIX11.cs: Fixed cast to make csc happy
19507
19508 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
19509
19510         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
19511           it's for the client area (part of fix for #77479 and needed
19512           for MDI window cursor handling)
19513         * XplatUIX11.cs
19514           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
19515             the appropriate default cursors and also passing the message
19516             up the parent chain 
19517           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
19518             for non-client areas
19519
19520 2006-02-15  Jackson Harper  <jackson@ximian.com>
19521
19522         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
19523         is a real MDI window
19524
19525 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
19526
19527         * X11DesktopColors.cs: Instead of checking the desktop session
19528           string for "KDE" check if it starts with "KDE"
19529
19530 2006-02-10  Jackson Harper  <jackson@ximian.com>
19531
19532         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
19533         systems).
19534
19535 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
19536
19537         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
19538           errors
19539         * ColorDialog.cs:
19540           - Got rid of the panel. All controls are now directly added to
19541             the dialog form
19542           - Changed to mono coding style
19543
19544 2006-02-10  Jackson Harper  <jackson@ximian.com>
19545
19546         * InternalWindowManager.cs: We don't need the set visibility to
19547         false hack anymore now that peter has written beautiful shutdown
19548         code.
19549
19550 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
19551
19552         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
19553           where already explicitly destroyed
19554
19555 2006-02-10  Jackson Harper  <jackson@ximian.com>
19556
19557         * MdiClient.cs: Handle the case where windows are too high or to
19558         the left and we need scrollbars.
19559
19560 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
19561
19562         * MimeIcon.cs: Added some icons
19563         * FileDialog.cs:
19564           - Fixed bug #77477
19565           - Got rid of the panel. All controls are now directly added to
19566             the dialog form
19567           - Changed to mono coding style
19568           - On Linux "My Computer" and "My Network" will now show some
19569             more usefull information. A new class, MasterMount, gathers
19570             this information from /proc/mount. Updated MWFFileView to make
19571             use of this information
19572           - Fixed a bug that caused FileDialog to crash when
19573             ".recently_used" file had a zero size
19574           - FilterIndex does now what it should
19575           - Some Refactoring
19576         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
19577             FileDialog changes
19578
19579 2006-02-09  Jackson Harper  <jackson@ximian.com>
19580
19581         * ComboBox.cs: Don't touch if null.
19582
19583 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
19584
19585         * Cursor.cs: 64bit safeness fix
19586         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
19587
19588 2006-02-09  Jackson Harper  <jackson@ximian.com>
19589
19590         * Form.cs: If a form is made into an MDI form update the styles so
19591         all the props can get set correctly.
19592         - Kill the mdi_container when we dont need it anymore.
19593         * InternalWindowManager.cs: Add missing NOT
19594
19595 2006-02-08  Jackson Harper  <jackson@ximian.com>
19596
19597         * InternalWindowManager.cs: Respek clipping when drawing MDi
19598         decorations.
19599
19600 2006-02-08  Jackson Harper  <jackson@ximian.com>
19601
19602         * Hwnd.cs: Add bits to track non client expose events.
19603         * XplatUIX11.cs: Track non client expose events on the hwnd. This
19604         gives us a proper invalid rect and will allow for some nice
19605         optimizations with NC client drawing
19606         - MDI windows are children windows, so move their style handling
19607         into the child window block.
19608         * InternalWindowManager.cs: Remove a state reset that was
19609         getting invoked at the wrong time. Fixes managed windows getting
19610         into a 'stuck' captured state.
19611
19612 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
19613
19614         * TextControl.cs (Document.ctor): Now initializing 
19615           selection_anchor. Fixes #77493
19616
19617 2006-02-07  Jackson Harper  <jackson@ximian.com>
19618
19619         * TrackBar.cs: The increment/decrements were backwards.
19620
19621 2006-02-07  Mike Kestner  <mkestner@novell.com>
19622
19623         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
19624         to the instance itself.
19625
19626 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
19627
19628         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
19629           on ulongs and pointers, the size differs between 32bit and 64bit
19630           systems. 
19631
19632 2006-02-07  Mike Kestner  <mkestner@novell.com>
19633
19634         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
19635         for 64 bit platforms to work around a metacity bug. 
19636
19637 2006-02-07  Jackson Harper  <jackson@ximian.com>
19638
19639         * TrackBar.cs: Process the input keys we need, and hookup to
19640         KeyDown instead of using WndProc, so we get key messages.
19641
19642 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
19643
19644         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
19645           machine we're on. 
19646         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
19647           we need to translate the XdndVersion atoms array before sending it
19648
19649 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
19650
19651         * XplatUIX11.cs: 
19652           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
19653             number of bits for the property, not the number of bytes. The
19654             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
19655             but would not crash since it specified 8 bits instead of 4 bits)
19656           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
19657             defined as XID -> long in the C headers)
19658           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
19659             references since those are now IntPtr to begin with
19660           - Switched all Atom.XXX 'int' casts to IntPtr casts
19661           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
19662           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
19663           - Added XChangeActivePointerGrab DllImport (for X11DnD)
19664         * X11Structs.cs:
19665           - Changed 'int' type for Atoms in XEvent structures to IntPtr
19666           - Changed atom in HoverStruct to be IntPtr
19667         * X11DnD.cs:
19668           - Removed local DllImports, switched code to use those from XplatUIX11
19669           - Removed/fixed casts related to the switch of Atom to be a IntPtr
19670
19671 2006-02-06  Mike Kestner  <mkestner@novell.com>
19672
19673         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
19674         method signatures in the import region.  There may still be some
19675         lingering struct marshaling issues, as I didn't drill down into those.
19676         Yet.
19677
19678 2006-02-06  Jackson Harper  <jackson@ximian.com>
19679
19680         * ComboBox.cs: Dont manually set the top_item, this is computed
19681         when the scrollbar position is set.
19682
19683 2006-02-06  Mike Kestner  <mkestner@novell.com>
19684
19685         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
19686         startup crashes on amd64.  There's other fixes needed.  All pinvoke
19687         usage of Atom needs to be mapped to IntPtr for example.  And there are
19688         likely other int/long issues to be addressed.
19689
19690 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
19691
19692         * FileDialog.cs: One more...
19693
19694 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
19695
19696         * FileDialog.cs: Next try
19697
19698 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
19699
19700         * FileDialog.cs: First part of fix for #77464
19701
19702 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
19703
19704         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
19705           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
19706           AcceptButton border drawing.
19707
19708 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
19709
19710         * Form.cs: Moved positioning of form after auto scaling is applied,
19711           otherwise it would possibly use wrong form size.
19712
19713 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
19714
19715         * Control.cs (RecreateHandle): No need to re-create any child
19716           controls, the child windows will get destroyed automatically by
19717           the windowing system or driver, and re-created when the handle
19718           is being accessed the first time. Fixes #77456
19719         * Form.cs: No longer setting the form to closing if the handle is 
19720           being recreated. This seems like the right thing to do, don't
19721           have a bug or testcase for this, though.
19722
19723 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
19724
19725         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
19726           controls to avoid unwanted side effects
19727
19728 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
19729
19730         * Control.cs: 
19731           - ScaleCore needs to scale the bounds, not the ClientSize of the 
19732             control. Fixes #77416.
19733           - DefaultSize is 0,0 for control
19734         * TextBoxBase.cs: 
19735           - DefaultSize is 100, 20
19736           - SetBoundsCore: Now enforcing the height, no matter if the provided
19737             height is more or less than the preferred one, as long as AutoSize
19738             is on
19739         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
19740
19741 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
19742
19743         * Control.cs:
19744           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
19745             call unless both performLayout is true *and* we have a pending
19746             layout change
19747           - ResumeLayout: MS does not completely nest Suspend and Resume,
19748             they bottom out at 0, fixed our code to match that.
19749           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
19750             SetBoundsCore, we were updating even when we shouldn't. This fixes
19751             swf-anchors mis-anchoring when resizing the app fast and lots.
19752           - UpdateDistances: Now only setting the left and top distance if 
19753             we have a parent and are not suspended, this is based on
19754             a suggestion by Don Edvaldson in bug #77355.
19755           - OnVisibleChanged: Fixed logic when to create the control. We may
19756             not create the control if we have no parent or if it's not visible;
19757             switched to using Visible property instead of is_visible field 
19758             since the property also considers parent states. This fixes a bug
19759             when starting Paint.Net
19760
19761 2006-02-02  Jackson Harper  <jackson@ximian.com>
19762
19763         * Form.cs: If the forms handle hasn't been created yet don't call
19764         into xplatui to make it top most, just set the topmost flag on the
19765         form in CreateParams
19766         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
19767
19768 2006-02-01  Jackson Harper  <jackson@ximian.com>
19769
19770         * ScrollableControl.cs: Refactored the Recalculate method a
19771         little, this wasn't handling all the variants of bottom and right
19772         bars needed to be added and added/removed based on their
19773         counterparts being added/removed (which changes the drawable
19774         size). Also we special case client widths and heights of 0 and
19775         don't add the scrollbar for those.
19776
19777 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
19778
19779         * XplatUIX11.cs: 
19780           - Added method to get AbsoluteGeometry(); currently unused, but might
19781             be used in the future, if we try again to figure out toplevel
19782             coordinates with some more crappy window managers
19783           - Added FrameExtents() method to retrieve the WM set decoration size
19784           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
19785             to deal with at least KDE, FVWM and metacity (Fixes #77092)
19786         * Hwnd.cs: 
19787           - Added whacky_wm tracking var for metacity
19788           - Added logic to have default menu height if the actual menu height
19789             has not yet been calculated (part of fix for #77426)
19790         * Form.cs: Keep track whether client size has been set and re-set 
19791           it if a menu is added/removed afterwards (Fixes #77426)
19792
19793 2006-01-31  Jackson Harper  <jackson@ximian.com>
19794
19795         * Control.cs: When a new Site is set on the component attempt to
19796         pull the AmbientProperties from it.
19797
19798 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
19799
19800         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
19801           in the background of the owning form. Fixes #77332
19802
19803 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
19804
19805         * MimeIcon.cs: Fix for #77409
19806
19807 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
19808
19809         * XplatUIX11GTK.cs: Initial import
19810
19811 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
19812
19813         * FixedSizeTextBox: fixes class signature
19814
19815 2006-01-30  Jackson Harper  <jackson@ximian.com>
19816
19817         * FixedSizeTextBox.cs: New internal class that represents a
19818         textBox that will not be scaled.
19819         * TreeView.cs:
19820         * ComboBox.cs:
19821         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
19822         standard TextBox.
19823                 
19824 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
19825
19826         * XplatUIX11.cs: Retrieve default screen number instead of
19827           assuming 0. Attempted fix for #77318
19828
19829 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
19830
19831         * XplatUIWin32.cs: 
19832           - GetWindowPos: When a window is parented by FosterParent, use 
19833             the desktop instead of FosterParent as the base to get coordinates
19834           - CreateWindow: Don't make FosterParent the parent window for Popups
19835             if we don't want a taskbar entry, Popups automatically don't get one
19836         * Hwnd.cs: Need to call remove to actually remove the key from the
19837           hash table
19838
19839 2006-01-30  Mike Kestner  <mkestner@novell.com>
19840
19841         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
19842
19843 2006-01-30  Jackson Harper  <jackson@ximian.com>
19844
19845         * TreeView.cs:
19846         * TreeNode.cs: Raise events no matter how the treenode is
19847         checked. Patch by Don Edvalson.
19848
19849 2006-01-30  Jackson Harper  <jackson@ximian.com>
19850
19851         * TreeNode.cs: Signature fix.
19852
19853 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
19854
19855         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
19856
19857 2006-01-20  Mike Kestner  <mkestner@novell.com>
19858
19859         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
19860         event forwarding when menus are active.
19861         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
19862         Most of the patch is pdb's with a little rework.
19863
19864 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
19865
19866         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
19867           Removed GetMenuDC and ReleaseMenuDC methods; replaced
19868           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
19869         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
19870         * InternalWindowManager.cs: Added use of PaintEventStart/End to
19871           handling of WM_NCPAINT message, now passing the PaintEventArgs to
19872           the PaintWindowDecorations method
19873         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
19874         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
19875         * MenuAPI.cs: Made tracker window invisible
19876         * XplatUIWin32.cs:
19877           - Removed GetMenuDC and ReleaseMenuDC methods
19878           - Implemented the client=false path for PaintEventStart and
19879             PaintEventEnd
19880
19881 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
19882
19883         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
19884         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
19885           styles
19886         * Form.cs: 
19887           - MaximizeBox, MinimizeBox: Recreate the handle when setting
19888             the style
19889           - CreateParams: Reworked the styles to match MS look'n'feel,
19890             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
19891             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
19892
19893 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
19894
19895         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
19896           window is not mapped, since otherwise every form that's being 
19897           created is considered minimized, which is wrong.
19898         * Form.cs: Catching the exception and returning our internal value
19899           instead
19900
19901 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
19902
19903         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
19904           SetWindowMinMax() to have means to tell the driver about the minimum,
19905           maximum and maximized state window sizes. (Part of the fix for #76485)
19906         * Form.cs:
19907           - Implemented tracking of minimum and maximum window size, now calling
19908             new SetWindowMinMax() driver method to tell the driver (Part of the
19909             fix for #76485)
19910           - Finished handling of WM_GETMINMAXINFO method, now setting all values
19911             (Completes fix for #76485)
19912           - Calling new SetWindowMinMax driver method when the handle for a 
19913             form is created, to make sure the driver knows about it even if
19914             the values have been set before the window was created
19915           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
19916             to avoid messing up our anchoring calculations (partial fix
19917             for #77355)
19918         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
19919         * XplatUIX11.cs:
19920           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
19921           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
19922             (and presumably other freedesktop.org compliant WMs). Left the
19923             assumption unmapped=minimized, needed for SetVisible to work.
19924           - Now setting the window state when creating windows
19925           - Fixed SetVisible to consider/set the window state when mapping
19926             a Form. We cannot set the state before it's mapped, and we cannot
19927             use Form.WindowState once it's mapped (since it would ask the
19928             driver and get 'normal'. Therefore, we grab the state before
19929             mapping, map, and then set state.
19930           - Implmemented SetWindowMinMax method; Metacity does not seem to
19931             honor the ZoomHints, though.
19932         * XplatUIWin32.cs:
19933           - Removed MINMAXINFO (moved to XplatUIStructs)
19934           - Added SetWindowMinMax stub (on Win32 the only way to set that
19935             information is in response to the WM_GETMINMAXINFO message, which
19936             is handled in Form.cs)
19937           - Added logic to SetVisible to set the proper window state when a 
19938             form is made visible (fixes #75720)
19939
19940 2006-01-26  Jackson Harper  <jackson@ximian.com>
19941
19942         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
19943         same way we handle them with Invoke.
19944
19945 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
19946
19947         * Form.cs:
19948           - Added tracking of window state so CreateParams can return
19949             the appropriate style
19950           - Moved setting of WS_CAPTION style in CreateParams to allow
19951             styles without caption
19952         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
19953           control if the TextBox property is accessed. Fixes #77345
19954         * Control.cs:
19955           - get_Created: now uses is_disposed and is_created to determine
19956             return value (suggested by Jackson)
19957           - CreateHandle: No longer exits if the handle is being recreated
19958           - RecreateHandle: If the handle is not yet created call the 
19959             appropriate method to create either control or handle. If the
19960             control is already created CreateHandle will simply exit instead
19961             of just creating the handle
19962         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
19963           now SendMessage WM_DESTROY directly to the control when DestroyWindow
19964           is called.
19965         * XplatUIX11.cs: 
19966           - When DestroyWindow is called, instead of waiting for the 
19967             DestroyNotification from X11, we directly post it to the WndProc
19968             and immediately dispose the hwnd object.
19969             Same applies to DestroyChildWindows, and this obsoletes the
19970             expose_pending tracking. Contrary to Win32 behaviour we destroy our
19971             child windows before our own, to avoid X11 errors.
19972           - Removed the direct sending of WM_PAINT on UpdateWindow
19973         * XplatUIWin32.cs:
19974           - Reworked DoEvents and GetMessage to allow access to internal queue
19975             even when trying non-blocking access to the queue.  Fixes #77335. 
19976             Based on a patch suggestion by Don Edvalson. The new private
19977             GetMessage can now also be used as a backend for a PeekMessage
19978             frontend version.
19979         * XplatUI.cs: Improved debug output for CreateWindow
19980
19981 2006-01-25  Jackson Harper  <jackson@ximian.com>
19982
19983         * Help.cs: Allow param to be null. Patch by Don Edvalson.
19984
19985 2006-01-24  Jackson Harper  <jackson@ximian.com>
19986
19987         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
19988         when we have a MaxDropItems lower then the selected index.
19989
19990 2006-01-24  Jackson Harper  <jackson@ximian.com>
19991
19992         * Control.cs: Don't allow selection of non visible controls, allow
19993         selection of controls without parents.
19994
19995 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
19996
19997         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
19998         * DataGridDrawingLogic.cs: Add editing row only when is necessary
19999
20000 2006-01-23  Jackson Harper  <jackson@ximian.com>
20001
20002         * UpDownBase.cs: Make the textbox handle all the selection and
20003         tabbing. This fixes tabing to updown controls.
20004
20005 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
20006
20007         * TextBoxBase.cs: fixes exception thown the object was null
20008
20009 2006-01-23  Jackson Harper  <jackson@ximian.com>
20010
20011         * ButtonBase.cs: Just use the base CreateParams. They set
20012         visibility and enabled correctly.
20013         * ComboBox.cs:
20014         * TrackBar.cs:
20015         * MonthCalendar.cs: Lets let the base set as much of the
20016         createparams as possible so we don't have duplicate code all over
20017         the place.
20018
20019 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
20020
20021         * ThemeGtk.cs: Added TrackBar and some experimental code to
20022           get double buffering back
20023
20024 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
20025
20026         * DataGrid.cs: Allows row number set internally higher than the last
20027         when creating a new row. Restores the editing functionality.
20028
20029 2006-01-20  Mike Kestner  <mkestner@novell.com>
20030
20031         * MimeIcon.cs: delay Image creation until the icons are accessed
20032         instead of creating 190 scaled images on GnomeHandler startup.
20033
20034 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
20035
20036         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
20037           first call base before processing the event. Fixes #77279
20038
20039 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
20040
20041         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
20042           that the stride for the GDI bitmap would match the stride of
20043           a DIB or a Cursor.
20044
20045 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
20046
20047         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
20048
20049 2006-01-19  Jackson Harper  <jackson@ximian.com>
20050
20051         * ComboBox.cs: Hookup the text controls keydown event so we get
20052         those when the text control has the focus.
20053
20054 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
20055
20056         * Label.cs: Now using the base events instead of defining new ones;
20057           this allows us to just call the base properties without having to
20058           duplicate all base property logic 
20059
20060 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
20061
20062         * Label.cs: A label by default is not a tabstop (Fixes one of our
20063           failing nunit tests)
20064
20065 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
20066
20067         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
20068         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
20069
20070 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
20071
20072         * Cursor.cs: Reimplemented creating cursor bitmaps without using
20073           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
20074           This fixes #77218
20075         * XplatUIWin32.cs: 
20076           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
20077             constructor creates images that can't be saved. Part of the fix
20078             for #76103
20079           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
20080           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
20081             bug fix for handling window state in forms properly)
20082
20083 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20084
20085         * ThemeGtk.cs: Simplify ScrollBar drawing
20086
20087 2006-01-18  Jackson Harper  <jackson@ximian.com>
20088
20089         * Splitter.cs: Set the default dock style for the splitter control
20090         in the constructor.
20091
20092 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20093
20094         * ThemeGtk.cs: Corrected StateType and ShadowType for
20095           gtk_paint_box
20096
20097 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20098
20099         * Control.cs: Make use of Theme.DoubleBufferingSupported
20100         * ThemeGtk.cs:
20101           - Added drawing for flat style buttons
20102           - Added ScrollBar drawing
20103
20104 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20105
20106         * ThemeClearlooks.cs: Removed some unneeded code.
20107         * ThemeGtk.cs: First part of ThemeGtk enhancements.
20108
20109 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
20110
20111         * LinkLabel.cs: We need to update the hover drawing when
20112           leaving the control as well.
20113
20114 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
20115
20116         * DataGrid.cs: Clicking on non empty areas in the columns
20117            area was giving an exception
20118
20119 2006-01-17  Jackson Harper  <jackson@ximian.com>
20120
20121         * ThemeWin32Classic.cs:
20122         * ListView.cs: Do not draw/clip the headers when the header style
20123         is None.
20124
20125 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
20126
20127         * DataGrid.cs: Fixes 77260
20128         
20129 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
20130
20131         * DataGrid.cs: Clicking on a column on a empty grid was giving
20132           an exception
20133
20134 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
20135
20136         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
20137           or any keypress will crash the grid.
20138
20139 2006-01-17  Mike Kestner  <mkestner@novell.com>
20140
20141         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
20142         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
20143         invisible/previously-visible items.
20144         [Fixes #76909]
20145
20146 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
20147
20148         * ThemeClearlooks.cs:
20149         - Added CL_Draw_Button method; now other theme controls that are 
20150           not derived from button or do not have a button can draw buttons
20151           too
20152         - Updated ComboBox drawing
20153         - Beautified RadioButton drawing
20154         - Corrected drawing of bottom and left tabs
20155         - Beautified DateTimePicker and MonthCalendar
20156         - Added CPDrawButton and CPDrawRadioButton
20157
20158 2006-01-16  Jackson Harper  <jackson@ximian.com>
20159
20160         * ComboBox.cs: Set the initial value of the scrollbar to the
20161         current index. Reduce the numbers of refreshs and IndexOfs called.
20162
20163 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
20164
20165         * FileDialog.cs: When the file listview is focused hitting the
20166           backspace key moves the fileview to the parent directory
20167
20168 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
20169
20170         * Form.cs: 
20171           - Added RecreateHandle call when changing taskbar visibility to 
20172             trigger reparenting in Win32 driver (Fixes #75719)
20173           - If a window has minimize or maximize buttons, it cannot have
20174             a help button
20175         * XplatUIWin32.cs:
20176           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
20177             the toplevel form with FosterParent (A toolwindow not on the
20178             taskbar) (Fixes #75719)
20179           - Made FosterParent a toolwindow
20180
20181 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
20182
20183         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
20184
20185 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
20186
20187         * ToolTip.cs: If SetToolTip is called from a control and the mouse
20188           is currently over that control, make sure that tooltip_window.Text
20189           gets updated
20190
20191 2006-01-13  Mike Kestner  <mkestner@novell.com>
20192
20193         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
20194
20195 2006-01-13  Jackson Harper  <jackson@ximian.com>
20196
20197         * TreeView.cs: On MS GetNodeAt never actually factors in the X
20198         value passed.  Also redraw the selected node when we recieve
20199         focus, so tabbing between trees works correctly.
20200
20201 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
20202
20203         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
20204           ~/.gconf/%gconf-tree.xml, so use
20205           .gconf/desktop/gnome/interface/%gconf.xml
20206
20207 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
20208
20209         * TextControl.cs: Draw text in gray if control is disabled
20210
20211 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
20212
20213         * TreeView.cs: Draw the focus rectangle outside the highlight, to
20214           make sure it's always visible. Fixes #76680.
20215
20216 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
20217
20218         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
20219
20220 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
20221
20222         * PageSetupDialog.cs: Added.
20223         * PrintDialog.cs: Attributes.
20224         * PrintPreviewControl.cs: Updates.
20225         * PrintPreviewDialog.cs: Updates.
20226         
20227 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20228
20229         * Control.cs: Undid my selection check fix, since it's not needed
20230         * TextBoxBase.cs:
20231           - Now considering the presence of hscroll/vscroll when sizing
20232             vscroll/hscroll respectively. Fixed bug #77077
20233           - Added Left/Up/Down/Right to IsInputKey list to prevent
20234             ContainerControl from stealing them. This fixes what I broke
20235             with my last checkin.
20236
20237 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
20238
20239         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
20240           I finally understand how the property can be set without a setter :-)
20241
20242 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20243
20244         * Application.cs:
20245           - Switched RunLoop to use static Message.Create to create a 
20246             Message object
20247           - Added PreProcessMessage call in runloop for keyboard events; this
20248             is part of the fix for #77219, I overlooked this originally in the
20249             MSDN doc for PreProcessMessage
20250         * Control.cs:
20251           - Removed call to PreProcessMessage from handling of keyboard 
20252             messages; it's supposed to be done in the message pump
20253           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
20254             per MSDN documentation.
20255           - IsInputChar: All chars are input chars by default; removed the 
20256             parent calling chain, MS does not document that
20257           - PreProcessMessage: If IsInputChar is true, we want to return false
20258             to allow dispatching of the message
20259           - When selecting the next control, now also check that we're not
20260             selecting ourselves again and therefore return a false positive.
20261         * TextBoxBase.cs:
20262           - Tried to match return values for IsInputKey and ProcessDialogKey
20263             to what MS returns; moved processing of our special keys outside
20264             ProcessDialogKey since MS does not seem to return true on those.
20265           - Moved code that previously was in ProcessDialogKey into new private
20266             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
20267           - Reworked handling of WM_CHAR to not have to duplicate code from
20268             Control.cs anymore, instead we simply call down to base.
20269            
20270 2006-01-12  Jackson Harper  <jackson@ximian.com>
20271
20272         * ComboBox.cs: We always need to refresh the text area when
20273         EndUpdate is called. Fixes the combobox in the file dialog.
20274         * Control.cs: Don't create the creator_thread until the controls
20275         handle is created.  Also in InvokeRequired we check if the
20276         creator_thread is null. This gives the effect of InvokeRequired
20277         returning true if the controls handle is not created yet, and
20278         matches MS.
20279
20280 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20281
20282         * XplatUI.cs:
20283           - Added StartLoop() driver method. This is used to allow drivers to
20284             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
20285             loop for a particular thread
20286           - Added EndLoop() driver method. This is called once the message
20287             pump for the thread is shut down
20288           - Added SupportsTransparency method to allow the driver to indicate
20289             opacity support for windows
20290         * Form.cs:
20291           - Removed TODO attribute, completed AllowTransparency property
20292           - Added documented logic to Opacity
20293         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
20294           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
20295           versions of CompatibleTextRendering
20296         * X11Structs.cs: Added opacity atom to our atom enumeration
20297         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
20298           of a form might be set before it's reparented by the WM, and we need
20299           the opacity value without calling up to Form)
20300         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
20301           SupportsTransparency() driver methods
20302         * Application.cs: Now calling StartLoop and EndLoop driver methods
20303         * XplatUIX11.cs:
20304           - Added opacity atom registration
20305           - Added StartLoop()/EndLoop() methods. They're empty right now but
20306             will need to get implemented when we switch to a per-thread queue
20307           - Implemented SupportsTransparency() method
20308           - Implemented SetWindowTransparency() method
20309           - Added support for setting the opacity value when a window is
20310             reparented (since the opacity needs to be set on the WM frame)
20311         * XplatUIOSX.cs, XplatUIWin32.cs:
20312           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
20313
20314 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
20315
20316         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
20317
20318 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
20319
20320         * FileDialog.cs: Added ToolTip for MWFFileView
20321         * MimeIcon.cs: Rewrote GnomeHandler.
20322           - Get currently used gnome icon theme from
20323             ($HOME)/.gconf/%gconf-tree.xml
20324           - Make use of inherited icon themes
20325           - Support SVG icon themes like Tango via librsvg
20326
20327 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20328
20329         Revert's Jackson's revert which broke 2.0 builds.   Fix both
20330         builds. 
20331         
20332         * Application.cs: Move the use_compatible_text_rendering outside
20333         the NET_2_0 define.  If we ever need to use the
20334         use_compatible_text_rendering on the individual controls they will
20335         access the variable from the common shared code paths.
20336
20337 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20338
20339         * XplatUI.cs:
20340           - Added more granular debug options
20341           - Added method to print both window text and id
20342           - Switched debug output to use new Window() debug method
20343           - Added IsEnabled() driver method
20344           - Added EnableWindow() driver method
20345         * Form.cs:
20346           - Removed end_modal; no longer needed, new loop handles termination
20347             via 'closing' variable
20348           - If form is modal, setting DialogResult will now initiate loop
20349             termination via 'closing' variable
20350           - Added support for is_enabled/WS_DISABLED to CreateParams
20351           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
20352             does all the work
20353           - Removed code that's now in RunLoop from ShowDialog()
20354           - Added various documented sanity checks to ShowDialog()
20355           - Added handling of WM_DESTROY message; we set 'closing' on getting
20356             the message to indicate the message pump to terminate
20357           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
20358             send by the Application.ExitThread method. (We send the message
20359             to destroy the window after all other events have been
20360             processed through the queue, instead of destroying the handle 
20361             directly)
20362           - Moved code from Close() method to WM_CLOSE handler; added logic
20363             to only send close-related events if the form is not displayed
20364             modal
20365         * Splitter.cs (..ctor): Fixed typo in resource name
20366         * Control.cs:
20367           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
20368             brush now
20369           - set_Cursor: Now only setting calling into XplatUI if the handle for
20370             the control is already created; this avoids implict handle creation
20371             or crashes if it's not created
20372           - set_Enabled: Now setting the enabled state via the new driver method
20373             instead of just tracking it
20374           - CreateParams: Added logic to set WS_DISABLED based on enabled state
20375           - CreateControl: Reordered event firing and method calls to more
20376             closely fire events in the order MS does. Now setting the
20377             enabled state in the driver when creating the control.
20378           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
20379             match MS order
20380         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
20381           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
20382         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
20383         * Hwnd.cs:
20384           - Added tracking of window enabled state (get_Enabled/set_Enabled)
20385           - Added EnabledHwnd property to easily allow a driver to find the
20386             handle of the first enabled window in the parent chain (this is
20387             used by drivers to pass up input events of disabled windows)
20388         * XplatUIDriver.cs: Added IsEnabled() method
20389         * Application.cs:
20390           - Removed crude and obsolete exiting tracking variable
20391           - Removed internal ModalRun(); replaced by RunLoop()
20392           - Implemented private CloseForms() method to allow closing all 
20393             windows owned by a particular (or all) threads
20394           - Exit() now properly closes all windows without forcing the message
20395             pump to quit
20396           - Removed obsolete InternalExit() method
20397           - Changed Run() methods to use new RunLoop() message pump
20398           - Implemented new RunLoop() method for both modal and non-modal forms
20399         * CommonDialog.cs:
20400           - get_CreateParams: Added setting of WS_DISABLED
20401           - Simplified ShowDialog(); now all the work is done in RunLoop(),
20402             invoked via Form.ShowDialog()
20403         * NativeWindow.cs: We don't remove the window from the collection when
20404           the handle is destroyed; there might still be messages for it in the
20405           queue (mainly the resulting WM_DESTROY); instead it will be removed
20406           when Control calls InvalidateHandle in the WM_DESTROY handler
20407         * XplatUIX11.cs:
20408           - CreateWindow: Added logic to handle the WS_DISABLED window style
20409           - EnableWindow: Implemented based on Hwnd.Enabled
20410           - GetMessage: Reset PostQuitState so the method can be called again
20411           - Implemented support for disabled windows (passing messages to the
20412             first enabled parent) in handling all input messages
20413           - Added optimizations for handling Expose events
20414           - Implemeted new driver method IsEnabled()
20415           - Now always resetting paint pending tracking vars when we start paint
20416           - Re-implemented UpdateWindow via just sending a WM_PAINT message
20417         * XplatUIOSX.cs: Added IsEnabled method stub
20418         * XplatUIWin32.cs: Implemented new IsEnabled() method
20419
20420 2006-01-11  Jackson Harper  <jackson@ximian.com>
20421
20422         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
20423         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
20424         variables a little.
20425         * ColorDialog.cs: Clear out the old form before adding the new
20426         panel.  
20427
20428 2006-01-11  Jackson Harper  <jackson@ximian.com>
20429
20430         * X11Dnd.cs: Make sure to add all the text formats when adding
20431         strings to the data object.
20432         * TreeNodeCollection.cs: When adding to a sorted tree we need to
20433         do some redrawing too.  Also change the UpdateNode to an
20434         UpdateBelow so the newly added node gets painted.
20435         
20436 2006-01-11  Miguel de Icaza  <miguel@novell.com>
20437
20438         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
20439         LinkLabel.cs, PropertyGrid.cs: Implement the
20440         UseCompatibleTextRendering property for 2.x
20441
20442         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
20443
20444 2006-01-11  Jackson Harper  <jackson@ximian.com>
20445
20446         * TreeView.cs: Use the property for setting the selected node so
20447         the correct events get raised.
20448         * TreeNode.cs: Update the tree when the fore/back colours of a
20449         node are set.
20450
20451 2006-01-10  Jackson Harper  <jackson@ximian.com>
20452
20453         * TreeView.cs: Allow setting SelectedNode to null.
20454
20455 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20456
20457         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
20458
20459 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20460
20461         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
20462
20463 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20464
20465         * PrintDialog.cs: Added attributes and set default property values.
20466
20467 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20468
20469         * PrintControllerWithStatusDialog.cs: 
20470         Added PrintControllerWithStatusDialog.
20471
20472 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20473
20474         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
20475         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
20476
20477 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20478
20479         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
20480
20481 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
20482
20483         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
20484         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
20485
20486 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
20487
20488         * MimeIcon.cs: Added internal class SVGUtil.
20489
20490 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
20491
20492         * FileDialog.cs: Don't crash if there are two files with the
20493           same name but different locations.
20494
20495 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
20496
20497         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
20498         dates across multiple month grids. Used to not highlight entire 
20499         month, but does now.
20500         
20501 2006-01-06  Jackson Harper  <jackson@ximian.com>
20502
20503         * MonthCalendar.cs: Removed DoEvents call to prevent a running
20504         message loop. Change timer intervals to numbers that seem more
20505         natural.
20506
20507 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
20508
20509         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
20510           object for location info since screen object is now implemented.
20511
20512 2006-01-05  Jackson Harper  <jackson@ximian.com>
20513
20514         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
20515         * AsyncMethodResult.cs: We no longer use a WeakReference for the
20516         AsyncMethodResult, this is because we ALWAYS want the
20517         ManualResetEvent to get set.
20518         * Control.cs: When disposing use an async invoke to call shutdown
20519         code, so that thigns don't block on the finalizer thread.  Also
20520         check if we even have a message loop before trying to send
20521         messages, if we don't then don't bother sending messages.
20522         - No more weak references for async methods
20523         * XplatUIDriver.cs: No more weak references for async methods.
20524
20525 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
20526
20527         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
20528           returns two FontFamily with the same name
20529
20530 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
20531
20532         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
20533           drawing disabled text. Instead using the ColorGrayText color
20534
20535 2006-01-04  Jackson Harper  <jackson@ximian.com>
20536
20537         * TreeNode.cs: redraw the node when its image index is changed.
20538
20539 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
20540
20541         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
20542           time I checked there are no others like it.
20543
20544 2006-01-04  Jackson Harper  <jackson@ximian.com>
20545
20546         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
20547         this gives the behavoir I was looking for.
20548         * Control.cs: Special case Invoking EventHandlers, this matches MS
20549         and fixes part of bug #76326.
20550
20551 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
20552
20553         * ThemeClearlooks.cs, FileDialog.cs:
20554           - Reflect the latest Theme class changes
20555           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
20556             with DateTime
20557             
20558 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
20559
20560         * Theme.cs: Cache UI resource images and resize them if needed
20561
20562 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
20563
20564         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
20565           is called. This fixes the crash in Nexxia when setting the font
20566           attributes in the chat. [However, RTF needs a look-over to make sure
20567           that all SelectionXXX methods handle the special case that selection
20568           is empty and therefore the change must be applied to all text starting
20569           at the cursor/selection start]
20570
20571 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
20572
20573         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
20574           XplatUIOSX.cs: Added SendMessage and PostMessage methods
20575         * X11Keyboard.cs: Switched to new way of calling PostMessage
20576
20577 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
20578
20579         * Theme.cs: Added theme interface for images to allow the theme to
20580           control what images are used for things like FileDialog, MessageBox
20581           icons, etc.
20582         * MessageBox.cs: Now uses the new Theme icon/image interfaces
20583
20584 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
20585
20586         * FileDialog.cs:
20587           - Removed some dead code
20588           - Opening a recently used file does work now
20589           - Small UI enhancements
20590           - Refactoring
20591
20592 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
20593
20594         * FileDialog.cs: Forgot too add __MonoCS__
20595
20596 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
20597
20598         * FileDialog.cs: We are able to read recently used files now let's
20599           go on and write them.
20600
20601 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
20602
20603         * FileDialog.cs: Breathe some life into "last open"/"recently used"
20604           button
20605         * MimeIcon.cs: Do a check for the top level media type also
20606
20607 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
20608
20609         * ThemeClearlooks.cs:
20610           - Added CPDrawStringDisabled
20611           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
20612             some chars if the text doesn't fit into text_rect
20613           - DrawListViewItem: If View = View.LargeIcon center the image;
20614             rewrote the drawing of ListViewItem.Text if View = 
20615             View.LargeIcon
20616
20617 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
20618
20619         * MimeIcon.cs: Use default KDE icon theme if there is no
20620           "48x48" directory for the current icon theme, fixes #77114
20621         * Mime.cs: Disable not working and actually not used code. 
20622         * ThemeWin32Classic.cs:
20623           - Replace "new SolidBrush" in GetControlBackBrush and
20624             GetControlForeBrush with ResPool.GetSolidBrush
20625           - Changed DrawListViewItem from private to protected virtual
20626         * FileDialog.cs:
20627           - Added form.MaximizeBox = true
20628           - Don't throw an exception if there is a broken symbolic link
20629
20630 2005-12-23  Jackson Harper  <jackson@ximian.com>
20631
20632         * TabControl.cs: Give the panels focus, keyboard navigation is
20633         fixed so this works correctly now.
20634         - We need these key events also.
20635         * ToolBar.cs: Remove some of the poor mans double buffering.
20636         
20637 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
20638
20639         * ComboBox.cs: The internal TextBox now returns the focus.
20640
20641 2005-12-23  Jackson Harper  <jackson@ximian.com>
20642
20643         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
20644
20645 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
20646
20647         * Control.cs: Removed debug code
20648         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
20649           implicit children
20650
20651 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
20652
20653         * Control.cs: When creating the control, update the Z-order after
20654           all it's children are created, too. (Fixes nexxia not showing
20655           picturebox bug)
20656
20657 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
20658
20659         * Control.cs: Do not update the anchoring distances if layout is
20660           suspended, instead do it once layout is resumed
20661
20662 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
20663
20664         * Control.cs: 
20665           - After many hours of debugging, for both Jackson and
20666             myself, it turns out that it helps to set the parent of a control
20667             if you want to actually see it onscreen. In the spirit of that
20668             discovery, we're now setting the parent of the control and
20669             it's children when the control's handle is created. This fix
20670             will make Lutz Roeder's Reflector run happily. 
20671           - now just creating the handle instead of the whole control when
20672             getting a graphics context for the control.
20673
20674 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
20675
20676         * ScrollableControl.cs: When calculating the canvas, don't consider
20677           the scrollbar widths. Instead, predict if horizontal scrollbar
20678           will affect canvas when deciding on vertical display and vice versa.
20679
20680 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
20681
20682         * RichTextBox.cs: Set default RTF font for documents that don't
20683           have a font table (Fixes #77076)
20684
20685 2005-12-22  Jackson Harper  <jackson@ximian.com>
20686
20687         * TextBoxBase.cs: It's difficult to do, but you can have an empty
20688         clipboard. This prevents a NullRef in that case.
20689         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
20690         clipboard. PRIMARY is for the currently selected text only. (We
20691         should implement PRIMARY at some point.
20692
20693 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
20694
20695         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
20696           a Unicode function with a structure that was defined in Ansi way.
20697           This fixes #76942.
20698
20699 2005-12-21  Jackson Harper  <jackson@ximian.com>
20700
20701         * StatusBar.cs: Statusbar handles its fore/back colours on it's
20702         on. Because thats how it rolls. (and this avoids it using ambient
20703         colours).
20704         * ThemeWin32Classic.cs: Use the proper back color for filling.
20705         * Menu.cs: Use the system menu bar color for drawing menu
20706         bars. Using the window back color will bring ambient colours into
20707         the picture.
20708
20709 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
20710
20711         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
20712           Bitmaps were created and not disposed.
20713
20714 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
20715
20716         * Control.cs (CreateControl): Don't do anything if the control is
20717           already created, otherwise we'd fire the OnCreated event more than
20718           once
20719
20720 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
20721
20722         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
20723           will always match. Instead return -1. Fixes #76464.
20724
20725 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
20726
20727         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
20728           neither the beginning nor the end of the line (Fixes bug #76479)
20729
20730 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
20731
20732         * Control.cs:
20733           - ControlNativeWindow.ControlFromHandle(): Now handling situation
20734             where handle is invalid
20735           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
20736             instead of slower linear search
20737         * NativeWindow.cs: Don't remove the window from the hashtable until
20738           after the driver has destroyed it (since the driver might use
20739           Control.FromHandle to lookup the control object
20740         * Hwnd.cs: Added DestroyPending property to track if a window is 
20741           already destroyed as far as the driver is concerned and only hasn't
20742           yet notified the control
20743         * XplatUIX11.cs:
20744           - Activate(): Check if the window is still valid before using the 
20745             handle
20746           - Implemented DestroyChildWindow() method to mark child windows as
20747             destroyed when a window is destroyed. This prevents situations 
20748             where we might call an X method based on queued events for a
20749             window that already has been destroyed but we haven't yet pulled
20750             the destroy method from the queue.
20751           - Added a call to the new DestroyChildWindow() method to the drivers
20752             DestroyWindow code. Also now marking the destroyed window itself
20753             as pending
20754
20755 2005-12-20  Jackson Harper  <jackson@ximian.com>
20756
20757         * StatusBar.cs:
20758         * StatusBarPanel.cs: Don't calculate panel sizes on draw
20759         anymore. Just do them when needed, also track the rects of panels
20760         so that we can optimize refreshing more in the future.
20761
20762 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
20763
20764         * ColorDialog.cs: Fixed focus drawing in small color controls
20765
20766 2005-12-19  Jackson Harper  <jackson@ximian.com>
20767
20768         * InternalWindowManager.cs:
20769         * MdiWindowManager.cs: Cleanup some coordinate system changes so
20770         moving windows works properly.
20771
20772 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
20773
20774         * Control.cs: 
20775           - Removed call to InitLayout() from SetBoundsCore(); doc says
20776             it's only called when a control is added to a container
20777           - Split InitLayout logic, moved to separate UpdateDistances() method
20778             since we need to perform those calculations more often than just
20779             when adding the control to a container. (Needed to fix #77022)
20780           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
20781           - Reduced the OnBindingContextChanged events count, don't send them
20782             unless the control is created, we still aren't totally matching
20783             MS, but I can't quite figure out some of their rules
20784
20785 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
20786
20787         * ThemeClearlooks.cs: Corrected distance between ProgressBar
20788           stripes
20789
20790 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
20791
20792         * ThemeClearlooks.cs:
20793           - Updated ProgressBar drawing
20794           - Corrected drawing of ScrollBars and scroll buttons
20795           - Some temporary fixes for minor pixel artefacts
20796
20797 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
20798
20799         * Control.cs:
20800           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
20801             cause events to be sent in the same order as MS does.
20802           - Added ChangeParent() method to trigger various OnXXXChanged events
20803             that need to be fired when a parent changes (This is a reworking
20804             of the patch from r54254, with the X11 errors fixed)
20805           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
20806             since on MS we get OnLayoutChanged events when calling Clear()
20807           - Changed Enabled property to consider parent state as well, if a
20808             parent is not enabled, the control will not be either
20809           - Changed Parent property to simply call Controls.Add() since that
20810             now does all the work required, this way we avoid code duplication
20811           - Threw in a few OnBindingsContextChanged calls to try and match
20812             when MS sends them. We seem to send a few too many, though.
20813           - Added call to CreateControl when adding the control to a parent.
20814             We were never calling CreateControl. Still needs some work, in
20815             some places we treat HandleCreated and ControlCreated as equal, 
20816             which is wrong
20817           - Removed obsolete commented out code from UpdateZOrder()
20818
20819 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
20820
20821         * ThemeClearlooks.cs: Updated TrackBar drawing.
20822
20823 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
20824
20825         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
20826
20827 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
20828
20829         * FileDialog.cs: Add the Help button and the open readonly
20830           checkbox only if needed
20831
20832 2005-12-16  Jackson Harper  <jackson@ximian.com>
20833
20834         * Control.cs: Make sure we have an active menu before trying to
20835         process commands on it. Prevents menu-less forms from crashing
20836         when Alt is pressed.
20837         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
20838         Dieter Bremes.
20839         * RichTextBox.cs: Expand statement to help out gmcs and fix the
20840         2.0 build.
20841
20842 2005-12-16  Jackson Harper  <jackson@ximian.com>
20843
20844         * InternalWindowManager.cs: Don't translate tool windows screen
20845         coordinates. This fixes windows 'bouncing' around when being moved.
20846
20847 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
20848
20849         * TextBoxBase.cs:
20850           - MaxLength now treats 2^31-1 equal to unlimited length (this is
20851             not quite MS compatible, MS uses that number only for single line
20852             and 2^32-1 for multi-line, but I figure it won't hurt keeping
20853             the limit at 2GB)
20854           - Now enforcing the MaxLength limit when entering characters
20855           - Added argument to internal Paste() method to track if it's called
20856             from programatically or via keyboard, since keyboard driven pastes
20857             need to enforce max-length
20858           - Added logic to Paste to only paste as many chars as MaxLength 
20859             allows
20860         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
20861         * TextControl.cs:
20862           - Added Length property to return number of characters in document
20863           - Added private CharCount property which only tracks actual chars
20864             in the document (no linefeeds) and fires event when CharCount
20865             changes
20866           - Added tracking of character count to all methods that alter it
20867           - Added LengthChanged event to allow applications to subscribe
20868             to any changes to the document
20869
20870 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
20871
20872         * TextBox.cs: 
20873           - Removed local password_char field (moved to TextBoxBase)
20874           - Now setting the document's password var when password is
20875             set
20876         * TextBoxBase.cs:
20877           - Added password_char field (needed here so MultiLine can
20878             access it)
20879           - Added logic to MultiLine property setter to set the document's
20880             variable when password display is allowed
20881           - Removed debug code and made some debug code conditional
20882         * TextControl.cs:
20883           - Added RecalculatePasswordLine() method to handle special password
20884             char only lines
20885           - Added PasswordChar property, also added related tracking vars
20886           - Draw() method now uses local text var for grabbing text to draw,
20887             this var is set to line.text unless we're doing password display,
20888             then it is set to the pre-generated all-password-chars line
20889           - Added calling RecalculatePasswordLine() method for password lines
20890
20891 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
20892
20893         * Hwnd.cs: 
20894           - Added Reparented property to allow tracking of Window Manager
20895             reparenting actions (which affect X/Y calculations of toplevel 
20896             windows)
20897           - Made ToString() print window handles in hex
20898         * XplatUIX11.cs:
20899           - AddConfigureNotify(): Now uses reparented state off Hwnd to
20900             determine if X/Y needs offsetting
20901           - AddConfigureNotify(): Fixed offset calculations
20902           - Now adds ReparentNotify messages into the queue
20903           - Now processes ReparentNotify messages and causes a 
20904             WM_WINDOWPOSCHANGED message to be sent upstream if a window
20905             is reparented (as most likely it's X/Y coordinates are changed
20906             due to that)
20907
20908 2005-12-14  Jackson Harper  <jackson@ximian.com>
20909
20910         * XplatUIX11.cs: Tool windows still need to respek focus.
20911
20912 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
20913
20914         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
20915           have a working release
20916
20917 2005-12-13  Jackson Harper  <jackson@ximian.com>
20918
20919         * Form.cs: Update styles after setting the border style regardless
20920         of whether or not the window is using a window manager.
20921
20922 2005-12-13  Jackson Harper  <jackson@ximian.com>
20923
20924         * Form.cs: We now hook into an internal window manager instead of just an
20925         MDI subsystem, this is so we can have properly behaving tool windows.
20926         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
20927         * InternalWindowManager.cs: New internal class that acts as a
20928         window manager for tool windows and as a base for mdi windows.
20929         * MdiWindowManager.cs: New class that acts as a window manager for
20930         mdi windows.
20931
20932 2005-12-12  Jackson Harper  <jackson@ximian.com>
20933
20934         * Control.cs: Updates so we match behavoir for for implicit
20935         controls. Fixes explosions in MDI.
20936
20937 2005-12-12  Jackson Harper  <jackson@ximian.com>
20938
20939         * Control.cs: Implement Invalidate (Region).
20940
20941 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
20942
20943         * Control.cs: 
20944           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
20945             the same events as MS does. MS fires events for each property 
20946             except, for unknown reasons, Cursor, when the control is reparented. 
20947             I can't seem to totally match add/remove since MS also fires some 
20948             VisibleChanged events, which makes no sense. Consolidated the
20949             parenting code into a separate method so it can be called from
20950             both Add and Remove. set_Parent no longer needs any special logic
20951             as it calls the parent's add method which implicitly fires
20952             all events
20953           - Removed some obsolete code and debug output
20954           - Enabled state is inherited from parents, if this is enabled
20955
20956 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
20957
20958         * Form.cs: Removed commented out code
20959
20960 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
20961
20962         * Control.cs:
20963           - Added internal version of Invoke, with additional argument 
20964             indicating if we're calling it from a Dispose() handler. That
20965             way we can avoid BeginInvoke throwing an exception if we're
20966             calling for an already destroyed window.
20967           - Added a dispose argument to BeginInvokeInternal, and made the
20968             check if a valid window handle chain exists conditional on
20969             it not being a dispose call
20970           - Removed code in DestroyHandle to destroy our children. Since we
20971             now handle the WM_DESTROY message we will catch all our children
20972             being destroyed.
20973           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
20974         * Form.cs:
20975           - Added a field to track the application context of the form.
20976           - No need to set closing variable as response to WM_CLOSE, instead
20977             we destroy the window. We also call PostQuitMessage if the form
20978             has an application context (which makes it the main app form,
20979             which, when closed terminates the app)
20980         * XplatUI.cs:
20981           - Dropped Exit() method, it's naming was confusing
20982           - Added PostQuitMessage() which causes GetMessage to return false
20983             once the message queue is empty
20984         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
20985           PostQuitMessage()
20986         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
20987           no longer a valid XplatUI method, but left it in since it's used
20988           internally. Added empty PostQuitMessage() method.
20989         * MenuAPI.cs: Replaced call to Exit() with call to
20990           PostQuitMessage, even though this is probably no longer needed.
20991         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
20992         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
20993         * Application.cs:
20994           - Replaced call to XplatUI.Exit() with PostQuitMessage()
20995           - Removed old debug code that would call XplatUI for exception
20996             display, enabled standard exception handling (Still not enabled
20997             though, until NativeWindow's ExternalExceptionHandler define
20998             is removed
20999         * NativeWindow.cs:
21000           - Added internal method to allow control to update NativeWindow
21001             after a window has been destroyed
21002           - Added handling of already destroyed windows when calling i
21003             DestroyWindow
21004           - Added removal of handle from list on ReleaseHandle
21005         * XplatUIX11.cs:
21006           - Dropped GetMessageResult var and related code
21007           - Added PostQuitState to field to track if PostQuitMessage has been
21008             called
21009           - Dropped Exit() method
21010           - Added PostQuitMessage() method
21011           - GetMessage now will return false if PostQuitState is set and no
21012             more messages are in the queue.
21013           - Expose handler will no longer generate WM_PAINT messages if we are
21014             in PostQuitState since it's very likely any windows have already
21015             been destroyed, and since Hwnd won't get updated until we have
21016             processed the DestroyNotify we'd be causing X errors.
21017         
21018 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21019
21020         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
21021           Thanks to Mike for pointing out the err of my ways.
21022
21023 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21024
21025         * Control.cs(PreProcessMessage): Moved menu handling back, but
21026           after all other key handling, to match MS (who handles Menu in
21027           DefWndProc)
21028         * Menu.cs (WndProc): Removed my brainfart
21029
21030 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21031
21032         * Control.cs(PreProcessMessage): Removed special menu handling 
21033         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
21034
21035 2005-12-07  Mike Kestner  <mkestner@novell.com>
21036
21037         * Control.cs : special case SYSKEYUP so that we can adjust keynav
21038         state according in tracker.
21039         * Menu.cs : promote tracker field to base class and provide a tracker
21040         lookup capability.  Add/Remove shortcuts dynamically if the top menu
21041         has a tracker. Unparent items that are removed from the collection.
21042         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
21043         * Theme*.cs: add always_show_hotkeys field to support configurability
21044         of mnemonic display.  win32 doesn't show mnemonics until Alt is
21045         pressed.
21046
21047 2005-12-07  Jackson Harper  <jackson@ximian.com>
21048
21049         * MdiChildContext.cs: Use Control.ResetCursor.
21050         * Control.cs: ResetCursor needs to set the property so that the
21051         correct XplatUI call gets made.
21052
21053 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21054
21055         * Control.cs: More fixes to make our key events match MS. We
21056           were not setting the modifier state on KeyData, and we were
21057           not generating any events when Alt was pressed with a key
21058           since handling of WM_SYSxxx was missing for the OnKey methods.
21059
21060 2005-12-07  Jackson Harper  <jackson@ximian.com>
21061
21062         * MdiChildContext.cs: reenable the sizing code.
21063         - When the mouse leaves a window reset its cursor.
21064
21065 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
21066
21067         * ThemeClearlooks.cs: Reflect latest Hwnd changes
21068
21069 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21070
21071         * Hwnd.cs: Now using the theme 3d bordersize to calculate
21072           widths of Fixed3D borders
21073
21074 2005-12-07  Jackson Harper  <jackson@ximian.com>
21075
21076         * MdiClient.cs: Fix warnings. Earn Mike's love.
21077
21078 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
21079
21080         * ThemeClearlooks.cs:
21081           - Adjusted mouse over button color
21082           - Added first parts of CheckBox drawing
21083           - Added correct color for selected text background
21084           - Fixed ComboBox drawing
21085           - Added CPDrawBorder3D and CPDrawBorder
21086
21087 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
21088
21089         * XplatUIX11.cs: Added call to XBell for AudibleAlert
21090
21091 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
21092
21093         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
21094           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
21095           alert users via sound. We could add an enum arg with different
21096           types of alerts in the future
21097
21098 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
21099
21100         * Control.cs: Fix behaviour problems pointed out by Mike
21101
21102 2005-12-05  Mike Kestner  <mkestner@novell.com>
21103
21104         * StatusBarPanel.cs: add Invalidate method and hook it into all the
21105         prop setters.  Calls parent.Refresh for now, but could be maybe be
21106         optimized with an internal method on StatusBar at some point.
21107         [Fixes #76513]
21108
21109 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
21110
21111         * RichTextBox.cs: Implemented get_SelectionColor
21112
21113 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
21114
21115         * ThemeClearlooks.cs:
21116           - Removed dead code
21117           - Draw black button border only if button is Form.AcceptButton
21118           - Draw correct button color for pressed RadioButton if the mouse 
21119             has entered the button
21120           - Updated ProgressBar drawing!
21121           - Updated CPDrawSizeGrip drawing
21122           - Updated StatusBarPanel drawing
21123
21124 2005-12-05  Mike Kestner  <mkestner@novell.com>
21125
21126         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
21127         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
21128
21129 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
21130
21131         * ThemeClearlooks.cs: Initial check-in, activate with
21132           export MONO_THEME=clearlooks
21133         * ThemeEngine.cs: Added ThemeClearlooks
21134
21135 2005-12-03  Mike Kestner  <mkestner@novell.com>
21136
21137         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
21138         [Fixes #76897]
21139
21140 2005-12-02  Jackson Harper  <jackson@ximian.com>
21141
21142         * Form.cs: If the child form has no menu the default main menu is
21143         used as the active menu.
21144
21145 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
21146
21147         * ListBox.cs: Check if any items exist before trying to resolve 
21148           coordinates into items
21149
21150 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
21151
21152         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
21153           as the second color for the background hatch
21154
21155 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
21156
21157         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
21158         * RichTextBox.cs: FormatText position arguments are 1-based, now making
21159           sure that what we pass to FormatText is always 1-based. Fixes #76885
21160
21161 2005-11-29  Miguel de Icaza  <miguel@novell.com>
21162
21163         * NumericUpDown.cs (EndInit): When we are done initializing,
21164         reflect any updates on the UI.
21165
21166 2005-12-02  Jackson Harper  <jackson@ximian.com>
21167
21168         * ImplicitHScrollBar.cs:
21169         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
21170         their container controls.
21171         * TreeView.cs: Use the new implicit scrollbars.
21172
21173 2005-12-02  Jackson Harper  <jackson@ximian.com>
21174
21175         * TreeView.cs: Make top_node internal so the TreeNodeCollections
21176         can play with it.
21177         * TreeNodeCollection.cs: If we remove the topnode we need to
21178         update topnode to the next node in line.
21179         - When clearing nodes go through the same process as removing
21180         them, so they get depareneted and checked if they are top node.
21181
21182 2005-12-01  Jackson Harper  <jackson@ximian.com>
21183
21184         * TreeView.cs: When imagelists are used the image area is
21185         selectable as well as the text.
21186         - If there are no selected nodes select the first one.
21187         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
21188         so don't do it more then we need to.
21189
21190 2005-12-01  Jackson Harper  <jackson@ximian.com>
21191
21192         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
21193         that arrows can be scaled.
21194
21195 2005-12-01  Jackson Harper  <jackson@ximian.com>
21196
21197         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
21198         fail. Patch by Dieter Bremes
21199
21200 2005-11-30  Jackson Harper  <jackson@ximian.com>
21201
21202         * Form.cs: Property is 2.0 only
21203         * PrintDialog.cs: Signature fix.
21204
21205 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
21206
21207         * TextControl.cs: 
21208           - No longer artificially moves text 2 pixels down (now that we have
21209             borders this is no longer needed)
21210           - Added calcs for left, hanging and right indent
21211
21212 2005-11-23  Mike Kestner  <mkestner@novell.com>
21213
21214         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
21215
21216 2005-11-30  Jackson Harper  <jackson@ximian.com>
21217
21218         * MdiChildContext.cs: Set the cloned menus forms, as these don't
21219         get cloned as part of CloneMenu ().
21220         * Menu.cs: Make sure the parent of the items get set correctly
21221         when they are added.  And the owners are notified of the changes.
21222         * Form.cs: Create an ActiveMenu property, so that when MDI is used
21223         we can change the menu being displayed/handled by the form without
21224         changing the menu assosciated with the form.
21225         - Don't let Mdi children draw/handle menus.
21226         
21227 2005-11-30  Jackson Harper  <jackson@ximian.com>
21228
21229         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
21230         a MenuChanged event. Just to make the API a little more
21231         consistent.
21232         * MainMenu.cs:
21233         * MenuItem.cs: Use the new OnMenuChanged
21234         * MdiChildContext.cs: Handle menu merging.
21235         * Form.cs: Implement MergedMenu.
21236         
21237 2005-11-30  Jackson Harper  <jackson@ximian.com>
21238
21239         * Menu.cs: We were misusing Add. Add goes behind the specified
21240         index according to the docs, and does not replace the specified
21241         index. So I added an Insert method.
21242
21243 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
21244
21245         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
21246           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
21247           is for Jackson
21248         * RichTextBox.cs: Added calls to base for DnD events
21249
21250 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
21251
21252         * TextControl.cs:
21253           - Fixed drag-selection related crash; style fixes
21254           - Implemented undo class
21255             o Implemented method to capture document state for specified
21256               range in document tree
21257             o Implemented method to restore captured document state
21258             o Implemented cursor tracking
21259             o Implemented basic undo stack
21260           - Added undo cursor tracking to methods altering cursor location
21261           - Added undo tracking to selection deletion (still missing
21262             other text-altering hookups)
21263         * RichTextBox.cs:
21264           - Added SelectionLength property
21265           - Implemented CanPaste()
21266           - Implemented Paste()
21267           - Added missing protected methods
21268           - Fixed RTF->Document conversion; now uses font index 0 and color 
21269             index 0 as the default font for the parsed text
21270           - Fixed RTF<->Document font size translation
21271           - Fixed RTF generation, now properly handles cross-tag boundaries
21272             for single line selection
21273           - No longer always appends blank line to generated RTF
21274           - Removed TODOs
21275           - Added missing attributes
21276           - Hooked up undo-related methods
21277         * TextBoxBase.cs:
21278           - Implemented Copy()
21279           - Implemented Paste()
21280           - Implemented Cut()
21281           - Fixed caret mis-behaviour on backspace across line-boundaries
21282
21283 2005-11-29  Jackson Harper  <jackson@ximian.com>
21284
21285         * MdiClient.cs: Add a method for activating mdi children. Very
21286         basic right now. I imagine someday it might need more girth.
21287         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
21288         children windows names are added to the menu item.
21289         * ThemeWin32Classic.cs: Draw the arrow if the item is an
21290         mdilist. This happens regardless of whether or not there are any
21291         mdi windows to see in the list, and according to my tests happens
21292         before the items are even added. Also happens if there isn't even
21293         an mdi client to get windows from.
21294
21295 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
21296
21297         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
21298         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
21299
21300 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
21301
21302         * DataGridTableStyle.cs:
21303           - Create always the styles for the missing columns even if they are
21304             provided by the user (not default table style)
21305         * DataGrid.cs:
21306           - Fixes bug 76770
21307           - Fixes SetDataBinding (always re-attach source)
21308           - Fixes SetNewDataSource (only clear styles if they are not for 
21309             this source)
21310          -  Expands OnTableStylesCollectionChanged to handle style refresh 
21311             and remove properly
21312
21313 2005-11-29  Jackson Harper  <jackson@ximian.com>
21314
21315         * FileDialog.cs: Implement missing bits, remove some dead
21316         code.
21317         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
21318         creation of the panel so that the options set on the dialog are
21319         seen when the panel is created.
21320         * TreeView.cs: raise a click when items are clicked.
21321         
21322 2005-11-29  Jackson Harper  <jackson@ximian.com>
21323
21324         * MdiClient.cs: Pass some signature methods through to base.
21325
21326 2005-11-28  Jackson Harper  <jackson@ximian.com>
21327
21328         * ListView.cs: Raise the click event when items are clicked.
21329
21330 2005-11-28  Jackson Harper  <jackson@ximian.com>
21331
21332         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
21333         a nullref.
21334
21335 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
21336
21337         * ThemeNice.cs: - Removed 1 pixel bitmaps
21338           - Use SmoothingMode.AntiAlias where it makes sense
21339             (ScrollButton arrow for example)
21340           - Enhanced Button focus drawing
21341           - Fixed ComboBox drawing (no artefacts anymore, focus
21342             rectangle is back again, reduced size of ComboButton, etc.)
21343           - Fixed RadioButton focus drawing for Appearence.Button
21344           - Slight ScrollButton redesign
21345           - Some LinearGradientBrush size fixes
21346           - GroupBoxes have now rounded edges
21347           - Fixed StatusBar drawing
21348
21349 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
21350
21351         * ThemeNice.cs: - Remove dead code
21352           - use correct background colors for menus, etc.
21353           - Fake pixel drawing with 1 pixel bitmaps
21354
21355 2005-11-24  Jackson Harper  <jackson@ximian.com>
21356
21357         * MdiClient.cs: Size the scrollbars when resizing the window.
21358         - Resize the maximized windows when the client is resized
21359         * Form.cs: Make the child context available
21360         
21361 2005-11-23  Jackson Harper  <jackson@ximian.com>
21362
21363         * MdiChildContext.cs: Don't size windows if they are maximized.
21364
21365 2005-11-23  Mike Kestner  <mkestner@novell.com>
21366
21367         * ContextMenu.cs: use MenuTracker.
21368         * Control.cs: remove menu handle usage.
21369         * Form.cs: remove menu handle usage.
21370         * Hwnd.cs: remove menu handle usage.
21371         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
21372         motion and clicks to the new Tracker handlers.
21373         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
21374         and handle usage.
21375         * MenuAPI.cs: refactored to combine popup and menubar event handling.
21376         Killed the MENU and MENUITEM data types and associated collections
21377         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
21378         MenuTracker class that exposes the leftovers from the old MenuAPI
21379         static methods. Restructured Capture handling so that only one grab is
21380         done for the entire menu hierarchy instead of handing off grabs to
21381         submenus. Tracker now has an invisible control to Capture when active.
21382         * MenuItem.cs: add sizing accessors, kill Create
21383         and handle usage.
21384         * Theme.cs: remove menu handle and MENU(ITEM) usage.
21385         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
21386         MENU(ITEM). remove menu handle usage, use Menu directly.
21387         * XplatUIDriver.cs: remove menu handle usage.
21388         * XplatUIOSX.cs: remove menu handle usage.
21389         * XplatUIWin32.cs: remove menu handle usage.
21390         * XplatUIX11.cs: remove menu handle usage.
21391
21392 2005-11-22  Jackson Harper  <jackson@ximian.com>
21393
21394         * Hwnd.cs: Don't compute the menu size for
21395         DefaultClientRectangle.
21396         - Reenable menu sizes being computed for GetClienRectangle.
21397         * Form.cs: Remove comment of trechery
21398         
21399 2005-11-22  Jackson Harper  <jackson@ximian.com>
21400
21401         * Hwnd.cs: The adjustments for the menu bar are made when it is
21402         attached to the form.
21403
21404 2005-11-19  Jackson Harper  <jackson@ximian.com>
21405
21406         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
21407         (just like on windows).
21408
21409 2005-11-19  Jackson Harper  <jackson@ximian.com>
21410
21411         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
21412         use real buttons anymore because they are in non client area. The
21413         one TODO here is that I need to somehow invalidate a section of
21414         the non client area.
21415
21416 2005-11-18  Jackson Harper  <jackson@ximian.com>
21417
21418         * Control.cs: Put the enum check back in now that MDI doesnt have
21419         to use this to set border styles.
21420         * Form.cs: Only set mdi child windows borders if the handle has
21421         been created.
21422         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
21423         this directly on to the driver.
21424         - Get the move start position before adjusting for the titlebar
21425         height, this fixes the windows "skipping" when they are first
21426         moved.
21427
21428 2005-11-18  Jackson Harper  <jackson@ximian.com>
21429
21430         * XplatUIX11.cs: Just compute the mdi borders separately as they
21431         don't totally match up with normal form borders.
21432
21433 2005-11-18  Jackson Harper  <jackson@ximian.com>
21434
21435         * Control.cs: Set WS_ styles for borders, so that the driver does
21436         not have to retrieve the control instance to figure out what kind
21437         of borders it should have.
21438         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
21439         driver can know its an mdi child easily.
21440         * XplatUIX11.cs: Get the border styles and whether the window is
21441         MDI from the Styles and ExStyles params instead of having to get a
21442         control. This prevents a chicken and egg problem.       
21443
21444 2005-11-18  Jackson Harper  <jackson@ximian.com>
21445
21446         * MdiClient.cs: Fix typo so scrollbars show up correctly.
21447
21448 2005-11-18  Jackson Harper  <jackson@ximian.com>
21449
21450         * MdiClient.cs: Calculate when to add and remove scrollbars
21451         correctly.
21452         * MdiChildContext.cs: Adjust the y position to take the titlebar
21453         into account.
21454         - No height for FormBorderStyle.None
21455
21456 2005-11-18  Jackson Harper  <jackson@ximian.com>
21457
21458         * Control.cs: Allow non enum values to be used for
21459         InternalBorderStyle.  MDI does this to set a special border style.
21460         - New utility methods for converting points to/from client coords
21461         - Add the newly created control to the Controls collection before
21462         updating its style. This way UpdateStyle can walk the control
21463         heirarchy to find the control if needed.
21464         so I don't need to create a new Point object all the time.
21465         * Form.cs: Let MDI windows handle their border styles.
21466         - Set styles on MDI windows so the correct title style is derived.
21467         * MdiChildContext.cs: Move all the painting and window handling
21468         into the non client area.
21469         - Use correct sizing and put correct buttons on frames based on
21470         the FormBorderStyle.
21471         - Notify the mdi client about scrolling
21472         - Need to handle the buttons ourselves now, because they are all
21473         in non client areas and we can't add controls there.
21474         * MdiClient.cs: Halfway to scrolling, this implementation is
21475         somewhat broken though, we need to check to make sure other
21476         windows aren't causing scrolling before removing the bars. Also
21477         the bars need to be drawn on top, maybe I can switch implicit
21478         controls to be on top.
21479         * Hwnd.cs: caption_height and tool_caption_height are now
21480         properties of an hwnd, this way they can be set by the driver
21481         based on the type of window they are.  In X11 the window manager
21482         handles the decorations so caption_height is zero unless its an
21483         MDI window.
21484         - Add 3 pixel borders for MDI windows (0xFFFF).
21485         - Get rid of some code duplication, have DefaultClientRectanle
21486         just call GetClientRectangle.
21487         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
21488         Hwnd now.
21489         - Set border styles differently for mdi windows.
21490         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
21491         Hwnd now.
21492         
21493 2005-11-15  Mike Kestner  <mkestner@novell.com>
21494
21495         * Menu.cs: when adding an item to the collection, if item is already 
21496         parented, remove it from the parent.
21497
21498 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
21499
21500         * X11DesktopColors.cs: Added KDE support
21501
21502 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
21503
21504         * XplatUIWin32.cs: 
21505           - Clipboard methods now can translate Rtf format
21506           - No longer removes clipboard contents whenever a new format is added
21507             to allow placing multiple formats on the clipboard
21508         * Clipboard.cs: Clipboard now supports getting a IDataObject and
21509           will place all formats contained in it onto the clipboard. Also
21510           now cleans the clipboard before placing a new object onto it
21511         * RichTextBox.cs:
21512           - Implemented set_Rtf
21513           - Implemented set_SelectedRtf
21514           - Created InsertRTFFromStream() method to allow single code base
21515             for all properties and methods that insert RTF into document
21516           - Removed debug output
21517         * TextControl.cs:
21518           - Fixed Delete(int) to fix up line numbers
21519           - Fixed ReplaceSelection to combine start and end line
21520           - Fixed serious DeleteChars bug that would leave the document tree
21521             broken
21522           - Improved DumpTree with several logic checks to detect broken
21523             document trees
21524           - Removed debug lines
21525           - Fixed Caret.WordForward/WordBack moving code, now always also 
21526             updates caret.tag (fixes crash when word-selecting across tag
21527             boundaries via keyboard)
21528           - Added Insert() method for inserting multiline text into documents
21529           - Fixed DeleteChars() calculation errors that would cause a broken
21530             tag chain with multiple tag lines
21531           - DeleteChars() no longer crashes on multi-tag lines if not all tags
21532           - Split() no longer moves caret if split is at caret location
21533           - ReplaceSelection() now updates the cursor and re-displays it
21534           - ReplaceSelection() now uses new Insert() method to avoid code
21535             duplication
21536           - FormatText() can now handle formatting partial lines
21537         * TextBoxBase.cs:
21538           - Append now uses new TextControl.Insert() method (this avoids 
21539             duplicate code)
21540           - Implemented Ctrl-X (Cut) (
21541           - Implemented Ctrl-C (Copy)
21542           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
21543             regeneration when pasting text; roundtripping Copy&Paste within
21544             edit control still fails due to some calculation bugs in GenerateRTF)
21545           - The Delete key will now remove the current selection if it is visible
21546         * TextBox.cs: Removed debug lines
21547         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
21548           driver to be initialized and can't therefore be done via a static ctor)
21549
21550 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
21551
21552         * TextControl.cs: Added backend code for finding char arrays and strings
21553         * TextBoxBase.cs:
21554           - Added mouse wheel scroll support
21555           - Added support for VScroll and HScroll events
21556         * RichTextBox.cs:
21557           - Implemented all seven Find() variants
21558           - Implemented GetCharFromPosition()
21559           - Implemented GetCharIndexFromPosition()
21560           - Implemented GetLineFromIndex()
21561           - Implemented GetPositionFromCharIndex();
21562           - Implemented SaveFile for PlainText and UnicodeText
21563           - Fixed set_Font, now setting a new font applies that font to
21564             the whole document
21565           - Implemented generic Document to RTF converter
21566           - Implemented SaveFile for RichText format (still missing unicode
21567             conversion for non-ansi chars)
21568           - Implemented get_Rtf
21569           - Implemented get_SelectedRtf
21570
21571 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
21572
21573         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
21574           to allow any captures to be released before triggering OnClick. This
21575           way a click handler may capture the mouse without interference.
21576         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
21577           This way we send them even though X may not allow a grab (if the window
21578           isn't visible, for example)
21579
21580 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
21581
21582         * DataGridViewRowEventArgs.cs: DataGridView implementation
21583         * DataGridViewElement.cs: DataGridView implementation
21584         * DataGridViewComboBoxCell.cs: DataGridView implementation
21585         * DataGridViewDataErrorContexts.cs: DataGridView implementation
21586         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
21587         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
21588         * ImageLayout.cs: DataGridView implementation
21589         * DataGridViewComboBoxColumn.cs: DataGridView implementation
21590         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
21591         * DataGridViewSelectionMode.cs: DataGridView implementation
21592         * IDataGridViewEditingControl.cs: DataGridView implementation
21593         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
21594         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
21595         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
21596         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
21597         * DataGridViewColumnSortMode.cs: DataGridView implementation
21598         * DataGridView.cs: DataGridView implementation
21599         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
21600         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
21601         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
21602         * Padding.cs: DataGridView implementation
21603         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
21604         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
21605         * DataGridViewRowEventHandler.cs: DataGridView implementation
21606         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
21607         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
21608         * DataGridViewButtonCell.cs: DataGridView implementation
21609         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
21610         * DataGridViewEditMode.cs: DataGridView implementation
21611         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
21612         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
21613         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
21614         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
21615         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
21616         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
21617         * DataGridViewCellEventHandler.cs: DataGridView implementation
21618         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
21619         * DataGridViewCellStyleConverter.cs: DataGridView implementation
21620         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
21621         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
21622         * DataGridViewColumnEventArgs.cs: DataGridView implementation
21623         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
21624         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
21625         * QuestionEventArgs.cs: DataGridView implementation
21626         * IDataGridViewEditingCell.cs: DataGridView implementation
21627         * DataGridViewTriState.cs: DataGridView implementation
21628         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
21629         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
21630         * DataGridViewColumnCollection.cs: DataGridView implementation
21631         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
21632         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
21633         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
21634         * DataGridViewColumn.cs: DataGridView implementation
21635         * DataGridViewCellBorderStyle.cs: DataGridView implementation
21636         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
21637         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
21638         * DataGridViewRow.cs: DataGridView implementation
21639         * DataGridViewImageCellLayout.cs: DataGridView implementation
21640         * DataGridViewImageCell.cs: DataGridView implementation
21641         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
21642         * DataGridViewCheckBoxCell.cs: DataGridView implementation
21643         * DataGridViewHeaderCell.cs: DataGridView implementation
21644         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
21645         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
21646         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
21647         * DataGridViewTextBoxColumn.cs: DataGridView implementation
21648         * QuestionEventHandler.cs: DataGridView implementation
21649         * DataGridViewCellStyleScopes.cs: DataGridView implementation
21650         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
21651         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
21652         * DataGridViewCell.cs: DataGridView implementation
21653         * DataGridViewCellEventArgs.cs: DataGridView implementation
21654         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
21655         * DataGridViewCellStyle.cs: DataGridView implementation
21656         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
21657         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
21658         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
21659         * TextFormatFlags.cs: DataGridView implementation
21660         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
21661         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
21662         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
21663         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
21664         * DataGridViewButtonColumn.cs: DataGridView implementation
21665         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
21666         * HandledMouseEventArgs.cs: DataGridView implementation
21667         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
21668         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
21669         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
21670         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
21671         * DataGridViewRowCollection.cs: DataGridView implementation
21672         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
21673         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
21674         * DataGridViewHitTestType.cs: DataGridView implementation
21675         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
21676         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
21677         * DataGridViewColumnEventHandler.cs: DataGridView implementation
21678         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
21679         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
21680         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
21681         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
21682         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
21683         * DataGridViewContentAlignment.cs: DataGridView implementation
21684         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
21685         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
21686         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
21687         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
21688         * DataGridViewPaintParts.cs: DataGridView implementation
21689         * DataGridViewCellCollection.cs: DataGridView implementation
21690         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
21691         * DataGridViewImageColumn.cs: DataGridView implementation
21692         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
21693         * DataGridViewElementStates.cs: DataGridView implementation
21694         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
21695         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
21696         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
21697         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
21698         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
21699         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
21700         * DataGridViewRowHeaderCell.cs: DataGridView implementation
21701         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
21702         * DataGridViewTextBoxCell.cs: DataGridView implementation
21703         * DataGridViewBand.cs: DataGridView implementation
21704         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
21705         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
21706         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
21707         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
21708         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
21709         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
21710         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
21711         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
21712         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
21713         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
21714         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
21715
21716 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
21717
21718         * ThemeWin32Classic.cs: 
21719           - Draw the outside focus rectangle around buttons
21720           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
21721             doesn't use end caps for every dash of a line anymore. This
21722             workaround ignores the forecolor.
21723
21724 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
21725
21726         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
21727           endian safe.
21728
21729 2005-11-07  Jackson Harper  <jackson@ximian.com>
21730
21731         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
21732
21733 2005-11-07  Jackson Harper  <jackson@ximian.com>
21734
21735         * ScrollableControl.cs: Calculate the maximum and change vars
21736         (more) correctly so that scrollbars appear as a sensible size.
21737
21738 2005-11-04  Jackson Harper  <jackson@ximian.com>
21739
21740         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
21741         collection.
21742         * TreeView.cs: When the tree is sorted null out the top_node so
21743         that it is recalculated.
21744         - Use dotted lines instead of dashed lines to match MS better.
21745
21746 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
21747
21748         * ListView.cs: 
21749           - Implements key search for items. Useful when browsing files with FileDialog
21750           - When changing view mode or when clear the items reset scrollbar positions
21751
21752 2005-11-04  Jackson Harper  <jackson@ximian.com>
21753
21754         * CurrencyManager.cs: Implement the MetaDataChanged event, the
21755         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
21756         as to what the method may do as there is no real way of creating a
21757         derived CurrencyManager and calling the method. 
21758
21759 2005-11-03  Jackson Harper  <jackson@ximian.com>
21760
21761         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
21762         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
21763         method which seems to just be used internally to refresh the tabs.
21764
21765 2005-11-03  Jackson Harper  <jackson@ximian.com>
21766
21767         * TabControl.cs: Implement the remove method. Fix some broken
21768         comments.
21769
21770 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
21771
21772         * DateTimePicker.cs:
21773           - Added missing DateTimePickerAccessibleObject class
21774           - Added missing events
21775           - Added OnFontChanged method
21776         * Form.cs: Added missing attributes
21777         * TreeView.cs: Added missing attributes
21778
21779 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
21780
21781         * GridItemCollection.cs: Fix signatures
21782
21783 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
21784
21785         * XplatUI.cs: Updated build rev/date
21786         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
21787           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
21788         * Application.cs: Trigger context-specific ExitThread events
21789
21790 2005-11-03  Jackson Harper  <jackson@ximian.com>
21791
21792         * Menu.cs:
21793         * MainMenu.cs:
21794         * GridTableStylesCollection.cs:
21795         * Timer.cs:
21796         * TabPage.cs:
21797         * HelpProvider.cs:
21798         * StatusBar.cs:
21799         * MonthCalendar.cs: Signature fixes
21800
21801 2005-11-03  Jackson Harper  <jackson@ximian.com>
21802
21803         * TreeNodeCollection.cs: Remove should not be virtual.
21804         * TreeView.cs: Implement the last of the missing methods.
21805
21806 2005-11-03  Jackson Harper  <jackson@ximian.com>
21807
21808         * TreeNodeConverter.cs: Implement to get off my class-status back.
21809
21810 2005-11-03  Jackson Harper  <jackson@ximian.com>
21811
21812         * TreeView.cs: Hookup the bits for drag and drop.
21813         * TreeNode.cs: Don't cache the tree_view or index anymore, now
21814         that nodes can be moved from tree to tree easily this just causes
21815         all sorts of problems.
21816         * TreeNodeCollection: Don't need to give treenodes an index and
21817         treeview anymore when they are added, these are computed on the
21818         fly. Also make sure to remove a node before its added.
21819
21820 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
21821
21822         * TextControl.cs:
21823           - Added CaretSelection enum
21824           - Added comparison methods to Marker struct, makes selection code
21825             more readable
21826           - Added SelectionStart and SelectionEnd as 'moveable' location for
21827             the CaretDirection enum and handler
21828           - Added selection_prev variable to track optimized invalidation for
21829             word and line selection
21830           - Added SelectionVisible property (returns true if there is a valid 
21831             selection)
21832           - Switched CaretHasFocus to only display the caret if there is no
21833             visible selection
21834           - Avoiding StringBuilder.ToString to retrieve a single char, instead
21835             using the direct character index; should be much faster
21836           - Added various conditional debug statements
21837           - Fixed invalidation calculation for selection ranges
21838           - Added ExpandSelection() method to support word and line selection
21839           - Switched SetSelectionToCaret to use new Marker compare overloads
21840           - Added central IsWordSeparator() method to determine word 
21841             separators/whitespace and FindWordSeparator() to streamline common
21842             usage of IsWordSeparator()
21843         * TextBoxBase.cs:
21844           - Removed unneeded grabbed variable, it was just mirroring
21845             Control.Capture
21846           - No longer firing OnTextChanged event when Text setter is called,
21847             since the base will fire the event for us
21848           - Added handling of Ctrl-Up/Down selection
21849           - Added handling of Shift-Cursorkey selection
21850           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
21851             words
21852           - Added handling of Shift and Ctrl-Shift-Home/End selection
21853           - Removed some debug output
21854           - Added handling for single/double/tripple-click to place caret/
21855             select word/select line respectively (Fixes bug #76031)
21856           - Added support for drag expansion of word/line selection
21857         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
21858           current selection
21859
21860 2005-11-02  Jackson Harper  <jackson@ximian.com>
21861
21862         * X11Dnd.cs: If the drag is going to and from a MWF window just
21863         copy the data instead of sending it out through the X Selection
21864         mechanism.
21865
21866 2005-11-02  Jackson Harper  <jackson@ximian.com>
21867
21868         * X11Dnd.cs:
21869         * XplatUIX11.cs: When in a drag we don't want motion notify
21870         messages to get passed on to the other controls. This prevents
21871         mouse move messages from showing up in the drag source.
21872
21873 2005-11-02  Jackson Harper  <jackson@ximian.com>
21874
21875         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
21876         the correct button is release to end a drag.
21877         * XplatUIX11.cs: Make the button state internal so the drag system
21878         can access it.  Dragging needs to know about all button releases,
21879         not just left button.
21880
21881 2005-11-02  Miguel de Icaza  <miguel@novell.com>
21882
21883         * Form.cs (Icon): If the icon is null, reset the icon to the
21884         default value. 
21885
21886         * Cursor.cs: When writing the AND-mask bitmap do not include the
21887         number of colors, but hardcode those to two (black and white),
21888         fixes the loading of color cursors (Paint Dot Net).
21889
21890         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
21891         turn off autoscaling.
21892
21893         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
21894
21895 2005-11-02  Jackson Harper  <jackson@ximian.com>
21896
21897         * X11Dnd.cs: Make sure to send a status message if the pointer
21898         enters a control that can not accept a drop, otherwise the cursor
21899         isn't updated correctly. Also tried to compress the lines of code
21900         a bit.
21901
21902 2005-11-02  Jackson Harper  <jackson@ximian.com>
21903
21904         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
21905         set actions correctly.  This isn't perfect as XDND and win32 have
21906         some differences on how you allow actions. I'll clear this up by
21907         adding a path for drag from MWF to MWF windows.
21908         * XplatUIX11.cs: Hook into the dnd system.
21909
21910 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
21911
21912         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
21913         previously shown but they are no longer need it. Very obvious when 
21914         browsing files with FileDialog.
21915
21916 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
21917
21918         * Control.cs: We always need to call OnPaintBackground. We pretty much
21919           ignore AllPaintingInWmPaint and always do the painting there, whether 
21920           it's set or not, since we always ignore the WM_ERASEBKGND message 
21921           (which we don't generate on X11). This fixes #76616.
21922         * Panel.cs: Removed unneeded background painting. This happens properly
21923           in Control.cs already
21924
21925 2005-10-31  Mike Kestner  <mkestner@novell.com>
21926
21927         * Menu.cs: Add items to collection before setting their index.
21928         * MenuItem.cs : add range checking with ArgumentException like MS.
21929         [Fixes #76510]
21930
21931 2005-10-31  Jackson Harper  <jackson@ximian.com>
21932
21933         * ListBox.cs: Invalidate if the area is visible at all not just
21934         contained in the visible rect. Fixes unselection of semi visible
21935         items.
21936
21937 2005-10-31  Jackson Harper  <jackson@ximian.com>
21938
21939         * Control.cs: Consistently name the dnd methods. Make them
21940         internal so we can override them to match some MS behavoir
21941         internally.
21942         * Win32DnD.cs: Use the new consistent names.
21943
21944 2005-10-31  Jackson Harper  <jackson@ximian.com>
21945
21946         * TreeView.cs: Don't draw the selected node when we lose focus.
21947
21948 2005-10-31  Jackson Harper  <jackson@ximian.com>
21949
21950         * X11Dnd.cs: We still need to reset the state even though a full
21951         reset isn't being done, otherwise status's still get sent all over
21952         the place.
21953
21954 2005-10-31  Jackson Harper  <jackson@ximian.com>
21955
21956         * Control.cs: Make the dnd_aware flag internal so the dnd
21957         subsystem can check it. Catch exceptions thrown in dnd handlers to
21958         match MS behavoir.
21959         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
21960         * X11Dnd.cs: Handle null data in the converters. Set the XDND
21961         version when sending a XdndEnter. Use the control/hwnd dnd_aware
21962         flags to reduce the number of dnd enters/status's sent.
21963
21964 2005-10-31  Jackson Harper  <jackson@ximian.com>
21965
21966         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
21967
21968 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
21969
21970         * PictureBox.cs: Fixes 76512
21971
21972 2005-10-28  Jackson Harper  <jackson@ximian.com>
21973
21974         * X11Dnd.cs: Early implementation to support winforms being a drag
21975         source for data on X11. Also restructured the converters so they
21976         can go both ways now.
21977         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
21978         
21979 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
21980
21981         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
21982           clipboard requests
21983
21984 2005-10-27  Jackson Harper  <jackson@ximian.com>
21985
21986         * TreeNode.cs: Implement serialization so my DnD examples will work.
21987
21988 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
21989
21990         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
21991           TreeView.cs: Don't dispose objects that are not owned.
21992           
21993 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
21994
21995         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
21996           should retrieve the current cursor and report that, but XplatUI
21997           doesn't (yet) have an interface for that (and I'm not sure I even
21998           can, on X11)
21999         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
22000           until any message loop processing is done (and the WM_SETCURSOR
22001           replaces the cursor to the proper one)
22002         * XplatUIX11.cs: 
22003           - Fixed override behaviour, we can't set the cursor globally on X11, 
22004             just for our windows.
22005           - Invalidating the System.Drawing X11 display handle when we are
22006             shutting down
22007         * Control.cs: Fix to make csc happy
22008
22009 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
22010
22011         * TextBoxBase.cs: 
22012           - get_Text: Add last line (without trailing newline) to returned
22013             value (Fixes 76212)
22014           - get_TextLength: Count last line in returned length
22015           - ToString: Call Text property instead of duplicating code
22016
22017 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
22018
22019         * ImageList.cs: Dispose ImageAttributes objects.
22020
22021 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
22022
22023         * ImageList.cs: Use attribute constructors with less arguments where
22024           possible.
22025
22026 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
22027
22028         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
22029           Use typeof instead of strings when assembly is referenced. Added
22030           some more comments.
22031
22032 2005-10-21  Jackson Harper  <jackson@ximian.com>
22033
22034         * ListView.cs: Raise a double click event. Also tried to somewhat
22035         fix when the selectedindexchanged event is raised. Its still
22036         broken though.
22037
22038 2005-10-21  Jackson Harper  <jackson@ximian.com>
22039
22040         * TreeView.cs: New method to invalidate the plus minus area of a
22041         node without invalidating the whole node (maybe this can be used
22042         in some more places).
22043         * TreeNodeCollection.cs: When adding to an empty node we need to
22044         invalidate its plus minus area so the little block shows up.
22045         
22046 2005-10-21  Jackson Harper  <jackson@ximian.com>
22047
22048         * TreeView.cs: Make sure that when we invalidate a node the bounds
22049         are big enough to cover the selected box and the focus
22050         rectangle. Use a different colour for the lines connecting nodes
22051         so they show up with all themes.
22052
22053 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
22054
22055         * NativeWindow.cs: Don't call anything that could call into the driver,
22056           we might be on a different thread.
22057
22058 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
22059
22060         * Control.cs(Dispose): Since Dispose might run on a different thread,
22061           make sure that we call methods that could call into the driver via
22062           invoke, to avoid thread issues
22063
22064 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
22065
22066         * XplatUI.cs: Removed finalizer
22067         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
22068           not allowing to be called on the finalizer thread.
22069
22070 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
22071
22072         * ImageList.cs:
22073           - Reverted r51889 and r51891.
22074           - Added ImageListItem class that stores unmodified image items and image
22075             properties required to create list images until handle is created.
22076           - Added AddItem and moved image creation logic to AddItemInternal.
22077           - Added CreateHandle method that creates images based on unmodified items.
22078           - Added DestroyHandle that changes state to store unmodified items.
22079           - Add and AddStrip methods no more create handle.
22080           - ReduceColorDepth has no return value.
22081           - Dispose destroys handle.
22082           - Modified other methods to reflect the above changes.
22083           - Implemented key support.
22084           - Added profile 2.0 members and attributes.
22085           - Added private Reset and ShouldSerialize methods that provide the same
22086             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
22087             them as they are private.
22088           - Added some more comments about implementation details.
22089
22090 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
22091
22092         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
22093
22094 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
22095
22096         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
22097
22098 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
22099
22100         * DataGridDrawingLogic.cs: Fixes column hit calcultation
22101         * DataGridColumnStyle.cs: Remove debug message
22102
22103 2005-10-20  Jackson Harper  <jackson@ximian.com>
22104
22105         * TreeView.cs: We can always get input keys regardless of whether
22106         or not editing is enabled. They are used for navigation.
22107
22108 2005-10-20  Jackson Harper  <jackson@ximian.com>
22109
22110         * TreeNode.cs: Use the viewport rect for determining if a node
22111         needs to be moved for visibility. Don't use Begin/End edit. This
22112         calls a full refresh when its done.
22113         * TreeView.cs: New SetBottom works correctly.  Make the viewport
22114         rect property internal so the treenodes can see it. When clicking
22115         on a node we need to ensure that its visible because it might just
22116         be partly visible when clicked.
22117
22118 2005-10-20  Jackson Harper  <jackson@ximian.com>
22119
22120         * TreeNodeCollection.cs: Remove debug code.
22121
22122 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
22123
22124         * Datagrid.cs: Implements column sorting in Datagrid
22125         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
22126
22127 2005-10-20  Jackson Harper  <jackson@ximian.com>
22128
22129         * TreeNodeCollection.cs: Remove items properly. Update the correct
22130         area after removing them.
22131
22132 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
22133
22134         * Datagrid.cs: Should not call base.OnPaintBackground
22135
22136 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
22137
22138         * XplatUIX11.cs (GetMessage):
22139           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
22140             window instead of client window
22141           - Now properly calculates NC_xBUTTONUP message coordinates
22142           - ScreenToMenu now properly calculates it's coordinates of whole 
22143             window, since menus are in the whole window, not in the client
22144             window
22145           - Added WholeToScreen coordinate translation method
22146
22147 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
22148
22149         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
22150           want to return a message, loop back to the beginning of the function
22151           and grab the next real message to process instead.
22152
22153 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
22154
22155         * Splitter.cs: Properly set limits if no filler control is used
22156
22157 2005-10-19  Jackson Harper  <jackson@ximian.com>
22158
22159         * ColorDialog.cs: Don't show the help button if it is not enabled
22160         instead of disabling it (this is what MS does). Don't create the
22161         panel until the dialog is run, otherwise the vars (such as
22162         ShowHelp) are not set yet.
22163
22164 2005-10-19  Jackson Harper  <jackson@ximian.com>
22165
22166         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
22167         are reduced when adding nodes.
22168         * TreeNode.cs:
22169         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
22170         tree.
22171         
22172 2005-10-19  Jackson Harper  <jackson@ximian.com>
22173
22174         * FolderBrowserDialog.cs: End editing our treeview so the window
22175         actually gets refreshed.
22176
22177 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
22178
22179         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
22180           Obsoleted handling of WM_ERASEBKGND, now always draws our background
22181           inside of WM_PAINT
22182
22183 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
22184
22185         * MenuAPI.cs: Returns after Hidding window
22186         * XplatUIX11.cs: Added TODO found while debugging menu issues
22187
22188 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
22189
22190         * XplatUIX11.cs: Do not re-map the whole window when it's size
22191           becomes non-zero unless it's supposed to be actually visible
22192
22193 2005-10-18  Jackson Harper  <jackson@ximian.com>
22194
22195         * TreeView.cs: We don't need to keep a count anymore.
22196         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
22197         use the Grow method.
22198
22199 2005-10-18  Jackson Harper  <jackson@ximian.com>
22200
22201         * TreeNodeCollection.cs: Insert is not supported on arrays, so
22202         implement it manually here.
22203
22204 2005-10-18  Jackson Harper  <jackson@ximian.com>
22205
22206         * ImageList.cs: Dont kill the list when the colour depth is
22207         changed, just change the colour depth of all the images.
22208         - Same goes for setting the image size. Just resize them all
22209         instead of killing the list softly.
22210
22211 2005-10-18  Jackson Harper  <jackson@ximian.com>
22212
22213         * Control.cs: Don't invalidate empty rectangles.
22214
22215 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
22216
22217         * ListViewItem.cs:
22218           - Adds checked item to the Checked/Item lists (where empty before)
22219           - Do not add items to the Selected lists if they are already present
22220         * ListView.cs:
22221           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
22222           - When deleting items make sure that we delete them for the Selected
22223           and Checked list also.
22224
22225 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
22226
22227         * Label.cs: Dispose objects no longer used
22228         * ThemeWin32Classic.cs: Dispose objects no longer used
22229
22230 2005-10-18  Jackson Harper  <jackson@ximian.com>
22231
22232         * TabControl.cs: Don't refresh the whole control when the tabs are
22233         scrolled, we just need to refresh the tab area.
22234
22235 2005-10-17  Jackson Harper  <jackson@ximian.com>
22236
22237         * XplatUIX11.cs: Compress code a little bit. Only calculate the
22238         after handle when we need it.
22239
22240 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
22241
22242         * Control.cs: When the parent size changes, recalculate anchor 
22243           positions. Partial fix for #76462
22244
22245 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
22246
22247         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
22248           drawn. Fixes #76462
22249
22250 2005-10-17  Jackson Harper  <jackson@ximian.com>
22251
22252         * MonthCalendar.cs: Don't create the numeric up down until our
22253         handle is created. Otherwise our handle is created in the
22254         constructor and we don't know if we are a WS_CHILD or WS_POPUP
22255         yet.
22256
22257 2005-10-17  Jackson Harper  <jackson@ximian.com>
22258
22259         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
22260         correctly.
22261
22262 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
22263         * TreeNode.cs : small logical fix (was using local var instead of field)
22264         
22265 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
22266
22267         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
22268
22269 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
22270
22271         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
22272
22273 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
22274
22275         * Control.cs: 
22276           - Re-implemented anchoring code. My first version was really broken.
22277             This fixes bug #76033. Unlike the previous implementation we will
22278             no longer have round errors since all numbers are calculated from
22279             scratch every time. Removed various anchor-related obsolete vars.
22280           - InitLayout no longer causes layout event firing and layout to be 
22281             performed
22282
22283 2005-10-16  Jackson Harper  <jackson@ximian.com>
22284
22285         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
22286         which was broken).
22287
22288 2005-10-16  Jackson Harper  <jackson@ximian.com>
22289
22290         * TabControl.cs: Remove debug code.
22291
22292 2005-10-16  Jackson Harper  <jackson@ximian.com>
22293
22294         * XEventQueue.cs: Increase the default queue size (very simple
22295         apps needed to grow the queue).
22296         * Hwnd.cs: No finalizer so we don't need to suppress
22297         finalization. Compute the invalid area manually so a new rectangle
22298         does not newto be created.
22299         * ScrollableControl.cs: Don't set any params (otherwise visibility
22300         isn't set correctly).
22301         * MdiChildContext.cs: New constructor takes the mdi parent so it
22302         doesn't have to be computed and avoids a crash on windows. Draw
22303         the window icon properly, and allow the text to be seen.
22304         * Form.cs: Use new MdiChildContext constructor. Make sure the
22305         child context isn't null in wndproc.
22306         * TabControl.cs: Don't set focus, this is muddling keyboard
22307         behavoir. Expand the tab rows when a window size increase will
22308         allow extra tabs to be seen. Don't allow tabs smaller than the
22309         width of a window to be scrolled out of view.
22310         * TreeNode.cs:
22311         * TreeView.cs: Use measure string to calculate a nodes width, the
22312         width is cached and only updated when the text or the font is
22313         changed. Don't check for expand/collapse clicks on the first level
22314         nodes if root lines are disabled.
22315         
22316 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
22317
22318         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
22319
22320 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
22321
22322         * DataGridBoolColumn.cs: fixes warning
22323
22324 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
22325
22326         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
22327         to match more to match more precisely the MS Net behavior
22328
22329 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
22330
22331         * Hwnd.cs: Added field to track if window is mapped
22332         * XplatUIX11.cs: 
22333           - Unmap windows if they become 0-size, re-map when 
22334             they are >0 again; fixes #76035
22335           - Re-set our error handler after initializing X11Desktop
22336             to override any error handlers Gtk or whatever was called
22337             may have set.
22338
22339 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
22340
22341         * CheckedListBox.cs: Removed unused vars
22342         * ListView.cs: Fixed signatures
22343         * RichTextBox.cs: Removed unused vars
22344         * TextBoxBase.cs: Removed unused vars
22345         * XplatUIWin32.cs: Removed unused vars
22346         * XplatUIX11.cs: Removed unused vars
22347         * XplatUI.cs: Updated version and date to latest published
22348
22349 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
22350
22351         * Cursor.cs: Added private .ctor to work around a bug in
22352           resourceset (Thanks to Geoff Norton for the help on this)
22353         * SplitterEventArgs.cs: Made fields accessible so we don't
22354           waste boatloads of objects and can reuse the same one
22355           in Splitter
22356         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
22357           any captions and borders when generating screen coordinates
22358         * Splitter.cs: Reimplemented control, now fully complete, uses
22359           rubberband drawing, supports and obeys all properties, has
22360           proper cursors
22361
22362 2005-10-13  Miguel de Icaza  <miguel@novell.com>
22363
22364         * Form.cs (Form): Setup default values for autoscale and
22365         autoscale_base_size;  Make these instance variables, not static
22366         variables. 
22367
22368         (OnLoad): on the first load, adjust the size of the form.
22369
22370 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
22371
22372         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
22373           width argument to DrawReversibleRectangle()
22374         * XplatUIWin32.cs, XplatUIX11.cs: 
22375           - Implemented width for DrawReversibleRectangle()
22376           - Added logic to DrawReversibleRectangle that recognizes a zero
22377             width or height and only draws a line in that situation
22378         
22379 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
22380
22381         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
22382         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
22383         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
22384           method (it uses our FosterParent window to get a graphics context)
22385
22386 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
22387
22388         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
22389           and SetWindowBackground methods
22390         * Control.cs:
22391           - Setting proper ControlStyles
22392           - We no longer call XplatUI.SetWindowBackground and XplatUI.
22393             EraseWindowBackground, instead we draw the window background
22394             ourselves in PaintControlBackground. This behaviour is
22395             required to match MS, where, when OnPaintBackground is not
22396             called, the background is not drawn.
22397           - Removed unneeded Refresh() in set_Text
22398         * Hwnd.cs: Dropped the ErasePending support. No longer needed
22399         * XplatUIX11.cs:
22400           - Created DeriveStyles method to translate from CreateParams to
22401             FormBorderStyle and TitleStyle, also handles BorderStyle (which
22402             matches FormBorderStyle enum values)
22403           - Consolidated SetHwndStyles and CalculateWindowRect border/title
22404             style calculations into single DeriveStyles method
22405           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
22406             from redrawing the whole window on any resize or expose.
22407           - Fixed CreateWindow usage of SetWindowValuemask. Before not
22408             all styles were applied to our whole/client window appropriately
22409           - Removed EraseWindowBackground() and SetWindowBackground() methods
22410           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
22411             no longer clear/redraw the background through X
22412           - Removed handling of erase_pending bit, we have no use for it (or
22413             so it seems)
22414         * XplatUIOSX.cs:
22415           - Removed generation and handling of WM_ERASEBKGND message
22416           - Removed EraseWindowBackground() and SetWindowBackground() methods
22417           - Removed handling of hwnd.ErasePending flag
22418         * XplatUIWin32.cs:
22419           - Removed EraseWindowBackground() and SetWindowBackground() methods
22420           - We no longer call EraseWindowBackground on PaintEventStart, we 
22421             ignore the fErase flag, erasing is handled in Control in the
22422             background handler
22423         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
22424           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
22425           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
22426           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
22427           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
22428           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
22429           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
22430
22431 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
22432
22433         * PropertyGrids.cs: Get sub properties
22434         * PropertyGridView.cs: Fix drawing code
22435
22436 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22437
22438         * ListBox.cs: Fixes 76383
22439
22440 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22441
22442         * DataGridTextBoxColumn.cs: Sets location and size before attachment
22443         * ThemeWin32Classic.cs: Fixes border drawing and calculations
22444         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
22445
22446
22447 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22448
22449         * ComboBox.cs: Fixes border drawing
22450
22451 2005-10-10  Miguel de Icaza  <miguel@novell.com>
22452
22453         * MimeIcon.cs: Ignore errors if the file can not be read.
22454
22455 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22456
22457         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
22458          - Fixed border calculations
22459          - Fixed horizontal scrolling in single column listboxes
22460          - Fixed drawing issues
22461
22462 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
22463
22464         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
22465           FormBorderStyle enum
22466         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
22467           code to determine FormBorderStyles from CreateParams
22468         * Form.cs:
22469           - Fixed bug where we'd set the wrong window styles if we were
22470             not creating an MDI window
22471           - Added call to XplatUI.SetBorderStyle when form borders are set
22472         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
22473         * Hwnd.cs:
22474           - Removed obsolete edge style
22475           - Switched from BorderStyle to FormBorderStyle
22476         
22477 2005-10-10  Jackson Harper  <jackson@ximian.com>
22478
22479         * Form.cs: Use the property to get the window handle instead of
22480         accessing it directly. Prevents a null reference exception.
22481
22482 2005-10-10  Jackson Harper  <jackson@ximian.com>
22483
22484         * TreeView.cs: Don't adjust the rect given to DrawString now that
22485         our libgdiplus draws correctly.
22486
22487 2005-10-08  Jackson Harper  <jackson@ximian.com>
22488
22489         * TreeView.cs: Don't try to find the clicked on node if there are
22490         no nodes in the tree.
22491
22492 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
22493
22494         * RichTextBox.cs:
22495
22496           restore
22497
22498 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
22499
22500         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
22501           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
22502           ErrorProvider.cs:
22503           Use ResPool for brushes and dispose System.Drawing objects that
22504           are not used anymore.
22505
22506 2005-10-07  Jackson Harper  <jackson@ximian.com>
22507
22508         * MdiChildContext.cs: Use the new borders instead of drawing them
22509         ourselves.
22510
22511 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
22512
22513         * Calling UpdateBounds after changing the window's BorderStyle 
22514         since the style can change the ClientSize
22515
22516 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22517
22518         * Control.cs: Made PaintControlBackground virtual
22519         * Panel.cs: Overriding PaintControlBackground instead of using paint
22520           event; paint event method was interfering with 'real' users of the
22521           event.
22522
22523 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
22524
22525         * ThemeWin32Classic.cs: remove border drawing since it is handled
22526         by the base control class now and was causing double border drawing.
22527
22528 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22529
22530         * Panel.cs: Redraw our background on paint. Not a pretty solution,
22531           but it does seem to match MS behaviour. This fixes bug #75324
22532
22533 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22534
22535         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
22536           somewhat hackish looking
22537
22538 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
22539
22540         * TextBoxBase.cs:
22541           - We now accept Enter even if AcceptEnter is false, if the containing
22542             form does not have an AcceptButton configured (fixes bug #76355)
22543           - Calculations are now fixed to no longer use Width/Height, but
22544             ClientSize.Width/Height, since we now support borders (this was
22545             a result of fixing borders and therefore bug #76166)
22546           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
22547             true (fixes bug #76354)
22548         
22549 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22550
22551         * Control.cs: 
22552           - Defaulting BorderStyle and setting it in XplatUI when our window 
22553             is created
22554           - Added enum check to InternalBorderStyle setter
22555         * XplatUIX11.cs: 
22556           - Added drawing of window borders
22557           - Now properly calculates WM decorations offset for toplevel 
22558             windows (fixes bug #74763)
22559         * XplatUIWin32.cs: 
22560           - Implemented BorderStyles for windows (we're letting win32 draw 
22561             the border for us)
22562           - Fixed the signature for SetWindowLong
22563         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
22564           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
22565           setting borders
22566         * UpDownBase.cs: Remove drawing of borders, this is handled by
22567           the driver, outside the client area
22568         * ListView.cs: Removed bogus border calculations. The control should
22569           be oblivious to borders, since those are not part of the client
22570           area. 
22571         * X11DesktopColors.cs: Commented out (currently) unneeded variables
22572         * ThemeWin32Classic.cs: Removed border calculations from ListView 
22573           drawing code
22574
22575 2005-10-06  Jackson Harper  <jackson@ximian.com>
22576
22577         * MdiChildContext.cs: Clear out the old virtual position remove
22578         all the unneeded calls to CreateGraphics.
22579
22580 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
22581
22582         * TextControl.cs: Use proper color for highlighted text; fixes #76350
22583
22584 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
22585
22586         * Form.cs: 
22587           - Added loading and setting of our new default icon
22588           - Only set icon if window is already created
22589
22590 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22591
22592         * Label.cs:
22593           - Do not explicitly set the foreground and background colors, to
22594             allow inheriting from parents (fixes #76302)
22595           - Use Control's InternalBorderStyle property to deal with borders
22596
22597 2005-10-06  Jackson Harper  <jackson@ximian.com>
22598
22599         * MdiChildContext.cs: Use the new xplatui function to draw a
22600         reversible rect.
22601
22602 2005-10-06  Jackson Harper  <jackson@ximian.com>
22603
22604         * Form.cs: Add the parent before creating the child context cause
22605         we need the parent when setting up the child.
22606
22607 2005-10-06  Jackson Harper  <jackson@ximian.com>
22608
22609         * FolderBrowserDialog.cs: redo the tree population code so a
22610         second thread isn't used. Should be a lot faster and more stable
22611         now.
22612
22613 2005-10-05  Jackson Harper  <jackson@ximian.com>
22614
22615         * TreeView.cs: There are no expand/collapse boxes if the node has
22616         no children.
22617
22618 2005-10-05  Jackson Harper  <jackson@ximian.com>
22619
22620         * X11DesktopColors.cs: Get menu colours for the gtk theme.
22621
22622 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
22623
22624         * FileDialog.cs: Fix InitialDirectory
22625
22626 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
22627
22628         * ComboBox.cs:
22629                 - Fixes changing between styles
22630                 - Fixes simple mode
22631                 - Fixes last item crashing when navigating with keyboard
22632
22633 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
22634
22635         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
22636
22637 2005-10-05  Jackson Harper  <jackson@ximian.com>
22638
22639         * TreeView.cs: If updating the root node do a full refresh.
22640         * TreeNode.cs: The root node should be expanded by default. Also
22641         added a utility prop to tell if we are the root node.
22642         * TreeNodeCollection.cs: Only refresh if the node we are being
22643         added to is expanded. Also added a comment on a potential
22644         optimization.
22645         
22646 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
22647
22648         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
22649           in dispose method. Fixes #76330
22650
22651 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
22652
22653         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
22654
22655                 - Implements vertical and horizontal scrolling using XplatUI
22656                 - Fixes keyboard navagation
22657                 - Fixes EnsureVisible
22658                 - Drawing fixes
22659                 - Handles and draws focus properly
22660
22661
22662 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
22663
22664         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
22665           Create handle. NET_2_0: Destroy handle when value is null.
22666
22667 2005-10-03  Jackson Harper  <jackson@ximian.com>
22668
22669         * ScrollBar.cs: My last scrollbar patch was broken. This is a
22670         revert and a new patch to prevent the thumb from refreshing so
22671         much.
22672
22673 2005-10-02  Jackson Harper  <jackson@ximian.com>
22674
22675         * ScrollBar.cs: Don't update position if it hasn't actually
22676         changed. This occurs when you hold down the increment/decrement
22677         buttons and the thumb gets to the max/min.
22678
22679 2005-10-01  Jackson Harper  <jackson@ximian.com>
22680
22681         * Form.cs:
22682         * MdiChildContext.cs:
22683         * MdiClient.cs: Implement ActiveMdiChild in Form.
22684
22685 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
22686
22687         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
22688
22689 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
22690
22691         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
22692           be found
22693
22694 2005-09-30  Jackson Harper  <jackson@ximian.com>
22695
22696         * ListBox.cs: Don't do a full refresh unless some data has
22697         actually changed.
22698
22699 2005-09-30  Jackson Harper  <jackson@ximian.com>
22700
22701         * TreeView.cs: Make sure that the checkboxes size is factored in
22702         even when not visible.
22703
22704 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
22705
22706         * FileDialog.cs: Fix Jordi's build break
22707
22708 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
22709
22710         * FileDialog.cs: 
22711                 - Use standard the Windows colours for the combobox as espected
22712                 - Dispose objects that use resouces when no longer need them
22713
22714 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
22715
22716         * X11DesktopColors.cs: Initial incomplete implementation
22717         * XplatUIX11.cs: Added call to initialize X11DesktopColors
22718
22719 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
22720
22721         * Theme.cs: 
22722           - Switched Theme color names to match the names defined in 
22723             System.Drawing.KnownColors. Life's hard enough, no need to make 
22724             it harder.
22725           - Added setters to all theme color properties so themes can set
22726             their color schemes. The setters also propagate the color changes
22727             to System.Drawing.KnownColors via reflection
22728         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
22729           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
22730           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
22731           use the new, more logical theme color names
22732         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
22733           post-NT colors
22734         * ThemeWin32Classic.cs:
22735           - Removed code to set the old classic Windows colors. Instead it
22736             now relies on the colors returned by System.Drawing.KnownColors
22737             which will be either modern static colors (Unix) or colors
22738             read from the user's configuration (Win32)
22739           - Updated to use the new, more logical theme color names
22740           - Switched DataGrid drawing code to use only Theme colors instead of
22741             a mix of System.Drawing.KnownColors and Theme colors
22742           - DrawFrameControl(): Removed code that fills the button area, the
22743             fill would overwrite any previous fill done by a control. This
22744             fixes bug #75338 
22745           - Added DrawReversibleRectangle() stub
22746         * ScrollableControl.cs: Set visible state to false when scrollbars
22747           are removed (pdn fix)
22748         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
22749           DrawReversibleRectangle() method to allow drawing primitive 
22750           'rubber bands'
22751         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
22752
22753 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22754
22755         * ImageList.cs: Add(Icon): Create handle.
22756
22757 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
22758
22759         * ListView.cs:
22760         * ThemeWin32Classic.cs:
22761                 - Fixes detail mode
22762                 - Sets clippings
22763                 - Issues with drawing
22764
22765 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22766
22767         * ImageList.cs: Moved RecreateHandle back to ImageList as event
22768           source has to be the ImageList.
22769
22770 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22771
22772         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
22773
22774 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22775
22776         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
22777
22778 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22779
22780         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
22781
22782 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
22783         * GridItem.cs: Fixed TODOs
22784         * GridItemCollection.cs: Added ICollection interface
22785
22786 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22787
22788         * ImageList.cs: Resize icons when needed.
22789
22790 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
22791
22792         * ListViewItem.cs
22793                 - Fixes GetBounds and returns on screen rects
22794         * ListView.cs:
22795                 - Fixes vertical and horzintal scrolling of items
22796         * ThemeWin32Classic.cs:
22797                 - Fixes drawing
22798                 
22799 2005-09-29  Raja R Harinath  <harinath@gmail.com>
22800
22801         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
22802
22803 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
22804
22805         * ImageList.cs: Added comments about handle creation. Moved Handle,
22806           HandleCreated and OnRecreateHandle implementations to ImageCollection.
22807           Handle is created in Add methods.
22808
22809 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
22810          
22811         * DataGridDrawingLogic.cs: 
22812                 - Takes rows into account on Colum calculations
22813                 - Returns the column when clickig
22814         * DataGrid.cs:
22815                 - Fixes default HitTestInfo values
22816                 - Fixes HitTestInfo.ToString
22817                 - Fixes ResetBackColor          
22818         
22819 2005-09-28  Jackson Harper  <jackson@ximian.com>
22820
22821         * MdiChildContext.cs: Obey rules for fixed sized windows (no
22822         sizing or cursor changes). Also added some temp code to draw the
22823         titlebars text (Makes dev a little easier).
22824
22825 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
22826
22827         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
22828
22829 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
22830          
22831         * ListBox.cs: Fixes bug 76253
22832
22833 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
22834
22835         * ImageList.cs: Added comments about the current implementation. Added
22836           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
22837           Format32bppArgb to preserve transparency and can use Graphics.FromImage
22838           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
22839           with Bitmap.LockBits for better performance. Revised the whole file to
22840           match MS.NET behaviour and provide better performance. Non-public
22841           interface members are calling public members even when they throw
22842           NotSupportedException for better maintainability. Moved ColorDepth,
22843           ImageSize, ImageStream and TransparentColor implementations to
22844           ImageCollection for better performance as these properties are not used
22845           by ImageList.
22846         * ImageListStreamer.cs: Added a new internal constructor that takes an
22847           ImageList.ImageCollection and serializes Images based on
22848           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
22849           match ImageList property name.
22850
22851 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
22852
22853         * ListBox.cs: Fixes IndexFromPoint for last item
22854
22855 2005-09-27  Jackson Harper  <jackson@ximian.com>
22856
22857         * Form.cs: Set the position of new mdi children correctly.
22858
22859 2005-09-27  Jackson Harper  <jackson@ximian.com>
22860
22861         * MdiClient.cs: New mdi children need to be added to the back of
22862         the controls collection so the zorder is set correctly. Also add a
22863         count of all the child windows that have been created.
22864
22865 2005-09-27  Jackson Harper  <jackson@ximian.com>
22866
22867         * Form.cs (CreateParams): Setup MDI forms correctly.
22868
22869 2005-09-27  Jackson Harper  <jackson@ximian.com>
22870
22871         * MdiChildContext.cs:
22872         * MonthCalendar.cs:
22873         * UpDownBase.cs:
22874         * ListBox.cs:
22875         * ListView.cs:
22876         * TextBoxBase.cs:
22877         * TreeView.cs:
22878         * ScrollableControl.cs:
22879         * ComboBox.cs: Add implicit controls using the new implict control
22880         functionality in ControlCollection. Also try to block multiple
22881         control add in a suspend/resume layout to save some cycles.
22882         
22883 2005-09-27  Jackson Harper  <jackson@ximian.com>
22884
22885         * Control.cs: Add functionality to the controls collection to add
22886         'implicit controls' these are controls that are created by the
22887         containing control but should not be exposed to the user. Such as
22888         scrollbars in the treeview.
22889         * Form.cs: The list var of the ControlsCollection is no longer
22890         available because of the potential of implicit controls getting
22891         ignored by someone accessing the list directly.
22892
22893 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
22894
22895         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
22896           loose it's parent. (Fixed bug introduced in r49103 when we added
22897           setting the child parent to null on Remove)
22898
22899 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
22900
22901         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
22902         * Splitter.cs: Added missing attributes for BorderStyle property.
22903         * TextBoxBase.cs: Marked Calculate* methods internal.
22904         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
22905         MS.NET.
22906
22907 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
22908          
22909         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
22910
22911 2005-09-25  Jackson Harper  <jackson@ximian.com>
22912
22913         * TreeView.cs: Update the node bounds correctly regardless of
22914         whether the node is visible.
22915
22916 2005-09-25  Jackson Harper  <jackson@ximian.com>
22917
22918         * ImageList.cs: Don't dispose the image after it is added to the
22919         image list. Only reformat images that need to be resized.
22920
22921 2005-09-25  Jackson Harper  <jackson@ximian.com>
22922
22923         * ImageList.cs: Don't set the format when changing the image.
22924
22925 2005-09-25  Jackson Harper  <jackson@ximian.com>
22926
22927         * TreeView.cs: We can't just assume the node has a font. Use the
22928         treeviews font if no node font is available.
22929
22930 2005-09-25  Jackson Harper  <jackson@ximian.com>
22931
22932         * TreeView.cs: Allow the scrollbars to be reset with negative
22933         values.
22934         - Don't add scrollbars to negative sized windows.
22935
22936 2005-09-23  Jackson Harper  <jackson@ximian.com>
22937
22938         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
22939         old Mono.Posix. Also remove some stray code that shouldn't have
22940         been committed.
22941
22942 2005-09-23  Jackson Harper  <jackson@ximian.com>
22943
22944         * TreeView.cs: Attempt at proper sizing of the horizontal
22945         scrollbar. Also don't resize the scrollbars unless they are
22946         visible.
22947
22948 2005-09-23  Jackson Harper  <jackson@ximian.com>
22949
22950         * TreeView.cs: We don't need to expand the invalid area when the
22951         selection changes, as this is all drawn in the node's bounding
22952         box. The area needs to be expanded (previous typo was contracting
22953         it) when the focus rect moves.
22954
22955 2005-09-23  Jackson Harper  <jackson@ximian.com>
22956
22957         * TreeView.cs: Display the selection box under the correct
22958         circumstances. We were rendering white text with no selection box
22959         before.
22960
22961 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
22962
22963         * TextControl.cs(Split): Now updates selection start/end if it points 
22964           into a line that's being split. Fixes a FIXME and bug #75258
22965
22966 2005-09-23  Jackson Harper  <jackson@ximian.com>
22967
22968         * Binding.cs:
22969         * ListControl.cs: Don't use the path when retrieving binding
22970         managers from the binding context. My bat sense tells me that the
22971         path is only used on insertion.
22972
22973 2005-09-22  Jackson Harper  <jackson@ximian.com>
22974
22975         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
22976
22977 2005-09-22  Jackson Harper  <jackson@ximian.com>
22978
22979         * Splitter.cs: There are special cursors used for splitting.
22980         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
22981
22982 2005-09-22  Jackson Harper  <jackson@ximian.com>
22983
22984         * Splitter.cs: Change the cursor appropriately when the splitter
22985         is moused over, so the user actually knows there is a splitter
22986         there.
22987
22988 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
22989
22990        * Label.cs : Fix ToString method to give same output as MS.NET
22991
22992 2005-09-22  Jackson Harper  <jackson@ximian.com>
22993
22994         * TreeView.cs: Create the scrollbars when the handle is created
22995         and add them right away, just make them invisble. Also account for
22996         the window being shrunk vertically to the point that the vert
22997         scrollbar needs to be added.
22998         - Remove some 0.5 adjustments to get around anti aliasing issues.
22999         
23000 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
23001          
23002         * MainMenu.cs: Fixes default value
23003         * MenuItem.cs: Fixes default value
23004
23005 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
23006
23007         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
23008
23009 2005-09-21  Jackson Harper  <jackson@ximian.com>
23010
23011         * Control.cs: Don't try to set the border style on the window if
23012         it hasn't been created. When the window is created the border
23013         style will be used.
23014
23015 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
23016
23017         * Control.cs (Update): Don't call XplatUI if we don't have a
23018           window handle yet
23019
23020 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
23021
23022         * ContainerControl.cs: Instead of throwing an exception, print
23023           a one-time warning about Validate not being implemented
23024         * XplatUIWin32.cs: Removed debug output
23025
23026 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
23027
23028         * Control.cs: Only set XplatUI background if we expect the windowing
23029           system to handle the background. This stops controls that draw their
23030           own background from flickering
23031
23032         * XplatUIX11.cs: Support custom visuals and colormaps for window 
23033           creation. This allows, amongst other things, using MWF X11 windows 
23034           with OpenGL.
23035
23036 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
23037
23038         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
23039           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
23040           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
23041           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
23042           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
23043           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
23044           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
23045           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
23046           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
23047           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
23048           GridColumnStylesCollection.cs, 
23049           IDataGridColumnStyleEditingNotificationService.cs,
23050           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
23051           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
23052           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
23053           TreeNodeCollection.cs, AmbientProperties.cs, 
23054           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
23055           DataObject.cs, ErrorProvider.cs, Splitter.cs,
23056           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
23057           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
23058           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
23059           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
23060           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
23061           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
23062           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
23063           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
23064           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
23065           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
23066           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
23067           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
23068           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
23069           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
23070           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
23071           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
23072           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
23073           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
23074           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
23075           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
23076           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
23077           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
23078           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
23079           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
23080           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
23081           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
23082           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
23083           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
23084           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
23085           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
23086           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
23087           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
23088           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
23089           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
23090           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
23091
23092 2005-09-21  Jackson Harper  <jackson@ximian.com>
23093
23094         * TreeNode.cs: Call Before/After Expand not Collapse when
23095         expanding.
23096
23097 2005-09-20  Jackson Harper  <jackson@ximian.com>
23098         
23099         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
23100
23101 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
23102          
23103         * ListViewItem.cs:
23104                 - Fixes bug 76120
23105                 - Fixes proper storing of subitems
23106                 - Fixes not updated items
23107
23108 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
23109
23110         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
23111           things if our window handle isn't created yet. Also disabled 
23112           debug for TextBoxBase
23113
23114 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
23115
23116         * MenuAPI.cs: Remove filtering of events to allow menu usage
23117
23118 2005-09-20  Miguel de Icaza  <miguel@novell.com>
23119
23120         * Cursor.cs: Allow null to be passed to Cursor.Current.
23121
23122 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
23123
23124         * ThemeWin32Classic.cs:
23125           - Change some private methods/fields to protected virtual so that 
23126             they can be accessed and overriden in derived classes
23127           - First refactoring of some methods. Derived themes now don't 
23128             need to duplicate the complete code from ThemeWin32Classic
23129         * ThemeNice.cs:
23130           - Added nice StatusBar
23131           - Derive from ThemeWin32Classic and not Theme
23132           - Removed duplicate ThemeWin32Classic code
23133
23134 2005-09-20  Miguel de Icaza  <miguel@novell.com>
23135
23136         * Control.cs (ControlCollection.Add): If the value null is passed
23137         the control is ignored. 
23138
23139         Optimize this loop.
23140
23141 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
23142
23143         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
23144           PostQuitMessage state.
23145         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
23146
23147 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
23148
23149         * Application.cs: Our constructor will never get called, move 
23150           initialization to fields; fixes bug #75933
23151
23152 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
23153
23154         * FileDialog.cs :
23155                 - Allow files to be selected properly using file name
23156                 combo box.
23157                 - Add ability to change diretory (absolute / relative)
23158                 using file name combo box.
23159
23160 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
23161          
23162         * ListBox.cs: 
23163                 - Fixes Multicolumn listboxes item wrong calculations
23164                 - Allows to click when only one item is in the listbox
23165                 - Fixes crash when no items using keyboard navigation
23166
23167 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
23168
23169         * ComboBox.cs: Reverted almost everything from the latest patch which
23170           broke ComboBox
23171
23172 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
23173         
23174         * ToolTip.cs:
23175                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
23176         * ComboBox.cs:
23177                 - When DropDownStyle is Simple, it does not show scrollbar 
23178                 to the last item of the list.
23179                 - When DropDownStyle is Simple, it crashed when the list was 
23180                 scrolled down with the down cursor key.
23181                 - Fixed a bug that when DropDownStyle is DropDownList, the 
23182                 selected item was not shown.
23183                 - The position of the selected item was not preserved when 
23184                 the next dropdown happened.
23185         * ThemeWin32Classic.cs:
23186                 - Items were wrapped at the right end.
23187         * CheckedListBox.cs:
23188                 - Fixed Add method
23189         * ListBox.cs:
23190                 - Items should be fully shown.
23191                 - When resizing and vertical scrollbar disappeared, the item 
23192                 of index 0 should be on the top of the list.
23193                 - GetItemRectangle should consider the size of ver. scrollbar
23194         * StatusBar.cs:
23195                 - SizingGrip area should not be allocated when it is not 
23196                 displayed.
23197                 - Now it reflects MinWidth of the containing panel and 
23198                 fixed a crash that happens when its width becomes so small.
23199
23200 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
23201
23202         * CheckedListBox.cs: Fixes bug 76028
23203         * ListBox.cs: Fixes bug 76028
23204
23205 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
23206
23207         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
23208         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
23209
23210 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
23211
23212         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
23213
23214 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
23215
23216         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
23217
23218 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
23219
23220         * IRootGridEntry.cs: Added
23221         * PropertyGridCommands.cs: Added
23222         * PropertiesTab.cs: Added missing methods and property
23223         * PropertyGridView.cs: Made class internal
23224         * PropertyGridTextBox.cs: Made class internal
23225
23226 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
23227
23228         * MimeIcon.cs: Try to check some other environment variables
23229           if "DESKTOP_SESSION" returns "default"
23230
23231 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
23232
23233         * ThemeNice.cs: Corrected background colors (e.g. menus)
23234         * ColorDialog.cs: Use correct background colors for controls
23235
23236 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
23237
23238         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
23239
23240 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
23241
23242         * RichTextBox.cs: Added initial implementation
23243         * lang.cs: Removed. Was accidentally checked in long time ago
23244         * TODO: Removed. Contents were obsolete
23245
23246 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
23247                                                                                 
23248         * PropertiesTab.cs : Added
23249
23250 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
23251                                                                                 
23252         * PropertyGrid.cs : Update
23253         * PropertyGridView.cs : Update
23254         * System.Windows.Forms.resx : Added images and strings
23255
23256 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
23257
23258         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
23259  
23260 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
23261
23262         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
23263           a busy loop right after the Ungrab the X11 display is otherwise 
23264           blocked
23265
23266 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
23267
23268         * ThemeWin32Classic.cs: Optimise the use of clipping
23269
23270 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
23271
23272         * DataGrid.cs: fixes recursion bug
23273
23274 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
23275
23276         * ThemeNice.cs: 
23277           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
23278           - Cleanup
23279
23280 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
23281
23282         * ThemeNice.cs: Draw nice ProgressBars
23283
23284 2005-09-01  Miguel de Icaza  <miguel@novell.com>
23285
23286         * VScrollBar.cs: Another buglet found by Aaron's tool. 
23287
23288         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
23289         bug finder.
23290
23291 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
23292
23293         * ThemeNice.cs:
23294           - Added nicer menu drawing
23295           - Updated DrawTab
23296           - some refactoring
23297
23298 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
23299
23300         * CreateParams.cs (ToString): Made output match MS
23301         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
23302             handle is already created (to avoid forcing window creation)
23303         * XplatUIX11.cs: Set window text to caption after creating window,
23304           in case Text was set before window was created
23305         * Form.cs: Use this.Text instead of a static string as caption
23306
23307 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
23308
23309         * NotifyIcon.cs: Don't set the window to visible; this screws
23310           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
23311           OnPaint without a bitmap)
23312         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
23313           happen very often anyway; we could add the check to the WM_PAINT 
23314           event generation code
23315
23316 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
23317
23318         * NotifyIcon.cs: Fill the icon area with a background color, to 
23319           avoid 'residue' when transparent icons are drawn
23320         * XplatUIX11.cs:
23321           - Handle whole_window == client_window when destroying windows
23322           - SystrayAdd(): Set client_window to whole_window value to
23323             get mouse and other events passed to NotifyIcon
23324
23325 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
23326
23327         * Form.cs: Set proper default for Opacity property
23328         * NotifyIcon.cs:
23329           - ShowSystray(): Don't bother creating telling the OS
23330             about the systray item if no icon is provided
23331           - Now handles WM_NCPAINT message to deal with whole/client window
23332             split
23333           - Create window as visible to not get caught by Expose optimization
23334         * Hwnd.cs: Removed debug message
23335         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
23336           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
23337             PaintEventStart/End to use new client argument
23338         * TextBoxBase.cs:
23339           - Commented out debug messages
23340           - Switched PaintEventStart/End to use new client argument
23341         * XplatUI.cs: Added client window bool to PaintEventStart()/
23342           PaintEventEnd() calls, to support drawing in non-client areas
23343         * XplatUIDriver.cs: 
23344           - Added client window bool to PaintEventStart()/PaintEventEnd() 
23345             calls, to support drawing in non-client areas
23346           - Added conditional compile to allow using MWF BeginInvoke 
23347             on MS runtime
23348         * XplatUIX11.cs:
23349           - Added some conditional debug output
23350           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
23351             whole/client window split
23352           - Implemented handling of client argument to PaintEventStart()/End()
23353         * Control.cs:
23354           - Throw exception if BeginInvoke() is called and the window handle
23355             or one of the window's parent handles is not created
23356           - Added conditional compile to allow using MWF BeginInvoke on
23357             MS runtime
23358           - get_Parent(): Only sets parent if handle is created. This avoids
23359             forcing window handle creation when parent is set.
23360           - Now fires Layout and Parent changed events in proper order
23361           - Switched to use Handle instead of window.Handle for Z-Order setting,
23362             the get_Parent() patch above causes us to possibly get null for 'window'
23363           - Implemented handling of client argument to PaintEventStart()/End()
23364           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
23365             default handling)
23366           - Now sends a Refresh() to all child windows when Refresh() is called
23367
23368 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
23369
23370         * Form.cs: Added (non-functional) Opacity property
23371         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
23372
23373 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
23374         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
23375           use export MONO_THEME=nice to activate it.
23376           Currently supported controls:
23377           - Button
23378           - ComboBox
23379           - ScrollBar
23380           - TabControl (TabAlignment.Top only, other will follow)
23381         * ThemeEngine.cs: Add theme nice
23382         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
23383           if enabled
23384
23385 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
23386
23387         * Splitter.cs: Resize docked control and its neighbor.
23388
23389 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
23390         -- Making Windows with Menus layout correctly --
23391         * Form.cs : The first leg of the fix
23392                 Menu setter - adjust Client Size as needed to make space for the menu
23393                 SetClientSizeCore - doesn't call base version to be able to pass the 
23394                         menu handle to XplatUI.CalculateWindowRect
23395         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
23396         * XplatUIX11.cs: The critical second leg of the fix
23397                 GetWindowPos needs to use a recalculated client_rect
23398                 so that resizing the window doesn't break layout of child controls. 
23399                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
23400                 Lots of \t\n killed
23401
23402 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
23403
23404         * Label.cs: Now properly recalculates width and height on Font and Text
23405           changes if AutoSize is set
23406
23407 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
23408         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
23409
23410 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
23411
23412         * ImageList.cs: Makes ToString method compatible with MS
23413
23414 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
23415
23416         * MenuAPI.cs: fixes bug 75716
23417
23418 2005-08-11 Umadevi S <sumadevi@novell.com>
23419         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
23420
23421 2005-08-11 Umadevi S <sumadevi@novell.com>
23422         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
23423
23424 2005-08-10  Umadevi S <sumadevi@novell.com>
23425         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
23426
23427 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
23428
23429         * Menu.cs: fixes bug 75700
23430         * MenuAPI.cs: fixes navigation issues
23431
23432 2005-08-09  Umadevi S <sumadevi@novell.com>
23433         * CheckedListBox.cs - simple fix for GetItemChecked.
23434
23435 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
23436
23437         * ComboBox.cs: Serveral fixes
23438         * ListBox.cs: Serveral fixes
23439
23440 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
23441
23442         * ComboBox.cs: Fixes FindString methods and GetItemHeight
23443         * ListBox.cs: Fixes FindString methods
23444
23445 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
23446
23447         * DataGrid.cs: fixes bugs exposed by new tests
23448
23449 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
23450
23451         * Mime.cs: Compile Mono assembly references only if compiling
23452           with Mono (Allows to build with VS.Net again)
23453
23454 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
23455
23456         * Control.cs (PaintControlBackground): Draw background image
23457         corrrectly.
23458         (CheckForIllegalCrossThreadCalls): Stubbed.
23459         
23460         * Form.cs (OnCreateControl): Center when should be centered.
23461         
23462         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
23463
23464 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
23465
23466         * Binding.cs: Binding to properties should be case unsensitive
23467
23468 2005-07-18 vlindos@nucleusys.com
23469
23470         * DataGrid.cs: fixes setmember order
23471
23472 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
23473
23474         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
23475         * FileDialog.cs: FileDialog is now resizable and uses the new
23476           MimeIconEngine
23477
23478 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
23479
23480         * DataGridTextBoxColumn.cs: default value
23481         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
23482         * GridTableStylesCollection.cs: fixes checking MappingName
23483         * DataGridDrawingLogic.cs: fixes drawing logic issues
23484         * DataSourceHelper.cs: rewritten to make compatible with more data sources
23485         * DataGrid.cs: fixes    
23486
23487 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
23488
23489         * MimeGenerated.cs: Use case sensitive comparer for
23490           NameValueCollections
23491
23492 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
23493
23494         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
23495         * ThemeWin32Classic.cs: bug fixes, code refactoring
23496         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
23497         * DataGrid.cs: bug fixes, code refactoring
23498         * DataGridTextBox.cs: bug fixes, code refactoring
23499         * DataGridColumnStyle.cs:  bug fixes, code refactoring
23500         * Theme.cs:  bug fixes, code refactoring
23501
23502 2005-07-01  Peter Bartok  <pbartok@novell.com> 
23503
23504         * TextControl.cs: Quick fix for the reported crash on ColorDialog
23505           and other text box usage
23506
23507 2005-07-01  Jackson Harper  <jackson@ximian.com>
23508
23509         * TabControl.cs: Make sure the bottom of the tab covers the pages
23510         border.
23511
23512 2005-06-30  Peter Bartok  <pbartok@novell.com> 
23513
23514         * Form.cs (ShowDialog): Assign owner of the dialog
23515         * TextBoxBase.cs: Always refresh caret size when deleting, caret
23516           might have been moved to a tag with different height
23517
23518 2005-06-30  Jackson Harper  <jackson@ximian.com>
23519
23520         * Form.cs: Don't create an infinite loop when setting focus
23521         * MenuItem.cs: Don't dirty the parents if we don't have any
23522
23523 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
23524
23525         * LibSupport.cs: Rename
23526
23527 2005-06-29  Peter Bartok  <pbartok@novell.com>
23528
23529         * TextBoxBase.cs: Re-align caret after deleting a character
23530         * TextControl.cs:
23531           - DeleteChars(): Ensure that tag covers the provided position
23532           - StreamLine(): Drop reference for dropped tag
23533
23534 2005-06-29  Peter Bartok  <pbartok@novell.com> 
23535
23536         * TextControl.cs: 
23537           - Selections now work properly, anchoring at the initial location
23538             and properly extending in either direction (SetSelectionToCaret(),
23539             SetSelectionStart() and SetSelectionEnd())
23540           - No longer redraws the whole control on selection change, now
23541             calculates delta between previous and new selection and only
23542             invalidates/redraws that area
23543           - Fixed FindPos() math off-by-one errors
23544           - Changed DeleteChars() to verify the provided tag covers the
23545             provided position, selections may have a tag that doesn't cover
23546             the position if the selection is at a tag border
23547           - Fixed off-by-one errors in DeleteChars()
23548           - Added missing streamlining check in DeleteChars() to remove
23549             zero-length tags
23550           - Implemented Invalidate() method, now properly calculates exposures
23551             between two given lines/positions
23552           - Implemented SetSelection()
23553           - Obsoleted and removed FixupSelection()
23554           - Improved RecalculateDocument() logic, removing code duplication
23555
23556 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23557
23558         * LibSupport.cs: changes to match different input/output arguments.
23559
23560 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23561
23562         * LibSupport.cs: added libsupport.so init routine.
23563
23564 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
23565         
23566         * ControlBindingsCollection.cs
23567                 - Throws an exception on null datasource when adding
23568                 - Checks for duplicated bindings when adding
23569
23570 2005-06-28  Jackson Harper  <jackson@ximian.com>
23571
23572         * TreeView.cs (OnKeyDown): Support left and right properly
23573         (navigates as well as expanding and collapsing.
23574         - Add support for Multiply, this expands all the selected nodes
23575         children.
23576         - Fix some tabbing.
23577
23578 2005-06-28  Jackson Harper  <jackson@ximian.com>
23579
23580         * TreeView.cs: Implement keyboard navigation, currently supports,
23581         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
23582         support for toggling checkboxes with the space bar.
23583
23584 2005-06-28  Jackson Harper  <jackson@ximian.com>
23585
23586         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
23587         tree.
23588
23589 2005-06-28  Jackson Harper  <jackson@ximian.com>
23590
23591         * TreeView.cs: Add missing event.
23592
23593 2005-06-27  Peter Bartok  <pbartok@novell.com> 
23594
23595         * TextControl.cs:
23596           - Made line ending size configurable (now allows for counting 
23597             lineendings as \n or \r\n)
23598           - Added margin to viewport to keep caret visible on right side
23599           - Fixed translation routines for line/pos to documentpos to consider
23600             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
23601           - Fixed some line-endings to be unix style
23602           - Fixed Document.FormatText to perform it's calculations 1-based
23603           - Added descriptions for a few methods that might otherwise get 
23604             used wrong
23605           - Added NOTE section with some basic conventions to remember at 
23606             the top of the file
23607           - Major fixup for RichTextBox selection drawing:
23608             * Fixed crashes when multiple tags on a single line were selected
23609             * fixed selection box drawing not overlaying text
23610             * fixed bogus offset calculation for tags not starting at index 1
23611             * Switched behaviour from using multiple Substrings of a 
23612               StringBuilder.ToString() to using multiple 
23613               StringBuilder.ToString(start, length) statements, hoping this is
23614               faster (kept original version commented out in the code, in case
23615               original version was faster)
23616         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
23617           alignment != Left
23618         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
23619           call it as well
23620
23621 2005-06-27  Jackson Harper  <jackson@ximian.com>
23622
23623         * TabControl.cs: Move to the left and right with the arrow
23624         keys. These keys don't cycle beyond first and last like
23625         tab. Refresh all the tabs when scrolling them to the left or
23626         right.
23627
23628 2005-06-27  Jackson Harper  <jackson@ximian.com>
23629
23630         * TabControl.cs:
23631           - ToString: Added method
23632           - CreateParams: Remove TODO and comment
23633           - OnKeyDown: Cycle through bounds properly.
23634           - SelectedIndex: Scroll to the right or left if we need to
23635           display the newly selected tab.
23636
23637 2005-06-23  Jackson Harper  <jackson@ximian.com>
23638
23639         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
23640         set.
23641
23642 2005-06-23  Jackson Harper  <jackson@ximian.com>
23643
23644         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
23645         CTRL-SHIFT-TAB, and HOME, END are there any others?
23646
23647 2005-06-23  Jackson Harper  <jackson@ximian.com>
23648
23649         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
23650
23651 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
23652         
23653         * DataGridTextBoxColumn.cs: fixes and enhancements
23654         * ThemeWin32Classic.cs: fixes and enhancements
23655         * DataGridBoolColumn.cs:  fixes and enhancements
23656         * DataGridDrawingLogic.cs:  fixes and enhancements
23657         * CurrencyManager.cs: fixes and enhancements
23658         * DataGrid.cs: fixes and enhancements
23659         * DataGridColumnStyle.cs:  fixes and enhancements
23660
23661 2005-06-22  Jackson Harper  <jackson@ximian.com>
23662
23663         * TabControl.cs: Add some missing methods that just call into the
23664         base. Make the TabPageCollection's IList interface behave in the
23665         same manner as the MS implementation.
23666
23667 2005-06-22  Peter Bartok  <pbartok@novell.com> 
23668
23669         * TextControl.cs: Added sanity check
23670         * TextBoxBase.cs: 
23671           - Fixed wrapping behaviour, don't set wrap on single line controls
23672             (this fixes the breakage of colordialog introduced in an earlier
23673              checkin)
23674           - Added rudimentary support for autoscrolling right-aligned controls
23675             (still needs fixing, also, center alignment scroll is missing)
23676
23677 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
23678         
23679         * ScrollBar.cs: Fixes thumbpos on Maximum values
23680
23681 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
23682         
23683         * PropertyGridView.cs: Pass context information to UITypeEditors 
23684
23685 2005-06-21  Peter Bartok  <pbartok@novell.com> 
23686
23687         * TextBoxBase.cs:
23688           - Now calling PositionCaret with absolute space coordinates
23689           - Enabled vertical scrolling
23690           - Better tracking of scrollbar changes, tied into WidthChange
23691             event
23692           - Improved cursor tracking
23693           - Removed debug output
23694         * TextControl.cs:
23695           - PositionCaret coordinates are now works in absolute space, not 
23696             the canvas
23697           - Improved tracking of document size
23698           - Added events for width and height changes
23699
23700 2005-06-21  Peter Bartok  <pbartok@novell.com>
23701
23702         * Form.cs: Set focus to active control when form is activated
23703         * TextControl.cs: 
23704           - Added word-wrap functionality to RecalculateLine() 
23705           - Added some short function descriptions for VS.Net to aid in
23706             writing dependent controls
23707           - Added Caret property, returning the current coords of the caret
23708           - Added ViewPortWidth and ViewPortHeight properties
23709           - Added Wrap property
23710           - Added CaretMoved event
23711           - Removed some old debug code
23712           - Split() can now create soft splits
23713           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
23714           - Added method to format existing text
23715           - Fixed size/alignment calculations to use viewport
23716           - RecalculateDocument now can handle changing line-numbers while
23717             calculating lines
23718
23719         * TextBox.cs:
23720           - Added some wrap logic, we don't wrap if alignment is not left
23721           - Added casts for scrollbar var, base class switched types to
23722             also support RichTextBoxA
23723           - Implemented handling of scrollbar visibility flags
23724
23725         * TextBoxBase.cs:
23726           - Switched scrollbars type to RichTextBoxScrollBars to support
23727             RichTextBox
23728           - Added tracking of canvas width/height
23729           - Switched scrollbars to be not selectable (to keep focus on text)
23730           - Added central CalculateDocument() method to handle all redraw
23731             requirements
23732           - Added ReadOnly support
23733           - Added WordWrap support
23734           - Fixed handling of Enter key (we now treat it as a DialogKey)
23735           - Fixed caret positioning when h or v scroll is not zero
23736           - Fixed placing/generation of vertical scrollbar
23737           - Added CalculateScrollBars() method to allow updating scrollbar
23738             limits and visibility
23739           - Fixed handling of horizontal scroll
23740           - Added handling of vertical scroll
23741           - Implemented auto-'jump' when caret moves to close to a left or
23742             right border and there is text to be scrolled into view (currently
23743             there's the potential for a stack overflow, until a bug in
23744             scrollbar is fixed)
23745
23746 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
23747         
23748         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
23749
23750 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
23751
23752         * Mime.cs:
23753         - added inodes.
23754         - return application/x-zerosize for files with size zero
23755           (if no extension pattern matches).
23756         - check matches collection for strings too.
23757         - return only the first mime type if the name value
23758           collection has more than one mime type.
23759
23760 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
23761         
23762         * PropertyGrid.cs: Cleaned up some TODOs
23763         * PropertyGridView.cs: Added support for UITypeEditors
23764
23765 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
23766         
23767         * DataGrid.cs: clears cached value
23768
23769 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
23770
23771         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
23772         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
23773         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
23774         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
23775         
23776 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
23777
23778         * ThemeWin32Classic.cs: fixes colour
23779
23780 2005-06-15  Peter Bartok  <pbartok@novell.com>
23781
23782         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
23783         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
23784         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
23785         * Control.cs: Added some MWFCategory and MWFDescription attributes
23786         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
23787
23788 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
23789
23790         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
23791         usage
23792
23793 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
23794
23795         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
23796         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
23797         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
23798         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
23799         * DataGrid.cs: default datagrid settings for Default Styles, fixes
23800         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
23801
23802 2005-06-13  Jackson Harper  <jackson@ximian.com>
23803
23804         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
23805         isn't printed when the user enables dropping. (X11 does accept
23806         drops).
23807         
23808 2005-06-13  Jackson Harper  <jackson@ximian.com>
23809
23810         * TreeView.cs: Remove some TODOS.
23811
23812 2005-06-13  Jackson Harper  <jackson@ximian.com>
23813
23814         * Form.cs: Hook into the mdi framework.
23815         * MdiClient.cs: Use the base control collections add method so
23816         parents get setup correctly. Set the default back colour and dock
23817         style.
23818         * MdiChildContext.cs: New class, this bad actor handles an
23819         instance of an MDI window. Right now there is only basic
23820         support. You can drag, close, and resize windows. Minimize and
23821         Maximize are partially implemented.
23822
23823 2005-06-13  Jackson Harper  <jackson@ximian.com>
23824
23825         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
23826         freaky when both vals are negative. NOTE: There are probably other
23827         places in XplatUIX11 that this needs to be done.
23828
23829 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
23830
23831         * DataGrid.cs: implement missing methods, move KeyboardNavigation
23832         * DataGridColumnStyle.cs: fixes signature
23833
23834 2005-06-12  Jackson Harper  <jackson@ximian.com>
23835
23836         * XplatUIX11.cs: Use sizing cursors similar to the ones on
23837         windows.
23838
23839 2005-06-11  Jackson Harper  <jackson@ximian.com>
23840
23841         * StatusBarPanel.cs: Signature cleanups. Implement
23842         BeginInit/EndInit.
23843
23844 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
23845
23846         * DataGridTextBoxColumn.cs: Honors aligment
23847         * GridColumnStylesCollection.cs: Contains is case unsensitive
23848         * GridTableStylesCollection.cs: several fixes
23849         * DataGridTableStyle.cs: default column creation
23850         * DataGridDrawingLogic.cs: fixes
23851         * CurrencyManager.cs: ListName property
23852         * DataGrid.cs: multiple styles support
23853         * DataGridColumnStyle.cs: fixes
23854         
23855
23856 2005-06-10  Peter Bartok  <pbartok@novell.com>
23857
23858         * Control.cs(Select): Moved SetFocus call to avoid potential
23859           loops if controls change the active control when getting focus
23860         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
23861           the up/down buttons
23862
23863 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
23864
23865         * ImageListConverter.cs: Implemented
23866
23867 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
23868
23869         * MonthCalendar.cs: Wired in NumericUpDown control for year
23870
23871 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
23872
23873         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
23874           DoubleClick events, since they are not meant to be fired.
23875
23876 2005-06-09  Peter Bartok  <pbartok@novell.com>
23877
23878         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
23879           Jonathan's standalone controls into MWF, implemented missing
23880           events, attributes and methods; added xxxAccessible classes
23881         * AccessibleObject.cs: Made fields internal so other classes
23882           can change them if needed
23883
23884 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
23885
23886         * UpDownBase.cs: Complete implementation
23887         * NumericUpDown.cs: Complete implementation
23888         * DomainUpDown.cs: Complete implementation
23889
23890 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
23891
23892         * DataGridTextBoxColumn.cs: drawing fixes
23893         * DataGridCell.cs: fixes ToString method to match MSNet
23894         * DataGridTableStyle.cs: fixes
23895         * DataGridBoolColumn.cs: fixes, drawing
23896         * DataGridDrawingLogic.cs: fixes, new methods
23897         * DataGridTextBox.cs: Keyboard and fixes
23898         * DataGrid.cs:
23899                 - Keyboard navigation
23900                 - Scrolling fixes
23901                 - Row selection (single, multiple, deletion, etc)
23902                 - Lots of fixes
23903         
23904 2005-06-07  Jackson Harper  <jackson@ximian.com>
23905
23906         * ThemeWin32Classic.cs: Clear the background area when drawing
23907         buttons.
23908
23909 2005-06-06  Peter Bartok  <pbartok@novell.com>
23910
23911         * ImageListStreamer.cs: Fixed signature for GetData
23912         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
23913         * ComboBox.cs:
23914           - Added missing ChildAccessibleObject class
23915           - Added missing OnXXXFocus overrides, switched to using those
23916             instead of the event handler
23917         * Control.cs:
23918           - Added Parent property for ControlAccessibleObject
23919           - Fixed signatures
23920           - Fixed attributes
23921           - Added ResetBindings()
23922         * ListBindingConverter.cs: Implemented some methods
23923         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
23924         * ImageList.cs: Implemented basic handle scheme, removed TODOs
23925         * ContainerControl.cs: Fixed signature, now subscribing to the
23926           ControlRemoved event instead of overriding the handler, LAMESPEC
23927         * CurrencyManager.cs: Added missing attribute
23928         * MonthCalendar.cs: Added missing properties
23929
23930 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
23931
23932         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
23933         
23934 2005-06-06  Gaurav Vaish and Ankit Jain
23935
23936         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
23937         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
23938         
23939 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
23940
23941         * Control.cs: fixes CreateParams Width / Height.
23942
23943 2005-06-05  Peter Bartok  <pbartok@novell.com>
23944
23945         * Win32DnD.cs: Removed compilation warnings
23946
23947 2005-06-05  Peter Bartok  <pbartok@novell.com>
23948
23949         * Control.cs (CreateParams): Since we don't know if one of the
23950           properties we use is overridden, lets make sure if we fail accessing
23951           we continue with a backup plan
23952
23953 2005-06-05  Peter Bartok  <pbartok@novell.com>
23954
23955         * Win32DnD.cs:
23956           - Removed debug output
23957           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
23958             struct
23959           - Plugged resource leak
23960         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
23961           MS size
23962
23963 2005-06-05  Peter Bartok  <pbartok@novell.com>
23964
23965         * XplatUIWin32.cs: Removed DnD code
23966         * Win32DnD.cs: Implemented drop source and drop target functionality
23967
23968 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23969
23970         * UpDownBase.cs: remove duplicate addition of event, enable some code
23971         that was commented out.
23972         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
23973         Validate input when a key is pressed. It works fine now for every
23974         combination of Hexadecimal. Only missing some drawing love when sharing
23975         space with other controls.
23976
23977 2005-06-04  Peter Bartok  <pbartok@novell.com>
23978
23979         * Control.cs:
23980           - We need to pass a window for DragDrop, so enable callback events
23981           - Added DnD callback events when being a DragSource
23982         * XplatUI.cs (StartDrag): Added window handle argument
23983         * XplatUIDriver.cs (StartDrag): Added window handle argument
23984         * QueryContinueDragEventArgs: Made fields internally accessible so
23985           drivers can set them
23986         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
23987           can set them
23988
23989 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
23990
23991         * DataGridTextBoxColumn.cs: column text editing
23992         * DataGridTableStyle.cs: Respect columns styles created by the user
23993         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
23994         * DataGridBoolColumn.cs: bool column editing
23995         * DataGrid.cs: fixes to scrolling, properties, etc
23996         * DataGridTextBox.cs: handle keyboard
23997         * DataGridColumnStyle.cs: fixes
23998
23999 2005-06-02  Jackson Harper  <jackson@ximian.com>
24000
24001         * ImageListStreamer.cs: Somewhat broken implementation of
24002         GetObjectData. The RLE needs some work to match MS properly.
24003
24004 2005-06-02  Jackson Harper  <jackson@ximian.com>
24005
24006         * X11Dnd.cs: Attempting to keep at least one file in MWF
24007         monostyled.
24008
24009 2005-06-02  Peter Bartok  <pbartok@novell.com>
24010
24011         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
24012           that way
24013
24014 2005-06-02  Peter Bartok  <pbartok@novell.com>
24015
24016         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
24017         * XplatUI.cs: Added DoDragDrop() method
24018         * XplatUIDriver.cs: Added DoDragDrop() method
24019
24020 2005-06-02  Jackson Harper  <jackson@ximian.com>
24021
24022         * Splitter.cs: Implement BorderStyle.
24023
24024 2005-06-02  Jackson Harper  <jackson@ximian.com>
24025
24026         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
24027         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
24028         X11 using XDND.
24029
24030 2005-06-02  Peter Bartok  <pbartok@novell.com>
24031
24032         * DataObject.cs:
24033           - Added Data setter
24034           - Fixed broken insertion code for SetData, now also
24035             overwrites any existing entry of the same format name
24036         * Hwnd.cs: Added list of pointers that automatically gets
24037           freed when the window is disposed
24038         * XplatUI.cs: Call driver initialization method when loading
24039           a driver
24040         * Control.cs:
24041           - OnDragLeave takes EventArgs, not DragEventArgs
24042           - Added setting of WS_EX_ACCEPTFILES style when dropping is
24043             supported
24044           - Forces style update when drop state changes
24045         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
24046           not perfect since we cannot (yet) call the IDataObject.GetData()
24047           method, we keep getting 0x80004005 error, dunno why)
24048
24049 2005-06-02  Peter Bartok  <pbartok@novell.com>
24050
24051         * DragEventArgs.cs: Make fields internal so we can cache the
24052           object and re-set the fields from XplatUI
24053
24054 2005-06-02  Jackson Harper  <jackson@ximian.com>
24055
24056         * Control.cs: Add some internal methods so the DnD subsystem can
24057         raise DnD events. Also call into the driver when AllowDrop is set.
24058         * XplatUI.cs:
24059         * XplatUIDriver.cs: New method for setting whether or not a window
24060         is allowed to accept drag and drop messages.
24061                 
24062 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
24063         
24064         * ScrollBar.cs: Make sure that values sent in Scroll events
24065         are always between Maximum and Minimum.
24066
24067 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
24068
24069         * Menu.cs: Call MenuChanged when menuitem visibility has been
24070         changed.
24071         * MenuItem.cs: Rebuild menu when item is (not) visible.
24072         * MainMenu.cs: MainMenu has special MenuChanged.
24073         * Theme.cs: Caption and FrameBorderSize are not fixed.
24074         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
24075         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
24076         * XplatUIX11.cs,
24077         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
24078         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
24079
24080 2005-05-30  Jackson Harper  <jackson@ximian.com>
24081
24082         * DataFormat.cs: We can't statically initialize this stuff because
24083         it calls into the xplatui and could create a loop. So we lazy init
24084         it.
24085
24086 2005-05-28  Jackson Harper  <jackson@ximian.com>
24087
24088         * Control.cs: Proper implementation of Product(Name/Version).
24089
24090 2005-05-27  Jackson Harper  <jackson@ximian.com>
24091
24092         * DataObject.cs: Dont crash if no data is found.
24093
24094 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
24095         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
24096                 as per status page, guessing it should be set to true
24097
24098 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
24099
24100         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
24101         * DataGridTableStyle.cs: set proper formatting text, def header text
24102         * ThemeWin32Classic.cs: new themable paramaters
24103         * DataGridBoolColumn.cs: paint check box, get data, fixes
24104         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
24105         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
24106         * DataGridColumnStyle.cs: fixes
24107         * Theme.cs: new themable paramaters
24108                 
24109 2005-05-26  Peter Bartok  <pbartok@novell.com>
24110
24111         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
24112
24113 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
24114         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
24115
24116 2005-05-24  Peter Bartok  <pbartok@novell.com>
24117
24118         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
24119           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
24120           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
24121           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
24122           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
24123           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
24124           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
24125           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
24126           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
24127           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
24128           missing attributes, etc
24129         * DataGridPreferredColumnWidthTypeConverter.cs: Added
24130
24131 2005-05-24  Peter Bartok  <pbartok@novell.com>
24132
24133         * Help.cs: Added, implemented trivial functions, throws up MessageBox
24134           when user tries to get help
24135         * DataObject.cs, DataFormats.cs, LinkArea.cs,
24136           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
24137           to suppress warnings
24138         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
24139           avoid unreachable code warning
24140
24141 2005-05-20  Peter Bartok  <pbartok@novell.com>
24142
24143         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
24144
24145 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
24146
24147         * DataGridTextBoxColumn.cs: Basic painting methods
24148         * DataGridTableStyle.cs: Set table style in the column
24149         * ThemeWin32Classic.cs: Use Theme for colors
24150         * DataGridDrawingLogic.cs: Implement more drawing
24151         * DataGrid.cs: drawing, theming, enhacements, fixes
24152         * DataGridColumnStyle.cs: fixes, drawing
24153         * Theme.cs: theming for Datagrid
24154
24155 2005-05-20  Peter Bartok  <pbartok@novell.com>
24156
24157         * Cursor.cs: Implemented GetObjectData() method
24158
24159 2005-05-20  Peter Bartok  <pbartok@novell.com>
24160
24161         * Cursors.cs: Added setting of cursor name
24162         * Cursor.cs:
24163           - Implemented constructors
24164           - Implemented Draw and DrawStretched
24165           - Implemented Current property
24166           - Implemented == and != operators
24167           - Implemented Dispose()
24168           - Implemented ToString
24169           - Added missing attributes
24170         * XplatUIX11.cs:
24171           - Added missing reset for OverrideCursor when DoEvents is called
24172           - Fixed creation of cursor, logic was wrong
24173         * XplatUIWin32.cs:
24174           - Added missing reset for OverrideCursor when DoEvents is called
24175           - Fixed creation of cursor, bit arrays were swapped
24176         * Clipboard.cs: Removed obsolete MonoTODO attribute
24177
24178 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
24179
24180         * ComboBox.cs: fixes OnSelectedItemChanged
24181         * ControlBindingsCollection.cs: fixes item range check
24182
24183 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
24184
24185         * UpDownBase.cs:
24186                 - Calc preferred height properly
24187                 - Implement missing properties
24188                 
24189         * NumericUpDown.cs: Implement missing events
24190
24191 2005-05-19  Jackson Harper  <jackson@ximian.com>
24192
24193         * TabControl.cs: New method that resizes the tab pages before
24194         redrawing them. This as needed as the control is double buffered
24195         and sizing will not be recalculated unless ResizeTabPages is
24196         called.
24197         * TabPage.cs: Set base.Text instead of Text in the constructor so
24198         that UpdateOwner does not get called. Use the new Redraw method of
24199         TabControl instead of Refresh so the sizing is recalculated.
24200         * ThemeWin32Classic.cs: Draw the text for button tabs.
24201
24202 2005-05-19  Jackson Harper  <jackson@ximian.com>
24203
24204         * Control.cs: Paint control background images. Fix typo where
24205         PaintControlBackground was not getting called correctly.
24206
24207 2005-05-19  Peter Bartok  <pbartok@novell.com>
24208
24209         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
24210           I can investigate, apparently I broke FileDialog
24211
24212 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
24213
24214         * AxHost.cs: Some simple properties.
24215         * Control.cs: window must be accessible after ctor.
24216         * Form.cs: Added TransparencyKey property.
24217         * TextBoxBase.cs: Implemented Clear. Text property can be null.
24218         * XplatUIWin32.cs: SetBorderStyle implemented.
24219
24220 2005-05-18  Peter Bartok  <pbartok@novell.com>
24221
24222         * DataObject.cs: Entries are not global but particular to the
24223           DataObject, now it behaves that way
24224         * XplatUIWin32.cs: Implemented Clipboard methods
24225         * Clipboard.cs: Implemented
24226         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
24227         * XplatUIOSX.cs: Updated to final clipboard prototypes
24228         * XplatUIX11.cs: Implemented Clipboard methods
24229         * XplatUIDriver.cs: Updated to final clipboard prototypes
24230         * XplatUIStructs.cs:
24231           - Added BITMAPINFOHEADER struct
24232           - Added ClipboardFormats enum
24233         * X11Structs.cs:
24234           - Added ClipboardStruct
24235           - Added Atom enum items for clipboard types
24236           - Fixed atom types for Selection event structures
24237         * DataFormats.cs:
24238           - Added internal properties and methods for drivers to enumerate
24239             all known formats
24240           - Switched initialization method to allow drivers to assign their
24241             own IDs even for the MS predefined clipboard IDs
24242         * XplatUI.cs: Updated to final clipboard interface
24243
24244 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
24245         * PropertyGridView.cs: Fixed compiler warnings.
24246
24247 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
24248         * PropertyGrid.cs: Added some event calls
24249         * PropertyGridView.cs: Change drawing code to use double buffering
24250         * PropertyGridTextBox.cs: Changed Text property name
24251         * GridItem.cs: Added Bounds property.
24252         * GridEntry.cs: Added Bounds property.
24253
24254 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
24255
24256         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
24257         since GetType() may not return the correct type if the object is
24258         a remoting proxy.
24259
24260 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
24261
24262         * TreeNodeCollection.cs: fixes get/set item ranges
24263         
24264 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
24265
24266         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
24267                 
24268 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
24269
24270         * ComboBox.cs: Fix item range comparation
24271         * ListView.cs: Fix item range comparation
24272
24273 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
24274
24275         * FontDialog.cs:
24276           - Clear example panel when OnPaint is called
24277           - Better solution for displaying the example panel text
24278           - Select default indexes in the ListBoxes
24279
24280 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
24281
24282         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
24283
24284 2005-05-11  Peter Bartok  <pbartok@novell.com>
24285
24286         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
24287         * SelectionRangeConverter.cs: Implemented
24288         * PropertyGrid.cs: Fixed attribute value
24289         * Control.cs:
24290           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
24291           - Added Sebastien Pouliot's CAS Stack Propagation fixes
24292         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
24293           that's common to all drivers. First methods to go there are
24294           Sebastien Pouliot's CAS Stack Propagation helper methods
24295         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
24296           Sebastien Pouliot for CAS Stack Propagation
24297
24298 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
24299
24300         * OSXStructs.cs:
24301           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
24302
24303 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
24304
24305         * DataGridTextBoxColumn.cs: fixed some members
24306         * GridColumnStylesCollection.cs: indexed column is case insensitive
24307         * DataGridTableStyle.cs: fixes
24308         * ThemeWin32Classic.cs: add new theme parameter
24309         * Theme.cs: add new theme parameter
24310         * DataGridDrawingLogic.cs: Datagrid's drawing logic
24311         * DataGrid.cs: fixes, new internal properties, etc.
24312         * DataGridColumnStyle.cs: allows to set grid value
24313         *
24314
24315 2005-05-10  Peter Bartok  <pbartok@novell.com>
24316
24317         * AccessibleObject.cs:
24318           - Removed MonoTODO attribute on help, method is correct
24319           - Fixed Bounds property
24320         * AxHost.cs: Moved MonoTODO
24321         * ButtonBase.cs: Now setting AccessibleObject properties
24322         * RadioButton.cs: Setting proper AccessibleObject role
24323         * CheckBox.cs: Setting proper AccessibleObject role
24324         * ControlBindingsCollection.cs: Added properties, methods and attributes
24325         * DataFormats.cs: Fixed awkward internal API, and changed to enable
24326           userdefined DataFormats.Format items as well
24327         * ListControl.cs: Removed data_member from the public eye
24328         * OpenFileDialog.cs:
24329           - Made class sealed
24330           - Added missing attributes
24331         * SaveFileDialog.cs: Added missing attributes
24332         * ImageListStreamer.cs: Fixed code that caused warnings
24333         * LinkLabel.cs: Removed unreachable code
24334         * TreeView.cs: Fixed code that caused warnings
24335         * PropertyGridView.cs: Fixed code that caused warnings
24336         * GridColumnStylesCollection.cs: Added missing attributes
24337         * GridTableStylesCollection: Added missing attribute
24338         * PropertyManager: Added .ctor
24339         * SecurityIDType: Added
24340         * DataObject.cs: Implemented class
24341         * LinkArea.cs: Added missing attribute
24342
24343 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
24344
24345         * RadioButton.cs: call base method to allow to fire OnClick event
24346         * UpDownBase.cs: OnMouseUp call base method
24347         * CheckedListBox.cs: call base method before returning
24348         * TrackBar.cs: call base method before returning
24349         
24350
24351 2005-05-10  Peter Bartok  <pbartok@novell.com>
24352
24353         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
24354           for messages
24355
24356 2005-05-10  Peter Bartok  <pbartok@novell.com>
24357
24358         * DataFormats.cs: Implemented
24359         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
24360           XplatUIX11.cs: Added Clipboard APIs
24361         * XplatUIWin32.cs: Implemented Clipboard APIs
24362         * FolderBrowserDialog.cs: Added missing event, attributes
24363
24364 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
24365
24366         * CheckBox.cs: call base method to allow to fire OnClick event
24367
24368 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
24369
24370         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
24371
24372 2005-05-06  Peter Bartok  <pbartok@novell.com>
24373
24374         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
24375         * Screen.cs: Implemented
24376         * HelpNavigator.cs: Added
24377         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
24378           property
24379         * HelpProvider.cs: Implemented all we can do until we have a CHM
24380           help library (which means that "What's This" does work now)
24381
24382 2005-05-06  Jackson Harper  <jackson@ximian.com>
24383
24384         * XplatUIX11.cs: Fix waking up the main loop.
24385                 
24386 2005-05-05  Peter Bartok  <pbartok@novell.com>
24387
24388         * XplatUI.cs: Updated revision
24389         * Form.cs: Removed enless loop
24390         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
24391         * Label.cs (OnPaint): Added call to base.OnPaint()
24392         * ToolTip.cs: Made ToolTipWindow reusable for other controls
24393         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
24394         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
24395         * AxHost.cs: Added
24396         * ButtonBase.cs: Moved base.OnPaint() call to end of method
24397         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
24398           to ToolTip.ToolTipWindow for drawing and size methods; this allows
24399           reuse of ToolTipWindow by other controls
24400         * SizeGrip.cs: Moved base.OnPaint() call to end of method
24401         * XplatUIX11.cs: Now clipping drawing area (experimental)
24402         * PictureBox.cs: Moved base.OnPaint() call to end of method
24403         * Theme.cs: Fixed ToolTip abstracts to match new format
24404         * ErrorProvider.cs: Implemented
24405
24406 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
24407
24408         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
24409         * LinkLabel.cs:
24410                 - Adds cursors
24411                 - Handles focus
24412                 - Implements LinkBehavior
24413                 - Fixes many issues
24414
24415 2005-05-03  Jackson Harper  <jackson@ximian.com>
24416
24417         * ListView.cs: Calculate the scrollbar positioning on resize and
24418         paint, so they get put in the correct place.
24419
24420 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
24421
24422         * ColorDialogs.cs: The small color panels are now handled by
24423           SmallColorControl. This fixes drawing of the focus rectangle
24424           and adds a 3D border.
24425
24426 2005-05-03  Peter Bartok  <pbartok@novell.com>
24427
24428         * Control.cs: Modified version of Jonathan Chamber's fix for
24429           double-buffering
24430
24431 2005-05-03  Jackson Harper  <jackson@ximian.com>
24432
24433         * ListView.cs: Remove redraw variable. Control now handles whether
24434         or not a redraw needs to be done, and will only raise the paint
24435         event if redrawing is needed.
24436
24437 2005-05-03  Jackson Harper  <jackson@ximian.com>
24438
24439         * Splitter.cs: No decorations for the splitter form. Cache the
24440         hatch brush.
24441
24442 2005-05-03  Jackson Harper  <jackson@ximian.com>
24443
24444         * TreeView.cs: Use dashed lines to connect nodes. Use the
24445         ControlPaint method for drawing the focus rect instead of doing
24446         that in treeview.
24447
24448 2005-05-02  Peter Bartok  <pbartok@novell.com>
24449
24450         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
24451
24452 2005-04-29  Jackson Harper  <jackson@ximian.com>
24453
24454         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
24455         entire image buffer. Just clear the clipping rectangle.
24456
24457 2005-04-29  Jackson Harper  <jackson@ximian.com>
24458
24459         * ThemeWin32Classic.cs: Don't draw list view items that are
24460         outside the clipping rectangle.
24461
24462 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
24463
24464         * ListBox.cs: added horizontal item scroll
24465
24466 2005-04-29  Jackson Harper  <jackson@ximian.com>
24467
24468         * ThemeWin32Classic.cs: Remove some old debug code that was
24469         causing flicker with the new double buffering code.
24470
24471 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
24472
24473         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
24474         behave like combobox and comboboxlist (still not sure if this is
24475         correct though).
24476
24477 2005-04-28  Jackson Harper  <jackson@ximian.com>
24478
24479         * ThemeWin32Classic.cs: Don't fill the middle of progress
24480         bars. This fills areas outside of the clip bounds that don't need
24481         to be filled.
24482
24483 2005-04-28  Jackson Harper  <jackson@ximian.com>
24484
24485         * Control.cs: Don't expose functionality to touch the image buffers.
24486         * ProgressBar.cs:
24487         * ListView.cs: We do not need to (and no longer can) manipulate
24488         the image buffers directly. All of this is handled by Control.
24489
24490 2005-04-28  Peter Bartok  <pbartok@novell.com>
24491
24492         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
24493           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
24494           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
24495
24496 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
24497
24498         * Combobox:
24499                 - Adjust control's height for non-simple comboboxes (bug fix)
24500                 - Remove dead code
24501         * MenuAPI.cs: remove unused var
24502         * ScrollBar.cs: remove unsed var
24503                  
24504         * ListBox.cs: unselect items when clearing
24505
24506 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
24507
24508         * ListControl.cs: honors OnPositionChanged and default Selected Item
24509         * ListBox.cs: unselect items when clearing
24510
24511 2005-04-27  Jackson Harper  <jackson@ximian.com>
24512
24513         * X11Keyboard.cs: Initialize a default keyboard and give a warning
24514         if a "correct" keyboard is not found. This will make us not crash,
24515         but might give some users bad keyboard layouts...seems to be the
24516         same thing rewind does.
24517
24518 2005-04-27  Jackson Harper  <jackson@ximian.com>
24519
24520         * BindingManagerBase.cs: Attach the current/position changed
24521         handlers to their respective events.
24522
24523 2005-04-27  Jackson Harper  <jackson@ximian.com>
24524
24525         * Control.cs: Make sure that the first WM_PAINT does a full draw,
24526         not just a blit.
24527         * ThemeWin32Classic.cs: Don't fill the background for picture
24528         boxes. This could overright user drawing.
24529         * ComboBox.cs: Just fill the clipping rect not the entire client
24530         rect when drawing the background. This prevents pieces of the
24531         image buffer from getting overwritten and is theoretically faster.
24532
24533 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
24534
24535         * ComboBox.cs: Databinding support fixes, fire missing events
24536         * ListControl.cs: implement missing methods and properties, fixes
24537         * ThemeWin32Classic.cs: Databiding support on Drawing
24538         * CheckedListBox.cs: Databinding support fixes, fire missing events
24539         * ListBox.cs: Databinding support fixes, fire missing events
24540         
24541 2005-04-25  Peter Bartok  <pbartok@novell.com>
24542
24543         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
24544
24545 2005-04-25  Jackson Harper  <jackson@ximian.com>
24546
24547         * TreeView.cs: Use the horizontal scrollbars height not width when
24548         determining how much of the client area is available.
24549
24550 2005-04-25  Jackson Harper  <jackson@ximian.com>
24551
24552         * Control.cs: Double buffering is handled differently now. As per
24553         the spec, the extra buffer is created in the WM_PAINT message and
24554         passed down to the control's drawing code.
24555         * GroupBox.cs:
24556         * Label.cs:
24557         * CheckBox.cs:
24558         * ProgressBar.cs:
24559         * RadioButton.cs:
24560         * ColorDialog.cs:
24561         * ComboBox.cs:
24562         * PropertyGridView.cs:
24563         * UpDownBase.cs:
24564         * MessageBox.cs:
24565         * MenuAPI.cs:
24566         * ListView.cs:
24567         * ButtonBase.cs:
24568         * SizeGrip.cs:
24569         * ScrollBar.cs:
24570         * ListBox.cs:
24571         * TrackBar.cs:
24572         * ToolBar.cs:
24573         * PictureBox.cs:
24574         * DateTimePicker.cs:
24575         * StatusBar.cs:
24576         * TreeView.cs: Update to new double buffering system.
24577         * MonthCalendar.cs: Uncomment block, as Capture is now
24578         working. Update to new double buffering
24579         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
24580         * PaintEventArgs.cs: New internal method allows us to set the
24581         graphics object. This is used for double buffering.
24582         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
24583         rectangle. The internal paint_area var has been removed from
24584         StatusBar. The clipping rect should be used instead.
24585         * Theme.cs: Give the PictureBox drawing method a clipping rect.
24586         * TabPage.cs: The RefreshTabs method was removed, so just call the
24587         tab controls Refresh method now.
24588         * TabControl.cs: Update to new double buffering. Make sure the
24589         handle is created before sizing the tab pages, otherwise we will
24590         get stuck in a loop.
24591
24592 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
24593
24594         * LinkLabel.cs: Fix typo, bug #74719; patch
24595           from Borja Sanchez Zamorano
24596
24597 2005-04-22  Jackson Harper  <jackson@ximian.com>
24598
24599         * TreeNode.cs: Implement Handle stuff.
24600         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
24601
24602 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
24603
24604         * DataGridTextBoxColumn.cs: call base constructors, fixes
24605         * GridColumnStylesCollection.cs: missing events, methods, and functionality
24606         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
24607         * DataGridTableStyle.cs: implements create default column styles
24608         * DataGridBoolColumn.cs: which types can handle
24609         * DataGrid.cs: missing methods, fixes, new functionality
24610         * DataGridColumnStyle.cs: fixes
24611
24612 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
24613         * FolderBrowserDialog.cs:
24614         - Use a thread to fill the TreeView
24615         - Adjusted some sizes
24616
24617 2005-04-19  Peter Bartok  <pbartok@novell.com>
24618
24619         * LinkLabel.cs: (Re-)create the pieces when setting the Text
24620           property. Fixes #74360.
24621
24622 2005-04-19  Jackson Harper  <jackson@ximian.com>
24623
24624         * XEventQueue.cs: Lock when getting the lockqueue size.
24625         * PictureBox.cs: Call base OnPaint
24626         
24627 2005-04-19  Peter Bartok  <pbartok@novell.com>
24628
24629         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
24630           messages were no longer being processed (this broke BeginInvoke)
24631
24632           
24633 2005-04-18  Jackson Harper  <jackson@ximian.com>
24634
24635         * TreeView.cs: buglet that caused node images to get drawn
24636         regardless of whether or not they were in the clipping rectangle.
24637
24638 2005-04-18  Jackson Harper  <jackson@ximian.com>
24639
24640         * CurrencyManager.cs: There are four rules for GetItemProperties:
24641         - If the type is an array use the element type of the array
24642         - If the type is a typed list, use the type
24643         - If the list contains an Item property that is not an object, use
24644         that property
24645         - use the first element of the list if there are any elements in
24646         the list.
24647         
24648 2005-04-17  Jackson Harper  <jackson@ximian.oom>
24649
24650         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
24651         click. This handles offsets for scrolling properly and reduces
24652         memory. Also fixed GetNode to not offset now that TopNode works
24653         properly.
24654         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
24655         
24656 2005-04-17  Jackson Harper  <jackson@ximian.com>
24657
24658         * CursorConverter.cs: Initial implementation.
24659
24660 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
24661
24662         * ListControl.cs: work towards complex data binding support on ListControl
24663         * CurrencyManager.cs: work towards complex data binding support on ListControl
24664         * ListBox.cs: work towards complex data binding support on ListControl
24665
24666
24667 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
24668
24669         * GridTableStylesCollection.cs: fixes name and constructor
24670         * DataGridTableStyle.cs: fixes
24671         * DataGridBoolColumn.cs: fixes names and constructors
24672         * DataGrid.cs: define methods and properties. Some init implementations
24673         * DataGridCell.cs: define methods and properties. Some init implementations
24674         * GridTablesFactory.cs: Define methods and properties
24675
24676 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
24677
24678         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
24679         graphics port changes.  We still want the coordinates in global screen
24680         coordinates.
24681
24682 2005-04-14  Jackson Harper  <jackson@ximian.com>
24683
24684         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
24685         check plus minus or checkbox clicks unless those features are enabled.
24686
24687 2005-04-14  Jackson Harper  <jackson@ximian.com>
24688
24689         * TreeView.cs: Add methods for setting the top and bottom visible
24690         nodes. TreeNode::EnsureVisible uses these methods.
24691         * TreeNode.cs: Implement EnsureVisible
24692
24693 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
24694
24695         * Form.cs: Pospone menu assignation if the window has not been created yet
24696         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
24697         size and position
24698
24699 2005-04-12  Jackson Harper  <jackson@ximian.com>
24700
24701         * TreeView.cs: Set the TopNode properly when scrolling
24702         occurs. This has the added benifit of reducing the amount of
24703         walking that needs to be done when drawing. Also removed an old
24704         misleading TODO.
24705         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
24706         
24707 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
24708
24709         * Timer.cs: fixes interval setting when the timer is already enabled
24710         
24711 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
24712
24713         * FolderBrowserDialog.cs: First approach
24714
24715 2005-04-09  Peter Bartok  <pbartok@novell.com>
24716
24717         * FolderBrowserDialog: Added
24718
24719 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
24720
24721         * LinkLabel.cs: move drawing code into the theme
24722         * ThemeWin32Classic.cs: drawing code and painting background bugfix
24723         * Theme.cs: define DrawLinkLabel method
24724
24725 2005-04-05  Jackson Harper  <jackson@ximian.com>
24726
24727         * BindingContext.cs: Use weak references so these bad actors don't
24728         stay alive longer then they need to.
24729
24730 2005-04-05  Jackson Harper  <jackson@ximian.com>
24731
24732         * ListControl.cs: Basic implementation of complex databinding.
24733         * ComboBox.cs:
24734         * ListBox.cs: Add calls to ListControl databinding methods.
24735
24736 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
24737
24738         * FileDialog.cs:
24739           - Don't change PopupButtonState to Normal when the
24740             PopupButton gets pressed several times.
24741           - Renamed ButtonPanel to PopupButtonPanel
24742
24743 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
24744
24745         * ColorDialog.cs: Use cached objects instead of creating them
24746         * LinkLabel.cs: Use cached objects instead of creating them
24747         * Splitter.cs: Use cached objects instead of creating them
24748         * FontDialog.cs: Use cached objects instead of creating them
24749         * PropertyGridView.cs: Use cached objects instead of creating them
24750         * MessageBox.cs: Use cached objects instead of creating them
24751         * FileDialog.cs: Use cached objects instead of creating them
24752         * ThemeWin32Classic.cs: Use cached objects instead of creating them
24753         * TreeView.cs: Use cached objects instead of creating them
24754         
24755 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
24756
24757         * Control.cs: use Equals to compare the font since no == op
24758         * ScrollBar.cs: use Equals to compare the font since no == op
24759
24760 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
24761
24762         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
24763
24764 2005-04-01  Jackson Harper  <jackson@ximian.com>
24765
24766         * Binding.cs: Implement IsBinding.
24767         * BindingManagerBase.cs:
24768         * PropertyManager.cs:
24769         * CurrencyManager.cs: Add IsSuspended property.
24770
24771 2005-04-01  Jackson Harper  <jackson@ximian.com>
24772
24773         * Binding.cs: Had some IsAssignableFrom calls backwards.
24774
24775 2005-04-01  Jackson Harper  <jackson@ximian.com>
24776
24777         * Binding.cs: Handle null data members when pulling data.
24778         * PropertyManager.cs: Handle the data member being a property that
24779         does not exist.
24780
24781 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
24782
24783         * DataGridTextBoxColumn.cs: fixes signature
24784         * DataGrid.cs: calls right constructor
24785
24786 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
24787
24788         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
24789         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
24790         * GridTableStylesCollection.cs: implements GridTableStylesCollection
24791         * DataGridTableStyle.cs: implements DataGridTableStyle
24792         * DataGridBoolColumn.cs: implements DataGridBoolColumn
24793         * DataGridTextBox.cs: implements DataGridTextBox
24794         * DataGridColumnStyle.cs: implements DataGridColumnStyle
24795
24796 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
24797
24798         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
24799
24800 2005-03-29  Peter Bartok  <pbartok@novell.com>
24801
24802         * Application.cs:
24803           - Properly implemented CompanyName property
24804           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
24805             returns a path that includes CompanyName, ProductName and
24806             Version (fixes bug #70330)
24807
24808 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
24809
24810         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
24811           fixes bug #72588.
24812
24813 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
24814
24815         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
24816         
24817           - Added ReadOnly CheckBox
24818           - Further refactoring: moved some code from Open-/SaveFileDialog
24819             to FileDialog
24820
24821 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
24822
24823         * OpenFileDialog.cs: Fixed CheckFileExists
24824         * FileDialog.cs:
24825           Moved FileView and DirComboBox outside FileDialog class.
24826           They can now be used outside FileDialog
24827
24828 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
24829
24830         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
24831         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
24832
24833 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
24834
24835         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
24836           - Added missing CreatePrompt property in SaveDialog
24837           - Overall SaveDialog handling should be better now
24838           - Added non standard ShowHiddenFiles property
24839           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
24840           - Added InitialDirectory and RestoreDirectory support
24841
24842 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
24843
24844         * FileDialog.cs: Made dirComboBox usable
24845
24846 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
24847
24848         * FileDialog.cs: Added Filter support (case sensitiv)
24849
24850 2005-03-24  Jackson Harper  <jackson@ximian.com>
24851
24852         * TabControl.cs: Need a couple more pixels for the lines.
24853
24854 2005-03-23  Jackson Harper  <jackson@ximian.com>
24855
24856         * TabControl.cs: Give the tab page focus when it is selected.
24857
24858 2005-03-23  Jackson Harper  <jackson@ximian.com>
24859
24860         * TabControl.cs: Account for the drawing of tabs borders when
24861         invalidating. If the slider was clicked dont do click detection on
24862         the tabs.
24863
24864 2005-03-23  Jackson Harper  <jackson@ximian.com>
24865
24866         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
24867
24868 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
24869
24870         * CategoryGridEntry.cs: Added
24871         * GridItem.cs: Added helper properties
24872         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
24873         * GridEntry.cs: Updated code for collection
24874         * PropertyGrid.cs: Cleaned up some formatting
24875         * PropertyGridView.cs: Added drop down functionality for enums.
24876         * GridItemCollection.cs: Added enumerator logic
24877         * PropertyGridEntry.cs: Added
24878
24879 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
24880
24881         * FileDialog.cs:
24882           - Removed unnecessary commented code
24883           - Fixed handling for entering the filename manually in the combobox
24884
24885 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
24886
24887         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
24888
24889 2005-03-18  Peter Bartok  <pbartok@novell.com>
24890
24891         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
24892           them being touching the border
24893
24894 2005-03-18  Peter Bartok  <pbartok@novell.com>
24895
24896         * TextControl.cs: Quick hack to center text better
24897
24898 2005-03-18  Peter Bartok  <pbartok@novell.com>
24899
24900         * ControlPaint.cs:
24901           - Don't throw NotImplemented exceptions, just print a notice once
24902             instead (requested by Miguel). This makes running existing SWF
24903             apps a bit easier
24904         * Control.cs:
24905           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
24906           - Added context menu trigger on right click
24907         * Panel.cs: Trigger invalidate on resize
24908         * StatusBar.cs:
24909           - Removed old double-buffer drawing
24910           - Added ResizeRedraw style to force proper update of statusbar
24911         * ListView.cs:
24912           - Removed debug output
24913         * ThemeWin32Classic.cs:
24914           - Fixed drawing of status bar, now draws Text property if there
24915             are no defined panels
24916
24917 2005-03-18  Jackson Harper  <jackson@ximian.com>
24918
24919         * ImageList.cs: When the image stream is set pull all the images
24920         from it.
24921         * ImageListStreamer.cs: Implement reading image list streams.
24922
24923 2005-03-18  Peter Bartok  <pbartok@novell.com>
24924
24925         * ThemeWin32Classic.cs (DrawPictureBox):
24926           - Fixed calculations for centered drawing
24927           - Fixed drawing for normal mode, not scaling the image on normal
24928
24929 2005-03-18  Peter Bartok  <pbartok@novell.com>
24930
24931         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
24932           textbox
24933         * FileDialog.cs:
24934           - Made Open/Save button the accept button for FileDialog
24935           - Tied the cancel button to the IButtonControl cancel button
24936           - Save/Open now properly builds the pathname
24937           - Now handles user-entered text
24938           - Preventing crash on right-click if no item is selected
24939           - Fixed Text property, now uses contents of textbox
24940           - Fixed SelectedText property, now just returns the text part that
24941             is selected in the text box
24942
24943 2005-03-18  Jackson Harper  <jackson@ximian.com>
24944
24945         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
24946         rect, make sure to de-adjust the interior rect after drawing the
24947         tab text.
24948
24949 2005-03-18  Peter Bartok  <pbartok@novell.com>
24950
24951         * MenuAPI.cs: Remove menu *before* executing selected action to
24952           prevent the menu from 'hanging around'
24953           
24954 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
24955
24956         * XplatUIOSX.cs: Implemented WorkingArea property
24957
24958 2005-03-17  Peter Bartok  <pbartok@novell.com>
24959
24960         * XplatUIX11.cs: Fixed menu coord calculations
24961         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
24962           for calculating offsets
24963
24964 2005-03-17  Peter Bartok  <pbartok@novell.com>
24965
24966         * Hwnd.cs: Do not consider menu presence for default client
24967           rectangle location/size
24968         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
24969           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
24970           translation functions
24971         * FileDialog.cs: Fixed (what I presume is a) typo
24972
24973 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
24974
24975         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
24976           X access (avoids X-Async errors)
24977
24978 2005-03-16  Jackson Harper  <jackson@ximian.com>
24979
24980         * TabControl.cs: Raise the SelectedIndexChanged event.
24981
24982 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
24983
24984         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
24985           - Removed vertical ToolBar and replaced it with a custom panel
24986             (desktop and home button already work)
24987           - Added Help button (some controls get resized or relocated then)
24988           - Draw correct text depending on Open or Save.
24989           - Fixed some typos...
24990
24991 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
24992
24993         * ScrollBar.cs:
24994           - Only change Maximum and Minimum when need it (bug fix)
24995
24996 2005-03-15  Peter Bartok  <pbartok@novell.com>
24997
24998         * Form.cs: Use Handle for icon, to trigger creation if
24999           the window does not yet exist
25000         * Control.cs:
25001           - CanSelect: Slight performance improvement
25002           - Focus(): Preventing possible recursion
25003           - Invalidate(): Removed ControlStyle based clear flag setting
25004           - WM_PAINT: fixed logic for calling OnPaintBackground
25005           - WM_ERASEBKGND: Fixed logic, added call to new driver method
25006             EraseWindowBackground if the control doesn't paint background
25007         * XplatUIWin32.cs:
25008           - Moved EraseWindowBackground() method to internal methods
25009           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
25010             is sent via SendMessage on BeginPaint call on Win32
25011         * XplatUIX11.cs:
25012           - Added EraseWindowBackground() method
25013           - No longer sends WM_ERASEBKGND on .Expose, but on call to
25014             PaintEventStart, which more closely matches Win32 behaviour
25015           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
25016           - Fixed SetFocus() to properly deal with client and whole windows
25017         * Hwnd.cs: Added ErasePending property
25018         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
25019         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
25020
25021 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
25022
25023         * XplatUIOSX.cs:
25024           - Fix hard loop when timers exist.
25025           - Fix bugs with middle and right click for 3 button mice.
25026
25027 2005-03-11  Peter Bartok  <pbartok@novell.com>
25028
25029         * XplatUIX11.cs:
25030           - get_WorkingArea: Need to call X directly, GetWindowPos only
25031             returns cached data now
25032           - Added sanity check to GetWindowPos hwnd usage
25033
25034 2005-03-11  Jackson Harper  <jackson@ximian.com>
25035
25036         * BindingManagerBase.cs: This method isn't used anymore as
25037         PullData now updates the data in the control.
25038
25039 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
25040
25041         * Form.cs: fixes menu drawing on X11
25042         * MenuAPI.cs:  fixes menu drawing on X11
25043
25044 2005-03-11  Peter Bartok  <pbartok@novell.com>
25045
25046         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
25047           from Jonathan Gilbert; should fix bug #73606
25048         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
25049           in Screen coordinates. Thanks, Jordi.
25050         * Form.cs: Added missing attribute
25051
25052 2005-03-11  Peter Bartok  <pbartok@novell.com>
25053
25054         * Form.cs:
25055           - Rudimentary Mdi support
25056           - Removed outdated FormParent code
25057           - Implemented lots of missing properties and methods, still missing
25058             transparency support
25059           - Added missing attributes
25060           - Implemented support for MaximumBounds
25061           - Added firing of various events
25062         * XplatUI.cs: Added SetIcon() method
25063         * XplatUIDriver.cs: Added SetIcon() abstract
25064         * XplatUIOSX.cs: Stubbed out SetIcon() method
25065         * XplatUIX11.cs:
25066           - Implemented SetIcon() support
25067           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
25068           - Switched to unix line endings
25069         * XplatUIWin32.cs:
25070           - Made POINT internal so for can access it as part of MINMAX
25071           - Implemented SetIcon() support
25072           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
25073             native Mdi support again, might have to go managed)
25074         * Control.cs: Now fires the StyleChanged event
25075         * MdiClient.cs: Added; still mostly empty
25076
25077 2005-03-10  Peter Bartok  <pbartok@novell.com>
25078
25079         * SaveFileDialog.cs: Added emtpy file
25080
25081 2005-03-08  Peter Bartok  <pbartok@novell.com>
25082
25083         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
25084           in turn triggers OnCreateContro) when creating a handle for the
25085           first time.
25086         * TextControl.cs: Fixed endless loop in certain cases when
25087           replacing the current selection
25088
25089 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
25090
25091         * ScrollBar.cs:
25092           - Honors NewValue changes in Scroll events allowing apps to change it
25093           - Adds First and Last Scroll events
25094           - Fixes Thumb events
25095
25096 2005-03-07  Peter Bartok  <pbartok@novell.com>
25097
25098         * Hwnd.cs: Added DefaultClientRectangle property
25099         * XplatUI.cs: Now using the X11 driver Where() method, which provides
25100           more detailed debug information
25101         * XplatUIX11.cs:
25102           - Fixed size-change feedback loop, where we would pull an old size
25103             off the queue and mistakenly change our window's size to an
25104             earlier value
25105           - Now compressing ConfigureNotify events, to reduce looping and
25106             redraw issues
25107         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
25108           is called
25109
25110 2005-03-07  Jackson Harper  <jackson@ximian.com>
25111
25112         * Binding.cs: Push data pushes from data -> property. Check if the
25113         property is readonly when attempting to set it.
25114
25115 2005-03-07  Jackson Harper  <jackson@ximian.com>
25116
25117         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
25118         instead of IsSubclassOf. Pulling data now sets the value on the
25119         control.
25120         * PropertyManager.cs:
25121         * CurrencyManager.cs: Just need to pull data when updating now,
25122         because PullData will set the value on the control.
25123
25124 2005-03-04  Jackson Harper  <jackson@ximian.com>
25125
25126         * Binding.cs: Implement data type parsing and converting on pulled
25127         data. TODO: Are there more ways the data can be converted?
25128
25129 2005-03-04  Jackson Harper  <jackson@ximian.com>
25130
25131         * Binding.cs: Support <Property>IsNull checks. Also bind to the
25132         controls Validating method so we can repull the data when the
25133         control loses focus.
25134
25135 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
25136
25137         * ColumnHeader.cs:
25138           - Fixes null string format
25139           
25140         * ListView.cs:
25141           - Adds enum type checks
25142           - Fixes redrawing and recalc need after changing some properties
25143           - Fixes on focus_item set after the event
25144           - Fixes adding columns after the control has been created
25145           
25146         * ThemeWin32Classic.cs:
25147           - Fixes CheckBox focus rectangle
25148           - Fixes ColumnHeader drawing
25149
25150
25151 2005-03-03  Jackson Harper  <jackson@ximian.com>
25152
25153         * Binding.cs: Bind to <Property>Changed events so we can detect
25154         when properties are changed and update the data.
25155
25156 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
25157
25158         * ImageList.cs:
25159           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
25160           - Fixes ImageList constructor with ImageList container
25161           - Fixes image scaling (wrong parameters at DrawImage)
25162
25163 2005-02-02  Jackson Harper  <jackson@ximian.com>
25164
25165         * Binding.cs: Make property searches case-insensitive. Eliminate
25166         some duplicated code.
25167
25168 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
25169
25170         * ComboBox.cs:
25171                 - Handle focus event
25172                 - Fix scrollbar events
25173                 - Discard highlighted item if remove it
25174                 - Fixes SelectedItem with strings
25175
25176 2005-03-01  Peter Bartok  <pbartok@novell.com>
25177
25178         * Control.cs:
25179           - Fixed Visible property, now follows (once again) parent chain
25180             to return false if any control in the chain is visible=false
25181           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
25182           - Fixed several places where is_visible instead of Visible was used
25183           - Implemented FIXME related to focus selection when setting focused
25184             control to be invisible
25185
25186         * XplatUIWin32.cs: Now using proper method to find out if window is
25187           visible. Thanks to Jordi for pointing it out
25188
25189 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
25190
25191         * ComboBox.cs: show/hide scrollbar instead of creating it
25192
25193 2005-02-27  Jackson Harper  <jackson@ximian.com>
25194
25195         * CurrencyManager.cs: Add PositionChanged stuff.
25196
25197 2005-02-27  Peter Bartok  <pbartok@novell.com>
25198
25199         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
25200         * XplatUIOSX.cs: Added GetMenuOrigin() stub
25201         * XplatUIWin32.cs: Implemented GetMenuOrigin()
25202         * XplatUIX11.cs:
25203           - Implemented GetMenuDC()
25204           - Implemented GetMenuOrigin()
25205           - Implemented ReleaseMenuDC()
25206           - Implemented generation of WM_NCPAINT message
25207           - Implemented generation and handling of WM_NCCALCSIZE message
25208         * Form.cs: Added debug helper message for Jordi's menu work
25209         * Hwnd.cs:
25210           - Modified ClientRect property; added setter, fixed getter to handle
25211             setting of ClientRect
25212           - Added MenuOrigin property
25213
25214 2005-02-26  Peter Bartok  <pbartok@novell.com>
25215
25216         * XplatUIX11.cs:
25217           - Destroys the caret if a window that's being destroyed contains it
25218           - Ignores expose events coming from the X11 queue for windows that
25219             already are destroyed
25220           - Now uses the proper variable for handling DestroyNotify, before we
25221             marked the wrong window as destroyed
25222           - Improved/added some debug output
25223
25224 2005-02-26  Peter Bartok  <pbartok@novell.com>
25225
25226         * X11Keyboard.cs: Fixes to work on 64bit systems
25227
25228 2005-02-26  Peter Bartok  <pbartok@novell.com>
25229
25230         * Control.cs:
25231           - Now calling OnHandleDestroyed from DestroyHandle()
25232             instead of Dispose()
25233           - Removed bogus call to controls.Remove() from DestroyHandle()
25234
25235 2005-02-26  Peter Bartok  <pbartok@novell.com>
25236
25237         * Control.cs: Properly destroy child windows when our handle is
25238           destroyed
25239
25240 2005-02-25  Peter Bartok  <pbartok@novell.com>
25241
25242         * XplatUI.cs:
25243           - Added 'DriverDebug' define to allow tracing XplatUI API calls
25244           - Alphabetized Static Methods and Subclasses
25245
25246         * XplatUIX11.cs:
25247           - Added XException class to allow custom handling of X11 exceptions
25248           - Created custom X11 error handler, tied into XException class
25249           - Added support for MONO_XEXCEPTIONS env var to allow the user
25250             to either throw an exception on X errors or continue running
25251             after displaying the error
25252           - Added handling of DestroyNotify message
25253           - Added handler for CreateNotify message (still disabled)
25254           - Improved (tried to at least) Where method to provide file and lineno
25255         * X11Structs.cs:
25256           - Added XErrorHandler delegate
25257           - Added XRequest enumeration (to suppor translation of errors)
25258
25259 2005-02-25  Jackson Harper  <jackson@ximian.com>
25260
25261         * PropertyManager.cs: Implement editing features
25262         * CurrencyManager.cs:
25263         * Binding.cs: First attempt at UpdateIsBinding
25264         * BindingManagerBase.cs: Call UpdateIsBinding before
25265         pushing/pulling data.
25266
25267 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
25268
25269         * MenuAPI.cs: Respect disabled items
25270         * ThemeWin32Classic.cs
25271                 - Caches ImageAttributes creation for DrawImageDisabled
25272                 - Fixes vertical menu line drawing
25273                 - Draws disabled arrows in disable menu items
25274
25275 2005-02-24  Peter Bartok  <pbartok@novell.com>
25276
25277         * Hwnd.cs:
25278           - Added UserData property to allow associating arbitrary objects
25279             with the handle
25280           - Fixed leak; now removing Hwnd references from static windows array
25281         * XplatUIWin32.cs:
25282           - Fixed Graphics leak in PaintEventEnd
25283           - Removed usage of HandleData, switched over to Hwnd class
25284         * HandleData.cs: Removed, obsoleted by Hwnd.cs
25285
25286 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
25287
25288         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
25289         * ScrollBar.cs: Fixes bug
25290         * TrackBar.cs: removes death code, clipping, mimize refreshes,
25291          keyboard navigation enhancements
25292
25293 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
25294
25295         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
25296         * GroupBox.cs: Add control styles
25297         * Label.cs: Add control styles
25298         * UpDownBase.cs: Add control styles
25299         * ListBox.cs: Add control styles
25300         * XplatUIWin32.cs: Fixes wrong parameter order
25301
25302
25303 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
25304
25305         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
25306
25307 2005-02-23  Jackson Harper  <jackson@ximian.com>
25308
25309         * PropertyManager.cs: Implement property binding. This doesn't
25310         seem to work yet though as (I think) there are some bugs in
25311         System.ComponentModel.PropertyDescriptor.
25312         * BindingContext.cs: Use new PropertyManager constructor.
25313
25314 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
25315
25316         * ProgressBar.cs: use clip region in ProgressBar
25317         * ThemeWin32Classic.cs: use clip region in ProgressBar
25318
25319 2004-02-22  Jackson Harper  <jackson@ximian.com>
25320
25321         * BindingsCollection.cs: Remove some debug code.
25322
25323 2005-02-22  Jackson Harper  <jackson@ximian.com>
25324
25325         * BindingContext.cs:
25326         * ControlBindingsCollection.cs:
25327         * CurrencyManager.cs:
25328         * Binding.cs:
25329         * BindingManagerBase.cs: Initial implementation
25330         * BindingsCollection.cs: Add an internal contains method that the
25331         BindingManagerBase uses to ensure bindings aren't added twice to
25332         the collection.
25333         * PropertyManager.cs: Stubbed out.
25334         * Control.cs:
25335         * ContainerControl.cs: Hook up databinding
25336         
25337 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
25338
25339         * XplatUIOSX.cs:
25340           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
25341           Fixed Invalidate/Update chain.
25342           Fixed tons of other minor bugs (this is almost a complete rewrite).
25343
25344 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
25345
25346         * ComboBox.cs: do subcontrol creation when the control is created
25347
25348 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
25349
25350         * Label.cs: fixes image drawing (image and imagelist)
25351         * ThemeWin32Classic.cs: cache brushes
25352         
25353 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
25354
25355         * Form.cs: Move menu drawing code to Theme class
25356         * ComboBox.cs: Move ComboBox drawing code to Theme class
25357         * MenuItem.cs: Move menu drawing code to Theme class
25358         * MenuAPI.cs: Move menu drawing code to Theme class
25359         * ThemeWin32Classic.cs: New methods
25360         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
25361         * ListBox.cs: Move Listbox drawing code to Theme class
25362         * Theme.cs: New methods
25363
25364 2005-02-20  Peter Bartok  <pbartok@novell.com>
25365
25366         * Control.cs:
25367           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
25368             only process mnemonics on those)
25369           - Fixed event sequence for key handling; first calling
25370             ProcessKeyEventArgs now
25371         * TextBoxBase.cs:
25372           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
25373             for processing non-character keys
25374           - Fixed WM_CHAR to generate proper event sequence before processing
25375         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
25376           generation
25377
25378 2005-02-19  Peter Bartok  <pbartok@novell.com>
25379
25380         * UserControl.cs: Added TextChanged event; added attributes
25381         * SizeGrip.cs: Implemented resizing and optional display of grip
25382         * Form.cs: Fixed attribute
25383         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
25384           Changed meaning of ScrollWindow bool argument; instead of the
25385           clear attribute (which will be true usually anyway), it gives the
25386           option of moving child controls as well.
25387         * XplatUIX11.cs:
25388           - Changed to match new ScrollWindow argument
25389           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
25390             now handles the implicit parent window a WM puts around us
25391         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
25392           to work)
25393         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
25394         * TreeView.cs: Adjusted to new ScrollWindow arguments
25395
25396 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
25397
25398         * Form.cs: Menu integration with non-client area
25399         * MenuItem.cs: Menu integration with non-client area
25400         * MenuAPI.cs: Menu integration with non-client area
25401
25402 2005-02-18  Peter Bartok  <pbartok@novell.com>
25403
25404         * MethodInvoker.cs: Added
25405         * MdiLayout.cs: Added
25406         * SendKeys.cs: Started implementation
25407         * ErrorIconAlignment.cs: Added
25408
25409 2005-02-18  Peter Bartok  <pbartok@novell.com>
25410
25411         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
25412         * Form.cs: Added handling for Menu-related Non-client messages
25413
25414 2005-02-17  Peter Bartok  <pbartok@novell.com>
25415
25416         * UpDownBase.cs: Fixed typo, compilation errors
25417         * DomainUpDown.cs: Fixed attribute value
25418
25419 2005-02-16  Miguel de Icaza  <miguel@novell.com>
25420
25421         * UpDownBase.cs: Attach entry events.
25422         Propagate events.
25423         Add ForeColor property, Focused, InterceptArrowKeys (interception
25424         does not work yet).
25425
25426 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
25427
25428         * Form.cs:
25429                 - Redraw non client are on Setmenu
25430                 - Calc proper menu starting point
25431
25432 2005-02-17  Peter Bartok  <pbartok@novell.com>
25433
25434         * Application.cs: Fixed message_filter check
25435
25436 2005-02-17  Peter Bartok  <pbartok@novell.com>
25437
25438         * Application.cs: Now calls registered message filters
25439         * DockStyle.cs: Fixed attribute
25440         * Form.cs: Fixed attribute
25441         * Menu.cs: Fixed attribute
25442         * ToolTip.cs: Fixed attribute
25443         * TreeNode.cs: Added missing attributes and arranged in regions
25444         * PropertyGrid.cs: Fixed signatures
25445         * TreeNodeCollection.cs: Added attributes
25446         * Splitter.cs: Added missing attributes; arranged into regions
25447         * TabPage.cs: Added missing attributes; arranged into regions
25448         * TextBoxBase.cs: Added missing attributes
25449         * TextBox.cs: Added missing attributes
25450         * ArrangeDirection.cs: Added missing attributes
25451         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
25452         * ToolBarButton.cs: Fixed attributes
25453         * AnchorStyles.cs: Fixed attribute
25454         * TrackBar.cs: Fixed attributes
25455         * TabControl.cs: Added missing attributes and arranged into regions
25456         * ToolBar.cs: Fixed attribute
25457         * StatusBar.cs: Fixed signature, organized into regions and added
25458           attributes
25459         * StatusBarPanel.cs: Fixed attributes
25460         * ContentsResizedEventArgs.cs: Implemented
25461         * ContentsResizedEventHandler.cs: Implemented
25462         * DateBoldEventArgs.cs: Implemented
25463         * DateBoldEventHandler.cs: Implemented
25464         * UpDownEventArgs.cs: Implemented
25465         * UpDownEventHandler.cs: Implemented
25466         
25467 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
25468
25469         * Form.cs: first Menu NC refactoring
25470         * MenuAPI.cs: first Menu NC refactoring
25471         
25472 2005-02-16  Peter Bartok  <pbartok@novell.com>
25473
25474         * ImeMode.cs: Added missing attributes
25475         * Menu.cs: Fixed attribute
25476         * GroupBox.cs: Fixed attribute
25477         * Label.cs: Fixed attribute
25478         * ColorDialog.cs (RunDialog): Removed TODO attribute
25479         * ComboBox.cs: Fixed attributes
25480         * ListControl.cs: Added missing attributes
25481         * PropertyGrid.cs: Fixed attributes
25482         * Control.cs: Fixed attributes
25483         * ListViewItem.cs: Added TypeConverter attribute
25484         * NotifyIcon.cs: Fixed attributes
25485         * ListView.cs: Fixed attributes
25486         * ButtonBase.cs: Fixed attribute
25487         * ImageList.cs: Added missing attributes
25488         * ContainerControl.cs: Fixed signature
25489         * CheckedListBox.cs: Fixed attribute; added missing attributes
25490         * Panel.cs: Fixed attributes
25491         * PropertyTabChangedEventArgs.cs: Added missing attribute
25492         * PropertyValueChangedEventArgs.cs: Added missing attribute
25493         * Binding.cs: Fixed attribute
25494         * ListViewItemConverter: Implemented ListViewSubItemConverter class
25495         * ListBox.cs: Fixed attribute; added missing attributes;
25496         * ScrollableControl.cs: Added missing attributes
25497         * PictureBox.cs: Added missing attributes; implemented missing property
25498         * DateTimePicker.cs: Added missing attributes
25499         * Theme.cs (ToolWindowCaptionHeight): Fixed type
25500         * MonthCalendar.cs: Fixed attributes
25501         * StatusBarPanel.cs: Added missing attributes
25502         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
25503
25504 2005-02-16  Peter Bartok  <pbartok@novell.com>
25505
25506         * TextBoxBase.cs: The previous method to enforce height yet remember
25507           the requested high was less than ideal, this is an attempt to do
25508           it better.
25509         * Control.cs: Added comment about possible problem
25510         * Copyright: Updated format
25511         * GridItemType.cs: Fixed swapped values
25512
25513 2005-02-15  Jackson Harper  <jackson@ximian.com>
25514
25515         * BaseCollection.cs: Use property so we never access an
25516         uninitialized list. Also initialize the list in the property.
25517
25518 2005-02-15  Peter Bartok  <pbartok@novell.com>
25519
25520         * GroupBox.cs (ProcessMnemonic): Implemented
25521         * Label.cs (ProcessMnemonic): Implemented
25522         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
25523           hotkeys
25524
25525 2005-02-15  Peter Bartok  <pbartok@novell.com>
25526
25527         * RadioButton.cs (ProcessMnemonic): Implemented
25528         * CheckBox.cs (ProcessMnemonic): Implemented
25529         * Control.cs:
25530           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
25531             handling
25532           - Added internal method to allow calling ProcessMnemonic from other
25533             controls
25534         * ContainerControl.cs:
25535           - Started support for handling validation chain handling
25536           - Implemented ProcessMnemonic support
25537           - Added Select() call to Active, to make sure the active control
25538             receives focus
25539         * Form.cs: Setting toplevel flag for Forms (this was lost in the
25540           FormParent rewrite)
25541         * ThemeWin32Classic.cs:
25542           - DrawCheckBox(): Fixed stringformat to show hotkeys
25543           - DrawRadioButton(): Fixed stringformat to show hotkeys
25544         * CommonDialog.cs: Removed WndProc override, not needed
25545
25546 2005-02-14  Peter Bartok  <pbartok@novell.com>
25547
25548         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
25549           missed those in the rewrite
25550
25551 2005-02-14  Miguel de Icaza  <miguel@novell.com>
25552
25553         * NumericUpDown.cs (Increment, ToString): Add.
25554         (DecimalPlaces): implement.
25555         
25556         Add attributes.
25557         
25558         * UpDownBase.cs: Add the designer attributes.
25559
25560 2005-02-13  Peter Bartok  <pbartok@novell.com>
25561
25562         * Panel.cs: Removed border_style, now in Control
25563         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
25564           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
25565
25566 2005-02-13  Peter Bartok  <pbartok@novell.com>
25567
25568         * MouseButtons.cs: Added missing attributes
25569         * XplatUIStructs.cs: Added enumeration for title styles
25570         * LeftRightAlignment.cs: Added missing attributes
25571         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
25572           it compatible with Graphics.FromHwnd()
25573         * SelectedGridItemChangedEventArgs.cs: Fixed property type
25574         * Keys.cs: Added missing attributes
25575         * SelectionRange.cs: Added missing attributes
25576         * SelectionRangeConverter.cs: Added
25577         * XplatUI.cs:
25578           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
25579             ReleaseMenuDC methods
25580           - Renamed ReleaseWindow to UngrabWindow
25581           - Added proper startup notice to allow version identification
25582         * Form.cs:
25583           - Added missing attributes
25584           - Removed FormParent concept
25585         * Label.cs: Removed border_style field, now in Control
25586         * RadioButton.cs: Now properly selects RadioButton when focus is
25587           received
25588         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
25589         * Control.cs:
25590           - Added missing attributes
25591           - Added borderstyle handling
25592           - Removed FormParent concept support
25593           - Fixed calls to XplatUI to match changed APIs
25594           - Fixed bug that would case us to use disposed Graphics objects
25595           - Removed unneeded internal methods
25596           - PerformLayout(): Fixed to handle DockStyle.Fill properly
25597           - SelectNextControl(): Fixed to properly check common parents
25598         * TextBoxBase.cs: Removed border_style field (now in Control)
25599         * MessageBox.cs:
25600           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
25601             fixed calculations for form size
25602           - Added support for localized strings and icons
25603           - Improved form size calculations, added border
25604         * ListView.cs: Removed border_style field (now in Control)
25605         * X11Structs.cs: Moved several structs from X11 driver here
25606         * X11Keyboard.cs: Changed debug message
25607         * Application.cs: Removed FormParent concept support
25608         * CommonDialog.cs:
25609           - Resetting end_modal flag
25610           - Removed FormParent concept support
25611         * NativeWindow.cs: Removed FormParent concept support
25612         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
25613           Client area and Non-Client whole window to allow support for WM_NC
25614           messages
25615         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
25616           prevent using it until it supports Hwnd as per Geoff Norton's request
25617         * ToolBar.cs: Fixed drawing, was not doing proper drawing
25618         * PictureBox.cs: Removed border_style field, now in Control
25619         * XplatUIWin32.cs: Added new driver methods
25620
25621 2005-02-12  Peter Bartok  <pbartok@novell.com>
25622
25623         * OpacityConverter.cs: Implemented
25624         * Hwnd.cs: Internal class to support drivers that need to emulate
25625           client area/non-client area window behaviour
25626
25627 2005-02-11  Peter Bartok  <pbartok@novell.com>
25628
25629         * KeysConverter.cs: Implemented
25630
25631 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
25632
25633         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
25634         * LinkLabel: Added missing attributes
25635         * MainMenu.cs: fixes ToString
25636         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
25637         * ListBox.cs: fixes event position
25638         * TrackBar.cs: adds missing attributes and events
25639         
25640 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
25641
25642         * MenuItem.cs: Use SystemInformation and bug fixes
25643         * MenuAPI.cs: Use SystemInformation and bug fixes
25644
25645 2005-02-09  Jackson Harper  <jackson@ximian.com>
25646
25647         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
25648         their keystate otherwise things like VK_MENU get stuck "on".
25649
25650 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
25651
25652         * ListBox.cs: Fixes AddRange bug
25653         
25654 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
25655
25656         * ProgressBar.cs
25657                 - Add missing attributes
25658                 - Add missing method
25659                 
25660         * CheckedListBox.cs: Added missing attributes
25661                 - Add missing attributes
25662                 - Remove extra method
25663         
25664         * ComboBox.cs: Added missing attributes
25665         * VScrollBar.cs: Added missing attributes
25666         * ScrollBar.cs:  Added missing attributes
25667         * ListBox.cs: Fixes signature, add missing consts
25668         * LinkArea.cs:   Added missing attributes
25669         
25670
25671 2005-02-08  Peter Bartok  <pbartok@novell.com>
25672
25673         * Menu.cs: Added missing attributes
25674         * MainMenu.cs: Added missing attributes
25675         * GroupBox.cs: Added missing attributes
25676         * Label.cs: Added missing attributes
25677         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
25678         * ColorDialog.cs:
25679           - Added Instance and Options properties
25680           - Added missing attributes
25681         * Cursor.cs: Made Serializable
25682         * NotifyIcon: Added missing attributes
25683         * MenuItem.cs: Added missing attributes
25684         * TextBoxBase.cs: Implemented AppendText() and Select() methods
25685         * Panel.cs: Added Missing attributes
25686         * MonthCalendar.cs: Fixed CreateParams
25687
25688 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
25689         
25690         * LinkLabel.cs:
25691                 - Fixes signature
25692                 - Fixes issues with links
25693                 - Adds the class attributes
25694
25695 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
25696         
25697         * ComboBox.cs:
25698                 - Fixes button when no items available in dropdown
25699                 - Fixes repainting problems
25700                 - Adds the class attributes
25701                 
25702 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
25703
25704         * XplatUIOSX.cs: Detect the menu bar and title bar height from
25705         the current theme.  Cache these on startup.
25706
25707 2005-02-07  Jackson Harper  <jackson@ximian.com>
25708
25709         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
25710         the scrollbar buttons when they are depressed.
25711
25712 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
25713
25714         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
25715         Get the display size from the main displayid.  We currently dont
25716         support multiple display configurations.
25717
25718 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
25719
25720         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
25721
25722 2005-02-07  Miguel de Icaza  <miguel@novell.com>
25723
25724         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
25725
25726 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
25727
25728         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
25729
25730 2005-02-04  Jackson Harper  <jackson@ximian.com>
25731
25732         * ThemeWin32Classic.cs: Respect the clipping rect when
25733         drawing. Only fill the intersection of clips and rects so there
25734         isn't a lot of large fills.
25735         * ScrollBar.cs: Pass the correct clipping rect to the theme
25736         engine. Remove some debug code.
25737
25738 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
25739         
25740         * DateTimePicker.cs:
25741                 - Fixed crash on DateTime.Parse, use Constructor instead
25742
25743 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
25744         
25745         * MenuItem.cs:
25746         * MenuAPI.cs:
25747                 - Owner draw support (MeasureItem and DrawItem)
25748
25749 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
25750         
25751         *  Menu.cs:
25752                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
25753                 - Fixes MenuItems.Add range
25754         * MenuItem.cs:
25755                 - MergeMenu and Clone and CloneMenu functions
25756
25757 2005-02-03  Jackson Harper  <jackson@ximian.com>
25758
25759         * ScrollBar.cs: Make abstract
25760         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
25761         is abstract.
25762
25763 2005-02-03  Jackson Harper  <jackson@ximian.com>
25764
25765         * ScrollBar.cs: First part of my scrollbar fixups. This removes
25766         all the unneeded refreshes and uses invalidates with properly
25767         computed rects.
25768
25769 2005-02-03  Peter Bartok  <pbartok@novell.com>
25770
25771         * ComponentModel.cs: Added
25772         * IDataGridEditingService.cs: Added
25773         * Timer.cs: Added missing attributes
25774         * ToolTip.cs: Added missing attributes
25775
25776 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
25777
25778         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
25779
25780 2005-02-03  Peter Bartok  <pbartok@novell.com>
25781
25782         * ListBox.cs: Added missing attributes
25783
25784 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
25785         
25786         * ListBox.cs:
25787                 - Fixes font height after font change
25788                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
25789                 
25790 2005-02-02  Peter Bartok  <pbartok@novell.com>
25791
25792         * HandleData.cs: Introduced static methods to allow class
25793           to be more self-contained and track it's own HandleData objects
25794         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
25795           HandleData to use new static methods
25796
25797 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
25798
25799         * Combobox.cs:
25800                 - Fixes default size and PreferredHeight
25801                 - Missing events
25802                 - ObjectCollection.Insert implementation
25803                 
25804         * ListControl.cs
25805                 - Fixes signature
25806         * ListBox.cs:
25807                 - Several fixes
25808                 - ObjectCollection.Insert implementation
25809                 - No selection after clean
25810                 - Small fixes
25811
25812 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
25813
25814         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
25815
25816 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
25817
25818         * Combobox.cs:
25819                 - Caches ItemHeight calculation for OwnerDrawVariable
25820                 - Handles dropdown properly
25821                 - Fixes several minor bugs
25822
25823 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
25824
25825         * ListBox.cs:
25826                 - Fixes 71946 and 71950
25827                 - Fixes changing Multicolumn on the fly
25828                 - Fixes keyboard navigation on Multicolumn listboxes
25829
25830 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
25831         
25832         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
25833         crash reporter log.
25834
25835 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
25836
25837         * XplatUIOSX.cs: Allow applications to actually exit.
25838
25839 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
25840
25841         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
25842         their parent at creation time rather than lazily later.  Fixes a major
25843         regression we were experiencing.
25844
25845 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
25846
25847         * ThemeWin32Classic.cs: more date time picker painting fixes
25848         * DateTimePicker.cs: more monthcalendar drop down fixes
25849         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
25850
25851 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
25852
25853         * ScrollBar.cs:
25854                 - When moving the thumb going outside the control should stop the moving
25855                 - Adds the firing of missing events
25856                 - Fixes no button show if Size is not specified
25857                 - End / Home keys for keyboard navigation
25858
25859 2005-01-30  Peter Bartok  <pbartok@novell.com>
25860
25861         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
25862           sanity check to prevent theoretical loop
25863         * XplatUIWin32.cs (SetVisible): Removed debug output
25864         * XplatUIX11.cs (SystrayChange): Added sanity check
25865         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
25866         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
25867           behaviour, valid until the X11 client window rewrite is done
25868         * TextBox.cs (ctor): Setting proper default foreground and background
25869           colors
25870
25871 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
25872
25873         * Theme: Added DrawDateTimePicker to interface
25874         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
25875         * DateTimePicker.cs: Created (still needs keys and painting code)
25876         * DateTimePickerFormat.cs: added
25877         * MonthCalendar.cs: fixed CreateParams for popup window mode
25878           
25879 2005-01-29  Peter Bartok  <pbartok@novell.com>
25880
25881         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
25882           this should also the calculations for ligher/darker
25883         * Theme.cs: Fixed defaults for ScrollBar widths/heights
25884
25885 2005-01-29  Peter Bartok  <pbartok@novell.com>
25886
25887         * ArrangeDirection.cs: Added
25888         * ArrangeStartingPositon.cs: Added
25889         * SystemInformation.cs: Implemented
25890         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
25891           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
25892           used by SystemInformation class
25893         * X11Strucs.cs: Added XSizeHints structure
25894         * MenuAPI.cs:
25895           - Fixed CreateParams to make sure the menu window is always visible
25896           - TrackPopupMenu: Added check to make sure we don't draw the
25897             menu offscreen
25898
25899 2005-01-29  Peter Bartok  <pbartok@novell.com>
25900
25901         * HandleData.cs: Added method for altering invalid area
25902         * TextBoxBase.cs: Implemented TextLength
25903
25904 2005-01-28  Peter Bartok  <pbartok@novell.com>
25905
25906         * XplatUIX11.cs: Improvement over last patch, not sending
25907           the WM_PAINT directly anymore, instead we scroll any pending
25908           exposed areas and let the system pick out the WM_PAINT later
25909
25910 2005-01-28  Peter Bartok  <pbartok@novell.com>
25911
25912         * SWF.csproj: Deleted, no longer used. Instead,
25913           Managed.Windows.Forms/SWF.csproj should be used
25914         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
25915           directly, to avoid a potential race condition with the next
25916           scroll
25917
25918 2005-01-28  Peter Bartok  <pbartok@novell.com>
25919
25920         * XplatUI.cs: Made class internal
25921
25922 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
25923
25924         * CheckedListBox.cs:
25925                 - Draw focus
25926                 - Fixed Drawing
25927                 - Missing methods and events
25928
25929 2005-01-27  Peter Bartok  <pbartok@novell.com>
25930
25931         * Application.cs (Run): Don't use form if we don't have one
25932
25933 2005-01-27  Peter Bartok  <pbartok@novell.com>
25934
25935         * TextBoxBase.cs (get_Lines): Fixed index off by one error
25936
25937 2005-01-27  Peter Bartok  <pbartok@novell.com>
25938
25939         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
25940         * GridItem.cs: Added; Patch by Jonathan S. Chambers
25941         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
25942         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
25943         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
25944         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
25945         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25946         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
25947         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25948         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25949         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25950         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
25951
25952 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
25953
25954         * Combobox.cs:
25955                 - Draw focus on Simple Combobox
25956                 - Fixes drawing issues
25957                 - fixes 71834
25958
25959 2005-01-27  Peter Bartok  <pbartok@novell.com>
25960
25961         * Form.cs:
25962           - Place window in default location, instead of hardcoded 0/0
25963           - Send initial LocationChanged event
25964         * Control.cs:
25965           - UpdateBounds after creation to find out where the WM placed us
25966           - Make sure that if the ParentForm changes location the Form
25967             is notified
25968         * XplatUIX11.cs: XGetGeometry will not return the coords relative
25969             to the root, but to whatever the WM placed around us.
25970             Translate to root coordinates before returning toplevel
25971             coordinates
25972         * XplatUIWin32.cs: Removed debug output
25973         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
25974           flag to GetWindowPos, to allow translation of coordinates on X11
25975
25976 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
25977
25978         * ListBox.cs: connect LostFocus Event
25979
25980 2005-01-27  Peter Bartok  <pbartok@novell.com>
25981
25982         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
25983           XplatUIX11.cs: Extended the Systray API
25984         * Form.cs: Removed debug output
25985         * Application.cs: Fixed focus assignment, always need to call
25986           XplatUI.Activate() since Form.Activate() has rules that may
25987           prevent activation
25988         * NotifyIcon.cs: Should be complete now
25989         * ToolTip.cs: Worked around possible timer bug
25990
25991 2005-01-27  Jackson Harper  <jackson@ximian.com>
25992
25993         * TabControl.cs:
25994         - Only invalidate the effected tabs when the
25995         selected index changes. This reduces drawing and gets rid of some
25996         flicker.
25997         - Only refresh if the tabs need to be shifted, otherwise only
25998         invalidate the slider button.
25999         - On windows the tabs are not filled to right if the slider is
26000         visible.
26001         
26002 2005-01-27  Jackson Harper  <jackson@ximian.com>
26003
26004         * TabControl.cs: Only refresh on mouseup if we are showing the
26005         slider. Also only invalidate the button whose state has changed.
26006
26007 2005-01-26  Peter Bartok  <pbartok@novell.com>
26008
26009         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
26010         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
26011           and SystrayRemove() methods
26012         * XplatUIOSX.cs: Stubbed Systray methods
26013         * XplatUIX11.cs:
26014           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
26015             methods
26016           - Fixed broken XChangeProperty calls (marshalling messed up things)
26017         * X11Structs.cs: Added enums and structs required for Size hinting
26018         * NotifyIcon.cs: Added & implemented
26019
26020 2005-01-26  Jackson Harper  <jackson@ximian.com>
26021
26022         * TabControl.cs: Space vertically layed out tabs properly.
26023
26024 2005-01-26  Peter Bartok  <pbartok@novell.com>
26025
26026         * Form.cs (CreateClientParams): Always set the location to 0,0
26027           since we're a child window.
26028
26029         * Control.cs (SetVisibleCore): Always explicitly setting the location
26030           of a toplevel window, apparently X11 doesn't like to move windows
26031           while they're not mapped.
26032
26033 2005-01-26  Jackson Harper  <jackson@ximian.com>
26034
26035         * TabControl.cs: Implement FillToRight size mode with vertically
26036         rendered tabs.
26037
26038 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
26039
26040         * ControlPaint.cs, ThemeWin32Classic.cs
26041                 - Fixes DrawFocusRectangle
26042
26043 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
26044
26045         * MenuAPI.cs:
26046                 - MenuBar tracking only starts when item is first clicked
26047                 - Fixes menu hidding for multiple subitems
26048                 - Unselect item in MenuBar when item Executed
26049                 - Fixes bug 71495
26050
26051 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
26052
26053         * ListControl.cs:
26054                 - IsInputKey for ListBox
26055         * ListBox.cs:
26056                 - Focus item
26057                 - Shift and Control item selection
26058                 - Implement SelectionMode.MultiExtended
26059                 - Fixes RightToLeft
26060         * ComboBox.cs:
26061                 - IsInputKey implemented
26062                 - Do not generate OnTextChangedEdit on internal txt changes
26063                 
26064 2005-01-23  Peter Bartok  <pbartok@novell.com>
26065
26066         * AccessibleObject.cs: Partially implemented Select()
26067         * MonthCalendar.cs: Added missing attributes and events
26068         * Form.cs: Fixed CreateParams behaviour, now controls derived from
26069           form can properly override CreateParams.
26070         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
26071           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
26072           Control performs Invalidate & Update
26073         * NativeWindow (CreateHandle): Added special handling for Form
26074           and Form.FormParent classes to allow overriding of From.CreateParams
26075         * Control.cs:
26076           - ControlNativeWindow: Renamed 'control' variable to more intuitive
26077             name 'owner'
26078           - ControlNativeWindow: Added Owner property
26079           - Removed usage of Refresh() on property changes, changed into
26080             Invalidate(), we need to wait until the queue is processed for
26081             updates, direct calls might cause problems if not all vars for
26082             Paint are initialized
26083           - Added call to UpdateStyles() when creating the window, to set any
26084             styles that CreateWindow might have ignored.
26085           - Added support for Form CreateParent overrides to UpdateStyles()
26086         * MessageBox.cs: Removed no longer needed FormParent override stuff,
26087           CreateParams are now properly overridable
26088         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
26089           CreateParams are now properly overridable
26090
26091 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
26092
26093         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
26094         OnTextBoxChanged.
26095
26096         Capture LostFocus and OnTextBoxChanged.  The later introduces a
26097         recursive invocation that I have not figured out yet.
26098
26099         Reset the timer when not using (it was accumulating).
26100
26101
26102         (OnTextBoxChanged): Set UserEdit to true here to track whether the
26103         user has made changes that require validation.
26104
26105         Reset changing to avoid loops.
26106
26107 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
26108
26109         * NumericUpDown.cs: Display value at startup.
26110
26111         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
26112         ValidateEditText.
26113
26114         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
26115         filled in.  Added some basic parsing of text.
26116
26117         Still missing the OnXXX method overrides, and figuring out the
26118         events that must be emitted.
26119
26120         * UpDownBase.cs: Handle UserEdit on the Text property.
26121         
26122 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
26123
26124         * ComboBox.cs:
26125           - Fixes IntegralHeight
26126           - ToString method
26127
26128 2005-01-21  Jackson Harper  <jackson@ximian.com>
26129
26130         * TabControl.cs: Set the SelectedIndex property when SelectedTab
26131         is set so that the page visibility is updated and the tabs are
26132         sized correctly.
26133
26134 2005-01-21  Jackson Harper  <jackson@ximian.com>
26135
26136         * TabControl.cs: Use cliping rectangle for blitting. Give the
26137         theme the clipping rect so we can do clipping while
26138         drawing. Remove some debug code.
26139
26140 2005-01-21  Jackson Harper  <jackson@ximian.com>
26141
26142         * TabPage.cs: Add a new method so tab pages can force the tab
26143         control to recalculate the tab page sizes.
26144         * TabControl.cs: UpdateOwner needs to make the tab control recalc
26145         sizes.
26146
26147 2005-01-20  Jackson Harper  <jackson@ximian.com>
26148
26149         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
26150
26151 2005-01-20  Jackson Harper  <jackson@ximian.com>
26152
26153         * TreeView.cs: Set the bounds for nodes properly. They were
26154         getting screwed up when checkboxes were not enabled, but images
26155         were.
26156
26157 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
26158
26159         * ListBox.cs:
26160                 - Owner draw support
26161                 - Fixes
26162                 
26163 2005-01-20  Jackson Harper  <jackson@ximian.com>
26164
26165         * XplatUIStructs.cs: More misc keys
26166         * X11Keyboard.cs: Ignore some control keys.
26167
26168 2005-01-20  Jackson Harper  <jackson@ximian.com>
26169
26170         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
26171         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
26172
26173 2005-01-19  Peter Bartok  <pbartok@novell.com>
26174
26175         * Control.cs: Un-selecting the control when it is loosing focus
26176
26177 2005-01-19  Jackson Harper  <jackson@ximian.com>
26178
26179         * TreeView.cs: Hook up to the text controls leave event so we can
26180         end editing when the users clicks outside the text box.
26181         
26182 2005-01-19  Jackson Harper  <jackson@ximian.com>
26183
26184         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
26185         get set in the conversion array.
26186
26187 2005-01-19  Peter Bartok  <pbartok@novell.com>
26188
26189         * Application.cs (ModalRun): Added a call to CreateControl to ensure
26190           focus is properly set
26191         * Button.cs:
26192           - Added missing attributes
26193           - removed styles, those are already set in the base class
26194         * ButtonBase.cs:
26195           - Added missing attributes
26196           - Added clip window styles
26197         * CheckBox.cs: Added missing attributes
26198         * CommonDialog.cs:
26199           - FormParentWindow.CreateParams: Added required clip styles
26200         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
26201           also filters modifier keys
26202         * MessageBox.cs:
26203           - Added assignment of Accept and Cancel button to enable Enter
26204             and Esc keys in MessageBox dialogs
26205           - FormParentWindow.CreateParams: Added required clip styles
26206         * RadioButton.cs: Added missing attributes
26207         * TextControl.cs: No longer draws selection if control does not
26208           have focus
26209         * TextBoxBase.cs:
26210           - Now draws simple rectangle around test area to make it obvious
26211             there's a control. This is a hack until we properly support borders
26212           - A few simple fixes to support selections better, now erases selected
26213             text when typing, and resets selection when using movement keys
26214
26215 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
26216
26217         * UpDownBase.cs: Added some new properties.
26218
26219         * DomainUpDown.cs: Implement a lot to get my test working.
26220
26221 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26222
26223         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
26224
26225 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26226
26227         * OSXStructs (WindowAttributes): Fixed csc complaints
26228
26229 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26230
26231         * XplayUIOSX.cs:
26232           OSXStructs.cs: Initial refactor to move enums and consts into
26233           OSXStructs and use them in the driver for greater readability.
26234
26235 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26236
26237         * XplatUIOSX.cs: Initial support for Standard Cursors.
26238         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
26239
26240 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
26241
26242         * ComboBox.cs: ability to change style when the ctrl is already
26243         created, missing methods and events, bug fixes, signature fixes
26244
26245 2005-01-19  Peter Bartok  <pbartok@novell.com>
26246
26247         * Cursors.cs (ctor): Added ctor to fix signature
26248
26249 2005-01-18  Peter Bartok  <pbartok@novell.com>
26250
26251         * Button.cs: Implemented DoubleClick event
26252         * ButtonBase.cs:
26253           - Fixed keyboard handling to behave like MS, where the press of
26254             Spacebar is equivalent to a mousedown, and the key release is
26255             equivalent to mouseup. Now a spacebar push will give the same
26256             visual feedback like a mouse click.
26257           - Added missing attributes
26258           - Added ImeModeChanged event
26259           - Added support for generating DoubleClick event for derived classes
26260         * CheckBox.cs:
26261           - Implemented DoubleClick event
26262           - Added missing attributes
26263         * CommonDialog.cs: Added missing attribute
26264         * ContextMenu.cs: Added missing attributes
26265         * RadioButton.cs:
26266           - AutoChecked buttons do not allow to be unselected when clicked
26267             (otherwise we might end up with no selected buttons in a group)
26268           - Added missing attributes
26269           - Implemented DoubleClickEvent
26270         * ThreadExceptionDialog.cs: Enabled TextBox code
26271
26272 2005-01-18  Peter Bartok  <pbartok@novell.com>
26273
26274         * Form.cs: Removed debug output
26275         * Button.cs: Added support for DoubleClick method
26276
26277 2005-01-18  Peter Bartok  <pbartok@novell.com>
26278
26279         * Form.cs:
26280           - Added method to parent window that allows triggering size
26281             calculations when a menu is added/removed
26282           - set_Menu: Cleaned up mess from early days of Form and Control,
26283             now properly triggers a recalc when a menu is added/removed
26284           - Added case to select form itself as focused form if no child
26285             controls exist
26286           - Added PerformLayout call when showing dialog, to ensure properly
26287             placed controls
26288         * Control.cs:
26289           - Select(): Made internal so Form can access it
26290           - Focus(): Only call Xplat layer if required (avoids loop), and sets
26291             status
26292         * Application.cs (Run): Removed hack and calls PerformLayout instead
26293           to trigger calculation when Form becomes visible
26294
26295 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
26296
26297         * ComboBox.cs: fixes for ownerdraw
26298
26299 2005-01-18  Peter Bartok  <pbartok@novell.com>
26300
26301         * TextControl.cs:
26302           - Sentinel is no longer static, each Document gets it's own, this
26303             avoids locking or alternatively overwrite problems when more
26304             than one text control is used simultaneously.
26305           - Switched to use Hilight and HilightText brushes for text selection
26306
26307         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
26308
26309 2005-01-18  Peter Bartok  <pbartok@novell.com>
26310
26311         * Control.cs:
26312           - Hooked up the following events:
26313                 o ControlAdded
26314                 o ControlRemoved
26315                 o HandleDestroyed
26316                 o ImeModeChanged
26317                 o ParentChanged
26318                 o TabStopChanged
26319                 o Invalidated
26320                 o SystemColorsChanged
26321                 o ParentFontChanged
26322                 o Move
26323           - Removed debug output
26324           - Added a call to the current theme's ResetDefaults when a color change
26325             is detected
26326         * Form.cs: Now setting the proper ImeMode
26327         * Theme.cs: Defined a method to force recreation of cached resources
26328           and rereading of system defaults (ResetDefaults())
26329         * ThemeWin32Classic.cs: Added ResetDefaults() stub
26330
26331 2005-01-17  Peter Bartok  <pbartok@novell.com>
26332
26333         * Control.cs: Added missing attributes
26334
26335 2005-01-17  Jackson Harper  <jackson@ximian.com>
26336
26337         * TreeNode.cs: Implement editing. Add missing properties selected
26338         and visible.
26339         * TreeView.cs: Implement node editing. Also some fixes to use
26340         Invalidate (invalid area) instead of Refresh when selecting.
26341
26342 2005-01-17  Peter Bartok  <pbartok@novell.com>
26343
26344         * Control.cs:
26345           - Implemented InvokeGotFocus() method
26346           - Implemented InvokeLostFocus() method
26347           - Implemented InvokePaint() method
26348           - Implemented InvokePaintBackground() method
26349           - Implemented InvokeClick() method
26350           - Implemented FindForm() method
26351           - Implemented RectangleToClient() method
26352           - Implemented ClientToRectangle() method
26353           - Implemented ResetBackColor() method
26354           - Implemented ResetCursor() method
26355           - Implemented ResetFont() method
26356           - Implemented ResteForeColor() method
26357           - Implemented ResetImeMode() method
26358           - Implemented ResetLeftToRight() method
26359           - Implemented ResetText() method
26360           - Implemented Scale() methods
26361           - Implemented ScaleCore() method
26362           - Implemented Update() method
26363           - Removed unused variables
26364           - Stubbed AccessibilityNotifyClients and
26365             ControlAccessibleObject.NotifyClients() methods (dunno what to do
26366             with those yet)
26367           - Now setting proper default for RightToLeft property
26368           - Fixed bug in SetClientSizeCore that would cause windows to get
26369             really big
26370           - Now sending Click/DoubleClick events
26371           - Now selecting controls when left mouse button is clicked on
26372             selectable control
26373         * AccessibleEvents.cs: Added
26374         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
26375         * XplatUIOSX.cs: Stubbed UpdateWindow() method
26376         * XplatUIWin32.cs: Implemented UpdateWindow() method
26377         * XplatUIX11.cs: Implemented UpdateWindow() method
26378         * Form.cs: Removed stray semicolon causing CS0162 warning
26379         * ThemeWin32Classic.cs: Fixed unused variable warnings
26380         * ScrollableControl.cs: Now calls base method for ScaleCore
26381         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
26382           style to avoid interference with internal click handler (which is
26383           different than standard Control click handling)
26384         * RadioButton.cs:
26385           - Now unchecks all sibling radio buttons when control is
26386             selected (Fixes #68756)
26387           - Removed internal tabstop variable, using the one inherited from
26388             Control
26389
26390 2005-01-17  Jackson Harper  <jackson@ximian.com>
26391
26392         * NavigateEventArgs.cs: Fix base type.
26393         * LinkLabel.cs: Sig fix
26394         
26395 2005-01-17  Jackson Harper  <jackson@ximian.com>
26396
26397         * TreeView.cs: Only invalidate the effected nodes bounds when
26398         selecting nodes.
26399
26400 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
26401
26402         * XplatUIWin32.cs: fixes Win32 marshaling
26403         * XplatUIX11.cs: fixes method signature
26404
26405 2005-01-17  Peter Bartok  <pbartok@novell.com>
26406
26407         * XplatUIX11.cs: Clean up resources when we no longer need them
26408
26409 2005-01-17  Peter Bartok  <pbartok@novell.com>
26410
26411         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
26412           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
26413           and DestroyCursor() methods.
26414         * Cursor.cs: Partially implemented, now supports standard cursors;
26415           still contains some debug code
26416         * Cursors.cs: Implemented class
26417         * Control.cs:
26418           - WndProc(): Added handling of WM_SETCURSOR message, setting the
26419             appropriate cursor
26420           - Implemented Cursor property
26421           - Replaced break; with return; more straightforwar and possibly
26422             faster
26423           - Now properly setting the result for WM_HELP
26424         * X11Structs.cs: Added CursorFontShape enum
26425         * XplatUIStructs.cs:
26426           - Added StdCursor enum (to support DefineStdCursor() method)
26427           - Added HitTest enum (to support sending WM_SETCURSOR message)
26428         * XplatUIX11.cs:
26429           - Now sends the WM_SETCURSOR message
26430           - Implemented new cursor methods
26431         * XplatUIOSX.cs: Stubbed new cursor methods
26432         * XplatUIWin32.cs:
26433           - Implemented new cursor methods
26434           - Added GetSystemMetrics function and associated enumeration
26435
26436 2005-01-15  Peter Bartok  <pbartok@novell.com>
26437
26438         * Control.cs:
26439           - WndProc(): Now handles EnableNotifyMessage
26440           - SelectNextControl(): Fixed bug where if no child or sibling
26441             controls exist we looped endlessly
26442
26443 2005-01-14  Jackson Harper  <jackson@ximian.com>
26444
26445         * TreeView.cs: Recalculate the tab pages when a new one is added
26446         so that the proper bounding rects are created.
26447
26448 2005-01-14  Jackson Harper  <jackson@ximian.com>
26449
26450         * TreeView.cs: Draw a gray box instead of a grip in the lower
26451         right hand corner when there are both horizontal and vertical
26452         scroll bars.
26453
26454 2005-01-14  Jackson Harper  <jackson@ximian.com>
26455
26456         * Control.cs: When erasing backgrounds use FromHwnd instead of
26457         FromHdc when there is a NULL wparam. This occurs on the X driver.
26458         * XplatUIX11.cs: Set the wparam to NULL.
26459
26460 2005-01-13  Jackson Harper  <jackson@ximian.com>
26461
26462         * PictureBox.cs: Implement missing methods (except ToString, need
26463         to test that on windows) and events. When visibility is changed we
26464         need to redraw the image because the buffers are killed. When size
26465         is changed refresh if the sizemode needs it.
26466
26467 2005-01-13  Peter Bartok  <pbartok@novell.com>
26468
26469         * Control.cs (SelectNextControl): Was using wrong method to select
26470           a control
26471
26472 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
26473
26474         * ComboBox.cs: fixes dropstyle
26475
26476 2005-01-13  Peter Bartok  <pbartok@novell.com>
26477
26478         * Form.cs:
26479           - Implemented Select() override
26480           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
26481           - Now sets keyboard focus on startup
26482         * Control.cs (SelectNextControl): Now properly handles directed=true
26483         * TextBoxBase.cs:
26484           - WndProc: Now passes tab key on to base if AcceptTabChar=false
26485           - Added (really bad) focus rectangle (mostly for testing)
26486         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
26487           to enforce redraw on focus changes
26488         * ContainerControl.cs:
26489           - Fixed detection of Shift-Tab key presses
26490           - Fixed traversal with arrow keys
26491         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
26492           gonna keep this or if it's complete yet
26493         
26494 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
26495
26496         * ComboBox.cs: missing properties, fixes
26497
26498 2005-01-13  Peter Bartok  <pbartok@novell.com>
26499
26500         * Panel.cs (ctor): Setting Selectable window style to off
26501         * Splitter.cs (ctor): Setting Selectable window style to off
26502         * GroupBox.cs (ctor): Setting Selectable window style to off
26503         * Label.cs (ctor): Setting Selectable window style to off
26504
26505 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
26506
26507         * UpDownBase.cs (InitTimer): If the timer has been already
26508         created, enable it.
26509
26510         Use a TextBox instead of a Label.
26511
26512 2005-01-12  Jackson Harper  <jackson@ximian.com>
26513
26514         * TreeView.cs: Refresh the tree after sorting the nodes. Always
26515         draw the connecting node lines (when ShowLines is true).
26516         * TreeNode.cs: The nodes index can now be updated. This is used
26517         when a node collection is sorted.
26518         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
26519         insert or an existing unsorted node collection can be sorted.
26520         
26521 2005-01-12  Peter Bartok  <pbartok@novell.com>
26522
26523         * ContainerControl.cs: Implemented ProcessDialogKeys()
26524
26525 2005-01-12  Peter Bartok  <pbartok@novell.com>
26526
26527         * Control.cs:
26528           - Implemented SelectNextControl() method
26529           - Several focus related bug fixes
26530           - Fixed Docking calculations to match MS documentation and
26531             behaviour
26532
26533 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
26534
26535         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
26536         bug fixes
26537
26538 2005-01-12  Peter Bartok  <pbartok@novell.com>
26539
26540         * Control.cs:
26541           - Fixed broken Contains() method
26542           - Implemented GetNextControl() method. Finally. This is the pre-
26543             requisite for focus handling.
26544
26545 2005-01-12  Peter Bartok  <pbartok@novell.com>
26546
26547         * OSXStrucs.cs: Added
26548
26549 2005-01-12  Peter Bartok  <pbartok@novell.com>
26550
26551         * XplatUIWin32.cs:
26552           - Removed PeekMessageFlags
26553           - Implemented SetWindowStyle() method
26554         * XplatUIStructs.cs: Added PeekMessageFlags
26555         * X11Structs: Added missing border_width field to XWindowChanges struct
26556         * XplatUIX11.cs:
26557           - PeekMessage: Now throws exception if flags which are not yet
26558             supported are passed
26559           - Implemented SetWindowStyle() method
26560           - Fixed SetZOrder to handle AfterHwnd properly
26561         * XplatUI.cs: Added SetWindowStyle() method
26562         * XplatUIDriver.cs: Added SetWindowStyle() abstract
26563         * Control.cs:
26564           - Implemented UpdateStyles() method
26565           - Implemented UpdateZOrder() method
26566         * XplatUIOSX.cs: Added SetWindowStyle() stub
26567
26568 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
26569
26570         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
26571         button mouse).
26572
26573
26574 2005-01-11  Jackson Harper  <jackson@ximian.com>
26575
26576         * TreeView.cs: Still need to draw lines to siblings even if out of
26577         the current node is out of the clip.
26578
26579 2005-01-11  Jackson Harper  <jackson@ximian.com>
26580
26581         * TreeView.cs: When setting the hbar/vbar/grip position use
26582         SetBounds so that perform layout is only called once. Also suspend
26583         and resume layout so layout is only done once for all controls.
26584         - Removed some debug fluff
26585         * SizeGrip.cs: Call base implmentation in overriding methods.
26586         - When visibility is changed the drawing buffers are killed so we
26587         need to redraw.
26588
26589 2005-01-11  Jackson Harper  <jackson@ximian.com>
26590
26591         * TreeView.cs: Calculate the open node count while drawing. This
26592         saves us an entire tree traversal for every paint operation. Use
26593         a member var for the open node count so less vars are passed around.
26594
26595 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
26596
26597         * MonthCalendar.cs:
26598         - fixed selection to use mousemove, not mouse polling on timer
26599         * ThemeWin32Classic.cs
26600         - removed redundant unused variable "no_more_content"
26601         
26602 2005-01-11  Peter Bartok  <pbartok@novell.com>
26603
26604         * XplatUIX11.cs (DoEvents): Needs to return when no more events
26605           are pending, so it now calls PeekMessage instead of GetMessage;
26606           implemented a incomplete version of PeekMessage
26607         
26608 2005-01-11  Peter Bartok  <pbartok@novell.com>
26609
26610         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
26611           I18n issues
26612         * TextBoxBase.cs: Added sending of TextChanged event
26613
26614 2005-01-10  Jackson Harper  <jackson@ximian.com>
26615
26616         * TreeView.cs: Try not to draw outside the clipping rectangle on
26617         each node element.
26618
26619 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
26620
26621         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
26622
26623 2005-01-10  Jackson Harper  <jackson@ximian.com>
26624
26625         * TreeView.cs:
26626         - Implement fast scrolling. Now only the newly
26627         exposed nodes are drawn and the old image is moved using the
26628         XplatUI::ScrollWindow method.
26629         - Factor in height of nodes when calculating whether or not the
26630         node is in the clipping rect.
26631
26632 2005-01-10  Jackson Harper  <jackson@ximian.com>
26633
26634         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
26635
26636 2005-01-10  Peter Bartok  <pbartok@novell.com>
26637
26638         * Application.cs: Added temporary hack to resolve all our resize
26639           required issues on startup. This will get fixed properly at
26640           some point in the future
26641
26642 2005-01-10  Jackson Harper  <jackson@ximian.com>
26643
26644         * SizeGrip.cs: New internal class that is used as a sizing
26645         grip control...hence the name.
26646
26647 2005-01-10  Peter Bartok  <pbartok@novell.com>
26648
26649         * Control.cs: Implemented proper TabIndex handling, now assigning
26650           a tabindex when a control is added to a container
26651         * GroupBox.cs (ctor): Now sets the Container style bit, required
26652           for Control.GetNextControl()
26653
26654 2005-01-09  Jackson Harper  <jackson@ximian.com>
26655
26656         * TextBoxBase.cs: Clear window when scrolling (fixes build).
26657
26658 2005-01-09  Peter Bartok <pbartok@novell.com>
26659
26660         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
26661           XplatUIX11.cs: Added ability to control ScrollWindow expose and
26662           an overload for ScrollWindow to allow only scrolling a rectangle
26663
26664 2005-01-09  Peter Bartok <pbartok@novell.com>
26665
26666         * Form.cs:
26667           - Implemented SetDesktopBounds method
26668           - Implemented SetDesktopLocation method
26669
26670 2005-01-08  Jackson Harper  <jackson@ximian.com>
26671
26672         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
26673         the node count has changed, this removes to VScroll::Refresh calls
26674         when drawing.
26675
26676 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
26677
26678         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
26679
26680 2005-01-07  Jackson Harper  <jackson@ximian.com>
26681
26682         * TreeNode.cs: Just update the single node when it is
26683         checked. Don't refresh after toggling, the Expand/Collapse already
26684         handles this.
26685         * TreeView.cs: Respect clipping a little more when drawing. Try
26686         not to redraw things that don't need to be redrawn. Just hide the
26687         scrollbars when they are no longer needed instead of removing
26688         them, so they don't have to be created again and again.
26689         
26690 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
26691
26692         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
26693         coordinates to window space to place the caret properly, FIXED.
26694         Implement GetWindowState & SetWindowState
26695
26696 2005-01-06  Peter Bartok <pbartok@novell.com>
26697
26698         * Form.cs:
26699           - Implemented ClientSize property
26700           - Implemented DesktopBounds property
26701           - Implemented DesktopLocation property
26702           - Implemented IsRestrictedWindow property
26703           - Implemented Size property
26704           - Implemented TopLevel property
26705           - Implemented FormWindowState property
26706         * Control.cs:
26707           - Implemented GetTopLevel() method
26708           - Implemented SetTopLevel() method
26709         * X11Structs.cs (Atom):
26710           - Added AnyPropertyType definition
26711           - Added MapState definiton and updated XWindowAttribute struct
26712         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
26713         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
26714         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
26715         * XplatUIWin32.cs:
26716           - Implemented GetWindowState() and SetWindowState() methods
26717           - Fixed Win32GetWindowLong return type
26718         * XplatUIX11.cs:
26719           - Introduced central function for sending NET_WM messages
26720           - Implemented GetWindowState() and SetWindowState() methods
26721         * TextBoxBase.cs (set_Lines):
26722           - Now uses Foreground color for text added via Text property (Duh!)
26723           - Added code to remember programmatically requested size (fixes
26724             behaviour when Multiline is set after Size)
26725           - Added AutoSize logic
26726
26727 2005-01-06  Jackson Harper  <jackson@ximian.com>
26728
26729         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
26730
26731 2005-01-06  Jackson Harper  <jackson@ximian.com>
26732
26733         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
26734         set to less then 0.
26735
26736 2005-01-06  Jackson Harper  <jackson@ximian.com>
26737
26738         * ScrollableControl.cs: Lazy init the scrollbars.
26739         
26740 2005-01-06  Jackson Harper  <jackson@ximian.com>
26741
26742         * Theme.cs: Speed up getting pens and solid brushes, by using
26743         their ARGB as a hash instead of tostring and not calling Contains.
26744
26745 2005-01-06  Peter Bartok <pbartok@novell.com>
26746
26747         * Form.cs:
26748           - Implemented OnActivated and OnDeactivate event trigger
26749           - Implemented Activate() method
26750           - Fixed ShowDialog() to activate the form that was active before
26751             the dialog was shown
26752         * XplatUIX11.cs:
26753           - Added global active_window var that tracks the currently active
26754             X11 window
26755           - Now always grabs Property changes from the root window to always
26756             catch changes on the active window property
26757           - Added code to PropertyNotify handler to send Active/Inactive
26758             messages when state changes. This puts X11 and Win32 en par on
26759             WM_ACTIVATE notifications (except for double notifications when
26760             the user clicks away from our modal window to another one of our
26761             windows)
26762
26763 2005-01-05  Jackson Harper  <jackson@ximian.com>
26764
26765         * ImageList.cs: Implment ctor
26766
26767 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
26768
26769         * XplatUIOSX.cs: Implement Activate/SetTopmost
26770
26771 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
26772
26773         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
26774
26775 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
26776
26777         * XplatUIOSX.cs: Implement GetActive/SetFocus.
26778
26779 2005-01-05  Peter Bartok <pbartok@novell.com>
26780
26781         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
26782           XplatUIOSX.cs: Added GetActive method to return the currently
26783           active window for the application (or null, if none is active)
26784         * Form.cs:
26785           - Implemented ActiveForm
26786           - Commented out owner assignment for modal dialogs (causes problems
26787             on Win32, since the owner will be disabled)
26788           - Reworked some Active/Focus handling (still incomplete)
26789         * CommonDialog.cs: Commented out owner assignment for modal dialogs
26790           (causes problems on Win32, since the owner will be disabled)
26791         * IWin32Window: Added ComVisible attribute
26792
26793 2005-01-05  Peter Bartok <pbartok@novell.com>
26794
26795         * ToolTip.cs (WndProc): Enable setting focus now that we have the
26796           required XplatUI functions.
26797
26798 2005-01-05  Peter Bartok <pbartok@novell.com>
26799
26800         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
26801           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
26802           to implement focus and activation handling; still incomplete and
26803           with debug output
26804
26805 2005-01-04  Peter Bartok <pbartok@novell.com>
26806
26807         * TextBoxBase.cs: Changed access level for Document property to
26808           match switch to internal for TextControl
26809
26810 2005-01-04  Peter Bartok <pbartok@novell.com>
26811
26812         * AccessibleObject: Added ComVisible attribute
26813
26814 2005-01-04  Jackson Harper  <jackson@ximian.com>
26815
26816         * X11Keyboard.cs: Remove unneeded var.
26817
26818 2005-01-04  Jackson Harper  <jackson@ximian.com>
26819
26820         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
26821         but PAINT.
26822         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
26823         ClientMessage. This makes apps exit cleanly (more often).
26824         
26825 2005-01-04  Jackson Harper  <jackson@ximian.com>
26826
26827         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
26828         handling focus, return correct colors and fonts,
26829         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
26830         handle selection, horizontal scrolling, and mouse interaction.
26831
26832 2005-01-04  Peter Bartok <pbartok@novell.com>
26833
26834         * ICommandExecutor.cs: Added
26835         * IDataGridColumnStyleEditingNotificationService.cs: Added
26836         * IFeatureSupport.cs: Added
26837         * IFileReaderService.cs: Added
26838         * IDataObject.cs: Added ComVisible attribute
26839         * AmbientProperties.cs: Added
26840         * BaseCollection.cs: Added missing attributes
26841         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
26842         * BaseCollection.cs: Added missing attributes
26843         * Binding.cs: Added TypeConverter attribute
26844         * BindingContext.cs: Added DefaultEvent attribute
26845         * BindingsCollection.cs: Added DefaultEvent attribute
26846         * Button.cs: Added DefaultValue attribute
26847         * DragEventArgs.cs: Added ComVisible attribute
26848         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
26849         * KeyEventArgs.cs: Added ComVisible attribute
26850         * KeyPressEventArgs.cs: Added ComVisible attribute
26851         * MouseEventArgs.cs: Added ComVisible attribute
26852         * NavigateEventArgs.cs: Added
26853         * NavigateEventHandler.cs: Added
26854         * FeatureSupport.cs: Added
26855         * OSFeature.cs: Added
26856         * Theme.cs: Added abstract Version property to support OSFeature
26857         * ThemeWin32Classic.cs: Added Version property to
26858           support OSFeature.Themes
26859         * ProgressBar.cs: Removed OnPaintBackground override, not required since
26860           the proper styles to avoid background drawing are set, also doesn't
26861           match MS signature
26862         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
26863         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
26864         * ScrollEventArgs.cs: Added ComVisible attribute
26865         * SplitterEventArgs.cs: Added ComVisible attribute
26866         * AccessibleSelection.cs: Added Flags attribute
26867         * Appearance.cs: Added ComVisible attribute
26868         * Border3DSide.cs: Added ComVisible attribute
26869         * Border3DStyle.cs: Added ComVisible attribute
26870         * BorderStyle.cs: Added ComVisible attribute
26871         * DragAction.cs: Added ComVisible attribute
26872         * ErrorBlinkStyle.cs: Added
26873         * ScrollEventType.cs: Added ComVisible attribute
26874         * AnchorStyles.cs: Added Editor attribute
26875         * DockStyle.cs: Added Editor attribute
26876         * HorizontalAlignment.cs: Added ComVisible attribute
26877         * HelpEventArgs.cs: Added ComVisible attribute
26878         * PaintEventArgs.cs: Added IDisposable
26879
26880 2005-01-04  Peter Bartok <pbartok@novell.com>
26881
26882         * TextControl.cs: Switched Line, LineTag and Document classes to
26883           internal
26884
26885 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
26886
26887         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
26888         Simple mode, fixes, IntegralHeight, etc.
26889
26890 2005-01-04  Peter Bartok <pbartok@novell.com>
26891
26892         * TextBoxBase.cs: Using proper font variable now
26893
26894 2005-01-04  Peter Bartok <pbartok@novell.com>
26895
26896         * Form.cs (ShowDialog): Set parent to owner, if provided
26897         * GroupBox.cs: Removed unused vars
26898         * TextControl.cs:
26899           - Added GetHashCode() for Document and LineTag classes
26900           - Removed unused variables
26901           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
26902             to allow translation between continuous char position and line/pos
26903         * CheckBox.cs: Removed vars that are provided by base class
26904         * RadioButton.cs: Removed vars that are provided by base class, added
26905           new keyword where required
26906         * LinkLabel.cs: Added new keyword where required
26907         * Control.cs (WndProc): Removed unused variable
26908         * TextBoxBase.cs:
26909           - Finished SelectionLength property
26910           - Implemented SelectionStart property
26911           - Implemented Text property
26912           - Removed unused vars
26913         * MessageBox.cs: Added new keyword where required
26914         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
26915           WndProc signature
26916         * MenuAPI.cs: Added new keyword where required
26917         * ButtonBase.cs: Removed vars that are provided by base class, added
26918           new keyword where required
26919         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
26920           argument to double, to allow compiling with csc 2.0 (Atsushi ran
26921           into this)
26922         * Application.cs (Run): Now triggers the ThreadExit event
26923         * CommonDialog.cs: Added new keyword where required; now properly sets
26924           parent (owner) for dialog
26925         * XplatUIX11.cs: Commented out unused vars
26926         * StatusBar.cs: Fixed signature for Text property
26927         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
26928
26929 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
26930
26931         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
26932         TrackBar.cs, MonthCalendar.cs: remove unused vars
26933
26934 2005-01-03  Jackson Harper  <jackson@ximian.com>
26935
26936         * ThemeWin32Classic.cs:
26937         * X11Keyboard.cs: Remove unused vars.
26938
26939 2005-01-03  Peter Bartok  <pbartok@novell.com>
26940
26941         * TextBox.cs:
26942           - set_Text: Tied into TextControl
26943           - set_TextAlignment: Tied into TextControl
26944         * TextControl.cs:
26945           - Added alignment properties and implemented alignment handling
26946             and drawing (still has a bug, not generating proper expose events)
26947           - Added new Line() constructor to allow passing the line alignment
26948           - Fixed selection setting, properly handling end<start now
26949           - Added aligment considerations to RecalculateDocument()
26950         * TextBoxBase.cs:
26951           - Now properly enforces control height for single line controls
26952           - Added support for CharacterCasing
26953           - Added IsInputKey override
26954           - Fixed Keys.Enter logic
26955           - Added SetBoundsCore override
26956           - Fixed mouse selection handling
26957
26958 2005-01-03  Jackson Harper  <jackson@ximian.com>
26959
26960         * TreeView.cs:
26961           - Collapse and uncheck all nodes when CheckBoxes is disabled.
26962           - Checkboxes are always aligned to the bottom of the node,
26963           regardless of item height.
26964           - Use the node bounds to draw the text so we can center it when
26965           the item height is greater then the font height.
26966           - Node::Bounds are only the text part of the node.
26967         * TreeNode.cs: New method to combine collapsing and unchecking all
26968           nodes recursively.
26969
26970 2005-01-02  Jackson Harper  <jackson@ximian.com>
26971
26972         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
26973         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
26974         tree when a check is changed. TODO: Only refresh the checked node.
26975
26976 2004-12-30  Jackson Harper  <jackson@ximian.com>
26977
26978         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
26979         * TreeNode.cs: When collapsing make sure to never collapse the
26980         root node.
26981
26982 2004-12-29  Jackson Harper  <jackson@ximian.com>
26983
26984         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
26985         
26986 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
26987
26988         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
26989
26990 2004-12-28  Peter Bartok  <pbartok@novell.com>
26991
26992         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
26993           not yet assigned
26994
26995 2004-12-28  Peter Bartok  <pbartok@novell.com>
26996
26997         * Control.cs (WndProc): Added WM_HELP handler, now generates
26998           HelpRequested event
26999         * Form.cs: Added HelpButton property and required support code
27000         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
27001
27002 2004-12-28  Peter Bartok  <pbartok@novell.com>
27003
27004         * CommonDialog.cs:
27005           - Made DialogForm.owner variable internal
27006           - Added check to ensure owner form is set before setting
27007             owner properties in CreateParams
27008
27009 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
27010
27011         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
27012           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
27013           GetCursorPos.  Fix major visibility issues.  Rework the windowing
27014           system to support borderless/titleless windows (implements menus).
27015           Fix GetWindowPos.  Implement initial background color support for
27016           views.
27017
27018 2004-12-28  Peter Bartok  <pbartok@novell.com>
27019
27020         * Form.cs (get_CreateParams): Make sure we have an owner before using
27021           the owner variable. Implement proper default if no owner exists
27022
27023 2004-12-28  Peter Bartok  <pbartok@novell.com>
27024
27025         * In preparation for making Managed.Windows.Forms the default build target
27026           for System.Windows.Forms, the following stubbed files were added.
27027           Dialogs are currently being implemented by contributors and are only
27028           short-term place holders.
27029         * ColorDialog.cs: Initial check-in (minmal stub)
27030         * DataGrid.cs: Initial check-in (minimal stub)
27031         * DataGridLineStyle.cs: Initial check-in (minimal stub)
27032         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
27033         * DataGridTableStyle.cs: Initial check-in (minimal stub)
27034         * FontDialog.cs: Initial check-in (minimal stub)
27035         * FileDialog.cs: Initial check-in (minimal stub)
27036         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
27037         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
27038         * OpenFileDialog: Initial check-in (minimal stub)
27039         * IComponentEditorPageSite.cs: Initial check-in
27040         * Splitter.cs: Initial check-in (for Jackson)
27041         * SplitterEventArgs.cs: Initial check-in (for Jackson)
27042         * SplitterEventHandler.cs: Initial check-in (for Jackson)
27043         * TextBox.cs: Initial check-in; still needs some wiring to
27044           TextControl backend
27045         * Form.cs: Implemented ControlBox property
27046         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
27047         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
27048         * TextControl.cs: Added selection functionality; added todo header
27049         * TextBoxBase.cs:
27050           - Implemented Lines property
27051           - Implemented TextHeight property
27052           - Implemented SelectedText property
27053           - Implemented SelectionLength property
27054           - Implemented SelectAll method
27055           - Implemented ToString method
27056           - Removed and cleaned up some debug code
27057           - Implemented (still buggy) mouse text selection
27058
27059 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
27060
27061         * ComboBox.cs: Complete DropDownList implementation, fixes.
27062
27063 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
27064
27065         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
27066         * ComboBoxStyle.cs: ComboBoxStyle enum
27067         * ComboBox.cs: Initial work on ComboBox control
27068
27069 2004-12-21  Peter Bartok  <pbartok@novell.com>
27070
27071         * Control.cs (ctor, CreateParams): Moved setting of is_visible
27072           forward so that anything that creates a window gets the default,
27073           also no longer uses Visible property in CreateParams to avoid
27074           walking up the parent chain and possibly get the wrong visible
27075           status. Fixed IsVisible to no longer walk up to the parent.
27076
27077 2004-12-21  Peter Bartok  <pbartok@novell.com>
27078
27079         * Form.cs (ShowDialog): Unset modality for the proper window
27080  
27081 2004-12-20  Peter Bartok  <pbartok@novell.com>
27082
27083         * CommonDialog.cs: Initial check-in
27084
27085 2004-12-20  Peter Bartok  <pbartok@novell.com>
27086
27087         * Control.cs (Visible): Now uses the parent window instead of the
27088           client area window for the property
27089
27090         * Form.cs
27091           - ShowDialog(): Now uses the proper window for modality
27092           - The default visibility state for the form parent is now false. This
27093             will prevent the user from seeing all the changes to the form and
27094             its controls before the application hits Application.Run()
27095           - Removed some stale commented out code
27096
27097         * NativeWindow.cs:
27098           - Added FindWindow() method to have a method to check for existence
27099             of a window handle
27100           - Added ability to override default exception handling (for example
27101             when debugging with VS.Net; to do this the ExternalExceptionHandler
27102             define must be set
27103           - Removed some useless debug output
27104
27105         * XplatUIX11.cs:
27106           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
27107             not working as expected
27108           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
27109             property to allow switching back to the modal window if focus is
27110             given to another one of our windows (Application Modal)
27111           - Now only sets override_redirect if we create a window
27112             without WS_CAPTION
27113           - Moved EventMask selection before mapping of newly created window
27114             so we can catch the map event as well
27115           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
27116           - Added various Atom related DllImports
27117           - Implemented Exit() method
27118           - .ctor() : No longer shows window if WS_VISIBLE is not defined
27119             in the CreateParams
27120
27121         * MessageBox.cs: Now properly deals with the FormParent window by
27122           providing an override the FormParent CreateParams property to
27123           set as POPUP instead of OVERLAPPED window.
27124
27125 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
27126
27127         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
27128         Minor code cleanup.
27129
27130 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
27131         
27132         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
27133
27134 2004-12-18  Peter Bartok  <pbartok@novell.com>
27135
27136         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
27137           implementing SetModal() method
27138
27139 2004-12-18  Peter Bartok  <pbartok@novell.com>
27140
27141         * X11Structs.cs (XGCValues): Fixed type of function element
27142         * XplatUI.cs: Added ScrollWindow() method
27143         * XplatUIDriver.cs: Added ScrollWindow() abstract
27144         * XplatUIWin32.cs: Implemented ScrollWindow() method
27145         * XplatUIX11.cs: Implemented ScrollWindow() method
27146         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
27147
27148 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
27149
27150         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
27151         Some more keyboard support (INCOMPLETE)
27152
27153 2004-12-17  Peter Bartok  <pbartok@novell.com>
27154
27155         * TextControl.cs:
27156         - Added color attribute to line tags.
27157         - Added color argument to all functions dealing with tags
27158         - Added color argument support to various functions
27159         - Fixed miss-calculation of baseline/shift in certain circumstances
27160
27161         * TextBoxBase.cs: Added new color option to test code
27162
27163 2004-12-17  Jackson Harper  <jackson@ximian.com>
27164
27165         * TreeNode.cs:
27166         * MonthCalendar.cs: Signature fixes
27167
27168 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
27169
27170         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
27171         keyboard event moved it.  Create a new graphics context for each paint resolves this
27172
27173 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
27174
27175         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
27176         Make caret exist and go blink blink.  Initial keyboard support.
27177         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
27178         works.
27179
27180 2004-12-17  Jackson Harper  <jackson@ximian.com>
27181
27182         * XplatUIStructs.cs: Updated set of virtual keycodes.
27183         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
27184
27185 2004-12-17  Jackson Harper  <jackson@ximian.com>
27186
27187         * XplatUIX11.cs: Prune old keyboard code.
27188
27189 2004-12-17  Jackson Harper  <jackson@ximian.com>
27190
27191         * XplatUIX11.cs: When generating mouse wparams get the modifier
27192         keys from the ModifierKeys property.
27193
27194 2004-12-17  Jackson Harper  <jackson@ximian.com>
27195
27196         * X11Keyboard.cs: Send up/down input when generating
27197         messages. Remove some unused vars.
27198
27199 2004-12-17  Jackson Harper  <jackson@ximian.com>
27200
27201         * TabControl.cs:
27202         * TreeView.cs: get rid of warnings.
27203
27204 2004-12-17  Jackson Harper  <jackson@ximian.com>
27205
27206         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
27207
27208 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
27209
27210         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
27211           CheckedListBox.cs: Implementation
27212
27213 2004-12-17  Peter Bartok  <pbartok@novell.com>
27214
27215         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
27216
27217 2004-12-16  Peter Bartok  <pbartok@novell.com>
27218
27219         * TextControl.cs:
27220           - InsertCharAtCaret(): Fixed start pos fixup
27221           - CaretLine_get: No longer derives the line from the tag, the tag
27222             could be stale if lines in the document have been added or deleted
27223           - RebalanceAfterDelete(): Fixed bug in balancing code
27224           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
27225           - Line.Streamline(): Now can also elminate leading empty tags
27226           - DumpTree(): Added a few more tests and prevented exception on
27227             uninitialized data
27228           - Added Debug section for Combining lines
27229           - Delete(): Now copies all remaining properties of a line
27230           
27231         * TextBoxBase.cs:
27232           - Left mousebutton now sets the caret (and middle button still acts
27233             as formatting tester, which must go away soon)
27234           - Added Debug section for Deleting/Combining lines
27235           - Fixed calculations for UpdateView after Combining lines
27236
27237 2004-12-16  Peter Bartok  <pbartok@novell.com>
27238
27239         * TextControl.cs: Now properly aligns text on a baseline, using the
27240           new XplatUI.GetFontMetrics() method. Simplified several calculations
27241         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
27242           defined
27243
27244 2004-12-16  Peter Bartok  <pbartok@novell.com>
27245
27246         * XplatUI.cs: Added GetFontMetrics() method
27247         * XplatUIDriver.cs: Added GetFontMetrics() abstract
27248         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
27249           into libgdiplus, our private GetFontMetrics function
27250         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
27251         * XplatUIWin32.cs: Implemented GetFontMetrics() method
27252
27253 2004-12-16  Jackson Harper  <jackson@ximain.com>
27254
27255         * XplatUIStruct.cs: Add enum for dead keys
27256         * X11Keyboard.cs: Map and unmap dead keys.
27257
27258 2004-12-16  Jackson Harper  <jackson@ximian.com>
27259
27260         * X11Keyboard.cs: Detect and use the num lock mask.
27261
27262 2004-12-16  Peter Bartok  <pbartok@novell.com>
27263
27264         * Control.cs (CreateGraphics): Added check to make sure the
27265           handle of the window exists before calling Graphics.FromHwnd()
27266
27267 2004-12-16  Peter Bartok  <pbartok@novell.com>
27268
27269         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
27270           contains a lot of code that's not supposed to be there for the
27271           real thing, but required for developing/testing the textbox
27272           backend.
27273
27274 2004-12-16  Peter Bartok  <pbartok@novell.com>
27275
27276         * TextControl.cs:
27277         - Fixed Streamline method
27278         - Added FindTag method to Line
27279         - Added DumpTree method for debugging
27280         - Added DecrementLines() method for deleting lines
27281         - Fixed UpdateView to update the cursor to end-of-line on single-line
27282           updates
27283         - Added PositionCaret() method
27284         - Fixed MoveCaret(LineDown) to move into the last line, too
27285         - Added InsertChar overload
27286         - Fixed InsertChar tag offset calculations
27287         - Added DeleteChar() method
27288         - Added Combine() method for folding lines
27289         - Fixed Delete() method, no longer allocates wasted Line object and
27290           now copies all properties when swapping nodes
27291         - Delete() method now updates document line counter
27292
27293 2004-12-15  Jackson Harper  <jackson@ximian.com>
27294
27295         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
27296         * X11Keyboard.cs: Expose the currently selected modifier keys
27297         through a property.
27298
27299 2004-12-15  Peter Bartok  <pbartok@novell.com>
27300
27301         * TextControl.cs: Initial check-in. Still incomplete
27302
27303 2004-12-15  Jackson Harper  <jackson@ximian.com>
27304
27305         * TreeNode.cs:
27306         * TreeView.cs: Fix build on csc (second time today ;-))
27307
27308 2004-12-15  Jackson Harper  <jackson@ximian.com>
27309
27310         * TreeView.cs: Store the treenodes plus/minus box bounds when it
27311         is calculated and use this for click testing.
27312         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
27313
27314 2004-12-15  Jackson Harper  <jackson@ximian.com>
27315
27316         * TreeView.cs: Pass the nodes image index to the image list when
27317         drawing that image.
27318
27319 2004-12-15  Jackson Harper  <jackson@ximian.com>
27320
27321         * X11Keyboard.cs: Set messages hwnd.
27322         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
27323         post_message calls.
27324
27325 2004-12-15  Jackson Harper  <jackson@ximian.com>
27326
27327         * X11Keyboard.cs: Fix to compile with csc.
27328         
27329 2004-12-15  Jackson Harper  <jackson@ximian.com>
27330
27331         * X11Structs.cs: Add key mask values
27332         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
27333         * X11Keyboard.cs: New file - Extrapolates and interpolates key
27334         down/up foo into WM_CHAR foo
27335         * KeyboardLayouts.cs: Common keyboard layouts
27336         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
27337         post messages into the main queue.
27338
27339 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
27340
27341         * Button.cs: implement ProcessMnemonic
27342         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
27343           brushes everytime
27344         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
27345         * ButtonBase.cs: Show HotkeyPrefix (not the &)
27346
27347 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
27348         
27349         * MonthCalendar.cs: Implemented click-hold for next/previous month
27350           and date selection
27351           
27352 2004-12-11  Peter Bartok  <pbartok@novell.com>
27353
27354         * X11Structs.cs:
27355           - Added XKeyboardState (moved from XplatUIX11.cs)
27356           - Added XCreateGC related enums and structures
27357           - Added GXFunction for XSetFunction
27358
27359         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
27360
27361         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
27362           CaretVisible() calls
27363
27364         * ToolTip.cs: Added code to prevent stealing focus from app windows
27365
27366         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
27367           DestroyCaret, SetCaretPos and CaretVisible)
27368
27369         * XplatUIX11.cs:
27370           - Added implementation for caret functions
27371           - Moved hover variables into a struct, to make it a bit easier
27372             on the eyes and to debug
27373           - Removed XKeyboardState (moved to XplatUIX11.cs)
27374           - Moved Keyboard properties into the properties region
27375
27376         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
27377           call to get a graphics context for our control
27378
27379         * XplatUIOSX.cs: Added empty overrides for the new caret functions
27380
27381         * TreeView.cs: Fixed bug. No matter what color was set it would always
27382           return SystemColors.Window
27383
27384         * XplatUIWin32.cs: Implemented caret overrides
27385
27386 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
27387
27388         * ListBox.cs: fire events, implement missing methods and properties,
27389         sorting.
27390
27391 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
27392
27393         * MonthCalendar.cs: invalidation bug fixing
27394         * ThemeWin32Classic.cs: paint fixing
27395
27396 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
27397
27398         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
27399         prepare the CGContextRef there now.
27400
27401 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
27402
27403         * MonthCalendar.cs:
27404           - optimisationL only invalidate areas that have changed
27405         * ThemeWin32Classic.cs:
27406           - only paint parts that intersect with clip_area
27407
27408 2004-12-09  Peter Bartok  <pbartok@novell.com>
27409
27410         * Application.cs: Undid changes from r37004 which cause problems
27411         on X11
27412
27413 2004-12-09  Ravindra  <rkumar@novell.com>
27414
27415         * ToolBar.cs: Added support for displaying ContextMenu
27416         attached to a button on ToolBar.
27417         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
27418         property.
27419
27420 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
27421
27422         * Label.cs: autosize works in text change and removes unnecessary
27423         invalidate
27424
27425 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
27426
27427         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
27428         remove warnings
27429
27430 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
27431
27432         * XplatUIOSX.cs: Added mouse move/click/grab support
27433         Remove some debugging WriteLines not needed anymore.
27434         Add window resizing/positioning.
27435         Fix visibility on reparenting.
27436
27437 2004-12-08  Peter Bartok  <pbartok@novell.com>
27438
27439         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
27440
27441 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
27442
27443         * XplatUIOSX.cs: Initial checkin
27444         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
27445
27446 2004-12-03  Ravindra <rkumar@novell.com>
27447
27448         * ListView.cs: Added some keybindings and fixed scrolling.
27449         ScrollBars listen to ValueChanged event instead of Scroll
27450         Event. This would let us take care of all changes being
27451         done in the scrollbars' values programmatically or manually.
27452         * ListView.cs (CanMultiselect): Added a check for shift key.
27453         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
27454         * ListViewItem.cs (Clone): Fixed. We need to make a copy
27455         of ListViewSubItemCollection as well.
27456
27457 2004-12-06  Peter Bartok <pbartok@novell.com>
27458
27459         * Control.cs (Parent): Added check and exception to prevent
27460         circular parenting
27461
27462 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
27463
27464         * ListBox.cs: implemented clipping, selection single and multiple,
27465         bug fixing
27466
27467 2004-12-03  Ravindra <rkumar@novell.com>
27468
27469         * ListView.cs (ListView_KeyDown):
27470         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
27471         when CTRL key is pressed.
27472         * ListViewItem.cs (Selected): Fixed setting the property.
27473
27474 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
27475
27476         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
27477
27478         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
27479         MinimizeBox, ShowInTaskbar, TopMost properties.
27480
27481         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
27482         will be implemented).
27483
27484 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
27485
27486         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
27487
27488         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
27489         tests.
27490         
27491         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
27492         
27493         * TreeView.cs: BackColor is Colors.Window.
27494
27495 2004-12-01  Jackson Harper  <jackson@ximian.com>
27496
27497         * TreeView.cs: When resizing the tree if the user is making it
27498         smaller we don't get expose events, so we need to handle adding
27499         the horizontal scrollbar in the size changed handler as well as
27500         the expose handler.
27501
27502 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
27503
27504         * DrawItemState.cs: fixes wrong enum values
27505
27506 2004-12-01  Jackson Harper  <jackson@ximian.com>
27507
27508         * TreeView.cs: Resize the hbar as well as the vbar on resize.
27509
27510 2004-12-01  Jackson Harper  <jackson@ximian.com>
27511
27512         * NodeLabelEditEventArgs.cs:
27513         * NodeLabelEditEventHandler.cs:
27514         * OpenTreeNodeEnumerator.cs:
27515         * TreeNode.cs:
27516         * TreeNodeCollection.cs:
27517         * TreeView.cs:
27518         * TreeViewAction.cs:
27519         * TreeViewCancelEventArgs.cs:
27520         * TreeViewCancelEventHandler.cs:
27521         * TreeViewEventArgs.cs:
27522         * TreeViewEventHandler.cs: Initial implementation.
27523
27524 2004-12-01  Ravindra <rkumar@novell.com>
27525
27526         * ListView.cs (CalculateListView): Fixed scrolling related
27527         calculations. Also, removed some debug statements from other
27528         places.
27529         * ListViewItem.cs: Changed access to 'selected' instance variable
27530         from private to internal.
27531         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
27532
27533 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
27534
27535         * ThemeWin32Classic.cs: remove cache of brush and pens for
27536         specific controls and use the global system, fixes scrollbutton
27537         bugs (for small sizes, disabled, etc)
27538         
27539         * ScrollBar.cs: does not show the thumb for very small controls
27540         (as MS) and allow smaller buttons that the regular size
27541
27542 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
27543
27544         * UpDownBase.cs: Add abstract methods for the interface.
27545         Add new virtual methods (need to be hooked up to TextEntry when it
27546         exists).
27547         Add override methods for most features.
27548         Computes the size, forces the height of the text entry.
27549
27550         * NumericUpDown.cs: Put here the current testing code.
27551
27552         * Set eol-style property on all files that do not have mixed line
27553         endings, to minimize the future problems.  There are still a few
27554         files with mixed endings, and someone should choose whether they
27555         want to move it or not.
27556
27557 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
27558
27559         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
27560         System.Colors
27561         
27562 2004-11-30  Ravindra <rkumar@novell.com>
27563
27564         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
27565         drawing and replaced use of SystemColors by theme colors.
27566         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
27567         * ListView.cs (ListViewItemCollection.Add): Throw exception when
27568         same ListViewItem is being added more than once.
27569
27570 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
27571
27572         * MonthCalendar.cs:
27573           - ControlStyles love to make the control not flicker
27574           
27575 2004-11-30  Peter Bartok  <pbartok@novell.com>
27576
27577         * CharacterCasing.cs: Added
27578
27579 2004-11-29  Peter Bartok  <pbartok@novell.com>
27580
27581         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
27582           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
27583           I am removing these files as they conflict with already completed
27584           work. While it is fantastic to get contributions to MWF, I
27585           respectfully ask that everyone please coordinate their contributions
27586           through mono-winforms-list or #mono-winforms at this time. We're
27587           explicitly avoiding stubbing and don't want controls that don't have
27588           their basic functionality implemented in svn. Please also see
27589           http://www.mono-project.com/contributing/winforms.html
27590
27591
27592 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
27593
27594         * Application.cs (ModalRun): Don't hang after exit.
27595
27596         * Theme.cs: New TreeViewDefaultSize property.
27597
27598         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
27599         with less hardcoded SystemColors constant.
27600         Implemented TreeViewDefaultSize.
27601
27602         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
27603         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
27604
27605
27606 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
27607
27608         * MonthCalendar.cs:
27609           - Fix NextMonthDate and PrevMonthDate click moving calendar
27610
27611 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
27612
27613         * MonthCalendar.cs:
27614           - Fix usage of ScrollChange Property when scrolling months
27615
27616 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
27617
27618         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
27619          - Fixes menu destroying
27620          - Support adding and removing items on already created menus
27621
27622 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
27623
27624         * MonthCalendar.cs:
27625           - Re-worked all bolded dates handling to match win32
27626         * ThemeWin32Classic.cs:
27627           - Fixed rendering with bolded dates
27628
27629 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
27630
27631         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
27632         - Horizontal scroolbar
27633         - Multicolumn
27634         - Fixes
27635
27636
27637 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
27638
27639         * MonthCalendar.cs:
27640           - Fix Usage of MaxSelectionCount from SelectionRange
27641           - Fixed Shift + Cursor Selection
27642           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
27643           - Fixed normal cursor selection to be compat with win32
27644           - Fixed Shift + Mouse Click selection
27645
27646 2004-11-24  Peter Bartok <pbartok@novell.com>
27647
27648         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
27649         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
27650         * XplatUIX11.cs:
27651           - CreatedKeyBoardMsg now updates keystate with Alt key
27652           - Added workaround for timer crash to CheckTimers, Jackson will
27653             develop a proper fix and check in later
27654           - Implemented DispatchMessage
27655           - Removed calling the native window proc from GetMessage (call
27656             now moved to DispatchMessage)
27657
27658         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
27659           the keydata (Fixes bug #69831)
27660
27661         * XplatUIWin32.cs:
27662           - (DispatchMessage): Switched to return IntPtr
27663           - Added DllImport for SetFocus
27664
27665 2004-11-24  Ravindra <rkumar@novell.com>
27666
27667         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
27668         background drawing.
27669         * ListViewItem.cs: Fixed various properties, calculations
27670         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
27671         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
27672         and some internal properties. Fixed MouseDown handler and Paint
27673         method.
27674
27675 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
27676
27677         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
27678
27679 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
27680
27681         * ContainerControl.cs: correct accidental check in of local changes
27682
27683 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
27684
27685         * ThemeWin32Classic.cs:
27686                 - Fixed Drawing Last month in grid (sometimes not showing)
27687         * MonthCalendar.cs:
27688                 - Fixed title width calculation bug (makeing title small)
27689
27690 2004-11-23  Peter Bartok <pbartok@novell.com>
27691
27692         * XplatUIX11.cs:
27693           - Added generation of WM_MOUSEHOVER event
27694           - Added missing assignment of async_method atom
27695           - Fixed WM_ERASEBKGND; now only redraws the exposed area
27696
27697 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
27698
27699         * ThemeWin32Classic.cs:
27700                 - Fixed Drawing of today circle when showtodaycircle not set
27701                 - fixed drawing of first and last month in the grid (gay dates)
27702         * MonthCalendar.cs:
27703                 - Fixed Drawing of today circle
27704                 - Fixed drawing of grady dates
27705                 - Fixed HitTest for today link when ShowToday set to false
27706                 - Fixed DefaultSize to obey ShowToday
27707
27708 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
27709
27710         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
27711         * System.Windows.Forms/Theme.cs
27712         * MonthCalendar.cs: added for MonthCalendar
27713         * SelectionRange.cs: added for MonthCalendar
27714         * Day.cs: added for MonthCalendar: added for MonthCalendar
27715         * DateRangeEventArgs.cs: added for MonthCalendar
27716         * DateRangeEventHandler.cs: added for MonthCalendar
27717
27718 2004-11-22  Ravindra <rkumar@novell.com>
27719
27720         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
27721         property.
27722
27723 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
27724
27725         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
27726         event handler.
27727         
27728         * NumericUpDown.cs: Added new implementation.
27729         * UpDownBase.cs: Added new implementation.
27730
27731         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
27732         implementations.
27733         
27734         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
27735         implementations.
27736
27737         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
27738         methods.
27739
27740 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
27741
27742         * Timer.cs  (Dispose): Should call the base dispose when
27743         overriding.
27744
27745 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
27746
27747         * ScrollBar.cs: updates thumb position when max, min or increment
27748         is changed
27749
27750 2004-11-21  Ravindra <rkumar@novell.com>
27751
27752         * ListView.cs: Implemented item selection, activation and
27753         column header style. Fixed properties to do a redraw, if
27754         required. Added support for MouseHover, DoubleClick, KeyDown
27755         and KeyUp event handling and some minor fixes.
27756         * ListViewItem.cs: Fixed constructor.
27757         * ThemeWin32Classic.cs: Improved drawing for ListView.
27758
27759 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
27760
27761         * ThemeWin32Classic.cs: initial listbox drawing code
27762         * DrawMode.cs: new enumerator
27763         * ListControl.cs: stubbed class
27764         * ListBox.cs: initial implementation
27765         * Theme.cs: new methods definitions
27766         * SelectionMode.cs: new enumerator
27767
27768 2004-11-17  Peter Bartok  <pbartok@novell.com>
27769
27770         * XplatUIWin32.cs: Added double-click events to the class style
27771         * Control.cs (WndProc):
27772           - Added handling of click-count to MouseDown/ MouseUp events.
27773           - Added handling of middle and right mouse buttons
27774           - Removed old debug code
27775
27776 2004-11-17  Jackson Harper  <jackson@ximian.com>
27777
27778         * XplatUIX11.cs: Use the new Mono.Unix namespace.
27779
27780 2004-11-17  Ravindra <rkumar@novell.com>
27781
27782         * ListView.cs: Added event handling for MouseMove/Up/Down.
27783         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
27784         * ThemeWin32Classic.cs: We need to clear the graphics context and
27785         draw column header in a proper state.
27786
27787
27788 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
27789
27790         *  Menu.cs: fixes signature
27791
27792 2004-11-16  Peter Bartok  <pbartok@novell.com>
27793
27794         * XplatUIX11.cs (GetMessage): Implemented generation of
27795           double click mouse messages
27796
27797 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
27798
27799         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
27800         not by menu
27801
27802 2004-11-11  Peter Bartok  <pbartok@novell.com>
27803
27804         * HandleData.cs: Added Visible property
27805         * XplatUIX11.cs (IsVisible): Now uses Visible property from
27806           HandleData
27807         * XplatUIX11.cs: Removed old debug leftovers
27808         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
27809         * Control.cs (WndProc): Removed old debug leftovers,
27810           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
27811           needed WM_SIZE handling
27812
27813 2004-11-11  Jackson Harper  <jackson@ximian.com>
27814
27815         * OwnerDrawPropertyBag.cs:
27816         * TreeViewImageIndexConverter.cs: Initial implementation
27817
27818 2004-11-10  Jackson Harper  <jackson@ximian.com>
27819
27820         * ThemeWin32Classic.cs:
27821         * TabControl.cs: instead of moving tabs by the slider pos just
27822         start drawing at the tab that is offset by the slider. This way
27823         scrolling always moves by exactly one tab.
27824
27825 2004-11-10  Jackson Harper  <jackson@ximian.com>
27826
27827         * TabControl.cs: You can only scroll left when the slider has
27828         already ben moved right.
27829         
27830 2004-11-10  Jackson Harper  <jackson@ximian.com>
27831
27832         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
27833         the clip area.
27834         
27835 2004-11-10  Jackson Harper  <jackson@ximian.com>
27836
27837         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
27838         clip area.
27839         
27840 2004-11-09  Jackson Harper  <jackson@ximian.com>
27841
27842         * TabControl.cs (CalcXPos): New helper method so we can determine
27843         the proper place to start drawing vertical tabs.
27844         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
27845         
27846 2004-11-09  Jackson Harper  <jackson@ximian.com>
27847
27848         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
27849         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
27850         and Bottom, left and right are illegal values for this and
27851         multiline is enabled when the alignment is set to left or right.
27852         (DrawTab): Each alignment block should draw the text itself now
27853         because Left requires special love. Also add rendering for Left
27854         aligned tabs.
27855         
27856 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
27857
27858         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
27859         does not destroy the windows, removes debugging messages
27860
27861 2004-11-09  jba  <jba-mono@optusnet.com.au>
27862
27863         * ThemeWin32Classic.cs
27864         (DrawButtonBase): Fix verticle text rect clipping in windows
27865         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
27866         rendering and incorrect text rect clipping
27867         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
27868         rendering and incorrect text rect clipping
27869         
27870 2004-11-08  Jackson Harper  <jackson@ximian.com>
27871
27872         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
27873         bottom when they are bottom aligned so the bottoms of the tabs get
27874         displayed.
27875         * TabControl.cs (DropRow): Move rows up instead of down when the
27876         tab control is bottom aligned.
27877
27878 2004-11-08 13:59  pbartok
27879
27880         * XplatUIX11.cs:
27881           - Added handling for various window styles
27882           - Added handling for popup windows
27883           - Added SetTopmost handling
27884
27885 2004-11-08 13:55  pbartok
27886
27887         * XplatUIWin32.cs:
27888           - Added argument to SetTopmost method
27889           - Fixed broken ClientToScreen function
27890
27891 2004-11-08 13:53  pbartok
27892
27893         * XplatUIStructs.cs:
27894           - Added missing WS_EX styles
27895
27896 2004-11-08 13:53  pbartok
27897
27898         * XplatUI.cs, XplatUIDriver.cs:
27899           - Added argument to SetTopmost
27900
27901 2004-11-08 13:52  pbartok
27902
27903         * X11Structs.cs:
27904           - Added XSetWindowAttributes structure
27905           - Improved XWindowAttributes structure
27906           - Added SetWindowValuemask enum
27907           - Added window creation arguments enum
27908           - Added gravity enum
27909           - Added Motif hints structure
27910           - Added various Motif flags and enums
27911           - Added PropertyMode enum for property functions
27912
27913 2004-11-08 13:50  pbartok
27914
27915         * Form.cs:
27916           - Fixed arguments for updated SetTopmost method
27917
27918 2004-11-08 13:49  pbartok
27919
27920         * ToolTip.cs:
27921           - Fixed arguments for updated SetTopmost function
27922           - Fixed usage of PointToClient
27923
27924 2004-11-08 13:44  pbartok
27925
27926         * MenuAPI.cs:
27927           - Added Clipping of children and siblings
27928
27929 2004-11-08 13:41  pbartok
27930
27931         * MainMenu.cs:
27932           - Removed SetMenuBarWindow call. We do this in Form.cs
27933
27934 2004-11-08 13:40  jackson
27935
27936         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
27937           scrolling jimmi in the correct location with bottom aligned tabs
27938
27939 2004-11-08 13:36  pbartok
27940
27941         * ContainerControl.cs:
27942           - Implemented BindingContext
27943           - Implemented ParentForm
27944
27945 2004-11-08 12:46  jackson
27946
27947         * TabControl.cs: Put bottom rendered tabs in the right location
27948
27949 2004-11-08 07:15  jordi
27950
27951         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
27952           removes dead code
27953
27954 2004-11-05 17:30  jackson
27955
27956         * TabControl.cs: When selected tabs are expanded make sure they
27957           don't go beyond the edges of the tab control
27958
27959 2004-11-05 14:57  jackson
27960
27961         * TabControl.cs: Reset show_slider so if the control is resized to
27962           a size where it is no longer needed it's not displayed anymore
27963
27964 2004-11-05 13:16  jackson
27965
27966         * TabControl.cs: Make tab pages non visible when added to the
27967           control
27968
27969 2004-11-05 12:42  jackson
27970
27971         * TabControl.cs: Implement SizeMode.FillToRight
27972
27973 2004-11-05 12:16  jackson
27974
27975         * Control.cs: Do not call CreateHandle if the handle is already
27976           created
27977
27978 2004-11-05 11:46  jackson
27979
27980         * TabControl.cs: Remove superflous call to CalcTabRows
27981
27982 2004-11-05 09:07  jackson
27983
27984         * XplatUIX11.cs: Update for Mono.Posix changes
27985
27986 2004-11-05 07:00  ravindra
27987
27988         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
27989           scrolling.
27990
27991 2004-11-04 22:47  jba
27992
27993         * ThemeWin32Classic.cs:
27994           - Fix Button rendering for FlatStyle = Flat or Popup
27995           - Fix RadioButton and CheckBox rendering when Appearance = Button
27996             (normal and flatstyle).
27997           - Correct outer rectangle color when drawing focus rectangle
27998           - Adjust button bounds to be 1 px smaller when focused
27999           - Make button not draw sunken 3d border when pushed (windows compat)
28000           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
28001           - Offset the text in RadioButton and Checkbox when being rendered as
28002           a button.
28003           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
28004           radiobuttons
28005           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
28006           - Fixed disabled text rendering for normally rendered radiobuttons
28007
28008 2004-11-04 10:26  jackson
28009
28010         * TabControl.cs: Recalculate tab rows when resizing
28011
28012 2004-11-04 07:47  jordi
28013
28014         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
28015           collection completion, drawing issues, missing features
28016
28017 2004-11-04 05:03  ravindra
28018
28019         * ScrollBar.cs:
28020                 - We need to recalculate the Thumb area when
28021                 LargeChange/maximum/minimum values are changed.
28022           - We set the 'pos' in UpdatePos() method to minimum, if it's less
28023                 than minimum. This is required to handle the case if large_change is
28024                 more than max, and use LargeChange property instead of large_change
28025                 variable.
28026           - We return max+1 when large_change is more than max, like MS does.
28027
28028 2004-11-04 04:29  ravindra
28029
28030         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
28031                 - Changed default value signatures (prefixed all with ListView).
28032                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
28033                 ListView.
28034           - Fixed calculations for ListViewItem and implemented Clone()
28035           method.
28036
28037 2004-11-04 04:26  ravindra
28038
28039         * Theme.cs, ThemeWin32Classic.cs:
28040                 - Changed default ListView values signatures (prefixed all with
28041                 ListView).
28042           - Fixed default size values for VScrollBar and HScrollBar.
28043                 - Fixed DrawListViewItem method.
28044
28045 2004-11-04 04:05  ravindra
28046
28047         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
28048
28049 2004-11-04 04:04  ravindra
28050
28051         * ImageList.cs: Implemented the missing overload for Draw method.
28052
28053 2004-11-03 19:29  jackson
28054
28055         * TabControl.cs: Handle dropping rows on selection properly
28056
28057 2004-11-03 11:59  jackson
28058
28059         * TabControl.cs: remove debug code
28060
28061 2004-11-03 11:52  jackson
28062
28063         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
28064           the scrolly widgerywoo
28065
28066 2004-11-02 13:52  jackson
28067
28068         * TabControl.cs: Resize the tab pages and tabs when the tab control
28069           is resized
28070
28071 2004-11-02 13:40  jackson
28072
28073         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
28074           selected tab to the bottom
28075
28076 2004-11-02 13:39  jackson
28077
28078         * TabPage.cs: Store the tab pages row
28079
28080 2004-11-02 12:33  jordi
28081
28082         * MenuItem.cs: fixes handle creation
28083
28084 2004-11-02 11:42  jackson
28085
28086         * TabControl.cs: signature fix
28087
28088 2004-11-02 08:56  jackson
28089
28090         * TabControl.cs: Calculate whether the tab is on an edge properly.
28091           Remove top secret debugging code
28092
28093 2004-11-01 19:57  jackson
28094
28095         * TabControl.cs: Add click handling, and proper sizing
28096
28097 2004-11-01 19:47  jackson
28098
28099         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
28100           tab controls
28101
28102 2004-11-01 19:39  jackson
28103
28104         * TabPage.cs: add internal property to store the bounds of a tab
28105           page
28106
28107 2004-10-30 04:23  ravindra
28108
28109         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
28110           values.
28111
28112 2004-10-30 04:21  ravindra
28113
28114         * ListView.cs, ListViewItem.cs: Added support for scrolling and
28115           fixed calculations.
28116
28117 2004-10-30 03:06  pbartok
28118
28119         * XplatUIX11.cs:
28120           - Removed extension of DllImported libs
28121
28122 2004-10-29 09:55  jordi
28123
28124         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
28125           navigation, itemcollection completion, menu fixes
28126
28127 2004-10-27 22:58  pbartok
28128
28129         * XplatUIX11.cs:
28130           - Now throws a nice error message when no X display could be opened
28131
28132 2004-10-26 13:51  jordi
28133
28134         * ListView.cs: removes warning
28135
28136 2004-10-26 03:55  ravindra
28137
28138         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
28139           ThemeWin32Classic.cs: Some formatting for my last checkins.
28140
28141 2004-10-26 03:36  ravindra
28142
28143         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
28144           control and default values.
28145
28146 2004-10-26 03:35  ravindra
28147
28148         * Theme.cs: Added some default values for ListView control.
28149
28150 2004-10-26 03:33  ravindra
28151
28152         * ToolBar.cs: ToolBar should use the user specified button size, if
28153           there is any. Added a size_specified flag for the same.
28154
28155 2004-10-26 03:33  ravindra
28156
28157         * ColumnHeader.cs: Added some internal members and calculations for
28158           ColumnHeader.
28159
28160 2004-10-26 03:32  ravindra
28161
28162         * ListViewItem.cs: Calculations for ListViewItem.
28163
28164 2004-10-26 03:31  ravindra
28165
28166         * ListView.cs: Added some internal members and calculations for
28167           ListView.
28168
28169 2004-10-22 13:31  jordi
28170
28171         * MenuAPI.cs: speedup menus drawing
28172
28173 2004-10-22 13:16  jackson
28174
28175         * XplatUIX11.cs: Make sure to update exposed regions when adding an
28176           expose event
28177
28178 2004-10-22 11:49  jackson
28179
28180         * Control.cs: oops
28181
28182 2004-10-22 11:41  jackson
28183
28184         * Control.cs: Check to see if the window should have its background
28185           repainted by X when drawing.
28186
28187 2004-10-22 11:31  jackson
28188
28189         * XplatUIX11.cs: When invalidating areas only use XClearArea if
28190           clear is true, this way we do not get flicker from X repainting the
28191           background
28192
28193 2004-10-22 11:28  jackson
28194
28195         * XEventQueue.cs: Queue properly
28196
28197 2004-10-21 09:38  jackson
28198
28199         * XEventQueue.cs: Fix access modifier
28200
28201 2004-10-21 09:36  jackson
28202
28203         * XEventQueue.cs: Don't loose messages
28204
28205 2004-10-21 09:22  jackson
28206
28207         * XEventQueue.cs: Don't loose messages
28208
28209 2004-10-20 04:15  jordi
28210
28211         * BootMode.cs: enum need it by SystemInfo
28212
28213 2004-10-19 21:58  pbartok
28214
28215         * XplatUIWin32.cs:
28216           - Small sanity check
28217
28218 2004-10-19 21:56  pbartok
28219
28220         * Form.cs:
28221           - Added private FormParentWindow class which acts as the container
28222             for our form and as the non-client area where menus are drawn
28223           - Added/Moved required tie-ins to Jordi's menus
28224           - Fixed/Implemented the FormStartPosition functionality
28225
28226 2004-10-19 21:52  pbartok
28227
28228         * Control.cs:
28229           - Removed unneeded locals
28230           - Added code to all size and location properties to understand and
28231             deal with the parent container of Form
28232
28233 2004-10-19 21:33  pbartok
28234
28235         * Application.cs:
28236           - Fixed to deal with new Form subclasses for menus
28237
28238 2004-10-19 17:48  jackson
28239
28240         * XEventQueue.cs: commit correct version of file
28241
28242 2004-10-19 16:50  jackson
28243
28244         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
28245
28246 2004-10-19 16:15  jordi
28247
28248         * MenuAPI.cs: MenuBarCalcSize returns the height
28249
28250 2004-10-19 08:31  pbartok
28251
28252         * Control.cs:
28253           - Added missing call to PreProcessMessage before calling OnXXXKey
28254           methods
28255
28256 2004-10-19 00:04  ravindra
28257
28258         * ToolTip.cs: Fixed constructor.
28259
28260 2004-10-18 09:31  jordi
28261
28262         * MenuAPI.cs: menuitems in menubars do not have shortcuts
28263
28264 2004-10-18 09:26  jordi
28265
28266         * MenuItem.cs: fixes MenuItem class signature
28267
28268 2004-10-18 08:56  jordi
28269
28270         * MenuAPI.cs: prevents windows from showing in the taskbar
28271
28272 2004-10-18 00:28  ravindra
28273
28274         * ToolTip.cs: Suppressed a warning message.
28275
28276 2004-10-18 00:27  ravindra
28277
28278         * Control.cs: Default value of visible property must be true.
28279
28280 2004-10-17 23:19  pbartok
28281
28282         * ToolTip.cs:
28283           - Complete implementation
28284
28285 2004-10-17 23:19  pbartok
28286
28287         * XplatUIX11.cs:
28288           - Added EnableWindow method
28289           - Added SetModal stub
28290           - Added generation of WM_ACTIVATE message (still needs testing)
28291           - Added SetTopMost stub
28292           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
28293
28294 2004-10-17 23:17  pbartok
28295
28296         * XplatUIWin32.cs:
28297           - Removed VirtualKeys to XplatUIStructs
28298           - Implemented SetTopMost method
28299           - Implemented EnableWindow method
28300           - Bugfix in ScreenToClient()
28301           - Bugfixes in ClientToScreen()
28302
28303 2004-10-17 22:51  pbartok
28304
28305         * XplatUIStructs.cs:
28306           - Added WS_EX styles to WindowStyles enumeration
28307
28308 2004-10-17 22:50  pbartok
28309
28310         * XplatUI.cs, XplatUIDriver.cs:
28311           - Added method for enabling/disabling windows
28312           - Added method for setting window modality
28313           - Added method for setting topmost window
28314
28315 2004-10-17 22:49  pbartok
28316
28317         * ThemeWin32Classic.cs:
28318           - Added ToolTip drawing code
28319
28320 2004-10-17 22:49  pbartok
28321
28322         * Theme.cs:
28323           - Added ToolTip abstracts
28324
28325 2004-10-17 22:47  pbartok
28326
28327         * Form.cs:
28328           - Fixed Form.ControlCollection to handle owner relations
28329           - Added Owner/OwnedForms handling
28330           - Implemented Z-Ordering for owned forms
28331           - Removed unneeded private overload of ShowDialog
28332           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
28333             so I hope)
28334           - Fixed Close(), had wrong default
28335           - Added firing of OnLoad event
28336           - Added some commented out debug code for Ownership handling
28337
28338 2004-10-17 22:16  pbartok
28339
28340         * Control.cs:
28341           - Fixed/implemented flat list of controls
28342
28343 2004-10-17 22:14  pbartok
28344
28345         * Application.cs:
28346           - Added code to simulate modal dialogs on Win32
28347
28348 2004-10-17 16:11  jordi
28349
28350         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
28351           mouse event
28352
28353 2004-10-17 13:39  jordi
28354
28355         * MenuAPI.cs: menu drawing fixes
28356
28357 2004-10-15 09:10  ravindra
28358
28359         * StructFormat.cs: General Enum.
28360
28361 2004-10-15 09:09  ravindra
28362
28363         * SizeGripStyle.cs: Enum for Form.
28364
28365 2004-10-15 09:08  ravindra
28366
28367         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
28368           in Theme for ListView.
28369
28370 2004-10-15 09:06  ravindra
28371
28372         * ColumnHeader.cs: Flushing some formatting changes.
28373
28374 2004-10-15 09:05  ravindra
28375
28376         * ListViewItem.cs: Implemented GetBounds method and fixed coding
28377           style.
28378
28379 2004-10-15 09:03  ravindra
28380
28381         * ListView.cs: Implemented Paint method and fixed coding style.
28382
28383 2004-10-15 07:34  jordi
28384
28385         * MenuAPI.cs: fix for X11
28386
28387 2004-10-15 07:32  ravindra
28388
28389         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
28390                 - Renamed Paint() method to Draw() for clarity. Also, moved
28391                 DrawImage() to OnPaint().
28392
28393 2004-10-15 07:25  ravindra
28394
28395         * CheckBox.cs, RadioButton.cs:
28396                 - Removed Redraw (), we get it from ButtonBase.
28397                 - Implemented Paint (), to do class specific painting.
28398
28399 2004-10-15 07:16  ravindra
28400
28401         * ButtonBase.cs:
28402                 - Redraw () is not virtual now.
28403                 - Added an internal virtual method Paint (), so that
28404                 derived classes can do their painting on their own.
28405                 - Modified OnPaint () to call Paint ().
28406
28407 2004-10-15 06:43  jordi
28408
28409         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
28410           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
28411
28412 2004-10-15 00:30  ravindra
28413
28414         * MessageBox.cs:
28415                 - MessageBox on windows does not have min/max buttons.
28416                 This change in CreateParams fixes this on Windows. We
28417                 still need to implement this windowstyle behavior in
28418                 our X11 driver.
28419
28420 2004-10-14 05:14  ravindra
28421
28422         * ToolBar.cs:
28423                 - Changed Redraw () to do a Refresh () always.
28424                 - Fixed the MouseMove event handling when mouse is pressed,
28425                 ie drag event handling.
28426                 - Replaced the usage of ToolBarButton.Pressed property to
28427                 ToolBarButton.pressed internal variable.
28428
28429 2004-10-14 05:10  ravindra
28430
28431         * ToolBarButton.cs:
28432                 - Added an internal member 'inside' to handle mouse move
28433                 with mouse pressed ie mouse drag event.
28434                 - Changed 'Pressed' property to return true only when
28435                 'inside' and 'pressed' are both true.
28436                 - Some coding style love.
28437
28438 2004-10-14 00:17  ravindra
28439
28440         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
28441           public method.
28442
28443 2004-10-14 00:15  ravindra
28444
28445         * ButtonBase.cs: Redraw () related improvements.
28446
28447 2004-10-14 00:14  ravindra
28448
28449         * MessageBox.cs: Moved InitFormSize () out of Paint method and
28450           removed unnecessary calls to Button.Show () method.
28451
28452 2004-10-13 17:50  pbartok
28453
28454         * XplatUIX11.cs:
28455           - Formatting fix
28456           - Removed destroying of window until we solve the problem of X
28457             destroying the window before us on shutdown
28458
28459 2004-10-13 16:32  pbartok
28460
28461         * ButtonBase.cs:
28462           - Now Redraws on MouseUp for FlatStyle Flat and Popup
28463
28464 2004-10-13 14:18  pbartok
28465
28466         * XplatUIX11.cs:
28467           - Added code to destroy the X window
28468
28469 2004-10-13 14:18  pbartok
28470
28471         * XplatUIWin32.cs:
28472           - Added code to destroy a window
28473
28474 2004-10-13 14:12  pbartok
28475
28476         * ButtonBase.cs:
28477           - Added the Redraw on Resize that got dropped in the last rev
28478
28479 2004-10-13 09:06  pbartok
28480
28481         * ThemeWin32Classic.cs:
28482           - Path from John BouAntoun:
28483             * Fix check rendering (centre correctly for normal style, offset
28484               correctly for FlatStyle).
28485             * Fix border color usage (use backcolor) for FlatStyle.Popup
28486             * Use checkbox.Capture instead of checkbox.is_pressed when
28487               rendering flatstyle states.
28488
28489 2004-10-12 21:48  pbartok
28490
28491         * ThemeWin32Classic.cs:
28492           - Removed all occurences of SystemColors and replaced them with the
28493             matching theme color
28494
28495 2004-10-12 21:41  pbartok
28496
28497         * ThemeWin32Classic.cs:
28498           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
28499             him using the function for flatstyle drawing
28500           - Changed functions to use the new version of CPDrawBorder3D
28501
28502 2004-10-12 21:15  pbartok
28503
28504         * ControlPaint.cs:
28505           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
28506             match MS documentation. They need to return defined colors if the
28507             passed color matches the configured control color. Thanks to John
28508             BouAntoun for pointing this out.
28509
28510 2004-10-12 20:57  pbartok
28511
28512         * Control.cs:
28513           - Fix from John BouAntoun: Raise ForeColorChanged event when text
28514             color is changed
28515
28516 2004-10-12 20:46  pbartok
28517
28518         * CheckBox.cs:
28519           - Fix from John BouAntoun: Now properly sets the Appearance property
28520
28521 2004-10-12 20:45  pbartok
28522
28523         * ThemeWin32Classic.cs:
28524           - Fixes from John BouAntoun: now handles forecolors and backcolors
28525             for flatstyle rendered controls much better; It also fixes normal
28526             checkbox rendering when pushed or disabled.
28527
28528 2004-10-08 02:50  jordi
28529
28530         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
28531           work
28532
28533 2004-10-07 08:56  jordi
28534
28535         * ThemeWin32Classic.cs: Removes deletion of cached brushes
28536
28537 2004-10-06 03:59  jordi
28538
28539         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
28540           XplatUIWin32.cs: removes warnings from compilation
28541
28542 2004-10-05 12:23  jackson
28543
28544         * RadioButton.cs: Fix ctor
28545
28546 2004-10-05 11:10  pbartok
28547
28548         * MessageBox.cs:
28549           - Partial implementation by Benjamin Dasnois
28550
28551 2004-10-05 10:15  jackson
28552
28553         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
28554           by John BouAntoun
28555
28556 2004-10-05 03:07  ravindra
28557
28558         * ToolBar.cs:
28559                 - Removed a private method, Draw ().
28560                 - Fixed the ButtonDropDown event handling.
28561                 - Fixed MouseMove event handling.
28562
28563 2004-10-05 03:04  ravindra
28564
28565         * ThemeWin32Classic.cs:
28566                 - Added DrawListView method and ListViewDefaultSize property.
28567                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
28568                 - Changed DOS style CRLF to Unix format (dos2unix).
28569
28570 2004-10-05 03:03  ravindra
28571
28572         * Theme.cs:
28573                 - Added DrawListView method and ListViewDefaultSize property.
28574
28575 2004-10-05 02:42  ravindra
28576
28577         * ToolBarButton.cs: Added an internal member dd_pressed to handle
28578           clicks on DropDown arrow.
28579
28580 2004-10-04 22:56  jackson
28581
28582         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
28583           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
28584           Control handle the buffers, derived classes should not have to
28585           CreateBuffers themselves.
28586
28587 2004-10-04 21:20  jackson
28588
28589         * StatusBar.cs: The control handles resizing the buffers now.
28590
28591 2004-10-04 21:18  jackson
28592
28593         * Control.cs: When resizing the buffers should be invalidated. This
28594           should be handled in Control not in derived classes.
28595
28596 2004-10-04 14:45  jackson
28597
28598         * TabPage.cs: oops
28599
28600 2004-10-04 02:14  pbartok
28601
28602         * LeftRightAlignment.cs:
28603           - Initial check-in
28604
28605 2004-10-04 01:09  jordi
28606
28607         * ThemeWin32Classic.cs: fixes right button position causing right
28608           button not showing on horizontal scrollbars
28609
28610 2004-10-02 13:12  pbartok
28611
28612         * XplatUIX11.cs:
28613           - Simplified the Invalidate method by using an X call instead of
28614             generating the expose ourselves
28615           - Added an expose when the window background is changed
28616           - Implemented ClientToScreen method
28617
28618 2004-10-02 13:08  pbartok
28619
28620         * XplatUIWin32.cs:
28621           - Added Win32EnableWindow method (test for implementing modal
28622           dialogs)
28623           - Added ClientToScreen method and imports
28624
28625 2004-10-02 13:07  pbartok
28626
28627         * XplatUI.cs, XplatUIDriver.cs:
28628           - Added ClientToScreen coordinate translation method
28629
28630 2004-10-02 13:06  pbartok
28631
28632         * KeyPressEventArgs.cs:
28633           - Fixed access level for constructor
28634
28635 2004-10-02 13:06  pbartok
28636
28637         * NativeWindow.cs:
28638           - Changed access level for the window_collection hash table
28639
28640 2004-10-02 13:05  pbartok
28641
28642         * Form.cs:
28643           - Added KeyPreview property
28644           - Added Menu property (still incomplete, pending Jordi's menu work)
28645           - Implemented ProcessCmdKey
28646           - Implemented ProcessDialogKey
28647           - Implemented ProcessKeyPreview
28648
28649 2004-10-02 13:02  pbartok
28650
28651         * Control.cs:
28652           - Added private method to get the Control object from the window
28653           handle
28654           - Implemented ContextMenu property
28655           - Implemented PointToScreen
28656           - Implemented PreProcessMessage
28657           - Implemented IsInputChar
28658           - Implemented IsInputKey
28659           - Implemented ProcessCmdKey
28660           - Completed ProcessKeyEventArgs
28661           - Fixed message loop to call the proper chain of functions on key
28662           events
28663           - Implemented ProcessDialogChar
28664           - Implemented ProcessDialogKey
28665           - Implemented ProcessKeyMessage
28666           - Implemented ProcessKeyPreview
28667           - Added RaiseDragEvent stub (MS internal method)
28668           - Added RaiseKeyEvent stub (MS internal method)
28669           - Added RaiseMouseEvent stub (MS Internal method)
28670           - Added RaisePaintEvent stub (MS Internal method)
28671           - Added ResetMouseEventArgs stub (MS Internal method)
28672           - Implemented RtlTranslateAlignment
28673           - Implemented RtlTranslateContent
28674           - Implemented RtlTranslateHorizontal
28675           - Implemented RtlTranslateLeftRight
28676           - Added generation of KeyPress event
28677
28678 2004-10-02 05:57  ravindra
28679
28680         * ListViewItem.cs: Added attributes.
28681
28682 2004-10-02 05:32  ravindra
28683
28684         * ListView.cs: Added attributes.
28685
28686 2004-10-01 11:53  jackson
28687
28688         * Form.cs: Implement the Close method so work on MessageBox can
28689           continue.
28690
28691 2004-09-30 14:06  pbartok
28692
28693         * XplatUIX11.cs:
28694           - Bug fixes
28695
28696 2004-09-30 11:34  jackson
28697
28698         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
28699
28700 2004-09-30 07:26  ravindra
28701
28702         * ListViewItemConverter.cs: Converter for ListViewItem.
28703
28704 2004-09-30 07:26  ravindra
28705
28706         * SortOrder.cs: Enum for ListView control.
28707
28708 2004-09-30 07:25  ravindra
28709
28710         * ColumnHeader.cs: Supporting class for ListView control.
28711
28712 2004-09-30 07:24  ravindra
28713
28714         * ListView.cs, ListViewItem.cs: Initial implementation.
28715
28716 2004-09-30 07:20  ravindra
28717
28718         * ItemActivation.cs: Enum for ListView Control.
28719
28720 2004-09-29 20:29  pbartok
28721
28722         * XplatUIX11.cs:
28723           - Added lookup of pixel value for background color; tries to get a
28724             color 'close' to the requested color, it avoids having to create a
28725             colormap.  Depending on the display this could mean the used color
28726             is slightly off the desired color. Might have to change it to a more
28727             resource intensive colormap approach, but it will work as a
28728           workaround to avoid red screens.
28729
28730 2004-09-29 14:27  jackson
28731
28732         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
28733
28734 2004-09-28 12:44  pbartok
28735
28736         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
28737           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
28738           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
28739           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
28740           TrackBar.cs, VScrollBar.cs:
28741           - Streamlined Theme interfaces:
28742             * Each DrawXXX method for a control now is passed the object for
28743               the control to be drawn in order to allow accessing any state the
28744               theme might require
28745
28746             * ControlPaint methods for the theme now have a CP prefix to avoid
28747               name clashes with the Draw methods for controls
28748
28749             * Every control now retrieves it's DefaultSize from the current
28750             theme
28751
28752 2004-09-28 12:17  jackson
28753
28754         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
28755           drawing
28756
28757 2004-09-24 14:57  jackson
28758
28759         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
28760           Gives us a nice little performance boost.
28761
28762 2004-09-24 12:02  jackson
28763
28764         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
28765           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
28766           Control and supporting classes. Initial checkin
28767
28768 2004-09-23 13:08  jackson
28769
28770         * Form.cs: Temp build fixage
28771
28772 2004-09-23 01:39  ravindra
28773
28774         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
28775           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
28776           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
28777           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
28778           EventHandlers needed by ListView Control.
28779
28780 2004-09-22 14:12  pbartok
28781
28782         * ScrollableControl.cs:
28783           - Implemented DockPadding property
28784           - Implemented AutoScroll property
28785           - Implemented AutoScrollMargin property
28786           - Implemented AutoScrollMinSize property
28787           - Implemented AutoScrollPosition property
28788           - Implemented DisplayRectangle property (still incomplete)
28789           - Implemented CreateParams property
28790           - Implemented HScroll property
28791           - Implemented VScroll property
28792           - Implemented OnVisibleChanged property
28793
28794 2004-09-22 14:09  pbartok
28795
28796         * Form.cs:
28797           - Added Form.ControllCollection class
28798           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
28799             RemoveOwnedForm (still incomplete, missing on-top and common
28800             minimize/maximize behaviour)
28801           - Added StartPosition property (still incomplete, does not use when
28802             creating the form)
28803           - Added ShowDialog() methods (still incomplete, missing forcing the
28804             dialog modal)
28805
28806 2004-09-22 14:05  pbartok
28807
28808         * Application.cs:
28809           - Added message loop for modal dialogs
28810
28811 2004-09-22 14:02  pbartok
28812
28813         * GroupBox.cs:
28814           - Fixed wrong types for events
28815
28816 2004-09-22 14:00  pbartok
28817
28818         * Shortcut.cs, FormWindowState.cs:
28819           - Fixed wrong values
28820
28821 2004-09-22 12:01  jackson
28822
28823         * Control.cs: Text is never null
28824
28825 2004-09-20 22:14  pbartok
28826
28827         * XplatUIWin32.cs:
28828           - Fixed accessibility level for Idle handler
28829
28830 2004-09-20 18:54  jackson
28831
28832         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28833           XplatUIX11.cs: New message loop that uses poll so we don't get a
28834           busy loop
28835
28836 2004-09-17 10:43  pbartok
28837
28838         * ScrollBar.cs:
28839           - Fixed behaviour of arrow buttons. Now properly behaves like
28840             Buttons (and like Microsoft's scrollbar arrow buttons)
28841
28842 2004-09-17 10:14  pbartok
28843
28844         * ScrollBar.cs:
28845           - Added missing release of keyboard/mouse capture
28846
28847 2004-09-17 06:18  jordi
28848
28849         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
28850           Theme.cs: Very early menu support
28851
28852 2004-09-16 17:45  pbartok
28853
28854         * XplatUIWin32.cs:
28855           - Fixed sending a window to the front
28856           - Added overload for SetWindowPos to avoid casting
28857
28858 2004-09-16 17:44  pbartok
28859
28860         * Control.cs:
28861           - Added SendToBack and BringToFront methods
28862
28863 2004-09-16 07:00  ravindra
28864
28865         * Copyright: Added Novell URL.
28866
28867 2004-09-16 07:00  ravindra
28868
28869         * ToolBar.cs: Invalidate should be done before redrawing.
28870
28871 2004-09-15 21:19  ravindra
28872
28873         * ColumnHeaderStyle.cs: Enum for ListView Control.
28874
28875 2004-09-15 21:18  ravindra
28876
28877         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
28878           ListView Control.
28879
28880 2004-09-13 18:26  jackson
28881
28882         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
28883           properly
28884
28885 2004-09-13 18:13  jackson
28886
28887         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
28888           a second thread and post messages into the main threads message
28889           queue. This makes timing much more consistent. Both win2K and XP
28890           have a minimum timer value of 15 milliseconds, so we now do this
28891           too.
28892
28893 2004-09-13 15:18  pbartok
28894
28895         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28896           XplatUIX11.cs:
28897           - Added Z-Ordering methods
28898
28899 2004-09-13 10:56  pbartok
28900
28901         * Form.cs:
28902           - Fixed #region names
28903           - Moved properties and methods into their proper #regions
28904
28905 2004-09-13 10:51  pbartok
28906
28907         * Form.cs:
28908           - Added Accept and CancelButton properties
28909           - Added ProcessDialogKey() method
28910
28911 2004-09-13 08:18  pbartok
28912
28913         * IWindowTarget.cs:
28914           - Initial check-in
28915
28916 2004-09-10 21:50  pbartok
28917
28918         * Control.cs:
28919           - Added DoDragDrop() [incomplete]
28920           - Properly implemented 'Visible' handling
28921           - Added SetVisibleCore()
28922           - Implemented FindChildAtPoint()
28923           - Implemented GetContainerControl()
28924           - Implemented Hide()
28925
28926 2004-09-10 19:28  pbartok
28927
28928         * Control.cs:
28929           - Moved methods into their appropriate #regions
28930           - Reordered methods within regions alphabetically
28931
28932 2004-09-10 18:57  pbartok
28933
28934         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
28935           - Added method to retrieve text from window
28936
28937 2004-09-10 18:56  pbartok
28938
28939         * Control.cs:
28940           - Moved some internal functions into the internal region
28941           - Implemented FontHeight
28942           - Implemented RenderRightToLeft
28943           - Implemented ResizeRedraw
28944           - Implemented ShowFocusCues
28945           - Implemented ShowKeyboardCues
28946           - Implemented FromChildHandle
28947           - Implemented FromHandle
28948           - Implemented IsMnemonic
28949           - Implemented ReflectMessage
28950           - All public and protected Static Methods are now complete
28951
28952 2004-09-10 16:54  pbartok
28953
28954         * Control.cs:
28955           - Implemented remaining missing public instance properties
28956           - Alphabetized some out of order properties
28957
28958 2004-09-10 05:51  ravindra
28959
28960         * PictureBox.cs: Added a check for null image.
28961
28962 2004-09-10 00:59  jordi
28963
28964         * GroupBox.cs: remove cvs tag
28965
28966 2004-09-09 05:25  ravindra
28967
28968         * ToolBar.cs: Make redraw accessible from ToolBarButton.
28969
28970 2004-09-09 05:23  ravindra
28971
28972         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
28973           parent redraw.
28974
28975 2004-09-09 02:28  pbartok
28976
28977         * ThemeWin32Classic.cs:
28978           - Improve disabled string look
28979
28980 2004-09-09 01:15  jordi
28981
28982         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
28983           args and handler
28984
28985 2004-09-08 23:56  ravindra
28986
28987         * ItemBoundsPortion.cs: It's enum, not a class!
28988
28989 2004-09-08 23:47  ravindra
28990
28991         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
28992           Enums for Form.
28993
28994 2004-09-08 21:13  ravindra
28995
28996         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
28997           ListView control.
28998
28999 2004-09-08 21:03  ravindra
29000
29001         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
29002           avoid crash.
29003
29004 2004-09-08 21:01  ravindra
29005
29006         * ScrollableControl.cs: Removed unreachable code.
29007
29008 2004-09-08 06:45  jordi
29009
29010         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
29011
29012 2004-09-08 01:00  jackson
29013
29014         * XplatUIX11.cs: Only run the timers when updating the message
29015           queue. This effectively gives X messages a higher priority then
29016           timer messages. Timers still need love though
29017
29018 2004-09-07 14:01  jackson
29019
29020         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
29021           this for us and the handle is no longer valid.
29022
29023 2004-09-07 13:59  jackson
29024
29025         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
29026           loop that manages to not crash. TODO: Add poll and cleanup timers
29027
29028 2004-09-07 11:12  jordi
29029
29030         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
29031
29032 2004-09-07 03:40  jordi
29033
29034         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
29035           fixes, methods, multiple links
29036
29037 2004-09-06 06:55  jordi
29038
29039         * Control.cs: Caches ClientRectangle rectangle value
29040
29041 2004-09-05 02:03  jordi
29042
29043         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
29044           certain situations
29045
29046 2004-09-04 11:10  jordi
29047
29048         * Label.cs: Refresh when font changed
29049
29050 2004-09-02 16:24  pbartok
29051
29052         * Control.cs:
29053           - Added sanity check to creation of double buffer bitmap
29054
29055 2004-09-02 16:24  pbartok
29056
29057         * ButtonBase.cs:
29058           - Fixed selection of text color
29059           - Fixed handling of resize event; now properly recreates double
29060             buffering bitmap
29061           - Added missing assignment of TextAlignment
29062           - Added proper default for TextAlignment
29063
29064 2004-09-02 14:26  pbartok
29065
29066         * RadioButton.cs:
29067           - Added missing RadioButton.RadioButtonAccessibleObject class
29068
29069 2004-09-02 14:26  pbartok
29070
29071         * Control.cs:
29072           - Added missing Control.ControlAccessibleObject class
29073           - Started to implement Select()ion mechanisms, still very incomplete
29074
29075 2004-09-02 14:25  pbartok
29076
29077         * AccessibleObject.cs:
29078           - Added missing methods
29079
29080 2004-09-02 14:23  pbartok
29081
29082         * AccessibleNavigation.cs, AccessibleSelection.cs:
29083           - Initial check-in
29084
29085 2004-09-02 10:32  jordi
29086
29087         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
29088           pool for pens, brushes, and hatchbruses
29089
29090 2004-09-01 15:30  jackson
29091
29092         * StatusBar.cs: Fix typo
29093
29094 2004-09-01 14:44  pbartok
29095
29096         * RadioButton.cs:
29097           - Fixed state
29098
29099 2004-09-01 14:39  pbartok
29100
29101         * Button.cs, RadioButton.cs:
29102           - Functional initial check-in
29103
29104 2004-09-01 14:01  pbartok
29105
29106         * CheckBox.cs:
29107           - Added missing default
29108           - Added missing region mark
29109
29110 2004-09-01 09:10  jordi
29111
29112         * Label.cs: fixes method signatures, new methods, events, fixes
29113           autosize
29114
29115 2004-09-01 07:19  jordi
29116
29117         * Control.cs: Init string variables with an empty object
29118
29119 2004-09-01 04:20  jordi
29120
29121         * Control.cs: fires OnFontChanged event
29122
29123 2004-08-31 20:07  pbartok
29124
29125         * ButtonBase.cs:
29126           - Enabled display of strings
29127
29128 2004-08-31 20:05  pbartok
29129
29130         * Form.cs:
29131           - Added (partial) implementation of DialogResult; rest needs to be
29132             implemented when the modal loop code is done
29133
29134 2004-08-31 19:55  pbartok
29135
29136         * CheckBox.cs:
29137           - Fixed to match the removal of the needs_redraw concept
29138
29139 2004-08-31 19:55  pbartok
29140
29141         * ButtonBase.cs:
29142           - Removed the rather odd split between 'needs redraw' and redrawing
29143           - Now handles the events that require regeneration (ambient
29144             properties and size)
29145
29146 2004-08-31 19:41  pbartok
29147
29148         * Control.cs:
29149           - Added firing of BackColorChanged event
29150           - Added TopLevelControl property
29151           - Fixed handling of WM_ERASEBKGRND message
29152
29153 2004-08-31 12:49  pbartok
29154
29155         * ButtonBase.cs:
29156           - Removed debug
29157           - Minor fixes
29158
29159 2004-08-31 12:48  pbartok
29160
29161         * CheckBox.cs:
29162           - Finished (famous last words)
29163
29164 2004-08-31 04:35  jordi
29165
29166         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
29167           scrolling bugs, adds new methods
29168
29169 2004-08-30 14:42  pbartok
29170
29171         * CheckBox.cs:
29172           - Implemented CheckBox drawing code
29173
29174 2004-08-30 14:42  pbartok
29175
29176         * ButtonBase.cs:
29177           - Made Redraw() and CheckRedraw() virtual
29178           - Improved mouse up/down/move logic to properly track buttons
29179
29180 2004-08-30 09:44  pbartok
29181
29182         * CheckBox.cs:
29183           - Updated to fix broken build. Not complete yet.
29184
29185 2004-08-30 09:28  pbartok
29186
29187         * CheckState.cs:
29188           - Initial checkin
29189
29190 2004-08-30 09:17  pbartok
29191
29192         * Appearance.cs:
29193           - Initial check-in
29194
29195 2004-08-27 16:12  ravindra
29196
29197         * ToolBarButton.cs: Added TypeConverter attribute.
29198
29199 2004-08-27 16:07  ravindra
29200
29201         * ImageIndexConverter.cs: Implemented.
29202
29203 2004-08-27 14:17  pbartok
29204
29205         * Control.cs:
29206           - Removed unneeded stack vars
29207           - First attempt to fix sizing issues when layout is suspended
29208
29209 2004-08-25 15:35  jordi
29210
29211         * ScrollBar.cs: more fixes to scrollbar
29212
29213 2004-08-25 14:04  ravindra
29214
29215         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
29216           Added the missing divider code and grip for ToolBar Control.
29217
29218 2004-08-25 13:20  pbartok
29219
29220         * Control.cs:
29221           - Control now properly passes the ambient background color to child
29222             controls
29223
29224 2004-08-25 13:20  jordi
29225
29226         * ScrollBar.cs: small bug fix regarding bar position
29227
29228 2004-08-25 12:33  pbartok
29229
29230         * Timer.cs:
29231           - Now only calls SetTimer or KillTimer if the enabled state has
29232           changed
29233
29234 2004-08-25 12:33  pbartok
29235
29236         * XplatUIWin32.cs:
29237           - Fixed timer handling, now seems to work
29238           - Improved error message for window creation
29239
29240 2004-08-25 12:32  pbartok
29241
29242         * Control.cs:
29243           - Fixed generation of MouseUp message
29244
29245 2004-08-25 12:29  jordi
29246
29247         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
29248           and fixes for progressbar
29249
29250 2004-08-24 18:43  ravindra
29251
29252         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
29253           in ToolBar control.
29254
29255 2004-08-24 17:15  pbartok
29256
29257         * Panel.cs:
29258           - Added #region
29259           - Added missing events
29260           - Alphabetized
29261
29262 2004-08-24 17:14  pbartok
29263
29264         * StatusBar.cs, PictureBox.cs:
29265           - Now uses Control's CreateParams
29266
29267 2004-08-24 16:36  pbartok
29268
29269         * XplatUIX11.cs:
29270           - Fixed background color handling
29271           - Fixed sending of enter/leave events on a grab
29272
29273 2004-08-24 16:35  pbartok
29274
29275         * X11Structs.cs:
29276           - Refined definitions for CrossingEvent
29277
29278 2004-08-24 12:37  jordi
29279
29280         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
29281           formmating, methods signature, and adds missing events
29282
29283 2004-08-24 12:24  jordi
29284
29285         * Control.cs: fire OnEnabledChanged event
29286
29287 2004-08-24 11:17  pbartok
29288
29289         * XplatUIWin32.cs:
29290           - Implemented SetTimer() and KillTimer()
29291
29292 2004-08-24 11:16  pbartok
29293
29294         * XplatUIX11.cs:
29295           - Now uses Remove instead of Add to kill the timer
29296
29297 2004-08-24 10:16  jackson
29298
29299         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
29300           picture boxes in the theme now. Draw picture box borders and obey
29301           sizing modes
29302
29303 2004-08-24 05:49  jackson
29304
29305         * Timer.cs: Remove top secret debugging code
29306
29307 2004-08-24 05:34  jackson
29308
29309         * PictureBox.cs: Temp hack to make picture boxes draw their full
29310           image
29311
29312 2004-08-24 05:29  jackson
29313
29314         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29315           XplatUIX11.cs: Move timers to the driver level. On X they are
29316           queued by the driver and checked on idle.
29317
29318 2004-08-24 01:07  jackson
29319
29320         * XplatUIX11.cs: Use a queue for async messages instead of passing
29321           them as ClientMessages since that was totally broken. Also simply
29322           check for events and return an idle message if none are found. This
29323           gives us an idle handler, and prevents deadlocking when no messages
29324           are in the queue.
29325
29326 2004-08-23 18:19  ravindra
29327
29328         * XplatUIWin32.cs: Removed the unwanted destructor.
29329
29330 2004-08-23 17:27  pbartok
29331
29332         * ButtonBase.cs:
29333           - Finishing touches. Works now, just needs some optimizations.
29334
29335 2004-08-23 16:53  jordi
29336
29337         * ScrollBar.cs: small fix
29338
29339 2004-08-23 16:45  pbartok
29340
29341         * Application.cs:
29342           - Removed debug output
29343           - Simplifications
29344
29345 2004-08-23 16:43  jordi
29346
29347         * ScrollBar.cs: [no log message]
29348
29349 2004-08-23 16:10  pbartok
29350
29351         * Form.cs:
29352           - Fixed handling of WM_CLOSE message
29353           - Removed debug output
29354
29355 2004-08-23 16:09  pbartok
29356
29357         * Application.cs:
29358           - Added handling of Idle event
29359           - Added handling of form closing
29360           - Fixed reporting of MessageLoop property
29361           - Removed some unneeded code, should provide a bit of a speedup
29362
29363 2004-08-23 15:22  pbartok
29364
29365         * Control.cs:
29366           - Added InitLayout() method
29367           - Added code to properly perform layout when Anchor or Dock property
29368             is changed
29369           - Changed 'interpretation' of ResumeLayout. MS seems to have a
29370             LAMESPEC, tried to do it in a way that makes sense
29371
29372 2004-08-23 14:10  jordi
29373
29374         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
29375           properties and methods
29376
29377 2004-08-23 13:55  pbartok
29378
29379         * Control.cs:
29380           - Properly fixed Jordi's last fix
29381           - Now uses Cursor's Position property instead of calling XplatUI
29382           directly
29383
29384 2004-08-23 13:44  jordi
29385
29386         * PaintEventHandler.cs: Adding missing attribute
29387
29388 2004-08-23 13:39  pbartok
29389
29390         * Cursor.cs:
29391           - Implemented Position property
29392
29393 2004-08-23 13:39  pbartok
29394
29395         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
29396           - Added method to move mouse cursor
29397
29398 2004-08-23 13:39  pbartok
29399
29400         * XplatUIX11.cs:
29401           - Fixed setting of background color
29402           - Added method to move mouse cursor
29403
29404 2004-08-23 13:16  jordi
29405
29406         * Control.cs: avoids null exception
29407
29408 2004-08-22 17:46  jackson
29409
29410         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
29411           PictureBox
29412
29413 2004-08-22 17:40  jackson
29414
29415         * XplatUIX11.cs: Add some missing locks
29416
29417 2004-08-22 15:10  pbartok
29418
29419         * Control.cs, Form.cs:
29420           - Removed OverlappedWindow style from Control, instead it's default
29421             now is child
29422           - Made form windows OverlappedWindow by default
29423
29424 2004-08-22 13:34  jackson
29425
29426         * ScrollBar.cs: Update the position through the Value property so
29427           the OnValueChanged event is raised.
29428
29429 2004-08-22 12:04  pbartok
29430
29431         * SWF.csproj:
29432           - Added Cursor.cs and UserControl.cs
29433
29434 2004-08-22 12:03  pbartok
29435
29436         * Cursor.cs:
29437           - Started implementation, not usable yet
29438
29439 2004-08-22 12:00  pbartok
29440
29441         * UserControl.cs:
29442           - Implemented UserControl (complete)
29443
29444 2004-08-21 19:20  ravindra
29445
29446         * ToolBar.cs: Correcting the formatting mess of VS.NET.
29447
29448 2004-08-21 18:49  ravindra
29449
29450         * ToolBar.cs: Probably this completes the missing attributes in
29451           toolbar control.
29452
29453 2004-08-21 18:03  ravindra
29454
29455         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
29456           Fixed toolbar control signatures.
29457
29458 2004-08-21 16:32  pbartok
29459
29460         * LinkLabel.cs:
29461           - Signature Fixes
29462
29463 2004-08-21 16:30  pbartok
29464
29465         * Label.cs:
29466           - Signature fixes
29467
29468 2004-08-21 16:19  pbartok
29469
29470         * Control.cs, Label.cs:
29471           - Signature fixes
29472
29473 2004-08-21 15:57  pbartok
29474
29475         * ButtonBase.cs:
29476           - Added loads of debug output for development
29477           - Fixed typo in method name
29478
29479 2004-08-21 15:52  pbartok
29480
29481         * ToolBarButtonClickEventArgs.cs:
29482           - Added missing base class
29483
29484 2004-08-21 14:53  pbartok
29485
29486         * Control.cs:
29487           - Updated to match new GrabWindow signature
29488
29489 2004-08-21 14:51  pbartok
29490
29491         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29492           - Added method to get default display size
29493
29494 2004-08-21 14:23  pbartok
29495
29496         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29497           - Added method to query current grab state
29498           - Added argument to allow confining a grab to a window
29499
29500 2004-08-21 14:22  pbartok
29501
29502         * Keys.cs:
29503           - Added [Flags] attribute so that modifiers can be used in bitwise
29504           ops
29505
29506 2004-08-21 14:21  pbartok
29507
29508         * TrackBar.cs, ScrollBar.cs:
29509           - Replaced direct XplatUI calls with their Control counterpart
29510
29511 2004-08-21 13:32  pbartok
29512
29513         * Control.cs:
29514           - Implemented Created property
29515
29516 2004-08-21 13:28  pbartok
29517
29518         * Control.cs:
29519           - Implemented ContainsFocus
29520
29521 2004-08-21 13:26  pbartok
29522
29523         * Control.cs:
29524           - Implemented CausesValidation
29525
29526 2004-08-21 13:21  pbartok
29527
29528         * Control.cs:
29529           - Implemented CanFocus
29530           - Implemented CanSelect
29531           - Implemented Capture
29532
29533 2004-08-21 12:35  pbartok
29534
29535         * XplatUIWin32.cs:
29536           - Fixed bug with Async message handling
29537           - Implemented getting the ModifierKeys
29538
29539 2004-08-21 12:32  jackson
29540
29541         * AsyncMethodResult.cs: Make sure we have the mutex before we
29542           release it. Fixes BeginInvoke on windows
29543
29544 2004-08-21 11:31  pbartok
29545
29546         * XplatUIWin32.cs, XplatUIX11.cs:
29547           - Drivers now return proper mouse state
29548
29549 2004-08-21 10:54  jackson
29550
29551         * Control.cs: Implement EndInvoke
29552
29553 2004-08-21 10:48  jackson
29554
29555         * Timer.cs: Remove unneeded finalizer
29556
29557 2004-08-20 19:52  ravindra
29558
29559         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
29560           in mouse event handling in the ToolBar control.
29561
29562 2004-08-20 19:50  ravindra
29563
29564         * ImageList.cs: Changed draw method to use the arguments passed in
29565           to draw the image.
29566
29567 2004-08-20 18:58  pbartok
29568
29569         * XplatUIStructs.cs:
29570           - Added private message for async communication
29571
29572 2004-08-20 17:38  ravindra
29573
29574         * Control.cs: Made RightToLeft property virtual and removed a
29575           Console.WriteLine.
29576
29577 2004-08-20 14:39  jordi
29578
29579         * ThemeGtk.cs: use style_attach
29580
29581 2004-08-20 14:39  pbartok
29582
29583         * XplatUIWin32.cs:
29584           - Added jackson's Async code from X11 to Win32
29585
29586 2004-08-20 14:09  pbartok
29587
29588         * SWF.csproj:
29589           - Added all new files
29590
29591 2004-08-20 14:09  pbartok
29592
29593         * Control.cs:
29594           - Added call to set window background color
29595
29596 2004-08-20 14:03  pbartok
29597
29598         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
29599           - Added method for setting the window background
29600
29601 2004-08-20 14:02  pbartok
29602
29603         * XplatUIWin32.cs:
29604           - Added method for setting the background color
29605           - Added handling for erasing the window background
29606
29607 2004-08-20 13:45  jordi
29608
29609         * TrackBar.cs: fixes timer, new properties and methods
29610
29611 2004-08-20 13:34  jackson
29612
29613         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
29614           correct thread
29615
29616 2004-08-20 13:22  jackson
29617
29618         * Timer.cs: Timer Tick events are now handed through Controls Async
29619           mechanism so the callbacks are executed in the same thread as X
29620
29621 2004-08-20 13:19  jackson
29622
29623         * XplatUIDriver.cs: Expose functionality to send async messages
29624           through the driver
29625
29626 2004-08-20 13:18  jackson
29627
29628         * Control.cs: Implement Begininvoke
29629
29630 2004-08-20 13:14  jackson
29631
29632         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
29633           messages through the driver
29634
29635 2004-08-20 13:12  jackson
29636
29637         * XplatUIX11.cs: Lock before all X operations. Also added Async
29638           method functionality through XSendEvent
29639
29640 2004-08-20 13:11  jackson
29641
29642         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
29643           This will screw up on 64 bit systems)
29644
29645 2004-08-20 13:10  jackson
29646
29647         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
29648           Async messages through X/Win32
29649
29650 2004-08-19 19:39  pbartok
29651
29652         * XplatUIX11.cs:
29653           - Updated code to match new HandleData.DeviceContext type
29654
29655 2004-08-19 19:38  pbartok
29656
29657         * HandleData.cs:
29658           - Made DeviceContext a generic object to allow usage from various
29659           drivers
29660           - Added support for queueing Windows messages
29661
29662 2004-08-19 19:37  pbartok
29663
29664         * XplatUIWin32.cs:
29665           - Added generation of MouseEnter, MouseLeave and MouseHover events
29666           - Added cleanup on EndPaint
29667
29668 2004-08-19 19:17  pbartok
29669
29670         * Control.cs:
29671           - Added handling of WM_MOUSEHOVER
29672           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
29673           code
29674
29675 2004-08-19 18:55  jordi
29676
29677         * ThemeGtk.cs: fixes button order
29678
29679 2004-08-19 18:12  jordi
29680
29681         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
29682
29683 2004-08-19 17:09  pbartok
29684
29685         * Control.cs:
29686           - Added Right property
29687           - Added RightToLeft property
29688
29689 2004-08-19 16:27  jordi
29690
29691         * ThemeGtk.cs: experimental GTK theme support
29692
29693 2004-08-19 16:26  jordi
29694
29695         * ITheme.cs, Theme.cs: move themes from an interface to a class
29696
29697 2004-08-19 16:25  jordi
29698
29699         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
29700           theme enhancaments
29701
29702 2004-08-19 16:04  pbartok
29703
29704         * XplatUIX11.cs:
29705           - Added colormap basics
29706           - Added a way to re-initialize with a different display handle
29707           - Fixed setting of the window background color
29708           - Added various X11 imports related to colors and colormaps
29709
29710 2004-08-19 15:51  pbartok
29711
29712         * X11Structs.cs:
29713           - Removed packing hints (Paolo suggested this a while back)
29714           - fixed colormap type
29715           - Added default Atom types
29716           - Added Screen and color structs and enums
29717
29718 2004-08-19 15:39  pbartok
29719
29720         * ImageList.cs:
29721           - Added missing Draw() method
29722           - Added missing RecreateHandle event
29723
29724 2004-08-19 15:30  pbartok
29725
29726         * Form.cs:
29727           - Added handling of WM_CLOSE
29728
29729 2004-08-18 13:16  jordi
29730
29731         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
29732           a table
29733
29734 2004-08-18 09:56  jordi
29735
29736         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
29737
29738 2004-08-17 15:31  ravindra
29739
29740         * SWF.csproj: Updated project.
29741
29742 2004-08-17 15:25  pbartok
29743
29744         * Control.cs:
29745           - Drawing improvement; don't call UpdateBounds if we are not visible
29746             (or have been minimized)
29747
29748 2004-08-17 15:24  pbartok
29749
29750         * XplatUIWin32.cs:
29751           - Finished IsVisible
29752           - Added Win32GetWindowPlacement
29753
29754 2004-08-17 15:08  jackson
29755
29756         * Panel.cs: Initial checkin of the Panel
29757
29758 2004-08-17 14:25  pbartok
29759
29760         * Control.cs:
29761           - Fixed broken handling of default window sizes
29762
29763 2004-08-17 13:29  jackson
29764
29765         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
29766           has a large startup time.
29767
29768 2004-08-17 10:25  jackson
29769
29770         * HandleData.cs: union areas properly
29771
29772 2004-08-17 10:12  jackson
29773
29774         * HandleData.cs: union areas properly
29775
29776 2004-08-16 20:00  ravindra
29777
29778         * ToolBar.cs, ToolBarButton.cs: Added attributes.
29779
29780 2004-08-16 18:48  ravindra
29781
29782         * ToolBar.cs: Added attributes.
29783
29784 2004-08-16 17:17  ravindra
29785
29786         * SWF.csproj: Updated project.
29787
29788 2004-08-16 17:16  jackson
29789
29790         * XplatUIX11.cs: Check for more expose events before sending a
29791           WM_PAINT so they can all be grouped together. This makes dragging a
29792           window across another window redraw in a sane way.
29793
29794 2004-08-16 15:47  pbartok
29795
29796         * Control.cs:
29797           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
29798             support OnMouseEnter/Leave()
29799           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
29800             exposure handling
29801
29802 2004-08-16 15:46  pbartok
29803
29804         * XplatUIStructs.cs, XplatUIX11.cs:
29805           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
29806           OnMouseEnter/Leave()
29807
29808 2004-08-16 15:34  jackson
29809
29810         * XplatUIX11.cs: Group multiple expose events in HandleData, make
29811           sure messages get the message field set to WM_NULL if they are not
29812           handled.
29813
29814 2004-08-16 15:24  jackson
29815
29816         * HandleData.cs: HandleData is used for storing message information
29817           for window handles
29818
29819 2004-08-15 17:23  ravindra
29820
29821         * ColorDepth.cs: Added attribute.
29822
29823 2004-08-15 17:23  ravindra
29824
29825         * SWF.csproj: Updated project for ToolBar Control.
29826
29827 2004-08-15 17:20  ravindra
29828
29829         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
29830           control and also dos2unix format.
29831
29832 2004-08-15 17:13  ravindra
29833
29834         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
29835           ToolBarButtonClickEventArgs.cs,
29836           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
29837           ToolBarTextAlign.cs: First Implementation of ToolBar control.
29838
29839 2004-08-15 15:31  pbartok
29840
29841         * ButtonBase.cs:
29842           - First (mostly) working version
29843
29844 2004-08-13 16:15  pbartok
29845
29846         * Control.cs:
29847           - Fixed Anchor default
29848
29849 2004-08-13 15:43  pbartok
29850
29851         * Control.cs:
29852           - Changed GetCursorPos signature
29853
29854 2004-08-13 15:42  pbartok
29855
29856         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
29857           - Changed signature for GetCursorPos
29858
29859 2004-08-13 15:25  pbartok
29860
29861         * XplatUIX11.cs:
29862           - Cleanup
29863           - Fixed resizing/exposure handling
29864
29865 2004-08-13 15:22  jordi
29866
29867         * ThemeWin32Classic.cs: removes redundant code and fixes issues
29868           with tickposition
29869
29870 2004-08-13 14:55  jordi
29871
29872         * TrackBar.cs: change from wndproc to events
29873
29874 2004-08-13 13:00  jordi
29875
29876         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29877           XplatUIX11.cs: implements PointToClient (ScreenToClient)
29878
29879 2004-08-13 12:53  pbartok
29880
29881         * XplatUIWin32.cs:
29882           - Changed GetWindowPos to also provide client area size
29883           - Fixed broken prototypes for several win32 functions
29884
29885 2004-08-13 12:53  pbartok
29886
29887         * XplatUI.cs, XplatUIDriver.cs:
29888           - Changed GetWindowPos to also provide client area size
29889
29890 2004-08-13 12:52  pbartok
29891
29892         * XplatUIX11.cs:
29893           - Added generation of WM_POSCHANGED
29894           - Changed GetWindowPos to also provide client area size
29895
29896 2004-08-13 12:52  pbartok
29897
29898         * Control.cs:
29899           - Added Dispose() and destructor
29900           - Fixed resizing and bounds calculation
29901           - Fixed Layout
29902           - Added memory savings for invisible windows
29903
29904 2004-08-13 12:46  jordi
29905
29906         * TrackBar.cs: adds timer and grap window
29907
29908 2004-08-13 10:25  jackson
29909
29910         * Timer.cs: SWF Timer
29911
29912 2004-08-12 16:59  pbartok
29913
29914         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29915           - Implemented method to get current mouse position
29916
29917 2004-08-12 14:29  jordi
29918
29919         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
29920           enhancement, fix mouse problems, highli thumb, etc
29921
29922 2004-08-12 13:31  pbartok
29923
29924         * Control.cs:
29925           - Fixed Anchoring bugs
29926
29927 2004-08-12 13:01  jackson
29928
29929         * StatusBar.cs: Don't forget things
29930
29931 2004-08-12 12:54  jackson
29932
29933         * ThemeWin32Classic.cs: Handle owner draw status bars
29934
29935 2004-08-12 12:54  jackson
29936
29937         * StatusBar.cs: Implement missing properties, events, and methods.
29938           Handle mouse clicking
29939
29940 2004-08-12 10:19  jackson
29941
29942         * StatusBarPanelClickEventArgs.cs,
29943           StatusBarPanelClickEventHandler.cs: Classes for handling status
29944           bar panel click events
29945
29946 2004-08-12 10:10  jackson
29947
29948         * Control.cs: Add missing properties
29949
29950 2004-08-12 09:46  pbartok
29951
29952         * BindingsManagerBase.cs:
29953           - Name changed to BindingManagerBase.cs
29954
29955 2004-08-12 09:25  jordi
29956
29957         * ScrollableControl.cs: calls ctrlbase instead of exeception
29958
29959 2004-08-11 16:28  pbartok
29960
29961         * InputLanguageChangingEventArgs.cs:
29962           - Never check in before compiling. Fixes the last check-in
29963
29964 2004-08-11 16:26  pbartok
29965
29966         * InputLanguageChangingEventArgs.cs:
29967           - More signature fixes
29968
29969 2004-08-11 16:20  pbartok
29970
29971         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
29972           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
29973           ImageListStreamer.cs, InputLanguage.cs,
29974           InputLanguageChangedEventArgs.cs,
29975           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
29976           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
29977           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
29978           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29979           - Signature fixes
29980
29981 2004-08-11 16:16  pbartok
29982
29983         * Application.cs:
29984           - Fixed Signature
29985           - Added .Net 1.1 method
29986
29987 2004-08-11 15:25  pbartok
29988
29989         * SWF.csproj:
29990           - Fixed BindingManagerBase.cs filename
29991
29992 2004-08-11 15:22  pbartok
29993
29994         * BindingManagerBase.cs:
29995           - Was checked in with wrong filename
29996
29997 2004-08-11 14:50  pbartok
29998
29999         * SWF.csproj:
30000           - Updated
30001
30002 2004-08-11 13:41  jordi
30003
30004         * XplatUIWin32.cs: Fixes ClientRect
30005
30006 2004-08-11 13:19  pbartok
30007
30008         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
30009           XplatUIX11.cs:
30010           - We had SetWindowPos and MoveWindow to set window positions and
30011             size, removed MoveWindow. We have GetWindowPos, so it made sense to
30012             keep SetWindowPos as matching counterpart
30013           - Added some X11 sanity checking
30014
30015 2004-08-11 12:59  pbartok
30016
30017         * Control.cs:
30018           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
30019             (It seems that SetBounds is just a front for SetBoundsCore and
30020              SetBoundsCore updates the underlying window system and
30021              UpdateBounds is responsible for updating the variables associated
30022              with the Control and sending the events)
30023           - Major cleanup of Size handling; we now have two sizes, client_size
30024             and bounds. Bounds defines the window with decorations, client_size
30025             without them.
30026
30027 2004-08-11 12:55  pbartok
30028
30029         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30030           - Added method to calculate difference between decorated window and
30031             raw client area
30032
30033 2004-08-11 12:54  pbartok
30034
30035         * Label.cs:
30036           - Forcing redraw on resize
30037
30038 2004-08-11 11:43  pbartok
30039
30040         * ImageList.cs:
30041           - Removed disposing of the actual images when the list is disposed
30042
30043 2004-08-11 09:13  pbartok
30044
30045         * Control.cs:
30046           - Now properly reparents windows
30047
30048 2004-08-11 08:37  pbartok
30049
30050         * Control.cs:
30051           - Duh!
30052
30053 2004-08-11 07:47  pbartok
30054
30055         * Control.cs:
30056           - Rewrote the collection stuff. Might not be as fast now, not
30057             keeping the number of children around and accessible directly, but
30058             it's more straightforward
30059
30060 2004-08-11 07:44  pbartok
30061
30062         * AccessibleObject.cs:
30063           - Fixed to match ControlCollection rewrite
30064
30065 2004-08-11 07:43  pbartok
30066
30067         * ImageList.cs:
30068           - Added missing creation of the collection list
30069
30070 2004-08-10 20:08  jackson
30071
30072         * StatusBar.cs: Get the paint message from WndProc
30073
30074 2004-08-10 19:31  jackson
30075
30076         * ThemeWin32Classic.cs: Create Brushes as little as possible
30077
30078 2004-08-10 19:20  jackson
30079
30080         * UICues.cs: Add Flags attribute
30081
30082 2004-08-10 19:19  jackson
30083
30084         * StatusBarPanel.cs: Signature cleanup
30085
30086 2004-08-10 19:10  jackson
30087
30088         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
30089           Initial implementation of status bar item drawing
30090
30091 2004-08-10 17:27  jordi
30092
30093         * TrackBar.cs: add missing methods, properties, and restructure to
30094           hide extra ones
30095
30096 2004-08-10 16:24  jackson
30097
30098         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
30099           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
30100           attribute
30101
30102 2004-08-10 13:21  jordi
30103
30104         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
30105           enhancements and standarize on win colors defaults
30106
30107 2004-08-10 12:52  jackson
30108
30109         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
30110           ThemeWin32Classic.cs: Implement DrawItem functionality
30111
30112 2004-08-10 12:47  jordi
30113
30114         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
30115
30116 2004-08-10 12:32  jordi
30117
30118         * Control.cs: throw ontextchange event
30119
30120 2004-08-10 11:43  pbartok
30121
30122         * Control.cs:
30123           - Added more to the still unfinished Dock/Anchor layout code
30124
30125 2004-08-10 11:39  pbartok
30126
30127         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
30128           - Added GetWindowPos method
30129
30130 2004-08-10 11:36  pbartok
30131
30132         * XplatUIWin32.cs:
30133           - Implemented several methods
30134
30135 2004-08-10 09:47  jackson
30136
30137         * TrackBar.cs: Allow control to handle buffering
30138
30139 2004-08-10 09:41  jackson
30140
30141         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
30142
30143 2004-08-10 09:24  jackson
30144
30145         * Label.cs, LinkLabel.cs: Let Control handle buffering.
30146
30147 2004-08-10 09:09  jackson
30148
30149         * StatusBar.cs: Let Control handle all the buffering.
30150
30151 2004-08-10 09:08  jackson
30152
30153         * Control.cs: Control will now handle the buffering code, so each
30154           control does not have to implement this.
30155
30156 2004-08-10 08:34  jackson
30157
30158         * XplatUIDriver.cs: Use default colors from the theme
30159
30160 2004-08-09 17:12  pbartok
30161
30162         * ImageList.cs:
30163           - Fixed several bugs Ravindra pointed out
30164
30165 2004-08-09 16:11  pbartok
30166
30167         * Control.cs:
30168           - Added incomplete dock layout code
30169           - Added support for mouse wheel
30170
30171 2004-08-09 16:09  pbartok
30172
30173         * XplatUIX11.cs:
30174           - Added handling for middle and right mousebutton
30175           - Added handling for mouse wheel
30176           - Added handling for key state and mouse state and position
30177           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
30178           messages
30179
30180 2004-08-09 15:40  jackson
30181
30182         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
30183           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
30184           checkin
30185
30186 2004-08-09 15:37  jackson
30187
30188         * StatusBar.cs: Initial implementation of StatusBar
30189
30190 2004-08-09 15:36  jackson
30191
30192         * ITheme.cs: Add support for drawing status bar and getting status
30193           bar item sizes
30194
30195 2004-08-09 15:35  pbartok
30196
30197         * MouseButtons.cs:
30198           - Fixed values
30199
30200 2004-08-09 15:34  jackson
30201
30202         * ThemeWin32Classic.cs: Add support for drawing status bar and get
30203           status bar item sizes
30204
30205 2004-08-09 15:21  jackson
30206
30207         * ThemeWin32Classic.cs: Use known colors for default control
30208           colours
30209
30210 2004-08-09 15:12  jackson
30211
30212         * ThemeWin32Classic.cs: Make the default font static, it is static
30213           in control so this doesn't change functionality and creating fonts
30214           is sloooooow.
30215
30216 2004-08-09 14:56  pbartok
30217
30218         * X11Structs.cs:
30219           - Added GrabMode enum
30220
30221 2004-08-09 14:55  pbartok
30222
30223         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30224           - Removed Run method, was only required for initial development
30225
30226 2004-08-09 14:51  pbartok
30227
30228         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30229           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
30230           capture
30231
30232 2004-08-09 13:48  pbartok
30233
30234         * XplatUIX11.cs:
30235           - Fixed default sizing for child windows
30236
30237 2004-08-09 12:56  pbartok
30238
30239         * XplatUIX11.cs:
30240           - Added generation of WM_DESTROY message
30241           - Added handling of window manager induced shutdown
30242
30243 2004-08-09 11:31  jackson
30244
30245         * ThemeWin32Classic.cs: New names for control properties
30246
30247 2004-08-09 11:25  jackson
30248
30249         * Control.cs: Use new color names
30250
30251 2004-08-09 11:02  jackson
30252
30253         * XplatUI.cs: Get default window properties from the theme
30254
30255 2004-08-09 11:01  jackson
30256
30257         * ITheme.cs: The theme engine now controls default window
30258           properties
30259
30260 2004-08-09 11:00  jackson
30261
30262         * ThemeWin32Classic.cs: Add default window color properties
30263
30264 2004-08-09 10:17  jackson
30265
30266         * ThemeWin32Classic.cs: Use correct default back color
30267
30268 2004-08-09 10:05  jackson
30269
30270         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
30271           the theme now.
30272
30273 2004-08-09 09:56  jackson
30274
30275         * XplatUI.cs: Remove defaults, these are handled by the theme now.
30276
30277 2004-08-09 09:54  jackson
30278
30279         * Control.cs: Get default properties from the theme.
30280
30281 2004-08-09 09:53  jackson
30282
30283         * ITheme.cs: Themes now handle default control properties
30284
30285 2004-08-09 09:53  jackson
30286
30287         * ThemeWin32Classic.cs: Themes now handle default control
30288           properties so coloring will be consistent
30289
30290 2004-08-08 16:54  jordi
30291
30292         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
30293
30294 2004-08-08 15:08  jordi
30295
30296         * XplatUIX11.cs: fixes keyboard crash
30297
30298 2004-08-08 13:47  jordi
30299
30300         * Label.cs: add cvs header info
30301
30302 2004-08-08 12:09  jackson
30303
30304         * ThemeWin32Classic.cs: Add pen_buttonface
30305
30306 2004-08-08 11:52  jordi
30307
30308         * Label.cs, LinkLabel.cs: [no log message]
30309
30310 2004-08-08 11:34  jordi
30311
30312         * ThemeWin32Classic.cs: Use Windows Standard Colours
30313
30314 2004-08-07 17:32  jordi
30315
30316         * TrackBar.cs: throw exceptions of invalid enums values
30317
30318 2004-08-07 17:31  jordi
30319
30320         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
30321           draw method name
30322
30323 2004-08-07 16:56  jackson
30324
30325         * HorizontalAlignment.cs: Initial checkin
30326
30327 2004-08-07 13:16  jordi
30328
30329         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
30330           methods
30331
30332 2004-08-07 13:05  jordi
30333
30334         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
30335           GetSysColor defines
30336
30337 2004-08-06 18:01  pbartok
30338
30339         * ThemeWin32Classic.cs:
30340           - Fixed some rounding issues with float/int
30341
30342 2004-08-06 18:00  jackson
30343
30344         * DockStyle.cs, AnchorStyles.cs:
30345
30346                   Add flags and serializable attributes.
30347
30348 2004-08-06 17:46  pbartok
30349
30350         * XplatUIX11.cs:
30351           - Implemented GetParent
30352
30353 2004-08-06 17:18  pbartok
30354
30355         * TrackBar.cs:
30356           - Fixed some rounding issues with float/int
30357
30358 2004-08-06 17:17  pbartok
30359
30360         * X11Structs.cs, XplatUIX11.cs:
30361           - Fixed Refresh and Invalidate
30362
30363 2004-08-06 15:30  pbartok
30364
30365         * Control.cs, X11Structs.cs, XplatUIX11.cs:
30366           - Fixed recursive loop when resizing
30367           - Improved/fixed redrawing on expose messages
30368
30369 2004-08-06 09:53  jordi
30370
30371         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
30372           keyboard navigation
30373
30374 2004-08-06 08:02  pbartok
30375
30376         * X11Structs.cs, XplatUIX11.cs:
30377           - Fixed reparenting
30378           - Fixed window border creation
30379
30380 2004-08-05 15:38  pbartok
30381
30382         * XplatUIX11.cs:
30383           - Attempted fix for reparenting problems
30384
30385 2004-08-04 15:14  pbartok
30386
30387         * Control.cs:
30388           - Fixed Invalidation bug (calculated wrong client area)
30389           - Added ClientSize setter
30390
30391 2004-08-04 15:13  pbartok
30392
30393         * Form.cs:
30394           - Added AutoScale properties
30395
30396 2004-08-04 15:13  pbartok
30397
30398         * SWF.csproj:
30399           - Added latest files
30400
30401 2004-08-04 14:11  pbartok
30402
30403         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
30404           XplatUIX11.cs:
30405           - Added Invalidate handling
30406
30407 2004-08-03 17:09  jordi
30408
30409         * XplatUIDriver.cs: fixes spelling mistake
30410
30411 2004-07-27 09:53  jordi
30412
30413         * TrackBar.cs: fixes trackbar events, def classname, methods
30414           signature
30415
30416 2004-07-27 09:29  jordi
30417
30418         * ScrollBar.cs: fixes scrollbar events
30419
30420 2004-07-27 04:38  jordi
30421
30422         * Control.cs: changes to be able to run winforms samples
30423
30424 2004-07-26 11:42  jordi
30425
30426         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
30427           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
30428
30429 2004-07-26 05:41  jordi
30430
30431         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
30432           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
30433           implementation
30434
30435 2004-07-22 09:22  jordi
30436
30437         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
30438           check link overlapping, implement events, and fixes
30439
30440 2004-07-21 10:28  jordi
30441
30442         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
30443
30444 2004-07-21 10:19  jordi
30445
30446         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
30447           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
30448           LinkLabelLinkClickedEventArgs.cs,
30449           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
30450           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
30451           implementation
30452
30453 2004-07-19 13:09  jordi
30454
30455         * Control.cs, Label.cs: label control re-written: added missing
30456           functionlity, events, and properties
30457
30458 2004-07-19 10:49  jordi
30459
30460         * Control.cs: fixes SetBounds logic
30461
30462 2004-07-19 01:29  jordi
30463
30464         * Control.cs: Call RefreshWindow only if the window has created
30465
30466 2004-07-15 14:05  pbartok
30467
30468         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
30469           - Implemented ImageList and ImageList.ImageCollection classes
30470           - Added ColorDepth enumeration
30471           - Updated SWF VS.Net project
30472
30473 2004-07-15 11:06  jordi
30474
30475         * XplatUIStructs.cs: added MsgButons enum
30476
30477 2004-07-15 11:03  jordi
30478
30479         * Control.cs: added basic mouse handeling events
30480
30481 2004-07-15 03:38  jordi
30482
30483         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
30484           Vertical TrackBar control implementation
30485
30486 2004-07-13 09:33  jordi
30487
30488         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
30489
30490 2004-07-13 09:31  jordi
30491
30492         * Control.cs, Form.cs: commit: new properties and fixes form size
30493           problems
30494
30495 2004-07-09 14:13  miguel
30496
30497         * ProgressBar.cs: Spelling
30498
30499 2004-07-09 11:25  pbartok
30500
30501         * ProgressBar.cs:
30502           - Removed usage of Rectangle for drawing. Miguel pointed out it's
30503           faster
30504
30505 2004-07-09 11:17  miguel
30506
30507         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
30508
30509                 * ProgressBar.cs: Fixed spelling for `block'
30510
30511                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
30512                 style guidelines.
30513
30514                 Avoid using the += on rect.X, that exposed a bug in the compiler.
30515
30516 2004-07-08 23:21  pbartok
30517
30518         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
30519           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
30520           BaseCollection.cs, Binding.cs, BindingContext.cs,
30521           BindingMemberInfo.cs, BindingsCollection.cs,
30522           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
30523           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
30524           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
30525           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
30526           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
30527           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
30528           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
30529           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
30530           FrameStyle.cs, GiveFeedbackEventArgs.cs,
30531           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
30532           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
30533           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
30534           InputLanguageChangedEventArgs.cs,
30535           InputLanguageChangedEventHandler.cs,
30536           InputLanguageChangingEventArgs.cs,
30537           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
30538           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
30539           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
30540           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
30541           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
30542           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
30543           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
30544           QueryAccessibilityHelpEventArgs.cs,
30545           QueryAccessibilityHelpEventHandler.cs,
30546           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
30547           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
30548           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
30549           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
30550           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
30551           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
30552           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
30553           XplatUIX11.cs, lang.cs:
30554           - Initial check-in
30555
30556