2007-11-13 Everaldo Canuto <ecanuto@novell.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-11-13  Everaldo Canuto  <ecanuto@novell.com>
2
3         * Win32DnD.cs: Implement Win32 Drop files, thank you Srikanth Madikeri for
4         the patch. [Fixes #324856]
5
6 2007-11-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7
8         * ListView.cs:
9         * ListViewItem.cs: Add an initial implementation of
10         2.0 ListViewItem.Position getter.
11
12 2007-11-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13
14         * ListView.cs: Add a reordered_items_indices array, to allow us
15         to have a different sorting than that of Items (the sorting in Items
16         could not match the actual sorting in screen). This is needed to
17         implement a pair of 2.0 features.
18         * ListViewItem.cs: Add a DisplayIndex property to keep track of the
19         actual position in the ListView grid, since it could have a position
20         different than its Index (position in ListViewItemCollection). 
21
22 2007-11-09  Jonathan Pobst  <monkey@jpobst.com>
23
24         * Label.cs: Add StringFormatFlags.LineLimit.  This tells DrawString to
25         not draw partial lines.
26         * LinkLabel.cs: Change FormatFlags setter from = to |= so that the
27         LineLimit flag from the base is preserved.
28         Fixes the windows part of bug #338965.
29
30 2007-11-09  Jonathan Pobst  <monkey@jpobst.com>
31
32         * TextBoxBase.cs: Move handling of the enter key from KEYDOWN to CHAR
33         so that it can be canceled in KeyPress.
34         Fixes bug #340078.
35
36 2007-11-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
37
38         * ListView.cs: In ItemControl, reset mouse-handling related
39         fields even if we dont' have items (we still should reset them when
40         we had items but then called Items.Clear). Partially based in a patch
41         by George Giolfan.
42         Fixes #338399.
43
44 2007-11-08  Gert Driesen  <drieseng@users.sourceforge.net>
45
46         * Application.cs: In ProductVersion first try AssemblyFileVersion
47         before falling back to assembly version. Fixes bug #339787.
48
49 2007-11-08  Andreia Gaita <avidigal@novell.com>
50
51         * HtmlElement.cs: Implement InnerText setter.
52         * WebBrowserBase.cs: Implement Navigated event support.
53         Add flag to track when the browser "document" is ready to be retrieved.
54         * WebBrowser.cs: Implement CanGoBack, CanGoForward, Title, Url.
55         Make sure browser document is ready before retrieving it.
56         Clean up cached objects (document) when moving to a new page through
57         any of the navigation methods.
58         Use the new Mono.WebBrowser.INavigation interface to control navigation.
59         Implement OnNavigated event.
60
61 2007-11-07  Jonathan Pobst  <monkey@jpobst.com>
62
63         * ThemeWin32Classic.cs: Don't draw the background in DrawLabel or
64         DrawLinkLabel, this is handled by OnPaintBackground.
65         Fixes bug #339565, part II.
66
67 2007-11-07  Andreia Gaita <avidigal@novell.com>
68
69         * Control.cs: Revert r88915. Selecting text on a textbox depends on
70         getting a Select call on click, so this call needs to be here for now.
71         Unfixes #325809
72
73 2007-11-07  Geoff Norton  <gnorton@novell.com>
74
75         * OSXStructs.cs: Add the kEventClassApplication constants.
76         * XplatUIOSX.cs: Send a WM_LBUTTONDOWN to the Grab window when the 
77         application is deactivated otherwise Menu overlays linger on top of
78         other application windows.
79
80 2007-11-07  Geoff Norton  <gnorton@novell.com>
81
82         * XplatUIOSX.cs: Dont throw an exception on OverrideCursor as we
83         dont support cursors yet anyways.  This allows Reflector to run.
84
85 2007-11-07  Geoff Norton  <gnorton@novell.com>
86
87         * XplatUIOSX.cs: Implement DragSize.
88
89 2007-11-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
90
91         * ListView.cs: When we receive a WM_LBUTTONDOWN message in
92         ItemControl, request the focus, as .Net does. This is needed after 
93         Control does not request focus anymore when it receives a
94         WM_LBUTTONDOWN.
95
96 2007-11-06  Jonathan Pobst  <monkey@Jpobst.com>
97
98         * Label.cs: Make DrawImage internal so it can be called from Theme code.
99         Remove the DrawImage call from OnPaint.
100         * LinkLabel.cs: Remove the DrawImage call from OnPaint.
101         * ThemeWin32Classic.cs: Call DrawImage after we paint the background,
102         but before we draw the text for DrawLabel and DrawLinkLabel.
103         Fixes bug #339565.
104
105 2007-11-05  Andreia Gaita <avidigal@novell.com>
106
107         * Control.cs: Remove select call on click. Fixes #325809
108
109 2007-11-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
110
111         * ListViewItem.cs: Add 2.0 Position property getter.
112
113 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
114
115         * ListView.cs: Add 2.0 BackgroundImageTiled property.
116         Also, to make it work properly, change item's BackColor and
117         BackgroundImageLayout as needed.
118         * ThemeWin32Classic.cs: Don't fill any background rectangle 
119         in ListView.ItemControl when drawing items; just let the Control
120         base implementation fill it.
121
122 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
123
124         * ListViewGroup.cs: Adda TypeConverter attribute for this class,
125         as well as adding a custom 'dummy' Converter, as .net does.
126
127 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
128
129         * PropertyGridView.cs: When clicking drop-down button,
130         select an index in the listbox only if our standard values collection 
131         has one or more items.
132
133 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
134
135         * ListViewItem.cs: Add a DefaultValue attribute to 2.0 IndentCount
136         property.
137
138 2007-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
139
140         * PropertyGrid.cs: In PropertySort, update the toolbar buttons even if
141         the value is not changed. This ensure a pushed button remains in that
142         state when clicked again. When switching the value of PropertySort
143         between Categorized and CategorizedAlphabetical, do not update the
144         grid items and do not fire a PropertyChangedEvent. When clicking the
145         sorting buttons, do not modify the PropertySort value when switching
146         between Categorized and CategorizedAlphabetical but only update the
147         button state.
148
149 2007-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
150
151         * Label.cs: Make AutoEllipsis internal on 1.0 profile. Code
152         formatting.
153         * PropertyGrid.cs: Also put Categorized button in pushed state when
154         PropertySort is CategorizedAlphabetical. Set AutoEllipsis to true
155         for help description label.
156
157 2007-11-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
158
159         * ListView.cs: When calculating the biggest item for a given column,
160         take into account 2.0 LIstViewItem.IndentCount, since it directly affects
161         the item's width.
162
163 2007-11-03  Gert Driesen  <drieseng@users.sourceforge.net>
164
165         * PropertyGrid.cs: Fixed default value for PropertySort. Allow invalid
166         value for PropertySort on 1.0 profile. PropertySortChanged event
167         should only be fired on 2.0 profile. Fixed NullReferenceException
168         in UpdateSortLayout when PropertyGrid contains no items.
169
170 2007-11-02  Jonathan Pobst  <monkey@jpobst.com>
171
172         * MessageBox.cs: Patch from George to implement MessageBoxDefaultButton.
173         [Fixes bug #338554]
174
175 2007-11-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
176
177         * ListViewItem.cs: Implement 2.0 IndentCount property.
178
179 2007-11-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
180
181         * X11Dnd.cs: When sending status in a dnd operation, compare current
182         effect with the 'allowed' field instead of 'drag_data.Allowed', since
183         the later is only created when a Winforms application is both the
184         source and the target, but not when we are the target only.
185         Fixes part of #324251.
186
187 2007-11-01  Geoff Norton  <gnorton@novell.com>
188
189         * XplatUI*.cs: Add GetPreviousWindow utility method to return windows in
190         order of Z-Order.
191         * Hwnd.cs: Add initial implementation of GetClippingRectangles to clip sibling 
192         children out of the drawing view on mac.
193         * XplatUIOSX.cs: Code cleanup.  Handle more window grab cases.  Fix SetParent
194         to handle the orphan and invisible case (1/2 fixes TabStrip drawing in FormsTest)
195         
196 2007-11-01  Jonathan Pobst  <monkey@jpobst.com>
197
198         * ToolStrip.cs: Don't process MouseUp for a ToolStripControlHost, clicking
199         on the non-hosted-control part of it shouldn't do anything.
200         Fixes part of bug #327498.
201
202 2007-11-01  Andreia Gaita <avidigal@novell.com>
203
204         * WebBrowserBase.cs: revert previous change, resize can be called anytime
205
206 2007-11-01  Jonathan Pobst  <monkey@jpobst.com>
207
208         * Application.cs: When a toolstrip has the keyboard input loop, let messages
209         it does not use flow through to controls that are hosted in menus.
210         Same with mouse clicks.
211         * Form.cs: Don't close all menus on click if the click is on a
212         control hosted in a menu.
213         Fixes part of bug #327498, and part of bug #325969.
214
215 2007-10-31  Andreia Gaita <avidigal@novell.com>
216
217         * WebBrowserBase.cs: Only call resize on gluezilla when it is active
218
219 2007-10-31  Jonathan Pobst  <monkey@jpobst.com>
220
221         * TextBoxBase.cs: Use int.MaxValue for MaxLength instead of magic number.
222         Addresses an issue raised in bug #336218.
223
224 2007-10-30  Jonathan Pobst  <monkey@jpobst.com>
225
226         * Form.cs: Patch from George that moves the conversion of ClientSize->Size
227         for PreferredSize from OnLayout to PreferredSize.  Fixes bug #325242.
228
229 2007-10-30  Andreia Gaita <avidigal@novell.com>
230
231         * ContainerControl.cs: Check if the active control is a
232         child of a removed control and update active_control accordingly.
233         Fixes #329718
234
235 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
236
237         * DateTimePicker.cs: Throw ArgEx if the Value is set outside the MinDate
238         or the MaxDate.  Fixed bug #337693.
239
240 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
241
242         * XplatUIWin32.cs: Always call SetWindowPos with SWP_FRAMECHANGED flag
243         after calling SetWindowLong for a form, to force an immediate NC refresh.
244         Fixes first part of bug #325150.
245
246 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
247
248         * ComboBox.cs: Don't try to resize the listbox when we are DropDownStyle
249         simple.  Fixes the last part of bug #322668.
250
251 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
252
253         * MessageBox.cs: If the owner is TopMost, then the MessageBox form
254         needs to be TopMost as well, or else the MessageBox is under the form.
255         Patch by George fixes bug #325300.
256
257 2007-10-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
258
259         * X11Dnd.cs: When starting a new drag operation, reset the static
260         'dropped' field to false (previously the implementation didn't reset
261         it and got confused after the first drag).
262         Fixes #325071.
263
264 2007-10-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
265
266         * PropertyGrid.cs: When PropertySort changes, re-organize the grid
267         items instead of re-creating them all. For this purpose we now cache
268         both CategoryGridEntry items and the GridEntries for the main object's
269         properties.
270         * GridItem.cs: Make SetParent method abstract.
271         * GridEntry.cs: Override the SetParent method (already there, but now
272         we override it).
273         Fixes #324866.
274
275 2007-10-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
276
277         * PropertyGridView.cs: Set the plus/minus bounds of a grid item
278         depending on its depth (as .Net does). Update the needed values in
279         MouseDown handler. Also draw the plus/minus rect after the label,
280         so we don't draw on top of it.
281
282 2007-10-24  Everaldo Canuto  <ecanuto@novell.com>
283
284         * MenuAPI.cs: Return true as default in ProcessKeys to prevent keys to be
285         processed by forms or controls when menu is active. [Fixes #333548]
286
287 2007-10-24  Jonathan Pobst  <monkey@jpobst.com>
288
289         * ToolStripItem.cs: Don't focus a ToolStripControlHost on Select of the
290         parent doesn't have focus.  This was causing ToolStripTextBoxes to take
291         focus on mouse over.
292
293 2007-10-24  Jonathan Pobst  <monkey@jpobst.com>
294
295         * TextControl.cs: Code cleaning, simplifying.
296
297 2007-10-24  Geoff Norton  <gnorton@novell.com>
298
299         * XplatUIOSX.cs: Route mouse events to the grab hwnd on mouse down as well.
300         * XplatUIStructs.cs: Fix the ToString method of POINT and MSG.
301
302 2007-10-24  Jonathan Pobst  <monkey@jpobst.com>
303
304         * TextBoxBase.cs: If the user sets maxlength to 0, it should mean
305         the cap is maxvalue, not actually 0.  [Fixes bug #336218]
306
307 2007-10-24  Andreia Gaita <avidigal@novell.com>
308
309         * SendKeys.cs: apply jpobst's patch to bug #332409
310
311 2007-10-23  Andreia Gaita <avidigal@novell.com>
312
313         * TextBoxTextRenderer.cs: Lower bounds max size to Int16.MaxValue, the 
314         Windows 2000 gdi DrawText call doesn't draw if it's higher than that
315         for some reason
316
317 2007-10-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
318
319         * PropertyGridView.cs: If a property has an UIEditor available,
320         make the drop-down/editor button available only if the property
321         is _not_ read only.
322
323 2007-10-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
324
325         * PropertyGridView.cs: Don't make the grid item textbox 
326         editable when a drop-down control is available, but 
327         CanConvertFrom (typeof (string)) is false or GetStandardValuesExclusive () is
328         true. The same bur the color of the grid item value's label.
329
330 2007-10-22  Geoff Norton  <gnorton@novell.com>
331
332         * OSXStructs.cs: Add the needed constants for keyboard modifiers.
333         * OSXKeyboard.cs: Initial support for keyboard and limited modifiers.
334         * XplatUIOSX.cs: New reversible frame support.  Wire in the new keyboard
335         driver.  Padd the bottom of all real windows so the resize thumb doesn't
336         obscure scroll/status bars.
337
338 2007-10-22  Jonathan Pobst  <monkey@jpobst.com>
339
340         * WindowsFormsSection.cs: Implement.
341
342 2007-10-22  Everaldo Canuto  <ecanuto@novell.com>
343
344         * MdiClient.cs: Maximize new active mdi child when a maximized child is 
345         closed see #325434 patch.
346
347 2007-10-22  Everaldo Canuto  <ecanuto@novell.com>
348
349         * MdiClient.cs: Fix remaining issues from layout vertical and horizontal,
350         see #325434 patch.
351
352 2007-10-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
353
354         * PropertyGridView.cs: When showing the textbox for a grid item,
355         have two local variables to store the read-only and non-editable
356         status of a grid item (we were previously using just one variable
357         to do this, when actually they are slightly different).
358         Fixes part of #325023.
359
360 2007-10-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
361
362         * PropertyGridView.cs: When showing a drop-down list, try to get the
363         values using TypeConverter.ConvertTo (to convert to a string). Fixes
364         part of #325023.
365
366 2007-10-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
367
368         * PropertyGrid.cs: When updating a property and populating sub grid
369         items, remove the previous ones, and invalidate the specific area.
370         * PropertyGridView.cs: A new InvalidateBelowGridItem to invalidate the
371         area behind a grid item.
372         * GridItemCollection.cs: Add an internal Clear method, to allow us to
373         clean the items if needed (specially for controls implementing 
374         ICustomTypeDescriptor and returning a variable number of properties).
375         Fixes #324865.
376
377 2007-10-19  Jonathan Pobst  <monkey@jpobst.com>
378
379         * TextControl.cs: Clean up and document the Insert function.
380
381 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
382
383         * TextControl.cs: Make sure we know our start point for updating the view
384         in ReplaceSelection.  Fixes an issue where pasting multiline text wouldn't
385         update the view.
386
387 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
388
389         * ListView: Couple of corcompare fixes.
390
391 2007-10-17  Geoff Norton  <gnorton@novell.com>
392
393         * XplatUIOSX.cs: Implement support for window icons in the dock.  Set
394         the title caption of real window.
395
396 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
397
398         * ErrorProvider.cs: Add the error provider's internal window to a 
399         containercontrol when the parent changes.  [Fixes bug #329714]
400
401 2007-10-17  Geoff Norton  <gnorton@novell.com>
402
403         * XplatUIOSX.cs: Implement ScrollWindow.  Properly create TOOLWINDOWs.
404         When we make a new window; restore the old active window - fixes dialogs.
405
406 2007-10-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
407
408         * PropertyGridView.cs: Look for RefreshPropertiesAttribute
409         when modifying a property, and if found then invalidate as
410         requested.
411         Fixes part of #324865.
412
413 2007-10-17  Geoff Norton  <gnorton@novell.com>
414
415         * XplatUIOSX.cs: Re-enable the native driver on the Mac.  This is still
416         highly experimental.  Fixed coordinate translation.  Fixed window locations.
417         Initial support for clipping. Implemented NC areas and menus.  Support for
418         launching from command line from Will Johansson (wjohansson@atacomm.com).
419         * OSXStructs.cs: Add ProcessSerialNumer (Patch from Will Johansson
420         wjohansson@atacomm.com)
421         * Hwnd.cs: Add some internal structures for tracking Mac cursors.
422         Hwnds now track the existence of all of their children for Mac clipping.
423     * XplatUI.cs: Re-enabled the native driver on the Mac.
424
425 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
426
427         * Line.cs: Move the InsertString function to here.
428         * TextControl.cs: Cleanup some duplicate code, move some InsertString
429         functionality to Line.
430
431 2007-10-17  Geoff Norton  <gnorton@novell.com>
432
433         * ComboBox.cs: Destroy the popup after hiding it.  Fixes #322582
434
435 2007-10-16  Gert Driesen  <drieseng@users.sourceforge.net>
436
437         * ButtonBase.cs: Fixed IsDefault to use assigned value instead of
438         always setting value to true.
439         * Form.cs: When changing AcceptButton, notify new and original button.
440
441 2007-10-16  Jonathan Pobst  <monkey@jpobst.com>
442
443         * Form.cs: Guard against an NRE when the user sets the AcceptButton to
444         a custom control that implements IButtonControl instead of an actual
445         button.  [Fixes bug #334244]
446
447 2007-10-15  Everaldo Canuto  <ecanuto@novell.com>
448
449         * Form.cs: Change SelectActiveControl to internal, we need to call it in
450         MdiWindowManager.
451         
452         * MdiWindowManager.cs: In RaiseActivated call SelectActiveControl to select
453         active control when activate a new mdi window.
454         
455         [Fixes bug #330495]
456
457 2007-10-15  Everaldo Canuto  <ecanuto@novell.com>
458
459         * ComboBox.cs: Dont implicit add listbox_ctrl on OnHandleCreated because it
460         is already added.
461         [Fixes bug #333617]
462
463 2007-10-15  Jonathan Pobst  <monkey@jpobst.com>
464
465         * TextControl.cs: When SuspendRecalc is first called, reset the recalc_start
466         to MaxValue and recalc_end to MinValue.  Currently, recalc_start is always 1,
467         so we always recalculate the whole document instead of just the new part.
468         [Fixes bug #325082]
469
470 2007-10-15  Jonathan Pobst  <monkey@jpobst.com>
471
472         * LineTag.cs: Fix a case where the GetCharIndex would not return 0
473         when the mouse was to the left of the first character in the line.
474
475 2007-10-15  Jonathan Pobst  <monkey@jpobst.com>
476
477         * TextBox.cs, TextBoxBase.cs: When setting the document's password
478         character, use the property instead of the variable so that the
479         UseSystemPasswordChar property is taken into account.
480         [Fixes bug #333748]
481
482 2007-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
483
484         * FolderBrowserDialog.cs: When a node is right clicked and the "New
485         folder" contex menu appears, actually add the new folder to it, even
486         if the node is not currently selected. Still use SelectedNode in case 
487         there wasn't found a node under the pointer.
488         Fixes #325452.
489
490 2007-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
491
492         * ListViewItem.cs: When retrieving the focused state, the index check
493         should be done only when ListView is in virtualmode, as it is an
494         expensive check for normal mode.
495
496 2007-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
497
498         * ListViewItem.cs: Make the focus state information be stored
499         in the ListView, not in the items. This is done to match the MS
500         behaviour for items that are not yet part of a ListView control;
501         besides that, since just one item can be focused at the same time,
502         we save a little space in our items.
503         Fixes part of #331643.
504
505 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
506
507         * ComboBox.cs: When focus is lost, deselect the text. When setting
508         text of control, select all text. Do not hide selection when control
509         does not have focus. Fixes bug #333663.
510
511 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
512
513         * TextBoxBase.cs: On 2.0 profile, throw ArgumentOutOFRangeException
514         instead of ArgumentException when SelectionLength is set to negative
515         value. Added same check to SelectionStart. Code formatting.
516
517 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
518
519         * TextBoxBase.cs: Invalidate selection before changing SelectionLength
520         or SelectionStart. Code formatting.
521
522 2007-10-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
523
524         * TreeView.cs: drag_begin_x and drag_begin_y are now set to -1,
525         indicating that there was not a previous drag-and-drop operation going
526         on.
527         Fixes part of #325071.
528
529 2007-10-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
530
531         * X11Dnd.cs: When DragEventArgs.Effect is set to a value not part of
532         AllowedEffect, don't let the drop operation happen. 
533         Fixes #32580.
534
535 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
536
537         * TextRenderer.cs: Use GDI on Windows in both the 1.1 and 2.0 profiles.
538
539 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
540
541         * Line.cs, LineTag.cs: Guard against an exception when Document.Clear
542         is called.
543
544 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
545
546         * Line.cs: Add a method that finds the tag that contains an x-coord.
547         * LineTag.cs: Add a method that finds the character at an x-coord using
548         a binary search, the old way was a linear search.
549         * TextControl.cs: Change FindCursor to use the above new methods.
550
551 2007-10-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
552
553         * DragEventArgs.cs: Allow Effect to have a non allowed value (a
554         value different than AllowedEffect). This should be possible to
555         indicate that dragging is not possible in some control/area.
556
557 2007-10-11  Jonathan Pobst  <monkey@jpobst.com>
558
559         * LineTag.cs: Encapsulate all variables with properties.  Calculate ascent/
560         descent internally when font changes instead of outside code being responsible
561         for setting it.
562         * Line.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs: Use Tag properties
563         instead of accessing internal variables.
564
565 2007-10-09  Everaldo Canuto  <ecanuto@novell.com>
566
567         * MdiClient.cs: Always call ArrangeIconicWindows before any arrangement and
568         remove special treatment for ArrangeIcons since it is already arranged.
569
570 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
571
572         * TextBoxTextRenderer.cs: Draw takes a Color now instead of a Brush, as
573         the Win32 backend uses Color.
574         * Line.cs, LineTag.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs:
575         Refactor to store a Color instead of a Brush for Color.
576
577 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
578
579         * Line.cs, LineTag.cs: Override GetHashCode to make a compiler warning go
580         away.  I didn't realize I needed this when I refactored these earlier.
581
582 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
583
584         * LineTag.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs: Refactor to
585         store a Color structure and use the ResPool for back color instead of
586         holding onto brushes.
587
588 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
589
590         * TextControl.cs: Fix how we calculate the end of the tag we are drawing.
591         [Fixes bug #325592]
592
593 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
594
595         * MonthCalendar.cs: When ShowWeekNumbers is changed, force the calendar
596         to recalculate its size.  Fixes a part of bug #331052.
597
598 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
599
600         * NotifyIcon.cs: Set the correct mouse button when handling right mouse
601         button.  Fixes a part of bug #331052.
602
603 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
604
605         * Form.cs: Trim NewLine before setting XPlatUI.SetText, and when setting
606         the CreateParams.
607         * ThemeWin32Classic.cs: Trim NewLine before drawing MDI children window
608         decorations.
609         [Fixes bug #330986]
610
611 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
612
613         * TextBoxTextRenderer.cs: Don't make this a static class, as static
614         doesn't exist in 1.1.  (Thanks jb!)
615
616 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
617
618         * TextBoxTextRenderer.cs: Abstract text measuring and drawing to this
619         class to allow us to use different backends on different platforms.
620         Linux uses the current [Draw|Measure]String backend.  Windows uses
621         the TextRenderer.[Draw|Measure]Text backend, which uses GDI instead
622         of GDI+.  This leads to better looking text and more accurate measurements
623         on Windows, fixing many of the reported issues.
624         * Line.cs, LineTag.cs: Update to use TextBoxTextRenderer.
625
626 2007-10-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
627
628         * FolderBrowserDialog.cs: When running on Windows,
629         try to detect paths such "C:" and add Path.DirectorySeparatorChar,
630         since we must match both "C:" and "C:\" forms. A little hackish, but
631         works.
632         Fixes #325247.
633
634 2007-10-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
635
636         * ListView.cs: When calling EndEdit (after editing an item),
637         create a new instance of LabelEditEventArgs to keep clean the fields
638         in case we get a new call to BeginEdit; also do Application.DoEvents
639         to have focus in synch. This is a fix similar to TreeView's #325244.
640
641 2007-10-07  Andreia Gaita <avidigal@novell.com>
642
643         * HtmlDocument.cs, HtmlElement.cs, WebBrowser.cs: Added dom support
644         * WebBrowserBase.cs: Added dialog support, calling the
645           WebBrowserDialogs classes for each specific dialog type.
646
647 2007-10-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
648
649         * ListView.cs: When the last item is focused and is removed,
650         move the focus to the previous item (in Items order). This is what MS
651         does.
652         Fixes #330415.
653
654 2007-10-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
655
656         * ListView.cs: In ListViewItemCollection, make Remove call RemoveAt,
657         instead of the opposite (RemoveAt call Remove). This is a better
658         approach since we don't need to to a pair of traversals when using
659         RemoveAt.
660
661 2006-10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
662
663         * TreeView.cs: When Keys.Left is pressed, before trying to Collapse
664         check that the node actually has nodes, and if not, move to the
665         parent node instead. 
666         Fixes #325265.
667
668 2006-10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
669
670         * TreeView.cs: Move the previous change to the general case (to
671         call Application.DoEvents in cases where the method was called by
672         different places).
673
674 2007_10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
675
676         * TreeView.cs: When calling EndEdit and we need to hide the textbox,
677         call Application.DoEvents. This is neccessary when we get a call to
678         BeginEdit from an AfterLabelEdit handler, because the focus always
679         goes to the TreeView, even if we try to give it to our
680         LabelEditTextBox. The call do Application.DoEvents seems to
681         synchronize the focus, basically.
682         Fixes #325244.
683
684 2007-10-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
685
686         * TreeView.cs: When AfterLabelEdit event is fired, TreeNode.IsEditing
687         should be false. This also removes some nasty recursive paths. Fixes
688         part of #325244.
689
690 2007-10-04  Everaldo Canuto  <ecanuto@novell.com>
691
692         * MdiClient.cs: When cascade (layout) mdi window that is maximized, set the
693         state to normal. Also resize window when cascading. Fixes #325433. 
694
695 2007-10-04  Jonathan Pobst  <monkey@jpobst.com>
696
697         * RichTextBox.cs: When SelectionColor is set to Color.Empty, use
698         DefaultForeColor, as drawing empty colored lines isn't very useful.
699         [Fixes the not drawn lines part of bug #324358]
700
701 2007-10-04  Jonathan Pobst  <monkey@jpobst.com>
702
703         * TextControl.cs: Move Line and LineTag classes into separate files to
704         make things easier to find.
705         * Line.cs, LineTag.cs: Bring coding standards up to Mono's guidelines.
706         * RichTextBox.cs: Capitalize LineTag.Length property access.
707         - This is purely an organizational/formatting change, no logic changed. -
708
709 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
710
711         * ThemeWin32Classic.cs: Do not show focus rectangle in radio buttons when
712         text is empty.
713
714 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
715
716         * ThemeWin32Classic.cs: Do not show focus rectangle in checkboxes when
717         text is empty.
718
719 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
720
721         * ComboBox.cs: On contructor use backgound_color instead of BackColor to
722         prevent calling of OnBackColorChanged. Fixes #325321.
723
724 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
725
726         * TextBox.cs: When check enabled uses Enabled property instead of is_enabled
727         because control can be disabled because owner is disabled.
728
729 2007-10-02  Jonathan Pobst  <monkey@jpobst.com>
730
731         * ComboBox.cs: For the 1.1 profile, the default SelectedText is
732         string.Empty, test failed from previous change.
733
734 2007-10-02  Jonathan Pobst  <monkey@jpobst.com>
735
736         * TextBoxBase.cs: For the 1.1 profile, the default SelectedText
737         is null, not String.Empty.  See bug #323038.
738
739 2007-10-01  Jonathan Pobst  <monkey@jpobst.com>
740
741         * TextControl.cs: Change the margins to match MS a little better.
742         Still not perfect for X11 due to some DrawString differences, but
743         is still an improvement over the old stuff.
744         Partially fixes #324467.
745
746 2007-09-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
747
748         * FolderBrowserDialog.cs: When using MyComputer as 
749         RootFolder, let absolute paths be considered as valid ones. Also, use
750         Path.DirectorySeparatorChar instead of Path.AltDirectorySeparatorChar,
751         for Windows compatibility.
752         Partially fixes #325247.
753
754 2007-09-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
755
756         * FolderBrowserDialog.cs: Fix the recursive FindPathInNodes method.
757         Also remove the stack.Count > 0 check in FBTreeView.SetSelectedNode
758         method, since it causes the dialog to not select folders directly
759         under the root path (when setting SelectedPath property).
760
761 2007-09-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
762
763         * TreeNode.cs: When calling Expand/Collapse and need to call 
764         ExpandBelow/CollapseBelow respectively, take into account
765         partially visible nodes (previously Expanding/Collapsing
766         a partially visible node in the bottom was not updating its +- sign).
767
768 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
769
770         * TreeView.cs: When calling Expand on a TreeNode, and we need to
771         expand nodes below (ExpandBelow), scroll the entire Viewport
772         area if the node is above it and not visible (instead of scrolling
773         the area from node's Bottom, which applies only when the node is
774         visible).
775         Fixes #325266.
776
777 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
778
779         * TreeView.cs: When calling ExpandAll, set SelectedNode to the top
780         node in the bottom area (as .Net does). This is done to preserve the
781         scroll position when ExpandAll is called before handle is created for
782         the 1.1 profile (bottom area, as opposed to top area in 2.0).
783         Fixes #324103.
784
785 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
786
787         * TreeView.cs: When calling ExpandAll, don't move the scroll to the 
788         bottom area if we are in fact not using the vertical scroll bar.
789         Fixes #324824.
790
791 2007-09-27  Jonathan Pobst  <monkey@jpobst.com>
792
793         * Control.cs: Comment out a double buffering optimization that doesn't
794         take into account invalidates created in OnPaint, causing the control
795         to never be redrawn.  It would take quite a bit of work to work around
796         this, but I left it commented with an explanation for later possible
797         optimization.
798         [Fixes bug #328681]
799
800 2007-09-27  Jonathan Pobst  <monkey@jpobst.com>
801
802         * Control.cs: Ask parent to perform a layout if control is AutoSize and
803         the text changes.
804         * RadioButton.cs: Implement GetPreferredSizeCore.
805         [Fixes bug #328672]
806
807 2007-09-26  Jonathan Pobst  <monkey@jpobst.com>
808
809         * RichTextBox.cs, TextBoxBase.cs, WindowsFormsSynchronizationContext.cs:
810         corcompare stuffs.
811
812 2007-09-26  Jonathan Pobst  <monkey@jpobst.com>
813
814         * Application.cs: Move the sync context stuff to Run instead of RunLoop
815         so that it doesn't get uninstalled on modal forms.
816         * Control.cs: Install a sync context when a control is created.
817         * WindowsFormsSyncronizationContext.cs: Create a private static control
818         to invoke on.  This is easier than trying to find a created control we
819         can use.
820         [Fixes bug #327608]
821
822 2007-09-25  Jonathan Pobst  <monkey@jpobst.com>
823
824         * Application.cs: Install a WindowsFormsSynchronizationContext in the
825         run loop, and uninstall it when done.
826         * WindowsFormsSynchronizationContext.cs: Implement.
827         [Fixes the common case in bug #327608]
828
829 2007-09-23  Gert Driesen  <drieseng@users.sourceforge.net>
830
831         * DataGridViewCellCollection.cs: Added argument checks for indexers.
832         Use case-insensitive lookup of column name in indexer. Code
833         formatting.
834
835 2007-09-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
836
837         * TreeNode.cs: When collapsing or expanding a node, check whether its
838         change will affect the visible area (we were previously doing a
839         IsVisible check, but that check is not enough since children nodes
840         could be still visible). Fixes part of #325266.
841
842 2007-09-21  Jonathan Pobst  <monkey@jpobst.com>
843
844         * TreeView.cs: Always select the first node when the TreeView gets
845         focus if there is no currently selected node.
846         [Fixes bug #324279]
847
848 2007-09-21  Jonathan Pobst  <monkey@jpobst.com>
849
850         * TreeView.cs: Do not raise BeforeSelect or AfterSelect when the
851         node being selected is null.
852         [Patch from Yves Bastide fixes bug #326858]
853
854 2007-09-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
855
856         * TreeNode.cs: Add an internal ArePreviousNodesExpanded, to know
857         whether all the parent nodes are expanded.
858         * TreeNodeCollection.cs: When adding a new node an calling SetupNode,
859         call RecalculateVisibleOrder if all previous nodes are expanded.
860         Before that we were doing a IsVisible check, but sometimes the node
861         is not in the visible area, but _should_already be ready, because of
862         all previous nodes are expanded. Fixes #325259.
863
864 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
865
866         * ToolStripSplitButton.cs: Call the ButtonClick event if the button
867         portion of the item is clicked.
868
869 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
870
871         * TextControl.cs: Do not tell the system to move the cursor if the
872         textbox isn't focused.  Fixes part of bug #322668.
873
874 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
875
876         * ComboBox.cs: When there are no items, do not show the dropdown if
877         the down arrow is clicked.  Fixes part of bug #322668.
878
879 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
880
881         * ToolStripComboBox.cs: Manually set the size of this control in the
882         constructor, as it doesn't seem to be the same as DefaultSize.
883         Fixes a failing monobuild test.
884
885 2007-09-19  Jonathan Pobst  <monkey@jpobst.com>
886
887         * DateTimePicker.cs: If the user sets MinDate to DateTime.MinValue,
888         change it to DateTimePicker.MinDateTime.  [Fixes bug #326609]
889
890 2007-09-19  Jonathan Pobst  <monkey@jpobst.com>
891
892         * Theme.cs: FileDialogs should be using DesktopDirectory instead of
893         Desktop.  This lets it work for people who have moved their desktops
894         from the default location on windows.  For people who have not, both
895         values are the same, so it shouldn't hurt anything.  [Fixes bug #325270]
896
897 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
898
899         * ToolStripControlHostTest.cs: DefaultSize is based off hosted control,
900         but when the base constructor sets this, the control is null.  Set it
901         again in the constructor.  Fixes a failing monobuild test.
902
903 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
904
905         * ToolStripDropDownItem.cs: Make sure Click and DropDownOpened events
906         get called.
907         * ToolStripSplitButton.cs: Make sure MouseDown and MouseUp events get
908         called.
909
910 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
911
912         * ToolStrip.cs: Don't show tooltips for ToolStripTextBoxes, they
913         will handle it themselves.
914         * ToolStripItem.cs: When deciding what the text of a tooltip should
915         be, use the Text property instead of the text field.
916         * ToolStripTextBox.cs: Handle tooltips.
917         [Fixes bugs #325417 and #325973]
918
919 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
920
921         * ToolStripDropDownButton.cs: Only drop down overflow menu with a
922         left click.  Fixes the easy part of bug #325969.
923
924 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
925
926         * ToolStrip.cs: Set AutoSizeMode back to GrowAndShrink to refix
927         bug #325406, but set a minimum for StatusStrip to 22 to keep
928         bug #325390 fixed.  I think this minimum would have been figured
929         up automatically if the grip was actually a ToolStripItem, but it
930         currently is not.
931
932 2007-09-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
933
934         * ListView.cs: max_label_wrapping is now 30 pixels instead of 38,
935         as this is apparently the actual value used by .Net. Also apply
936         ItemPadding in Details view only, and decrease the general width padding,
937         to have only the needed. This should fix #324340 in Windows too.
938
939 2007-09-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
940
941         * ListViewItem.cs: Don't Invalidate item if parent is inside
942         a BeginUpdate/EndUpdate block. This prevents to have differences
943         between the ListView and items state, as well as avoid some exceptions
944         there.
945         * ListView.cs: Make 'updating' field internal.
946
947 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
948
949         * ToolStripControlHost.cs: Realign control when ControlAlign changes.
950         * ToolStripItem.cs: Use ImageScalingSize when calculating preferred
951         size if appropriate.
952         Fixes reopened bug #325414.
953
954 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
955
956         * ToolStrip.cs: Set AutoSizeMode back to GrowOnly.
957         * ToolStripItem.cs: Invalidate before and after our new autosize when
958         text changes.
959         Fixes reopened bug #325390.
960
961 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
962
963         * ToolStripMenuItem.cs: Make sure we invalidate when clicked so
964         mnemonics can be drawn or undrawn correctly.  Fixes reopened bug 
965         #325044.
966
967 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
968
969         * Control.cs: Do WM_CONTEXTMENU before OnMouseUp.  [Fixes bug #325535]
970
971 2007-09-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
972
973         * ColumnHeader.cs: When drawing column text, use EllipsisCharacter
974         instead of EllipsisWord (by equistango at gmail.com). Fixes part of
975         #82734.
976
977 2007-09-14  Jonathan Pobst  <monkey@jpobst.com>
978
979         * ToolStrip.cs: Make ToolStrip selectable when TabStop = true.  Find an
980         item to select when the ToolStrip is selected.
981         * ToolStripControlHost: Realign the control when the bounds or visibility
982         change.
983         * ToolStripItem.cs: When selected, if it's a control host, focus the control.
984         * ToolStripOverflow.cs: When laying out the drop down, respect the item's
985         preferred height.
986         * ToolStripTextBox.cs: OnPaintInternal should call base.OnPaintInternal, not
987         base.OnPaint.  Was causing text not to be drawn.
988
989 2007-09-14  Jonathan Pobst  <monkey@jpobst.com>
990
991         * SplitterPanel.cs: Ignore attempts to set AutoSizeMode.
992
993 2007-09-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
994
995         * TreeView.cs: When creating the label edit text box,
996         set is initially to Visible = false. This is done to
997         prevent a confusion in the layout which makes it to lose
998         focus when shown the first time. Fixes part of #82592.
999
1000 2007-09-13 Andreia Gaita <avidigal@novell.com>
1001
1002         * WebBrowserBase.cs: add FocusOption enumeration for finer focus control
1003
1004 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1005
1006         * ToolStrip.cs: Take Margin into account when calculating preferred
1007         size.  Also, allow preferred size to get smaller than the explicit
1008         size.
1009         * ToolStripTextBox.cs: Don't change the GetPreferredSize implementation.
1010         First step towards fixing bug #82747.
1011
1012 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1013
1014         * TreeView.cs: Applied patch from latency@gmx.de to not paint the
1015         full row select background over the plus/minus glyph.  Also, turn
1016         off the focus rectangle for full row select since MS doesn't seem
1017         to ever paint it.  [Fixes bug #81839]
1018
1019 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1020
1021         * ToolStrip.cs: Don't FocusInternal if there is no selected item.
1022         This was causing keyboard opened dropdowns to lose focus.
1023         [Fixes bug #82803]
1024
1025 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1026
1027         * Control.cs: If Rectangle.Empty is passed to Invalidate, use
1028         ClientRectangle instead.  [Fixes bug #82838]
1029
1030 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1031
1032         * SplitContainer.cs: We can't reset Visible on every layout because
1033         someone may have set Visible = false explicitly on a SplitterPanel.
1034         Make sure when we switch orientation the SplitterDistance does not
1035         change.  Fixes two failing tests.
1036
1037 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1038
1039         * TreeView.cs: Use MeasureTextInternal instead of MeasureText in
1040         TextRenderer, since the latter is only available in 2.0.
1041
1042 2007-09-13  Ivan N. Zlatev <contact@i-nz.net>
1043
1044         * Cursor.cs: Fix Cursor.Current to apply Cursor.Default.
1045         * SplitContainer.cs: Implement FixedPanel layouting.
1046
1047 2007-09-12  Andreia Gaita  <avidigal@novell.com>
1048
1049         * WebBrowserBase.cs: setup shutdown routine
1050
1051 2007-09-12  Andreia Gaita  <avidigal@novell.com>
1052
1053         * Application.cs: Let keyboard events that are targetted 
1054                 to non-mwf windows hosted inside mwf (as in, webbrowser),
1055                 propagate properly. Fixes keyboard handling on the webbrowser.
1056
1057 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1058
1059         * ListView.cs: When handling MouseUp event and we are 
1060         highligting a node with the mouse right button, don't trigger
1061         Before/AfterSelecting event, since we are not actually selecting
1062         the node.
1063
1064 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1065
1066         * TreeView.cs: When editing a node, modify the edit text box
1067         depending on the text length (as you are typing), like MS does.
1068
1069 2007-09-12  Jonathan Pobst  <monkey@jpobst.com>
1070
1071         * ToolStrip.cs: Fixup preferred size calculations for vertical toolbars. 
1072         Override GetPreferredSizeCore to perform calculations.  Remove custom
1073         autosize logic.  [Fixes bug #82739]
1074
1075 2007-09-12  Jonathan Pobst  <monkey@jpobst.com>
1076
1077         * TextBoxBase.cs: Modified should default to false.
1078
1079 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1080
1081         * Control.cs: Update the anchoring distances even when layout is supspended.
1082         Patch provided by George fixes bug #82805.
1083
1084 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1085
1086         * Control.cs: Provide a setter for ExplicitHeight.
1087         * TextBoxBase.cs: Now that we have the implementation for explicit heights,
1088         remove the hacks in here for requested_height.
1089         [Fixes bug #82749]
1090
1091 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1092
1093         * ScrollBar.cs: Fix an issue reported on the lists where setting a scrollbar's
1094         Maximum to lower that its current Value caused an ArgumentException by setting
1095         the Value to the new Maximum.
1096
1097 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1098
1099         * ThemeWin32Classic.cs: Math is hard!  Fix some math so that the TrackBar
1100         handle moves to the closest tick when it is being dragged.
1101         [Fixes bug #82751]
1102
1103 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1104
1105         * ToolStripManager.cs: When we have added MDI buttons onto a MenuStrip, we
1106         can't let them count as real items when calculating where to merge in the
1107         user's items.  [Fixed bug #82786]
1108
1109 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1110
1111         * ToolStripMenuItem.cs: Add a parent type check so we don't crash on people
1112         who want to add a menu item directly onto a toolstrip.
1113         [Fixes bug #82775, part II]
1114
1115 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1116
1117         * StatusStrip.cs: Synchronize SetDisplayedItems with the ToolStrip version.
1118         * ToolStrip.cs: If a ToolStripItem set to not visible is added to a ToolStrip,
1119         don't set it to available.
1120         * ToolStripItem.cs: When Visible is changed, tell the owner to perform a layout.
1121         [Fixes bug #82727, part II]
1122
1123 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1124
1125         * StatusStrip.cs: Change item placement to None if not visible.
1126         * ToolStripItem.cs: Invalidate when InternalVisible changes.
1127         These should have been committed to fix 82723, but I missed them.
1128
1129 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1130
1131         * ToolStrip.cs: Make sure ItemClicked is raised before the ToolStripItem's
1132         Click, and that it is only called once.
1133         * ToolStripMenuItem.cs: Call OnClick even when there are dropdown items.
1134         * ToolStripDropDownItem.cs: Override HandleItemClick so dropdowns stay
1135         dropped down.
1136         [Fixes bug #82775]
1137
1138 2007-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1139
1140         * ColumnHeaderSample.cs: Use 5 pixels as extra height instead of 8
1141         to match .Net.
1142         * ThemeWin32Classic.cs: For the columns text, use 5 pixels as left padding
1143         instead of 8, just like above. Partially fixes #82734.
1144
1145 2007-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1146
1147         Patch by Ernesto Carrea <equistango at gmail.com>. Partially 
1148         fixes #82734.
1149
1150         * ListView.cs: Remove extra space between rows in Details view (match
1151         .Net). 
1152         * ThemeWin32Classic.cs: Header text should use ListView.Font, not
1153         the DefaultFont.
1154
1155 2007-09-08  Gert Driesen  <drieseng@users.sourceforge.net>
1156
1157         * Application.cs: Modified ProductVersion to return value of
1158         AssemblyInformationVersion if available, and fallback to assembly
1159         version. Fixes bug #82746. Code formatting.
1160         * BindingSource.cs: Remove NIE from Dispose, and mark it MonoTODO
1161         instead.
1162
1163 2007-09-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1164
1165         * Control.cs: When updating ZOrder for a child control,
1166         take into account the implicit ones (we need it in our controls
1167         using them). Fixes #82642.
1168
1169 2007-09-07  Jonathan Pobst  <monkey@jpobst.com>
1170
1171         * ToolStripItem.cs: Add support for animated images.
1172         [Fixes bug #82726]
1173
1174 2007-09-07  Jonathan Pobst  <monkey@jpobst.com>
1175
1176         * ToolStrip.cs: Make sure we aren't drawing anything that isn't 
1177         visible.  [Fixes bug #82727]
1178
1179 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1180
1181         * ToolStripItem.cs: If AutoSize changes the size of our item, invalidate
1182         so we repaint using the new size.  [Fixes bug #82723]
1183
1184 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1185
1186         * TreeView.cs: If ShowLines is true, we should ignore the FullRowSelect
1187         option.  [Fixes bug #81779]
1188
1189 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1190
1191         * TreeView.cs: Override HandleClick because the StandardClick style is
1192         set to false.  According to MSDN (and testing), the click events should
1193         only be raised when the click occurs on a TreeNode.  [Fixes bug #81739]
1194
1195 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1196
1197         * ToolStripTextBox.cs: Invalidate our textbox when it loses focus, so
1198         the border will disappear.  Fixes reopened #82653.
1199
1200 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1201
1202         * Control.cs: If the control is autosize, and its preferred size changes
1203         when it lays out its children, tell its parent so it can be re-layed out.
1204         Fixing some of the fallout from r85433.
1205
1206 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1207
1208         * ThemeWin32Classic.cs: Fix a NRE caused by r85427 because RadioButton
1209         and CheckBox share some code.
1210
1211 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1212
1213         * TrackBar.cs: Only call OnScroll if we actually changed the Value of
1214         the TrackBar, not every mouse move.  [Fixed bug #82718]
1215
1216 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1217
1218         * ThemeWin32Classic.cs: Allow a CheckBox to be rendered like a Button
1219         under 2.0 rendering.  [Fixes bug #82657]
1220
1221 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1222
1223         * TreeView.cs: If we found a TreeNode to display a context menu, but
1224         it doesn't have one to show, let the TreeView display its menu
1225         instead.  [Fixes bug #82680]
1226
1227 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1228
1229         * ToolStripTextBox.cs: TextBox no longer call OnPaint, we need to use
1230         OnPaintInternal instead.  Give the internal TextBox a Border property
1231         so it can draw itself more correctly.  [Fixes bug #82653]
1232
1233 2007-09-06  Zoltan Varga  <vargaz@gmail.com>
1234
1235         * HtmlHistory.cs HtmlWindow.cs HtmlWindowCollection.cs ListBindingHelper.cs WindowsFormsSection.cs WindowsFormsSynchronizationContext.cs: Stubs for missing 2.0 classes.
1236
1237 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
1238
1239         * ComboBox.cs: Adjust combobox button state to reflect current state when
1240         back to enabled = true. Fixes first issue of #82654.
1241
1242 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
1243
1244         * Control.cs: Fix last patch regression, prevent forms to update zorder when
1245         setting visible property.
1246
1247 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
1248
1249         * Control.cs: Update zorder after control creation in SetVisibleCore, it 
1250         fix zorder for controls initially created as non visible. Fixes #82667.
1251
1252 2007-09-04  Everaldo Canuto  <everaldo@simios.org>
1253
1254         * ThemeWin32Classic.cs: Adjust checkbox light color to ControlLightLight to
1255         mimic win32 look. Fixes #82656.
1256
1257 2007-09-01  Zoltan Varga  <vargaz@gmail.com>
1258
1259         * FileDialogCustomPlace.cs FileDialogCustomPlacesCollection.cs: 
1260         Stubs for new net 3.5 classes.
1261
1262 2007-08-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1263
1264         * ListViewItem.cs: In ListViewItemCollection operations calculate
1265         Layout for owner as well as invalidate it. Fixes part of #82642.
1266
1267 2007-08-31  Jonathan Pobst  <monkey@jpobst.com>
1268
1269         * ToolStripItem.cs: Take Parent/Owner's Enabled state in to account
1270         when returning Enabled.  [Fixes bug #82651]
1271
1272 2007-08-30  Everaldo Canuto  <everaldo@simios.org>
1273
1274         * ToolBar.cs: Fix button size for non flat toolbars. Fixes #82368.
1275
1276 2007-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1277
1278         * ListView.cs: Put item padding info in a single place
1279         (Theme.ListViewItemPaddingWidth) to have working AutoResize on
1280         columns again.
1281         * ThemeWin32Classic.cs:
1282         * Theme.cs: Likewise.
1283
1284 2007-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1285
1286         * ListView.cs: When a ListViewSubItem instance is invalidated,
1287         invoke Invalidate on parent ListViewItem, not parent ListView.
1288         Fixes #81570.
1289
1290 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
1291
1292         * ListView.cs, ListViewItem.cs: corcompare stuffs.
1293
1294 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
1295
1296         * BindingMemberInfo.cs: Implement == and != operators.
1297
1298 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
1299
1300         * HtmlElementEventArgs.cs: Implement properties.
1301
1302 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1303
1304         * HtmlElementErrorEventArgs.cs, HtmlElementErrorEventHandler.cs: Added.
1305
1306 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1307
1308         * TabControl.cs: I was looking into the MonoTODO on TabPageCollection.
1309         Add (string,string,string) to implement the imagekey.  It turns out, we
1310         use the requested imagekey whereas .Net does not.  So I broke ours to match
1311         theirs.  :(
1312
1313 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1314
1315         * Form.cs, UserControl.cs: Override ValidateChildren, AutoValidate.
1316
1317 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1318
1319         * ContainerControl.cs: Implement ValidateChildren and new Validate overload.
1320
1321 2007-08-29  Gert Driesen  <drieseng@users.sourceforge.net>
1322
1323         * FolderBrowserDialog.cs: Set Tag of newly created node, and keep it
1324         up-to-date. Fixes bug #82618.
1325
1326 2007-08-29  Everaldo Canuto  <everaldo@simios.org>
1327
1328         * TextBoxBase.cs: Call CalculateDocument after changes Lines property to
1329         reflect document changes. Fixes #82367.
1330
1331 2007-08-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1332
1333         * ListView.cs: Add/fix some override differences between 1.1 and 2.0,
1334         as well as add new ones. This should make work the BackgroundImage
1335         property for ListView again.
1336
1337 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1338
1339         * DataGrid.cs, DataGridViewButtonColumn.cs, DataGridViewCheckBoxColumn.cs,
1340         DataGridViewComboBoxColumn.cs, DataGridViewImageColumn.cs, DataGridViewLinkColumn.cs,
1341         DataGridViewTextBoxColumn.cs, ToolTip.cs: corcompare stuffs.
1342
1343 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1344
1345         * Control.cs, XPlatUI.cs, XPlatUIDriver.cs, XPlatUIWin32.cs: Implement
1346         IsKeyLocked.
1347
1348 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1349
1350         * Cursor.cs: Add HotSpot, hook into XPlatUI.GetCursorInfo.
1351         * XPlatUIWin32.cs: Implement hotspot lookup in GetCursorInfo.
1352
1353 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1354
1355         * RadioButton.cs: Use 2.0 rendering.  Use base implementation of TextAlign.
1356         * Theme.cs, ThemeWin32Classic.cs: Implement 2.0 rendering for RadioButton.
1357
1358 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
1359
1360         * CursorConverter.cs: Implement conversion to InstanceDescriptor.
1361
1362 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
1363
1364         * GridEntry.cs: Implement GetService.
1365
1366 2007-08-27  Jonathan Pobst  <monkey@jpobst.com>
1367
1368         * LabelEditTextBox.cs, TreeView.cs: After hiding the textbox used
1369         for label editting, make sure we focus back on the TreeView.
1370         [Fixes bug #82590]
1371
1372 2007-08-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1373
1374         * ListView.cs: Add some 2.0 overrides.
1375
1376 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
1377
1378         * Form.cs: Uses opacity var instead of Opacity property in CreateHandle
1379         because getter dont returns right value before handle creation. Thanks 
1380         to George. Fixes #82569.  
1381
1382 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
1383
1384         * Theme.cs: Revert last patch, it causes error under win32. 
1385
1386 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
1387
1388         * Theme.cs: Uses Environment.SpecialFolder.DesktopDirectory instead of 
1389         Environment.SpecialFolder.Desktop in Places method, Desktop returns the 
1390         logical Desktop rather than the physical file system location. Fixes #82603. 
1391
1392 2007-08-26  Everaldo Canuto  <ecanuto@novell.com>
1393
1394         * MessageBox.cs: Add clipboard copy (ctrl+c) to messagebox. Thanks Andy Hume
1395         for the patch. Fixes #82568.
1396
1397 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1398
1399         * ListView.cs: Add a pair of missing 2.0 ListViewItemCollection.Insert
1400         methods.
1401
1402 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1403
1404         * ListViewInsertionMark.cs: New stubbed class.
1405
1406 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
1407
1408         * FolderBrowserDialog.cs: When adding folder, immediately create the
1409         directory with temporary name and rename the directory when editing
1410         finishes. This matches MS. Ensure the node for the new folder is 
1411         selected and LabelEdit is disabled, when editing is either finished
1412         or cancelled.
1413
1414 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
1415
1416         * TreeView.cs: When editing label of node, ensure node is visible.
1417
1418 2007-08-25  Ivan N. Zlatev  <contact@i-nz.net>
1419
1420         * PropertyGridView.cs: Set the value only if it has changed.
1421
1422 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1423
1424         * ListView.cs: Some more code refactoring to add support sorting
1425         with groups (now for Details view). Remove unused code also.
1426
1427 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1428
1429         * NodeLabelEditEventArgs.cs: EndEdit immediately when CancelEdit is called.
1430         Not a big fan of reacting immediately to a field in an EventArg, but that's
1431         the way it's done.  (This is part of the previous commit that got left out.)
1432
1433 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
1434
1435         * FolderBrowserDialog.cs: Removed need for separate description field.
1436         Replaced "" with string.Empty. Fixed tabindex. Ensure OK button
1437         has focus when dialog box is displayed again, regardless of what
1438         button was pressed the previous time. Set RootFolder and SelectedPath
1439         each time dialog box is displayed. This ensures the treeview is
1440         refreshed, and fixes bug #82579. Do no hide selected node in TreeView
1441         when it does not have focus. Added support for more special folders.
1442
1443 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1444
1445         * TreeView.cs: Create a CancelEdit method.  Clone the edit_args in EndEdit
1446         before calling AfterLabelEdit.  If the user calls BeginEdit in that event,
1447         it resets the edit_args.
1448         * TreeNode.cs: Call CancelEdit if the user passes cancel = true to EndEdit.
1449         [Fixes bug #82577]
1450
1451 2007-08-24  Gert Driesen  <drieseng@users.sourceforge.net>
1452
1453         * FolderBrowserDialog.cs: Modifies form caption and text of new folder
1454         button to match MS. Provide more meaningful exception message for
1455         invalid RootFolder value. Use zero-length string when SelectedPath
1456         is set to null. Allow non-rooted paths in SelectedPath, but ignore
1457         them in FolderBrowserTreeView. Allow folders to be created in
1458         RootFolder. Fixes bug #82576.
1459
1460 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1461
1462         * ListView.cs: Correctly compute the layout_ht (height) when using groups,
1463         since we need to take into account the group headers and the margin
1464         between them.
1465         * ListViewGroup.cs: Add a rows field to store the number of rows per
1466         group.
1467
1468 2007-08-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1469
1470         * DateTimePicker.cs: The MS' MTB has a really stupid year formatting.
1471           Anyways, let's just follow the lead.
1472
1473 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1474
1475         * CheckBox.cs: Set the AutoSizeMode to GrowAndShrink.
1476         * Form.cs, GroupBox.cs: Don't skip Right or Bottom anchored 
1477         controls in GetPreferredSizeCore.
1478         * ThemeWin32Classic.cs: Tweak text drawing of CheckBoxes.
1479         [Fixes bug #82488]
1480
1481 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1482
1483         * PrintDialog.cs: Need to instantiate the form variable here too.
1484
1485 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1486
1487         * ListView.cs: Do some reorganization to support sorting in groups,
1488         by doing the layout sequentially in ListView.Items. Also add support
1489         for the Default Group, which should be available for items with no
1490         group assigned.
1491         * ListViewGroup.cs: Add support for DefaultGroup. Include new members
1492         for storing layout info also.
1493         * ListViewGroupCollection.cs: Add a DefaultGroup as part of the
1494         collection, as well as providing internal members to do a traversal
1495         including the default group (needed when doing layout/drawing).
1496         * ThemeWin32Classic.cs: When drawing group headers use internal
1497         ListViewGroupCollection members to take into account the default
1498         group.
1499
1500 2007-08-23  George Giolfan  <georgegiolfan@yahoo.com>
1501
1502         * FlowLayoutPanel.cs: Add GetPreferredSizeCore.  [Fixes bug #82537]
1503
1504 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
1505
1506         * TreeView.cs: IsInputKey: don't ask for any keys if the handle hasn't
1507         been created.  If handle is created, we want arror keys.  If we are editing
1508         a node, we want things like enter, esc, home, end, page up, page down.
1509         Allows Esc to work for FolderBrowserDialog.
1510
1511 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
1512
1513         * ColorDialog.cs, FontDialog.cs: Set the form's CancelButton so that
1514         they close when ESC is pressed.  Thanks Andy!
1515
1516 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
1517
1518         * CommonDialog.cs: Do not instantiate form, leave that for derived classes.
1519         This way we can tell if this is a CommonDialog provided with mono, or one
1520         that is being implemented outside by a developer.  If it is an external one,
1521         the developer is responsible for showing their own form.  We were showing
1522         our blank form after the developer showed his.
1523         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs, FontDialog.cs,
1524         PageSetupDialog.cs: Instantiate form variable in our constructor.
1525         [Fixes bug #82531]
1526
1527 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
1528
1529         * ListBox.cs, ListView.cs, TreeView.cs: Override IsInputCharInternal
1530         and always return true.  [Fixes bug #81616]
1531
1532 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
1533
1534         * TextBoxBase.cs: Allow 2.0 AutoSize to change the height of the
1535         TextBox.  [Fixes bug #82549]
1536
1537 2007-08-23  Gert Driesen  <drieseng@users.sourceforge.net>
1538
1539         * FileDialog.cs: When Save/Open is clicked and no filename is selected
1540         or entered then do not close the dialog. Fixes bug #82539. Removed
1541         CWLs.
1542
1543 2007-08-22  Everaldo Canuto  <ecanuto@novell.com>
1544
1545         * FileDialog.cs: Create UpdateRecentFiles and move the recent files refresh
1546         code to this method. It is calling every time filter changes. This method
1547         will help to fix the bug #80887.
1548
1549 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
1550
1551         * CheckBox.cs: Implement AutoSize calculation.
1552
1553 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
1554
1555         * CheckBox.cs: Use new 2.0 rendering for 2.0.
1556         * Theme.cs: Method declarations for 2.0 rendering path.
1557         * ThemeWin32Classic.cs: 2.0 rendering implementation for CheckBox.
1558
1559 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1560
1561         * ListViewGroupCollection.cs: Fix a typo of the previous patch.
1562
1563 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1564
1565         * ListViewGroupCollection.cs: Implement AddRange the right way, to
1566         only call Redraw on the parent one time.
1567
1568 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1569
1570         * DataGridViewRowHeaderCell.cs, DataGridViewColumnHeaderCell.cs: Implemented
1571           GetClipboardContent.
1572         * DataGridViewCell.cs: Implemented GetClipboardContent,
1573           GetEditedFormattedValue, GetFormattedValue.
1574         * DataGridView.cs: Implemented GetClipboardContent, TopLeftHeaderCell.
1575
1576 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
1577
1578         * TableLayoutStyleCollection.cs: corcompare fix.
1579
1580 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1581
1582         * DataObject.cs: Implemented retrieval of convertible / not convertible
1583           objects.
1584
1585 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
1586
1587         * ToolStripItem.cs: When changing the item's text, invalidate before we resize
1588         ourselves.  This ensures the entire old bounds are repainted, in case our new
1589         size is smaller.  [Fixes bug #82518]
1590
1591 2007-08-20  Everaldo Canuto  <ecanuto@novell.com>
1592
1593         * XplatUIX11.cs: Apply patch from #81588, it makes use of PointerMotionHintMask
1594         flag to make fast handle of mouse events, without this the mouse move is
1595         handled in some manner, whether it is a mouse move or not. Fixes #81588.
1596
1597 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1598
1599         * ListView.cs: When doing layout calculations don't use a ref
1600         param to keep the current item; instead use its Index value (this 
1601         is specially important when doing the layout with Groups
1602         and Items being sparse). Also don't take into account items added to
1603         the Group but not yet added to the main ListView.Items collection.
1604
1605 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1606
1607         * ListViewGroupCollection.cs: Forgot to mimic an issue
1608         in the indexer (don't assign the ListView owner for new values).
1609
1610 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1611
1612         * ListViewGroupCollection.cs: Make the string indexer use
1613         the int based indexer to re-use code, instead of duplicate the code.
1614         Also Redraw as needed and take into account null values.
1615
1616 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
1617
1618         * StatusStrip.cs: Make sure the item's parent gets set in SetDisplayedItems.
1619         [Fixes bug #82481]
1620
1621 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
1622
1623         * ToolStrip.cs: Add some logic to un-focus controls in ToolStripControlHosts
1624         when other buttons are clicked or navigated to.
1625
1626 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1627
1628         * XplatUIX11.cs: Treat toolwindows as if they had no window manager, since
1629           it's XplatUIX11 that attaches them.
1630
1631 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1632
1633         * DataGridView.cs: If a column has been added, recreate the editing row.
1634           Fixes #82226.
1635
1636 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1637
1638         * TextControl.cs: Use Math.Max instead of Math.Min when deciding the length
1639           of the tag to draw. Makes disappearing text show up again.
1640
1641 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1642
1643         * StatusBar.cs: Take into account any icons when a panel has AutoSize =
1644           Contents. Fixes #82487.
1645
1646 2007-08-19  Andreia Gaita  <avidigal@novell.com>
1647
1648         * Added HtmlElement.cs, HtmlElementCollection.cs, 
1649           HtmlElementEventArgs.cs, HtmlElementEventHandler.cs
1650           
1651 2007-08-19  Andreia Gaita  <avidigal@novell.com>
1652
1653         * BindingSource.cs: Implement this, dispose and getenumerator.
1654         * DataGridViewRowCollection.cs: Move the InvalidOperationException
1655         out of AddInternal, throw it only on public Add calls. The 
1656         UsingWebBrowser sample was blowing up with this when setting the
1657         DataSource after adding DataBindings, so it's likely that .net
1658         only throws this exception when Add is called directly. 
1659         
1660         * ToolStripControlHost.cs: Return the hosted control's text
1661         property, and not the ToolStripItem one (it would always return
1662         the initial value).
1663         
1664         * HtmlDocument.cs: Implement GetElementById and All
1665         * WebBrowser.cs: Remove exception on set_DocumentStream.        
1666
1667 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1668
1669         * Form.cs: Fix the max and min value for opacity (0~1).
1670
1671 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1672
1673         [Fixes #80118]
1674         * DataGridTableStyle.cs: Default header font is now null, on getter it 
1675         returns datagrid font when is null. On setter permits null.
1676
1677         * DataGrid.cs:
1678         - When ResetHeaderFont set header font to null.
1679         - On EndInit set grid_style.DataGrid.
1680
1681 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1682
1683         * TabControl.cs: Fix regression in default padding x.
1684
1685 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1686
1687         * TabControl.cs: Fix tab page text area removing padding. Fixes #82471.
1688
1689 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1690
1691         * TabControl.cs: Fix first tab drawing, when selected it must have x = 0
1692         not 2. Fixes #82229.
1693
1694 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1695
1696         * TabControl.cs: Fix tab size when image height is less than text height.
1697         Partially fixes #81837.
1698
1699 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1700
1701         * Form.cs: Add WS_EX_CONTROLPARENT to forms to make it selectable using 
1702         "alt + tab". It works only for Win32, for X11 theres no way to remove window
1703         from taskbar and keep it on "alt_tab". Fixes #81722.
1704
1705 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1706
1707         * XplatUIX11.cs: Apply patch from Jurek Bartuszek to fix DrawReversibleFrame
1708         and DrawReversibleLine, also apply same behavior to FillReversibleRectangle. 
1709         Fixes #80877 and #79418.
1710
1711 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1712
1713         * MenuAPI.cs: Fix popup menu position when the size is larger than distance 
1714         between position and one of the screen borders. Fixes #82349.
1715
1716 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1717
1718         * MessageBox.cs: When there is no form that invoked the MessageBox, shows
1719         the MessageBox in the taskbar. Fixes #82457.
1720
1721 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1722
1723         * MessageBox.cs: Fix form size when icon is set and text height is bigger
1724         than icon. Fixes #82468.
1725
1726 2007-08-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1727
1728         * ThemeWin32Classic.cs: A FixedToolWindow has border size 3.
1729         * InternalWindowManager.cs: Change HandleCalcSize to return a boolean value
1730           if handled or not. Implement WM_NCCALCSIZE for WParam == 0 as well.
1731           Refactored HandleNCCalcSize somewhat to avoid code duplication.
1732         * Form.cs: Add is_clientsize_set, set in set_ClientSize, used by
1733           FormBorderStyle to decide if we're calculating a new size from the
1734           client size or not. CreateParams: Don't fake tool windows, only the X11
1735           backend manages toolwindows manually.
1736
1737 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1738
1739         * Form.cs: Only reset is_visible if !IsDisposed to prevent an
1740         ObjectDisposedException.
1741
1742 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1743
1744         * Form.cs: Reset is_visible back to true after OnLoad.  Setting this
1745         in OnLoad should not have any effect.  [Fixes bug #82470]
1746
1747 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1748
1749         * ToolTip.cs: Add a hack to ToolTipWindow so it will still size and
1750         paint for controls that create their own ToolTipWindow instead of
1751         going through ToolTip.
1752
1753 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1754
1755         * ToolTip.cs: Make Hide internal instead of public to match MS API.
1756
1757 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1758
1759         * ListViewGroupCollection.cs: Use generic List instead of an
1760         ArrayList, since this collection is 2.0 only.
1761
1762 2007-08-17  Jeffrey Stedfast  <fejj@novell.com>
1763
1764         * ToolTip.cs (Hide): Made public to make the build work (should
1765         this not be public?).
1766
1767 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1768
1769         * ToolBar.cs, ToolStrip.cs, TreeView.cs: Use a ToolTip instead of a
1770         ToolTipWindow.
1771         * ToolTip.cs: Add an internal Visible property to facilitate transition.
1772
1773 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1774
1775         * DrawToolTipEventArgs.cs, DrawToolTipEventHandler.cs, PopupEventArgs.cs,
1776         PopupEventHandler.cs: Make these internal for 1.1.
1777         * ThemeClearlooks.cs, ThemeWin32Classic.cs: Use TextRenderer, and modify to not
1778         use ToolTipWindow internals.
1779         * ToolTip.cs: Add 2.0 modal Show methods.  Had to move a lot of stuff around to
1780         support this.  A lot of stuff in the ToolTipWindow got moved to the ToolTip.
1781
1782 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1783
1784         * X11Dnd.cs: Add a null check.
1785
1786 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1787
1788         * X11Dnd.cs: MwfWindow: Try to load the control directly from the handle if
1789           nothing else succeeds. Fixes #82453.
1790
1791 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1792
1793         * XplatUIWin32.cs: PaintEventStart: validate the entire source client
1794           rectangle if we're painting to another window than the one the paint
1795           message was generated on. Simplify the code somewhat, which makes
1796           PaintEventEnd also simpler.
1797
1798 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1799
1800         * Control.cs: When changing parent of a form, let the form decide whether
1801           XplatUI.SetParent should be called or not.
1802         * Form.cs: ChangingParent: only call XplatUI.SetParent if we're not
1803           recreating the handle. If the new parent's handle isn't created, don't
1804           recreate our handle, just destroy it. CreateParams: Check if the
1805           parent's handle is created before fetching it.
1806
1807 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1808
1809         * Control.cs, Form.cs, InternalWindowManager.cs, MainMenu.cs, MdiClient.cs:
1810           Update calls to PaintEventStart/End to take a Message argument.
1811         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Update PaintEventStart/End to
1812           take a Message argument.
1813         * XplatUIWin32.cs, XplatUIX11.cs: Update PaintEventStart/End to take a
1814           Message argument, and handle the case where we don't paint to the window
1815           for which the paint message was generated.
1816
1817 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1818
1819         * XplatUIWin32.cs: Don't call Win32GetLastError directly, use
1820           Marshal.GetLastWin32Error. Plug nasty memory leak in
1821           PaintEventStart/End, we were creating a DC we weren't releasing.
1822
1823 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1824
1825         * ListView.cs: Add Groups support in Details view. Also have a small
1826         method to do the layout of the group header. Don't use a separate
1827         method to do the groups calculation in Icons view, since our methods
1828         are now a little simpler.
1829         * ListViewGroup.cs: Use the more accurate `HeaderBounds' name than
1830         `Bounds'.
1831         * ThemeWin32Classic.cs: Likewise.
1832
1833 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
1834
1835         * Application.cs: Add FilterMessage method and rework our message loop
1836         logic to use it.
1837
1838 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
1839
1840         * Application.cs: Add some methods and stub a few methods that are
1841         pretty much never used.
1842
1843 2007-08-15  Jonathan Pobst  <monkey@jpobst.com>
1844
1845         * TreeNode.cs: Add some serialization methods.
1846
1847 2007-08-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1848
1849         * ListView.cs: In ListViewItemCollection have a 
1850         'is_main_collection' field to not modify ListViewItem.ListView
1851         when using it as ListViewGroup.Items (and not ListView.Items)
1852         and also don't modify selection state (.Net behaviour). 
1853         Instead, set group for items contained in a ListViewGroup.Items collection.
1854         * ListViewItem.cs: Simplify some code in Group setter.
1855         * ListViewGroup.cs: use the new .ctor to pass the current instance
1856         to the ItemsCollection.
1857         * ListViewGroup.cs: Set the ListView property for ListViewGroup
1858         instances when adding/removing. Also make Remove use RemoveAt, which
1859         should perform better.
1860
1861 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
1862
1863         * Message.cs, TabControl.cs, TextBox.cs, TextBoxBase.cs: Hide some 2.0 API
1864         that crept into the 1.1 profile.
1865
1866 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
1867
1868         * ToolBarButton.cs: Implement ImageKey.
1869
1870 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
1871
1872         * ToolBar.cs: Implement ScaleControl/ScaleCore.
1873
1874 2007-08-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1875
1876         * PictureBox.cs: OnAnimateImage/UpdateAnimateImage: Check if handle is still
1877           created, it might have gotten destroyed since we last checked. Fixes
1878           #82405.
1879
1880 2007-08-11  Jonathan Pobst  <monkey@jpobst.com>
1881
1882         * ToolTip.cs: Remove mouse in control check from mouseleave handler so
1883         tooltip will hide when mouse is moved off the control.
1884         [Fixes bug #82407]
1885
1886 2007-08-11 Andreia Gaita <avidigal@novell.com>
1887
1888         * WebBrowserBase.cs, WebBrowser.cs: add implementation
1889         using Mono.Mozilla for loading and navigating webcontrol
1890         with xulrunner.
1891         The initial implementation was done on 
1892         /trunk/mozembed/tests/browser , and copied here.
1893
1894 2007-08-11  Gert Driesen  <drieseng@users.sourceforge.net>
1895
1896         * ThemeWin32Classic.cs: On 2.0 profile, use ForeColor and BackColor of
1897         ToolTipWindow for drawing the tooltip. Fixes bug #82408.
1898
1899 2007-08-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1900
1901         * DataGridView.cs: Add support for an editing row. Fixes #82226.
1902           RowTemplateFull: throw an exception if a column doesn't have a template.
1903         * DataGridViewRowCollection.cs: AddInternal: if there are any editing rows,
1904           add the row just before it.
1905         * DataGridViewTextBoxCell.cs: Don't paint cells which are in edit mode as
1906           selected.
1907         * DataGridViewSelectedRowCollection.cs: Don't return the editing row. Add a
1908           DataGridView field to be able to reach the grid's editing row.
1909
1910 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
1911
1912         * ToolTip.cs: If the control's handle hasn't been created when it has a
1913         tooltip set on it, don't check to see if we need to show the tooltip.  This
1914         check was causing the control's handle to be created.
1915         [Fixes bug #82399]
1916
1917 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
1918
1919         * TextBoxBase.cs: Fix SelectionLength when no text selected to match MS:
1920                                         1.1             2.0
1921         Handle Not Created      -1              0
1922         Handle Created          0               0
1923         [Fixes bug #82371]
1924
1925 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
1926
1927         * ToolTip.cs: Hide the tooltip if the control is clicked to match MS behavior.
1928         [Fixes bug #82348]
1929
1930 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
1931
1932         * DrawToolTipEventArgs.cs: Don't dispose a brush we got from the respool.
1933         * ToolTip.cs: Implement some properties and owner draw.
1934
1935 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1936
1937         * DataGridView.cs: OnPaint: don't set scrollbar visibility to false then
1938           show them again, since setting visibility causes a paint, causing an
1939           endless loop (instead use a temporary and set it all when it's known if
1940           they should be shown or not). Fixes #79265.
1941
1942 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1943
1944         * DataGridView.cs: Only do a full column/row selection if a header was
1945           clicked and we're in Column/RowHeader selection mode. If shift and ctrl
1946           isn't pressed, deselect everything before selecting something.
1947
1948 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1949
1950         * DataGridView.cs: Fix SelectedRows and SelectedColumns to match MS
1951           behaviour according to bug #81075 - they are returned in the order they
1952           are selected. Fix HitTest to check if the point is within any of the
1953           headers. Allow for row/column selection when in ColumnHeader or
1954           RowHeader selection mode. Add SetSelected[Column|Row]CoreInternal for
1955           the row and column to call when their selected state changes, and
1956           updated selected_[rows|columns] whenever SetSelected* is called.
1957         * DataGridViewBand.cs: Initialize isRow correctly. Call
1958           SetSelected[Row|Column]CoreInternal when the selected state changes, and
1959           add a SelectedInternal to avoid StackOverflows.
1960         * DataGridViewColumn.cs, DataGridViewRow.cs: If DGV is ReadOnly, we're also
1961           ReadOnly no matter what.
1962         * DataGridViewSelectedColumnCollection.cs,
1963           DataGridViewSelectedRowCollection.cs: Add an InternalAddRange that adds
1964           the items in reverse order (just as MS does...)
1965
1966 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
1967
1968         * Application.cs: Only release menustrips if Alt (MenuKey) is pressed by
1969         itself, not part of a mnemonic.  [Fixes bug #82378]
1970
1971 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1972
1973         * DataGridView.cs: BeginEdit: don't allow editing of readonly cells.
1974         * DataGridViewCell.cs: Implement ReadOnly better: the cell is ReadOnly if
1975           the DGV, the column, the row, or the cell itself is readonly.
1976
1977 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
1978
1979         * ThemeNice.cs: Use XplatUI.RunningOnUnix instead of checking
1980         OSVersion.Platform.
1981         * FileDialog.cs: Same.
1982         * TextRendered.cs: Same.
1983         * FolderBrowserDialog.cs: Same.
1984         * TextBoxBase.cs: Same.
1985         * Application.cs: Same.
1986         * Cursors.cs: Same.
1987         * ThemeClearLooks.cs: Same.
1988
1989 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
1990
1991         * XplatUI.cs: Added RunningOnUnix property to be used by controls
1992         instead of duplicating these checks everywhere.
1993         * FileDialog.cs: Use case-insensitive comparison for populating the
1994         DirComboBox when not running on unix. Fixes bug #82385.
1995         * OpenFileDialog.cs: to match MS, change label of DirComboBox to 
1996         "Look in".
1997
1998 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1999
2000         * DataGridView.cs: SelectedRows: we need to check if selectionMode is
2001           FullRowSelect (not FullColumnSelect). Fixes #81075. Implemented
2002           BeginEdit, EndEdit, SetSelected<Cell|Row|Column>Core. Implemented row,
2003           cell and column selection with ctrl and shift pressed. Call the correct
2004           BeginEdit/EndEdit whenever we start/end editing. Move painting code to
2005           the corresponding virtual method (PaintBackground to paint background,
2006           etc).
2007         * DataGridViewCell.cs: Implement Selected correctly, we're selected if
2008           either the column, row or the cell itself is selected.
2009         * DataGridViewRowCollection.cs: Use DGV.OnRowsAddedInternal instead of
2010           OnRowsAdded.
2011         * DataGridViewRow.cs: Moved some of the painting code from DataGridView
2012           here. When the row is selected, don't select all cells. Each cell now
2013           queries the row to see if the row is selected.
2014
2015 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2016
2017         * DataGridViewColumn.cs: Throw if the SortMode conflicts with DataGridView's
2018           SelectionMode.
2019
2020 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2021
2022         * ListView.cs: In ListViewItemsCollection check that owner is
2023         not null before trying to access it (this happens quite often
2024         using Groups). Also don't duplicate calls by calling CollectionChanged
2025         method.
2026
2027 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
2028
2029         * ToolStrip.cs: Record if we were activated by mouse or keyboard.  Redraw
2030         when we are dismissed to clear keyboard mnemonics.
2031         * MenuStrip.cs, ToolStripDropDown.cs, ToolStripItem.cs, 
2032         ToolStripMenuItem.cs: Record if we were activated by mouse or keyboard.
2033         * ToolStripItemTextRenderEventArgs.cs: Draw mnemonic underlines if menu
2034         was activated by keyboard or the OS tells us to always draw them.
2035         * ToolStripManager.cs: Setup storage for activated by mouse or keyboard.
2036         [Fixes bugs #82376, #82377]
2037
2038 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
2039
2040         * Control.cs: If no one accepts a mnemonic, let the MenuStrip have a 
2041         shot at having it because Alt was pressed.
2042         * MenuStrip.cs: When handling Alt, don't select a SystemMenuItem, select
2043         the first real menu item.
2044         * ToolStrip.cs: Don't crash when looking for a ToolStripItem to handle
2045         a mnemonic if Text is null.
2046         [Fixes bug #82374]
2047
2048 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2049
2050         * ListView.cs: In ListViewItemCollection.AddItem, don't do a linear
2051         search do check whether the item is already contained in the
2052         collection or not; instead check if the owner of the item is the same
2053         as ours. Also, remove a redundant check in the same method. 
2054
2055 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
2056
2057         * Control.cs: Allow the clip region to be set back to null.
2058         * XplatUIWin32.cs: If we are sent a null clip region, use IntPtr.Zero.
2059         [Fixes button still showing up in bug #82370 when Show Through is turned off]
2060
2061 2007-08-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2062
2063         * GridEntry.cs: Add a null check.
2064         * PropertyGrid.cs: When checking for existing grid entries, ignore category
2065           entries. Fixes #82297.
2066
2067 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
2068
2069         * OwnerDrawPropertyBag.cs: Make the serialization constructor protected
2070         for 2.0.
2071
2072 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
2073
2074         * ListBox.cs: Implement ScaleControl.
2075
2076 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2077
2078         * Form.cs: Add a few ActiveMenu null checks. ActiveMenu might be null if we
2079           have a menu strip.
2080         * MdiWindowManager.cs: Don't create a maximized menu if the child or it's
2081           parent has a menu strip. Fixes #81689.
2082
2083 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2084
2085         * ToolTip.cs: We don't get mouse events on all platforms in the exact same
2086           moments, so apply some fuzzy logic to determine if the mouse is still
2087           inside a control or not. Fixes #82288 (for the third time).
2088
2089 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2090
2091         * Control.cs: CreateControl: create implicit children as well. Fixes #82344.
2092           Don't create the child if it has been disposed already (may happen if
2093           the user closes the form the Load event).
2094
2095 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2096
2097         * ToolTip.cs: If ReshowDelay is 0, show the tooltip immediately. Fixes
2098           #82288.
2099
2100 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2101
2102         * Control.cs: Add a null check in OnParentBindingContextChanged. The parent
2103           might call us after we've been destroyed, in which case our own private
2104           parent field is null. Fixes #82326.
2105
2106 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
2107
2108         * ToolStripDropDown.cs: Fix a failing test on X11 by adding a null
2109         check for setting the dropdown's owner.
2110
2111 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
2112
2113         * MdiClient.cs: Fix some failing tests on X11 by adding a null check
2114         before removing system menu items.
2115
2116 2007-08-02  Jonathan Pobst  <monkey@jpobst.com>
2117
2118         * MdiClient.cs, MdiWindowManager.cs: Support 2.0 Mdi MenuStrip
2119         folding.
2120         * MdiControlStrip.cs: Added.  These are the menu items used in mdi
2121         folding.
2122         * ToolStrip.cs: Add a null check to mnemonics.
2123         * ToolStripDropDownMenu.cs: When using a SystemMenuItem, there is
2124         no ConnectedArea.
2125         [Fixes most of bug #81689]
2126
2127 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2128
2129         * PropertyGrid.cs: Add a null-check. Fixes #82289/SVGPad.
2130
2131 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2132
2133         Use InitialDelay if ReshowDelay is zero. Fixes #82288.
2134
2135 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2136
2137         * DataGridViewCell.cs: EditType: returns
2138           DataGridViewTextBoxEditingControl always.
2139
2140 2007-08-01  Jonathan Pobst  <monkey@jpobst.com>
2141
2142         * TextRenderer.cs: Remove the LineLimit string format flag from the
2143         DrawString fallback method so that things like buttons that aren't
2144         tall enough to draw a full line will still draw part of the text.
2145         [Fixes part of bug #82272]
2146
2147 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2148
2149         * DataGridView.cs: Implemented AutoResizeColumn(s).
2150         * DataGridViewCellStyle.cs: Added SetAlignment, fills in a StringFormat
2151           according to the Alignment.
2152         * DataGridViewColumnHeaderCell.cs, DataGridViewTextBoxCell.cs:
2153           Implement alignment and padding when painting.
2154         * DataGridViewRow.cs: SetValues: Don't create a cell if it already
2155           exists.
2156         * DataGridViewCell.cs: Implement BorderWidths in the most primitive
2157           way.
2158         * DataGridViewColumnCollection.cs: Raise OnColumnAdded on the DGV when
2159           a column is added.
2160
2161 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
2162
2163         * TextBoxBase.cs: Use Control.ExplicitBounds instead of explicit_bounds,
2164         which is internal.
2165
2166 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
2167
2168         * ToolStrip.cs: Stub out drag and drop methods, fix some corcompare stuff,
2169         hide GetPreferredSize from public API.
2170         * ToolStripDropDown.cs: Override AllowItemReorder, fix AccessibleObject.
2171         * ToolStripItem.cs: Stub out drag and drop methods and events.
2172         * ToolStripManager.cs: Stub out Save/LoadSettings.
2173         * ToolStripOverflow.cs: Use renamed ToolStrip.GetPreferredSize.
2174         * ToolStripPanel.cs: Fix corcompare error.
2175         * ToolStripPanelRow.cs: Use renamed ToolStrip.GetPreferredSize.
2176         * ToolStripSplitButton.cs: Fix AccessibleObject stuff.
2177         * ToolStripSplitStackLayout.cs: Use renamed ToolStrip.GetPreferredSize.
2178
2179 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
2180
2181         * TextBoxBase.cs: In our new GetPreferredSizeCore, return the explicit
2182         bounds height instead of PreferredHeight.  Puts things back the way 
2183         they were for height while still fixing the width.  Fixes broken unit
2184         tests.
2185
2186 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2187
2188         * Binding.cs: Implement 2.0 constructors and add a null check.
2189
2190 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2191
2192         * DataGridViewRowCollection.cs: Allow a null DGV in the constructor,
2193           and fix row index (off by one).
2194
2195 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2196
2197         * PropertyGridView.cs: Remove debug output.
2198
2199 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2200
2201         * Control.cs: We need to reset the is_created flags when the handle is
2202           destroyed. Fixes #82187.
2203         * XplatUIWin32.cs: In GetWindowRect don't offset screen coordinates to
2204           client coordinates if the window doesn't have a parent.
2205           Win32GetParent returns the parent or the owner, and for top-level
2206           windows with no parent (but with an owner) we were calculating the
2207           location from the location of the owner.
2208         * Form.cs: Remove incorrect fix for #82187. Don't raise OnLoad if the
2209           form has been disposed.
2210         * MdiClient.cs: Add a null-check.
2211
2212 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
2213
2214         * TextBoxBase.cs: TextBoxBase reports itself at AutoSize, but doesn't
2215         actually do auto-sizing.  Override the internal GetPreferredSizeCore 
2216         so we can provide an implementation that returns the current width
2217         and preferred height.  Allows anchor = right to work with TextBox 2.0.
2218         [Fixes bug #82233]
2219
2220 2007-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2221
2222         * ListView.cs: Add support for navigating items in Groups mode, by
2223         creating a big matrix containing all rows and cols of all groups. When
2224         are in other mode than Details, pressing Up should have a similar
2225         behaviour as that one of Down (moving to the next available column if
2226         current one doesn't have an item in the requested row). Also, don't
2227         proceed to use groups if ShowGroups is false.
2228         * ListViewGroup.cs: Add an internal int field to store the starting
2229         row of the group (used by the big matrix used for navigating the
2230         ListView).
2231         * ThemeWin32Classic.cs: Don't draw headers if ListView.ShowGroups is
2232         false.
2233
2234 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
2235
2236         * ToolStripDropDown.cs: When we do Show, start with the 
2237         DefaultDropDownDirection, but if our popup menu is going to off-screen,
2238         modify the direction to keep it on screen.  [Fixes bug #82210]
2239
2240 2007-07-29  Gert Driesen  <drieseng@users.sourceforge.net>
2241
2242         * FileDialog.cs: Accept any FilterIndex value, and store it
2243         unmodified. When FilterIndex is less than 1, or greater than number
2244         of filters, then default to first filter. Only add filter extension to
2245         file if user did not specifiy an extension. When type of dialog is
2246         OpenFileDialog and DefaultExt is set, then only use filter extension
2247         if: CheckFileExists is true and no file wih the default extension
2248         exists, or CheckFileExists is false, and user specified file does not
2249         exist. When CheckFileExists is true, then add first extension of 
2250         selected filter that matches existing file. Perform checks for
2251         existing file, overwrite and create after extension has been added to
2252         file name. When CheckFileExists is true and type is SaveFileDialog,
2253         then only consider first filter extension if DefaultExt is set.
2254         When CheckFileExists is true, then ignore DefaultExt if file with that
2255         extension does not exist. Also perform check for existing file when
2256         type is SaveFileDialog. Changed some field to constants.
2257
2258 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2259
2260         * ListView.cs: Take into account the region used by header
2261         control when doing the vertical scroll (this way we invalidate
2262         the precise area, and don't get any dirty one).
2263
2264 2007-07-27  Everaldo Canuto  <ecanuto@novell.com>
2265
2266         * FileDialog.cs: Check for valid filterIndex on button open/save. 
2267         Fixes #82184.
2268
2269 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2270
2271         * ListView.cs: Update some layout calculations in details view
2272         and clean the code in a pair of assignations.
2273
2274 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
2275
2276         * ComboBox.cs, ContainerControl.cs, DataGrid.cs, FontDialog.cs, Label.cs,
2277         LinkLabel.cs, ListBox.cs, ListView.cs, ListViewItem.cs, MessageBox.cs,
2278         MonthCalender.cs, StatusBar.cs, ThemeClearlooks.cs, ThemeWin32Class.cs,
2279         ToolBar.cs, TreeView.cs: First pass at using thread-safe string measuring.
2280
2281 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
2282
2283         * TextRenderer.cs: Use [ThreadStatic] instead of locks to improve
2284         performance of thread-safe Graphic methods.  (Thanks rolf!)
2285
2286 2007-07-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2287
2288         * ListView.cs: When doing the layout calculations, don't calculate
2289         scroll bars before handle is created. This is unnecessary and also
2290         calculating them before handle creation item causes a number of random
2291         bugs (which begin to appear after Chris' big patch for handle creation
2292         fixes). 
2293
2294 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
2295
2296         * TextRenderer.cs: Create thread-safe versions of Graphics.MeasureString
2297         for things that don't have a Graphics object.  Currently, things just use
2298         the static Hwnd.bmp_g which is not thread safe.
2299
2300 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2301
2302         * Form.cs: ShowDialog: don't destroy handles if the dialog is a common
2303           dialog. Fixes #82187.
2304
2305 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2306
2307         * DataGridViewElement.cs: Initialize state.
2308         * DataGridView.cs: Forward a few Mouse events to cells. Add
2309           GetRowInternal and GetCellInternal that doesn't unshare rows.
2310           Implement GetCellDisplayRectangle. HitTest: if the row is shared,
2311           don't use the index, but look it up. Add
2312           DataGridViewControlCollection.RemoveInternal to remove controls
2313           that Remove won't remove (scrollbars, edit control).
2314         * DataGridViewColumn.cs: Initialize State correctly.
2315         * DataGridViewColumnHeaderCell.cs, DataGridViewComboBoxCell.cs,
2316           DataGridViewHeaderCell.cs, DataGridViewRowHeaderCell.cs: Started
2317           implementing this.
2318         * DataGridViewRowCollection.cs: Implemented shared rows.
2319         * DataGridViewRow.cs: Throw exceptions as MS do.
2320         * DataGridViewCell.cs: A few properties are implemented by a
2321           Get<Property> method, so move implementation there and remove the
2322           NIEX in the method. Add a bunch of OnXInternal that DataGridView
2323           calls when necessary.
2324         * DataGridViewComboBoxEditingControl.cs: Remove a few NIEX'es that just
2325           complicates matters.
2326         * DataGridViewCellCollection.cs: Add a GetCellInternal that doesn't
2327           unshare any rows.
2328
2329 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
2330
2331         * UpDownBase.cs: We cannot override SetBoundsCore for 2.0, which was relayout-ing
2332         the children controls.  Instead, we will just set up the proper docking for the
2333         children controls so we don't have to worry about it.  [Fixes bug #82188]
2334
2335 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
2336
2337         * TreeView.cs, NodeLabelEditEventArgs.cs, LabelEditTextBox.cs: Support edit
2338         canceling and correct Before/AfterLabelEdit properties as layed out in bug
2339         81847.  [Fixes bug #81847]
2340
2341 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
2342
2343         * Label.cs: If AutoSize = true and a width or height is set, ignore it and
2344         redo the autosize.  VS2005 defaults to setting the AutoSize, and then setting
2345         an explicit size based on the design-time size of the text.  Since our fonts
2346         may not match this explicit size, we tend to cut off the ends of people's labels.
2347
2348 2007-07-24  Jonathan Pobst  <monkey@jpobst.com>
2349
2350         * Menu.cs: Add some missing methods to MenuItemCollection.
2351
2352 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2353
2354         * DataGridView.cs: Added RowTemplateFull, creates a row from the templates in the columns.
2355         * DataGridViewBand.cs: DefaultHeaderCellType: initialize correctly. Resizable: if not set, check DGV.
2356         * DataGridViewColumn.cs: InheritedAutoSizeMode: if not set, check DGV. Resizable: delegate to base class. ToolTipText: Never return null. Initialize a few other properties correctly.
2357         * DataGridViewColumnCollection.cs: Add: Default column is a TextBoxColumn.
2358         * DataGridViewComboBoxCell.cs: Started implementing this, lots left still.
2359         * DataGridViewElement.cs: State defaults to Visible.
2360         * DataGridViewRowCollection.cs: Add: creates the new row based on a template.
2361         * DataGridViewTextBoxColumn.cs: SortMode: delegate to base class, but initialize to Automatic. ToString: implement correctly.
2362
2363 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2364
2365         * Control.cs: Minor 1.1 corcompare fix.
2366
2367 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
2368
2369         * LinkLabel.cs, PrintPreviewDialog.cs, TabPage.cs, TextBox.cs,
2370         TextBoxBase.cs, ToolBar.cs: 2.0 corcompare work.
2371
2372 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2373
2374         * DataGridViewLinkColumn.cs, DataGridViewRowCollection.cs,
2375           DataGridViewImageColumn.cs, DataGridViewSelectedCellCollection.cs,
2376           DataGridViewComboBoxCell.cs, DataGridViewLinkCell.cs,
2377           DataGridViewSelectedColumnCollection.cs,
2378           DataGridViewSelectedRowCollection.cs: Corcompare work.
2379
2380 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
2381
2382         * PrintDialog.cs: Stub UseEXDialog.  I chose to stub this because
2383         it is autoset by VS2005 designer and the effect is barely noticeable.
2384
2385 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
2386
2387         * TreeView.cs: Implement HitTest.
2388
2389 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2390
2391         * DataGridViewTextBoxCell.cs: Use DGV.EditControlInternal instead of
2392           manually adding and removing the control from the Controls
2393           collecftion.
2394         * DataGridView.cs: Implement DataGridViewControlCollection. Add an
2395           EditingControlInternal property that tracks the editing control.
2396           Always keeping the scrollbars in the Controls collection, as MS
2397           testing confirms is the right behaviour.
2398
2399 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2400
2401         * ScrollableControl.cs: Fix implementation of AutoScrollPosition
2402           according to MSDN and new test.
2403
2404 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2405
2406         * TreeNode.cs: Implement ToolTipText.
2407         * TreeView.cs: Implement tooltips, NodeMouse* events.
2408
2409 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2410
2411         * TreeView.cs: Implement OnNodeMouseClick and OnNodeMouseDoubleClick.
2412
2413 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2414
2415         * TreeNode.cs: Implement ContextMenu, ContextMenuStrip, and Level.
2416         * TreeView.cs: Use the node's contextmenu[strip] if applicable.
2417
2418 2007-07-20  Ivan N. Zlatev  <contact@i-nz.net>
2419
2420         * Control.cs, Form.cs, ContainerControl.cs,
2421         ScrollableControl.cs, ButtonBase.cs:  Added ShouldSerialize
2422         for misc properties.
2423
2424 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2425
2426         * TreeNode.cs: Implement StateImageIndex and StateImageKey.
2427         * TreeView.cs: Implement StateImageList.
2428
2429 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2430
2431         * Form.cs: Don't check if the current form is the active form before
2432           activating it. Fixes #81904.
2433
2434 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2435
2436         * Form.cs: Don't check if the current form is the active form before
2437           activating it. Fixes #81904.
2438
2439 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2440
2441         * TreeView.cs: Apply patch from Tyron (tmm@aon.at). Fixes #81847.
2442
2443 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2444
2445         * Form.cs: Don't try to position the form after loading if the form was
2446           disposed. Fixes #81969.
2447
2448 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2449
2450         * PropertyGrid.cs, PropertyGridView.cs: Implemented 2.0 methods and
2451           properties. Had to change ToolBar into ToolStrip, which required a
2452           few #ifs.
2453
2454 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2455
2456         * PropertyGrid.cs: PropertyToolBar: Redraw the entire toolbar when it's
2457           resized, fixes part of #79829 (vertical lines in toolbar).
2458           PropertyGrid: Refactored Populate* to something that's easier to
2459           follow at least for me, as well as splitting it up into several new
2460           methods, required to update only subitems when something has
2461           changed by a popup editor or listbox. Don't use events to check
2462           when any values are changed, since the events are unreliable (we're
2463           changing the objects the events are registered with, and if the
2464           event handling requires the objects to be immutable (objects stored
2465           in hashtables for instance), the events will never be raised).
2466         * PropertyGridView.cs: Call PropertyGrid.PropertyValueChangedInternal
2467           everytime we change a value, since events are unreliable.
2468           DropDownButtonClicked: For the same reason don't compare objects to
2469           check if it has changed or not, it would require all objects to
2470           derive Equals. Fix dialog location on windows, MS is doing weird
2471           things when creating parented forms.
2472         * GridEntry.cs: Add a SelectedObject setter.
2473
2474 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
2475
2476         * TreeNode.cs: Add some corcompare attributes.
2477         * TreeNodeCollection.cs: Implement 2.0 stuffs.
2478         * TreeView.cs: Implement some 2.0 stuffs.
2479
2480 2007-07-18  Andreia Gaita  <avidigal@novell.com>
2481
2482         * WebBrowser.cs, WebBrowserBase.cs: add some more MonoTODOs now
2483         for moma.
2484
2485 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
2486
2487         * ListBox.cs: Implement custom tab offsets.
2488
2489 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2490
2491         * ToolStripContentPanel.cs: Support System renderer.
2492         * ToolStripControlHost.cs: Set RightToLeft to default to No.
2493
2494 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2495
2496         * ScrollableControl.cs: Don't mess up the user's explicit bounds.
2497
2498 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2499
2500         * CheckBox.cs: Chain TextAlign to base implementation instead of
2501         maintaining another one.
2502
2503 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2504
2505         * ButtonBase.cs: Fix an incorrect string constant.
2506
2507 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2508
2509         * TextRenderer.cs: Use the static Graphics context in Hwnd instead
2510         of creating one for measuring strings.
2511
2512 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
2513
2514         * ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownMenu.cs: 
2515         Implement MaxItemSize.
2516
2517 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
2518
2519         * Control.cs: Remove per-control 1x1 Bitmap and Graphics context used
2520         for DeviceContext.  Instead, use the static one available in Hwnd.
2521         Informal tests show this saves about 500k on formtest.exe.
2522
2523 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
2524
2525         * ContainerControl.cs: Implement 2.0 AutoScaling.
2526
2527 2007-07-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2528
2529         * ComboBox.cs: Work around bug #82120 (bug in mcs).
2530
2531 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
2532
2533         * ThemeWin32Classic.cs: Allow a Flat button to be Focused and Entered.
2534         Darken the focus color.
2535
2536 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
2537
2538         * ListBox.cs: When measuring items, if it's a CheckedListBox, add room
2539         for the checkbox.
2540         * ThemeWin32Classic.cs: Make the checkbox bigger in a CheckedListBox and use
2541         X, Y instead of a rect for drawing text.
2542         - For ControlPaint.DrawCheckBox, center the check a little better when the
2543         checkbox is odd width.  When drawing a flat checkbox, use a white background
2544         when state != inactive.
2545         [Fixes bugs #82097, 82100]
2546
2547 2007-07-16  Gert Driesen  <drieseng@users.sourceforge.net>
2548
2549         * ListControl.cs: When changing CurrencyManager, disconnect event
2550         handlers from previous one. Fixes bug #81771. Code formatting.
2551
2552 2007-07-15  Andreia Gaita <avidigal@novell.com>
2553
2554         * PrintPreviewControl.cs: Remove extraneous Invalidate calls. Separate
2555         full preview invalidation from layout invalidation, and only invalidate
2556         the layout when setting zoom or other properties. Invalidation should
2557         always be done even when resetting properties with the same values as
2558         what is there. Fixes #81744 and #79830.
2559
2560 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2561
2562         * ListView.cs: Implement initial support for Groups. Split some of the
2563         LayoutIcons code to render a partial list of the items (needed by
2564         items contained in ListViewGroup instances). Let the
2565         ListViewItemsCollection.ListView property be modifiable (needed when
2566         using Groups, too).
2567         * ListViewGroup.cs: Use a Bounds property rather than a Location
2568         one. Also invalidate the bounds when they get changed.
2569         * ThemeWin32Classic.cs: When drawing items, also draw the group header
2570         if ListView.Groups.Count is bigger than 0. Add a DrawListViewGroupHeader
2571         method as well.
2572
2573 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2574
2575         * ListView.cs: When space gets pressed and CheckBoxes is true, 
2576         don't invoke the Begin and EndUpdate methods. We are generating 
2577         a redraw of the entire control without need to do so.
2578
2579 2007-07-13  William Holmes <billholmes54@gmail.com> 
2580
2581         * Control.cs: Changing logic in FindFlatForward and 
2582           FindFlatBackward to handle multiple Controls with 
2583           the same TabIndex.  
2584           This fixes bug 81687.
2585
2586 2007-07-13  Jonathan Pobst  <monkey@jpobst.com>
2587
2588         * OSFeature.cs: Enable IsPresent.
2589
2590 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2591
2592         * Control.cs: Don't do anything in WmShowWindow if the control has been
2593           disposed. We can get WM_SHOWWINDOW after a control is disposed: a
2594           control is created, put on a form, the control is disposed (the
2595           form is never shown), and then we get a MapNotify, triggering a
2596           WM_SHOWWINDOW.
2597         * Form.cs: Exclude the current form when sending Deactivate to all
2598           MdiChildren.
2599         * NativeWindow.cs: Set WindowCreating to null as soon as possible,
2600           there was a race condition because assigning the handle raises
2601           events, we can get more messages, therefore trying to assign the
2602           handle again, which would fail if any of those event handlers
2603           closed/disposed the control.
2604
2605 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2606
2607         * Form.cs: Make the fix for #80775 windows-only (fixes #81957).
2608
2609 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
2610
2611         * SystemInformation.cs, Theme.cs, XplatUI.cs, XplatUIDriver.cs,
2612         XplatUIWin32.cs: Implement SystemInformation 2.0 properties.
2613
2614 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2615
2616         * DateTimePicker.cs: If there's no part format specifier, return an
2617           empty string.
2618
2619 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
2620
2621         * FlatButtonAppearance.cs: Throw NotSupportedException for a
2622         Transparent BorderColor.
2623
2624 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2625
2626         * DataGridView.cs, TextControl.cs, ProgressBar.cs, PrintDialog.cs,
2627           MessageBox.cs, ButtonBase.cs, PageSetupDialog.cs, NumericUpDown.cs,
2628           X11Dnd.cs, Binding.cs, DataGrid.cs, AxHost.cs,
2629           LinkLabelLinkClickedEventArgs.cs, TextRenderer.cs, Label.cs,
2630           LinkLabel.cs, TreeNode.cs, BindingSource.cs, TabPage.cs,
2631           TextBoxBase.cs, BindingNavigator.cs, Application.cs,
2632           ToolStripPanel.cs, TabControl.cs, ThemeClearlooks.cs, TreeView.cs:
2633           Remove warnings.
2634         * X11Structs.cs: Remove warnings, add ToString implementations.
2635
2636 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2637
2638         * XplatUIX11.cs: Translate min/max size according to the actual min/max
2639           size, and not the current size. Fixes #81798.
2640
2641 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2642
2643         * XplatUIX11.cs: Fix #80822 again (DefWndProc can be reached before
2644           XplatUI.CreateWindow returns, in which case the hwnd isn't assigned
2645           to the control yet).
2646
2647 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2648
2649         * PropertyGridTextBox.cs: Add a method that sends any forwarded
2650           mousedowns to the contained textbox.
2651         * X11Structs.cs: More ToString implementation.
2652         * PropertyGridView.cs: Forward any mousedowns to the textbox, fixes
2653           #81791.
2654
2655 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2656
2657         * PropertyGridView.cs: Add a null-check, fixes a few tests.
2658
2659 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
2660
2661         * TableLayoutPanelCellPosition.cs: TypeConverter.
2662
2663 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2664
2665         [ Fixes #79761]
2666         
2667         * PropertyGridTextBox.cs: Propagate any color changes to all contained
2668           controls.
2669         * PropertyGridView.cs: A few color fixes.
2670
2671 2007-07-10  Jackson Harper  <jackson@ximian.com>
2672
2673         * TextControl.cs: Remove some old unused text formatting stuff.
2674
2675 2007-07-10  Jackson Harper  <jackson@ximian.com>
2676
2677         * TreeView.cs: Update full row select invalidation to match the
2678         newer DrawSelection... method.
2679         - Make sure to invalidate the entire width when selecting a new
2680         node, if we have full row selection enabled.
2681
2682 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2683
2684         * PropertyGridView.cs: Fix for #81800, makes text show up on initial
2685           display of properties again.
2686
2687 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
2688
2689         * ListBox.cs: Add IntegerCollection and Add, Clear, Remove
2690         to existing collections.
2691
2692 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2693
2694         * AccessibleObject.cs, RadioButton.cs: Fix some base classes
2695         that changed between 1.1 and 2.0.
2696
2697 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2698
2699         * PowerStatus.cs: Added.  This is just a data class, it is filled
2700         in by SystemInformation.
2701
2702 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2703
2704         * Message.cs: Add op_Equality and op_Inequality.
2705
2706 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2707
2708         * MenuStrip.cs: Finish corcompare work.
2709
2710 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2711
2712         * LinkArea.cs: Add op_Equality and op_Inequality.
2713
2714 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2715
2716         * Application.cs: Add MessageLoopCallback delegate.
2717
2718 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2719
2720         * ListBox.cs: First set of 2.0 stuffs.
2721
2722 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2723
2724         * Control.cs: Make an internal Height property we can override
2725         without messing up the public API.
2726         * ListBox.cs: Override HeightInternal to always return the size
2727         the user set.  [Fixes bug #80466]
2728
2729 2007-07-08  Jonathan Pobst  <monkey@jpobst.com>
2730
2731         * TableLayoutPanel.cs: Add a null check so we don't NRE trying to
2732         paint cell borders if we haven't calculated where they go yet.
2733         [Fixes bugs #82040 and #82041]
2734
2735 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2736
2737         * ListView.cs: In Details view, set the location of item_control
2738         in the (0,0) position (and the header_control is thus on the
2739         item_control). This way the Bounds of the Items are relative to the
2740         ListView control (before this, they had a Bounds value without the
2741         header_control offset, which wasn't matching .Net). Fixes #82004.
2742
2743 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2744
2745         * ListControl.cs: When DataSource is set to null, pass an empty
2746         array of object to SetItemsCore. This is done to clean the items
2747         in the ListContol children. Fixes #81788.
2748
2749 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2750
2751         * ListControl.cs: Add 2.0 stuffs.
2752
2753 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2754
2755         * Label.cs: Finish up 2.0 stuffs.  Replace calls to Refresh with Invalidate,
2756         Refresh is overkill for just about every repaint request.
2757
2758 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2759
2760         * ToolStripItem.cs: TextDirection getter handles looking up Inherit for us,
2761         so remove my custom Get method and fix the property getter.
2762
2763 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2764
2765         * Label.cs: DefaultMargin for 2.0.
2766
2767 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2768
2769         * ComboBox.cs: Override IsInputCharInternal and return true.  Fixes 
2770         reported issue where other controls with mnemonics would steal strokes
2771         from a selected ComboBox.
2772
2773 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2774
2775         * ScrollOrientation.cs: Make internal for 1.1.
2776         * ScrollEventArgs.cs: Add 2.0 stuffs.
2777
2778 2007-07-05  Jonathan Pobst  <monkey@jpobst.com>
2779
2780         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
2781         ToolStripItem.cs, ToolStripItem.cs, ToolStripItemTextRenderEventArgs.cs,
2782         ToolStripRenderer.cs, ToolStripSeparator.cs: Implement TextDirection.
2783
2784 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2785
2786         * ListViewItem.cs: Implement the small 2.0 GetSubItemAt method.
2787
2788 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2789
2790         * ListView.cs: Implement the so-incredibly broken 2.0 
2791         VirtualItemsSelectionRangeChanged event.
2792
2793 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2794
2795         * ListView.cs: When enter is pressed and selection is non empty,
2796         an OnItemActivate event must be fired.
2797
2798 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2799
2800         * ListView.cs: Store the FocusedItem information as an
2801         int instead of a ListViewItem (needed by VirtualMode).
2802         Update the calls to SetFocusedItem to pass an index instead of
2803         an item.
2804         * ListViewItem.cs: Likewise. Also, in VirtualMode retrieve
2805         the Focused state from the owner ListView. 
2806
2807 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2808
2809         * ListView.cs: Set ListView.focused_item from ListViewItem.Focused
2810         property. Also, invalidate previous focused item in the mentioned
2811         property (match .Net).
2812
2813 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2814
2815         * ListView.cs: Implement 2.0 FocusedItem property setter.
2816
2817 2007-07-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2818
2819         * ListView.cs: Implement 2.0 TopItem property setter.
2820
2821 2007-07-03  Jonathan Pobst  <monkey@jpobst.com>
2822
2823         * StatusStrip.cs: The default renderer is System.
2824         * ToolStrip.cs, ToolStripManager: Now that we have System renderer, use it 
2825         if the user specifies it.
2826         * ToolStripDropDown.cs: Don't reset our Renderer on changing OwnerItem
2827         if we are ManagerRenderMode.
2828         * ToolStripMenuItem.cs: Calculate our text color better.
2829         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Move some stuff
2830         from Professional to the base class based off working with the System renderer.
2831         * ToolStripSystemRenderer.cs: Added.
2832
2833 2007-07-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2834
2835         * ListView.cs: I'm so lame - the real name is HitTest, not HitInfo.
2836
2837 2007-07-02  Jonathan Pobst  <monkey@jpobst.com>
2838
2839         * ToolTip.cs: Implement 2.0 Tag property.
2840
2841 2007-06-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2842
2843         * ListView.cs: Implement 2.0 HitTest methods.
2844
2845 2007-06-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2846
2847         * ListViewItem.cs: Add a 2.0 bool Hot property, to tell whether the
2848         item is under the pointer or not (sugar). Also remove the TODO
2849         regarding to the cursor changes in OneClick activation.
2850         * ThemeWin32Classic.cs: When HotTracking is true and we are drawing
2851         the subitems use the parent's HotFont if UseItemStyleForSubItems is
2852         true; otherwise don't show the underline style.
2853
2854 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2855
2856         * ListView.cs: In ItemControl.ItemsMouseMove, refactor
2857         the code to retrieve the item at position only one time. Also
2858         change cursor when Activation is ItemActivation.OneClick as well
2859         as invalidate the item if HotTracking is true (to show/hide the
2860         underline style). Add an internal HotItemIndex property to retrieve
2861         the current hot item's index.
2862         * ListViewItem.cs: Add an internal HotFont property to cache the
2863         font used when HotTracking is true and the pointer moves within the
2864         item's borders.
2865         * ThemeWin32Classic.cs: When drawing the item's text, use Font or
2866         HotFont depending on the hot state of the item.
2867
2868 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2869
2870         * ListView.cs: Implement 2.0 HotTracking property.
2871
2872 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
2873
2874         * ToolStripControlHost.cs: If our hosted control never got created,
2875         don't try to dispose it.  [Fixes bug #81909]
2876
2877 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
2878
2879         * TableLayoutPanel.cs: Implement ScaleCore, ScaleControl.
2880
2881 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
2882
2883         * TableLayoutPanel.cs: Implement CellBorderStyle.  [Fixes bug #81884]
2884
2885 2007-06-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2886
2887         * ThemeWin32Classic.cs: In OwnerDraw mode draw subitems only for 
2888         Details view.
2889         * DrawListViewColumnHeaderEventArgs.cs:
2890         * DrawListViewSubItemEventArgs.cs: Add padding to the bounds when drawing text
2891         using the DrawText () methods.
2892
2893 2007-06-19  Jonathan Pobst  <monkey@jpobst.com>
2894
2895         * ToolStripProfessionalRenderer.cs: Put back clearing a ToolStripDropDown's
2896         background which got erased in my changes yesterday.
2897
2898 2007-06-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2899
2900         * ListViewItem.cs: Actually set bounds for subitems in Details view
2901         (2.0 feature).
2902         * ThemeWin32Classic.cs: Refactor the drawing code for subitems, so we
2903         can invoke from the owner draw routines if we need it. Also, add
2904         support for Owner draw in Details view.
2905
2906 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
2907
2908         * ToolStripDropDownMenu.cs, ToolStripItem.cs, ToolStripLabel.cs,
2909         ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs: Respect the
2910         ShowImageMargin setting, properly align text in a ToolStripLabel
2911         hosted on a ToolStripDropDown.
2912
2913 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
2914
2915         * ToolStrip.cs, ToolStripContentPanel.cs, ToolStripDropDownMenu.cs,
2916         ToolStripProfessionalRenderer.cs: Refactor and clean up some rendering code.
2917
2918 2007-06-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2919
2920         * DrawListViewSubItemEventArgs.cs: Actually implement its methods.
2921
2922 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
2923
2924         * ToolStripLabel.cs: If the label is on a dropdown, adjust the text
2925         location to match ToolStripMenuItems.
2926
2927 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2928
2929         * DrawListViewColumnHeaderEventArgs.cs:
2930         * ThemeWin32Classic.cs: Implement 2.0 OwnerDraw support for
2931         column headers in ListView. 
2932
2933 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
2934
2935         * UserControl.cs: Implement AutoSize.
2936
2937 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2938
2939         * DrawListViewItemEventArgs.cs:
2940         * ListView.cs:
2941         * ThemeWin32Classic.cs: Implement basic support for 2.0 OwnerDraw in
2942         ListView.
2943
2944 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
2945
2946         * ToolStripDropDownItemAccessibleObject.cs: Added.
2947         * ToolStripDropDownItem.cs, ToolStripItem.cs, ToolStripMenuItem.cs,
2948         ToolStripOverflow.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
2949         ToolStripProgressBar.cs, ToolStripSeparator.cs, ToolStripSplitButton.cs,
2950         ToolStripTextBox.cs: corcompare work.
2951
2952 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
2953
2954         * OSFeature.cs, StatusStrip.cs, TabControl.cs, TableLayoutSettings.cs,
2955         TableLayoutStyle.cs, TableLayoutCollection.cs, ToolStripContentPanel.cs,
2956         ToolStripControlHost.cs, ToolStripDropDown.cs, ToolStripDropDownButton.cs:
2957                 corcompare.
2958
2959 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
2960
2961         * OSFeature.cs: Add IsPresent.
2962         * PrintPreviewControl.cs: Add RightToLeft.
2963         * SplitContainer.cs: Add AutoScrollOffset, ScaleControl.
2964         * SplitterPanel.cs: Add AutoSizeMode.
2965
2966 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
2967
2968         * LayoutEventArgs.cs: Add 2.0 AffectedComponent.
2969         * MdiClient.cs: Add 2.0 ScaleControl.
2970         * NativeWindow.cs: Implement 2.0 interface IWin32Window.
2971         * NumericUpDownAccelerationCollection.cs: Add [ListBinding].
2972
2973 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
2974
2975         * Form.cs: Implement some scaling methods, stub some RTL methods,
2976         corcompare work.
2977
2978 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
2979
2980         * Control.cs: corcompare work.
2981         * FlatButtonAppearance.cs, FolderBrowserDialog.cs: Add TypeConverters.
2982
2983 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
2984
2985         * ControlPaint.cs, Theme.cs, ThemeWin32Classic.cs: Implement
2986         ControlPaint 2.0 stuffs.
2987
2988 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2989
2990         * ThreadExceptionDialog.cs: Add 2.0 stuffs.
2991
2992 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2993
2994         * UpDownBase.cs: Add 2.0 stuffs.
2995
2996 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2997
2998         * NumericUpDown.cs: Add 2.0 stuffs.
2999
3000 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3001
3002         * NotfiyIcon.cs: Add MouseDoubleClick event, hook up MouseClick event.
3003
3004 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3005
3006         * ErrorProvider.cs: Implement 2.0 stuffs.
3007
3008 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3009
3010         * DomainUpDown.cs: Implement 2.0 stuffs.
3011
3012 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3013
3014         * CheckedListBox.cs: Fix RefreshItems signature.
3015
3016 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3017
3018         * PictureBox.cs: Implement 2.0 stuffs.
3019
3020 2007-06-12  Andreia Gaita  <avidigal@novell.com>
3021         
3022         * TabControl.cs: Check if there are tabpages before checking
3023         the selected index - fix #81802 (font changes raise a ResizeTabs
3024         call on controls.add, which blew up nicely with no tabpages)
3025
3026 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3027
3028         * ListView.cs:
3029         * ListViewItem.cs: Implement 2.0 ItemSelectionChanged event.
3030
3031 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3032
3033         * ListView.cs:
3034         * ListViewItem.cs: In VirtualMode the selection information
3035         resides in the ListView, rather than in the Items. Also, throw
3036         InvalidOperationExceptions when VirtualMode is being used and
3037         CheckedItemCollection is accessed.
3038
3039 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3040
3041         * ComboBox.cs: Add ScaleControl.
3042
3043 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3044
3045         * ButtonBase.cs: ButtonBaseAccessibleObject.State should not be visible to 1.1.
3046
3047 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3048
3049         * GroupBox.cs: Add 2.0 stuffs.
3050
3051 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3052
3053         * Panel.cs: Add autosize properties/event.
3054
3055 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
3056
3057         * Control.cs:
3058         - When we remove a control, remove it from the collection before performing the layout.
3059         - Setup an internal property for explicit_bounds.
3060         - Don't let the UpdateBounds in CreateHandle overwrite our explicit bounds.
3061         - Perform a layout when we set a new AutoSizeMode.
3062
3063 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
3064
3065         * ScrollableControl.cs: Add 2.0 stuffs.
3066
3067 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3068
3069         * ScrollBar.cs: Add 2.0 stuffs.
3070
3071 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3072
3073         * Splitter.cs: Add 2.0 stuffs.
3074
3075 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3076
3077         * SplitContainer.cs: Apply patch from Neil Cawse <neilcawse@geotab.com>
3078         to have BindingContext simply use base implementation.
3079
3080 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3081
3082         * ColumnHeader.cs: corcompare fix.
3083
3084 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3085
3086         * Button.cs: corcompare fixes.
3087         * ButtonBase.cs: corcompare fixes, add ButtonBaseAccessibleObject.State.
3088
3089 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3090
3091         * Button.cs: Override GetPreferredSizeCore.
3092         * ButtonBase.cs: PerformLayout after changing properties that can affect
3093         AutoSize.  Simplify some mouse/keyboard code.
3094         * Control.cs: PerformLayout after changing Padding if AutoSize = true.
3095         * MouseEventArgs.cs: Make Location internal for 1.1.
3096         * TextRenderer.cs: Make MeasureTextInternal (string, Font, bool) internal for 1.1.
3097         * Theme.cs: Add CalculateButtonAutoSize.
3098         * ThemeWin32Classic.cs: Implement CalculateButtonAutoSize.
3099
3100 2007-06-05  Miguel de Icaza  <miguel@novell.com>
3101
3102         * TreeNodeCollection.cs: Applied patch from Neil Cawse <neilcawse@geotab.com>
3103
3104 2007-06-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3105
3106         * ListViewItem.cs: We can't cache Bounds in VirtualMode 
3107         since we can get different item instances every time we retrieve it.
3108
3109 2007-06-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3110
3111         * ListView.cs: Work around for #81602, since an unkown an pretty
3112         infrequent condition appears only in some systems (old linux boxes, it
3113         seems).
3114
3115 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3116
3117         * Button.cs: Completely reformat and a little refactor to bring
3118         this closer to Mono circa 2007.
3119
3120 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3121
3122         * CheckBox.cs, Form.cs, RadioButton.cs: Change call to ButtonBase.Redraw
3123         to be ButtonBase.Invalidate.
3124
3125 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3126
3127         * ButtonBase.cs: GetPreferredSize is 2.0 only.  Fixes build.
3128
3129 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3130
3131         * ButtonBase.cs: Completely reformat and a little refactor to bring
3132         this closer to Mono circa 2007.
3133
3134 2007-06-01  Everaldo Canuto  <ecanuto@novell.com>
3135
3136         * Label.cs: Fixes preferred sizes for 2.0 profile, also adjust some
3137         values for autosize. Fixes #80137.
3138
3139 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
3140
3141         * Control.cs: Don't perform layout when AutoSize changes.
3142         * Form.cs: Perform layout in AutoSize override.  Don't set ClientSize
3143         directly when autosizing, use SetBounds with BoundsSpecified.None.
3144         Fixes unit tests my last commit broke.
3145
3146 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
3147
3148         * Control.cs: Perform layout when AutoSize changes.
3149         * Form.cs: Implement AutoSizing.
3150
3151 2007-06-01  Chris Toshok  <toshok@ximian.com>
3152
3153         * DataGrid.cs: remove the XXX'ed check at the top of
3154         ProcessGridKey.  fixes #80464.
3155
3156 2007-06-01  Chris Toshok  <toshok@ximian.com>
3157
3158         * DataGridTextBoxColumn.cs: TextBox.TextChanged event handler
3159         adding idempotent (add/remove in Edit()), and also make sure we
3160         don't add it until after we set the text, so it's not tripped in
3161         Edit().  Fixes unit test regression.
3162
3163 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
3164
3165         * Control.cs: In UpdateBounds, only recalculate anchor distances if the
3166         change is user explicit, not when the layout engine moves stuff.  Fixes
3167         anchoring to bottom and right.  [Fixes bug #81790]
3168
3169 2007-06-01  Andreia Gaita  <avidigal@novell.com>
3170
3171         * PrintDialog.cs: Add collation preview thumbnails. Fixes #80726.
3172
3173 2007-06-01  Andreia Gaita  <avidigal@novell.com>
3174
3175         * ContainerControl.cs: 
3176         Fire enter event for common ancestor if it is not a ContainerControl.
3177         Send focus to the active_control and not the 'value', the active 
3178         control might have been changed in one of the events fired.     
3179         Definitely fixes #80159.
3180
3181 2007-06-01  Andreia Gaita  <avidigal@novell.com>
3182
3183         * DataGrid.cs: Finish editing when focus leave the datagrid. Fixes #80159.
3184
3185 2007-06-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3186
3187         * PropertyGrid.cs: Anchor the help description to the bottom of the
3188           help panel and refactor SelectGridItem into a
3189           SelectGridItemInternal that can be set to null (and update it to
3190           clear the help texts when it is set to null). Set root item to null
3191           when there's no SelectedObject. Fixes #80438.
3192         * ScrollableControl.cs: In Recalculate we need to ResumeLayout(true)
3193           when we're recalculating after a resize (only).
3194
3195 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3196
3197         * ListView.cs: Implement 2.0 RedrawItems method.
3198
3199 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3200
3201         * ListControl.cs: Disconnect PositionChanged and ItemChanged
3202         handlers from previous data manager when DataSource is set to
3203         null. Fixes #81771.
3204
3205 2007-05-31  Jackson Harper  <jackson@ximian.com>
3206
3207         * TextBoxBase.cs: These seem to be the correct values.
3208
3209 2007-05-31  Everaldo Canuto  <ecanuto@novell.com>
3210
3211         * FileDialog.cs: When close dialog with ok set filterindex using combobox
3212         value. Fixes #81784.
3213
3214 2007-05-31  Jonathan Pobst  <monkey@jpobst.com>
3215
3216         * Control.cs: Implement 2.0 scaling methods.
3217
3218 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3219
3220         * ProgressBar.cs, WebBrowserBase.cs, Control.cs, MaskedTextBox.cs,
3221           MessageBox.cs, PropertyGrid.cs, RichTextBox.cs: Fix warnings and
3222           corcompare issues.
3223
3224 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3225
3226         * ProgressBar.cs: Implemented missing 2.0 members.
3227
3228 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3229
3230         * Control.cs: Corcompare issues.
3231         * MessageBox.cs: Implemented missing 2.0 functions.
3232
3233 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3234
3235         * CheckedListBox.cs, ListBox.cs, ListControl.cs, ComboBox.cs:
3236           Implemented more 2.0 members.
3237
3238 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3239
3240         * Application.cs: Try to avoid NRE when Assembly.GetEntryAssembly is
3241           null (strange, but it seems to happen when running unit tests).
3242
3243 2007-05-30  Andreia Gaita  <avidigal@novell.com>
3244
3245         * ContainerControl.cs: Set active_control even earlier, before 
3246         firing any events, and undo it if validation returns false.
3247
3248 2007-05-30  Andreia Gaita  <avidigal@novell.com>
3249
3250         * ContainerControl.cs: Raise Validation and Enter/Leave events
3251         even if there is no Form and set active_control earlier, just
3252         before firing Enter events (toshok's patches). Fixes #80647.
3253
3254 2007-05-30  Jackson Harper  <jackson@ximian.com>
3255
3256         * TextControl.cs: Redid the pageup/pagedown a little to simplify
3257         things and fix bug #81311.
3258
3259 2007-05-30  Jackson Harper  <jackson@ximian.com>
3260
3261         * X11Dnd.cs: Now that we have our own event loop, we need to
3262         cancel when we get a mouseup but it won't be accepted.
3263
3264 2007-05-30  Chris Toshok  <toshok@ximian.com>
3265
3266         * DataGrid.cs (set_CurrentCell): guard against negative
3267         column/row.
3268
3269         * DataGridColumnStyle.cs (CheckValidDataSource): just use the
3270         array index syntax instead of looping over the property names.
3271
3272         * DataGridTextBoxColumn.cs: add a changed handler on the textbox,
3273         and set IsInEditOrNavigateMode to false there.
3274
3275 2007-05-30  Jackson Harper  <jackson@ximian.com>
3276
3277         * TreeView.cs: Make sure we don't get a bad visible order when
3278         setting to the top node.  Fixes some misc crashing in
3279         ControlInspector.
3280
3281 2007-05-30  Andreia Gaita  <avidigal@novell.com>
3282
3283         * UserControl.cs: Add 2.0 AutoSizeMode
3284
3285 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3286
3287         * DataGridTextBoxColumn.cs: Fix textbox horizontal offset.
3288
3289 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3290
3291         * DataGridTextBoxColumn.cs: Fix textbox position to prevent override grid
3292         lines. Fixes #80285. 
3293
3294 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3295
3296         * DataGridColumnStyle.cs: Add char trimming column header text format. 
3297
3298 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3299
3300         * DataGridColumnStyle.cs: Fix grid header arrow drawing over column name. 
3301         Fixes #80147.
3302
3303 2007-05-29  Jackson Harper  <jackson@ximian.com>
3304
3305         * TreeNode.cs: Fix off by one on calculating whether or not a node
3306         is visible.
3307
3308 2007-05-29  Jonathan Pobst  <monkey@jpobst.com>
3309
3310         * Control.cs: ResumeLayout(false) should recalculate anchor distances.
3311         * ScrollableControl.cs: Force an UpdateDistances when we move the
3312         scrollbars.
3313         [Fixes bug #80605]
3314
3315 2007-05-29  Andreia Gaita  <avidigal@novell.com>
3316
3317         * PageSetupDialog.cs: Fix #80728 - Changing the printer doesn't
3318         update the page setup screen.
3319
3320 2007-05-29  Andreia Gaita  <avidigal@novell.com>
3321
3322         * PageSetupDialog.cs: Fix landscape mode.
3323
3324 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3325
3326         * SystemInformation.cs: Add 2.0 IconSizeVerticalSpacing and
3327         IconSizeHorizontalSpacing.
3328
3329 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3330
3331         * ListView.cs: The declaration of prev_tooltip_item should be inside
3332         a NET_2_0 conditional (avoid a warning).
3333
3334 2007-05-28  Andreia Gaita  <avidigal@novell.com>
3335
3336         * PageSetupDialog.cs: Implement PrintPreview control to display
3337         the preview thumbnail. Change unit conversion to use 
3338         PrinterUnitConvert methods.
3339         
3340         Note: there is a huge bug in ms.net where the default margins are 
3341         interpreted as centimeters (?), when in fact they are set in inches. When 
3342         loading the page setup dialog initially (ms.net), the default margins 
3343         are set to 1 inch, and the dialog shows them with value 10, when in fact 
3344         it should be 25 (properly converted). Our dialog doesn't have this bug.
3345         
3346         * Theme.cs, ThemeWin32Classic.cs: Add a CPDrawBorder override for 
3347         RectangleF.
3348         * ControlPaint.cs: Add a DrawBorder internal method for RectangleF.
3349
3350 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3351
3352         * ListView.cs:
3353         * ListViewItem.cs: Implement 2.0 ToolTipText support for listview
3354         items.
3355
3356 2007-05-28  Andreia Gaita  <avidigal@novell.com>
3357
3358         * X11Dnd.cs: A direct cast to VirtualKeys is not allowed from
3359         an IntPtr on csc (it builds fine on mcs, could it be a compiler
3360         bug?), convert the ptr to Int32 first.
3361
3362 2007-05-28  Jackson Harper  <jackson@ximian.com>
3363
3364         * X11Dnd.cs: Add a timer, so after drop, if a finish is not
3365         recieved, we will exit the dnd tracking loop.
3366
3367 2007-05-28  Jackson Harper  <jackson@ximian.com>
3368
3369         * X11Dnd.cs: Keep tracking until the xdnd finished event is
3370         recieved. TODO: I should probably stick a timer on the dropped
3371         event, and finish the drag if the XDND Finished event never shows
3372         (because some apps don't seem to send it).
3373
3374 2007-05-28  Everaldo Canuto  <ecanuto@novell.com>
3375
3376         * ToolBar.cs: Fix toolbar default width for button with image. Fixes
3377         #81733.
3378
3379 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3380
3381         * MonthCalendar.cs: Only mark the keypresses we actually handle as
3382           handled.
3383
3384 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3385
3386         * MonthCalendar.cs: Set the size after initializing all the relevant
3387           variables. Fixes #81742.
3388
3389 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3390
3391         * KeyEventArgs.cs: Fix typo.
3392
3393 2007-05-28  Gert Driesen  <drieseng@users.sourceforge.net>
3394
3395         * DateTimePicker.cs: Changed exceptions thrown by MinDate and MaxDate
3396         to match MS. Fixed MinDate to only accept value less than or equal
3397         to MaxDate on 2.0 profile and less than MaxDate on 1.0 profile.
3398         Removed TODO's that are now verified by unit tests.
3399
3400 2007-05-27  Gert Driesen  <drieseng@users.sourceforge.net>
3401
3402         * TreeNodeCollection.cs: Minor corrections to exceptions to match
3403         MS.
3404
3405 2007-05-25  Jackson Harper  <jackson@ximian.com>
3406
3407         * X11Dnd.cs: Rework to make StartDrag a blocking call that runs
3408         it's own message loop.
3409         * XplatUIX11.cs: Remove some of the dnd hooks
3410
3411 2007-05-25  Gert Driesen  <drieseng@users.sourceforge.net>
3412
3413         * XplatUIX11.cs: Change MinimumWindowSize to {Width=0,Height=0}
3414         instead of MinimizedWindowSize.
3415
3416 2007-05-25  Jackson Harper  <jackson@ximian.com>
3417
3418         * TextBoxBase.cs: Raise textchanged when cutting and pasting text.
3419
3420 2007-05-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3421
3422         * KeyEventArgs.cs: Added SuppressKeyPress.
3423         * Control.cs: Added support for SuppressKeyPress.
3424
3425 2007-05-24  Andreia Gaita  <avidigal@novell.com>
3426
3427         * NumericUpDown.cs: Refactor code to fix regressions on #79950 and
3428         problems with PieChart. suppress_validation should not be a counter,
3429         if there are several BeginInit calls, the first EndInit will 
3430         activate validation. Fix exceptions thrown by set_Value.
3431         * UpDownBase.cs: ValidateText only if it's the user editing it.
3432
3433 2007-05-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3434
3435         * ListControl.cs: FilterItemOnProperty should return the filtered
3436         item proeprty even if DataSource is null. The same applies for
3437         GetItemText. Fixes #80427.
3438
3439 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
3440
3441         * Control.cs: If a control doesn't have a parent when it's Dock is
3442         set, but it has children, it needs to do a layout.  Fixes some nested
3443         controls issues.  [Fixes bug #81199]
3444
3445 2007-05-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3446
3447         * ComboBox.cs: If there are few items in the drop down list, make it
3448           the exact size the items need, no bigger. Fixes #81612.
3449
3450 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
3451
3452         * Application.cs: When we have captured the keyboard for a menu,
3453         check for mouse down events in case we need to close the menu.
3454         * Control.cs, Form.cs: Remove mouse down checks for menus.
3455
3456 2007-05-24  Jackson Harper  <jackson@ximian.com>
3457
3458         * TextControl.cs: Handle tabs in non multiline mode a little
3459         differently.
3460
3461 2007-05-24  Jackson Harper  <jackson@ximian.com>
3462
3463         * TextControl.cs: We need to manually break apart tabbed text and
3464         move the tabs, since the system.drawing tabbing mechanism relies
3465         on tab stops.
3466         * TextBoxBase.cs: Move the caret properly when the user enters a
3467         tab.
3468
3469 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
3470
3471         * ContainerControl.cs: Don't check CanSelect before calling
3472         ProcessMnemonic.
3473         * ToolStrip.cs: Only do implicit mnemonics on MenuStrips.  Don't
3474         release a KeyboardActive on click if it's not ours.
3475
3476 2007-05-23  Andreia Gaita  <avidigal@novell.com>
3477
3478         * ColumnHeader.cs: Add TypeConverter
3479
3480 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3481
3482         * LinkLabel.cs: Implement LinkCollection.Add with Link parameter (2.0).
3483
3484 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3485
3486         * LinkLabelLinkClickedEventArgs.cs, LinkLabel.cs: Implement Button property.
3487
3488 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3489
3490         * LinkLabel.cs: Implement public Padding property.
3491
3492 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3493
3494         * LinkLabel.cs: Implement public FlatStyle.
3495
3496 2007-05-23  Jonathan Pobst  <monkey@jpobst.com>
3497
3498         * Control.cs: Apply patch from George to call parent.PerformLayout
3499         when Visible is changed.  [Fixes bugs #81118, 81718]
3500
3501 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3502
3503         * MainMenu.cs, MenuAPI.cs: Implement Collapse event for MainMenu (2.0).
3504
3505 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3506
3507         * ContextMenu.cs: Implement ProcessCmdKey with control parameter.
3508
3509 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
3510
3511         * ContextMenu.cs: Implement Collapse.
3512
3513 2007-05-23  Rolf Bjarne Kvinge <RKvinge@novell.com>
3514
3515         * ToolBarButton.cs: Implement Name.
3516
3517 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
3518
3519         * ToolBar.cs: Fix OnButtonDropDown to save item used in dropdown instead of
3520         use current_item, it prevents some NRE. Fixes #81675.  
3521
3522 2007-05-22  Andreia Gaita  <avidigal@novell.com>
3523
3524         * NumericUpDown.cs: Fix PieChart by not returning from UpdateEditText
3525         without updating the text.
3526
3527 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
3528
3529         * XplatUIWin32.cs: Plug a GDI leak caused by calling Font.ToHfont ()
3530         without calling DeleteObject.  [Should fix bug #81709]
3531
3532 2007-05-22  Jackson Harper  <jackson@ximian.com>
3533
3534         * RichTextBox.cs: Set the line endings correctly, when flushing
3535         RTF text.
3536
3537 2007-05-22  Gert Driesen  <drieseng@users.sourceforge.net>
3538
3539         * XplatUIX11.cs: MinimumWindowSize on X11 is actually
3540          {Width=0,Height=0}.
3541
3542 2007-05-22  Jackson Harper  <jackson@ximian.com>
3543
3544         * TreeView.cs: Setting top with a null node should set to the very
3545         top.
3546
3547 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3548
3549         * Form.cs: ShowDialog: destroy the handle when message loop is
3550           finished, matches MS behaviour. Refactor parts of WmClose into
3551           RaiseCloseEvents, that only raises events if they haven't already
3552           been raised. Fixes #81688 and #81521.
3553         * Application.cs: Don't call close on the form when exiting a modal
3554           loop, it will raise all the (Form)Closed/Closing events again if
3555           WM_CLOSE has been sent earlier on, instead call RaiseCloseEvent,
3556           which doesn'r raise any events it they have been raised before.
3557
3558 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
3559
3560         * Control.cs: Add OnPrint.
3561         * ToolStrip.cs: Add GetChildAtPoint.
3562         * ToolStripContainer.cs: Add OnRightToLeftChanged.
3563         * ToolStripRenderer.cs: Make CreateMirrorImage internal.
3564
3565 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
3566
3567         * MenuAPI.cs: Prevent context menu to be typed as MainMenu. Fixes #81509.  
3568
3569 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3570
3571         * InternalWindowManager.cs: ToolTipShow: Don't show tooltip if the form
3572           isn't visible anymore. Fixes #81651.
3573
3574 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3575
3576         * Control.cs: WmShowWindow: Update children's z-order after setting
3577           their parent. SetParent may show the window, thereby corrupting
3578           z-order, since the window will be shown on top.
3579         * XplatUIWin32.cs: SetParent: don't call SetVisible on forms. Prevents
3580           multiple (and redundant) WM_SHOWWINDOW messages.
3581         * MdiWindowManager.cs: RaiseDeactivate: only raise after an Activate
3582           event has already been raised.
3583         * Form.cs: Change is_changing_visible_state to a counter, since
3584           SetVisibleCore can be called recursively. CreateHandle: when
3585           creating mdi children, send (De)Activated events.
3586         * MdiClient.cs: Update use of is_changing_visible_state.
3587         * Application.cs: OnThreadException: Surround exception handling with
3588           try/finally to ensure we always reset the error-handling state
3589           before leaving.
3590
3591 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3592
3593         * ThemeWin32Classic.cs: DrawProgressBar: Avoid a DivideByZero exception
3594           (#81704).
3595
3596 2007-05-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3597
3598         * ListView.cs: Use Theme.ListViewHorizontalSpacing for List and
3599         SmallIcon views, now that we have a standarized horizontal spacing.
3600
3601         * ThemeWin32Classic.cs: ListViewHorizontalSpacing now has a value of
3602         4, just like the other views (Match .Net).
3603
3604 2007-05-21  Jonathan Pobst  <monkey@jpobst.com>
3605
3606         * Control.cs: Delay calculating anchor distances until we actually layout.
3607         Always query the WM for the actual size and location it put us at instead of
3608         only when we send negative values.
3609         [Fixes bugs #81694, 81695]
3610
3611 2007-05-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3612
3613         * Application.cs: Avoid a possible stack overflow when trying to exit
3614           the application.
3615
3616 2007-05-19  Marek Safar  <marek.safar@gmail.com>
3617
3618         * Theme.cs (GetHatchBrush): A key uses internal value instead of formated
3619         enum value.
3620
3621 2007-05-19  Andreia Gaita  <avidigal@novell.com>
3622
3623         * NumericUpDown.cs: Added 2.0 methods (spin acceleration)
3624         * NumericUpDownAcceleration.cs, 
3625           NumericUpDownAccelerationCollection.cs: Added 2.0
3626           implementation.
3627
3628 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
3629
3630         * RichTextBox.cs: Recalculate the document after the ScrollBars
3631         property is changed. Fixes bug #81681.
3632
3633 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
3634
3635         * DataObject.cs: Implement 2.0 methods.
3636
3637 2007-05-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3638
3639         * ThemeWin32Classic.cs: Draw the check marks in ListViewItems
3640         in the center of the checkbox, not in the left-top corner. 
3641         Fixes #80037.
3642
3643 2007-05-18  Jackson Harper  <jackson@ximian.com>
3644
3645         * RichTextBox.cs: Recalculate the document after the scrollbars
3646         property is changed.
3647         * TextBoxBase.cs: ScrollBars is not a flags enum...This fixes
3648         81486.
3649
3650 2007-05-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3651
3652         * CreateParams.cs: Make HasWindowManager marginally faster.
3653         * XplatUIX11.cs, Hwnd.cs: CreateWindow: Move the default location code
3654           into Hwnd so that other drivers can use it as well.
3655         * XplatUIWin32.cs: CreateWindow: If the window has a window manager get
3656           the default location from Hwnd. Fixes MDI client windows always
3657           showing up at (0,0) in Windows (Win32 won't set the default
3658           location since the window styles aren't correct).
3659
3660 2007-05-18  Gert Driesen  <drieseng@users.sourceforge.net>
3661
3662         * TreeView.cs: Modified DoubleBuffered to just use the base
3663         implementation.
3664
3665 2007-05-18  Jackson Harper  <jackson@ximian.com>
3666
3667         * TreeView.cs: Set the top node to the last child node when
3668         expanding all
3669         - When we get focus, if there is no selected node, use the top
3670         node.
3671
3672 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
3673
3674         * KeysConverter.cs: Add CanConvertTo.
3675         * LinkLabel.cs: Add some 2.0 constructors and properties to LinkLabel.Link.
3676         * LinkConverter.cs: Added.
3677
3678 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3679
3680         * Cursor.cs: Apply Sebastien patch from #81669 to open file in read mode,
3681         it prevents error when file dont have write access. Fixes #81669 and #81667.  
3682
3683 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3684
3685         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw toolbar 
3686         button text. Fixes #79640.  
3687
3688 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3689
3690         * Control.cs: According to MSDN controls created in the designer theres 
3691         keyboard accelerators visible by default. So included check for design
3692         in ShowKeyboardCuesInternal.  
3693
3694 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3695
3696         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw combobox 
3697         text. Fixes #81621.  
3698
3699 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3700
3701         * Control.cs: ShowKeyboardCuesInternal add to expose ShowKeyboardCues
3702         for 1.0, becuse ShowKeyboardCues is protected on 1.0.  
3703
3704 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
3705
3706         * Control.cs: Finish implementation of UI State using WmChangeUIState
3707         to send WM_UPDATEUISTATE to all child controls. Some hack will be needed
3708         in some controls to check for show_keyboard_cues to draw accell keys "_".  
3709
3710 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3711
3712         * ListBox.cs: When calculating the horizontal scrollbar
3713         in single column mode, don't use values less than 0 for
3714         Maximum. Fixes #81474.
3715
3716 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3717
3718         * ListBox.cs: Throw the some missing exceptions in
3719         ListBox.ObjectCollection methods.
3720
3721 2007-05-17  Jackson Harper  <jackson@ximian.com>
3722
3723         * TextBoxBase.cs: Recalculate the document when the word wrap
3724         value has changed. This fixes 81488.
3725
3726 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
3727
3728         * Clipboard.cs: Implement missing GetText overload.
3729
3730 2007-05-17  Chris Toshok  <toshok@ximian.com>
3731
3732         * Control.cs (CheckDataBindings): remove the binding_context arg
3733         to binding.Check.
3734
3735         * CurrencyManager.cs (OnItemChanged): fix this now that
3736         BindingManagerBase is fixed. also remove the comment telling where
3737         the fix should go.  We set transfering_data to true/false around
3738         the call to PushData to keep UpdateIsBinding from being called.
3739         (ListChangedHandler): remove the extra OnMetaDataChanged call for
3740         PropertyDescriptorAdded in the 1.1 case.  The extra call is
3741         actually generated by System.Data generating 2 metadata changed
3742         events of its own per column add.  The fix should go there.  Add a
3743         comment to that affect in our test's Assert.Ignore.
3744
3745         * BindingManagerBase.cs: Rework PullData and PushData slightly.
3746         we keep a boolean flag (transfering_data) that keeps us from
3747         calling UpdateIsBinding multiple times if we re-enter either of
3748         them.
3749
3750         * ControlBindingsCollection.cs (AddCore): remove the
3751         binding_context arg to binding.Check.
3752
3753         * Binding.cs (IsBinding): don't check if we're binding here, just
3754         return our cached value.  we update it in UpdateIsBinding.
3755         (Check): don't take the binding_context arg, we'll just use our
3756         control's.  Also, for some reason MS doesn't use the data member
3757         field when getting the bindingmanager for this binding.  it just
3758         uses the datasource.  Make this method callable multiple times,
3759         and only do the is_null_desc stuff if manager.Position != -1 (so
3760         we don't get an exception accessing manager.Current).
3761         (UpdateIsBinding): move the code from IsBinding here.
3762         (PositionChangedHandler): call Check here to we can initialize
3763         things that require a non- -1 position.
3764
3765 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
3766
3767         * Form.cs: When alt keys is pressed send WM_CHANGEUISTATE to top level
3768         control.
3769
3770 2007-05-17  Andreia Gaita  <avidigal@novell.com>
3771
3772         * TabControl.cs: Add 2.0 methods and events, including
3773         OnEnter / OnLeave and raises it for tabpages (fixes #79869)
3774         * TabPage.cs: Add 2.0 methods
3775
3776 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
3777
3778         * Control.cs: Implement WmUpdateUIState, show_focus_cues and
3779         keyboard_cues is properly handled by message method.  
3780
3781 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
3782
3783         * TreeViewImageIndexConverter.cs: Add 2.0 methods.
3784
3785 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
3786
3787         * ToolStripTextBox.cs: Wire up new 2.0 Textbox methods/properties.
3788
3789 2007-05-16  Everaldo Canuto  <ecanuto@novell.com>
3790
3791         * Control.cs: 
3792         - WmUpdateUIState added to handle state changes, it make call to
3793         OnChangeUICues event.
3794         - Fixed ShowKeyboardCues to check for MenuAccessKeysUnderlined in
3795         SystemInformation.
3796
3797 2007-05-16  Jonathan Pobst  <monkey@jpobst.com>
3798
3799         * ImageKeyConverter.cs: Added.
3800         * TreeViewImageKeyConverter.cs: Added.
3801
3802 2007-05-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3803         
3804         * ToolTips.cs: Update Text if SetToolTip is called for a control
3805         already showing the tooltip, as well as restarting its timer; show
3806         tooltip if we are inside the control bounds by the time of calling
3807         SetToolTip. Inside ShowTooltip remove the check to not show the 
3808         tooltip again for the active control (it is allowed by .Net to 
3809         show the tooltip on the same control multiple times).
3810
3811 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3812
3813         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
3814
3815 2007-05-16  Andreia Gaita <avidigal@novell.com> 
3816
3817         * ContainerControl.cs: only process tab key if there are no 
3818         modifier keys present, otherwise the control does the 
3819         tab processing, if it needs to. Fixes #81622
3820         * TabControl.cs: Fixes calculation for which tab to select on
3821         shift+ctrl+tab.
3822
3823 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3824
3825         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
3826
3827 2007-05-15  Jonathan Pobst  <monkey@jpobst.com>
3828
3829         * Control.cs: Make IsInputCharInternal to allow controls to
3830         override it and still match MS API.
3831         * TextBoxBase.cs: Override IsInputCharInternal and always
3832         return true.
3833         [Fixes bug #81616]
3834
3835 2007-05-15  Jackson Harper  <jackson@ximian.com>
3836
3837         * TextBox.cs: Disable some of the menu options when using a
3838         readonly textbox.
3839
3840 2007-05-15  Jackson Harper  <jackson@ximian.com>
3841
3842         * TextBox.cs:
3843         * TextBoxBase.cs:
3844         * RichTextBox.cs: Some new 2.0 methods
3845
3846 2007-05-15  Gert Driesen  <drieseng@users.sourceforge.net>
3847
3848         * FileDialog.cs: On 1.0 profile, do not support multidotted 
3849         extensions.
3850
3851 2007-05-14  Jackson Harper  <jackson@ximian.com>
3852
3853         * TextBoxBase.cs: Implement some of the new 2.0 methods.
3854         * RichTextBox.cs: We need to override these methods on 2.0.
3855         * MaskedTextBox.cs: These are implemented now
3856         * TextControl.cs: This was off by one.
3857
3858 2007-05-14  Jackson Harper  <jackson@ximian.com>
3859
3860         * TextControl.cs: Because the line endings are including in the
3861         text, we don't need to add them in anymore.
3862
3863 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3864
3865         * ToolBar.cs: Fix autosize and get it working only after hadle is created,
3866         also prevent redraw in set_autosize if handle is not created. Fixes #81523.
3867
3868 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3869
3870         * ToolBar.cs: Adjust size to default size when button theres no text and
3871         image, it fixes remaining issues from #81524.
3872
3873 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3874
3875         * ToolBar.cs: 
3876         - When not flat call redraw to recalculate sizes on creare handle to match
3877         win32 behavior.
3878         - Revert 77220 because it causes some regressions in toobar
3879         button.
3880
3881 2007-05-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3882
3883         * MaskedTextBox.cs: Update the base text whenever the text changes. MTB
3884           now actually enters a usable state.
3885
3886 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3887
3888         * ToolBar.cs: Check for handle created in redraw to prevent unneeded size
3889         calculations, it reduces the size cauculation from 7 to 3 on a toolbar with
3890         3 buttons.
3891
3892 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3893
3894         * ToolBar.cs: Save default_size on create handle to use later for buttons
3895         without text, needed to mimic win32 behavior.
3896
3897 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3898
3899         * ToolBar.cs: Fix button layour to best fit width or height according to
3900         vertical or not. Fixes #81524.
3901
3902 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
3903
3904         * ToolBarButton.cs: When change style call ToolBar.Redraw to update
3905         toolbar size info because different styles theres different sizes.
3906         Fixes #81522.
3907
3908 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3909
3910         * ThemeWinClassic.cs: For .Net 2.0 don't draw any image
3911         if we are using checkboxes, checked is true, and we have less
3912         than two images in StateImageList; for the 1.1 in the same scenario
3913         draw the first image if we have at least one image in StateImageList.
3914         Fixes part of #81191.
3915
3916 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
3917
3918         * ToolStrip.cs, ToolStripManager.cs: We need to remove items from
3919         the owner's Items collection on merge.
3920
3921 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
3922
3923         * ToolStrip.cs: Use new internal ToolStripItemCollection constructor.
3924         * ToolStripItemCollection.cs: Lots of fixes to when events get called
3925         and parent/owner gets changed based on gert's unit tests.
3926
3927 2007-05-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3928
3929         * MaskedTextBox.cs: Started implementing parts of it.
3930
3931 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3932
3933         * ListView.cs: When clicking the checkbox on the items
3934         take into account the double clicks even if we have only
3935         one image in StateImageList (only for 1.0/1.1). Also 
3936         generate an extra change of checked state when we receive
3937         the second click on checkbox (match .Net behaviour). 
3938         Fixes part of #81191.
3939
3940 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
3941
3942         * ThemeWin32Classic.cs: Fix text rectangles in Tooltips.
3943
3944 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
3945
3946         * Form.cs: Move some of OnLoad to OnLoadInternal so it gets called
3947         even if OnLoad is overriden and base.OnLoad is not called.
3948         [Fixes bug #81582]
3949
3950 2007-05-10  Andreia Gaita  <avidigal@novell.com>
3951
3952         * TableLayoutSettings.cs: A big doh! fix and bowing down of head in 
3953         shame. (I blame my ever-persisting and annoying cold)
3954
3955 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
3956
3957         * ListView.cs: Don't eat navigation keys.  Let them flow through to
3958         KeyDown/KeyPress routines.  [Fixes bug #81569]
3959
3960 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
3961
3962         * ListView.cs: When handling keys for selecting the item based off
3963         keyboard input, do not consider keys pressed with Alt or Control.  Also,
3964         correctly handle keys when the Shift key is down. [Fixes bug #81578]
3965
3966 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
3967
3968         * Control.cs: When using UseWaitCursor, we have to store the requested
3969         Cursor to use when UseWaitCursor is turned off.
3970
3971 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
3972
3973         * Control.cs: Implement PreProcessControlMessage.  Default IsInputChar
3974         to false.
3975         * Application.cs: Use PreProcessControlMessage instead of
3976         PreProcessMessage.
3977         * PreProcessControlMessage.cs: Make internal for 1.1.
3978
3979 2007-05-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3980
3981         * Control.cs: Add InternalContains focus property, which hast the same
3982         functionality of ContainsFocus, but also including implicit controls.
3983         * ListViewItem.cs: Use InternalContainsFocus instead of ContainsFocus,
3984         since we need to know if the focus is contained in our implicit
3985         ItemControl when calculating Layout. Fixes part of #80888.
3986
3987 2007-05-08  Everaldo Canuto  <everaldo@simios.org>
3988
3989         * ToolTip.cs: Remove center form string alignment as it must be align to
3990         left.
3991
3992 2007-05-08  Jonathan Pobst  <monkey@jpobst.com>
3993
3994         * ToolStripItemCollection.cs: Set the new item's parent and owner
3995         in Insert like we do in Add.  [Fixes bug #81568]
3996
3997 2007-05-08  Jackson Harper  <jackson@ximian.com>
3998
3999         * TreeView.cs: GotFocus differences between 1.1 and 2.0.
4000         - Off by one error in SetTop
4001         - Disable DoubeBuffering
4002         
4003 2007-05-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4004
4005         * ScrollableControl.cs: ScrollIControlntoView: we now only move the
4006           control as much as necessary in order to make it entirely visible,
4007           instead of centering the control in the container (matches MS
4008           behaviour). CalculateCanvasSize: we need to take the current scroll
4009           position into account when calculating the maximum canvas,
4010           otherwise the following scenario will fail: resize so that the
4011           scrollbars appear, use the scrollbars to scroll, resize again
4012           smaller, and now the canvas size is too small. Recalculate: when
4013           showing scrollbars make sure they start off at 0, and try to scroll
4014           the active control into view. Fixes #79540. HandleScrollBar: don't
4015           scroll anywhere if the scrollbar isn't visible.
4016
4017 2007-05-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4018
4019         * ListView.cs: When focus changed, call Layout/Invalidate
4020         in the focused item to update the selected state (should show
4021         entire label when ListView is focused, and a part of it if is not).
4022         * ListViewItem.cs: When doing layout for LargeIcon, take into account
4023         for displaying the entire label not only the Focused state of the
4024         item, but also the Focused state of the ListView (match .Net
4025         behaviour).
4026
4027 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4028
4029         * Control.cs: Stub CanRaiseEvents, IsMirrored, and NotifyClients.
4030         Implement UseWaitCursor. 
4031
4032 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4033         Applying contributed patch from Sergey Volk.
4034
4035         * Clipboard.cs: Implement SetDataObject retry logic and new overload
4036         of SetDataObject.
4037         * XplatUIWin32.cs: Throw an ExternalException if the clipboard set fails.
4038
4039 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4040
4041         * Control.cs: Implement DrawToBitmap.
4042
4043 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4044         Applying contributed patch from Stefan Noack.
4045         
4046         * Control.cs: Add [Get|Set]AutoSizeMode.
4047
4048 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4049
4050         * MdiClient.cs: Unmerge menus when the last child is closed.
4051
4052 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4053
4054         * ToolStrip.cs: Do not call BeginMerge on DropDowns.
4055         * ToolStripManager.cs: Call Merge on DropDowns.
4056         [Fixes bug #81477]
4057
4058 2007-05-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4059
4060         * XplatUIWin32.cs: Changed Win32CreateWindow to take enums instead of
4061           uints.
4062         * Form.cs: CreateParams: don't set WS_VISIBLE if we're changing
4063           visibility. We can't create forms visible, since we have to set the
4064           owner before making the form visible (otherwise Win32 will do
4065           strange things with task bar icons). The problem is that we set the
4066           internal is_visible to true before creating the control, so
4067           is_changing_visible_state is the only way of determining if we're
4068           in the process of creating the form due to setting Visible=true -
4069           this works because SetVisibleCore explicitly makes the form
4070           visibile afterwards anyways. Fixes #80775.
4071
4072 2007-05-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4073
4074         * ThemeWin32Classic.cs: When drawing ListViewItems,
4075         use StringTrimming.EllipsisCharacter if the view is Tile, Details,
4076         or LargeIcon _and_ item is not focused (match .Net behaviour).
4077
4078 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
4079
4080         * Control.cs, Form.cs: Fix some obsolete method warnings.
4081
4082 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
4083
4084         * Control.cs: Implement GetChildAtPoint and OnParentCursorChanged.
4085         * GetChildAtPointSkip.cs: Make internal for 1.1 profile.
4086
4087 2007-05-04  Andreia Gaita  <avidigal@novell.com>
4088
4089         * ContainerControl.cs: Fix active_control attribution when going
4090         up the parent chain so that the first parent container gets the control
4091         and the rest of the parent containers get the child containers (skips
4092         non-containers). Fixes #80729
4093
4094 2007-05-04  Randolph Chung  <tausq@debian.org>
4095
4096         * FileDialog.cs: Implement the SupportMultiDottedExtensions property.
4097         [Fixes bug #81499]
4098
4099 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4100
4101         * XplatUIX11.cs: Add a TranslateWindowSizeToXWindowSize overload that
4102           takes a size parameter, since the CreateParam's size isn't true for
4103           minimized forms. Fixes #81518,
4104
4105 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4106
4107         * Form.cs: Add OnDeactivateInternal.
4108         * MdiClient.cs: Raise Deactivate event. Fixes #81409.
4109
4110 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4111
4112         * DateTimePicker.cs: CalculateDropDownLocation: do a null check before
4113           accessing the parent. Fixes #81508.
4114
4115 2007-05-03  Chris Toshok  <toshok@ximian.com>
4116
4117         * CurrencyManager.cs (CurrencyManager.ListChangeHandler): in the
4118         2.0 block, pass listposition + 1 to ChangeRecordState when a row
4119         was added before the current listposition.  Fixes the
4120         TestInsertRowBeforeCurrent unit test.
4121
4122 2007-05-03  Jonathan Pobst  <monkey@jpobst.com>
4123
4124         * Application.cs: Add RaiseIdle.
4125         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
4126         XplatUIX11.cs: Implement RaiseIdle.
4127
4128 2007-05-02  Jonathan Pobst  <monkey@jpobst.com>
4129         corcompare work: N - Z
4130         * NotifyIcon.cs
4131         * ProgressBar.cs
4132         * RadionButton.cs
4133         * ScrollableControl.cs
4134         * SplitContainer.cs
4135         * SplitterPanel.cs
4136         * StatusBar.cs
4137         * SystemInformation.cs
4138         * TabControl.cs
4139         * TableLayoutControlCollection.cs
4140         * TableLayoutPanel.cs
4141         * TabPage.cs
4142         * ToolBar.cs
4143         * ToolBarButton.cs
4144         * ToolStrip.cs
4145         * ToolStripComboBox.cs
4146         * ToolStripContainer.cs
4147         * ToolStripContentPanel.cs
4148         * ToolStripDropDown.cs
4149         * ToolStripDropDownItem.cs
4150         * ToolStripDropDownMenu.cs
4151         * ToolStripItem.cs
4152         * ToolStripItemCollection.cs
4153         * ToolStripMenuItem.cs
4154         * ToolStripPanel.cs
4155         * ToolStripSplitButton.cs
4156         * ToolTip.cs
4157         * TreeNode.cs
4158         * TreeNodeCollection.cs
4159         * TreeNodeMouseHoverEventArgs.cs
4160         * TreeView.cs
4161
4162 2007-05-01  Everaldo Canuto  <everaldo@simios.org>
4163
4164         * ContextMenu.cs: Add public method Show with alignment property to 2.0
4165         stuff. Thanks aatdark for the patch. 
4166
4167 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4168
4169         * GridItem.cs: Implement 2.0 Tag property.
4170
4171 2007-05-01  Frederik Carlier <frederik.carlier@carlier-online.be> 
4172
4173         * TreeNodeCollection.cs: Fix ContainsKey and IndexOfKey methods to use
4174         count instead of Nodes.Length.  [Fixes bug #81448]
4175
4176 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4177
4178         * ComboBox.cs: Fix paramName sent to ArgumentOutOfRangeException's.
4179         [Fixes bug #81506]
4180
4181 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4182         corcompare work: A - M
4183         * BindingNavigator.cs
4184         * Button.cs
4185         * ButtonBase.cs
4186         * CheckBox.cs
4187         * Control.cs
4188         * FlowLayoutPanel.cs
4189         * Form.cs
4190         * Label.cs
4191         * LinkLabel.cs
4192         * ListView.cs
4193
4194 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4195
4196         * Application.cs: Give toolstrips a chance to process mnemonics.
4197         * ToolStrip.cs, ToolStripDropDownButton.cs, ToolStripItem.cs,
4198         ToolStripItemTextRenderEventArgs.cs, ToolStripLabel.cs,
4199         ToolStripMenuItem.cs, ToolStripSplitButton.cs: Implement keyboard mnemonics.
4200
4201 2007-05-01  Jackson Harper  <jackson@ximian.com>
4202
4203         * TextBoxBase.cs: Better preferred height, FixedSingle gets the
4204         wider area too.
4205         - Don't set the BoundsSpecified
4206
4207 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
4208
4209         * Application.cs: When using the toolstrip shortcut mechanism, allow the
4210         message to pass through to a regular control if it hosted by a toolstrip.
4211         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
4212         ToolStripManager.cs: Enable keyboard navigation for ToolStrips.
4213
4214 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
4215
4216         * TextRenderer.cs: Use the flags argument when using the MeasureString
4217         fallback algorithm.
4218
4219 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
4220
4221         * MenuStrip.cs: Don't let multiple ToolStripSeparators get added to
4222         the MDI menu item.  [Fixes bug #81483]
4223
4224 2007-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
4225
4226         * DataGridViewColumn.cs: Initialize value of headercell to zero-length
4227         string. When setting Name to null, use zero-length string instead.
4228
4229 2007-04-29  Andreia Gaita  <avidigal@novell.com>
4230
4231         * TabControl.cs: Implement missing 2.0 methods (SelectTab, 
4232         DeselectTab). Implement missing 2.0 TabPageCollection methods
4233         (Add, ContainsKey, RemoveByKey, IndexOfKey)
4234
4235 2007-04-29  Pedro Martínez Juliá  <pedromj@gmail.com>
4236
4237         * DataGridViewColumn.cs: Make HeaderText take preference over Name.
4238
4239 2007-04-29  Gert Driesen  <drieseng@users.sourceforge.net>
4240
4241         * RichTextBox.cs: In LoadFile, use StreamReader to read plain text.
4242         Fixes bug #81479. Include details of exception when LoadFile fails.
4243
4244 2007-04-28  Alan McGovern <alan.mcgovern@gmail.com>
4245
4246         * DrawListViewSubItemEventArgs.cs: Added missing setter
4247
4248 2007-04-27  Andreia Gaita  <avidigal@novell.com>
4249
4250         * ToolTip.cs: Add missing 2.0 properties. Implement 2.0 Show and 
4251         Hide methods (not complete). Implement missing 2.0 OnPopup event.
4252
4253 2007-04-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4254
4255         * ListView.cs: In ItemControl.OnMouseDown restore a pair of braces I
4256         removed in ly last commit (it was breaking the Label edit feature).
4257
4258         * ThemeWin32Classic.cs: When drawing a ListViewItem use
4259         StringAlignment.Near for LineAlignment (match .Net).
4260
4261 2007-04-27  Andreia Gaita  <avidigal@novell.com>
4262
4263         * TabControl.cs: Change SetTab so it adds the tabpage to the list
4264         of controls if it isn't already there - was blowing up when doing
4265         tabcontrol.TabPages[i]=new TabPage(). 
4266         SetTab now does a replace by removing the page at the index. 
4267         Add a new InsertTab method that inserts a page in a given index 
4268         instead of replacing. 
4269         Implements TabPageCollection.Insert(int, TabPage).
4270
4271 2007-04-27  Chris Toshok  <toshok@ximian.com>
4272
4273         * BindingManagerBase.cs: fill in CurrentItemChanged (and have an
4274         internal handler that can be invoked from our subclasses.)  Also,
4275         add a comment to PushData about how we need to fix it.
4276
4277         * CurrencyManager.cs: tons of changes here.  trying to get things
4278         matching the behavior of .net wrt event orders (ItemChanged,
4279         CurrentChanged, PositionChanged.)  I've implemented a private .net
4280         symbol (ChangeRecordState) that appears in stack traces because
4281         it's actually easier to do this than to effective inline all its
4282         various behaviors at every call site.
4283
4284         * RelatedPropertyManager.cs: guard against an exception here by
4285         not using parent.Current if the position is set to -1 (if the
4286         parent datasource is cleared, for instance).
4287
4288         * Binding.cs: don't parse data in PushData (this might be wrong,
4289         but it jives with MS's behavior.)  Also, don't call PushData when
4290         we get a CurrentChanged event.
4291
4292 2007-04-27  Andreia Gaita  <avidigal@novell.com>
4293
4294         * WebBrowser.cs,
4295           WebBrowserBase.cs,
4296           WebBrowserSiteBase.cs,
4297           HtmlDocument.cs: Added stubbed out classes, no real implementations 
4298           yet.
4299
4300 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
4301
4302         * MainMenu.cs: In draw method without parameters call draw method with 
4303         PaintEvent, another one (just rect) adjust rectangle and we dont need it
4304         as Rect property is already adjusted. Fixes #80694.
4305
4306 2007-04-27  Jonathan Pobst  <monkey@jpobst.com>
4307
4308         * Application.cs: Need to handle keyboard menu deselection here.
4309         * Control.cs: Use WM_SYSKEYUP instead of WM_SYSCOMMAND to start menu keyboard
4310         navigation, allowing keyboard to work on X11.
4311         * ToolStrip.cs: Don't worry about handling the Menu key here anymore.
4312
4313 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
4314
4315         * MenuAPI.cs: When deactivate menu verify if hotkey (_) is active and redraw
4316         menu bar. It fixes some drawing issues in menu bar.
4317
4318 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
4319
4320         * MenuAPI.cs: Remove unneeded "keynav_state = KeyNavState.Idle" before 
4321         Deactivate calls, Deactivate method already do it. Also ser ActiveTracker
4322         when <alt> key is pressed.
4323
4324 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
4325
4326         * XplatUIX11.cs: Simplify SystrayRemove to be like other libraries,     Gtk as 
4327         example just set visible to false and make this prevent from other problems.
4328         In SystrayAdd always remove pending expose. Fixes #81072.
4329
4330 2007-04-26  Marek Safar  <marek.safar@gmail.com>
4331
4332         * TextBoxBase.cs (CaretMoved): Consider scroll maximum when scroll
4333         value is set.
4334
4335 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
4336
4337         * ListView.cs: Added three missing 2.0 events and corresponding
4338         EventHandlers. Added the OwnerDraw property.
4339         * DrawListViewColumnHeaderEventHandler.cs: fixed typo
4340
4341 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
4342
4343         * DrawListViewItemEventArgs.cs
4344         * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
4345
4346 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
4347
4348         * TextControl.cs: Fixed typo in constructor
4349
4350 2007-04-26  Jonathan Pobst  <monkey@jpobst.com>
4351
4352         * Application.cs: Create a shortcut path so that currently selected
4353         MenuStrips can intercept keyboard events without having focus.
4354         * Control.cs: Handle WM_SYSCOMMAND message to activate MenuStrips.
4355         * MenuStrip.cs, ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownItem.cs,
4356         ToolStripItem.cs, ToolStripManager.cs, ToolStripMenuItem.cs: Support
4357         keyboard navigation (arrows, tab, enter, esc) on Windows.  Still need to
4358         generate WM_SYSCOMMAND message in X11 for other platforms.
4359         * ToolStripProfessionalRenderer.cs: ToolStripMenuItems need to be painted
4360         in OnRenderMenuItemBackground instead of OnRenderButtonBackground.
4361         * ToolStripSplitButton.cs: Add DefaultItem property.
4362         
4363 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
4364
4365         * MainMenu.cs: In OnMenuChanged pass PaintEventArgs to Draw method, it
4366         fixes some menu draw problem on Windows with border diferent from default
4367         it also fixes #81403.
4368
4369 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4370
4371         * Form.cs: Refactor WndProc into separate methods, just like Control is
4372           doing it.
4373
4374 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4375
4376         * Control.cs: set_Text: move the call to the driver into a seperate
4377           virtual method so that Form can override it.
4378         * MaskedTextBox.cs: Corcompare fixes.
4379         * Form.cs: Override UpdateWindowText and only update the styles if the
4380           form has been shown (fixes #81405).
4381
4382 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
4383
4384         * Control.cs, Form.cs: Use the better supported WM_?BUTTONDOWN and
4385         WM_ACTIVATE messages instead of WM_MOUSEACTIVATE and
4386         WM_ACTIVATEAPP.  This fixes menus not disappearing on X11 when
4387         the form lost focus or another control was clicked.
4388
4389 2007-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
4390
4391         * DataGrid.cs: Uncomment MakeTransparent calls since bug #80151 is
4392         fixed.
4393
4394 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4395
4396         * DrawListViewColumnHeaderEventHandler.cs, DrawToolTipEventArgs.cs,
4397           DrawListViewItemEventHandler.cs,
4398           DrawListViewSubItemEventHandler.cs, DrawToolTipEventHandler.cs:
4399           Added.
4400         * X11Structs.cs: More ToString implementation.
4401
4402 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
4403
4404         * ToolStripDropDownItem.cs: Don't lazy create a DropDown in Dispose.
4405         * ToolStripOverflowButton.cs: Don't lazy create a DropDown in HasDropDownItems.
4406
4407 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4408
4409         * Control.cs: Only raise OnVisibleChanged if we're not recreating the
4410           handle.
4411         * FormCollection.cs: Don't add a form if it's already in the
4412           collection.
4413         * Form.cs: Change ShowDialog () to call ShowDialog (owner) with a null
4414           according to behaviour and MSDN. The ownerWin32 is the active
4415           window at the moment when we call ShowDialog, not the context's
4416           main form (the context's main form may open another form that opens
4417           a form with ShowDialog, the win32 owner is the second form). Add
4418           and remove forms to the Application.OpenForms in other places to
4419           better match MS behaviour. Add an IsActive property that raises
4420           On(de)Activated only if the active state has changed (we were
4421           raising OnDeactivated before OnActivated while creating forms).
4422         * Application.cs: Refactor Enabling/Disabling of windows for modal
4423           dialog loops out to separate methods, and restore the thread
4424           context when we quit the method. Fixes #81407.
4425
4426 2007-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4427
4428         * ListView.cs: In ItemControl.HandleClicks, also fire 
4429         2.0 MouseClick or MouseDoubleClick events on the parent,
4430         not only the Click/DoubleClick events.
4431
4432 2007-04-24  Andreia Gaita  <avidigal@novell.com>
4433
4434         * TableLayoutSettings.cs: 
4435         - Added a GetControls method and a support structure to help the 
4436         TypeConverter to enumerate the controls for     serialization. 
4437         - Added a new serialization constructor. 
4438         - Added a isSerialized flag initialized to true on the 
4439         serialization constructor so that the TableLayoutPanel.LayoutSettings 
4440         setter does not throw the designed NotSupportedOperation exception
4441         when the object is built through deserialization.
4442         - Implemented GetObjectData
4443         
4444         * TableLayoutPanel.cs: Added check on LayoutSettings.
4445
4446 2007-04-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4447
4448         * ListView.cs: Report Click and DoubleClick events to the parent
4449         from ItemsMouseUp, instead of ItemsMouseDown. This prevents us
4450         from breaking the click count state when using dialog forms (Control
4451         reports the clicks in a similar fashion). In the previous behaviour
4452         the last WM_LBUTTONUP message in a  double click was sent to the
4453         ListView's form, instead of the ListView, which was breaking the click
4454         count for it. Fixes #80387.
4455
4456 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
4457
4458         * BindingNavigator.cs : fixed bugs revealed by new nunit tests
4459
4460 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
4461
4462         * ToolStripDropDownItem.cs: Lazy initialize the DropDown.  This prevents
4463         us from created dropdowns for menu items that do not have subitems.
4464         * ToolStripItem.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs:
4465         Check HasDropDownItems before calling DropDown so a dropdown will not be
4466         created if it isn't needed.
4467
4468 2007-04-24  Jackson Harper  <jackson@ximian.com>
4469
4470         * TreeView.cs: Set the first node to the selected node when we get
4471         focus if there is no selected node.
4472
4473 2007-04-24  Andreia Gaita  <avidigal@novell.com>
4474
4475         * MimeIcon.cs: remove using blocks so that image streams are
4476         not disposed of. Fixes #80151
4477
4478 2007-04-24  Jackson Harper  <jackson@ximian.com>
4479
4480         * TextBoxBase.cs: Fixup the height of textboxes when the control
4481         is created.
4482
4483 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
4484
4485         * ToolStrip.cs: Fully implement GetNextItem.  Call OnParentRightToLeftChanged
4486         for each ToolStripItem when the parent's RightToLeftChanged is called.
4487
4488 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4489
4490         * ComboBox.cs: Forward ContextMenu to the underlying textbox, if any.
4491           Fixes #80163.
4492         * Control.cs: Replace GetContextMenuInternal() with ContextMenuInternal
4493           property, so that the setter can be overriden too.
4494         * TextBox.cs: Change GetContextMenuInternal() to use
4495           ContextMenuInternal.
4496
4497 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4498
4499         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
4500           #81406.
4501
4502 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4503
4504         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
4505           #81406.
4506
4507 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4508
4509         * MaskedTextBox.cs: Commit this so nobody else starts working on it and
4510           avoid duplicate work. Mostily skeleton code, it's not working at
4511           all yet.
4512
4513 2007-04-20  Leszek Ciesielski <skolima@gmail.com>
4514
4515         * NotifyIcon.cs : stub for MouseClick event
4516         * Application.cs: stub for SetUnhandledExceptionMode
4517
4518 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
4519
4520         * BindingNavigator.cs : Initial (partial) implementation
4521
4522 2007-04-23  Jackson Harper  <jackson@ximian.com>
4523
4524         * TreeView.cs: Do not create the treeview's handle when setting
4525         the scroll position.
4526         - ExpandAll needs to compute the scrollbars so it knows which
4527         position to set the bar too.
4528         * TreeNode.cs: 
4529         * TreeNodeCollection.cs: Pass new flag to UpdateScrollBars
4530
4531 2007-04-23  Jackson Harper  <jackson@ximian.com>
4532
4533         * TextBoxBase.cs: Non multiline textboxes shouldn't take the enter
4534         key. Fixes #81408.
4535
4536 2007-04-23  Jonathan Pobst  <monkey@jpobst.com>
4537
4538         * ToolStripItem.cs: Make GetImageSize internal.
4539         * ToolStripMenuItem.cs: Use GetImageSize to determine the size we
4540         need to draw an item.  Fixes a reported issue where images on menus
4541         that were not 16x16 were drawing incorrectly.
4542
4543 2007-04-21  Miguel de Icaza  <miguel@novell.com>
4544
4545         * Padding.cs: Use the converter, fixes the resgen2 issue with
4546         XMLNotePad. 
4547
4548 2007-04-21  Jackson Harper  <jackson@ximian.com>
4549
4550         * TreeView.cs: Dont try to unhighlight the selected node if there
4551         isn't a selected node.
4552
4553 2007-04-21  Jackson Harper  <jackson@ximian.com>
4554
4555         * UpDownBase.cs:
4556         * TextBoxBase.cs:
4557         * ListView.cs:
4558         * ListBox.cs:
4559         * TreeView.cs: Use the InternalBorderStyle property to set the
4560         initial border style, this forces the client rectangle to be sized
4561         correctly.
4562
4563 2007-04-20  Jackson Harper  <jackson@ximian.com>
4564
4565         * TreeView.cs: Simplify scrolling to the last node after expanding
4566         all.
4567         - Fix some off by ones with setting the bottom.
4568
4569 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
4570
4571         * Control.cs: Use DefaultSize for Size, calculate ClientSize from
4572         that.  We were incorrectly doing it the other way around.  Also,
4573         update ClientSize if we change the BorderStyle before the control
4574         is created.
4575
4576 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
4577
4578         * XplatUI.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
4579         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
4580         XplatUIDriver.Caption to CaptionHeight. Spaces to tabs.
4581         * XplatUIDriver.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
4582         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
4583         Caption to CaptionHeight.
4584         * XplatUIX11.cs: Renamed Caption to CaptionHeight.
4585         * Theme.cs: Modified Border3DSize, BorderSize, CaptionButtonSize
4586         and FixedFrameBorderSize to return value from current XplatUI driver.
4587         * XplatUIWin32.cs: Implemented Border3DSize, BorderSize,
4588         CaptionButtonSize, DragFullWindows, DoubleClickSize, DoubleClickTime
4589         and FixedFrameBorderSize using win32 API. Renamed Caption to
4590         CaptionHeight.
4591         * XplatUIOSX.cs: Renamed Caption to CaptionHeight.
4592         * SystemInformation.cs: Fixed typo in BorderSize.
4593
4594 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
4595
4596         * XplatUI.cs: Added MenuAccessKeysUnderlined.
4597         * XplatUIDriver.cs: Added MenuAccessKeysUnderlined.
4598         * XplatUIX11.cs: Implemented MenuAccessKeysUnderlined by always
4599         returning false.
4600         * Theme.cs: Modified MenuAccessKeysUnderlined to return corresponding
4601         value from XplatUI driver.
4602         * XplatUIWin32.cs: Implemented MenuAccessKeysUnderlined using
4603         SystemParametersInfo.
4604         * ThemeWin32Classic.cs: Remove obsolete MenuAccessKeysUnderlined
4605         override.
4606         * XplatUIOSX.cs: Implemented MenuAccessKeysUnderlind by always
4607         returning false.
4608
4609 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4610
4611         * XplatUIX11.cs, Hwnd.cs: Remove warnings.
4612
4613 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4614
4615         * MessageBox.cs, XplatUIX11.cs, Hwnd.cs: Remove warnings.
4616
4617 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
4618
4619         * ToolStripManager.cs: Fix a reported InvalidCastException when unmerging
4620         MenuStrips that contain ToolStripSeparators.
4621
4622 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4623
4624         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Add
4625           DefineStdCursorBitmap.
4626         * Cursor.cs: Add an internal constructor so that the Cursor knows if it
4627           has been created off a standard cursor. This is used to get a
4628           bitmap of the standard cursor when Draw or DrawStretched is called
4629           in order to draw the cursor.
4630         * X11Structs.cs: Added XcursorImage and XcursorImages.
4631         * XplatUIX11.cs, XplatUIWin32.cs: Add and implement
4632           DefineStdCursorBitmap.
4633         * Cursors.cs: Update all relevant creations of Cursor to use the new
4634           internal constructor.
4635
4636 2007-04-19  Jackson Harper  <jackson@ximian.com>
4637
4638         * TextBox.cs: Move the has_been_focused into the base control, so
4639         some of the text adding methods can manipulate it (probably time
4640         for a better name for this flag too).
4641         - Call a new version of selectall that doesn't scroll
4642         * TextBoxBase.cs: When we append text, if the document is empty,
4643         don't scroll.  If the document has text already, we scroll to the
4644         end of the appended text.
4645         - When the text is changed, we reset the has_been_focused, so the
4646         next time the control gets focused, all the text is selected.
4647
4648 2007-04-19  Jackson Harper  <jackson@ximian.com>
4649
4650         * TextControl.cs: Move the margins to the document, add a method
4651         so the margin sizes can be updated.
4652         * TextBoxBase.cs: When the border style is changed, update the
4653         border sizes.
4654
4655 2007-04-19  Jonathan Pobst  <monkey@jpobst.com>
4656
4657         * Control.cs: Respect DefaultPadding.
4658         * GroupBox.cs: Implement DefaultPadding, DisplayRectangle takes
4659         padding into account.
4660         * ToolStrip.cs: Remove setting padding to DefaultPadding in constructor.        
4661
4662 2007-04-19  Jackson Harper  <jackson@ximian.com>
4663
4664         * TextControl.cs: Oops, we need to use the ClientRect not the
4665         bounds here.
4666
4667 2007-04-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4668
4669         * ListView.cs: In ItemControl.ItemsMouseDown, take into
4670         account the double clicks when CheckBoxes are used and
4671         the pointer is inside the checkbox. Fixes part of #81191.
4672
4673 2007-04-18  Jackson Harper  <jackson@ximian.com>
4674
4675         * TextControl.cs: Pressing the end key shouldn't move the caret
4676         past the line ending.
4677         * TextBoxBase.cs: We can still delete if we are in the line
4678         ending and the combine will just kill the existing line ending.
4679
4680 2007-04-18  Jackson Harper  <jackson@ximian.com>
4681
4682         * TextControl.cs: We can't move lines, then invalidate their
4683         bounds, we need to get the old bounds and combine that with the
4684         new bounds.
4685         * TextBoxBase.cs: Before combining two lines for a delete, we need
4686         to invalidate the area of the old line, since that will be moved
4687         in the combine operation.
4688
4689 2007-04-18  Everaldo Canuto  <everaldo@simios.org>
4690
4691         * LinkLabel.cs: In OnPaint invoke draw background to fix problems
4692         with transparent background. Fixes #80482.
4693
4694 2007-04-18  Jonathan Pobst  <monkey@jpobst.com>
4695
4696         * PictureBox.cs: Refresh on resize when SizeMode = Zoom.
4697         * ThemeWin32Classic.cs: Implement PictureBox.SizeMode = Zoom.
4698         [Fixes bug #81391]
4699
4700 2007-04-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4701
4702         * CreateParams.cs: Add a couple of helper methods and do a less string
4703           concatenation in ToString.
4704         * XplatUIX11.cs: Add an TranslateClientRectangleToXClientRectangle
4705           overload that takes a Control parameter, since this method may be
4706           called before a control is assigned to the hwnd (from
4707           CreateWindow), and update CreateWindow to use the new overload. In
4708           GetMenuOrigin subtract the title bar from the y position if the
4709           form has a window manager (since we're painting it and not X).
4710         * XplatUIWin32.cs: If we can get a form in GetMenuOrigin use the form's
4711           CreateParams to calculate the origin (since border sizes may vary).
4712           In ScreenToMenu only subtract the title height if we actually have
4713           a title.
4714         * MdiWindowManager.cs: Override MenuHeight to always return 0, since
4715           mdi children never have menus of themselves.
4716         * InternalWindowManager.cs: Implement menu handling like form does.
4717           Added GetMenuOrigin to calculate the menu origin, can't use the
4718           CreateParams from the form like normally since it's lying.
4719         * Hwnd.cs: Implement GetBorderSize better (in the sense more
4720           windows-like) and add Inflate and comparison operators to the
4721           Borders type. When calculating MenuOrigin and it's a form with a
4722           window manager, use the window manager to calculate it.
4723
4724 2007-04-17  Chris Toshok  <toshok@ximian.com>
4725
4726         * Control.cs (CreateControl): turns out in 2.0 we don't need this
4727         OnBindingContextChanged thing here.  It's only generated from
4728         ContainerControl.OnCreateControl.  Fixes a newly written unit test
4729         - BindingTest.BindingContextChangedTest4.
4730         
4731 2007-04-17  Jackson Harper  <jackson@ximian.com>
4732
4733         * ScrollBar.cs: When setting values, make sure the current
4734         position stays within the new values range.
4735
4736 2007-04-17  Chris Toshok  <toshok@ximian.com>
4737
4738         * Control.cs (CreateControl): talk about a bizarre corner case.
4739         Don't emit OnBindingContextChanged here if we're a parentless
4740         control (i.e. if we're a form.).  Fixes
4741         BindingTest.BindingContextChangedTest2.
4742
4743 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
4744
4745         * ButtonBase.cs: Remove TextFormatFlags.WordBreak to mimic same behavior 
4746         from win32. Fixes #81255.
4747
4748 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
4749
4750         * ThemeWin32Classic.cs: Remove text offset from DrawButtonText as it is
4751         already present in CalculateButtonTextAndImageLayout.
4752
4753 2007-04-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4754
4755         * XplatUIX11.cs: When setting min/max size for a window we need to
4756           translate the coordinates to x coordinates. Create an overload of
4757           SetWindowMinMax that takes a CreateParams handling this, and change
4758           SetWMStyles to call this function (can't use Control.FromHandle in
4759           the SetWindowMinMax to get the control/CreateParams from the handle
4760           because the handle might not have been assigned to the control
4761           yet). Fixes #81371.
4762
4763 2007-04-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4764
4765         * ListView.cs: In ItemControl.ItemMouseDown, don't change check state
4766         if StateImageList is non-null and it has less than two items (match MS
4767         behaviour). Also, in HandleNavKeys handle the Space key, calling
4768         the new ToggleItemsCheckState method, which tries to change the
4769         checked state of the selected items. Fixes part of #81191.
4770
4771 2007-04-16  Jackson Harper  <jackson@ximian.com>
4772
4773         * RichTextBox.cs: namespace cleanup.
4774
4775 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
4776
4777         * XplatUIWin32.cs: Back last parameter to true in SetClipRegion.
4778
4779 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
4780
4781         [Fixes #79447]
4782         * Control.cs: Call invalidate in set_Region.
4783
4784         * XplatUIX11.cs, XplatUIWin32.cs: Remove invalidate from SetClipRegion as
4785         it dont works here.
4786
4787 2007-04-16  Jackson Harper  <jackson@ximian.com>
4788
4789         * TextBoxBase.cs: When enter is pressed, we need to update all
4790         lines below the current.
4791
4792 2007-04-16  Jonathan Pobst  <jpobst@monkey.com>
4793
4794         * MdiClient.cs: Implement implicit menu merging for MDI
4795         children.  When a child form is active, if it has a menustrip
4796         and the parent form has a MainMenuStrip, automatically merge
4797         the menus.
4798
4799 2007-04-15  Andreia Gaita  <avidigal@novell.com>
4800
4801         * TabControl.cs: Refactored sizing methods to not repeat
4802         code all over the place. Tab bounds are now calculated
4803         as if alignment is top and single line, and only when 
4804         setting the bounds are the positions adjusted according
4805         to alignment. Replaced hardcoded positions, spacings and
4806         paddings by getting the values the ThemeEngine. 
4807         Fixes #79619.
4808         
4809         * Theme.cs: Change TabControl properties and methods so
4810         that all start with TabControl*. Added more properties
4811         to help remove hardcoded values on tabcontrol.
4812         Add CPDrawBorder3D declaration so the Theming classes
4813         can access it.
4814         
4815         * ThemeClearlooks.cs, ThemeNice.cs: Method signature changes from Theme.
4816
4817         * ThemeWin32Classic.cs: Rector TabControl out to the TabControlPainter
4818         on the Theming namespace, and call the appropriate methods here.
4819         Change CPDrawBorder3D to public.
4820
4821 2007-04-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4822
4823         * Control.cs: In WmRButtonUp, send the WM_CONTEXTMENU message to
4824         the control after firing the OnMouseUp event, instead of sending
4825         the message before the mentioned event. This is so we can match the
4826         MS behaviour. Fixes part of #80385.
4827
4828 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
4829
4830         * ToolStripItem.cs: Call the RightToLeftChanged event when setting the
4831         RightToLeft property.
4832
4833 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
4834
4835         * ToolStrip.cs: Add properties and internal methods to support merging.
4836         * ToolStripItem.cs: Add MergeAction and MergeIndex.
4837         * ToolStripItemCollection.cs: Add Insert and Remove methods that do
4838         not trigger reparenting or layouts.
4839         * ToolStripManager.cs: Add Merge and RevertMerge methods.
4840         * ToolStripOverflow.cs: Add a convenience method to find the ToolStrip that
4841         is hosting the overflow menu.
4842
4843 2007-04-13  Jackson Harper  <jackson@ximian.com>
4844
4845         * TextControl.cs: Set the line ending correctly for the first
4846         inserted line.
4847
4848 2007-04-13  Sebastien Pouliot  <sebastien@ximian.com>
4849
4850         * Theme.cs: Update GetMethod to get the new definition for 
4851         KnownColors.Update (and fix theme color updates).
4852
4853 2007-04-12  Everaldo Canuto  <everaldo@simios.org>
4854
4855         * MessageBox.cs: Fix some test and button position.
4856
4857 2007-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4858
4859         * Form.cs: Consider the implicit controls in
4860         GetRealChildAtPoint. We need it since this method
4861         is called on Form when handling the some messages in
4862         WndProc, and need to consider those implicit ones too.
4863         Fixes #80385.
4864
4865 2007-04-12  Jonathan Pobst  <monkey@jpobst.com>
4866
4867         * ToolStripMenuItem.cs: Display the ShortcutKeyDisplayString even
4868         if there are no ShortcutKeys set.
4869         * ToolStripProfessionalRenderer.cs: If an item has had its BackColor
4870         set, use it when painting.
4871
4872 2007-04-12  Jackson Harper  <jackson@ximian.com>
4873
4874         * TextControl.cs: Fix some off-by-one issues in line duplication
4875         and insertion in the undo manager. Also, overwrite the first tag
4876         of a line on insert, if it is just a zero lengthed tag. This
4877         prevents us from getting an extra stranded tag at the beginning of
4878         the first line.
4879
4880 2007-04-11  Everaldo Canuto  <everaldo@simios.org>
4881
4882         * Label.cs: Remove check for handle created in CalcAutoSize, we need 
4883         to calculated proper size including when handle was not created yet.
4884
4885 2007-04-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4886
4887         * MdiWindowManager.cs: When moving a form, allow the form to be moved
4888           when the mouse is outside of it's parent's client rectangle. Fixes
4889           #79982 (take 3, part 2).
4890
4891 2007-04-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4892
4893         * X11Structs.cs: Add a few ToString() overrides.
4894         * XplatUIX11.cs: Added GetTopLevelWindowLocation to try to calculate
4895           the window location in a window-manager independent way. Reworked
4896           FrameExtents, it now actually works. Reworked AddConfigureNotify
4897           and ReparentNotify handling to use GetTopLevelWindowLocation
4898           instead of the earlier, more hacky solution. Reworked SetWMStyles,
4899           hopefully for the better: we now set _NET_WM_WINDOW_TYPE* for all
4900           windows, DIALOG for modal windows, UTILITY for toolboxes and NORMAL
4901           for all other windows (fixes #81281 part 1), a toolwindow is hidden
4902           from the taskbar if it has a parent (fixes #81281 part 2 for kwin),
4903           and generally refactored to do as few calculations as possible
4904           inside the lock.
4905
4906 2007-04-09  Sebastien Pouliot  <sebastien@ximian.com>
4907
4908         * Theme.cs: Change "reflective-contract" between MWF and SD to 
4909         minimize # of calls, avoid Color serialization and avoid updating 
4910         every "known colors" each time a single one is updated.
4911
4912 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
4913
4914         * DataGridTextBoxColumn.cs: Only set IsInEditOrNavigateMode to false
4915         when not readonly and the text is explicitly set. Code style updates.
4916         * DataGridTableStyle.cs: Removed extra line.
4917         * DataGrid.cs: Code style updates. Removed extra whitespace.
4918         * DataGridColumnStyle.cs: Code style updates. Removed extra 
4919         whitespace.
4920
4921 2007-04-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4922
4923         * XplatUIX11.cs: Added comment that "fixes" #80021.
4924
4925 2007-04-09  Jackson Harper  <jackson@ximian.com>
4926
4927         * TextControl.cs: We don't need this -1 on the line count anymore.
4928
4929 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
4930
4931         * DataGridTextBoxColumn.cs: In Commit, use TypeConverter to convert
4932         entered value to underlying type, and convert it back to a string to
4933         apply formatting. Modified GetFormattedValue to use TypeConverter
4934         if available.
4935
4936 2007-04-08  Gert Driesen  <drieseng@users.sourceforge.net>
4937
4938         * ListViewItem.cs: Added null checks. Avoid duplicating code in ctors.
4939         Use SubItems property when we want to ensure there's at least one
4940         subitem. Modified SubItems property to ensure there's always at least
4941         one subitem. Avoid using ListViewSubItemCollection.AddRange to match
4942         the NRE's reported by MS.
4943
4944 2007-04-07  Gert Driesen  <drieseng@users.sourceforge.net>
4945
4946         * ProgressBar.cs: On 2.0 profile, default forecolor is Highlight. Added
4947         ResetForeColor override on 2.0. Fixed a few API compatibility issues.
4948         Spaces to tabs. Removed extra tabs.
4949
4950 2007-04-06  Jonathan Pobst  <monkey@jpobst.com>
4951
4952         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
4953         infinite loop.  (Forgot to copy to the horizontal toolstrip case.)
4954
4955 2007-04-06  Jackson Harper  <jackson@ximian.com>
4956
4957         * TextBoxBase.cs: When a delete removes a line, recalculate all
4958         lines below that line (they need to get offsets setup correctly)
4959         and invalidate.
4960
4961 2007-04-05  Jackson Harper  <jackson@ximian.com>
4962
4963         * TextControl.cs: We need to invalidate across the width of the
4964         document when we are invalidating multiple lines.
4965         * TextBoxBase.cs: Don't delete into the line ending.
4966
4967 2007-04-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4968
4969         * ListView.cs: Restore the check for the MouseHover event
4970         in ListView. It looks like the ListView fires more than one MouseHover
4971         event when HoverSelection is true  _only_ in weird-corner scenarios, but
4972         in most of the cases it only fires one. Also, add the 2.0 ItemMouseHover
4973         event.
4974
4975 2007-04-05  Mike Kestner  <mkestner@novell.com>
4976
4977         * ListView.cs : raise MouseDown before updating selection.
4978         [Fixes #80373 tab 1&3]
4979
4980 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
4981
4982         * ToolStripRenderer.cs: Add static method to mirror image.
4983         * ToolStripProfessionalRenderer.cs: Support ImageTransparentColor
4984         and RightToLeftAutoMirrorImage.
4985         * ToolStripItem.cs: Remove MonoTODO from ImageTransparentColor.
4986
4987 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
4988
4989         * ToolStripSplitStackLayout.cs: Support Alignment property.
4990         * ToolStripItem.cs: Remove MonoTODO from the Alignment property.
4991
4992 2007-04-05  Jackson Harper  <jackson@ximian.com>
4993
4994         * TextControl.cs: Move around the line endings when crossing line
4995         boundaries.
4996         - When combining lines, strip the ending text off the first line.
4997
4998 2007-04-05  Jackson Harper  <jackson@ximian.com>
4999
5000         * TextControl.cs:
5001         * TextBoxBase.cs: Try to never move the cursor into the line
5002         ending.
5003         
5004 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
5005
5006         * ToolStripItem.cs: Make sure we aren't firing mouse events when
5007         the item is disabled.  Also add a few missing methods.
5008
5009 2007-04-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5010
5011         * ListView.cs: We don't need the MouseEnter/MouseLeave check
5012         to fire just one MouseHover event when HoverSelection is true, since
5013         .Net does fire more than one MouseHover event in that scenario. Also,
5014         fix the selection in HoverSelection, by invoking UpdateMultiSelect
5015         if MultiSelect is true, instead of only setting ListViewItem.Selected.
5016         Finally, we need to reset the Hover logic in MouseMove, even when we
5017         don't have a selected item.
5018
5019 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
5020
5021         * ToolStrip.cs: Add several missing methods, properties, and events.
5022
5023 2007-04-04  Chris Toshok  <toshok@ximian.com>
5024
5025         * DataGridTextBoxColumn.cs: set the bounds of the text box to
5026         (0,0,0,0) in Commit, as MS does.
5027
5028         * DataGrid.cs: call EndEdit() from Select() as microsoft does, and
5029         make sure we set CurrentRow on a row header click *before* calling
5030         Select.  This moves the current cell (and the textbox) to the new
5031         row.  The call to Select then hides the textbox, giving us the
5032         correct behavior.  Fixes #80362.
5033
5034         * CurrencyManager.cs (UpdateIsBinding): raise ItemChanged (-1).
5035         (ListChangedHandler): reorder the position/current changed events,
5036         and call UpdateIsBinding in the ItemAdded case.
5037
5038         * GridColumnStylesCollection.cs: add some columns events, one of
5039         which raises the CollectionChanged event.
5040
5041 2007-04-04  Jackson Harper  <jackson@ximian.com>
5042
5043         * TextControl.cs: When we delete multiple selection lines
5044         invalidate the selection area, don't need to do that for single
5045         lines because the final update view will handle it.
5046
5047 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
5048
5049         * Control.cs: When we CreateControl, we need to also create all of the
5050         control's children.  The child's OnLoad must also fire before the parent's
5051         OnLoad.  Fixes the toolbox size in PDN.
5052
5053 2007-04-04  Jackson Harper  <jackson@ximian.com>
5054
5055         * TextBoxBase.cs: When the user presses enter, insert a line
5056         ending into the text. (Maybe this would be a good spot for
5057         Environment.NewLine).
5058         * TextControl.cs: Remove undo manager hack, line endings get
5059         inserted properly now.
5060         
5061 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
5062
5063         * MenuAPI.cs: 
5064         - Remove unneeded parameters in UpdateCursor.
5065         - Fix UpdateCursor to check if menu is active.
5066         - Call UpdateCursor when menu deactivate my click.
5067         [Fixes remaining issues from #80410]
5068
5069 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
5070
5071         * Control.cs: GetRealChildAtPoint method added, it make an
5072         recursive child control search for the point. 
5073
5074         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
5075         menu.
5076
5077         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
5078
5079 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
5080
5081         * Form.cs: Fix mouse position when send back mouse event after closes
5082         menu.
5083
5084 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
5085
5086         * Form.cs: Simplify the BUTTONDOWN for active tracker.
5087
5088 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
5089
5090         * Control.cs: Fix an issue where if a user resized a control inside
5091         a sizing method like OnResize, we would overwrite their explicit
5092         value.  Also, only call DefaultSize once in the constructor instead
5093         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
5094         nothing actually changed.
5095
5096 2007-04-03  Jackson Harper  <jackson@ximian.com>
5097
5098         * TextControl.cs: Don't attempt to copy text for lines with no
5099         text in them (technically this shouldn't happen, but we aren't
5100         always inserting line endings when we should be).
5101
5102 2007-04-03  Jackson Harper  <jackson@ximian.com>
5103
5104         * TextBoxBase.cs: Calculate the scrollbars before calculating the
5105         document, because this sets some of the document size properties
5106         that are needed.
5107
5108 2007-04-03  Jackson Harper  <jackson@ximian.com>
5109
5110         * TextBoxBase.cs: We need to calculate maximums even if this is
5111         not a multiline control, because the maxs are used for scrolling.
5112         - Display the caret after doing a page up/down, we need to
5113         manually display it because a proper CaretMoved event isn't
5114         triggered (this is because of the way the math is done to
5115         determine how far to scroll).
5116
5117 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
5118
5119         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
5120         (ToolBar was relying on SetBoundsCore to default the values sent 
5121         base off of BoundsSpecified.)
5122
5123 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5124
5125         * DateTimePicker.cs: Change Text so that when a null value or empty
5126           string is assigned to the test we always raise ValueChanged and
5127           TextChanged (earlier implementation would only raise ValueChanged
5128           if the current date value was different from DateTime.Now).
5129
5130 2007-04-03  Andreia Gaita <avidigal@novell.com> 
5131
5132         * ButtonBase: Call update after invalidation, fixes #80194
5133
5134 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5135
5136         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
5137           #79335.
5138
5139 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5140
5141         * XplatUIX11.cs: SetWMStyles: If the control is a form with
5142           FormBorderStyle = None, don't give the window any decorations.
5143           Fixes #81276.
5144
5145 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5146
5147         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
5148         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
5149           to check for is a mix of several styles (such as WS_CAPTION for
5150           instance).
5151         * Control.cs: Don't paint an area bigger than the client area when
5152           painting the background colour. Add an internal GetCreateParams.
5153           Update calls to XplatUI.CalculateWindowRect due to API change.
5154         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
5155           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
5156           the size if it hasn't been handled by any windows. When creating
5157           and moving windows, X wants the location of the entire window, but
5158           the size of the client window, so add
5159           TranslateClientRectangleToXClientRectangle,
5160           TranslateWindowSizeToXWindowSIze and
5161           TranslatedXWindowSizeToWindowSize to cope with this, and call them
5162           before every window creation and move. Update CalculateWIndowRect
5163           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
5164           In AddConfigureNotify don't do anything if the hwnd is a zombie
5165           (fixes the BadWindow we were getting while running the tests),
5166           always calculate the offsets when it's a parentless window, not
5167           only when reparented, and translate the window size, since we're
5168           getting the client size of the whole window, excluding entire
5169           window.
5170         * Theme.cs: Added BorderSizableSize.
5171         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
5172           anymore. Update calls to XplatUI.CalculateWindowRect due to API
5173           chang
5174         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
5175           change. Fake the window styles here instead of in XplatUIWin32 so
5176           that all back-ends get the same window styles (and it's Form that's
5177           deciding when to use wm, not the Win32 backend anyways)
5178         * Hwnd.cs: Completely reworked GetWindowRectangle and
5179           GetClientRectangle - they are now passed a CreateParams and they
5180           only use Style and ExStyle to determine the rectangles (they should
5181           now work just like Win32AdjustWindowRectEx - though quite a few
5182           special cases are probably missing). They should also be 100%
5183           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
5184           == rect), and all numbers (borders, menu sizes) are taken from the
5185           current theme. Added a GetBorders helper function that will return
5186           the borders for any given CreateParams (including captions and
5187           menus), and GetBorderSize that returns the given border size only.
5188         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
5189           Hwnd.GetClientRectangle.
5190
5191 2007-04-02  Chris Toshok  <toshok@ximian.com>
5192
5193         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
5194         logic between the values we present to the user and the values
5195         which are stored in the column's property.  Also, don't call
5196         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
5197
5198 2007-04-02  Jackson Harper  <jackson@ximian.com>
5199
5200         * TextBoxBase.cs: Scroll faster!
5201
5202 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
5203
5204         * StatusStrip.cs: Layout fixes for PDN.
5205         * ToolStrip.cs: Set item's available to true, and placement to main when
5206         added.
5207         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
5208         changing in setter before doing any work, add InternalVisible.
5209         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
5210         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
5211         infinite loop.
5212
5213 2007-04-02  Jackson Harper  <jackson@ximian.com>
5214
5215         * TextBox.cs: LBUTTON does not make the textbox select all of it's
5216         text on focus.
5217
5218 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5219
5220         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
5221           Makes ToolStripComboBoxes show up again.
5222
5223 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5224
5225         * ListView.cs: Add a hover_pending field in ListView
5226         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
5227         cycle (we are resetting the MouseHover logic in XplatUI
5228         to handle HoverSelection). Fixes #80429.
5229
5230 2007-04-02  Jackson Harper  <jackson@ximian.com>
5231
5232         * TextControl.cs: Make sure the attributes get set on the last
5233         tag.
5234         - Still have to do the end tag if we have stepped all the ways to
5235         the end.
5236
5237 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
5238
5239         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
5240         on an internal libgdiplus call when the information is already 
5241         available via the public API.
5242
5243 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5244
5245         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
5246           control is removed from a control collecftion.
5247         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
5248           Fixes FormPropertyTest (failed on rare occasions).
5249         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
5250           of Win32SetParent (when changing from no parent to a parent it
5251           might add the new parent's location in screen coordinates to this
5252           window's location).
5253         * Form.cs: Rework ChangingParent once again, now the handle is
5254           recreated whenever a FormWindowManager is added or removed (that is
5255           whenever a normal form is parented or abandoned). Also change
5256           CreateParams so that all non-toplevel windows always get the
5257           specified sice (StartupPosition is never considered for
5258           non-TopLevel forms).
5259         * ContainerControl.cs: Add ChildControlRemoved, the container control
5260           needs to be notified when a control is removed from it's
5261           collection, in the case the removed control is the active control.
5262
5263 2007-04-02  Jackson Harper  <jackson@ximian.com>
5264
5265         * RichTextBox.cs: Use the new methods for setting the font and
5266         color, these methods set the specified attribute without
5267         overriding the other attributes.
5268
5269 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
5270
5271         * ToolStripPanel.cs: Fixes for better layouts in PDN.
5272
5273 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
5274
5275         * TextBox.cs: Added internal ChangeBackColor method to special-case
5276         Color.Empty. Added check for invalid ScrollBars value.
5277         * TextBoxBase.cs: Added internal ChangeBackColor method.
5278         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
5279         internal ChangeBackColor method to special-case Color.Empty. Added
5280         check for invalid ScrollBars value.
5281
5282 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
5283
5284         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
5285
5286 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
5287
5288         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
5289         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
5290         [Based on submitted patch from Olivier Duff.]
5291
5292 2007-03-30  Jackson Harper  <jackson@ximian.com>
5293
5294         * TextBox.cs: Only select all on initial focus if the user has not
5295         specified a selection area.
5296
5297 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
5298
5299         * UserControl.cs: Override CreateParams.
5300
5301 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5302
5303         [ Fixes #80995 ]
5304
5305         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
5306         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
5307           check for is a mix of several styles (such as WS_CAPTION for instance).
5308         * Control.cs: Don't paint an area bigger than the client area when painting
5309           the background colour. Add an internal GetCreateParams. Update calls to
5310           XplatUI.CalculateWindowRect due to API change.
5311         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
5312           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
5313           hasn't been handled by any windows. When creating and moving windows, X
5314           wants the location of the entire window, but the size of the client
5315           window, so add TranslateClientRectangleToXClientRectangle,
5316           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
5317           to cope with this, and call them before every window creation and move.
5318           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
5319           removing DeriveStyles). In AddConfigureNotify don't do anything if the
5320           hwnd is a zombie (fixes the BadWindow we were getting while running the
5321           tests), always calculate the offsets when it's a parentless window, not
5322           only when reparented, and translate the window size, since we're getting
5323           the client size of the whole window, excluding entire window.
5324         * Theme.cs: Added BorderSizableSize.
5325         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
5326           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
5327         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
5328           Fake the window styles here instead of in XplatUIWin32 so that all
5329           back-ends get the same window styles (and it's Form that's deciding when
5330           to use wm, not the Win32 backend anyways)
5331         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
5332           they are now passed a CreateParams and they only use Style and ExStyle
5333           to determine the rectangles (they should now work just like
5334           Win32AdjustWindowRectEx - though quite a few special cases are probably
5335           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
5336           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
5337           sizes) are taken from the current theme. Added a GetBorders helper
5338           function that will return the borders for any given CreateParams
5339           (including captions and menus), and GetBorderSize that returns the given
5340           border size only.
5341         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
5342           Hwnd.GetClientRectangle.
5343
5344 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5345
5346         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
5347           layout of the mdi children is handled by CreateParams. Fixes
5348           #79964,
5349
5350 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5351
5352         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
5353         processed.
5354
5355         * Form.cs: When active tracker mouse down is not processed, send event 
5356         back to control inside mouse position. [Fixes #81227]
5357
5358 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
5359
5360         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
5361         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
5362         stealing focus from the active form on Windows.  (Control will be made
5363         visible in ShowWindow.)
5364
5365 2007-03-29  Mike Kestner  <mkestner@novell.com>
5366
5367         * ImageList.cs : add internal Changed event.
5368         * ListView.cs : hook up to StateImageList.Changed to perform
5369         invalidations when the the state icon list changes. [Fixes #81191]
5370
5371 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
5372
5373         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
5374         to prevent tooltips from stealing focus from the active form on Windows.
5375
5376 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5377
5378         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
5379
5380         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
5381
5382 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5383
5384         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
5385         balloons.
5386
5387 2007-03-29  Jackson Harper  <jackson@ximian.com>
5388
5389         * TextControl.cs: When deleting text from non multiline textboxes,
5390         we need to update the entire document, because line offsets will
5391         be shifting.
5392
5393 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5394
5395         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
5396         added to theme, now we can create themes that uses diferent notify engines
5397         like notification-daemon from galago project or growl for Mac OS.
5398
5399 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
5400
5401         * NotifyIcon.cs: Prevent Balloon to show in task bar.
5402
5403 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
5404
5405         * XplatUIX11.cs: Prevent system to open more than one balloon.
5406
5407         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
5408         some compiler warning messages.
5409
5410 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
5411
5412         [Fixes #79149]
5413
5414         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
5415
5416         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
5417         implemented, this methods is used by NotifyIcon.BalloonWindow class.
5418
5419         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
5420         systems.
5421
5422 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5423
5424         * ListViewItem.cs: Forgot to make Invalidate internal.
5425
5426 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5427
5428         * ListView.cs: Add a InvalidateSelection method to
5429         invalidate methods which are currently selected, and call
5430         it when setting FullRowSelect and HideSelection, instead of
5431         calling Redraw.
5432
5433 2007-03-28  Chris Toshok  <toshok@ximian.com>
5434
5435         * XplatUIX11.cs (UnmapWindow): reindent this block.
5436
5437         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
5438         the selection_start if we're moving the selection (that is, not
5439         extending it). Fixes bug #80461.
5440
5441 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5442
5443         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
5444         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
5445         create private ControlCollection.
5446
5447 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5448
5449         * Control.cs: We need to call OnVisibleChanged for our implicit
5450         children as well as our normal children.  Fixes scrollbars in
5451         comboboxes not showing up.
5452
5453 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5454
5455         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
5456         the check for IsHandleCreated first.  The check in CreateHandle is not
5457         good enough because CreateHandle can be overriden, and the override 
5458         should not be called if the handle is already created.
5459
5460 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5461
5462         * ToolStrip.cs: Remove MonoTODO for tooltips.
5463         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
5464         * ToolStripContainer.cs: Add custom ControlCollection class.
5465         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
5466         * ToolStripDropDown.cs: Add some missing properties/methods.
5467         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
5468         * ToolStripItem.cs: Remove MonoTODO for tooltips.
5469         * ToolStripManager.cs: Add IsShortcutDefined.
5470         * ToolStripOverflow.cs: Override LayoutEngine.
5471         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
5472         * ToolStripSeparator.cs: Add ImageKey.
5473
5474 2007-03-28  Jackson Harper  <jackson@ximian.com>
5475
5476         * TextControl.cs: If a char delete removes a line ending, we need
5477         to update the ending style.
5478         - Make sure the line ending calcs get called.
5479
5480 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5481
5482         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
5483           it was making the new code not work. Fixed a typo in the new code
5484           as well. Fixes #79826.
5485
5486 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
5487
5488         * XplatUIWin32.cs:
5489         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
5490         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
5491         - SystrayBalloon method implemented.
5492         [Add support for notifyicon balloon on win32, #79149]
5493
5494 2007-03-27  Mike Kestner  <mkestner@novell.com>
5495
5496         * ThemeWin32Classic.cs : update StateImageList selection to mirror
5497         the ms behavior when only one image is added to the list.
5498         [Fixes #81191]
5499
5500 2007-03-27  Jackson Harper  <jackson@ximian.com>
5501
5502         * TextControl.cs: Improvements to non multiline line ending
5503         drawing/measuing.
5504
5505 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
5506
5507         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
5508
5509 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
5510
5511         * NotifyIcon.cs: 
5512         - Balloon message handling added.
5513         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
5514
5515         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
5516         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
5517         to SystrayBalloon to me like other Systray method, also a
5518         handle parameter added.
5519
5520 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5521
5522         * ListView.cs: Show scrollbars even when items.Count == 0
5523         but the columns Width is bigger than the ListView.Width.
5524         Also, when columns.Count == 0 set layout_wd and layout_ht
5525         to the ClientRectangle values, so we don't show any scrollbar
5526         in that case.
5527
5528 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
5529
5530         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
5531
5532 2007-03-27  Jackson Harper  <jackson@ximian.com>
5533
5534         * RichTextBox.cs: The RTF library decodes the text properly for us
5535         now.
5536
5537 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5538
5539         * ListView.cs: Display HeaderControl even when columns.Count == 0.
5540         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
5541         ListView header (HeaderControl), instead of Control.BackColor.
5542
5543 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
5544
5545         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
5546         Fixes tab control issues where controls would not show up because they
5547         never received their OnVisibleChanged call.
5548
5549 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
5550
5551         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
5552         BalloonTipShown).
5553
5554 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
5555
5556         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
5557         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
5558         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
5559         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
5560         the handle.  Fix WindowState by using the internal variable until we are 
5561         sure that we've been shown.
5562         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
5563         max or min.
5564         [Fixes bug #81198]
5565
5566 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5567
5568         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
5569           (at least borders). Fixes #79386 on Linux (with a small difference
5570           in behaviour: when trying to resize a caption-less window metacity
5571           shows the sysmenu. Resizing is still possible though).
5572         * XplatUIWin32.cs: When setting window styles send request an extra
5573           WM_NCCALCSIZE when it's a form without title (due to no text and no
5574           caption), since Win32 seems to calculate it wrong the first time we
5575           get the message, though the second time things work as they should.
5576         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
5577           newly reparented window might show up unparented. Update
5578           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
5579           there's no title text. Fixes #79386.
5580
5581 2007-03-27  Mike Kestner  <mkestner@novell.com>
5582
5583         * ListBox.cs : don't perform invalidations if the handle hasn't been
5584         created.  [Fixes #80753]
5585
5586 2007-03-27  Mike Kestner  <mkestner@novell.com>
5587
5588         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
5589         [Fixes #80428]
5590
5591 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
5592
5593         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
5594         needed to implement Balloon.
5595
5596 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5597
5598         * ListViewItem.cs: In the constructors that take
5599         an array of strings, don't use ListViewSubItemCollection.AddRange
5600         method to add items, since we need to have a different behaviour (in
5601         the constructors we add an item for each null string, opposed to
5602         the behaviour of AddRange, which adds nothing).
5603
5604 2007-03-26  Andreia Gaita  <avidigal@novell.com>
5605
5606         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
5607
5608 2007-03-26  Jackson Harper  <jackson@ximian.com>
5609
5610         * TextControl.cs: Draw and measure line endings when in non
5611         multiline mode.
5612         - When searching the text, count the end of the last line as a
5613         word boundary.
5614
5615 2007-03-26  Jackson Harper  <jackson@ximian.com>
5616
5617         * RichTextBox.cs: The selection_start and selection_end don't
5618         really track the correct tags for the selection. So we'll manually
5619         compute the correct tag here.
5620
5621 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5622
5623         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
5624           and Continuous styles. Fixes #79469.
5625
5626 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
5627
5628         * ToolStrip.cs: Implement Tooltips.
5629         * ToolStripItem.cs: Create internal method for determining tooltip.
5630
5631 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
5632
5633         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
5634
5635 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
5636
5637         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
5638         it prevents a problem thak keeps icon visible after application 
5639         closes on win32.
5640
5641 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
5642
5643         * NotifyIcon.cs: Balloon properties and methods created.
5644
5645         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
5646         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
5647
5648 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
5649
5650         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
5651
5652 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
5653
5654         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
5655         parameter indicates which aspects were explicit/user-set.
5656         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
5657
5658 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
5659
5660         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
5661         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
5662         SmallChange, and Value (2.0).
5663         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
5664
5665 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5666
5667         * ListView.cs: Always set item_control.Width in LayoutDetails
5668         if View is Details. Setting it later in CalculateScrollBars
5669         in a not-so-corner scenario (the sum of columns width is
5670         not bigger than the ListView width when handle is created, and then
5671         that sum gets bigger by increasing the width of the columns)
5672         causes a very weird recursion path (which shouldn't be happening,
5673         since header_control sets it in CalculateScrollBars too). This bug
5674         appeared after Chris' fixes for handle created issues, so probably
5675         it's related to some handle-creation time.
5676
5677 2007-03-23  Chris Toshok  <toshok@ximian.com>
5678
5679         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
5680         case where there's an add row, just so we don't end up in a case
5681         where it's not displayed (this happens when the row is partially
5682         obscured).  Fixes bug #79574.
5683
5684 2007-03-23  Jackson Harper  <jackson@ximian.com>
5685
5686         * TextControl.cs:
5687         * TextBoxBase.cs:
5688         * RichTextBox.cs: Preserve line endings in the lines text buffer,
5689         also added an enum that represents the line ending type. 
5690
5691 2007-03-23  Andreia Gaita  <avidigal@novell.com>
5692
5693         * NumericUpDown.cs: Fix logic so Text and Value properties are not
5694         messed with in every method call, but only from DownButton, 
5695         UpButton, UpdateEditText() and ValidateText. Fixes #80346
5696
5697 2007-03-23  Chris Toshok  <toshok@ximian.com>
5698
5699         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
5700         format objects if the format spec is "".  Fixes bug #80889.
5701
5702 2007-03-22  Miguel de Icaza  <miguel@novell.com>
5703
5704         * ToolStripPanel.cs (Join): added stubs to build PDN3
5705
5706         * Control.cs (AutoScrollOffset): Add.
5707
5708         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
5709         property, its only implemented for Win32, on X11 it defaults to
5710         some hardcoded value.
5711
5712         * ToolStripItem.cs (AllowDrop): Add property
5713
5714 2007-03-22  Mike Kestner  <mkestner@novell.com>
5715
5716         * ListView.cs : in FullRowSelect Details mode, only enable box
5717         selection if the user clicks over the "item" column outside of the
5718         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
5719
5720 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5721
5722         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
5723           handle is not created yet.
5724         * Form.cs: Select: Don't call CreateHandle if the handle is already
5725           created, avoids a stack overflow on Windows when we are recreating
5726           controls.
5727         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
5728           they are made visible, and override AfterTopMostControl to keep
5729           them on top when other controls are brought to front.
5730           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
5731           or force_*scroll_visible is true (old implementation always shows
5732           scrollbars when needed, no matter what auto_scroll was set to).
5733         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
5734           IsHandleCreated check.
5735
5736 2007-03-22  Andreia Gaita  <avidigal@novell.com>
5737
5738         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
5739         row or col separator.
5740         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
5741
5742 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
5743
5744         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
5745
5746 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
5747
5748         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
5749         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
5750         every time. Fixes #80410.
5751
5752 2007-03-22  Chris Toshok  <toshok@ximian.com>
5753
5754         * BindingSource.cs (AddNew): partially implement.
5755
5756         remove a couple of NotImplementedException's
5757         to get bug #81148 closed.
5758
5759 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
5760
5761         [Fixes #80380]
5762         
5763         * Control.cs:
5764         - UpdateCursor method added to update the screen cursor.
5765         - GetAvailableCursor method added to return cursor for enabled tree,
5766         it searches for cursor on control and it's parent's for enabled control.
5767         - Call UpdateCursor method on setter of Cursor property.
5768         - On setter of Enabled call UpdateCursor when it is false, we need to
5769         change cursor to normal (or to this parent cursor) because cursor 
5770         setting theres no effect to disabled controls.
5771         - Some minor source changes to follow the coding style guidelines.
5772
5773         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
5774         controls.
5775
5776 2007-03-22  Chris Toshok  <toshok@ximian.com>
5777
5778         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
5779         generates.
5780
5781 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5782
5783         * XplatUIX11.cs: Implement default locations for forms.
5784         * Form.cs: Completely rework startup location for forms. Fixes #79964.
5785         * Hwnd.cs: Add previous_child_startup_location (to track the current
5786           startup location for any child forms of the current form) and
5787           previous_main_startup_location (to track the startup location for
5788           the current toplevel form).
5789
5790 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
5791
5792         * Control.cs: Don't trigger a layout if an implicit control is added
5793         that isn't visible.  Also, don't notify the owner when an implicit control
5794         is added.  (Owners shouldn't even know about their implicit controls.)
5795
5796 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
5797
5798         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
5799         to save some re-layouts.
5800
5801 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
5802
5803         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
5804         [Fixes #81203]
5805
5806 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
5807
5808         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
5809         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
5810
5811 2007-03-21  Mike Kestner  <mkestner@novell.com>
5812
5813         * ListView.cs : disable selection update for non-left button clicks
5814         with mods and over selected items.  [Fixes #80524]
5815
5816 2007-03-20  Jackson Harper  <jackson@ximian.com>
5817
5818         * TextControl.cs:
5819         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
5820         \r\r\n, \n.
5821
5822 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5823
5824         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
5825           very probably a more complicated calculation there. Update the
5826           textbox' ForeColor and BackColor when the ComboBox' colors are
5827           changed. Change the border change in LayoutComboBox to only affect
5828           the textbox, not all the calculations there. Seems to fix most of
5829           #79436.
5830
5831 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5832
5833         * ComboBox.cs: Handle Home and End keys as well as all combinations of
5834           modifiers + navigation keys as input keys, enables advanced text
5835           selection in the combobox (like Shift+Left Arrow for instance).
5836           ComboTextBox now overrides Focused and returns whatever
5837           ComboBox.Focused returns, since it really should be focused
5838           whenever the ComboBox is. Fixes #80795. Also make the border around
5839           the text box one pixel bigger, as mentioned in #79436.
5840
5841 2007-03-20  Jackson Harper  <jackson@ximian.com>
5842
5843         * TreeView.cs: Don't offset the images, this was causing some
5844         artifacts when expanding/collapsing with images that were the
5845         exact height of the treenode.
5846
5847 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5848
5849         * TrackBar.cs: Query the theme for the correct value when the mouse
5850           moves and the thumb is pressed. 
5851         * Theme.cs: Added TrackBarValueFromMousePosition
5852         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
5853           implementation was updating the trackbar value when drawing, now
5854           the drawing methods only draw. Fixes #80900. Refactored the
5855           calculations out to TrackBarValueFromMousePosition and
5856           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
5857           according to the mouse position whenever it wants to. Changed the
5858           light coloured pen when drawing the thumb from ControlLight to
5859           ControlLightLight, because the ControlLight is the same colour as
5860           the background so the 3D effect is lost. 
5861
5862 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5863
5864         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
5865         defined. Fixes #80784.
5866
5867 2007-03-20  Marek Habersack  <mhabersack@novell.com>
5868
5869         * ContextMenuStrip.cs: align with the change introduced in
5870         revision 74664.
5871
5872 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5873
5874         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
5875         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
5876         in SetTopmost.
5877
5878 2007-03-19  Chris Toshok  <toshok@ximian.com>
5879
5880         * Control.cs (WmPaint): don't make use of the Handle property
5881         after an event is emitted, as the user could have closed the
5882         form/destroyed the control.  Store the Handle in a local variable
5883         and make use of that.  Fixes bug #80768.
5884
5885 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5886
5887         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
5888         behavior in X11 environments.
5889
5890 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5891
5892         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
5893         because on setter of topmost we dont call SetTopmost when handle is not
5894         created.
5895
5896 2007-03-20  Jackson Harper  <jackson@ximian.com>
5897
5898         * TextControl.cs: Need to use SelectionLength () not
5899         selection_length, since that var is reset to -1.
5900         - Draw the caret when we don't have focus.
5901         * TextBox.cs: The selectall actually doesn't occur until the first
5902         focus.
5903         * TextBoxBase.cs: Need to update the caret position after a
5904         selectall.
5905         
5906 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5907
5908         * ListView.cs: Enable scrolling when using Tile view.
5909
5910 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5911
5912         [Fixes #80902]
5913
5914         * XplatUIDriver.cs: Abstract SetOwner method created.
5915
5916         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
5917         must be implemented and was masked as todo.
5918
5919         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
5920         GWL_HWNDPARENT.
5921
5922         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
5923         cheking for null owner to remove transient. The SetTopmost will be change
5924         on a decond step.
5925
5926         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
5927         SetTopmost. Now owned forms will work properly in win32 and X11.
5928
5929 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5930
5931         * MdiWindowManager.cs: Update function name.
5932         * Form.cs: After closing a form MdiParent is always null.
5933         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
5934           better what it should do: necessary book-keeping when the form is
5935           closed, it should not close the form itself.
5936
5937 2007-03-19  Andreia Gaita  <avidigal@novell.com>
5938
5939         * ListViewItem.cs: Fix back and fore color. The subitems only
5940         use their own colors if they are set, otherwise use the listview's
5941         colors. Don't set default colors on constructor for subitem.
5942         Fixes #79315.
5943
5944 2007-03-19  Mike Kestner  <mkestner@novell.com>
5945
5946         * ListView.cs : make box selection for Details views with 
5947         FullRowSelect conform to MS behavior when clicking in the "item" 
5948         column and clicking outside the defined columns.
5949         [Fixes case 5-6 of #80374]
5950
5951 2007-03-19  Chris Toshok  <toshok@ximian.com>
5952
5953         * ScrollableControl.cs: create the controls from within the ctor,
5954         but don't actually add them until our handle is created.  this
5955         fixes a NRE possibility jpobst found (if you override OnLayout in
5956         a subclass, it's called before your ctor).  Also, add a
5957         IsHandleCreated guard to UpdateSizeGripVisibility as well.
5958
5959 2007-03-19  Jackson Harper  <jackson@ximian.com>
5960
5961         * TextBox.cs: Reduce the amount of invalidation we do.
5962         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
5963         some of them are true by default on MS.
5964         - Add some functions to reduce the amount of invalidates we do.
5965         * TextControl.cs: Less invalidation.
5966
5967 2007-03-19  Chris Toshok  <toshok@ximian.com>
5968
5969         [ Fixes #81773, and *seems* to fix #81553 as well ]
5970
5971         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
5972         AccumulateDestroyedHandles.  We need to do it *after* we send
5973         WM_DESTROY, as the user's code can access Control.Handle in
5974         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
5975         move the WM_DESTROY/zombie handling to before the call to
5976         XDestroyWindow.  For some reason without this ordering
5977         FormTest.RecreateHandle hangs.  This ordering is semantically
5978         equivalent, however, as XDestroyWindow is async anyway.
5979
5980 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
5981
5982         * RichTextBox.cs: Reset backcolor_set after setting default.
5983
5984 2007-03-19  Chris Toshok  <toshok@ximian.com>
5985
5986         * ScrollableControl.cs: the scroll position should not effect the
5987         canvas size.  commit patch from georgegiolfan@yahoo.com, which
5988         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
5989         
5990 2007-03-19  Chris Toshok  <toshok@ximian.com>
5991
5992         * ScrollableControl.cs: clean this up a bit.  create the
5993         scrollbars in the ctor and just show/hide them as needed.  Also,
5994         make hscroll_visible/vscroll_visible internal to Recalculate, and
5995         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
5996         everywhere else.  This seems to fix the scrollbars appearing
5997         beneath the content for me (i have *no* idea why that is,
5998         however.)
5999
6000 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
6001
6002         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
6003         some redundacy for stuff in Anchor and Dock that base will take care of.
6004         [Fixes #80762]
6005
6006 2007-03-19  Mike Kestner  <mkestner@novell.com>
6007
6008         * ListView.cs : make box selection for Details views without 
6009         FullRowSelect dependent on the text bounds, not item bounds.
6010         * ListViewItem.cs : add an internal property to obtain the TextBounds
6011         in Details view.  [Fixes case 1-4 of #80374]
6012
6013 2007-03-19  Andreia Gaita  <avidigal@novell.com>
6014
6015         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
6016         we're < 2.0. #78448 && #80316
6017
6018 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
6019
6020         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
6021         have the same style available as the previously selected one.  Also,
6022         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
6023
6024 2007-03-19  Jackson Harper  <jackson@ximian.com>
6025
6026         * TextControl.cs: Add an alignment property that all new lines
6027         will be given.
6028         - Make sure to use the align shift when calculating the line's X
6029         position.
6030         * TextBox.cs: Set the alignment on the document as well as on all
6031         the document lines.
6032
6033 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6034
6035         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
6036           throw if setting the parent of an mdichild that already has an
6037           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
6038           AssemblyProductAttribute in the assembly, use the type's namespace (as
6039           MS seems to do). CreateControl: don't create the handle if the control
6040           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
6041           create handle if the control is not a form. Change FocusInternal to
6042           virtual so that it can be overriden by Form.
6043         * TextBox.cs: Update call to FocusInternal.
6044         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
6045           form is not a toplevel form when it's a mdi child, so update is_toplevel
6046           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
6047           hasn't been created. Show (IWin32Window): Don't allow this overload for
6048           toplevel windows. CenterToParent/CenterToScreen/Select: create the
6049           handle as MS does. SetVisibleCore: if called on a MdiChild and the
6050           parent isn't visible yet, save the visibility and restore it when the
6051           parent is made visible.
6052         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
6053           methods, since the visibility of the scrollbars can be changed from
6054           several places, not only from AutoScroll.
6055           [Fixes #81179]
6056
6057 2007-03-19  Jackson Harper  <jackson@ximian.com>
6058
6059         * RichTextBox.cs: Enable shortcuts by default.
6060         * TextBoxBase.cs: Add conditional shortcuts.  
6061
6062 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
6063
6064         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
6065
6066 2007-03-19  Chris Toshok  <toshok@ximian.com>
6067
6068         [ Fixes bug #80604]
6069         
6070         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
6071         swallow the message we're waiting on, instead of delivering it, as
6072         this is only used for the WM_SHOWWINDOW raised from
6073         MapWindow/UnmapWindow, and the message needs to be generated
6074         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
6075         before doing the Map/Unmap.  Also make sure that the Hwnd is still
6076         alive after the message has been handled.
6077
6078         *before* the window is shown.
6079
6080         * Control.cs (CreateControl): guard a few more things inside the
6081         if (!is_created) block, as we might end up being called again -
6082         yay .net.
6083         (WmShowWindow): call CreateControl if we're showing the control.
6084
6085 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6086
6087         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
6088           controls without a handle if they have any parent with a handle. In
6089           Dispose add a check whether the handle is created or not before
6090           calling BeginInvoke, this removes the need of the extra disposing
6091           parameter (which was bogus anyway since it didn't prevent the
6092           invoke from happening, it only skipped the check for an existing
6093           handle, meaning that the invoke would call on an inexistent
6094           handle).
6095
6096 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
6097
6098         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
6099         appears in taskbar.
6100
6101 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
6102
6103         * MessageBox.cs:
6104         - Fixed a problem that dont show help button for messages with 3 buttons.
6105         - Refactory button size and position calculations, now dont use fixed 
6106         values, also fixed button sizes (#80043) and form's border space.
6107         - AddButton method created, now all other AddButton methods call this one.
6108         - Some other source code cosmetic changes.
6109
6110 2007-03-18  Jackson Harper  <jackson@ximian.com>
6111
6112         * RichTextBox.cs: Don't do this all fonts must match check if
6113         there is only one char selected.
6114
6115 2007-03-18  Jackson Harper  <jackson@ximian.com>
6116
6117         * TreeView.cs: ScrollWindow works properly now, so we don't need
6118         to screw around with the scroll area.  This fixes some artifacts
6119         when expanding and collapsing.
6120
6121 2007-03-18  Jackson Harper  <jackson@ximian.com>
6122
6123         * TextBoxBase.cs: Allow updating the selection position when the
6124         cursor is outside the textarea, but we have a capture.
6125         * TextControl.cs: A special case for when the cursor is outside
6126         the bounds of the TB.
6127         
6128 2007-03-18  Jackson Harper  <jackson@ximian.com>
6129
6130         * TextBoxBase.cs: Remove image pasting code for now.  There is no
6131         way to get an image on the clipboard right now anyways.
6132         * TextControl.cs:
6133         * RichTextBox.cs: Use the new RTF Picture class for pictures.
6134
6135 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
6136
6137         * MessageBox.cs:
6138         - Set window properties in constructor intead of on CreateParams.
6139         - Remove topmost from Window ExStyle.
6140         - Set ShowInTaskbar to false.
6141         - Set form border to FixedDialog.
6142         - Some cosmetic changes and remove unneeded comments.
6143         - It fixes itens 2,3 and 4 of bug #80043.
6144
6145 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
6146
6147         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
6148         none was explicitly set. Fixes part of bug #79949.
6149
6150 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
6151
6152         * ToolStripComboBox.cs: Add AutoComplete*.
6153
6154 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
6155
6156         * ToolStripComboBox.cs: Add FlatStyle.
6157
6158 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
6159
6160         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
6161         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
6162
6163 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6164
6165         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
6166           CheckBox.cs, RadioButton.cs, BindingSource.cs,
6167           DataGridColumnStyle.cs: Remove warnings.
6168
6169 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6170
6171         * Menu.cs: MergeMenu: Check menu argument for null before looping over
6172           it.
6173         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
6174           visibility of mdi child forms. FormSizeChangedHandler: update the
6175           maximized size if size has changed while maximized.
6176         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
6177           creating the handle.
6178         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
6179           avoid creating the handle if not created.
6180         * XplatUI.cs: Update debug output.
6181         * XplatUIStructs.cs: Added ToString's for a couple of structs.
6182
6183 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
6184
6185         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
6186         ProcessCmdKey().
6187         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
6188         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
6189         Implement keyboard shortcuts.
6190
6191 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
6192
6193         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
6194         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
6195         ColorDialog and all derived classes.
6196
6197 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
6198
6199         [ Fixes bug #79828 ]
6200
6201         * ToolBar.cs:
6202         - Rename ToolBarButtonInfor to ToolBarItem.
6203         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
6204         - Maintain an array of ToolBarItem, used instead of ToolBarButton
6205         collection to be able add same button more than one time on a toolbar.
6206         - Refactory all properties and methods to use ToolBarItem. 
6207
6208         * ToolBarButton.cs: 
6209         - Remove all propeties and methods that is now in ToolBarItem.
6210         - Rectangle propery now gets the rectangle from first ToolBarItem to
6211         mimic win32 behavior.
6212         - Size calculation and layout methods also removed.
6213
6214         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
6215         ToolBarItem instead of ToolBarButton to right drawing buttons when
6216         same button/separator was added more than one time to ToolBar.
6217
6218         * ThemeNice.cs: Same as above. 
6219
6220 2007-03-15  Andreia Gaita  <avidigal@novell.com>
6221
6222         * XplatUIX11.cs: Fire extra MouseMove events right after
6223         MouseDown and MouseUp, emulating win32's <censored> behaviour
6224         for apps that rely on it.
6225
6226 2007-03-15  Jackson Harper  <jackson@ximian.com>
6227
6228         * TextControl.cs:
6229         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
6230         it is drawn on the controls client window and there is no NC
6231         area.
6232         - Set the background color to gray on 2.0 when we are readonly.
6233
6234 2007-03-15  Chris Toshok  <toshok@ximian.com>
6235
6236         [ Fixes bug #81144 ]
6237         
6238         * XplatUIX11.cs: implement VirtualScreen independently of
6239         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
6240         property.
6241
6242 2007-03-15  Chris Toshok  <toshok@ximian.com>
6243
6244         * Hwnd.cs: add an internal field for the cached_window_state.
6245
6246         * XplatUIX11.cs: cache the window state, invalidating the cache
6247         (and thus re-querying the X server) only when we see an update to
6248         the _NET_WM_STATE property.
6249
6250 2007-03-15  Chris Toshok  <toshok@ximian.com>
6251
6252         * BindingSource.cs: get a lot of the unit tests working.
6253
6254 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
6255
6256         * Control.cs: Modify UpdateStyles to store distances when bounds >=
6257         0 instead of just bounds > 0.  [Fixes bug #80912]
6258
6259 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
6260
6261         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
6262         and methods.
6263
6264 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
6265         
6266         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
6267         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
6268         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
6269         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
6270
6271 2007-03-15  Chris Toshok  <toshok@ximian.com>
6272
6273         [ Fixes #81101 ]
6274         
6275         * Control.cs: add Ivan's fix for 81101, with a slight modification
6276         - you can set control.Target to null.
6277
6278 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
6279
6280         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
6281         HideDropDown, use Hide instead to prevent an NRE.
6282         [Fixes bug #81147]
6283
6284 2007-03-14  Jackson Harper  <jackson@ximian.com>
6285
6286         * TextBoxBase.cs: Mess with the creation stuff a little. We need
6287         to calculate the document before the handle is created, in some
6288         cases. (Actually just one case).
6289
6290 2007-03-14  Jackson Harper  <jackson@ximian.com>
6291
6292         * TextBoxBase.cs: Need to display the caret after letting the base
6293         wndproc handle the focus methods, because the caret display
6294         methods check the focus state.
6295         - Try to display the caret after updating it's position with SelectWord.
6296         - Don't need to do an immediate update on this recalc, since there
6297         will be an invalidate anyways.
6298
6299 2007-03-14  Jackson Harper  <jackson@ximian.com>
6300
6301         * TreeView.cs: Some workarounds so that we can match event order a
6302         little better.
6303
6304 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
6305
6306         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
6307         #80803. Avoid NullReferenceException when Control does not have
6308         parent. Fixed different blinkstyle issues. Only subscribe to Tick
6309         event a single time. Only draw error icon when control is created and
6310         visible. Fixes failing unit tests.
6311
6312 2007-03-14  Andreia Gaita  <avidigal@novell.com>
6313
6314         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
6315         Selecting events. Fire Leave and Enter events when changing tabs.
6316
6317 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
6318
6319         * TreeView.cs: Add TreeViewNodeSorter.
6320         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
6321
6322 2007-03-14  Chris Toshok  <toshok@ximian.com>
6323
6324         * Form.cs: go ahead and remove the RecreateHandles that jpobst
6325         removed earlier and I had him add back it.  It turns out metacity
6326         *does* in fact handle the MOTIF_WM_HINTS property changing, it
6327         just doesn't redraw the window titlebar until you resize the
6328         window.  This also means we aren't recreating the entire window
6329         hierarchy on X when you change this property.  And it looks better
6330         on windows, too.
6331
6332 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6333
6334         * ListViewItem.cs:
6335         * ListView.cs: Collecting selection information
6336         is now done in SelectedIndexCollection rather than in
6337         SelectedListViewItemCollection. This is done so we can
6338         have the selection information code in one single place
6339         (virtual mode selection information entirely depends on
6340         SelectedIndexCollection).
6341
6342 2007-03-13  Miguel de Icaza  <miguel@novell.com>
6343
6344         * ErrorProvider.cs: Add stubs for ISupportInitialize
6345
6346 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6347
6348         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
6349         in the right order with the right values, from the Checked property, 
6350         just as MS does (instead of triggering them from ListView).
6351
6352         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
6353
6354 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6355
6356         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
6357         the correct handler in OnItemCheck method (ItemCheckEventHandler 
6358         instead of EventHandler). This used to throw an InvalidCastException.
6359
6360 2007-03-13  Jackson Harper  <jackson@ximian.com>
6361
6362         * TextBoxBase.cs: Calculate the document before the handle is
6363         created, so there isn't an extra invalidate called.
6364
6365 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
6366
6367         * Form.cs: Don't set owner in ShowDialog until we are sure
6368         that we aren't going to throw an exception.  [Fixes bug #80773]
6369
6370 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
6371
6372         * TreeView.cs: Make it compile.
6373
6374 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6375
6376         * Control.cs: Another place we don't call SizeFromClientSize.
6377         * Form.cs: Another place we don't call SizeFromClientSize.
6378         [Fixes bug #81125]
6379
6380 2007-03-12  Jackson Harper  <jackson@ximian.com>
6381
6382         * TreeView.cs: Basically emulating some strangness here with
6383         exanding nodes and setting node positions when windows aren't
6384         created.
6385         - Also attempting to walk the node tree less than previously, and
6386         just use visible order calculations for determining offsets.
6387         - oops made scrolling backwards.
6388         * TreeNode.cs: We need to start nodes with a zero visible order,
6389         because the order calcs are based on the first nodes order.
6390
6391 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6392
6393         * Form.cs: Don't exit the program if RecreateHandle is called on
6394         the main form.
6395
6396 2007-03-12  Chris Toshok  <toshok@ximian.com>
6397
6398         * XEventQueue.cs: remove the use of PostQuitState.
6399
6400         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
6401         WM_QUIT message in GetMessage, return false (and if we're in the
6402         nested WaitForHwndMessage, repost the WM_QUIT message).
6403
6404 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6405
6406         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
6407         or the MaximizeBox properties.  [Part of bug #80640]
6408
6409 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
6410
6411         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
6412         no links.
6413
6414 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6415
6416         * ToolStripItem.cs: Fix some tests I broke by checking Visible
6417         instead of visible.
6418
6419 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
6420
6421         * FileDialog.cs: Use text of File name combobox to determine what
6422         files the user selected. Added tokenizer to parse the file names.
6423         Fixes bug #81123.
6424
6425 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6426
6427         * Control.cs: We can't call SizeFromClientSize in the constructor,
6428         but we still need to do the same work, so make an internal version.
6429         [Fixes bug #80621]
6430
6431 2007-03-12  Jackson Harper  <jackson@ximian.com>
6432
6433         * TreeView.cs:
6434         * TreeNode.cs:
6435         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
6436         IsExpanded.
6437
6438 2007-03-12  Jackson Harper  <jackson@ximian.com>
6439
6440         * TextBoxBase.cs: Now that the handles are being created a little
6441         later, we need to make sure that the document is recalculated when
6442         the handle is created.
6443
6444 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
6445
6446         * Theme.cs: GetLinkFont abstract method added.
6447         
6448         * LinkLabel.cs: 
6449         - Remove CalcTrimRectangle, no longer needed.
6450         - Factor also remove, position issues must be fixed in libgdiplus.
6451         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
6452         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
6453         care about font used to draw links.
6454         - Set TabStop to true when control is "Selectable", control is selectable
6455         when have one or more links. Fixes #80501 (test case is also added).
6456         - Set the LinkArea values after links change, LinkArea values must be
6457         based in first link position and size, a test case was created.
6458         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
6459         the attribute must be true LinkArea.Length > 0. The same was applied to
6460         TabStop.
6461         
6462         * ThemeWin32Classic.cs: 
6463         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
6464         in draw method.
6465         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
6466         color change.
6467         - Draw focus rectangle for every parts focused, including parts that 
6468         is on another line, its because regions returns various rectangles
6469         and not only one. Needed to mimic W32 look.
6470         - Uses Graphics.Clip to delimite region painted, it mean that now 
6471         complete text is passed to DrawString, with this we solve layout
6472         issues without create another text renderer.
6473         - Uses Region.Intersect to fix some flickers problems, now only needed
6474         parts will redrawed.
6475         - This changes fixes #79614 and some other unreported issues, on Linux 
6476         some layout problems still remain, the problem is under 
6477         MeasureCharacterRanges but it is an libgdiplus bug.
6478
6479 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
6480
6481         * TextBox.cs: Set for foreground color.
6482         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
6483         this is already done in Control.
6484
6485 2007-03-10  Jackson Harper  <jackson@ximian.com>
6486
6487         * TextBox.cs: Set the background color, but reset the
6488         backcolor_set flag which is just for the user setting the
6489         background color.
6490
6491 2007-03-09  Chris Toshok  <toshok@ximian.com>
6492
6493         * Control.cs: really remove the call to XplatUI.SetVisible from
6494         CreateHandle(), like I said I did when I merged the branch.
6495
6496         * BindingSource.cs: implement some more of this stuff.
6497
6498 2007-03-09  Jackson Harper  <jackson@ximian.com>
6499
6500         * TextBox.cs: Don't explicitly set our background colors.
6501         * TextControl.cs:
6502         * TextBoxBase.cs: Draw readonly text.
6503         - Need to invalidate when backcolor or readonly are changed.
6504         
6505 2007-03-09  Jackson Harper  <jackson@ximian.com>
6506
6507         * TextBoxBase.cs: Don't set the forecolor until the handle is
6508         created.
6509         - Do not raise OnPaint, and removed some old debug code.
6510
6511 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
6512
6513         * ScrollableControl.cs: Fix mouse wheel scrolling.
6514
6515 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
6516
6517         * Control.cs: Wire up MouseDoubleClick event.
6518
6519 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
6520
6521         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
6522         top or bottom.
6523         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
6524         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
6525         item is added.  This logic was moved to ToolStrip.OnItemAdded.
6526         [Fixes bug #81090]
6527
6528 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6529
6530         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
6531
6532 2007-03-08  Jackson Harper  <jackson@ximian.com>
6533
6534         * TreeView.cs: Show the correct image for selected node (this used
6535         to work, not sure how the code got deleted). Also implemented 2.0 feature
6536         SelectedImageKey.
6537
6538 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6539
6540         * ListView.cs:
6541         * ListViewItem.cs: Cache index in items when retrieving them
6542         in VirtualMode.
6543
6544 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
6545
6546         * ToolStripItem.cs: Don't return the explicit_size if we are using 
6547         AutoSize.  Fixes invalidation issue when user has explicitly set a
6548         size and has AutoSize = true.
6549
6550 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
6551
6552         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
6553
6554 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6555
6556         * DataGridView.cs: Remove event handler from DataView when a
6557         DataTable is used as DataSource.
6558
6559 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
6560
6561         * Control.cs: Create internal setter for client_size to allow it to be
6562         set without triggering resizing code.
6563         * Form.cs: Calculate client_size in constructor, only change client_size
6564         in FormBorderStyle property if Handle has been created.
6565         [Fixes #80574, #80791]
6566
6567 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
6568
6569         * SystemInformation.cs: Add TerminalServerSession.
6570
6571 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
6572
6573         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
6574         TreeView code.
6575
6576 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
6577
6578         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
6579         Handle before we were supposed to.  Now checks ActivateOnShow property
6580         in Control.
6581         * Control.cs: Add internal ActivateOnShow property.
6582         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
6583         for ActivateOnShow.
6584         * Hwnd.cs Remove no longer needed no_activate field.
6585
6586 2007-03-07  Jackson Harper  <jackson@ximian.com>
6587
6588         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
6589         2.0 properties
6590         * DrawTreeNodeEventHandler.cs: Add
6591         * DrawTreeNodeEventArgs.cs: Correct default value.
6592         
6593 2007-03-07  Chris Toshok  <toshok@ximian.com>
6594
6595         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
6596         to be called before NativeWindow.WndProc.  Put the HwndCreating
6597         magic there to hook up our Hwnd's to handles.
6598
6599 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
6600
6601         * DataGridView.cs: Comment out debug code.
6602
6603 2007-03-07  Chris Toshok  <toshok@ximian.com>
6604
6605         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
6606         to make the rest of the world happy]
6607
6608         * Control.cs (CreateHandle): there's no need to call
6609         XplatUI.SetVisible here, it's effectively done by
6610         XplatUI.CreateWindow on X now, and always was on windows.
6611
6612         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
6613         shortcircuit out of the loop if we have a message loop running on
6614         this thread.
6615
6616         [Changelog from merge]
6617
6618         2007-03-05  Chris Toshok  <toshok@ximian.com>
6619
6620                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
6621                 causes handle creation.
6622
6623         2007-02-28  Chris Toshok  <toshok@ximian.com>
6624
6625                 * ApplicationContext.cs: Add a flag to make sure we only raise the
6626                 ThreadExit event once (ExitThreadCore can be indirectly called
6627                 from a few places.)  I don't like the additional flag, but it
6628                 makes the event ordering/count correct.
6629
6630                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
6631                 without locking the collection.  An enumerator doesn't give us any
6632                 protection from modification anyway.  Lock the thread hash and
6633                 replace the complicated enumerator loop with a foreach.
6634                 (Application.CloseForms): make internal so it can be called from
6635                 ApplicationContext.  This should probably be moved to MWFThread.
6636                 (Application.ExitThread): don't call MWFThread.Current.Exit()
6637                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
6638                 when the runloop exits (in response to WM_QUIT.)
6639                 (Application.RunLoop): add a comment (and check) for
6640                 context.MainForm being null after setting context.MainForm.Visible
6641                 = true.  This is because you're perfectly free to dispose of a
6642                 form in VisibilityChanged.  Chalk this up to another case where we
6643                 need to synchronously generate WM_ACTIVATE from Control.Show.
6644                 Also, add handling for WM_QUIT here so we'll exit the loop.
6645                 
6646                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
6647                 fact that we don't wait if we're only unmapping the whole_window
6648                 makes me a bit nervous, but it doesn't seem to cause any problems
6649                 yet.
6650
6651                 also, add a comment about the stupid, broken and wrong resetting
6652                 of PostQuitState to false in GetMessage().
6653
6654                 In PostQuitMessage, we need to add a WM_QUIT message to the
6655                 thread's queue.  We use the FosterParent to get the right
6656                 handle/hwnd/queue.
6657
6658                 Lastly, in SetVisible, we need to unmap both windows, since the
6659                 waiting only happens when we're unmapping the client window.  So
6660                 now, the *only* time we unmap just the whole_window is in the hack
6661                 for resizing a control to 0,0.
6662                 
6663         2007-02-21  Chris Toshok  <toshok@ximian.com>
6664
6665                 * Application.cs (CloseForms): rewrite this so that we don't
6666                 modify the list while we're traversing it.
6667
6668         2007-02-20  Chris Toshok  <toshok@ximian.com>
6669
6670                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
6671                 of OnHandleCreated.
6672                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
6673                 handle is created.  otherwise we'll create it here.
6674                 (VerticalScrollEvent): same here.
6675
6676                 * Application.cs (CloseForms): call Form.Dispose, don't post
6677                 WM_CLOSE_INTERNAL.
6678
6679                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
6680                 here. Application should Dispose() of the Form's.
6681
6682                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
6683                 WM_DESTROY as well.
6684                 (MapWindow,UnmapWindow): only actually do the waiting for
6685                 SHOWWINDOW if the control we're dealing with is a Form.
6686                 (CreateWindow): if the control isn't a form, SendMessage
6687                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
6688
6689                 * Control.cs (SetVisibleCore): always use is_visible here, not
6690                 value.  If we use value, we can end up re-setting something
6691                 visible if, for instance, you do Control.Hide() in a delegate
6692                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
6693
6694         2007-02-20  Chris Toshok  <toshok@ximian.com>
6695
6696                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
6697                 the message we need.  PeekMessage returning false should not be a
6698                 condition under which we exit the loop.
6699
6700         2007-02-15  Chris Toshok  <toshok@ximian.com>
6701
6702                 * Control.cs (Refresh): only refresh if we've got a handle and are
6703                 visible.
6704                 (CreateAccessibilityInstance): CreateControl() here.
6705                 (UpdateChildrenZOrder): complicate the code loop even more by
6706                 taking into account controls that haven't had their handle
6707                 created, and those that aren't visible.  But on the flip side,
6708                 simplify the code by splitting it into two loops.  one which
6709                 builds up the list of child controls we're interested in, and the
6710                 other that sets the z order of those children.
6711
6712         2007-02-14  Chris Toshok  <toshok@ximian.com>
6713
6714                 * Control.cs: Control.AccessibilityObject causes the control to be
6715                 created, not just the handle.
6716
6717         2007-02-14  Chris Toshok  <toshok@ximian.com>
6718
6719                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
6720                 problem on X where a window might have its handle created (and be
6721                 visible) while the window is unmapped.  calling XConfigureWindow
6722                 on an unmapped window is bad, and generates X errors.
6723
6724         2007-02-13  Chris Toshok  <toshok@ximian.com>
6725
6726                 * Control.cs (CreateHandle): don't loop over our children setting
6727                 their parent here.  do it when in WndProc when we're shown.
6728                 (UpdateChildrenZOrder): make this internal so we can call it from
6729                 ScrollableControl.
6730                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
6731                 creating its handle.  Also, remove the calls to PerformLayout from
6732                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
6733                 OnVisibleChanged only seems to be called directly here for the
6734                 toplevel control.  It's propagated down the window hierarchy by
6735                 calls to child.OnParentVisibleChanged.
6736                 (OnVisibleChanged): don't do layout here - it's done (oddly
6737                 enough, according to a glance at stack traces on ms.net..) in
6738                 ScrollableControl.
6739                 
6740                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
6741                 z order of our children before calling PerformLayout.
6742
6743         2007-02-12  Chris Toshok  <toshok@ximian.com>
6744
6745                 [big change, fixes #80020]
6746                 
6747                 * AccessibleObject.cs: we need to make owner internal again to fix
6748                 some of ControlAccessibleObject.
6749
6750                 * Control.cs: lots of changes here.  add support for WM_CREATE,
6751                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
6752                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
6753                 we create child controls.  leave the MonoTODO's for the
6754                 accessibility calls, but fix the exceptions so the tests pass.
6755
6756                 Add the InvalidOperationExceptions to Invoke methods, and remove a
6757                 couple of InvokeInternal methods we aren't using.
6758                 
6759                 Also, add a couple of CreateHandle calls in places where we know
6760                 the handles are being created but our code doesn't reference
6761                 .Handle.
6762
6763                 Make SetVisibleCore call OnVisibleChange if the handle isn't
6764                 created.  If the handle is created, we rely on XplatUI.SetVisible
6765                 generating the event synchronously.
6766                 
6767                 Lastly, make sure we don't use this.Handle inside CreateHandle,
6768                 because we can call back into client (and that code can dispose of
6769                 the control).
6770
6771                 * XplatUIStructs.cs: misc/cleanup.
6772
6773                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
6774                 although we don't populate the wParam properly.
6775                 (CreateWindow): generate WM_CREATE.
6776                 (MapWindow,UnmapWindow): make these calls synchronous, at great
6777                 performance expense (particularly in the unmap case), to match
6778                 win32 behavior.
6779
6780                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
6781                 to call it.
6782                 (set_MdiParent): don't recreate the handle unless it's been
6783                 created already.
6784                 
6785                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
6786                 it's created.
6787
6788                 * NativeWindow.cs: this is probably the weirdest part of the
6789                 patch.  We need a way to link up the window being created to the
6790                 WM_CREATE message.  Since we can only be creating one window at a
6791                 time on a given thread, we keep track of a per-thread reference so
6792                 we can dispatch it properly.  We also need to keep track of the
6793                 Hwnd currently being created so that the win32 backend doesn't
6794                 have problems.
6795                 
6796                 * XplatUIWin32.cs: a similar change to the one we made in
6797                 NativeWindow.cs.
6798
6799 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
6800
6801         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
6802         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
6803         to draw the menu shortcut string.
6804
6805 2007-03-07  Jackson Harper  <jackson@ximian.com>
6806
6807         * TreeNode.cs: Add the 2.0 collapse method.
6808
6809 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6810
6811         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
6812
6813 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6814
6815         * DataGridView.cs: Change DataSource will clear column and row
6816         lists. Call Invalidate() to reflect DataSource change.
6817
6818 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6819
6820         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
6821         and a new row is added to it.
6822
6823 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6824
6825         * DataGridView.cs: Add columns when DataSource is en empty list but
6826         is a System.Data.DataView (from a System.Data.DataTable).
6827
6828 2007-03-06  Andreia Gaita  <avidigal@novell.com>
6829
6830         * Label.cs: Implement AutoEllipsis (2.0)
6831
6832 2007-03-06  Jackson Harper  <jackson@ximian.com>
6833
6834         * TreeView.cs: Implement 2.0 TopNode setter property.
6835         - Use a local var instead of the skipped_nodes field for computing
6836         how many nodes to skip.  Otherwise we won't scroll because the
6837         valuechanged handler checks if skipped_nodes is equal to the new
6838         value.
6839         - Implement 2.0 Sort method.
6840         - Add useless 2.0 DoubleBuffer property
6841         - Implement 2.0 LineColors property.  Lets you change the color of
6842         the lines in the tree. Terribly useful for creating non cohesive
6843         desktops.
6844         - Implement 2.0 image key feature.
6845
6846 2007-03-06  Jackson Harper  <jackson@ximian.com>
6847
6848         * TreeView.cs: We can't get the bounds of the nodes before raising
6849         the AfterSelect event, because that event could change the node's
6850         bounds (scrolling, font change, etc).
6851
6852 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6853
6854         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
6855         * Form.cs: Don't recreate handle when creating FormWindowManager, just
6856           update window styles. In CreateParams us VisibleInternal instead of
6857           VIsible to get the actual visible flag set for this form.
6858         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
6859           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
6860           handle the case when the form is already maximized, in which case
6861           it should be restored. Fixes #81043.
6862
6863 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6864
6865         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
6866
6867 2007-03-05  Jackson Harper  <jackson@ximian.com>
6868
6869         * TreeViewHitTestInfo.cs: implement.
6870
6871 2007-03-05  Jackson Harper  <jackson@ximian.com>
6872
6873         * InternalWindowManager.cs: class status fix.
6874
6875 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6876
6877         * InternalWindowManager.cs: All windows that have a parent
6878         are confined to their parent when they're being moved.
6879         Fixes #80822.
6880
6881 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
6882
6883         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
6884         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
6885
6886 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6887
6888         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
6889           buttons invisible before deciding which ones should be visible
6890           (fixes minimize/maximize buttons showing up in toolwindows). Remove
6891           an unused variable.
6892         * InternalWindowManager.cs: Remove warning.
6893
6894 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6895
6896         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
6897         to throw an InvalidOperationException is virtual mode is being used.
6898
6899 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
6900
6901         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
6902         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
6903         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
6904         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
6905         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
6906         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
6907
6908 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6909
6910         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
6911           driver.KeyboardDelay from XplatUI.KeyboardDelay 
6912         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
6913           (patch by Sergey Volk)
6914
6915 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6916
6917         * ToolWindowManager.cs: Added, contains logic for
6918           tool windows.
6919         * CreateParams.cs: Add a few helper methods and an
6920           internal variable to know which control the CreateParams belongs
6921           to.
6922         * Control.cs: Call Form.ChangingParent when the
6923           parent is about to be changed.
6924         * XplatUIX11.cs: DeriveStyles (): Set
6925           caption_height for all windows that have captions and are children.
6926           Update to use ToolWindowManager instead of InternalWindowManager
6927           for ToolWindows.
6928         * XplatUIWin32.cs: Set fake window styles for all
6929           windows that have window managers.
6930         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
6931           now duplicated for mdi windows when they are
6932           maximized, first for the buttons the window itself has, then for
6933           the buttons that appear in the menu bar. Makes things a little
6934           easier). Updated UpdateWindowDecorations, SetWindowState and the
6935           mouse eventhandlers accordingly.
6936         * Form.cs: Add ChangingParent (), contains the
6937           logic of what should happen when the parent changes. In MdiParent
6938           don't set things that ChangingParent () is doing. When handling
6939           WM_CLOSE, we can close the form if there are any other modal forms
6940           and the current form is a descendent of the modal form.
6941         * InternalWindowManager.cs: A lot of refactoring,
6942           the title buttons are now extracted to a separate container class
6943           that takes care of all button code (clicks, tooltips, etc). Moved
6944           Iconic|Maximized|Normal Bounds properties to this class from
6945           MdiWindowManager, so that the window state logic can succeed for
6946           other than mdi wm's. Implemented general window state change logic.
6947           Moved CreateButtons to ThemeWin32Classic, since the theme might
6948           override which buttons are available when as well as the exact
6949           location.
6950         * FormWindowManager.cs: Added, contains logic for
6951           normal forms.
6952         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
6953           which buttons go where (and if they are at all visible). 
6954           Removed special handling of maximized windows, since they aren't special. 
6955           In DrawManagedWindowDecorations don't try to draw the text if it is
6956           empty.
6957         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
6958           use whatever the wm gives us.
6959
6960 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
6961
6962         * ButtonBase.cs: Add 2.0 properties.
6963         * Button.cs: Override Draw for 2.0.
6964         * Control.cs: Add Entered and Selected properties.
6965         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
6966         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
6967         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
6968         buttons.
6969         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
6970
6971 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
6972
6973         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
6974
6975 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
6976
6977         * XplatUIWin32.cs: Register a new class with Windows each time we get
6978         a new ClassStyle.  [Fixes bugs #79432, #80817]
6979         * Controls.cs: Set the correct ClassStyle in CreateParams.
6980         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
6981
6982 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
6983
6984         * ListView.cs: Add fireEvent argument to ReorderColumn since the
6985         ColumnReordered event must not be signaled when modifying DisplayIndex
6986         of a ColumnHeader. Added internal ReorderColumns method which takes
6987         care of drawing, and updating the internal DisplayIndex of the
6988         ColumnHeader. Added AddColumn method which is invoked from
6989         ColumnHeaderCollection when adding or inserting columns, and which
6990         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
6991         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
6992         Recalculated dispay indices after removing a ColumnHeader.
6993         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
6994         match MS. Allows last display index to be returned after ListView
6995         is disposed. Update actual location of ColumnHeader when DisplayIndex
6996         is modified.
6997
6998 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
6999
7000         * LinkLabel.cs: Improve CalcTrimRectangle.
7001         
7002         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
7003
7004 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
7005
7006         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
7007         get rectangle as a result value.
7008
7009 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
7010
7011         * LinkLabel.cs: Theres some diferences between rectangle return from 
7012         MeasureCharacterRanges and the area used for DrawString to fix this 
7013         CalcMeasurementFactor method was created, it calcules the diferences
7014         to be use later to adjust rectangle in draw operations. Fixes #80473.
7015         
7016         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
7017         to adjust draw rectangle.
7018
7019 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
7020
7021         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
7022         text and some other changes to reduce and optimize source code.
7023
7024 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
7025
7026         * RadioButton.cs: Implement 2.0 event.
7027         * RelatedImageListAttribute.cs: Implement new class.
7028
7029 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
7030
7031         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
7032
7033 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
7034
7035         * CheckBox.cs: Implement 2.0 functionality.
7036
7037 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7038
7039         * ListView.cs: Refactor Add and AddRange methods of
7040         ListViewItemCollection, to not update the ListView
7041         everytime an item is added in AddRange. Also move the update
7042         code to a new CollectionChanged method, and call it
7043         from other methods that need it as well (this should also fix some
7044         bugs when Sorting is used).
7045
7046 2007-02-27  Jackson Harper  <jackson@ximian.com>
7047
7048         * TextControl.cs: Try to never let the caret stay in a non-text
7049         tag.
7050         * TextBoxBase.cs: Update the caret.
7051
7052 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
7053
7054         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
7055         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
7056         delete POINT structure, duplicate of one in XplatUIStructs.
7057         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
7058
7059 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
7060
7061         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
7062         edit box since otherwise the Label would immediately be set (even if
7063         the user did not modify the label). In OnKeyDown set Handled to true
7064         if Return or Escape was pressed. In ColumnHeaderCollection unlink
7065         columns that are to be removed. In ListViewItemCollection unlink items
7066         that are to be removed.
7067
7068 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
7069
7070         * TextRenderer.cs: If we set a GDI clip region, we need to clear
7071         it when we are done.  [Fixes bug #80949]
7072
7073 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7074
7075         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
7076
7077 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7078
7079         * ListView.cs: I forgot to commit the changes for ListView 
7080         in my previous patch.
7081
7082 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7083
7084         * Clipboard.cs: Partially implement an overload of SetDataObject.
7085         * Form.cs: Implement ShowWithoutActivation.
7086         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
7087
7088 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7089
7090         This is a first set of changes to make the Virtual mode works,
7091         by avoiding the retrieval of ListViewItem instances until
7092         draw time.
7093
7094         * ListView.cs: Store item position in the ListView instead of the
7095         ListViewItem, this way we don't request the Bounds property of
7096         ListViewItem inside the ListView calculations, as well as cache the item
7097         size in item_size field. Store indexes instead of ListViewItem
7098         instances in the matrix used by icon view. Add a ItemMatrixLocation
7099         struct to hold the row and col info of the matrix info.
7100
7101         * ListViewItem.cs: Don't store the location anymore, and only cache
7102         the rectangles for GetBounds. Use the ListView.GetItemLocation
7103         method to retrieve the actual location.
7104
7105 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7106
7107         * TextRenderer.cs: Add clipping support, thanks to George.
7108         [Fixes bug #80949]
7109
7110 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
7111
7112         * ListViewItem.cs: Cancel label edit when item is removed from 
7113         ListView.
7114         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
7115         event before the edit textbox is displayed.  Added CancelEdit method
7116         which is used end to editing while ignoring the value set by the
7117         user. In EndEdit, set focus to ListView to avoid losing focus to
7118         other controls. In ListViewItemCollection.Clear, cancel editing of
7119         any of the items.  In Remove, cancel editing of item being removed.
7120         Avoid udplicate code by modifing RemoveAt to invoke Remove.
7121
7122 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
7123
7124         * FileDialog.cs: Update FSEntry when move is successful. Fixes
7125         bug #80948.  
7126
7127 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
7128
7129         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
7130         compatible with non X11 systems. Fixes #80901.
7131
7132 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
7133
7134         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
7135         whether the item should be unselected and reselect. We do no want this
7136         when we're starting to edit the label. Do not fire the 
7137         SelectedIndexChanged event from ListView when its already been fired
7138         by modifying ListViewItem.Selected. Fixes bug #80943.
7139
7140 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7141
7142         * TextRenderer.cs: Previos commit logic was backwards.
7143
7144 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7145
7146         * TextRenderer.cs: Don't add padding on MeasureText if we were
7147         sent the NoPadding flag.
7148
7149 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
7150
7151         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
7152         after DrawButton. To prevent image overlaps button borders SetClip and 
7153         ResetClip added before and after draw image. Fixes #79129.
7154
7155 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
7156
7157         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
7158         window size, it fix problem when you run under win32 that theres
7159         Size diferent than ClientSize. Also fix controls size and positions
7160         to mimic Win32. Fixes #80837.
7161
7162 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
7163
7164         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
7165         menu area to fix some problems for non X11 systems. Fixes #80613.
7166
7167 2007-02-22  Jackson Harper  <jackson@ximian.com>
7168
7169         * TreeNode.cs: When a node is expanded, set its is_expanded flag
7170         even if it doesn't have any children.
7171
7172 2007-02-22  Jackson Harper  <jackson@ximian.com>
7173
7174         * TreeView.cs: Calculate the top node 'on the fly', this
7175         eliminates issues where you need to click on the tree before
7176         scrolling it to get the top node computed correctly.
7177         * TreeNodeCollection.cs: We don't need to mess with the top node
7178         anymore.
7179
7180 2007-02-22  Jackson Harper  <jackson@ximian.com>
7181
7182         * DataGridViewRow.cs: Fix typo so height can actually be set.
7183         Patch by Peter Grimm.
7184
7185 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
7186
7187         * FileDialog.cs: Fixed support for renaming files and directories.
7188         * ListView.cs: Do not lose focus when edit is canceled. Process
7189         Escape as regular key (to prevent closing of dialogs).
7190
7191 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
7192
7193         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
7194         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
7195
7196 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
7197
7198         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
7199         did not modify label.
7200         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
7201         modified the text. Reset Label when user presses Escape in edit mode.
7202         Move focus to ListView after having cancelled or finished editing the
7203         label.
7204
7205 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
7206
7207         * ComboBox.cs: Removed unnecessary initializations. Marked items field
7208         private. Clear textbox when Text is set to null and SelectedIndex is
7209         already -1.
7210         * FileDialog.cs: Removed unnecessary initializations. Removed 
7211         workarounds for ComboBox bugs that are now fixed. Modified
7212         DefaultExt, InitialDirectory and Title property to change null to
7213         zero-length string in getters. Avoid directly accessing fields.
7214
7215 2007-02-20  Jackson Harper  <jackson@ximian.com>
7216
7217         * TextControl.cs: Remove RecalAlignments call, that was some
7218         debugging leftovers.
7219         - Don't use the line indent when we shouldn't.
7220         * RichTextBox.cs: Add support for paragraph left indents.
7221
7222 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7223
7224         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
7225         Seems like the class status pages doesn't catch params differences.
7226
7227 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
7228
7229         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
7230
7231 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
7232
7233         * ComboBox.cs: Setting Text should have no effect if item text of
7234         selected item exactly matches value. First lookup text using
7235         case-sensitive comparison, and fallback to case-insensitive comparison.
7236         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
7237         allow startIndex to be last index. Changed ArgumentOutOfRangeException
7238         paramname to match MS. Restart from first item if string is not found
7239         after startIndex. Fixed paramname of ArgumentNullException that is
7240         thrown for null value in ObjectCollection.Contains.
7241
7242 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
7243
7244         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
7245
7246 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7247
7248         * ListControl.cs: In SelectedValue use value.Equals to compare for
7249         equality instead of ==, otherwise it will fail for strings.
7250         Fixes #80794.
7251
7252 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7253         
7254         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
7255         since the caret won't show up unless ShowSelection is true. 
7256         Fixes #80795.
7257
7258 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7259
7260         * Application.cs: When disabling all forms but the main form, do not
7261           disable any descendants of the main form (such as mdi children or
7262           other parented forms). Fixes #80822 on Windows.
7263         * Form.cs: If we have a parent, set the WS_CHILD style.
7264         * Control.cs: Update the window styles if the control whose parent has
7265           changed is a form (the WS_CHILD style has to be switched).
7266
7267 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
7268
7269         * XplatUIStructs.cs: MsgUIState structure added.
7270
7271 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
7272
7273         * FileDialog.cs: Removed need for separate fileName field. On 2.0
7274         profile, do not check filename(s) for illegal character if filename(s)
7275         were set non-interactively but always check on 1.0 profile. Fixed NRE
7276          in DefaultExt and only strip off first leading dot. Improve exception
7277         message when invalid Filter is set. Do not ignore InitialDirectory if
7278         it does no exist. Store specified Title, and if empty use default
7279         title (depending on type of dialog). Added an internal DialogTitle 
7280         property for retrieving dialog title. Fixed logic of displayed dir to
7281         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
7282         string as its buggy.
7283         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
7284         FileName is a zero-length string (it can never be null). Override 
7285         DialogTitle property to set default title of dialog box.
7286         * SaveFileDialog.cs: Override DialogTitle property to set default
7287         title of dialog box.
7288
7289 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
7290
7291         * FileDialog.cs: Modify default text of filename and filetype labels
7292         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
7293         after we've updated the SelectedIndex. Fixes part of bug #80887.
7294         * SaveFileDialog.cs: Set text of filetype label.
7295
7296 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7297
7298         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
7299         label field. Needed by latest Jackson's fixes for ListView.
7300
7301 2007-02-16  Andreia Gaita  <avidigal@novell.com>
7302
7303         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
7304         print preview images.
7305
7306 2007-02-16  Jackson Harper  <jackson@ximian.com>
7307
7308         * ListView.cs: Make AfterLabelEdit work correctly.
7309         * FileDialog.cs: After changing the name of the folder, we have to
7310         make sure that it is created, or that we pop up an error because
7311         it already exists.
7312
7313 2007-02-16  Jackson Harper  <jackson@ximian.com>
7314
7315         * X11Dnd.cs: Implement aliases on mime handlers, so things like
7316         System.String are mapped to text.
7317         - Handle dataobjects, getting all the possible formats out of them
7318         - We dont need the drag event args before we give feedback. This
7319         allows feedback cursors to be immediate before selections have
7320         been converted.
7321
7322 2007-02-16  Jackson Harper  <jackson@ximian.com>
7323
7324         * TextBoxBase.cs: Modified the method for inserting images to
7325         taking a line and position instead of tag and position.
7326         * RichTextBox.cs: Handle PngBlip data by inserting the png image
7327         into the RTF file.
7328         * TextControl.cs: Allow images to be inserted as the first tag of
7329         a line.
7330         - Fix some off by one issues when we assume the first tag is a
7331         text tag, not an image tag.
7332
7333 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7334
7335         * ListView.cs: Set focus to ListView when ItemControl gets a
7336         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
7337         Fixes part of #80467.
7338
7339 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7340
7341         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
7342           validate Text input (if null or empty string reset Value to default
7343           value). Fixes #80830.
7344
7345 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7346
7347         * ListView.cs: Set owner as null for columns and items when
7348         Dispose is invoked. Fixes #80607.
7349
7350 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
7351
7352         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
7353         showing DropDowns, don't show a Grip when doing Flow layout.
7354         [This fixes the toolbox in PDN 2.72.]
7355         * ToolStripItem.cs: Add Anchor property and some internal properties to
7356         reduces needed changes to FlowLayout.
7357         * ToolStripOverflow.cs: Remove unused variable.
7358         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
7359         use it in the layout calculations.
7360
7361 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7362
7363         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
7364         reported in #79640.
7365         
7366         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
7367         size calculation.
7368
7369 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7370
7371         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
7372         MeasureString format, it can make button very large in some cases, it is
7373         strange but is what win32 do.
7374
7375 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7376
7377         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
7378         size calculation.
7379
7380         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
7381         rendering, the value is based on MenuAccessKeysUnderlined.
7382
7383 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7384
7385         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
7386         for most themes.
7387         
7388         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
7389         
7390         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
7391         and use MenuAccessKeysUnderlined instead.
7392
7393 2007-02-13  Andreia Gaita  <avidigal@novell.com>
7394
7395         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
7396         A selected control would not get a Focus call if:
7397                 - the default active control of the container is the same as
7398                   the one that was selected
7399                 - we are switching from one container to another
7400         Under these conditions, the container being selected already has
7401         an active_control, which is the same as the one being activated, 
7402         so set_ActiveControl would always return and not send the Focus
7403         call. Fix to check if the currently active control of the container
7404         is actually focused.
7405
7406 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
7407
7408         * StatusStrip.cs: Implement the spring layout.
7409         * ToolStripControlHost.cs: Make sure the hosted control's visibility
7410         always matches the host.
7411         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
7412         and TextAfterImage.
7413
7414 2007-02-13  Andreia Gaita  <avidigal@novell.com>
7415
7416         * Control.cs: Code reorganization only.
7417           - Reorganize the WndProc cases so that each case has it's own handling method, 
7418           to help with the no-line-numbering stack traces.
7419           - Formatting changes (it's vstudio's fault, really :p)
7420
7421 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7422
7423         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
7424           Thread.CurrentUICulture to match DateTimePicker's (and MS)
7425           behaviour.
7426
7427 2007-02-12  Jackson Harper  <jackson@ximian.com>
7428
7429         * RichTextBox.cs:
7430         * TextBox.cs: By default we have a non multiline document
7431         - use the multiline property instead of the internal variable
7432         * TextBoxBase.cs: Treat multiline and non multiline the same in
7433         most places.
7434         - Use the documents multiline flag instead of tracking it ourself
7435         * TextControl.cs: Attempt at getting multiline to match MS
7436         behavior.  Lines now track an offset, which is either their X or Y
7437         offset depending on whether or not we are in multiline mode.
7438         - Update all the methods to understand that lines have an X value.
7439         - Fix crash in Undo::Duplicate when empty lines are deleted.
7440
7441 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
7442
7443         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
7444         code moved to properties PreferredHeight and PreferredWidth. It solve the
7445         all problems when preferred sizes must be recalculated. Fixes #80801.
7446
7447 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
7448
7449         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
7450         font height when compatible_text_rendering is false. Partially fix #80801.
7451
7452 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
7453
7454         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
7455
7456 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
7457
7458         * Form.cs: Improved exception messages in ShowDialog.
7459
7460 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
7461
7462         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
7463         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
7464         if not set. Fixes bug #80764. Avoid accessing current_settings field
7465         directly.
7466
7467 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
7468
7469         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
7470         false.
7471
7472         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
7473         public in 2.0 and for easy maintenance and dont break compatibility it is 
7474         internal in 1.1.
7475         
7476 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
7477
7478         * ToolStripItem.cs: Implement using images from ImageList.
7479
7480 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7481
7482         * DateTimePicker.cs: Change default date-formatting culture from
7483           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
7484           seems to be the way MS does it.
7485
7486 2007-02-08  Andreia Gaita  <avidigal@novell.com>
7487
7488         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
7489         (the 6 was cut off on the right side)
7490
7491 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
7492
7493         * Form.cs: Tell MenuStrips to close when the form is clicked.
7494         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
7495         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
7496         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
7497         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
7498         support for Overflow, where items that do not fit are automatically
7499         reparented to a drop down menu.
7500         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
7501         Also: fixes bug #80747.
7502
7503 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7504
7505         * ComboBox.cs: Remove warning (unused code).
7506         * ScrollableControl.cs: Remove warning for 1.1 profile.
7507
7508 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7509
7510         * Form.cs: Remove a warning.
7511
7512 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7513
7514         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
7515           'g' specifier, not documented anywhere, but seems to always show up
7516           as a single space (might have something to do with the DateTime 'g'
7517           specifier, which is the era format, but since DateTimePicker can't
7518           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
7519           won't crash if the format has an unmatched quote. Now shows
7520           single-character formats correctly. Fixes #80744.
7521
7522 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
7523
7524         * StatusStrip.cs: Stretch property needs to call base.Stretch,
7525         not this.Stretch to fix stack overflow. [Fixes bug #80760]
7526
7527 2007-02-07  Chris Toshok  <toshok@ximian.com>
7528
7529         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
7530         background color.  it overwrites the background image we've
7531         already painted.  Fixes #80599.
7532
7533 2007-02-07  Chris Toshok  <toshok@ximian.com>
7534
7535         * DataGrid.cs: return immediately from Edit() when there are no
7536         columns.  Fixes #80662.
7537
7538 2007-02-07  Chris Toshok  <toshok@ximian.com>
7539
7540         * MessageBox.cs: fix #80625.  don't always show the Help button in
7541         2.0.  use the displayHelpButton parameter to determine if we
7542         should show it. Also, make the internal show_help field private.
7543
7544 2007-02-07  Chris Toshok  <toshok@ximian.com>
7545
7546         * Control.cs (SetVisibleCore): check in the proposed patch for
7547         80604, and set is_visible before calling CreateControl.
7548
7549 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
7550
7551         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
7552         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
7553         on it.
7554
7555 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
7556
7557         * MenuAPI.cs: hotkey_active internal field added, it is required because
7558         we need to know when hotkeys must be draw, before this change a keystate
7559         Navigating was used but we can have menu in navigating state without
7560         hotkeys. Fixes #80694.
7561         
7562         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
7563
7564 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7565
7566         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
7567           corresponding events and methods to be internal for 1.1 profile and
7568           public for 2.0 profile (required by SizeGrip).
7569         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
7570           implicit control list). Don't set the size nor the location of the
7571           SizeGrip anymore as it's not needed.
7572         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
7573           draw directly on the captured control (fixes #80656). Removed
7574           ShowGrip (it wasn't used anywhere), redraw (always true), added
7575           GetDefaultSize and GetDefaultRectangle to calculate defaults.
7576         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
7577           be called from SizeGrip.
7578
7579 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7580
7581         * Timer.cs: Throw ArgumentException if Interval <= 0.
7582
7583 2007-02-05  Jackson Harper  <jackson@ximian.com>
7584
7585         * TreeView.cs: We need to check scrollbar visibility when window
7586         visibility is updated, because non visible trees don't ever add
7587         scrollbars.
7588         * Cursor.cs: We want the override cursor to be reset to NULL when
7589         we set current cursor to the default cursor.
7590
7591 2007-02-05  Jackson Harper  <jackson@ximian.com>
7592
7593         * TextControl.cs: Don't have crlfs when we are non multiline.
7594         - Consolidate the line position.
7595
7596 2007-02-05  Jackson Harper  <jackson@ximian.com>
7597
7598         * X11Keyboard.cs: BACK+CTRL gets a special char code.
7599
7600 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7601
7602         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
7603           handling LeaveNotify->NotifyUngrab in order to send
7604           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
7605           after calling XUngrabPointer, so we call WindowUngrabbed directly
7606           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
7607         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
7608           MouseCaptureChanged correctly. Also create handles if changing
7609           Capture (matches MS behaviour).
7610
7611 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7612
7613         * SizeGrip.cs: Make the last change 2.0 only.
7614
7615 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7616
7617         * SizeGrip.cs: If resizing and the capture is lost, revert any size
7618           changes to initial size (fixes #80597).
7619
7620 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7621
7622         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
7623
7624 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7625
7626         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
7627           background) and only allow dragging if enabled. This way the
7628           sizegrip can be used to fill the open square that otherwise would
7629           have been shown in the bottom right corner of ScrollableControl
7630           when ScrollableControl is not suppose to support sizing.
7631         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
7632           sizegrip is shown and enabled, and hook up with necessary events.
7633
7634 2007-02-01  Chris Toshok  <toshok@ximian.com>
7635
7636         * DataGridTextBoxColumn.cs: clean up the
7637         GetFormattedString/GetColumnValueAtRow combination of functions.
7638         Also fix UpdateUI, and the initial state of
7639         IsInEditOrNavigateMode.
7640
7641         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
7642         aren't supposed to scroll the textbox here, we're supposed to
7643         scroll the datagrid.
7644
7645 2007-02-01  Chris Toshok  <toshok@ximian.com>
7646
7647         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
7648         setting the position.
7649
7650 2007-02-01  Chris Toshok  <toshok@ximian.com>
7651
7652         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
7653         here, since the most recent focus fixes keep us from generating
7654         the Leave event when our textbox gets focus.
7655         (Edit): we should be passing null for the column style's
7656         instantText parameter.
7657         
7658 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
7659
7660         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
7661         raised.  Fixes menu text/icons not showing up in PDN.
7662
7663 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7664
7665         * Control.cs: Remove code in constructor that makes every
7666         control with WS_CHILD set have initial location -1, -1.
7667
7668 2007-01-31  Jackson Harper  <jackson@ximian.com>
7669
7670         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
7671         XplatUIX11.
7672         * XplatUIX11.cs: Give teh keyboard to teh dnd.
7673
7674 2007-01-31  Jackson Harper  <jackson@ximian.com>
7675
7676         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
7677         - Remove some debug code.
7678
7679 2007-01-31  Jackson Harper  <jackson@ximian.com>
7680
7681         * XplatUIX11.cs: If you set the override cursor during a grab, it
7682         should actually override the grab cursor.  This comes into play
7683         when you are setting custom cursors in a DND feedback method.
7684
7685 2007-01-31  Jackson Harper  <jackson@ximian.com>
7686
7687         * X11Dnd.cs: Add support for handling the QueryContinue and
7688         GiveFeedback events.
7689         - Cancel drag and drop actions when the escape key is clicked.
7690         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
7691         can handle the ESCAPE key.
7692         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
7693         done when dnd events are continued after the button is released.
7694         - Add a new helper method so that dnd can translate key events.
7695
7696 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
7697
7698         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
7699         make it more obvious what is happening.
7700
7701 2007-01-30  Jackson Harper  <jackson@ximian.com>
7702
7703         * XplatUIX11.cs: Don't break when handling button release in drag
7704         and drop operations. We need that BUTTONUP message to get through
7705         so capture is released.
7706         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
7707         this is handled automatically when the mouse is down.
7708
7709 2007-01-30  Jackson Harper  <jackson@ximian.com>
7710
7711         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
7712         is closed, so we need to make sure that we aren't changing the
7713         dialog result when the OK (Open or Save) button has been clicked
7714         and we are closing the window ourselves.  Note we don't need to
7715         worry about the cache being written in this case, because it was
7716         already done in the previous FilOk call.
7717
7718 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7719         
7720         * DateTimePicker.cs: Remove a warning.
7721         * ComboBox.cs: Remove a couple of warnings.
7722
7723 2007-01-29  Chris Toshok  <toshok@ximian.com>
7724
7725         * XplatUIX11.cs: don't crash, and remove the icon if the user has
7726         set one, if SetIcon is passed a null icon.
7727
7728 2007-01-29  Andreia Gaita  <avidigal@novell.com>
7729
7730         * TextBox.cs: Redraw when the password characters changes
7731         * TextControl.cs: Check if textbox has a password char and draw 
7732         a line of password chars instead of the text in the line. LineTag gets 
7733         an extra Draw() method which allows document.Draw to override the text 
7734         that will be drawn. Removes 1024 char limitation on length of passworded 
7735         lines.
7736
7737 2007-01-29  Jackson Harper  <jackson@ximian.com>
7738
7739         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
7740         single chars is not.
7741
7742 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
7743
7744         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
7745         one pixel.  Fix a StackOverflowException caused by an overload wrongly
7746         calling itself.
7747
7748 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
7749
7750         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
7751         also remove ProcessArrowKey and put the code inside ProcessKeys.
7752
7753 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
7754
7755         * PaddingConverter.cs: Added.
7756
7757 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7758         
7759         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
7760         ShowPanels is false (fixes #80600). Only draw up to 127 characters
7761         of text (fixes #80601). For panels clip the text to draw to the
7762         panel (fixes #80603).
7763
7764 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7765
7766         * ComboBox.cs: Fixed implementation of ResetText.
7767
7768 2007-01-25  Jackson Harper  <jackson@ximian.com>
7769
7770         * TextControl.cs: For the last char of a line we need to use the
7771         line size, not that chars width, since it won't actually be
7772         computed since the right side of a char is based on the start of
7773         the left side of the next char, and the next char does not exist.
7774
7775 2007-01-25  Chris Toshok  <toshok@ximian.com>
7776
7777         * Splitter.cs: fix the new unit tests, and reindent some switch
7778         statements.
7779
7780 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7781
7782         * ComboBox.cs: Implemented 2.0 methods and events.
7783         * TextBoxBase.cs: Added OnTextUpdate, so that
7784         ComboBox.ComboTextBox can inform ComboBox of it.
7785
7786 2007-01-25  Jackson Harper  <jackson@ximian.com>
7787
7788         * TextControl.cs: Respect ShowSelection when deciding whether or
7789         not to display the caret, this allows comboboxes to have carets
7790         when the combotextbox does not have focus.
7791
7792 2007-01-25  Jackson Harper  <jackson@ximian.com>
7793
7794         * TextControl.cs: Add a Suspend/Resume for updating, basically the
7795         same as the Suspend/Resume for recalc, except this will do actual
7796         Invalidates.
7797         - New Undo manager, works much like the MS version.
7798         - Implemented Redo
7799         * TextBoxBase.cs: The Cut operation is undoable.
7800
7801 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7802         
7803         * TextBoxBase.cs: Don't antialias text. Makes it look way better
7804         on Windows (no difference on Linux).    
7805
7806 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7807
7808         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
7809         we don't want to activate any windows. Fixes #79433.
7810
7811 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
7812
7813         - ButtonBase.cs: Fix capitalization of parameter: disposing.
7814         [Fixes bug #80609]
7815
7816 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
7817
7818         * FileDialog.cs:
7819         - Move to using System.ComponentModel.EventHandlerList
7820         - Replace Refresh with Invalidate
7821         - Clear the mime filecache on closing
7822         - Some other memory reducing work. After beeing closed FD now uses
7823           only about 300 KB for the fdo mime stuff plus the memory of the
7824           cached icons.
7825         * Mime.cs: Changed coding style and removed unnecessary commented
7826         code. Some more memory memory reducing work.
7827
7828 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7829
7830         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
7831         a few other missing 2.0 properties.
7832         * Theme.cs: Added DrawFlatStyleComboBox.
7833         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
7834
7835 2007-01-24  Chris Toshok  <toshok@ximian.com>
7836
7837         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
7838         wake_waiting flag, not just when there's data to be read.  if we
7839         don't, then future wakeup's won't reach us and we'll be doomed to
7840         wait for the entire 1 second timeout forever (unless there are X
7841         events to be had).
7842
7843 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
7844
7845         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
7846         until you pass Items.Count, not Items.Count - 1 like 1.1.
7847
7848 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
7849
7850         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
7851
7852 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
7853
7854         * ToolStripContainer.cs: The recent Dock fix exposed that I was
7855         adding the panels in the wrong order.
7856
7857 2007-01-24  Jackson Harper  <jackson@ximian.com>
7858
7859         * TextBoxBase.cs: When we move the caret we also need to move the
7860         selection, this fixes some random crashing after doing select
7861         text, unselect, delete a char, paste.
7862
7863 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7864
7865         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
7866
7867 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
7868
7869         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
7870         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
7871         * ToolBar.cs: Force redraw in BackgroundImageChanged.
7872
7873 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
7874
7875         * ToolBar.cs:
7876         - Implement support for vertical toolbars. Fixes #80539;
7877         - Call LayoutToolBar when resize, it fix some other problems in layout.
7878         - Rename requested_height to requested_size, as we can have width on it
7879         when toolbar is vertical.
7880         - Create a private property "Vertical" that uses Dock to verify when 
7881         toolbar is vertical or not.
7882         - Set ControlStyles when change Dock property.
7883         - Refactory in LayoutToolBar to have better variables names and to support
7884         vertical toolbars.
7885         - Fixes default value for ButtonSize when button count is equal zero, size
7886         must be (39, 36) test case writed.
7887
7888 2007-01-23  Chris Toshok  <toshok@ximian.com>
7889
7890         * Control.cs: fix the checks so that they work correctly for mdi
7891         parents/children.
7892
7893 2007-01-23  Chris Toshok  <toshok@ximian.com>
7894
7895         * Control.cs: ControlCollection seems to have super-secret
7896         abstraction breaking knowledge of Mdi containers.  allow MdiClient
7897         to add toplevel controls.
7898
7899 2007-01-23  Chris Toshok  <toshok@ximian.com>
7900
7901         * Control.cs: throw an ArgumentException if a toplevel control is
7902         added to our control collection from ControlCollection.Add, as
7903         well as from ControlCollection.IList.Add.  This fixes the
7904         ControlSetTopLevelTest.TestTopLevelAdd unit test.
7905
7906         Also, in ControlCollection.IList.Add, don't through an
7907         ArgumentNullException, throw an ArgumentException, when value ==
7908         null.  This matches MS.
7909
7910 2007-01-23  Chris Toshok  <toshok@ximian.com>
7911
7912         * BindingSource.cs: initial, incomplete, implementation of
7913         BindingSource.
7914
7915 2007-01-23  Jackson Harper  <jackson@ximian.com>
7916
7917         * TextControl.cs:
7918         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
7919         that I can fix a broken unit test (TextBoxTest::ClearUndo)
7920         
7921 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
7922
7923         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
7924
7925 2007-01-23  Andreia Gaita  <avidigal@novell.com>
7926
7927         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
7928         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
7929         IndexOfKey() for 2.0
7930
7931 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7932
7933         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
7934         to prevent it from changing z-order.
7935         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
7936         leave UI updates in MdiWindowManager.
7937         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
7938         1 sized (NC handling goes weird on Linux otherwise).
7939         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
7940         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
7941         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
7942         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
7943         and SetWindowState(s) to allow for changing the size of an activated child
7944         before activating it (reduces a lot of flicker).
7945
7946 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
7947
7948         * Form.cs: Changing FormBorderStyle has different semantics based
7949         on whether the Form is visible or not.  If not visible, don't change
7950         the Size.  But InvalidateNC needs to be called to force the window
7951         to pick up the changes and redraw itself.  [Fixes bug #80574]
7952
7953 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
7954
7955         [Moma work]
7956         * ContainerControl.cs: ProcessCmdKey.
7957         * ErrorProvider.cs: new constructor.
7958         * Form.cs: fix AutoValidateEvent compiler warning.
7959         * Label.cs: fix OnAutoSizeChanged compiler warning.
7960         * MenuStrip.cs: fix CanOverflow compiler warning.
7961         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
7962         * TextBox.cs: Dispose.
7963         * ToolStrip.cs: CanOverflow, re-enable double buffering.
7964         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
7965         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
7966         * ToolStripItem.cs: Overflow, RightToLeft properties.
7967
7968 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7969
7970         * Form.cs: Move the layout of the main form to MdiWindowManager.
7971         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
7972         do a layout of the main window to update MdiClient's client area to
7973         the right area. Fixes #80533. Remove the calculation of nc size, 
7974         it was just wrong and the correct one is the same as for 
7975         InternalWindowManager. 
7976
7977 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
7978
7979         * Control.cs: Setting Anchor or Dock needs to reset the other
7980         to its default.  [Fixes bug #80556]
7981
7982 2007-01-20  Chris Toshok  <toshok@ximian.com>
7983
7984         * CheckedListBox.cs: class status changes.
7985
7986         * ScrollableControl.cs: same.
7987
7988         * RichTextBox.cs: same.
7989
7990         * ContainerControl.cs: same.
7991
7992         * ListView.cs: same.
7993
7994         * NotifyIcon.cs: same.
7995
7996         * MenuStrip.cs: same.
7997
7998         * RadioButton.cs: same.
7999
8000         * CheckBox.cs: same.
8001
8002         * PrintPreviewDialog.cs: same.
8003
8004         * Form.cs: same.
8005
8006 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
8007
8008         * TreeNode.cs: Apply Alan's patch for Name property.
8009
8010 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8011         
8012         * Form.cs: Implemented SizeGripStyle.
8013         * SizeGrip.cs: Check for minimum and maximum size for the
8014         control being resized and only resize if size has actually
8015         changed.
8016
8017 2007-01-19  Chris Toshok  <toshok@ximian.com>
8018
8019         * DataGridColumnStyle.cs: stop setting _readonly in the
8020         PropertyDescriptor setter.  fixes a unit test failure.
8021
8022         also, rename ParentReadOnly to TableStyleReadOnly, and have it
8023         just consult our table style (if we have one).  We don't need to
8024         consult the datagrid readonly attribute because that's passed in
8025         as the _ro arg to Edit.  this simplifies things a little.
8026         
8027         * DataGrid.cs: use CurrentColumn instead of
8028         current_cell.ColumnNumber just to simplify some of the code.
8029
8030         switch the order of some things in the CurrentCell setter to keep
8031         the previous cell from getting a textbox again -
8032         EnsureCellVisibility causes scrolling to happen, which calls Edit.
8033         So we need to set the new cell before calling it.
8034         
8035         call Edit in OnEnter, as does Microsoft.
8036         
8037         also, make sure the current table style isn't the one we create
8038         initially when checking to see if it's different than the one
8039         we're setting it to in BindColumns (this fixes #80421).
8040
8041         * GridTableStylesCollection.cs: table styles can have "" for a
8042         mapping name.  part of the fix for #80421.
8043
8044         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
8045         Edit significantly.
8046
8047 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8048
8049         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
8050         and less GDI object leaky-er.
8051
8052 2007-01-18  Andreia Gaita  <avidigal@novell.com>
8053
8054         * LinkLabel.cs: Add opaque control style
8055
8056 2007-01-18  Jackson Harper  <jackson@ximian.com>
8057
8058         * TextControl.cs: Calculate width properly.
8059         - Don't store the tag's X offset, this can be figured out very
8060         easily.
8061         - When getting the caret tag make sure to get the last empty tag.
8062
8063 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8064
8065         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
8066         [Fixes bug #79959]
8067
8068         * Control.cs: Color.Empty shouldn't count for previous transparent
8069         redraw changes.
8070
8071 2007-01-18  Jackson Harper  <jackson@ximian.com>
8072
8073         * TextBox.cs:
8074         * RichTextBox.cs:
8075         * TextControl.cs: Starting to merge in some pieces of my older
8076         undo work.  Basically just some slight cleanup of the undo API.
8077
8078 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8079
8080         * TrackBar.cs: Fix signature of RightToLeftLayout.
8081         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
8082         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
8083         * Application.cs: Implemented UseWaitCursor.
8084
8085 2007-01-18  Jackson Harper  <jackson@ximian.com>
8086
8087         * TextControl.cs: We can't skip tags if any part of the tag is
8088         visible.
8089
8090 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8091
8092         * ContainerControl.cs: Override OnLayout.
8093
8094 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8095
8096         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
8097
8098         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
8099         everything else.
8100
8101 2007-01-18  Chris Toshok  <toshok@ximian.com>
8102
8103         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
8104         (leftover from the container_selected days, I'd wager).  fixes bug
8105         #80546.
8106
8107 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8108
8109         * Control.cs: Apply patch from George to fix the new testcase on
8110         bug #80451.  We can't just check for Color.Transparent, we need 
8111         to check if the back color's alpha channel is < 255.
8112
8113 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8114
8115         * Form.cs: Move setting show_icon = true to before the constructor
8116         so that the base constructor has that information when it calculates
8117         the form's size.  Was causing forms to be (6, 6) bigger than they
8118         were supposed to be.  Thanks for catching this Rolf!
8119
8120 2007-01-18  Jackson Harper  <jackson@ximian.com>
8121
8122         * TextControl.cs: When replacing a selection we need to invalidate
8123         from the initial selection start, because selection start is moved
8124         to the end of the replacement.
8125
8126 2007-01-18  Andreia Gaita  <avidigal@novell.com>
8127
8128         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
8129
8130 2007-01-18  Chris Toshok  <toshok@ximian.com>
8131
8132         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
8133         I just added.
8134
8135 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
8136
8137         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
8138         layout methods and properties from ToolBarButton must be available
8139         into ToolBarButtonInfo.
8140
8141 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
8142
8143         * Control.cs: If the control has a transparent background, we
8144         need to refresh it when it moves and when it's parent's background
8145         image changes.  [Fixes bug #80451]
8146
8147 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
8148
8149         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
8150
8151 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
8152
8153         * XplatUIWin32.cs: Implement proper double buffering for Windows.
8154         [Fixes bug #80447, and probably speeds up things as well]
8155
8156 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8157
8158         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
8159         * XplatUIWin32.cs: We need to recalculate NC size after changing 
8160         window style to toolwindow (otherwise the client rectangle will be
8161         3 pixels to small for some reason).
8162         * MdiWindowManager.cs: Revert NC size calculations to match how
8163         they are calculated only based on window styles (to match
8164         Win32AdjustWindowRectEx, since otherwise when setting size or 
8165         location, Control will call Win32AdjustWindowRectEx to update client 
8166         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
8167         calculate a different value of client size causing another paint 
8168         (and flickering))
8169         * InternalWindowManager.cs: When moving or resizing a window only
8170         update size or location if they actually changed.
8171         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
8172         (seems to match Windows behaviour better). Cleaned up 
8173         ManagedWindowDecorations to draw what's needed and nothing else
8174         (was drawing borders and lines where they shouldn't be)
8175         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
8176         (style = 0xFFFF) and takes into account caption height when 
8177         calculating window rectangle.   
8178
8179 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
8180
8181         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
8182         can be added to toolbar multiple times, we need to maintain a list of 
8183         button information for each positions.
8184
8185 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
8186
8187         * ToolBar.cs: Some small stetic changes.
8188
8189 2007-01-16  Jackson Harper  <jackson@ximian.com>
8190
8191         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
8192         that allow us to have nested recalc = false blocks.
8193         - Add paste support for images in the RichTextBox
8194         * RichTextBox.cs: flush the text after the color is changed, so
8195         the change takes effect.
8196         - Use SuspendRecalc
8197         - Some extra debugging info
8198         * TextControl.cs: Tags no longer track their length, it is just
8199         computed from the next tags length, this makes things a little
8200         simpler and reduces places that we have to track length changes.
8201         - Refactored the linetag class a little so we could make it
8202         a base class for different kinds of tags
8203         - Created a image tag, a tag that can have a single image inserted
8204         into it
8205         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
8206         that we can call suspend multiple times.
8207         - Add some debugging methods
8208
8209 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8210
8211         * MdiClient.cs: Add ActivatePreviousChild for 
8212         mdi child window navigation.
8213         * Form.cs: Use MdiClient.ActivateNextChild/
8214         ActivatePreviousChild instead of Form.SelectNextControl
8215         to select the next/previous child since 
8216         SelectNextControl doesn't do it in the same order
8217         as mdi children should do it.
8218
8219 2007-01-16  Chris Toshok  <toshok@ximian.com>
8220
8221         * Control.cs: remove container_selected field.
8222
8223 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8224
8225         * MdiClient.cs: Update main form's ActiveChild when
8226         updating keyboard focus for the mdi child.
8227
8228 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
8229
8230         * Control.cs: PreferredSize fix.
8231
8232         * Form.cs: Add several 2.0 events, properties, and methods.
8233
8234 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
8235
8236         * Form.cs: Provide meaningful message when MdiParent is assigned a
8237         Form that is not an MdiContainer.
8238
8239 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8240
8241         * MdiClient.cs: Update main form's ActiveChild when
8242         activating a mdi child.
8243
8244 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8245
8246         * MdiWindowManager.cs: Fix NRE when merging menus and main form
8247         doesn't have a menu.
8248
8249         * Form.cs: Request NCRecalc after creating a mdi child window.
8250         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
8251         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
8252         
8253         * MdiClient.cs: Add new method SendFocusToActiveChild that either
8254         sends keyboard focus to the active child, or to the MdiClient
8255         if there are no child forms.
8256         
8257 2007-01-15  Chris Toshok  <toshok@ximian.com>
8258
8259         * ListView.cs: drop the *Internal overrides, just do our work in
8260         ItemControl's WndProc instead.
8261
8262         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
8263         of the various controls, and forward the events properly (in the
8264         same manner as MS) from the textbox to the UpDown.  Also the
8265         ActiveControl of the UpDownBase gets set properly now.  Finally,
8266         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
8267
8268         * NumericUpDown.cs: set Text in the ctor.
8269
8270         * DomainUpDown.cs: call UpdateEditText in the ctor.
8271         
8272         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
8273         so even a Selectable = false textbox can be focused if you click
8274         in it.  Go figure.
8275
8276         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
8277         just add their handling in their respective WndProc's.  Also add
8278         an explicit FocusInternal method that doesn't consult CanFocus
8279         before calling Select(this).
8280
8281         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
8282         do our work in WndProc instead.
8283
8284         * TabControl.cs: same.
8285
8286         * ComboBox.cs: same.
8287
8288 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
8289
8290         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
8291         Fixes #80006.
8292
8293 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8294
8295         * ListViewItem.cs:
8296         * ThemeWin32Classic.cs: Don't draw the item text outside
8297         item bounds in Details view, as well as use trimming.
8298         Fixes bug #80376.
8299
8300 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
8301
8302         * Form.cs: Implement Form.ShowIcon.
8303         
8304         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
8305         null, which when combined with the DlgModalFrame window style removes
8306         the icon from the title bar.
8307
8308 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
8309
8310         * Control.cs: Call OnMouseClick after OnClick. (2.0)
8311
8312 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
8313
8314         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
8315         menu when mdi child windows theres a menu, uses insert to get icon
8316         at first position. Partially fix #80006.
8317
8318 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
8319
8320         * Clipboard.cs: Implement 2.0 methods.
8321
8322 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
8323
8324         * Menu.cs: Implement Insert method of MenuItemCollection class
8325         to fix MenuMerge.
8326
8327 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8328
8329         * ListView.cs: Implement 2.0 FindItemWithText method.
8330
8331 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
8332
8333         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
8334         to calculate menu bar size. Fixes #80290.
8335
8336 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
8337
8338         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
8339
8340 2007-01-11  Chris Toshok  <toshok@ximian.com>
8341
8342         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
8343         initial form.
8344
8345 2007-01-11  Chris Toshok  <toshok@ximian.com>
8346
8347         * LinkLabel.cs: make sure to call base.Select in our Select method
8348         if it turns out we're going to be selected (i.e. if we have a link
8349         that is going to receive focus).  That way our container's
8350         ActiveControl is updated properly.
8351
8352 2007-01-11  Chris Toshok  <toshok@ximian.com>
8353
8354         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
8355         they have 1 or more links.  this fixes the crash gert reported.
8356
8357 2007-01-11  Andreia Gaita  <avidigal@novell.com>
8358
8359         * ContainerControl.cs: Remove ContainerSelected flag, not needed
8360         anymore.
8361
8362         * Control.cs (Controls.Add): Check if control to be added to the collection
8363         is a top level control, and throw an ArgumentException if it is.
8364         Remove ContainerSelectedFlag, not needed anymore.
8365
8366         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
8367         top most control doesn't activate the form. This fixes a problem in the
8368         MessageBox, where the default button wouldn't get focus because the form
8369         was activated before being Loaded - when the Owner is set, SetTopMost is
8370         called, and it would activate it.
8371
8372 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
8373
8374         * Button.cs: When clicked and setting the parent form's DialogResult,
8375         use FindForm instead of Parent, since parent could be a container
8376         control and not the Form.  Fixes bug #80495.
8377
8378 2007-01-10  Chris Toshok  <toshok@ximian.com>
8379
8380         * Form.cs: move the call to SendControlFocus into the same
8381         is_loaded check.
8382
8383 2007-01-10  Chris Toshok  <toshok@ximian.com>
8384
8385         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
8386         It breaks in the face of the new ActiveControl stuff, and should
8387         be unnecessary.
8388
8389         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
8390         activecontrol's focus if it's not already set, after we set
8391         ActiveControl, but before we call OnActivated.  Re-fixes #79667
8392         after the previous focus/active control fixes regressed it.
8393
8394         * Control.cs: reindent some code.
8395         
8396 2007-01-10  Chris Toshok  <toshok@ximian.com>
8397
8398         * Splitter.cs: clearing some outstanding changes from my tree.
8399         Replace all accesses (not writes) to the internal dock_style field
8400         with the Dock property.
8401
8402 2007-01-10  Chris Toshok  <toshok@ximian.com>
8403
8404         * Control.cs: make FireEnter, FireLeave, FireValidating, and
8405         FireValidated virtual.
8406
8407         * Form.cs: override and don't chain up calls to FireEnter and
8408         FireLeave.
8409
8410 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8411
8412         * ListView.cs: Add more text padding space when using
8413         auto resize for columns (the previous value didn't work fine).
8414
8415         * ThemeWin32Classic.cs: Update text position inside columns,
8416         to match the appeareance of .Net.
8417
8418         * ColumnHeader.cs: When using auto resize, only the Width should
8419         depend on the sub items, not the Height. Also, set width after
8420         auto resizing (the value of Width should never remain as -1 or -2).
8421
8422 2007-01-10  Chris Toshok  <toshok@ximian.com>
8423
8424         * Application.cs: fix compilation errors when debug is enabled.
8425
8426 2007-01-10  Chris Toshok  <toshok@ximian.com>
8427
8428         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
8429         add some nice ascii art pictures and explanation of the process).
8430         (GetMostDeeplyNestedActiveControl): new utility function we need
8431         because our ActiveControl can refer to a child container with its
8432         own ActiveControl.
8433
8434         * Form.cs (OnActivated): remove the call to SelectActiveControl
8435         from here, since you can override this method and not chain up,
8436         and winforms still sets the active control.
8437         (OnCreateControl): also remove the unnecessary SelectActiveControl
8438         call from here.
8439         (WndProc): it's actually called from the WM_ACTIVATE block, just
8440         before calling OnActivated.
8441
8442         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
8443         inside the else.  the ActiveControl setter will end up setting
8444         focus on @control.  This keeps us from setting it again (and
8445         generating an extra LostFocus/GotFocus pair).
8446         (Select (bool, bool)): reindent.
8447
8448 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
8449
8450         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
8451         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
8452         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
8453         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
8454         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
8455         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
8456         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
8457         ToolStripTextBox.cs: Another wave of corcompare work.
8458
8459 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8460
8461         * ColumnHeader.cs: Implement 2.0 AutoResize method using
8462         the Width property.
8463
8464         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
8465         methods by callling Column.AutoResize method on columns.
8466
8467 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
8468
8469         * Control.cs: Provide proper implementations of PreferredSize
8470         and GetPreferredSize (2.0).
8471
8472 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
8473
8474         * Form.cs: Remove one character (!) to make my previous OnClosing
8475         stuff work for modal windows like MessageBox.
8476
8477 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8478
8479         * ListView.cs:
8480         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
8481         ListView.Columns to get the last displayed column. Fixes #80452.
8482
8483 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
8484
8485         * Label.cs, LinkLabel.cs: Source code identation fixes.
8486
8487 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
8488
8489         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
8490         we dont need to invalidate only borders because when we invalidate four
8491         border lines the invalidate's generates a complete redraw of button, 
8492         because it now invalidate a complete rect some other redraws operations
8493         are fixed. Fixes #80196.
8494         
8495         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
8496         Remove ToolBarInvalidateEntireButton as it is not used.
8497
8498 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
8499         
8500         * Form.cs: Make sure that both OnClosing and OnFormClosing are
8501         called for 2.0 profile.
8502         * CloseReason.cs: Make class internal for 1.1.
8503
8504 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
8505
8506         * ToolStripManager.cs: Implement FindToolStrip functionality.
8507         * ToolStrip.cs: Register and unregister with ToolStripManager.
8508
8509 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
8510
8511         * Control.cs: This was messy.  2.0 moves much of ControlCollection
8512         to ArrangedElementCollection.  Implemented this with as few #if's as 
8513         possible (which is still too many).
8514
8515 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
8516
8517         * Control.cs: Implement SizeFromClientSize() [2.0].
8518
8519 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
8520
8521         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
8522         use Theme.BorderSize to calculate area instead of static value 1, 
8523         by the way use new BorderStaticSize instead     Border3DSize when 
8524         border_static is true. Fixes #79537.
8525         
8526         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
8527         
8528         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
8529         it is not needed.
8530
8531 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
8532
8533         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
8534
8535 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
8536
8537         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
8538         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
8539         
8540         * Hwnd.cs: 
8541         - border_static field added, it will used to define when a control 
8542         theres 3D border but it must be static (thin).
8543         - In GetWindowRectangle use Theme.BorderSize to calculate area 
8544         instead of static value 1, by the way use new BorderStaticSize instead
8545         Border3DSize when border_static is true.
8546
8547         * XplatUIX11.cs, XplatUIOSX.cs: 
8548         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
8549         
8550         * Theme.cs: BorderStaticSize field added.
8551
8552 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
8553
8554         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
8555
8556 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
8557
8558         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
8559         mimic same behavior than win32 that set border only in CreateParams,
8560         it fix problems under CreateParams overrides. Fix #79442 and partial
8561         fix #79537.
8562         
8563         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
8564         of thi control you must call recreate handle. 
8565         
8566         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
8567         need to do anything as RecreateHangle will take care about borders.
8568
8569 2007-01-05  Mike Kestner  <mkestner@novell.com>
8570
8571         * ListView.cs: hack to eliminate Lost/Got focus notifications on
8572         cycles between the ItemControl and parent.  Fixes #80388.
8573
8574 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
8575
8576         * Control.cs: Lazy init layout engine. Do not directly use 
8577         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
8578
8579 2007-01-05  Chris Toshok  <toshok@ximian.com>
8580
8581         * DataGrid.cs: don't forceably rebind columns in SetDataSource
8582         unless our list manager has changed (i.e. unless we have reason to
8583         believe our columns have changed).  Fixes #80422.
8584         
8585         also, disable the call do BindColumns in
8586         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
8587         1.1 the event isn't raised in response to a column addition on a
8588         table.)
8589
8590 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
8591
8592         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
8593         that inheritors can not call it if they choose.  Fixes bug #80456.
8594
8595 2007-01-05  Andreia Gaita  <avidigal@novell.com>
8596
8597         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
8598         doesn't blow up with a null exception on marshalling.
8599         
8600 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
8601
8602         * Control.cs: Implement several 2.0 protected properties and methods.
8603         Ensure that all necessary events are being called when properties
8604         are set.
8605
8606 2007-01-05  Mike Kestner  <mkestner@novell.com>
8607
8608         * ListView.cs: implement PgUp/PgDn for Details view.  Also
8609         fixes First/LastVisibleIndex to use the item_control.ClientRect 
8610         instead of the parent control.  Fixes #80378.
8611
8612 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
8613
8614         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
8615           determine whether to use yard-pound or not (bug #78399).
8616
8617 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
8618
8619         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
8620         problems. So it is time to bring back the old popupbutton colors.
8621
8622 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8623
8624         * ColumnHeader.cs:
8625         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
8626         property by using the internal information of the
8627         columns order in ListView.
8628
8629 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
8630
8631         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
8632         Add 2.0 Tag properties.
8633
8634         * LinkArea.cs: Add 2.0 ToString method.
8635
8636 2007-01-03  Chris Toshok  <toshok@ximian.com>
8637
8638         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
8639         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
8640         when we're editing, which fixes #80047.
8641
8642 2007-01-03  Chris Toshok  <toshok@ximian.com>
8643
8644         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
8645         #80404.
8646
8647 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
8648
8649         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
8650         property and implementation.
8651
8652         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
8653         for MdiWindowListItem property.
8654
8655         * ToolStripDropDown.cs: Don't consider hidden menu items while
8656         laying out the menu.
8657
8658 2007-01-03  Andreia Gaita  <avidigal@novell.com>
8659
8660         * SendKeys.cs: window handle is not needed in win32, so just
8661         get the active window for X after parsing keys and don't use
8662         it when building the message; it is passed by parameter to the 
8663         Xplat method and used there to build the message instead. Also,
8664         wait for events to be processed on SendWait, as opposed to Send,
8665         which doesn't wait :) Playing with threads and Send() completely 
8666         hangs on ms.net, only SendWait() works.
8667         
8668         XplatUIX11.cs
8669         X11Display.cs: Check for valid window handle.
8670
8671 2007-01-03  Jackson Harper  <jackson@ximian.com>
8672
8673         * TextControl.cs: Need to prevent wrap calculations when replacing
8674         text (this was there before i removed it accidently).
8675         - Don't update the cursor during the positioning, just set it to
8676         selection_start at the end of the operaion.
8677
8678 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8679
8680         * Control.cs:
8681         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
8682         
8683 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8684
8685         * MonthCalendar.cs: Added Click and DoubleClick events again,
8686         but this time they only hide Control's Click and DoubleClick.
8687         
8688 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
8689
8690         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
8691         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
8692
8693 2007-01-02  Jackson Harper  <jackson@ximian.com>
8694
8695         * TextBoxBase.cs: We move the caret with the split now, so we
8696         don't need to explicitly move the caret after splitting.  This
8697         fixes the caret bumping down an extra line on Enter.
8698
8699 2007-01-02  Miguel de Icaza  <miguel@novell.com>
8700
8701         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
8702         2.72). 
8703
8704         * ScrollableControl.cs: Add Scroll event.
8705
8706 2007-01-02  Mike Kestner  <mkestner@novell.com>
8707
8708         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
8709         to fix all hdr height padding codepaths.  Fixes #80207.
8710
8711 2007-01-02  Chris Toshok  <toshok@ximian.com>
8712
8713         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
8714         setting it to the Control defaults anyway, and it being after the
8715         Dock set was screwing up layout.
8716         (set_Dock): don't short circuit out of setting base.Dock.  Also,
8717         no need to call UpdateStatusBar here, as it'll be re-layed out if
8718         it needs to be.
8719
8720 2007-01-02  Mike Kestner  <mkestner@novell.com>
8721
8722         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
8723         to header height for width == -1. Fixes the rest of #80207.
8724
8725 2007-01-02  Mike Kestner  <mkestner@novell.com>
8726
8727         * ListView.cs: rework the mouse event forwarding everaldo added
8728         to translate the coordinates to the parent control not
8729         raise the parent events until after we've done our work. Hover
8730         needs more work, in the case where HoverSelection is on, because
8731         the item control receives more than one MouseHover per Enter
8732         event, so we need to ensure only the "first" hover gets forwarded.
8733         Opening a minor bug for that.
8734
8735 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
8736
8737         * CheckedListBox.cs: Fixed SelectionMode to match MS.
8738         * ListControl.cs: Implemented AllowSelection property. Removed extra
8739         tabs.
8740         * ListBox.cs: Implemented AllowSelection property.
8741
8742 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8743
8744         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
8745         SelectedItem, it prevent for errors when you must disable item
8746         before perform click. Fixes #80409.
8747
8748 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8749
8750         * MenuAPI.cs: Prevent second level and beyond submenus to close
8751         until first level when move out side of popup.
8752         
8753 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8754
8755         * MenuAPI.cs:
8756         - Down submenu positin in three pixels.
8757         - Closes sub menu when mouse leaves from menu. Fixes #80402.
8758
8759 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8760
8761         * ThemeWin32Classic.cs:
8762         - Fix popup menu size adding one pixel on the top.
8763         - Down menu item border from two to one to mimic Win32.
8764         - Some source identation fixes. 
8765
8766 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
8767
8768         * ThemeWin32Classic.cs: Use float numbers to calculate size and
8769         position of menu arrows, it fix wrong arrow size.
8770
8771 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
8772
8773         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
8774         instead of line, it simplify draw operation and fix it using 3D
8775         borders to mimic Win32.
8776
8777 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
8778
8779         * StatusStrip.cs: Add implementation of the sizing grip.
8780
8781         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
8782         StatusStrip rendering.
8783
8784 2006-12-31  Chris Toshok  <toshok@ximian.com>
8785
8786         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
8787         override the layout style (anchor/dock) of the control.  assign to
8788         Dock instead.  Fixes bug #80416.
8789
8790         * ToolStrip.cs: same.
8791
8792 2006-12-31  Andreia Gaita  <avidigal@novell.com>
8793
8794         * ContainerControl.cs: Use ContainerSelected flag to check if 
8795         a Container is directly selected, or if Select is called on a 
8796         non-container. If a container is directly selected, focus events 
8797         should not be raised.
8798         Apply #80411 patch to throw exception on set_ActiveControl if 
8799         control is the same as the current one.
8800         
8801         * Control.cs: Use ContainerSelected flag (see above).
8802         Add invalidation check to raise event but not invalidate if 
8803         dimensions are 0.       
8804         Apply #80411 patch.
8805         
8806
8807 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
8808
8809         * MenuAPI.cs: After click, dont close popup menu when menu is
8810         ContextMenu. Fixes #80399.
8811
8812 2006-12-30  Chris Toshok  <toshok@ximian.com>
8813
8814         * ContainerControl.cs: make sure we throw the exception if the
8815         container control doesn't contain the control we're setting
8816         ActiveControl to.
8817
8818 2006-12-30  Chris Toshok  <toshok@ximian.com>
8819
8820         * Control.cs (SetTopLevel): fix the exception raised by
8821         SetTopLevel for child controls.
8822         (set_Anchor): call UpdateDistances when setting the anchor type.
8823         This fixes bug #80336.
8824
8825 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
8826
8827         * Theme.cs: For now, revert back to 8pt font.
8828
8829 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
8830
8831         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
8832         Fixes #80395.
8833
8834 2006-12-29  Chris Toshok  <toshok@ximian.com>
8835
8836         * Control.cs: reorder the code in OnResize to give the same event
8837         ordering as MS.
8838
8839 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8840
8841         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
8842         TileHorizontally and TileVertically.
8843         
8844 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
8845
8846         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
8847         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
8848         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
8849         Corrected copyright and email adress.
8850
8851 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
8852
8853         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
8854         of Exception in FullPath property if no TreeView is associated with
8855         the TreeNode.
8856
8857 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
8858
8859         * Theme.cs: Marked default_font as private, and initialize it in ctor
8860         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
8861         on 2.0 profile.
8862         * ThemeGtk.cs: Removed default_font intialization.
8863         * ThemeWin32Classic.cs: Removed default_font initialization.
8864
8865 2006-12-28  Chris Toshok  <toshok@ximian.com>
8866
8867         * Control.cs: fix a couple of place where we were creating handles
8868         more aggressively than we should be.  Fixes ControlRefresh unit
8869         tests.
8870
8871 2006-12-28  Chris Toshok  <toshok@ximian.com>
8872
8873         * Control.cs: contrary to what the comment said, Control.Dock does
8874         not supercede Control.Anchor - the last one you assign to decides
8875         the layout behavior.  so we need to keep track of which was the
8876         last set.  Also, fix some of the affected property arguments in
8877         PerformLayout calls, and remove an redundant parent.PerformLayout
8878         call in OnResized.
8879
8880         Add a VisibleInternal property, which returns is_visible.  We
8881         can/should get rid of all the usage of this field elsewhere.
8882
8883 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8884         
8885         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
8886         control style, not DoubleBuffer. Added UseDoubleBuffering property
8887         that indicates whether doublebuffering is enabled and supported.
8888         (comment from and code based on Gert Driesen's patch in #80324).
8889         Fixes #80324.
8890
8891 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8892         
8893         * Control.cs: Fixed a NRE.
8894
8895 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8896
8897         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
8898         for 2.0.
8899
8900 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8901
8902         * Control.cs: Rewrote double buffering, now a seperate
8903         class handles all the buffering, no Graphics is disposed of
8904         until the painting is finished (earlier implementation 
8905         would crash if the control was resized in the OnPaint, 
8906         since it would cause the double buffer to be recreated
8907         and the old one disposed), a separate Graphics is 
8908         created for every paint (MS behaviour and anyways the state
8909         of the Graphics would have to be saved and restored otherwise)
8910         
8911         * XplatUIDriver.cs: 
8912         * XplatUIX11.cs:
8913         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
8914         so that we can get the graphics for the back buffer without
8915         having to create a new one and remove the offscreen_dc parameter
8916         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
8917         
8918 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8919
8920         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
8921         Also make virtual all the key-related methods.
8922
8923         * ListViewItem.cs: Make virtual the key related methods for
8924         ListViewSubItemCollection.
8925
8926 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8927
8928         * ListView.cs:
8929         * ListViewItem.cs:
8930         * ThemeWin32Classic.cs:
8931         * Theme.cs: Initial support for Tile view in ListView,
8932         as well as the implementation of the required bits for it (Item
8933         and Subitem).
8934
8935 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8936
8937         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
8938         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
8939         Provide useful exception messages.
8940
8941 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8942
8943         * TrackBar.cs: Remove a warning.
8944         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
8945         when used by DateTimePicker, fixes #80287. This also requires that 
8946         MonthCalendar implements it's own drawing for the yearly updown control,
8947         otherwise the Capture tracking would be too complicated. Removed the Click 
8948         and DoubleClick events (according to comments they were hiding the base class
8949         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
8950         raise these events, not that they cannot be raised. It is possible to raise 
8951         them by calling OnClick and OnDoubleClick). Added two internal fields in 
8952         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
8953         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
8954         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
8955         event, no longer needed.
8956         
8957 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8958
8959         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
8960         true if new value differs from current value.
8961
8962 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8963
8964         * Control.cs: ControlCollection.Count must be public. Fixed build of
8965         unit tests.
8966
8967 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8968
8969         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
8970
8971 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8972
8973         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
8974
8975 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
8976
8977         * Control.cs: Invalidates control including when Width and Height is 
8978         equal zero or is not visible, only Paint event must be care about 
8979         this. Fixes #79913.
8980
8981 2006-12-26  Chris Toshok  <toshok@ximian.com>
8982
8983         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
8984         more corcompare work.
8985
8986         * DataGridView.cs: fix compiler warning.
8987
8988         * ColumnHeader.cs: some corcompare work, and also take the
8989         opportunity to make the internal fields private.
8990
8991         * ListView.cs: fix the fallout from the above field change.
8992
8993 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
8994
8995         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
8996         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
8997         ToolStripTextBox.cs: Fixes to events and corcompare.
8998
8999 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
9000
9001         * ListView.cs: Call owner.OnMousexx event to propagate events from
9002         item to ListView. Fixes #80367.
9003
9004 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
9005
9006         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
9007         if value is less than one. ItemHeight should not be set to a value
9008         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
9009         Removed extra tabs.
9010
9011 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
9012
9013         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
9014         * ToolStripStatusLabel.cs: Add Spring for Moma.
9015
9016 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
9017
9018         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
9019         Fixed code formatting. Removed debug code.
9020         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
9021
9022 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
9023
9024         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
9025         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
9026         ArgumentOutOfRangeException if ColumnCount is negative. In 
9027         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
9028         less than 4 or higher than 32768.
9029         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
9030         Fixed FormatProvider to return CurrentCulture unless explicitly set.
9031         Fixed IsFormatProviderDefault to return true if FormatProvider has
9032         not been explicitly set.
9033
9034 2006-12-25  Chris Toshok  <toshok@ximian.com>
9035
9036         * Application.cs: add a couple of 2.0 events.
9037
9038 2006-12-25  Chris Toshok  <toshok@ximian.com>
9039
9040         * Control.cs: fix compiler warning.
9041
9042         * AxHost.cs: corcompare fixes.
9043
9044         * ApplicationContext.cs: corcompare fixes.
9045
9046 2006-12-25  Chris Toshok  <toshok@ximian.com>
9047
9048         * Control.cs: only update dist_right/dist_bottom if the
9049         width/height is > 0.  this fixes anchored controls being resized
9050         smaller until they disappear and then resized larger again.
9051
9052 2006-12-25  Chris Toshok  <toshok@ximian.com>
9053
9054         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
9055         since they're nothing more than X/Left and Y/Top, respectively.
9056
9057         Also, move back to a per-control Bitmap/Graphics for
9058         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
9059         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
9060         Height.
9061
9062 2006-12-25  Miguel de Icaza  <miguel@novell.com>
9063
9064         * MessageBox.cs: Implemented overload that takes a new "bool
9065         displayHelpButton" by adding a new internal field "show_help".
9066         When clicked this will raise the HelpRequested on the owner or the
9067         main form. 
9068
9069         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
9070         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
9071
9072         * ListView.cs: Add support ColumnWidthChanged and
9073         ColumnWidthChanging. 
9074
9075         Add support for ColumnReordered event.
9076         (ReorderColumn): Add NET_2_0 specific support for cancelling the
9077         reorder.
9078
9079         Very nice codebase!
9080
9081         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
9082
9083         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
9084
9085 2006-12-24  Chris Toshok  <toshok@ximian.com>
9086
9087         * GridTablesFactory.cs: 2.0 corcompare work.
9088
9089         * ToolStripContainer.cs: add "override" to
9090         ContextMenuStripChanged, and remove the local event object.
9091
9092         * ToolStripDropDown.cs: same with a couple properties.
9093
9094         * ToolStripPanel.cs: same with AutoSizeChanged event.
9095
9096         * TextBoxBase.cs: add "override" to AutoSizeChanged.
9097
9098         * Form.cs: add the remaining 2.0 events, and do some corcompare
9099         attribute work.
9100
9101         * DateTimePicker.cs: add "new" to padding.
9102
9103         * ButtonBase.cs: use Control's use_compatible_text_rendering.
9104
9105         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
9106
9107         * DataGridView.cs: PaddingChanged is overridden.
9108
9109 2006-12-24  Chris Toshok  <toshok@ximian.com>
9110
9111         * Control.cs: corecompare work here too.
9112
9113         * DataGridViewElement.cs, DataGridView.cs,
9114         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
9115         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
9116         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
9117         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
9118         work.
9119
9120 2006-12-24  Miguel de Icaza  <miguel@novell.com>
9121
9122         * Control.cs: Switched the error message on the console for a
9123         todo.  A review of the code will have to cope with this anyways
9124         (since its a large feature, it is in our radar) and it was
9125         producing too much output when running PDN.
9126
9127         * ToolStripComboBox.cs: Set the text when the SelectedIndex
9128         changes.  Applications depend on this (PDN 2.72)
9129
9130 2006-12-23  Chris Toshok  <toshok@ximian.com>
9131
9132         * TableLayoutSettings.cs: finish up the corcompare work for this
9133         class.
9134
9135 2006-12-23  Chris Toshok  <toshok@ximian.com>
9136
9137         * Control.cs: make SetImplicitBounds internal, do some futzing
9138         with LayoutEngine so that it's available in 1.1, and remove the
9139         entire duplicated code mess from PerformLayout.  Use
9140         System.Windows.Forms.Layout.DefaultLayout instead.
9141
9142         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
9143
9144 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
9145
9146         * Form.cs: Add MainMenuStrip property.
9147
9148 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
9149
9150         * Control.cs: Add ContextMenuStrip property and implementation.
9151         Fix ContextMenu implementation to show menu centered on control when
9152         activated using the keyboard instead of showing at screen (0,0).
9153
9154         * ToolStripDropDown.cs: Fix needed overload of Show ().
9155
9156 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9157
9158         * Menu.cs: Name property added for 2.0 profile.
9159         
9160 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9161
9162         * Menu.cs: Update information about FindMenuItem, method to be
9163         implemented soon.
9164
9165 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9166
9167         * MenuAPI.cs: When deselect items deselect also selected subitems.
9168         
9169 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9170
9171         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
9172         FindSubItemByCoord to found itens that is not active, also an
9173         cheking added to FindSubItemByCoord to search for items only 
9174         in visible popup windows. Fixes #80274.
9175
9176 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
9177
9178         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
9179         internal property, it be care about change ExStyle. 
9180
9181 2006-12-22  Andreia Gaita  <avidigal@novell.com>
9182
9183         * ContainerControl.cs: set activeControl for parent forms up the 
9184         tree when the new activecontrol is a container.
9185         When validating the active control, if it is a container, also
9186         raise up the validation for it's active control. Fixes #80280
9187         
9188         * Control.cs: Add internal property flag and check to prevent
9189         Focus events from getting raised when Select() is called for
9190         a ContainerControl. There are still too many focus events being
9191         raised at the moment though.
9192         Cleaned up the code a bit.
9193
9194 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9195
9196         * Control.cs: Added all missing 2.0 events.and
9197         fixed a couple of corcompare issues.
9198         * TrackBar.cs: Implemented missing 2.0 bits.
9199         * MonthCalendar.cs, 
9200         * DateTimePicker.cs, 
9201         * MdiClient.cs: Fixed some corcompare issues.
9202
9203 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
9204
9205         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
9206         SplitterPanel.cs: corecompare work.
9207
9208 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
9209
9210         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
9211         Clean up warnings for BackgroundImageChanged and PaddingChanged
9212         events now that they are implemented in Control.cs.
9213
9214 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
9215
9216         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
9217         
9218         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
9219         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
9220         of TableLayoutPanel and supporting cast.
9221
9222 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9223
9224         * XplatUIWin32.cs: 
9225         - GrabWindow now confines the mouse pointer to the confine window.
9226         - Added Win32ClipCursor and Win32GetClipCursor.
9227
9228         * Control.cs: 
9229         - Added CaptureWithConfine to be able to capture and confine 
9230         mouse pointer.
9231         
9232         * InternalWindowManager.cs: 
9233         - Call CaptureWithConfine instead of Capture if we're an
9234         MdiChild (fixes #79982).
9235
9236 2006-12-21  Chris Toshok  <toshok@ximian.com>
9237
9238         * DataGrid.cs: guard against the initial state of selection, where
9239         selection_start == -1.  make sure we only select from index >= 0.
9240         Fixes bug #80291.
9241
9242 2006-12-21  Chris Toshok  <toshok@ximian.com>
9243
9244         * Control.cs: we don't need to be so draconian with
9245         UpdateDistances, and we thusly don't need to call it before
9246         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
9247
9248 2006-12-21  Daniel Nauck  <dna@mono-project.de>
9249
9250         * ComboBox.cs,
9251         TextBox.cs: Implemented AutoComplete properties.
9252
9253 2006-12-20  Chris Toshok  <toshok@ximian.com>
9254
9255         * DataGridView*.cs: some corecompare work.
9256
9257 2006-12-20  Jackson Harper  <jackson@ximian.com>
9258
9259         * XplatUIX11.cs: We need to hide the caret when deleting it,
9260         otherwise you get carets left lying around everywhere.
9261         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
9262         prevents getting some weird half drawn caret tracers when
9263         scrolling.
9264         * TextControl.cs: Attempt to reduce the number of times we need to
9265         recreate the caret.
9266
9267 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
9268
9269         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
9270
9271 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9272
9273         * DateTimePicker.cs:
9274         - Implemented missing 2.0 bits.
9275         - Changed some default values to match MS.
9276         
9277 2006-12-20  Jackson Harper  <jackson@ximian.com>
9278
9279         * TextBoxBase.cs: When changing the font across the document we
9280         can't recalculate after changing each line, since that will cahnge
9281         the line count.
9282         - PreferredHeight is a little different than i thought.
9283         - When backspacing, move the caret before we do the actual char
9284         delete, because when that delete crosses a wrap boundary the
9285         positional information will change.
9286
9287 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9288
9289         * Control.cs: Added some missing 2.0 bits: 
9290         BackgroundImageLayout, BackgroundImageLayoutChanged, 
9291         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
9292         add IBindableComponent and IDropTarget implementation.
9293         
9294         * MonthCalendar.cs: 
9295         - Added all missing 2.0 features:
9296         BackgroundImageLayout, RightToLeftLayout, 
9297         OnHandleDestroyed, RightToLeftLayoutChanged, 
9298         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
9299         PaddingChanged.
9300         - Rewrote all the BoldDate code, it was completely broken.
9301         - Fixed all the tests (the tests can now be re-enabled, the
9302         problems were not with the tests, but with the control, it was
9303         mostly broken).
9304         
9305         * DateTimePicker.cs: Changed the location where the 
9306         MonthCalendar is shown.
9307         
9308 2006-12-19  Chris Toshok  <toshok@ximian.com>
9309
9310         * DataGridView.cs: add IDropTarget implementation.
9311
9312         * ToolStripPanel.cs: add IDropTarget implementation.
9313
9314 2006-12-19  Jackson Harper  <jackson@ximian.com>
9315
9316         * TextControl.cs: soft now means something different than what it
9317         used to mean, we want to move the caret regardless of whether or
9318         not this break was soft (would we really have wanted the caret
9319         to not move with the break in the old context?)
9320         * TreeView.cs: Make sure we factor in the vert scrollbar when
9321         calculating the horizontal scrollbar's maximum.
9322
9323 2006-12-19  Andreia Gaita  <avidigal@novell.org>
9324
9325         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
9326         check for keywords in alternate casing, close bug #80049.
9327
9328 2006-12-19  Chris Toshok  <toshok@ximian.com>
9329
9330         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
9331         methods (which all do nothing).
9332
9333         * IDropTarget.cs: add the 4 missing methods.
9334
9335 2006-12-19  Chris Toshok  <toshok@ximian.com>
9336
9337         * TableLayoutRowStyleCollection.cs: corcompare work.
9338         
9339         * TableLayoutSettings.cs: same.
9340
9341         * TableLayoutStyle.cs: same.
9342
9343         * TableLayoutColumnStyleCollection.cs: same.
9344
9345 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
9346
9347         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
9348         TableLayoutPanel I've had in my local tree for way too long.
9349
9350 2006-12-19  Miguel de Icaza  <miguel@novell.com>
9351
9352         * TableLayoutSettings.cs: Finish the public API (still needs all
9353         the logic to update on changes). 
9354
9355         * TableLayoutPanelCellPosition.cs: new file.
9356         
9357         * TableLayoutRowStyleCollection.cs,
9358         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
9359         TableLayoutSettings.cs: Track the final 2.0 table api.
9360
9361 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9362
9363         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
9364         and Image List 2.0 members for ColummnHeader.
9365         * ListView.cs: Add key-related 2.0 methods for
9366         ColumnHeaderCollection.
9367
9368 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
9369
9370         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
9371         ArgumentNullException if items argument is null. Ignore null item in
9372         arrays. Removed extra tabs.
9373
9374 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
9375
9376         * MonthCalendar.cs: Fixed InvalidCastException.
9377
9378 2006-12-19  Jackson Harper  <jackson@ximian.com>
9379
9380         * TextControl.cs: Don't increment the position here.
9381         - When calculating char positions only add in the line break size
9382         for hard line breaks.
9383
9384 2006-12-19  Andreia Gaita  <avidigal@novell.org>
9385
9386         * SendKeys.cs: Changed some things to match ms.net behaviour
9387         when parsing shifted capital letters.
9388         
9389         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
9390         Add window handle as parameter to SendInput. X11 needs the 
9391         window handle, and the handle being passed      to it in the keys 
9392         queue is the active control handle (which windows needs), not 
9393         the window handle.
9394         
9395         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
9396         to support SendKeys on X.       
9397         
9398         * X11Keyboard: Implement helper method to lookup a linux keycode
9399         given the virtual keycode. Added table of keycode-2-virtualkey
9400         values to support this.
9401
9402 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9403
9404         * ListView.cs: Add support for SelectedIndexCollection
9405         and SelectedItemCollection 2.0 methods. Implement support
9406         for ImageKey too.
9407         * ListViewItem.cs: Add support for ListViewSubItemCollection
9408         2.0 methods. Also, fix an incorrect behavior of AddRange method
9409         (it shouldn't call Clear).
9410         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
9411
9412 2006-12-19  Jackson Harper  <jackson@ximian.com>
9413
9414         * RichTextBox.cs: 
9415         * TextBoxBase.cs: New args for FormatText
9416         * TextControl.cs: Rewrote the main drawing method, this version
9417         feels a little easier to understand and debug to me.  Hopefully it
9418         does to others also
9419         - Fix FormatText to OR in the new formating values.  Added
9420         FormatSpecified param, basically this works in the same way as
9421         BoundsSpecified in Control.
9422         - Set the caret properties when the caret is positioned.
9423         - When wrapping text make sure that we calculate the width of the
9424         last character
9425         - when calculating alignments we might have wrapped down to the
9426         next line, so don't search for an individual tag, search for the
9427         end of the line
9428         - We need to invalidate the selection area when we replace the
9429         selection.
9430         
9431 2006-12-19  Daniel Nauck  <dna@mono-project.de>
9432
9433         * Application.cs: add Restart () 2.0 support
9434
9435 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9436
9437         * MenuItem.cs: Invalidate menu item rectangle after change Enable
9438         property. Fixes #80268.
9439         
9440 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9441
9442         * MenuAPI.cs: Dont trigger select event when closes top menu
9443         item. Fixes #80270.
9444
9445 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9446
9447         * MenuAPI.cs: When you click on menuitem only trigger onselect
9448         event for top menu itens. Fixes #80271.
9449         
9450 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9451
9452         * MdiWindowManager.cs: Make IconicBounds depend on
9453         the bottom of MdiClient, not the top (fixes #80267)
9454         
9455 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9456
9457         * MdiClient.cs: Added missing 2.0 attribute
9458
9459 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9460
9461         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
9462         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
9463
9464 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9465
9466         * MenuAPI.cs: Fix click when menuitem is not popup,
9467         this regression was caused by last commit (#80272).
9468
9469 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
9470
9471         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
9472         fire click event or close menu. Fixes #80272.
9473
9474 2006-12-17  Daniel Nauck  <dna@mono-project.de>
9475
9476         * ListViewHitTestInfo.cs: add
9477
9478 2006-12-17  Daniel Nauck  <dna@mono-project.de>
9479
9480         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
9481         * FlatButtonAppearance.cs: add
9482         * DockingAttribute.cs: add
9483
9484 2006-12-17  Chris Toshok  <toshok@ximian.com>
9485
9486         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
9487         and rebind our columns when it does - this way, if you make
9488         changes to the DataTable (or set the Table attribute on a DataView
9489         after setting it as the DataGrid's DataSource, the changes are
9490         made visible.)  Fixes bug #80107.
9491
9492 2006-12-17  Daniel Nauck  <dna@mono-project.de>
9493
9494         * ListViewGroup.cs: add internal Location property for layouting.
9495         * Theme.cs: add abstract ListViewGroupHeight function.
9496         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
9497
9498 2006-12-16  Andreia Gaita  <avidigal@novell.com>
9499
9500         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
9501         Added reset of selected index to 0 when adding first tab page.
9502         Fixes #80264
9503         
9504         * NumericUpDown.cs: Fix NET_2_0 check
9505
9506 2006-12-16  Daniel Nauck  <dna@mono-project.de>
9507
9508         * ListViewGroup.cs: fixed DefaultValueAttribute value
9509
9510 2006-12-16  Daniel Nauck  <dna@mono-project.de>
9511
9512         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
9513
9514 2006-12-15  Miguel de Icaza  <miguel@novell.com>
9515
9516         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
9517         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
9518         ScrollableControl.cs: Add a handful of methods that are
9519         overwritten in 2.0 
9520
9521 2006-12-15  Chris Toshok  <toshok@ximian.com>
9522
9523         * XplatUIWin32.cs: initial implementation of the Reversible
9524         drawing functions.  there are some problems.  DrawReversibleFrame
9525         doesn't seem to work at all for Dashed FrameStyle, and in the
9526         Thick case there are drawing errors at the corners (we probably
9527         need to bind Rectangle instead of doing moveto/lineto's.)
9528
9529 2006-12-16  Andreia Gaita  <avidigal@novell.com>
9530         
9531         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
9532         to send blocks of key messages. Send accumulates keys to send with Flush, 
9533         while SendWait sends all keys immediately.
9534                 
9535         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
9536         XplatUIX11.cs,  XplatUIX11-new.cs:
9537         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
9538         to Win32 SendInput.
9539         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
9540         
9541         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
9542         testing for ms.net on this class is very tricky, as the tests run too fast 
9543         to allow the hook to release, essentially freezing the keyboard and the 
9544         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
9545         category :p
9546
9547 2006-12-16  Daniel Nauck  <dna@mono-project.de>
9548
9549         * Padding.cs: fixed serialization compability to MS ("_var" field names),
9550                         added missing attributes.
9551  
9552 2006-12-15  Daniel Nauck  <dna@mono-project.de>
9553
9554         * ListViewGroup.cs: Added missing attributes.
9555         * ListViewGroupCollection.cs: Added missing attributes.
9556
9557 2006-12-15  Daniel Nauck  <dna@mono-project.de>
9558
9559         * ListViewItem.cs: fixed ListViewSubItem text property.
9560
9561 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9562         
9563         * Control.cs: Added missing 2.0 attributes
9564         
9565 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9566         
9567         * MdiClient.cs: Added missing 2.0 attribute.
9568         * MonthCalendar.cs: Added some missing 2.0 attributes 
9569         and properties.
9570         
9571 2006-12-15  Daniel Nauck  <dna@mono-project.de>
9572
9573         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
9574
9575 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
9576
9577         * MainMenu.cs: Add the new 2.0 constructor to help out people
9578         using the MainMenu in VS2005.
9579
9580 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9581         
9582         * MdiChildContext.cs: Removed it, no longer used.
9583         * MdiClient.cs: Added missing 2.0 attributes.
9584         
9585 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9586         
9587         * InternalWindowManager.cs: Fix a NullRef with previous 
9588         changes for toolwindows.
9589         
9590 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9591
9592         * Control.cs: 
9593         - Added AfterTopMostControl to allow for certain controls 
9594         to always stay on top when normal controls are brought to 
9595         front.
9596         
9597         * XplatUIWin32.cs: 
9598         - (DrawInversibleRectangle): Get window rectangle from Win32 
9599         in stead of from control, since Win32 doesn't calculate
9600         screen coords correctly from control's Location if it 
9601         have docked siblings.
9602         
9603         * MdiWindowManager.cs:
9604         - Correct the control menu popup location when clicked on
9605         the maximized form icon. (fixes #80223.1)
9606         - Don't show moving rectangle if mouse hasn't moved from
9607         the original clicked point.
9608         - Removed FormGotFocus handler (not used).
9609         - Calculate the control buttons location from the main
9610         window's size and not client size (fixes #79770).
9611         - Form is now closed when the form icon is double-clicked
9612         (fixes #79775). 
9613         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
9614         
9615         * InternalWindowManager.cs:
9616         - Moved some MDI-only methods to MdiWindowManager.
9617         - Removed unused properties and methods.
9618         - Unified method naming for methods handling wm messages.
9619         - Moved all message handling to seperate methods for
9620         each message.
9621         
9622         * ThemeWin32Classic.cs:
9623         - DrawManagedWindowDecorations now draws the title bar 
9624         with a gradient brush.
9625         - Add a CPDrawButtonInternal that allows us to specify
9626         light, normal and dark colors for the buttons (control 
9627         buttons for MDI children were drawn with the same light
9628         color as the background, therefore loosing the 3D effect).
9629         
9630         * SizeGrip.cs:
9631         - Add a CapturedControl property that is used to 
9632         determine the control to resize (defaults to parent). 
9633         Needed for MdiClient, since its SizeGrip's parent is
9634         MdiClient, but the control to resize is the main form.
9635         
9636         * MdiClient.cs:
9637         - Set SizeGrip's CapturedControl to the main form in order
9638         to resize the main form and not the MdiClient.
9639         - Override AfterTopMostControl to leave the scrollbars 
9640         always on top.
9641
9642 2006-12-15  Daniel Nauck  <dna@mono-project.de>
9643
9644         * ListView.cs: fixed ListViewItemCollection AddRange and
9645                         implemented ListViewItemCollection AddRange 2.0 support.
9646
9647 2006-12-15  Daniel Nauck  <dna@mono-project.de>
9648
9649         * ListViewGroup.cs: Add.
9650         * ListViewGroupCollection.cs: Add
9651         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
9652         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
9653                                 stub for ImageKey 2.0 support.
9654
9655 2006-12-14  Mike Kestner  <mkestner@novell.com>
9656
9657         * ListView.cs: add text padding to the autocalculation for columns
9658         of width -2.  Fixes #80207.
9659  
9660 2006-12-14  Mike Kestner  <mkestner@novell.com>
9661
9662         * ListView.cs: add some index guarding for partial row navigation 
9663         logic.  Fixes #80250.
9664
9665 2006-12-14  Mike Kestner  <mkestner@novell.com>
9666
9667         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
9668         are added or inserted to the collection.  Fixes #81099.
9669
9670 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
9671
9672         * MenuAPI.cs: Closes menu when right click out side of popup
9673         it fix problem in ContextMenu and MainMenu. Fixes #80252.
9674
9675 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9676
9677         * ListViewItem.cs: Fix dumb error.
9678
9679         * ListView.cs: Add Find and ContainsKey methods in 
9680         ListViewItemCollection, and also return true for IsReadOnly
9681         and IsFixedSize (changes for 2.0). 
9682
9683 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
9684
9685         * Control.cs: Allow Region to be set to null.
9686
9687 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9688
9689         * MdiWindowManager.cs: Remove unused (commented out) code.
9690         * Form.cs: When the MdiChild is maximized, the form needs 
9691         WM_NCMOUSELEAVE, so request it.
9692         * InternalWindowManager.cs: 
9693         - Added tooltips to control buttons.
9694         - Removed duplicated control button handling code.
9695         - Removed unused (commented out) code.
9696         
9697 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
9698
9699         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
9700         was used because we must set cursor without trigger ChangeCursor event
9701         and without change Cursor control property. Fixes #79963.
9702
9703 2006-12-12  Andreia Gaita  <avidigal@novell.com>
9704         
9705         * Control.cs: Check if Region setter value is null, and ignore
9706
9707 2006-12-12  Jackson Harper  <jackson@ximian.com>
9708
9709         * TextControl.cs: We were almost always drawing one more line then
9710         needed, since the GetLineByPixel will return the last line found
9711         at that pixel. In most cases though, we were invalidating up to
9712         the junction between two lines.
9713         - Improve debug code.
9714
9715 2006-12-12  Chris Toshok  <toshok@ximian.com>
9716
9717         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
9718         and FillReversibleRectangle.
9719
9720         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
9721         and FillReversibleRectangle.
9722
9723         * XplatUIWin32.cs: add stubs which do nothing for
9724         DrawReversibleFrame, DrawReversibleLine, and
9725         FillReversibleRectangle.
9726
9727         * XplatUIOSX.cs: add stubs which raise NIE for
9728         DrawReversibleFrame, DrawReversibleLine, and
9729         FillReversibleRectangle.
9730
9731         * XplatUIX11.cs: add working implementation for
9732         DrawReversibleFrame, DrawReversibleLine, and
9733         FillReversibleRectangle.
9734         
9735         * ControlPaint.cs: implement DrawReversibleFrame,
9736         DrawReversibleLine, and FillReversibleRectangle, by calling into
9737         the appropriate XplatUI method.
9738
9739 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9740
9741         * Form.cs: Make MdiClient have the focus even if it's
9742         not selectable, since it should receive WM_KEY* and WM_MOUSE 
9743         messages. Fixes #79907.
9744         
9745 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9746
9747         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
9748         queried after the window is created.
9749         
9750         * XplatUIX11.cs: Added SendParentNotify to implement 
9751         WM_PARENTNOTIFY logic. Fixes #79965.
9752         
9753         * Control.cs: Added MakeParam.
9754         
9755 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9756
9757         * MdiClient.cs: Resume Layout before setting window
9758         states (fixes #80201).
9759
9760 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9761
9762         * MenuAPI.cs: Deselect a menu item after performing
9763         the click (fixes #80197).
9764
9765 2006-12-11  Jackson Harper  <jackson@ximian.com>
9766
9767         * TextBoxBase.cs: We need to cap this value, since Maximum -
9768         ViewPortHeight can be less than zero.
9769         - Only do selection with the left mouse button.
9770         * TextBox.cs: Don't tell the world that we have a context menu.
9771         * Control.cs: New method so that we can control whether or not the
9772         context menu is visible outside MWF.
9773
9774 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
9775
9776         * ToolBarButton.cs: Fix text positon. 
9777
9778 2006-12-11  Miguel de Icaza  <miguel@novell.com>
9779
9780         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
9781
9782         * Control.cs (DoubleBuffered): Add implementation.
9783
9784         * Application.cs (OpenForms): Add.
9785
9786 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
9787
9788         * Form.cs: Use opacity instead of Opactiy to determine if we need
9789         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
9790
9791 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
9792
9793         * Control.cs: Fix NRE if Control.Site was set to null.
9794
9795 2006-12-11  Chris Toshok  <toshok@ximian.com>
9796
9797         * Control.cs: ControlCollection.Remove should return if the arg is
9798         null, and ControlCollection.SetChildIndex should raise a ANE.
9799
9800 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
9801
9802         * Control.cs: Verify value set for Dock property. Code formatting
9803         updates.
9804
9805 2006-12-11  Jackson Harper  <jackson@ximian.com>
9806
9807         * TextControl.cs: Draw the caret and the selection when a flag is
9808         set on the owner.
9809         * TextBoxBase.cs: We want to draw the caret and the selection for
9810         TextBox but not for TextBoxBase.
9811         - If the window is resized and scrolling is no longer needed (the
9812         whole doc is visible) set the scroll position to zero.
9813         - The default SelectWord (the one TextBox uses) should move the
9814         caret to the end of the word.
9815         - SelectAll moves the caret to the end of the selection.
9816         * TextBox.cs: We don't selectall on focus, we just do it when the
9817         control is created.
9818         
9819 2006-12-11  Mike Kestner  <mkestner@novell.com>
9820
9821         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
9822
9823 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9824
9825         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
9826         2.0 support.
9827         * ListViewItem.cs: Add Name 2.0 property.
9828
9829 2006-12-11  Andreia Gaita  <avidigal@novell.com>
9830
9831         * TabControl.cs: Set visibility on selected or default tab 
9832         when tabcontrol handle is created, so that it's contents
9833         actually show up (duh). Fixes #80193
9834         Don't redraw the control if there is no handle created, as
9835         the selected index might be completely invalid. Added some tests
9836         to check for this.
9837
9838 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
9839
9840         * ToolBar.cs: Uses maximun width and height of all buttons as 
9841         button rectangle when ButtonSize specified, it looks strange but
9842         is what happens in Win32. Fixes #80189.
9843
9844 2006-12-11  Jackson Harper  <jackson@ximian.com>
9845
9846         * TextControl.cs: Need to track undo levels ourself, since
9847         compound actions will mess them up.
9848
9849 2006-12-10  Andreia Gaita  <avidigal@novell.com>
9850
9851         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
9852         SelectedIndex value is changed (even if it's not valid).
9853         Reset SelectedIndex to 0 when the handle is created and if
9854         the current index is invalid.
9855         Fixes SelectdeIndex unit tests and #80128
9856
9857 2006-12-08  Chris Toshok  <toshok@ximian.com>
9858
9859         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
9860         calls EndEdit, it needs to be called before we set current_cell to
9861         its new value.  Otherwise, we end up committing the value in the
9862         textbox to the new cell as well.  Fixes bug #80160.
9863
9864 2006-12-08  Chris Toshok  <toshok@ximian.com>
9865
9866         * Form.cs (set_CancelButton): if the button's DialogResult is
9867         None, set it to Cancel.  Fixes bug 80180.
9868
9869 2006-12-08  Jackson Harper  <jackson@ximian.com>
9870
9871         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
9872         to watch ourselves when setting the canvas size and setting the
9873         scrollbar values.
9874
9875 2006-12-08  Chris Toshok  <toshok@ximian.com>
9876
9877         * DataGrid.cs: comment out the two MakeTransparent calls for the
9878         time being so people using trunk (and not 1.2.2) on windows can
9879         actually use the datagrid.  This deals with bug #80151.
9880
9881 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
9882
9883         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
9884         Graphics.DrawImage (image, int, int, int, int) overload instead
9885         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
9886         the dpi difference and was blurring images it drew.
9887         [Fixes bug #79960]
9888
9889 2006-12-08  Chris Toshok  <toshok@ximian.com>
9890
9891         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
9892         rowcnt is 0 (such as with an empty datasource), and make sure we
9893         initialize not_usedarea.Y to cells.Y, so we don't draw over the
9894         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
9895
9896 2006-12-08  Chris Toshok  <toshok@ximian.com>
9897
9898         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
9899         grid.
9900
9901 2006-12-08  Chris Toshok  <toshok@ximian.com>
9902
9903         [ Fixes bug #80167 ]
9904         
9905         * ThemeWin32Classic.cs: don't draw the image if the button's flat
9906         style is FlatStyle.System.
9907
9908         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
9909         ButtonBase.flat_style private, and switch uses of it to the public
9910         property.
9911         
9912 2006-12-08  Chris Toshok  <toshok@ximian.com>
9913
9914         [ Fixes bug #80121 ]
9915         
9916         * ThemeWin32Classic.cs: center the caption text in the datagrid
9917         when we draw it.
9918
9919         * DataGrid.cs: lessen the amount we add to the caption height from
9920         6 to 2.  6 was making it huge.
9921
9922 2006-12-08  Andreia Gaita  <avidigal@novell.com>
9923
9924         * UpDownBase: Handle MouseWheel call directly instead of capturing
9925         the inner textbox's OnMouseWheel. Fixes #80166
9926
9927 2006-12-08  Jackson Harper  <jackson@ximian.com>
9928
9929         * TextControl.cs: We need to invalidate the textbox when we empty
9930         it (how had this not been discovered before?)
9931
9932 2006-12-08  Jackson Harper  <jackson@ximian.com>
9933
9934         * TextBoxBase.cs: Reworked the mouse down code so I could get it
9935         to behave like MS, we now ignore the eventargs.Click and just
9936         track state ourself, which we were already doing anyways.
9937         - Constrain the double click handler to the double click size.
9938         
9939 2006-12-08  Chris Toshok  <toshok@ximian.com>
9940
9941         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
9942         direction if that scrollbar isn't shown.  fixes bug #80158.
9943
9944 2006-12-08  Andreia Gaita  <avidigal@novell.com>
9945
9946         * NumericUpDown.cs: Update value on getter. Fixes #79950
9947
9948 2006-12-08  Chris Toshok  <toshok@ximian.com>
9949
9950         * MenuItem.cs: add back in the event cloning code.  I didn't know
9951         how to do it in the face of the EventHandlerList work i'd done
9952         last week.  Fixes bug #80183.
9953
9954 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
9955
9956         * Control.cs: Add an invalidate to the BackgroundImage setter.
9957         [Fixes 80184]
9958
9959 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
9960
9961         * ToolStrip*: Add some small properties reported by MoMA, fix event
9962         firing and default properties based off of unit tests, and add some
9963         attributes based off of the class status page.
9964
9965 2006-12-07  Jackson Harper  <jackson@ximian.com>
9966
9967         * TextBoxBase.cs: Take HideSelection into account when determining
9968         whether or not to show the selection.
9969         * RichTextBox.cs: After inserting the RTF into the document move
9970         the cursor to the beginning of the document.
9971
9972 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
9973
9974         * Control.cs: Remove static ArrayList "controls" which maintained
9975         a reference to every control created.
9976         * Application.cs: Create a static FormCollection to maintain a reference
9977         to every form created.  Use it in places that formerly enumerated through
9978         the controls one looking for forms.
9979         * Form.cs: Add and remove self from above FormCollection.
9980
9981 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
9982
9983         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
9984           not libgdk (though it makes me wonder why I didn't have any
9985           problems)
9986
9987 2006-12-07  Chris Toshok  <toshok@ximian.com>
9988
9989         [ you had to know this was coming after that last commit...]
9990         
9991         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
9992         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
9993         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
9994         XCopyArea).
9995
9996 2006-12-07  Chris Toshok  <toshok@ximian.com>
9997
9998         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
9999         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
10000         all the behavior we need for double buffering.
10001
10002         * XplatUIDriver.cs: implement the 3 double buffer methods using a
10003         client side Bitmap, just like the old Control-based double buffer
10004         code did.  The methods are virtual, so each XplatUI driver
10005         subclass can replace the implementation to use a faster, platform
10006         specific approach.
10007
10008         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
10009         double buffer code, and clean things up a bit in the process.
10010
10011 2006-12-06  Chris Toshok  <toshok@ximian.com>
10012
10013         * Control.cs: reindent WndProc.
10014
10015 2006-12-06  Chris Toshok  <toshok@ximian.com>
10016
10017         [ I wanna be like BenM when I grow up ]
10018         
10019         * Hwnd.cs: create a single static Graphics object on the static
10020         Bitmap we create.  use this for our text measurements.
10021
10022         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
10023         This was causing us to allocate a backbuffer for every control,
10024         even when it wasn't flagged as double buffered.  Instead use the
10025         single graphics instance.  This might have implications for
10026         multithreaded applications.  If we run into problems we can switch
10027         to creating 1 Graphics per control, on the static Hwnd bitmap.
10028
10029         this change nets us a 7M savings in private dirty mappings when
10030         running FormsTest.exe.
10031
10032 2006-12-06  Chris Toshok  <toshok@ximian.com>
10033
10034         * ListView.cs: the BackgroundImage override is just to set
10035         attributes.  chain up to base.BackgroundImage.
10036
10037         * RichTextBox.cs: same.
10038
10039         * ToolBar.cs: same, but we need to also redraw the toolbar when it
10040         changes, so instead a handler for BackgroundImageChanged.
10041         
10042         * Control.cs: make background_image private.
10043
10044 2006-12-06  Chris Toshok  <toshok@ximian.com>
10045
10046         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
10047         sure we even need this assignment, but roll with it for now.
10048
10049         * Control.cs: make the cursor field private.
10050
10051 2006-12-06  Chris Toshok  <toshok@ximian.com>
10052
10053         * Form.cs: we don't need to explicitly set ImeMode to
10054         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
10055         behavior in the face of ImeMode.Inherit.
10056
10057         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
10058         change the ctor's assignment to use ImeMode instead of ime_mode.
10059
10060         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
10061         ImeModeInherit.  Only check for the parent's imemode (and return
10062         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
10063         This fixes the button unit test, which sets both ImeMode and
10064         DefaultImeMode to ImeMode.Disable.
10065
10066         also make the ime_mode field private.
10067
10068 2006-12-06  Chris Toshok  <toshok@ximian.com>
10069
10070         * Control.cs: make control_style private.
10071
10072         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
10073         setting the styles to true, then setting them to false instead of
10074         reverting to their previous values.
10075
10076         also, call SetStyle on the scrollbars instead of using
10077         control_style directly.
10078
10079 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
10080
10081         * FormCollection.cs: Implement. [2.0]
10082
10083 2006-12-06  Chris Toshok  <toshok@ximian.com>
10084
10085         * Control.cs: make tab_stop private.
10086
10087         * Label.cs: set TabStop, not tab_stop.  reformat some event
10088         add/remove methods to make them more compact.
10089
10090 2006-12-06  Chris Toshok  <toshok@ximian.com>
10091
10092         * RadioButton.cs: fix TabStop handling.
10093
10094 2006-12-06  Chris Toshok  <toshok@ximian.com>
10095
10096         * TextBox.cs: remove the explicit assignments to has_focus.
10097         Control does that.
10098
10099         * ButtonBase.cs: remove the assignment to has_focus.  Control will
10100         manage that.
10101         
10102 2006-12-06  Chris Toshok  <toshok@ximian.com>
10103
10104         * ButtonBase.cs: remove all uses of is_enabled from this code.
10105         it's always true when any of the code containing the checks is
10106         executed.
10107
10108 2006-12-06  Chris Toshok  <toshok@ximian.com>
10109
10110         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
10111         with different semantics (some are present in both 1.1 and 2.0
10112         profiles) so that we match MS's behavior in our unit tests.
10113
10114 2006-12-06  Jackson Harper  <jackson@ximian.com>
10115
10116         * TextControl.cs: Make this operation undoable.
10117         * TextBoxBase.cs: Factor the border width into the preferred
10118         height.
10119         - implement Modified as per the spec.
10120
10121 2006-12-06  Chris Toshok  <toshok@ximian.com>
10122
10123         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
10124
10125 2006-12-06  Chris Toshok  <toshok@ximian.com>
10126
10127         * Control.cs: make right_to_left and context_menu fields private.
10128
10129 2006-12-06  Chris Toshok  <toshok@ximian.com>
10130
10131         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
10132         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
10133         Control.child_controls private.  switch all uses over to
10134         Control.Controls.
10135
10136 2006-12-06  Chris Toshok  <toshok@ximian.com>
10137
10138         * System.Windows.Forms/GroupBox.cs,
10139         System.Windows.Forms/AccessibleObject.cs,
10140         System.Windows.Forms/ErrorProvider.cs,
10141         System.Windows.Forms/Control.cs,
10142         System.Windows.Forms/UpDownBase.cs,
10143         System.Windows.Forms/ScrollBar.cs,
10144         System.Windows.Forms/DateTimePicker.cs,
10145         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
10146         System.Windows.Forms/ToolTip.cs,
10147         System.Windows.Forms/RadioButton.cs,
10148         System.Windows.Forms/LinkLabel.cs,
10149         System.Windows.Forms/Splitter.cs,
10150         System.Windows.Forms/TextBoxBase.cs,
10151         System.Windows.Forms/ToolStripTextBox.cs,
10152         System.Windows.Forms/ContainerControl.cs,
10153         System.Windows.Forms/ThemeWin32Classic.cs,
10154         System.Windows.Forms/SizeGrip.cs,
10155         System.Windows.Forms/ToolStripDropDown.cs,
10156         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
10157         private.  switch all uses over to Control.Parent.
10158
10159 2006-12-06  Chris Toshok  <toshok@ximian.com>
10160
10161         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
10162         Control does this before calling emitting these events.
10163
10164         * TabControl.cs: same.
10165
10166         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
10167         Control.client_rect.
10168
10169         * ButtonBase.cs: use the ClientSize property instead of the
10170         client_size field.
10171
10172         * ScrollableControl.cs: same.
10173
10174         * Control.cs: another pass at making properties private.  also,
10175         move the initialization of tab_stop to the ctor.
10176
10177 2006-12-05  Andreia Gaita <avidigal@novell.com>
10178
10179         * TabControl.cs: Let the selected index be set freely if the 
10180         control handle is not yet created.
10181
10182 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
10183
10184         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
10185         internal until I can rewrite DefaultLayout.
10186         * ToolStrip.cs: Fix build error and some general cleaning.
10187         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
10188         Fix build errors caused by making some of Control's fields private.
10189
10190 2006-12-05  Jackson Harper  <jackson@ximian.com>
10191
10192         * TextControl.cs: Redo Insert a little so that it use IndexOf
10193         instead of Split, this prevents it from messing up on things like
10194         \n\n\n. Also more effecient since the split array doesn't need to
10195         be created.
10196         * TextBoxBase.cs: AppendText doesnt handle multiline and non
10197         multiline text differently, this is the first of many fixes that
10198         will make multiline/non-multiline the same thing as far as the
10199         TextBoxBase is concerned.
10200         - Don't split the text and insert lines, this can lose some line
10201         endings (like is the last line a soft or hard break). Instead use
10202         the new Insert.
10203         - Fix an off by one when combining all the lines in the Text
10204         getter.
10205         - Remove separate multiline handling from the Text getter/setter.
10206
10207 2006-12-05  Chris Toshok  <toshok@ximian.com>
10208
10209         * ButtonBase.cs: a few changes:
10210
10211         - don't reinitialize internal Control fields in the ctor when they
10212         have the same values as Control sets them.
10213
10214         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
10215         this before calling those methods.
10216
10217         - we don't need to call Refresh for anything.  use Invalidate
10218         instead.
10219
10220         - OnEnabledChanged doesn't need to redraw at all - Control.cs
10221         calls Refresh in its OnEnabledChanged.
10222         
10223         - several of the events we were registered for in the ctor to
10224         redraw ourselves already include calls to Invalidate in the
10225         property setters that raise the events.  remove the extra
10226         invalidation.
10227
10228         - reformat a switch statement that was 83274658 columns wide.
10229         
10230 2006-12-05  Mike Kestner  <mkestner@novell.com>
10231
10232         * ComboBox.cs: fix a unit test regression from a TextBox
10233         SelectionLength return of -1 when there's no selection.  
10234
10235 2006-12-05  Chris Toshok  <toshok@ximian.com>
10236
10237         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
10238         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
10239         cleaning up some of the internal Control fields being used by
10240         subclasses.
10241
10242 2006-12-05  Mike Kestner  <mkestner@novell.com>
10243
10244         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
10245         listbox after AddImplicit calls since it defaults to hidden. Add a 
10246         hack to preserve requested heights across DropDownStyle changes.
10247
10248 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
10249
10250         * PropertyGrid.cs: Hide FindFirstItem method from public API.
10251
10252 2006-12-05  Chris Toshok  <toshok@ximian.com>
10253
10254         * DataGridView.cs: fix compiler warnings.
10255
10256         * PrintControllerWithStatusDialog.cs: same.
10257
10258         * ToolBar.cs: same.
10259
10260         * FolderBrowserDialog.cs: same.
10261
10262         * Splitter.cs: same.
10263
10264         * DataGridViewComboBoxCell.cs: same.
10265
10266         * XplatUIWin32.cs: same.
10267
10268         * PictureBox.cs: same.
10269
10270         * Win32DnD.cs: same.
10271
10272         * PageSetupDialog.cs: same.
10273
10274         * FileDialog.cs: same.
10275
10276         * PrintDialog.cs: same.
10277
10278         * DataGridTextBoxColumn.cs: same.
10279
10280         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
10281
10282 2006-12-05  Chris Toshok  <toshok@ximian.com>
10283
10284         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
10285         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
10286         System.ComponentModel.EventHandlerList work.
10287
10288 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
10289
10290         * DrawTreeNodeEventArgs.cs: Added.
10291
10292 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10293         
10294         * InternalWindowManager.cs: Remove an unused field.
10295         
10296 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10297
10298         * InternalWindowManager.cs:
10299         - Save the point where the title bar is clicked.
10300         
10301         * MdiWindowManager.cs:
10302         - Only allow moving of the window as long as the 
10303         clicked point on the title bar does not get out of
10304         MdiClient's rectangle. Fixes #79982.
10305         
10306         * MdiClient.cs:
10307         - Added Horizontal/VerticalScrollbarVisible.
10308         - Simplified the scrollbar sizing algorithm.
10309         - Cache the difference in scrolled value in
10310         H/VBarValueChanged and move the calculation out
10311         of the for loop.
10312
10313 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10314
10315         * Control.cs: Make the Console.WriteLine in WndProc 
10316         write more info.
10317
10318 2006-12-05  Chris Toshok  <toshok@ximian.com>
10319
10320         * ToolStripManager.cs, ToolStripButton.cs,
10321         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
10322         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
10323         ToolStripSplitButton.cs, ToolStripSeparator.cs,
10324         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
10325         ToolStripProgressBar.cs, ToolStripContainer.cs,
10326         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
10327         to using System.ComponentModel.EventHandlerList.
10328
10329 2006-12-04  Chris Toshok  <toshok@ximian.com>
10330
10331         * LinkLabel.cs: fix up compiler warnings.
10332
10333         * TableLayoutSettings.cs: same.
10334
10335         * TreeView.cs: same.
10336
10337         * ToolBar.cs: same.
10338
10339         * TabControl.cs: same.
10340
10341         * RichTextBox.cs: same.
10342
10343         * ListViewItem.cs: same.
10344
10345         * PropertyGrid.cs: same.
10346
10347         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
10348
10349         * ToolTip.cs same.
10350
10351         * TextRenderer.cs: fix up compiler warnings.
10352
10353         * Label.cs: same.
10354
10355         * Form.cs: corcompare fixes.
10356
10357         * PictureBox.cs: fix up compiler warnings.
10358
10359         * ImageListStreamer.cs: same.
10360
10361         * TrackBar.cs: corcompare fix.
10362
10363         * Control.cs: fix up compiler warnings.
10364
10365         * SplitterPanel.cs: same.
10366
10367         * NumericTextBox.cs: same.
10368
10369         * ImageList.cs: same.
10370
10371         * StatusStrip.cs: same.
10372
10373         * ProgressBar.cs: corcompare fix.
10374
10375         * ToolStripButton.cs: fix up compiler warnings.
10376
10377         * ToolStripStatusLabel.cs: same.
10378
10379         * ToolStripSplitButton.cs: same.
10380
10381         * ToolStripSeparator.cs: same.
10382
10383         * ToolStripProgressBar.cs: same.
10384
10385         * ToolStripDropDownMenu.cs: same
10386
10387         * ToolStripDropDown.cs: same.
10388
10389         * ToolStripDropDownButton.cs: same.
10390
10391         * ToolStrip.cs: same.
10392
10393         * ToolStripControlHost.cs: same.
10394
10395         * ToolStripContentPanel.cs: same.
10396
10397         * ToolStripDropDown.cs: same.
10398
10399         * ToolStripContainer.cs: same.
10400
10401         * ToolStripPanel.cs: same, and add "new" where we need it to work
10402         with the new ArrangedElementCollection.
10403
10404         * ToolStripItemCollection.cs: add "new" where we need it to work
10405         with the new ArrangedElementCollection.
10406
10407 2006-12-04  Andreia Gaita <avidigal@novell.com>
10408
10409         * TabControl.cs: Fix default tab selection to after TabControl
10410         gets focus and not before. Fixes #80128
10411
10412 2006-12-04  Chris Toshok  <toshok@ximian.com>
10413
10414         * DataGridTableStyle.cs: remove the gross calling of
10415         datagrid.Refresh from here.  It's a broken idea and it doesn't
10416         work anyway.
10417
10418         * DataGrid.cs: instead, just register/unregister from the
10419         DataGridTableStyle events in CurrentTableStyle.  we play it
10420         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
10421         even though some would most likely not require it.  Fixes bug
10422         #80115 (and one portion of #80117 as a side effect).
10423
10424 2006-12-04  Chris Toshok  <toshok@ximian.com>
10425
10426         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
10427         so the textbox (if any) goes away.  Fixes bug #80117.
10428
10429 2006-12-04  Chris Toshok  <toshok@ximian.com>
10430
10431         * DataGridColumnStyle.cs: set the column's readonly property
10432         initially based on the property descriptor's IsReadOnly.  Fixes
10433         bug #80044.
10434
10435 2006-12-04  Chris Toshok  <toshok@ximian.com>
10436
10437         * ComboBox.cs: wrap the dropdown style changing work in
10438         SuspendLayout/ResumeLayout.  Fixes bug #79968.
10439
10440 2006-12-04  Jackson Harper  <jackson@ximian.com>
10441
10442         * TextBoxBase.cs: Fix off by one, since these are one-based.
10443         * TextBox.cs: Select all the text when we get focus.  The TextBox
10444         does this but the RTB does not.
10445
10446 2006-12-04  Chris Toshok  <toshok@ximian.com>
10447
10448         * DataGridTextBoxColumn.cs: remove some spew.
10449
10450         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
10451         but some part of me is saying "it shouldn't be here.."  At any
10452         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
10453         setting the value.
10454
10455 2006-12-04  Chris Toshok  <toshok@ximian.com>
10456
10457         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
10458         to reassign the propertydescriptor.
10459
10460 2006-12-04  Jackson Harper  <jackson@ximian.com>
10461
10462         * TextBoxBase.cs:
10463         * TextControl.cs: Remove some unused variables.  Maybe this will
10464         patch things up between mike and I.
10465         - don't split lines less then one char wide, if the viewport is
10466         that small text won't be visible anyways.
10467         
10468 2006-12-04  Jackson Harper  <jackson@ximian.com>
10469
10470         * TextBoxBase.cs: Default selection length is -1, need to do some
10471         more testing on windows to see when this is used for the property.
10472         - Redid the Lines [] property to that we properly remove soft line
10473         breaks
10474         - added support for preserving carriage returns
10475         -  CanUndo is not a variable like 'is undo enabled' it just returns
10476         true if there is undo operations available.
10477         - AppendText doesn't need to grab the last tag itself anymore,
10478         this happens automatically when we move the cursor.
10479         * TextControl.cs: Add CompoundActions to the undo class. This
10480         allows combining the other operations into one big option.  ie a
10481         paste will combine { delete old, insert new, move cursor }
10482         - Add InsertString undo operation
10483         - New method for deleting multiline text
10484         - Add carriage returns to lines. So we can preserve carriage
10485         returns when text is 'roundtripped'
10486
10487 2006-12-04  Chris Toshok  <toshok@ximian.com>
10488
10489         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
10490         minimum 0.  Fixes the scrollbar exception in bug #80136.
10491
10492 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10493
10494         * MdiClient.cs: 
10495         * MdiWindowManager: Removed unused fields and methods.
10496         
10497 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10498         
10499         * StatusBar.cs: Update all panels when a AutoSize=Contents
10500         panel needs updating.
10501         
10502         * StatusBarPanel.cs: Remove twidth and only use initialize.
10503         Fixes #80031.
10504                 
10505 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10506
10507         * Form.cs: When a form's MdiParent is set add it directly
10508         on top of the z-order in stead of relying on MdiClient's
10509         ActivateChild to do it. Fixes #80135.
10510         
10511         * MdiClient.cs: 
10512         - Remove original_order, mdi_child_list is already doing
10513         the same thing.
10514         - Create mdi_child_list on construction in
10515         stead of first use (avoids a few null checks).
10516
10517         * MenuItem.cs: Use an already existing list of mdi children
10518         to get the correct order of children and remove the other
10519         redundant list.
10520
10521 2006-12-04  Chris Toshok  <toshok@ximian.com>
10522
10523         * PropertyGridView.cs: cached_splitter_location is only used in
10524         !DOUBLEBUFFER code.
10525
10526         * PropertyGrid.cs: implement the ComComponentNameChanged event
10527         using Events, hoping that would fix the warning.  Looks like a
10528         compiler bug instead (#80144).
10529
10530         * PropertyManager.cs: remove unused method.
10531
10532 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
10533
10534         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
10535         include parentesis to fix expression evaluation. Fixes #79634.
10536
10537 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
10538         
10539         * MenuAPI.cs:
10540         - Changes to fix behavior in Menu control, some reported in #80097
10541         and other detected during behavior refactory like a select event
10542         problems.
10543         - Remove unneded "if's" conditions.
10544         - Created an internal to flag when popup is active in control, we need 
10545         it because in .NET you can have menu active but without popup active
10546         when you active menu using popup without visible items.
10547         - Mimic win32 behavior for Select and Popup events.  
10548         - Dont open popup menu when you dont have visible subitems.
10549         - Do nothing when click on disabled menu item.
10550         - Some small changes to follow the coding style guidelines.
10551         - Unselect menu only when another control gives focus. Fixes #80097.
10552         - Remove unused code.
10553         
10554         * MenuItem.cs: internal VisibleItems method to check if menu
10555         theres visible subitems, it will be usefull to fix some 
10556         behavior in Menu control.
10557         
10558 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
10559         
10560         * Timer.cs: Tag property for 2.0 profile.
10561         
10562 2006-12-01  Chris Toshok  <toshok@ximian.com>
10563
10564         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
10565         
10566         * Win32DnD.cs: comment out some unused fields.
10567
10568         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
10569         some unused properties/methods.
10570
10571         * XplatUIX11.cs: fix MousePosition so we override the base class's
10572         property instead of conflicting with it.
10573
10574         * PictureBox.cs: comment out some unused fields
10575
10576         * OSXStructs.cs: make some struct fields public.
10577
10578         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
10579         MousePosition so we override the base class's property instead of
10580         conflicting with it.
10581
10582         * X11Dnd.cs: comment out some unused fields
10583
10584         * X11DesktopColors.cs: fix some struct field visibility to quiet
10585         the compiler.
10586
10587         * X11Dnd.cs: remove some debug code.
10588
10589         * ThemeClearlooks.cs: comment out unused field.
10590
10591         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
10592
10593         * ThemeGtk.cs: comment out some unused pinvokes.
10594
10595         * Timer.cs: remove some unused fields.
10596
10597         * ThemeClearlooks.cs: comment out unused field.
10598
10599         * UpDownBase.cs: comment out unused field.
10600
10601         * DataObject.cs: comment out unused field.
10602
10603         * DataGridBoolColumn.cs: reomve unused field.
10604
10605         * DataGrid.cs: remove unused field.
10606
10607         * Cursor.cs: remove old ToBitmap code.
10608
10609         * ControlPaint.cs: remove unused method.
10610
10611         * ScrollBar.cs: remove unused fields.
10612
10613         * ComboBox.cs: remove unused field, and chain up to
10614         AccessibleObject ctor.
10615
10616         * ListBox.cs: remove unused field.
10617
10618         * ButtonBase.cs: wrap a couple fields in NET_2_0.
10619
10620         * GridEntry.cs: remove unused fields.
10621
10622         * Binding.cs: remove unused fields.
10623
10624         * AxHost.cs: remove unused method.
10625
10626         * ContainerControl.cs: remove unused field.
10627
10628         * ScrollableControl.cs: remove unused fields.
10629
10630 2006-12-01  Chris Toshok  <toshok@ximian.com>
10631
10632         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
10633         the Where/WhereString stuff.  it's easy enough to CWL
10634         Environment.StackTrace.
10635
10636         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
10637         unused private fields.
10638
10639 2006-12-01  Jackson Harper  <jackson@ximian.com>
10640
10641         * TextControl.cs: Do not update the view while inserting multiline
10642         text. If we update the view we might wrap lines, before entering
10643         the new lines, which causes the new line insertion calculations to
10644         be totally fubared.
10645         - Remove an old TODO
10646         - Make debug output a little nicer
10647         
10648 2006-12-01  Chris Toshok  <toshok@ximian.com>
10649
10650         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
10651
10652 2006-12-01  Chris Toshok  <toshok@ximian.com>
10653
10654         [ fix the majority of the CS0108 warnings we've been suppressing ]
10655         
10656         * TreeView.cs: mark BackgroundImageChanged as 'new'.
10657
10658         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
10659         to "LayoutToolBar" to quiet mcs.
10660         
10661         * TabControl.cs: mark our ControlCollection class as 'new'.
10662
10663         * TextBoxBase.cs: mark some events as 'new'.
10664
10665         * Splitter.cs: TabStop is 'new'.
10666
10667         * ControlBindingsCollection.cs: mark a few methods as new since
10668         they change the visibility from protected to public.
10669
10670         * RadioButton.cs: DoubleClick -> base class, and remove unused
10671         HaveDoubleClick.
10672
10673         * MonthCalendar.cs: ImeMode property -> base class, and mark many
10674         events as new.
10675
10676         * NumericUpDown.cs: TextChanged -> base class.
10677
10678         * CheckedListBox.cs: mark our ObjectCollection class as new to
10679         quiet mcs.
10680
10681         * FolderBrowserDialog.cs: make HelpRequest event new and have it
10682         muck with the base class.
10683
10684         * StatusBar.cs: fix some mcs warnings about Update being the same
10685         name as a base class method.
10686
10687         * RichTextBox.cs: mark some events as new, and make them do things
10688         to the base class impl.
10689
10690         * UserControl.cs: mark TextChanged as new, and have it manipulate
10691         base.TextChanged.
10692
10693         * UpDownBase.cs: mark some things new.
10694
10695         * CheckBox.cs: mark DoubleClick "new", and add some text about
10696         what we need to look at.
10697
10698         * Panel.cs: make the events "new", and manipulate the base
10699         version.  these are just here for attributes.
10700
10701         * AccessibleObject.cs: make owner private.
10702
10703         * Control.cs: deal with AccessibleObject.owner being private.
10704         cache our own copy if we need it.
10705
10706         * Button.cs: add "new" to the DoubleClickEvent.
10707
10708         * ListBox.cs: no need to track our own has_focus here.  let
10709         Control.has_focus do it for us.  Also some other work to clear up
10710         warnings about not overriding base class methods of the same name.
10711         
10712         * ComboBox.cs: clear up some warnings about not override base
10713         class methods of the same name.
10714
10715 2006-12-01  Chris Toshok  <toshok@ximian.com>
10716
10717         * Form.cs: flag a few things as "new" to quiet some of the mcs
10718         warnings.
10719
10720         * AxHost.cs: same.
10721
10722         * PrintPreviewDialog.cs: same.
10723
10724         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
10725         now DGV isn't so horrible on the class status page.  also, move
10726         all events to using System.ComponentModel.EventHandlerList.  my
10727         wrists hurt.
10728
10729 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10730
10731         * MdiWindowManager.cs:
10732         - Set form to active mdi child if shown,
10733         and update the active mdi child to the next 
10734         remaining child in the z-order if the form is hidden.
10735
10736         * Form.cs: 
10737         - Track if the form has been visible and if its 
10738         visibility is beeing changed, so that the MdiClient
10739         can properly decide the ActiveMdiChild. The MdiClient 
10740         cannot track this since the form can change visibility 
10741         before MdiClient is created.
10742
10743         * MdiClient.cs:
10744         - Don't activate anything of the parent form is changing
10745         its visibility.
10746         - Rework ActiveMdiChild to only return visible mdi 
10747         children and take into account several other corner 
10748         cases.
10749
10750 2006-12-01  Chris Toshok  <toshok@ximian.com>
10751
10752         * IBindableComponent.cs: new 2.0 interface.
10753
10754 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
10755
10756         * DataGrid.cs: Font for caption area is bold by default.
10757
10758 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
10759
10760         * Menu.cs: Tag property for 2.0.
10761         
10762 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
10763
10764         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
10765         
10766 2006-12-01  Chris Toshok  <toshok@ximian.com>
10767
10768         * TreeView.cs: doh, the Begin* events should be
10769         TreeViewCancelEventHandler.
10770
10771 2006-12-01  Chris Toshok  <toshok@ximian.com>
10772
10773         * Form.cs: Form.ControlCollection already stores off the
10774         form_owner field.  don't access the base class's internal "owner"
10775         field.
10776
10777         * Control.cs: make all the fields in Control.ControlCollection
10778         private.  there's no need for any internal fields here.
10779
10780 2006-12-01  Chris Toshok  <toshok@ximian.com>
10781
10782         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
10783         OnHandleCreated.  Fixes bug #80109.
10784
10785 2006-12-01  Chris Toshok  <toshok@ximian.com>
10786
10787         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
10788         SplitContainer.cs, Control.cs, StatusStrip.cs,
10789         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
10790         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
10791         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
10792         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
10793         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
10794         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
10795         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
10796         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
10797         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
10798         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
10799
10800         do most of the work to convert our code over to use
10801         System.ComponentModel.Component.Events for
10802         adding/removing/dispatching events.
10803
10804
10805 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
10806
10807         * DataGridView.cs: Fix an ArgumentNullException reported 
10808         twice today in IRC.
10809
10810 2006-11-30  Mike Kestner  <mkestner@novell.com>
10811
10812         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
10813         grabbed listbox.  Fixes #80036 and #80101.
10814
10815 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
10816
10817         * Message.cs: Changed ToString() to match MS.
10818         
10819 2006-11-30  Jackson Harper  <jackson@ximian.com>
10820
10821         * TextBoxBase.cs: You can still change the selected text on a read
10822         only textbox.
10823         * TextControl.cs: Lower magic number for wrap calculations. This
10824         lets text get closer to the right (far) edge.
10825
10826 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
10827
10828         * Control.cs: Tweak 2.0 layout properties.
10829         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
10830         * TextRenderer.cs: Add a new overload.
10831         * ToolStrip*: Huge amount of changes and new features.
10832
10833 2006-11-30  Mike Kestner  <mkestner@novell.com>
10834
10835         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
10836         scroll range correct.  Fixes #79994.
10837
10838 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
10839
10840         * MdiWindowManager.cs: Update main form's text when
10841         a form is closed. (fixes #80038)
10842         
10843 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
10844
10845         * ToolBar.cs:
10846         - Fix an regression in ButtonSize.
10847         - Get ImeMode default value change to "Disable".
10848         - Get ShowTooltips default value change to true, default value is 
10849         "false" but after make a test in .NET we get "true" result as default.
10850         
10851 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
10852
10853         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
10854
10855 2006-11-29  Chris Toshok  <toshok@ximian.com>
10856
10857         * XplatUIWin32.cs (GetWindowTransparency): check return value of
10858         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
10859         SetWindowTransparency hasn't been called.
10860
10861 2006-11-29  Chris Toshok  <toshok@ximian.com>
10862
10863         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
10864         if it's supported.
10865         (set_AllowTransparency): reorder things a little so that the
10866         WS_EX_LAYERED style is removed properly.
10867
10868 2006-11-29  Chris Toshok  <toshok@ximian.com>
10869
10870         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
10871         
10872         * Form.cs: only call the XplatUI transparency method (get/set) if
10873         SupportsTransparency says it's supported. Otherwise fallback to
10874         doing nothing (in the set case) or returning the instance field we
10875         cache (in the get case).
10876
10877         * XplatUIStructs.cs: add TransparencySupport flag enum.
10878         
10879         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
10880         change to SupportsTransparency.
10881
10882         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
10883         TransparencySupport.None from SupportsTransparency.
10884
10885         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
10886         TransparencySupport.Set from SupportsTransparency.
10887
10888         * XplatUIWin32.cs: implement GetWindowTransparency calling
10889         GetLayeredWindowAttributes, and implement SupportsTransparency by
10890         checking whether or not both
10891         GetWindowTransparency/SetWindowTransparency are available
10892         entrypoints.  We need to do this since SetWindowTransparency is
10893         available as of win2k, but GetWindowTransparency requires winxp.
10894         yay win32 api.
10895
10896         * XplatUI.cs: Add GetWindowTransparency, and change
10897         SupportsTransparency to allow for either/both Get/Set.
10898
10899 2006-11-29  Chris Toshok  <toshok@ximian.com>
10900
10901         * DataGrid.cs: keep from going into an infinite loop redrawing a
10902         datagrid that has no datasource.  Fixes bug #80033.
10903
10904 2006-11-29  Chris Toshok  <toshok@ximian.com>
10905
10906         * MenuItem.cs: fix the NRE when we assign text (and therefore call
10907         Invalidate) before the mainmenu has been assigned to a control.
10908
10909 2006-11-29  Chris Toshok  <toshok@ximian.com>
10910
10911         * DataGrid.cs: detect when we should be double the double click
10912         row/column autosize stuff, although that codepath has yet to be
10913         written.  part of the work for bug #79891.
10914
10915 2006-11-29  Chris Toshok  <toshok@ximian.com>
10916
10917         * Binding.cs (SetControl): fix unit test.
10918
10919 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10920
10921         * PageSetupDialog.cs: Validate the margins and set them in
10922         PageSettings. 
10923         * NumericTextBox.cs: New class to mimic the behavior of the
10924         textboxes used in the printing dialogs.
10925
10926 2006-11-29  Andreia Gaita  <avidigal@novell.com>
10927         
10928         * Form.cs: Revert previous change (remove call UpdateBounds
10929         from form constructor), because it messes with the handle creation
10930         order, and that one needs lots and lots of love.
10931         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
10932         for valid printer and throw InvalidPrinterException if document
10933         is set but printer not valid), adding a MonoTODO. Once 
10934         handle creation is done properly, we can put this back in.
10935
10936 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
10937
10938         * MenuItem.cs: Create a invalidate method for menu item, to be
10939         calling from set text, it make text changes to imadiate update
10940         on screen. Fixes #80013. 
10941         
10942 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
10943
10944         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
10945         fixes bug #80070 and some other problem on toolbar buttons
10946         layout.
10947
10948 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
10949
10950         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
10951         with dotted brush.      Fixes #79564
10952         
10953 2006-11-28  Andreia Gaita  <avidigal@novell.com>
10954
10955         * Form.cs: Removed call to UpdateBounds on Form
10956         constructor, it was causing a call to CreateHandle
10957         before it was supposed to.
10958         * PrintControllerWithStatusDialog: Applied patch
10959         by Chris Toshok to hide controller when there are
10960         no printers available.
10961         PrintDialog.cs: initialize printer settings to 
10962         null - correct DefaultValues test #5
10963         * PrintPreviewControl.cs: Move PrintController
10964         initialization to GeneratePreview
10965         * PrintPreviewDialog.cs: 
10966         - Remove Preview generation     from Document_set(). It is 
10967         called on OnPaint
10968         - Throw InvalidPrinterException on CreateHandle if
10969         a Document is set but there are no printers or 
10970         printer is not valid.
10971         * ThemeWin32Classic: don't paint PrintPreviewControl
10972         if there is nothing to paint    
10973
10974 2006-11-28  Miguel de Icaza  <miguel@novell.com>
10975
10976         * Form.cs: Add another popular method.
10977
10978         * TabPage.cs: ditto.
10979
10980 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10981
10982         * MenuItem.cs: Fixed a warning.
10983         * InternalWindowManager: Fixed a warning.
10984
10985 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10986
10987         * MenuItem.cs:
10988         - When cloning a menu also clone MdiList and clone the 
10989           window menu items properly (as the forms and menuitems
10990           are kept in an internal hashtable, these need updating 
10991           as well)
10992         - Rewrote the window menu code, menu items are added in the
10993           order the forms were added to their parent, and they are
10994           updated every time the window menu is shown (before the
10995           list was only generated once, in the current order of the
10996           forms, and would never be updated). A checkmark is shown
10997           next to the item corresponding to the active mdi child.
10998
10999 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11000
11001         * XplatUIStructs.cs: 
11002         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
11003         
11004         * XplatUIWin32.cs: 
11005         - Added TME_NONCLIENT to TMEFlags.
11006         - Handles WM_NCMOUSEMOVE in GetMessage to 
11007           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
11008
11009         * MdiWindowManager:
11010         - Now merges mdi child menu to parent menu when maximized.
11011         - Recalculate NC areas of both mdi child and mdi parent. 
11012           Fixes #79757 (4).
11013           on window state and size changes.Fixes #79844 (3).
11014         - Handle WM_NCCALCSIZE to properly calculate borders.
11015
11016         * Form.cs:
11017         - Add/remove to the mdi containers list of mdi children 
11018           in the order they are added.
11019         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
11020           to the maximized mdi child.
11021         
11022         * InternalWindowManager.cs:
11023         - Only execute a click on the control buttons on the mouse up,
11024           not on the mouse down. Show the state of the button 
11025           (was only showing Normal state, never Pressed state). The
11026           pressed button now follows the mouse (if you click the Close 
11027           button and move the mouse over the Maximize button, the 
11028           Maximize button will be shown as pressed). Since Win32 does
11029           not generate WM_NCLBUTTONUP if you release the button outside
11030           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
11031           it as a mouse up.
11032         
11033         * ThemeWin32Classic.cs:
11034         - Draw a missing border around mdi child forms. Fixes #79844 (2).
11035
11036         * MdiClient.cs:
11037         - Added a list of forms which contains the order the forms are
11038           added to the mdi parent.
11039         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
11040         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
11041         - If the active form changes set the scrollbars to the top
11042           of the Z order, otherwise the form could hide them.
11043         - Scrollbars are now sized according to ClientSize, not 
11044           to Size, and they take into account the other scrollbar
11045           to determine maximum.
11046         
11047 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
11048         
11049         * XplatUI.cs:
11050         * XplatUIDriver.cs:
11051         * XplatUIX11.cs:
11052         * XplatUIWin32.cs:
11053         * XplatUIOSX.cs:
11054         - Added RequestAdditionalWM_NCMessages for windows to 
11055           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
11056           Currently only implemented in XplatUIWin32.
11057
11058 2006-11-27  Chris Toshok  <toshok@ximian.com>
11059
11060         * Hwnd.cs: only add the hwnd to the windows hash in
11061         set_WholeWindow and set_ClientWindow if whole_window/client_window
11062         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
11063
11064 2006-11-27  Mike Kestner  <mkestner@novell.com>
11065
11066         * ComboBox.cs: remove redundant OnDropDown call.  It is called
11067         from the ComboListBox.ShowWindow code. Fixes #79969.
11068
11069 2006-11-27  Chris Toshok  <toshok@ximian.com>
11070
11071         * Hwnd.cs: remove the setters for ExposePending and
11072         NCExposePending - noone uses them.
11073
11074 2006-11-27  Jackson Harper  <jackson@ximian.com>
11075
11076         * TextControl.cs: new param for ReplaceSelection which determines
11077         whether we select the new selection, or set the cursor to the end
11078         of the new selection.
11079         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
11080         pasting, select the new text.
11081         * RichTextBox.cs: Use new param for ReplaceSelection.
11082
11083 2006-11-27  Jackson Harper  <jackson@ximian.com>
11084
11085         * TextBoxBase.cs: Set the selection to the caret after the caret
11086         is moved, otherwise they get out of sync.
11087
11088 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
11089
11090         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
11091         it fixes #80015
11092
11093 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
11094
11095         * ThemeWin32Classic.cs: 
11096         - Fix toolbar drop down arrow position.
11097         - Fix drop down appearance when ToolBar.Appearance is normal,
11098         it fixes #80018.
11099         
11100 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
11101
11102         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
11103         * Control.cs: Same.
11104         * UpDownBase.cs: Same.
11105         * ButtonBase.cs: Same.
11106         * ScrollBar.cs: Same.
11107         * TrackBar.cs: Same.
11108         * PictureBox.cs: Same.
11109         * UserControl.cs: Same.
11110         * Label.cs: Same.
11111         * ListControl.cs: Same.
11112         * TextBoxBase.cs: Same.
11113         * ListView.cs: Same.
11114         * RichTextBox.cs: Same.
11115         * TreeView.cs: Same.
11116
11117 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
11118
11119         * PrintDialog.cs:
11120         - Text label for where 
11121         - Text label comment was not shown
11122
11123 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
11124
11125         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
11126
11127 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
11128
11129         * InternalWindowManager.cs: 
11130         - Handle WM_PARENTNOTIFY to activate the form
11131         if any child control is clicked.
11132         - The form is only sizable if not minimized.
11133
11134         * MdiWindowManager.cs:
11135         - Save the IconicBounds if the form is moved.
11136         - Rework SetWindowState, now the window bounds 
11137         are stored only if the old window state is Normal.
11138         
11139         * MdiClient.cs:
11140         - In SetWindowStates store the old window state if 
11141         the window is maximized and restore window state if
11142         the window looses focus.
11143         - Don't handle any scrollbar value changes if 
11144         initializing the scroll bars. Fixes #79771.
11145         - Reworked ArrangeIconicWindows. Current algorithm
11146         tests bounds agains all other minimized windows, if
11147         any intersections create new bounds (going left to 
11148         right, bottom to top) and then test again. When 
11149         successful the bounds are saved and never computed
11150         again. Fixes #79774.
11151
11152 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
11153
11154         * InternalWindowManager.cs: Added HandleTitleBarUp.
11155
11156 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
11157
11158         * NumericUpDown.cs: In .NET 1.1, user entered text is still
11159         hexadecimal in ParseUserEdit.
11160
11161         
11162 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
11163
11164         * MdiWindowManager.cs: 
11165         - Handle a click on the form's icon to show the 
11166         system menu (when maximized). Fixes #79775.
11167         - Change the existing click handler for the form's
11168         icon when not maximized to show on MouseUp.
11169         Fixes #79776.
11170
11171         * Form.cs: In OnResize only layout the mdi child's
11172         parent if it actually has a parent. Might not if
11173         the window is closing.
11174
11175
11176 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
11177
11178         * MdiClient.cs: Ignore active MDI client for text of parent, if
11179         child has no text set.
11180
11181 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
11182
11183         * ToolBar.cs: Fixed ToString to match MS.
11184
11185 2006-11-22  Andreia Gaita  <avidigal@novell.com>
11186
11187         * NumericUpDown: 
11188         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
11189         update inner values on set. Fixes #79966.
11190         - Override OnLostFocus to update value on NET 2. Fixes #79950.
11191         - Fix hexadecimal parsing.
11192         
11193         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
11194         parent. Fixes #79957
11195
11196 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11197
11198         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
11199         the actual size has to be queried, since if height /
11200         width is negative Win32 changes it to 0. 
11201         Fixes #79999 on Windows.
11202         
11203         * XplatUIX11.cs: Set height / width to 0 if negative
11204         in SetWindowPos. Fixes #79999 on Linux.
11205         
11206 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
11207
11208         * ThemeWin32Classic.cs: Fix text redenring when button is
11209         pressed.
11210
11211 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
11212
11213         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
11214         and later navigate by mouse. Fixes #79528.
11215
11216 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
11217
11218         * ToolBar.cs: Set default value for TabStop to false in
11219         constructor, it fixes remaining behavior of bug #79863.
11220
11221 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11222
11223         * MdiWindowManager.cs:
11224         * InternalWindowManager.cs:
11225         - Moved a few methods specific to Mdi from 
11226         InternalWindowManager to MdiWindowManager.
11227         Fixes #79996.
11228         
11229 2006-11-21  Chris Toshok  <toshok@ximian.com>
11230
11231         * XplatUIOSX.cs: stub out InvalidateNC.
11232
11233         * XplatUIWin32.cs: implement InvalidateNC using the call I found
11234         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
11235
11236         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
11237
11238         * XplatUIDriver.cs: add InvalidateNC abstract method.
11239
11240         * XplatUI.cs: add InvalidateNC.
11241
11242 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
11243
11244         * ToolBar.cs: Invalidate complete button area when pressed status 
11245         was changed.
11246         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
11247         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
11248         by 1 when button is pressed.
11249
11250 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
11251
11252         * ToolButton.cs: Invalidate middle of DropDown button when
11253         ToolBar theres DropDownArrows.
11254         * ThemeWin32Classic.cs: Change position of DropDown arrow and
11255         fix DropDown drawing operations.
11256
11257 2006-11-20  Chris Toshok  <toshok@ximian.com>
11258
11259         * NativeWindow.cs: fix the formatting of functions ('{' on the
11260         following line), and enable the thread exception dialog.
11261
11262         * Application.cs: remove the duplicate exception catching from
11263         here.
11264
11265 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
11266
11267         * Toolbar.cs: Triggers button click event when click on icon
11268         of dropdown ToolBarButton. Fixes #79912.
11269         
11270 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11271
11272         * Theme.cs:
11273         * ThemeWin32Classic.cs:
11274         - Added a property WindowBorderFont to enable themeing
11275           of mdi child windows' Text.
11276           
11277 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11278
11279         * InternalWindowManager.cs:
11280         * Form.cs:
11281         * MdiClient.cs:
11282         * MdiWindowManager.cs: 
11283         - If mdi child is maximized, set mdi parent's
11284           text to "Parent - [Child]". Fixes #79770.
11285         - If there is any maximized mdi child windows, only the active 
11286           window (and any new windows) is maximized, the rest are normal.
11287         - On a WindowState change only save mdi child's window bounds 
11288           if the old window state was normal. Fixes #79774.
11289         - The scroll bars are now calculated on hopefully all
11290           necessary events. Fixed #79771 / #79844->6 / #79906.
11291         - MdiClient.SizeScrollBars() now takes into account docked 
11292           controls in the parent when calculating available space.
11293         - InternalWindowManager now always repaints the entire title
11294           area. Fixes #79844->1/4/5.
11295         - Added RequestNCRecalc on mdi child windowstate changes.
11296           Fixes #79772.
11297
11298 2006-11-20  Mike Kestner  <mkestner@novell.com>
11299
11300         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
11301         in the MouseUp handler of the listbox and move the return handling
11302         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
11303
11304 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
11305
11306         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
11307
11308 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
11309
11310         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
11311           working in 1.2.x anymore. So, updated.
11312
11313 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
11314
11315         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
11316         NumberGroupSeparator of current culture instead of assuming en-US.
11317         Fixed bug #79967.
11318
11319 2006-11-17  Mike Kestner  <mkestner@novell.com>
11320
11321         * Control.cs: Add the concept of implicit bounds setting so that
11322         dock/undock round trips preserve explicitly set size/locations.
11323         Fixes #79313.
11324
11325 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
11326
11327         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
11328           can't handle those filters. (Fixes bug #79961)
11329
11330 2006-11-17  Chris Toshok  <toshok@ximian.com>
11331
11332         [ fixes the exit/crashes associated with #79835.  it's clearly
11333         suboptimal though, we need to figure out a better way to solve
11334         this. ]
11335         
11336         * PrintPreviewControl.cs: deal with the new invalid printer
11337         exceptions.
11338
11339         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
11340         and return false (so CommonDialog.ShowDialog doesn't actually show
11341         the form.)
11342
11343         * PrintDialog.cs: enable/disable the Ok button depending on
11344         whether or not the printer is valid.
11345
11346         * CommonDialog.cs (ShowDialog): only actually show the form if
11347         RunDialog returns true.
11348
11349 2006-11-17  Jackson Harper  <jackson@ximian.com>
11350
11351         * TextControl.cs: When soft splitting a line, mark it as a soft
11352         split line. Also carry over the current line break to the next
11353         line.
11354
11355 2006-11-17  Chris Toshok  <toshok@ximian.com>
11356
11357         * XplatUIX11.cs: when scrolling a window with an invalid area, we
11358         only want to shift the part of the invalid area that overlaps the
11359         area we're scrolling.  we also don't want to clear the invalid
11360         area unless the invalid area was entirely contained within the
11361         scrolling area.
11362
11363 2006-11-16  Chris Toshok  <toshok@ximian.com>
11364
11365         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
11366         also make sure to free the memory returned by XGetWindowProperty
11367         in GetText().
11368
11369         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
11370
11371 2006-11-16  Chris Toshok  <toshok@ximian.com>
11372
11373         * XplatUI.cs: add a new super secret way to get at the totally
11374         unsupported X11 backend.
11375
11376 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
11377
11378         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
11379
11380 2006-11-16  Jackson Harper  <jackson@ximian.com>
11381
11382         * TreeView.cs: Allow more explicit setting of top node position
11383         for scrollbars. Slower algo, but more accurate.
11384         - CollapseAll should maintain the current top node.
11385         * TextBoxBase.cs: When positioning the caret, use the line, pos
11386         method, since the x, y method does not grab the correct tag, and
11387         the caret height never gets set correctly. (Maybe I should just do
11388         away with the caret having its own height, and always use the
11389         carets current tag for height).
11390
11391 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
11392
11393         [Fixes 79778, 79923]
11394
11395         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
11396         Parent to the FosterParent instead.
11397
11398 2006-11-16  Jackson Harper  <jackson@ximian.com>
11399
11400         * TreeView.cs: Need to recalc the topnode when we expand or
11401         collapse. The scrolling methods can't handle this on their own,
11402         since they use differences between the last scroll position, and
11403         those difference get completely messed up since we are expanding
11404         nodes.  This problem should probably be fixed in the scrolling
11405         methods, so they can figure out exactly where they are, but this
11406         will slow things down a little.
11407         * ThemeWin32Classic.cs: Special case for groupboxes with empty
11408         strings, makes nunit-gui look a lot nicer.
11409
11410 2006-11-16  Chris Toshok  <toshok@ximian.com>
11411
11412         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
11413         the broken multithreaded event handling we have in here.  File
11414         this entry under "Why we should move to the new X11 backend".
11415
11416         Any thread can make it into UpdateMessageQueue, which gets events
11417         from the X socket - some of which could belong to hwnds being
11418         managed by a different thread.  We can also have multiple threads
11419         in UpdateMessageQueue at the same time, with each one reading from
11420         the X socket.  This leads to many problems, with the following
11421         solutions:
11422
11423         We can't use hwnd.Queue.Enqueue anywhere in here and must use
11424         EnqueueLocked.
11425
11426         The MotionNotify compression we do can't work across threads
11427         (without locking the entire queue, perhaps) since we call
11428         hwnd.Queue.Peek, so we just punt and don't compress motion events
11429         unless the owning thread is the one which got the X event.
11430
11431         ConfigureNotify is another fun one, since it modifies the hwnd's
11432         bounds and then enqueues the event.  We add a lock to Hwnd which
11433         is held when setting configure_pending to true (and enqueuing the
11434         event).
11435
11436         There is a race wrt the wake socket.  we need to make sure that
11437         only 1 thread is waiting on that socket, or else a thread could
11438         sleep waiting for data that never comes.  It's difficult (but not
11439         impossible) to make happen, because it seems to require something
11440         like the following:
11441
11442             1. Thread 1 polls on wake_receive
11443         
11444             2. poll returns saying there's data to be read on
11445                wake_receive.
11446         
11447             3. Thread 2 polls on wake_receive and immediately returns
11448                saying there's data to be read.
11449
11450             4. Thread 2 reads the wakeup byte from wake_receive
11451
11452             5. Thread 1 attempts to read the wakeup byte from
11453                wake_receive.
11454
11455             6. Thread 2 exits (due to a form closing, perhaps).
11456
11457             7. Thread 1 blocks forever.
11458         
11459         Fun, eh?
11460
11461         Fixing the Expose handling isn't done yet, and the races inherent
11462         in that piece of code are responsible for the drawing mistakes you
11463         see when generating expose events in a MT app (like NPlot).  This
11464         one is the likely to be the hardest to bandaid, and it doesn't
11465         appear to cause anything but drawing problems.  The other issues
11466         caused apps to exit or hang.
11467
11468         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
11469         called from a different thread than the one that should be calling
11470         these functions.
11471
11472         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
11473
11474 2006-11-15  Chris Toshok  <toshok@ximian.com>
11475
11476         * Application.cs: null out the context's MainForm when we exit
11477         RunLoop.  Fixes a newly checked in unit test as well as the last
11478         ODE from bug #79933.
11479
11480 2006-11-15  Chris Toshok  <toshok@ximian.com>
11481
11482         * Form.cs (set_Owner): allow a null value so we can clear the
11483         form's owner.
11484         (Dispose): set all our owned_form's Owner properties to null, and
11485         clear the owned_forms collection.
11486         (WM_CLOSE): clean up this a little bit.. still not right though.
11487
11488         * ApplicationContext.cs: OnMainFormClosed should only call
11489         ExitThreadCore if the main form isn't recreating.  Fixes unit
11490         test.
11491
11492 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
11493
11494         [Fixes 78346]
11495
11496         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
11497
11498 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
11499
11500         [Fixes 79433]
11501
11502         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
11503         keep popup window types from stealing focus from the main form
11504         on Windows.
11505
11506         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
11507
11508         * MenuAPI.cs: Set above flag to true.
11509
11510 2006-11-15  Chris Toshok  <toshok@ximian.com>
11511
11512         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
11513         the button being released is not in wParam.
11514
11515 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
11516
11517         * Form.cs: Add the released button to MouseEventArgs.Button
11518         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
11519         on Win32.
11520
11521 2006-11-15  Chris Toshok  <toshok@ximian.com>
11522
11523         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
11524         GetText().  untested because it's unused in our implementation.
11525         Control.Text always caches the text, even if
11526         ControlStyles.CacheText is not set.
11527
11528         fixes bug #79939.
11529
11530 2006-11-15  Chris Toshok  <toshok@ximian.com>
11531
11532         [ fixes #79933 ]
11533         
11534         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
11535         message.  no hiding, no disposing.
11536
11537         in the WM_CLOSE handler, hide the form if it's modal.
11538
11539 2006-11-15  Chris Toshok  <toshok@ximian.com>
11540
11541         * XplatUIX11.cs: use AddExpose instead of sending a message.
11542         fixes textbox border drawing.
11543
11544 2006-11-15  Chris Toshok  <toshok@ximian.com>
11545
11546         * PropertyGridView.cs: keep from crashing on mouse move/down when
11547         the property grid is empty.
11548
11549 2006-11-14  Jackson Harper  <jackson@ximian.com>
11550
11551         * TextControl.cs: Make PageUp and PageDown more like the MS
11552         versions.
11553         * TextBoxBase.cs: When we set the text property position the
11554         cursor at the beginning of the document.
11555
11556 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11557
11558         * Form.cs: if a mdi child's WindowState has changed
11559         before it's creation, it would display wrong control
11560         buttons.
11561         
11562 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
11563
11564         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
11565           (Fixes bug #79927)
11566
11567 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
11568
11569         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
11570         the window gets to paint its borders even if the window is
11571         getting smaller.
11572         
11573         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
11574         otherwise the old control buttons would still be painted 
11575         if the window gets bigger.
11576         
11577         * PaintEventArgs.cs: add an internal method so that the clip 
11578         rectangle can be changed.
11579         
11580 2006-11-13  Chris Toshok  <toshok@ximian.com>
11581
11582         [ fixes bug #79745 ]
11583         
11584         * NotifyIcon.cs: lots of cleanup.
11585
11586         * X11Structs.cs: add an enum for XEMBED messages.
11587
11588         * XplatUIX11.cs: reindent one of the giant switch statements, it
11589         was taking up an additional tab stop, and this file is already way
11590         too wide for my laptop's screen.
11591
11592         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
11593         we get it, resize the hwnd to the WMNormalHints max_width/height.
11594
11595 2006-11-13  Jackson Harper  <jackson@ximian.com>
11596
11597         * TextBoxBase.cs: Compute the value changes for the mouse wheel
11598         teh simple way.
11599
11600 2006-11-13  Chris Toshok  <toshok@ximian.com>
11601
11602         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
11603         #79898.  force a reference to the Region to stick around so the
11604         unmanaged object isn't collected (rendering our handle in the MSG
11605         stale).
11606
11607 2006-11-13  Chris Toshok  <toshok@ximian.com>
11608
11609         * XplatUIX11.cs: fix #79917 for window managers which support
11610
11611         using XStoreName on the raw utf8, and we need to convert to
11612         COMPOUND_TEXT if it's non-latin1.
11613
11614 2006-11-13  Chris Toshok  <toshok@ximian.com>
11615
11616         * Form.cs (set_DialogResult): we need to set closing to false if
11617         we're setting our result to None.  fixes bug #79908.
11618
11619 2006-11-13  Jackson Harper  <jackson@ximian.com>
11620
11621         * TextControl.cs: When formatting text, compute the adjusted tag
11622         lengths correctly, using FindTag for the end tag instead of trying
11623         to figure it out outselves.
11624         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
11625         the item, ItemHeight doesn't work, because trees with large
11626         imagelists use those for their height
11627         * TreeView.cs: ActualItemHeight factors in the image height
11628         - compute left edge of checkboxes correctly
11629         - when expanding/collapsing move the bottom down one pixel, so we
11630         aren't moving part of the node
11631
11632 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11633
11634         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
11635         stack in PaintEventStart so that it won't get disposed by the gc
11636         before reaching PaintEventEnd.
11637
11638 2006-11-13  Jackson Harper  <jackson@ximian.com>
11639
11640         * TextBoxBase.cs: Don't select the word if we are on a line with
11641         no text.
11642         - We don't need to position the caret on mouse up, since the mouse
11643         move handler should be doing this
11644         - When double clicking a blank line, the caret is advanced to the
11645         next line.
11646
11647 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
11648
11649         * TreeNodeCollection.cs: Avoid duplicating indexer code.
11650
11651 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
11652
11653         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
11654         Fixes part of bug #79910.
11655
11656 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
11657
11658         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
11659           (bug #79903). Some minor string updates to match ms.
11660
11661 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
11662
11663         * FileDialog.cs: Don't add an extension if the filename
11664           already ends with that extension.
11665
11666 2006-11-10  Jackson Harper  <jackson@ximian.com>
11667
11668         * TreeView.cs: Use the currently highlighted node for the
11669         BeforeSelect event.
11670         * TextBoxBase.cs: There is no need to expand selection on
11671         MouseMove.
11672         - CanUndo means 'is there any undo operations', not 'is undo
11673         allowed on this textcontrol. Fixed ClearUndo unit test.
11674
11675 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
11676
11677         * Button.cs: only perform click when button is Selectable (so as 
11678         not to activate default buttons when they're disabled)
11679         
11680         * Control.cs: Rewrite of the SelectNextControl and related 
11681         methods. HandleClick now selects next control if the current one
11682         is being disabled.
11683         
11684         * Form.cs: OnActivated selects next active control only if Load 
11685         has already occurred. If Load hasn't run, there's no point in 
11686         selecting here, Load might change the state of controls.
11687         
11688         * FocusTest.cs: Tests marked as working again for these fixes
11689
11690 2006-11-10  Chris Toshok  <toshok@ximian.com>
11691
11692         * XplatUIX11.cs: a couple of fixes.
11693
11694         - use XInternAtoms with almost all the atoms we need to register,
11695         instead of many, many calls to XInternAtom.  should help a bit on
11696         startup time, at the expense of making the code look a little
11697         worse.
11698
11699         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
11700         isn't reparented (which seems to be a clue that we're running fon
11701         compiz) and they have an Owner form.  This fixes the tool windows
11702         in paint.net when running under compiz.
11703
11704         - when setting the opacity of a window, support both the case
11705         where the window has been reparented and also when it hasn't been.
11706         Since compiz/beryl doesn't seem to reparent windows, and these are
11707         the only window managers which support translucency, I'm not sure
11708         why we need the hwnd.reparented case at all.. but leave it in.
11709         now we get translucent windows in paint.net under compiz/beryl.
11710
11711 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
11712
11713         * FileDialog.cs: Always return the value for FilterIndex that
11714           was set. Internally convert it to values that make sense.
11715
11716 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
11717         
11718         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
11719
11720 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
11721
11722         * Toolbar.cs: Change default value of DropDownArrows to true, the 
11723         signature still using false to make it compatible with MS but the 
11724         initial value is true. Fixes #79855.
11725
11726 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
11727
11728         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
11729           only available on Linux.
11730
11731 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
11732
11733         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
11734         reduce number of calls to redraw method during toolbar creation.
11735
11736 2006-11-09  Mike Kestner  <mkestner@novell.com>
11737
11738         * ListView.cs : raise SelectedIndexChanged when an item is selected
11739         programmatically via the Item.Selected property.  Gert's nice 
11740         ListViewSelectedIndexChanged test fixture now runs clean.
11741
11742 2006-11-09  Mike Kestner  <mkestner@novell.com>
11743
11744         * ListView.cs : raise SelectedIndexChanged when a selected item is
11745         removed from the item collection using Remove or RemoveAt.
11746
11747 2006-11-09  Mike Kestner  <mkestner@novell.com>
11748
11749         * ListView.cs : raise SelectedIndexChanged once per selected item
11750         for compat with MS.  Fixes #79849+.
11751
11752 2006-11-09  Chris Toshok  <toshok@ximian.com>
11753
11754         * TabControl.cs: initialize row_count to 0, and set it to 1 when
11755         we need to (if we have any tab pages).  Fixes unit test.
11756
11757 2006-11-09  Chris Toshok  <toshok@ximian.com>
11758
11759         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
11760         width is 0, not 3.  Fixes a unit test.
11761
11762 2006-11-09  Mike Kestner  <mkestner@novell.com>
11763
11764         * ListView.cs : use Implicit scrollbars so that focus isn't 
11765         stolen from the listview when they are clicked. Fixes #79850.
11766
11767 2006-11-09  Chris Toshok  <toshok@ximian.com>
11768
11769         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
11770         have a root item.  Fixes #79879.
11771
11772 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
11773
11774         * FileDialog.cs:
11775           - Fix ToString ()
11776           - An ArgumentException is now thrown if a wrong filter
11777             is applied (matches ms). The previous filter doesn't change
11778             anymore if an exception is thrown.
11779           - Changing the FileName property also affects FileNames
11780         * ColorDialog.cs: The length of the CustomColors array is always
11781           16. It doesn't matter if we use a smaller array or null to update
11782           or change the custom colors property.
11783         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
11784           for RootFolder if we get a undefined value.
11785
11786 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11787
11788         * StatusBarPanel.cs: 
11789         - Width is set to MinWidth if Width is smaller than
11790         MinWidth. Fixes #79842.
11791         - MinWidth now always overrides Width (MSDN says MinWidth
11792         is set to Width when AutoSize = None, but they do not 
11793         behave like that).
11794         - Style has now the the correct default value.
11795         
11796 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11797  
11798         * TrackBar.cs: 
11799         - The control is completely invalidated on 
11800         Got/LostFocus to draw the focus rectangle correctly.
11801         - When AutoSize then height is always 45 (width for 
11802         vertical controls).
11803         
11804         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
11805         on the mouse when moved and it doesn't move when grabbed
11806         until the mouse moves as well. Also fixed some wrong 
11807         calculations when clicking on the thumb (control thought
11808         click was outside of thumb and didn't grab it).
11809         Fixes some of the issues in #79718.
11810
11811 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
11812
11813         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
11814
11815 2006-11-08  Chris Toshok  <toshok@ximian.com>
11816
11817         * PropertyGridView.cs: only call ToggleValue if the item is not
11818         readonly.
11819
11820 2006-11-08  Jackson Harper  <jackson@ximian.com>
11821
11822         * TextBoxBase.cs: The RichTextBox and textbox have very different
11823         word selection methods.  Implement the textbox's simple word
11824         selection here, and let the RichTextBox override and provide it's
11825         own.
11826         - Don't do extra selection on mouseup
11827         * RichTextBox.cs: Use the documents word selection algorithm, I
11828         think ideally, this function will be pulled into the
11829         RichTextBox.cs code someday.
11830
11831 2006-11-08  Chris Toshok  <toshok@ximian.com>
11832
11833         * RootGridEntry.cs: new class to represent GridItemType.Root.
11834
11835         * CategoryGridEntry.cs: reformat, and add boilerplate.
11836         
11837         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
11838         returns the UI parent anyway, and we need special handling to
11839         implement the GetTarget method in the face of it.  Also, implement
11840         Select().
11841
11842         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
11843         a root grid item, and use that instead of PropertyGrid.grid_items.
11844         Also, make use of TypeConverters (and add limitted support for
11845         ICustomTypeDescriptors) when initially populating the grid.
11846         Arrays now show up more or less properly.
11847
11848 2006-11-08  Chris Toshok  <toshok@ximian.com>
11849
11850         * Application.cs: set the modal dialog to non modal after we close
11851         it.  Fixes bug #79866.
11852
11853 2006-11-08  Jackson Harper  <jackson@ximian.com>
11854
11855         * TextControl.cs: When combining lines carry over the line end
11856         style from the end line.
11857         - Invalidate the selected area when setting it, if it is visible.
11858         * TextBoxBase.cs: Only rich text box can do full line selects.
11859         - Make sure to set the cursor position when there is a click,
11860         otherwise two clicks in separate areas could cause a large chunk
11861         to be selected.
11862
11863 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11864
11865         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
11866         Fixes #79863.
11867
11868 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11869
11870         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
11871         time. Remove tooltips when ToolButton click events.  Fixes #79856.
11872
11873 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11874
11875         * MenuAPI.cs: Ignore right click for menu actions and fixes
11876         menu border when clicked.  Fixes #79846.
11877
11878 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11879
11880         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
11881         MouseState after create wParam for message, this fixes mouse button 
11882         equal none in mouse up events.
11883         
11884 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
11885
11886         * Control.cs : Focus() now calls Select to set the Container's
11887         Active Control and to give it focus. To avoid infinite recursion
11888         (because ActiveControl also calls Focus at one point), a check 
11889         is made in Focus with the help of a new internal variable
11890         is_focusing.
11891
11892 2006-11-07  Mike Kestner  <mkestner@novell.com>
11893
11894         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
11895         if there's a selection.  Fixes #79849.
11896
11897 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
11898
11899         * PropertyGrid.cs: Avoid fixed height of help description label.
11900         Fixes part of bug #79829.
11901
11902 2006-11-07  Chris Toshok  <toshok@ximian.com>
11903
11904         * XplatUIX11.cs: fix #79790 again, by using the
11905         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
11906
11907 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11908
11909         * ToolBar.cs: Fix left click checking.
11910
11911 2006-11-07  Chris Toshok  <toshok@ximian.com>
11912
11913         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
11914
11915 2006-11-07  Chris Toshok  <toshok@ximian.com>
11916
11917         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
11918         PropertyManager unit tests.
11919
11920         * PropertyManager.cs: make property_name internal.
11921
11922 2006-11-07  Chris Toshok  <toshok@ximian.com>
11923
11924         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
11925         pass a unit test.  Also, don't set image_index to anything in
11926         response to setting the ImageList property.
11927
11928 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11929
11930         * ToolBar.cs: Ignore click events when mouse button is not a
11931         left button, only accepts other button for dropdown menus.  
11932         Fixes #79854.
11933
11934 2006-11-07  Chris Toshok  <toshok@ximian.com>
11935
11936         * DataGrid.cs: make the back and parent row buttons a little less
11937         ugly.
11938
11939 2006-11-07  Jackson Harper  <jackson@ximian.com>
11940
11941         * TextBoxBase.cs: When converting to Text don't put line breaks in
11942         for soft line breaks.
11943         * TextControl.cs: There is an initial "fake" line in the document,
11944         this is now a soft break line, so that an extra line feed doesn't
11945         get added to the end of documents.
11946
11947 2006-11-07  Chris Toshok  <toshok@ximian.com>
11948
11949         [ fix bug #79778 ]
11950         
11951         * CurrencyManager.cs: if the list is readonly, don't bother
11952         checking if IBindingList.AllowNew is true.
11953
11954         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
11955         for non-DataRowView datasources..  or rather, make it not crash.
11956         (DataGridPaintRelationRow): make sure we limit the row painting to
11957         the area not covered by the row header, and make our cell width at
11958         least large enough to cover the relation area.  This allows grids
11959         that have relations but no rows to render correctly.
11960         (DataGridPaintRowContents): same type of changes here.
11961         (SetDataSource): move back to always calling
11962         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
11963         navigating back through relations.
11964         (HitTest): handle the case where we have no cells but have
11965         relations.  Right now we generate a hit in cell 0 of whatever the
11966         row is, not sure if this is strictly correct, but it works for our
11967         purposes.
11968         
11969         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
11970         bother doing anything.
11971
11972 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
11973
11974         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
11975         early version of StatusStrip.  Not responsible for eaten
11976         application or firstborn children.
11977
11978 2006-11-06  Chris Toshok  <toshok@ximian.com>
11979
11980         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
11981         call GetTabRect with a -1 index.  Fixes #79847.
11982
11983 2006-11-06  Jackson Harper  <jackson@ximian.com>
11984
11985         * TreeNodeCollection.cs: Update scrollbars after clearing.
11986
11987 2006-11-06  Chris Toshok  <toshok@ximian.com>
11988
11989         * NumericUpDown.cs: fix the ToString method for some unit test
11990         love.
11991
11992 2006-11-06  Chris Toshok  <toshok@ximian.com>
11993
11994         * PropertyGrid.cs:
11995         - set the initial SelectedGridItem if we can.
11996
11997         - Exclude non-mergable properties only if we're merging > 1
11998         object.  Merging 1 object isn't really merging, obviously.
11999
12000         - Handle PropertySort.NoSort just like Alphabetical, which is
12001         wrong of course, but at least gets things on the screen.
12002         
12003         * PropertyGridView.cs:
12004         - Add method "FindFirstItem" which finds the first property grid
12005         item, so we can select it by default.
12006
12007         - make use of GridEntry.CanResetValue.
12008
12009         - Don't call RedrawBelowItemOnExpansion here anymore, the
12010         individual GridEntry's will do that.
12011
12012         - Remove the ITypeDescriptorContextImpl internal class.
12013         
12014         * GridEntry.cs:
12015         - this class needs to implement ITypeDescriptorContext, as it's
12016         what MS's PropertyDescriptorGridEntry does, which means we can
12017         remove the ITypeDescriptorContextImpl internal class from
12018         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
12019
12020         - keep a reference to our PropertyGridView, and move the call to
12021         RedrawBelowItemOnExpansion here from PGV.  This means
12022         programmaticly setting Expanded actually does something visible.
12023
12024         - add a CanResetValue() function which takes into account our
12025         possibly multiple "selected_objects" in the merged case.  Shifting
12026         PropertyGridView to use this method fixes another unreported
12027         crasher found running the test for #79829.
12028
12029         - when Top or Bounds is updated, make sure the PropertyGridTextBox
12030         is updated to reflect this.
12031
12032         * CategoryGridEntry.cs: the ctor takes the PGV now.
12033         
12034 2006-11-06  Jackson Harper  <jackson@ximian.com>
12035
12036         * TextControl.cs: These are 1 based.
12037         * TextBoxBase.cs: When setting the selected text, don't change the
12038         selected text tags, this is done by ReplaceText, just position the
12039         cursor at the end of the new text.
12040
12041 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
12042
12043         * ListView.cs: Allow label edit only when, when LabelEdit is
12044           set to true.
12045
12046 2006-11-06  Jackson Harper  <jackson@ximian.com>
12047
12048         * TextControl.cs: If a suitable wrapping position isn't found,
12049         just wrap right in the middle of a word.
12050
12051 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
12052
12053         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
12054           bug #79820.
12055
12056 2006-11-06  Jackson Harper  <jackson@ximian.com>
12057
12058         * TreeView.cs: Can't use the VisibleCount property when setting
12059         scrollbar heights, because this doesn't take into account whether
12060         or not the horz scrollbar just came visible.
12061
12062 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
12063
12064         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
12065         activated.  Fixes #79369, #79832.
12066
12067 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
12068
12069         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
12070           had to remove support for links that point to a directory. FileInfo
12071           returns no usefull information (means, the directory they point to)
12072           for such links. Replaced some empty string ("") with String.Empty.
12073
12074 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
12075
12076         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
12077         NullReferenceException when attempting to remove node that is not in
12078         collection. Throw NullReferenceException when null is passed to 
12079         Remove. Allow first element of the collection to be removed. Fixes
12080         bug #79831.  In GetEnumerator ().Current return null if positioned 
12081         before the first element of the collection. In GetEnumerator ().Reset,
12082         position before first element of the collection.
12083
12084 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
12085
12086         * PropertyGrid.cs: To match MS, remove default title and description
12087         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
12088         buttons.
12089
12090 2006-11-04  Chris Toshok  <toshok@ximian.com>
12091
12092         * Theme.cs: add a Clamp method, just for kicks.
12093
12094         * ThemeWin32Classic.cs: clamp all color components to [0..255].
12095
12096 2006-11-04  Chris Toshok  <toshok@ximian.com>
12097
12098         * Form.cs: if the form isn't visible, Close() does nothing.
12099
12100 2006-11-03  Chris Toshok  <toshok@ximian.com>
12101
12102         * Form.cs (Close): if the form is modal, don't Dispose of it, only
12103         Hide it.
12104         (WndProc): don't Dispose after handling the WM_CLOSE message.
12105
12106         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
12107         them as such, instead of using casts from Control to Form.  Also,
12108         don't Dispose of the modal dialog when we fall out of the loop -
12109         Close() it instead.
12110
12111         fixes bug #79813.
12112
12113 2006-11-03  Chris Toshok  <toshok@ximian.com>
12114
12115         * Control.cs (Dispose): only go through the dispose thing if we're
12116         @disposing, and we haven't already been disposed.  Fixes bug
12117         #79814.
12118
12119         * Form.cs: no reason to call "base.Dispose()" here instead of
12120         "Dispose()".
12121
12122 2006-11-03  Mike Kestner  <mkestner@novell.com>
12123
12124         * ComboBox.cs : use ToString instead of casts in AddItem for
12125         sorting functionality.  Fixes #79812.
12126
12127 2006-11-03  Chris Toshok  <toshok@ximian.com>
12128
12129         * Application.cs: pave the way for actually using the thread
12130         exception dialog.  it's ifdefed out at the moment.
12131
12132 2006-11-03  Chris Toshok  <toshok@ximian.com>
12133
12134         * ThreadExceptionDialog.cs: until we get a better layout, actually
12135         hide the details textbox and label when we shouldn't see them.
12136
12137 2006-11-03  Jackson Harper  <jackson@ximian.com>
12138
12139         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
12140         multiline textboxes anymore.  This method also determines the
12141         width/height of a textboxes canvas area.
12142         - Sorta a revert of the last patch.  For multiline just position
12143         the controls, then bail.  This way the scrollbar width won't be
12144         altered.
12145
12146 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
12147
12148         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
12149         it dont need.  Fixes #79537.
12150
12151 2006-11-02  Jackson Harper  <jackson@ximian.com>
12152
12153         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
12154         send the status after firing the DndOver event.
12155
12156 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12157
12158         * TrackBar.cs: Now orientation only switches height / width if
12159         the control's handle is created (Win32 does it like this). Also 
12160         fixed a typo in ToString() for a test to pass, changed the 
12161         exception thrown in set_LargeChange and set_SmallChange to 
12162         match Win32 behaviour, and added TrackBar tests to the unit 
12163         tests.
12164
12165 2006-11-02  Chris Toshok  <toshok@ximian.com>
12166
12167         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
12168         not _NET_WM_STATE_NO_TASKBAR.
12169
12170 2006-11-02  Jackson Harper  <jackson@ximian.com>
12171
12172         * TextControl.cs: Increment count by one, since in the update view
12173         count - 1 is used.
12174
12175 2006-11-02  Jackson Harper  <jackson@ximian.com>
12176
12177         * TextBoxBase.cs: Use client rectangle not bounds for checking if
12178         the mouse is in the client rectangle (duh).
12179
12180 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12181         
12182         * TrackBar.cs: Fixed trackbar jumping around when clicking
12183         on it - the trackbar was not detecting correctly at which
12184         side of the thumb the click was done. (fixes #79718)
12185
12186 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
12187
12188         * ListBox.cs: scroll visible area when change SelectedIndex to
12189         a non visible area.  Fixes #79481.
12190
12191 2006-11-01  Jackson Harper  <jackson@ximian.com>
12192
12193         * TextControl.cs: When replacing the selection move the selection
12194         start/end/anchor to the end of the new text.
12195
12196 2006-11-01  Jackson Harper  <jackson@ximian.com>
12197
12198         * XplatUIWin32.cs: When setting the parent change the controls
12199         visibility to it's visibility flag, not to it's old parents
12200         visibility (.Visible walks the parent chain).
12201
12202 2006-11-01  Chris Toshok  <toshok@ximian.com>
12203
12204         * XplatUIX11.cs: revert the #79790 fix, as the simple.
12205         XSetTransientForHint fix breaks paint .net's tool windows.  more
12206         work needed for that one.
12207
12208 2006-11-01  Chris Toshok  <toshok@ximian.com>
12209
12210         * ScrollBar.cs: throw ArgumentException instead of Exception in
12211         LargeChange/SmallChange setters.  fixes unit tests.
12212
12213 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
12214
12215         * ContainerControl.cs: reverted rev.67183 (which was itself
12216         a reversion of rev.66853... eh).
12217         
12218         * Control.cs: Fixes Reflector hang by changing Focus() call
12219         to what it was before rev.66643 (calling Select() here sets 
12220         ActiveControl, which in some situations calls back Focus and 
12221         eventually does a stack overflow). Temp fix.    
12222         Changes to GetNextControl() to not look for children to select when
12223         parent cannot be selectable (so it looks for siblings instead)  
12224         
12225 2006-10-31  Mike Kestner  <mkestner@novell.com>
12226
12227         * CheckedListBox.cs : off by one error in returned index from
12228         ObjectCollection.Add.  Fixes #79758.
12229
12230 2006-10-31  Chris Toshok  <toshok@ximian.com>
12231
12232         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
12233         calls for the textbox/spinner, to keep from recursing to the point
12234         where we crash.  Fixes #79760.
12235
12236 2006-10-31  Chris Toshok  <toshok@ximian.com>
12237
12238         * ListControl.cs (set_SelectedValue): don't throw exceptions on
12239         null/"" value, just return.  matches ms's behavior and fixes some
12240         failing tests.
12241
12242 2006-10-31  Chris Toshok  <toshok@ximian.com>
12243
12244         * Control.cs (set_Capture): make a logic a little easier to
12245         follow.
12246
12247         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
12248         if it's being destroyed.  A necessary fix surely, but a bandaid
12249         also, to fix the stuck capture problem in bug #78413.
12250
12251 2006-10-31  Chris Toshok  <toshok@ximian.com>
12252
12253         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
12254         convention of clearing hwnd.ClientRect when we set the
12255         width/height (so it'll be recalculated by Hwnd).
12256
12257 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
12258
12259         * ContainerControl.cs: reversed Contains check from
12260         ActiveControl due to hanging problems. This fix
12261         partly regresses #79667 (button does not have
12262         initial focus), so this might be a symptom for 
12263         a larger parenting problem (set_ActiveControl
12264         is being called but the child control does
12265         not have the parent set yet?)   
12266         
12267 2006-10-31  Mike Kestner  <mkestner@novell.com>
12268
12269         * MenuAPI.cs : fix keynav when menu is click activated.
12270
12271 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
12272
12273         * ToolStrip*: Version 0.2.
12274
12275         * MenuStrip.cs: Version 0.1.
12276
12277         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
12278
12279 2006-10-30  Chris Toshok  <toshok@ximian.com>
12280
12281         [ fixes the oversized notify icon issue in bug #79745 ]
12282         
12283         * NotifyIcon.cs: scale the icon down to the size we're given by
12284         the XplatUI layer (this would be faster if we did it once instead
12285         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
12286         since it's never invoked.
12287
12288         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
12289         pixels high by default, so let's hardcode our systray icon to that
12290         size.  The SYSTEM_TRAY protocol should really have a way for
12291         client apps to query for the correct icon size.. but oh well.  A
12292         couple of patches to deal with the screwy client_window ==
12293         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
12294         instance, and also make sure we don't XSelectInput twice).
12295
12296 2006-10-30  Chris Toshok  <toshok@ximian.com>
12297
12298         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
12299         recreating forms.  Control recreation is the bane of my existence.
12300         Fix it in a way that keeps everyone happy.
12301
12302 2006-10-30  Chris Toshok  <toshok@ximian.com>
12303
12304         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
12305         just non-CHILD ones.  otherwise sometimes scrollbars end up with
12306         client_windows not being resized to the proper size (ReportBuilder
12307         shows this extremely well).
12308
12309 2006-10-30  Chris Toshok  <toshok@ximian.com>
12310
12311         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
12312         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
12313         showing up in the gnome taskbar.  Fixes bug #79790.
12314
12315 2006-10-30  Chris Toshok  <toshok@ximian.com>
12316
12317         * ApplicationContext.cs: guard against a NRE.
12318
12319         * Application.cs: null out the old MainForm for the context, so we
12320         don't try to use it again once it's disposed.  Fixes bug #79783.
12321
12322 2006-10-30  Chris Toshok  <toshok@ximian.com>
12323
12324         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
12325         BindingContext, set the data source directly, otherwise do the
12326         lazy approach - the actual ListManager will be created when we get
12327         a BindingContext. Fixes bug #79700.
12328
12329 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
12330
12331         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
12332           XplatUIX11.cs: Remove old 2 parameter SetVisible.
12333
12334         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
12335
12336 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
12337
12338         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
12339         of SetVisible that allows a window to be shown, but not activated.
12340         This is needed on Windows for MenuStrip, and can probably be used
12341         with MainMenu and ComboBox to fix the focus stealing issues on
12342         Windows.
12343
12344         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
12345
12346 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
12347
12348         * PictureBox.cs: Fix the output of the ToString method.
12349
12350 2006-10-29  Chris Toshok  <toshok@ximian.com>
12351
12352         * Control.cs (get_TopLevelControl): fix bug #79781.
12353
12354 2006-10-29  Chris Toshok  <toshok@ximian.com>
12355
12356         * ListControl.cs (set_DataSource): throw Exception here, not
12357         ArgumentException, to match MS behavior.
12358
12359 2006-10-29  Chris Toshok  <toshok@ximian.com>
12360
12361         * Form.cs: remove the try-catch's around calls to GetWindowState.
12362         We can just check the return value.
12363
12364         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
12365         Instead return -1.
12366
12367         * XplatUI.cs: Add note about additional return value for
12368         GetWindowState.
12369
12370 2006-10-29  Chris Toshok  <toshok@ximian.com>
12371
12372         * Control.cs (CreateHandle): when we create our handle, we also
12373         create the handles of our child controls.  Fixes one of the
12374         Control unit tests (CH11).
12375
12376 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
12377
12378         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
12379
12380 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
12381
12382         * ThemeClearlooks.cs: A little speedup.
12383
12384 2006-10-27  Chris Toshok  <toshok@ximian.com>
12385
12386         * Control.cs: implement Control.FromChildHandle in a way that
12387         matches the docs (and fixes the failed test.)
12388
12389 2006-10-27  Chris Toshok  <toshok@ximian.com>
12390
12391         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
12392         comments).
12393
12394         * DataGrid.cs: implement ResetForeColor such that the tests
12395         succeed.
12396         
12397 2006-10-27  Chris Toshok  <toshok@ximian.com>
12398
12399         * ToolBarButton.cs: setting text/tooltiptext to null results in it
12400         being set to "".  Fixes bug #79759.
12401
12402 2006-10-27  Jackson Harper  <jackson@ximian.com>
12403
12404         * TextControl.cs: We need to clear the entire selection area when
12405         setting the start, otherwise multiline selections are still
12406         visible.
12407
12408 2006-10-26  Chris Toshok  <toshok@ximian.com>
12409
12410         * PropertyGridView.cs: 
12411
12412         - ifdef all the code specific to the double
12413         buffer case, and provide some alternatives in the non-doublebuffer
12414         code, which makes heavy use of XplatUI.ScrollWindow to move things
12415         around without having to invalidate (and cause flicker).  There
12416         are still some drawing problems in the non-doublebuffered case, so
12417         DOUBLEBUFFER is defined by default.
12418
12419         - Fix the way dropdowns are handled.  now we explicitly watch for
12420         the events which might cause the dropdown to close, and break out
12421         of the nested event loop there.  This gets rid of all Capture
12422         code, at the expense of the Msg special casing.  Seems to work,
12423         though, and fixes bug #79743.
12424
12425 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
12426         * Control.cs: SetIsRecreating now recreates implicitly added
12427         child controls as well. Finally fixes #79629. The flag passed to 
12428         SetIsRecreating has also been removed since it wasn't used.
12429         
12430 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12431
12432         * PageSetupDialog.cs: Clean some code, fix some bits, 
12433         add some checks, and add a printer sub-dialog.
12434
12435 2006-10-26  Chris Toshok  <toshok@ximian.com>
12436
12437         * PropertyGrid.cs: make set_SelectedObject call
12438         set_SelectedObjects, and move the duplicate logic to the
12439         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
12440
12441         * PropertyGridView.cs: hide the textbox when we get a
12442         SelectedObjectsChanged event.
12443
12444         Fixes bug #79748.
12445
12446 2006-10-26  Chris Toshok  <toshok@ximian.com>
12447
12448         * PropertyGridView.cs: deal with the type converter not supporting
12449         GetStandardValues() or GetStandardValues() returning null, which
12450         is does in the default case.  Fixes #79742.
12451
12452 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
12453
12454         * CheckedListBox.cs: nunit no longer crashes when selecting 
12455         Project/Edit menu option
12456         
12457 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
12458
12459         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
12460         is no menu selected. fixes #79739
12461
12462 2006-10-25  Chris Toshok  <toshok@ximian.com>
12463
12464         * PropertyGridView.cs: factor out the splitter invalidation code
12465         into the SplitterPercent setter, and for kicks implement the
12466         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
12467         amount in either direction.
12468
12469 2006-10-25  Chris Toshok  <toshok@ximian.com>
12470
12471         * PropertyGridView.cs: do some cleanup of the brush used to draw
12472         text - read only fields should be grayed out.  not sure how to do
12473         this with the textbox, though.  but the textbox's should also be
12474         readonly now at least.  Also, hide/show the textbox when resizing
12475         the control.
12476         
12477         * CursorConverter.cs: use System.Reflection when getting the
12478         properties of Cursors, as TypeDescriptor.GetProperties isn't
12479         returning static properties.
12480
12481 2006-10-25  Chris Toshok  <toshok@ximian.com>
12482
12483         * PropertyGridView.cs: factor out the up/down handling, and reuse
12484         it for page up/down.  also add End/Home support.
12485
12486 2006-10-25  Chris Toshok  <toshok@ximian.com>
12487
12488         * PropertyGridView.cs:
12489
12490         - ensure the selected grid item is visible in the scrolled area,
12491         fixes bug #79572.
12492
12493         - fix Keys.Down handling when you're on the last item in the
12494         propertygrid.
12495
12496 2006-10-25  Mike Kestner  <mkestner@novell.com>
12497
12498         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
12499         clicks too.  Fixes #79725.
12500
12501 2006-10-24  Chris Toshok  <toshok@ximian.com>
12502
12503         * PropertyGrid.cs: use property.Converter instead of
12504         TypeDescriptor.GetConverter(property.PropertyType), so we catch
12505         TypeConverters declared on the property as well as on the
12506         PropertyType.  Fixes bug #79678.
12507
12508 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
12509
12510         * MimeIcon.cs, Mime.cs:
12511           Fallback to the default platform handler if no shared mime info
12512           stuff exists (fixes #79693).
12513
12514 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
12515         * ContainerControl.cs: Incorrect contains check in ActiveControl 
12516         from previous fix (duh).
12517
12518 2006-10-20  Chris Toshok  <toshok@ximian.com>
12519
12520         * PropertyGridView.cs: the dropdown should be MIN(number of items
12521         in list, 15).  Fixes #79551.
12522
12523 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
12524         Fixes #79384, #79394, #79652, #79667
12525         * Application.cs: 
12526         
12527         - Modal windows are now destroyed in the proper order for windows
12528         
12529         * ContainerControl.cs:
12530         
12531         - ActiveControl setter has more conditions on when to return:
12532                 - if we're reselecting the active control, but it actually
12533                 didn't have focus (window hidden or some such), it runs
12534                 - if the active control being selected doesn't actually 
12535                 exist in the container, it returns
12536         
12537         * Form.cs
12538         
12539         - The ShowDialog now gets the current form as the owner when
12540         invoking without parameters, and correctly activates the owner 
12541         when returning
12542         
12543         * MessageBox.cs
12544         
12545         - MessageBox now catches the Escape key to exit
12546
12547 2006-10-20  Chris Toshok  <toshok@ximian.com>
12548
12549         * PropertyGridView.cs: fix a number of issues (bug #78565, and
12550         most of bug #79676):
12551
12552         - you can navigate around the property grid with the arrow keys.
12553
12554         - the dropdown is sized properly when the pg has a vertical
12555         scrollbar.
12556
12557         - fix the indentation for subentries, and properly select the
12558         entire label rect.
12559
12560         - fix the gray bar's drawing (only draw it to the last element,
12561         not for the height of the control.  Also make sure we draw that
12562         last horizontal grid line.
12563
12564         - use the same mechanism the datagrid uses wrt the editing textbox
12565         when scrolling/resizing/etc.  Namely, we hide it first, do the
12566         operation, then show it again (if it's still visible).
12567         
12568         - aggressively remove a lot of unnecessary refreshes (and also
12569         calls to Invalidate(). call more limited variants, and only redraw
12570         what we need.)
12571         
12572         * PropertyGrid.cs:
12573
12574         - when we're populating the merged collection, fill in the UI
12575         parent with either the passed in item, or the category item we
12576         create.
12577
12578         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
12579
12580         * GridItem.cs: drop some fully qualified names.
12581         
12582         * GridEntry.cs: add a "UIParent", which is basically the parent
12583         treenode.
12584
12585         * GridItemCollection.cs: add an IndexOf method.
12586
12587 2006-10-20  Mike Kestner  <mkestner@novell.com>
12588
12589         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
12590         a working win32 NC invalidation mechanism, we can't invalidate
12591         menus.  [Fixes #79705]
12592
12593 2006-10-20  Mike Kestner  <mkestner@novell.com>
12594
12595         * ListBox.cs : don't update the VScrollbar if the list is empty,
12596         just hide it.  [Fixes #79692]
12597
12598 2006-10-20  Jackson Harper  <jackson@ximian.com>
12599
12600         * RichTextBox.cs: Handle some special chars better, and don't skip
12601         the entire group when we encounter a special char that we don't
12602         handle correctly.
12603
12604 2006-10-18  Chris Toshok  <toshok@ximian.com>
12605
12606         * PropertyGridView.cs: address a number of issues from bug #79676,
12607         mostly of the cosmetic variety.
12608
12609         - The highlight rectangle for indented items not extends all the
12610         way to the left.
12611
12612         - Indented items aren't indented so much.
12613
12614         - the dropdown is properly sized width-wise if the pg has a
12615         vertical scrollbar.
12616
12617 2006-10-18  Chris Toshok  <toshok@ximian.com>
12618
12619         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
12620         systray stuff is rather convoluted to begin with.
12621
12622         systray icons are a single window for some reason (that I haven't
12623         figured out yet), and for them, client_window == whole_window.
12624         Given the way the tests are structured elsewhere to determine
12625         which paints are pending (client vs. nc), that situation will
12626         always yield PAINT, not NCPAINT.  So, if we have a pending
12627         nc_expose and no pending expose, remove the hwnd from the paint
12628         queue, and also set nc_expose_pending to false, to keep us from
12629         blocking further expose's adding the hwnd to the paint queue.
12630
12631         phew.  like i said, a rather convoluted change.  Fixes the
12632         notifyicon repaint issues in bug #79645.
12633
12634 2006-10-18  Chris Toshok  <toshok@ximian.com>
12635
12636         * Form.cs: when getting the backcolor of the form, don't get
12637         base.BackColor, as this allows parents to influence the background
12638         color.  This breaks mdi forms.  Instead, if the background_color
12639         is empty, return the default.
12640
12641 2006-10-18  Chris Toshok  <toshok@ximian.com>
12642
12643         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
12644         to being private instead of internal static.
12645
12646         * Control.cs: remove all the stupid ParentWaitingOnRecreation
12647         crap, it wasn't working for more deeply nested controls anyway,
12648         and we already have the is_recreating flag - use that instead.
12649         Before calling DestroyHandle in RecreateHandle, recurse through
12650         the control tree setting it to true.  this returns the recreate
12651         code to much of its original simplicity, while now guaranteeing we
12652         actually recreate everything we're supposed to.  This change gets
12653         fyireporting actually showing mdi children.
12654
12655 2006-10-17  Chris Toshok  <toshok@ximian.com>
12656
12657         * Form.cs: remove some debug spew, and collapse some duplicate
12658         code at the end of SetClientSizeCore.
12659
12660         * XplatUIX11.cs: 
12661         - add some more debug spew here too wrt Destroy handling.
12662         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
12663         in Control's handling of WM_DESTROY.
12664         - Remove the handling of zombie window DestroyNotifies from the
12665         event loop - we don't need it.  Now the only DestroyNotifies we
12666         actually handle are ones generated by X.
12667         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
12668         match gtk's (functioning) handling of this. This keep metacity
12669         from leaving droppings in the form of wm borders with no window
12670         contents all over the place.
12671
12672         * Control.cs:
12673         - add a bunch of debug spew wrt control recreation.
12674         - fix a bug where we weren't tracking Visible properly on
12675         recreated hwnds.
12676         - fixed the WM_PAINT double buffer handling to support re-entrant
12677         calls (yes, i know it's gross, but it's happening to us).
12678
12679 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12680         * ThemeWin32Classic.cs: changed drawing of selected days
12681         to make them look better.
12682
12683 2006-10-16  Chris Toshok  <toshok@ximian.com>
12684
12685         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
12686         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
12687
12688         * XplatUIX11.cs: move away from using hwnd.client_dc and
12689         hwnd.non_client_dc and on to a stack of dc's (and in window's
12690         case, PAINTSTRUCT's), so we can deal with nested Paint calls
12691         without puking or not disposing of Graphics objects.
12692
12693         * XplatUIOSX.cs: same.
12694
12695         * XplatUIWin32.cs: same.
12696
12697 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
12698
12699         * FileDialog.cs: Don't call on_directory_changed inside
12700           OnSelectedIndexChanged (it changes the SelectedIndex too).
12701           Instead move it to OnSelectionChangeCommitted.
12702
12703 2006-10-13  Chris Toshok  <toshok@ximian.com>
12704
12705         * XplatUIX11.cs: more Destroy work.  the current code does the
12706         following things, in order:
12707
12708         1. Enumerates all handles of all controls at or below the one
12709         being destroyed, in pre-order.  As it is doing this, it marks the
12710         handles as zombie and clears all references to them.
12711         
12712         2. calls XDestroyWindow on the window passed in.
12713
12714         3. SendMessage's WM_DESTROY to all he handles in the accumulated
12715         list.
12716
12717 2006-10-13  Chris Toshok  <toshok@ximian.com>
12718
12719         * XplatUIX11.cs: set hwnd.zombie to true before calling
12720         SendMessage (WM_DESTROY).  this keeps us from marking the new
12721         window a zombie, and also keeps us from calling sendmessage at
12722         all.
12723
12724 2006-10-13  Jackson Harper  <jackson@ximian.com>
12725
12726         * TextControl.cs: Do not show the caret and selection at the same
12727         time.  Reduces ugliness by 35%.
12728
12729 2006-10-13  Chris Toshok  <toshok@ximian.com>
12730
12731         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
12732         zombie after we do the recursive call, so we actually do call
12733         SendMessage on the children controls.
12734         (GetMessage): if we find a pending paint event for a zombie hwnd,
12735         remove the hwnd from the paint queue, or else it will always be
12736         there (and we'll effectively loop infinitely)
12737
12738 2006-10-13  Mike Kestner  <mkestner@novell.com>
12739
12740         * MenuItem.cs : add Selected format under keynav too.
12741         Fixes #79528.
12742
12743 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
12744
12745         * PropertyGrid.cs: Fixed some NRE's and small difference between our
12746         implementation and that of MS.
12747
12748 2006-10-13  Chris Toshok  <toshok@ximian.com>
12749
12750         * Control.cs (OnInvalidated) only futz with the invalid_region if
12751         the control is double buffered.  this fixes the apparent hang in
12752         the ListView unit tests.  Someone needs to make the
12753         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
12754
12755 2006-10-13  Chris Toshok  <toshok@ximian.com>
12756
12757         * PropertyGridView.cs:
12758
12759         - do a little refactoring so that only one place calls
12760         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
12761         else call that.  Also make it Refresh, since there are redraw bugs
12762         otherwise (we should take a look at that...)
12763
12764         - do a little more refactoring work to share the body of code
12765         involved with the drop down.  it was duplicated in the code
12766         dealing with the listbox handling and in the code dealing with the
12767         UITypeEditors.
12768
12769         - add a Capture to the dropdown form's control once it's
12770         displayed, and add a MouseDown handler that checks to make sure
12771         the position is inside the control.  If it's not, close the
12772         dropdown.  This fixes #78190.
12773
12774         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
12775         if the value is different than the initial value.
12776         
12777 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
12778
12779         * Control.cs: see #78650
12780         - Fixed GetNextControl for several cases:
12781                 - Changed FindFlatForward to return 
12782                 correct sibling control when more than one
12783                 control has same TabIndex as the currently 
12784                 focused one.
12785                 - Changed FindFlatBackward to loop children
12786                 from last to first and apply same logic as in
12787                 FindFlatForward
12788                 - Changed FindControlForward to search for
12789                 children when control is not a container
12790                 but has children, or search for siblings if
12791                 control is a container...
12792                 - Changed FindControlBackward   to continue
12793                 searching for child controls when hitting 
12794                 Panel-like parents
12795                 
12796         - Fixed Focus method to update ActiveControl
12797         (FocusTest.FocusSetsActive failure)
12798         
12799         * TabControl.cs:
12800         - Focus rectangle now refreshes when gaining
12801         or losing focus
12802         - Removed grab for Tab key on IsInputKey that 
12803         was keeping tab navigation from working (#78650)
12804
12805 2006-10-13  Chris Toshok  <toshok@ximian.com>
12806
12807         * PropertyGridView.cs:
12808         - Rewrite SetPropertyValue to loop over SelectedGridItem's
12809         SelectedObjects.
12810
12811         - Deal with GridItem.Value == null a few places.
12812
12813         * PropertyGrid.cs: 
12814         - replace the PopulateGridItemCollection with a pair of methods
12815         which compute the intersection of all the properties in the
12816         SelectedObjects array.  Fixes #79615.
12817
12818         - Throw ArgumentException from set_SelectedObjects if there's a
12819         null in the array.
12820
12821         - Add GetTarget method which can be used to traverse up the
12822         GridItem.Parent chain.  It depends on the assumption that
12823         selected_objects for different GridEntries are always in the same
12824         order (a safe assumption).  Use this method and loop over all the
12825         selected objects in the entry when calling RemoveValueChanged and
12826         AddValueChanged.
12827         
12828         * GridEntry.cs: Make this handle multiple selected objects.
12829         .Value returns null if not all the selected objects share the same
12830         value.
12831
12832 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
12833         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
12834           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
12835           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
12836           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
12837           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
12838         add additional functionality.
12839
12840 2006-10-12  Mike Kestner  <mkestner@novell.com>
12841
12842         * ErrorProvider.cs : new ToolTipWindow ctor sig.
12843         * HelpProvider.cs : new ToolTipWindow ctor sig.
12844         * ToolTip.cs : remove ToolTip param from Window sig since it is
12845         not used.
12846         * ToolBar.cs : add tooltip support.  Fixes #79565.
12847
12848 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12849
12850         * ComboBox.cs: move the events in set_SelectedIndex to 
12851         after the call to HighlightIndex in order to avoid 
12852         possible recursion and subsequent problems with the call
12853         to HighlightIndex and include a range check in 
12854         set_HighlightIndex. Fixes #79588
12855         
12856 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12857
12858         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
12859         to ui thread's settings instead of sunday. 
12860         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
12861
12862 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12863
12864         * DateTimePicker.cs
12865         * MonthCalendar.cs
12866         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
12867         and implement missing functionality (selecting different parts 
12868         of the date and edit them individually with the keyboard).
12869         
12870 2006-10-11  Chris Toshok  <toshok@ximian.com>
12871
12872         * Control.cs (OnInvalidated): fix NRE relating to last change.
12873
12874 2006-10-11  Chris Toshok  <toshok@ximian.com>
12875
12876         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
12877         atoms in _NET_WM_STATE here if the window is maximized.  We need
12878         to do this because we're *replacing* the existing _NET_WM_STATE
12879         property, so those atoms will be lost otherwise, and any further
12880         call to GetWindowState will return Normal for a window which is
12881         actually maximized.  Fixes #79338.
12882
12883 2006-10-11  Jackson Harper  <jackson@ximian.com>
12884
12885         * TextControl.cs: Special case for setting selection end to
12886         selection start, we basically kill the anchor.
12887         - some todo comments.
12888
12889 2006-10-11  Chris Toshok  <toshok@ximian.com>
12890
12891         * Control.cs: switch to using an "invalid_region" to track which
12892         parts of the image buffer need updating.  This is more code than
12893         the simple fix from r66532.  That version just attempted to always
12894         fill the entire buffer on redraw, which turns out to be
12895         inefficient when invalidating small rectangles.  This version
12896         simply adds the invalid rectangle to the invalid region.  When we
12897         get any WM_PAINT message we see if it can be filled using the
12898         image buffer, and if it can't (if the paint event's clip rectangle
12899         is visible in the invalid region) we first fill the image buffer.
12900         So, the image buffer is still a cache, we just fill it lazily.
12901
12902         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
12903         need it any longer.
12904
12905 2006-10-11  Chris Toshok  <toshok@ximian.com>
12906
12907         * XplatUIX11.cs (SetWindowPos): we need to update both position as
12908         well as size after calling XMoveResizeWindow.  This keeps us from
12909         ignoring future SetWindowPos calls.  Fixes the disappearing
12910         DateTimePicker in the ToolBarDockExample from bug #72499.
12911
12912 2006-10-11  Chris Toshok  <toshok@ximian.com>
12913
12914         * TextBoxBase.cs: reorder things a bit when it comes to
12915         resizing-causing-recalculation.  we were recalculating the
12916         document when our position was changed, which shouldn't happen.
12917         We only care about size changes.  Clear up some more redundant
12918         recalculation calls while I'm at it.  This makes the toolbar dock
12919         example snappy when you're just dragging toolbars around (since it
12920         causes a relayout whenever you move one.)
12921
12922 2006-10-11  Chris Toshok  <toshok@ximian.com>
12923
12924         * ToolBarButton.cs (get_Rectangle): this only returns
12925         Rectangle.Empty if Visible == false, or Parent == null.
12926         Parent.Visible doesn't matter.
12927
12928 2006-10-10  Chris Toshok  <toshok@ximian.com>
12929
12930         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
12931         by .net 1.1, so switch to an internal method instead.
12932
12933 2006-10-10  Chris Toshok  <toshok@ximian.com>
12934
12935         * Control.cs (WM_PAINT): when a control is double buffered we draw
12936         initially to the ImageBuffer and then copy from there.  But when a
12937         parent control which has child controls is double buffered, the
12938         initial drawing doesn't encompass the entire ClientRectangle of
12939         the parent control, so we end up with uninitialized bits (this is
12940         easily seen by dragging the top toolbar in
12941         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
12942         manually set the ClipRectangle of the paint_event (only the one we
12943         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
12944         of the nastiness in bug #72499.
12945
12946         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
12947         which we use in Control.cs's WM_PAINT handling.
12948
12949 2006-10-10  Jackson Harper  <jackson@ximian.com>
12950
12951         * TextBoxBase.cs: Finish off the autoscrolling stuff.
12952
12953 2006-10-10  Chris Toshok  <toshok@ximian.com>
12954
12955         * Cursor.cs: Apply a slightly different patch to the one suggested
12956         in #79609.
12957
12958 2006-10-10  Jackson Harper  <jackson@ximian.com>
12959
12960         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
12961         not the parent form.
12962         * TextControl.cs: use difference in old line count vs new count to
12963         calculate how many lines were added, this takes into account soft
12964         line breaks properly.
12965
12966 2006-10-10  Chris Toshok  <toshok@ximian.com>
12967
12968         * LinkLabel.cs: don't call MeasureCharacterRanges against a
12969         rectangle located at 0,0 and the size of the text.  Use
12970         ClientRectangle instead.  This fixes rendering of non-left aligned
12971         link labels.
12972
12973 2006-10-10  Jackson Harper  <jackson@ximian.com>
12974
12975         * TextBoxBase.cs: When we set the selection start position the
12976         caret.
12977         * TextControl.cs: Need to update the caret when we decrement it to
12978         zero.
12979         - Make sure that the selection_visible flag gets reset to false if
12980         the selection isn't visible.  Before this you could get it set to
12981         visible by changing the selection start, then changing the end to
12982         equal the start.
12983
12984 2006-10-09  Jackson Harper  <jackson@ximian.com>
12985
12986         * TreeView.cs: Don't update scrollbars when we aren't visible.
12987         * TreeNodeCollection.cs: Only need to update scrollbars if being
12988         added to an expanded visible node or the root node.
12989
12990 2006-10-09  Chris Toshok  <toshok@ximian.com>
12991
12992         * XplatUIX11.cs (SendMessage): fix NRE.
12993
12994 2006-10-09  Jackson Harper  <jackson@ximian.com>
12995
12996         * TextBoxBase.cs: Implement horizontal autoscrolling.
12997         * TextControl.cs: Add a movement types that allows moving forward
12998         and backwards without wrapping.
12999
13000 2006-10-09  Mike Kestner  <mkestner@novell.com>
13001
13002         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
13003         with focus "expansion" of labels.  Fixes #79532 and then some.
13004         * ThemeWin32Classic.cs : add LineLimit to ListView label format
13005         when wrapping.
13006
13007 2006-10-09  Jackson Harper  <jackson@ximian.com>
13008
13009         * TextBoxBase.cs: Set the default max values to MaxValue since
13010         we use the scrollbar for autoscrolling and the default value is
13011         100.  If we don't do this the caret won't keep up with typing
13012         after about 18 characters.
13013         * TextControl.cs: Make sure the selection is offset by the
13014         viewport x.  This fixes selection when using auto scrolling.
13015
13016 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
13017         
13018         * Form.cs: The active control should be selected after the 
13019         OnLoad so that any child control initialization that affects
13020         the selection is done. Fixes #79406
13021
13022 2006-10-06  Chris Toshok  <toshok@ximian.com>
13023
13024         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
13025         to have no evil effects.
13026
13027         - Stop selecting StructureNotifyMask on non-toplevel windows.
13028
13029           The only way children should be resized is by using the SWF api,
13030           and we already send WM_WINDOWPOSCHANGED messages in those cases.
13031           Toplevel windows can be interacted with via the window manager,
13032           and so we keep the input mask there.
13033
13034           The other event StructureNotifyMask gives us (that we care
13035           about) is DestroyNotify.  The code is already structured such
13036           that it assumes we won't be getting a DestroyNotify event for
13037           the window we pass to XDestroyWindow (which is what
13038           StructureNotifyMask is supposed to guarantee.)  So, that code
13039           shouldn't be affected by this either.
13040
13041         - Stop selecting VisibilityChangeMask altogether.
13042
13043           We weren't doing anything with the resulting events anyway.
13044         
13045         This vastly reduces the number of X requests and events we see
13046         when resizing/laying out a large ui.
13047
13048 2006-10-06  Chris Toshok  <toshok@ximian.com>
13049
13050         * ScrollableControl.cs (DisplayRectangle): we need to take into
13051         account the DockPadding regardless of whether or not auto_scroll
13052         == true.  rework this slightly to this effect, and fix bug #79606,
13053         and part of #72499 (you can now see the drag handles and drag
13054         toolbars around).
13055
13056 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
13057
13058         * ListViewItem.cs: Collections of selected and checked items are now
13059         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
13060         we mark the collection "dirty".
13061         * ListView.cs: Marked collections readonly. Modified UpdateSelection
13062         to only clear SelectedItems when a new item is selected and MultiSelect
13063         is enabled. CheckedItems and SelectedItems now subscribe to Changed
13064         event of ListViewItemCollection, and mark its list dirty whenever
13065         that event is fire. This allows us to return selected/checked items 
13066         in the same order as they are in the Items collection. This matches
13067         the MS behavior.
13068
13069 2006-10-06  Chris Toshok  <toshok@ximian.com>
13070
13071         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
13072         right mouse clicks.  Fixes bug #79593.
13073
13074 2006-10-06  Chris Toshok  <toshok@ximian.com>
13075
13076         * Splitter.cs: doh, fix splitters that don't want to cancel the
13077         movement when you drag them.  Also, impose the limits on the
13078         values we send to the SplitterMovingEvent.  Fixes #79598.
13079
13080 2006-10-06  Jackson Harper  <jackson@ximian.com>
13081
13082         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
13083         since we use this for auto scrolling also.
13084
13085 2006-10-05  Chris Toshok  <toshok@ximian.com>
13086
13087         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
13088         beginning to think that most datagrid column types don't need this
13089         method.  Fixes bug #79392.
13090
13091 2006-10-05  Chris Toshok  <toshok@ximian.com>
13092
13093         * DataGrid.cs: move back to a more lazy scheme for creating the
13094         CurrencyManager, so we aren't updating it every time you set
13095         either DataSource or DataMember.  Also, don't call
13096         RecreateDataGridRows if the currency manager hasn't changed.
13097
13098 2006-10-05  Chris Toshok  <toshok@ximian.com>
13099
13100         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
13101         emitted, SelectedIndex should already be updated.  Fixes bug
13102         #78929.
13103
13104 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
13105
13106         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
13107           ToolStripTextBox.cs: Initial commit.
13108         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
13109
13110 2006-10-05  Jackson Harper  <jackson@ximian.com>
13111
13112         * TabControl.cs: We need to invalidate the tab control area when
13113         new ones are added (duh).
13114
13115 2006-10-03  Chris Toshok  <toshok@ximian.com>
13116
13117         * Form.cs (ProcessDialogKey): if the focused control is in this
13118         form and is a button, call its PerformClick method here.  Fixes
13119         #79534.
13120
13121 2006-10-04  Jackson Harper  <jackson@ximian.com>
13122
13123         * TabPage.cs: Ignore setting of Visible, and add an internal
13124         method for setting the controls visibility.  TabPage's Visible
13125         property is a little strange on MS, this seems to make us
13126         compatible, and fixes cases where people set all the tab pages to
13127         visible.
13128         * TabControl.cs: Use the new internal setting on tab pages
13129         visibility.
13130
13131 2006-10-03  Mike Kestner  <mkestner@novell.com>
13132
13133         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
13134
13135 2006-10-03  Mike Kestner  <mkestner@novell.com>
13136
13137         * ListView.cs : use is_visible instead of Visible to check if 
13138         scrollbars should be placed/sized.  Also some max_wrap_width
13139         love for LargeIcon view.  [Fixes #79533]
13140
13141 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
13142
13143         * TextControl.cs :
13144           Make set_TextAlign() do actually update the align. Fixed #78403.
13145
13146 2006-10-03  Chris Toshok  <toshok@ximian.com>
13147
13148         * DataGrid.cs: fix a crash when switching datasources if the
13149         vertical scrollbar is at someplace other than Value = 0.  Also,
13150         reduce the number of recalculation passes we do in SetDataSource
13151         from 2 to 1.
13152
13153 2006-10-03  Jackson Harper  <jackson@ximian.com>
13154
13155         * TextBoxBase.cs: Move the if value the same bail check up, we
13156         don't want to empty the document if it is already empty, this
13157         seems to severly mess up the caret.  TODO: I should probably fix
13158         the empty statement to update teh caret somehow.
13159
13160 2006-10-03  Chris Toshok  <toshok@ximian.com>
13161
13162         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
13163         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
13164         reflection, an internal row type, properties on said type, etc.)
13165         will work with our datagrid.  Fixes #79531.
13166
13167 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
13168
13169         * FileDialog.cs: Don't crash if a path is not accessible
13170           (System.UnauthorizedAccessException). Fixes #79569.
13171         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
13172           a ':' too. Return unknown icon for those paths/files.
13173
13174 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
13175
13176         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
13177         GetContainerControl returns null.
13178
13179 2006-10-02  Chris Toshok  <toshok@ximian.com>
13180
13181         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
13182         call to XGetWindowAttributes instead of "handle".  fixes an X
13183         error using notifyicon after the NotifyIconWindow to Form base
13184         class switch.
13185
13186 2006-10-02  Chris Toshok  <toshok@ximian.com>
13187
13188         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
13189         server grab and looping we need to do to get down to the most
13190         deeply nested child window.
13191         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
13192         QueryPointer again after the WarpPointer so we can generate a
13193         proper (fake) MotionNotify event to be enqueued in the destination
13194         window's queue.
13195         (GetCursorPos): call QueryPointer.
13196
13197         Fixes #79556.
13198
13199 2006-10-02  Jackson Harper  <jackson@ximian.com>
13200
13201         * NotifyIcon.cs: Derive the notify icon from a form, so things
13202         like FindForm work on it.
13203         - Swallow the WM_CONTEXTMENU message, since that is generated on
13204         mouse down, and context menu is a mouse up kinda guy.  I believe
13205         the correct fix here is probably to make the notify icon entirely
13206         NC area, but this seems to work fine for anyone not manipulating
13207         WndProc.
13208
13209 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
13210
13211         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
13212           ToolStripItemCollection.cs, ToolStripLabel.cs,
13213           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
13214           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
13215           Initial implementation.
13216         * TextRenderer.cs: Provide padding to MeasureText.
13217
13218 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
13219
13220         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
13221         of ButtonBaseAccessibleObject. Fix bug #79552.
13222
13223 2006-10-02  Jackson Harper  <jackson@ximian.com>
13224
13225         * MdiWindowManager.cs: When maximizing use the containers client
13226         rect, not it's bounds, so nc area is accounted correctly.
13227         - Use the parent form's size for the menu position, since the
13228         client isn't always the full form size.
13229
13230 2006-10-01  Chris Toshok  <toshok@ximian.com>
13231
13232         * ScrollableControl.cs: make sure neither right_edge or
13233         bottom_edge are < 0, since they're used as LargeChange for the
13234         horiz/vert scrollbars respectively.  Fixes #79539.
13235
13236 2006-10-01  Chris Toshok  <toshok@ximian.com>
13237
13238         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
13239         the xplatuix11 code can cause us to destroy/recreate our handle.
13240
13241         * XplatUIX11.cs
13242         (SystrayAdd):
13243         - this code can be invoked many times for the same Hwnd.  Make
13244           sure we only destroy the client window once (the first time this
13245           method is called).  This fixes bug #79544.
13246         - Remove the call to the improperly bound XSync.  why we had two
13247           bindings to this, I will never know, but this call resulted in
13248           events being discarded from the queue(!).
13249         - correct a misunderstanding of _XEMBED_INFO - the second atom is
13250           not our current state but the state we wish to be in.  So, 0 if
13251           we don't want to be mapped.  Change it to 1.
13252         (SystrayRemove): The XEMBED spec makes mention of the fact that
13253         gtk doesn't support the reparent of client windows away from the
13254         embedder.  Looking at gtksocket-x11.c seems to agree with this.
13255         The only avenue we have for removing systray icons is to destroy
13256         them.  We don't want the handle to go away for good, though, so
13257         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
13258         #79545.
13259         
13260 2006-10-01  Chris Toshok  <toshok@ximian.com>
13261
13262         * Form.cs (WndProc): inline the native_enabled variable usage into
13263         the cases in which it's used.  Fixes #79536.
13264
13265 2006-09-29  Mike Kestner  <mkestner@novell.com>
13266
13267         * ListView.cs : toggle the selection state for ctrl clicks in 
13268         multiselect mode. [Fixes #79417]
13269
13270 2006-09-29  Mike Kestner  <mkestner@novell.com>
13271
13272         * ListView.cs : kill CanMultiSelect and refactor the selection
13273         code to support multiselection in the absence of mod keys. Steal
13274         arrow/home/end keys by overriding InternalPreProcessMessage to
13275         restore regressed keynav behavior.
13276         [Fixes #79416]
13277
13278 2006-09-29  Jackson Harper  <jackson@ximian.com>
13279
13280         * MdiClient.cs: Repaint the titlebars when the active window is
13281         changed.
13282
13283 2006-09-29  Chris Toshok  <toshok@ximian.com>
13284
13285         * Application.cs: when entering a runloop with a modal, make sure
13286         the hwnd is enabled.  Fixes #79480.
13287
13288 2006-09-29  Chris Toshok  <toshok@ximian.com>
13289
13290         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
13291         when ListManager.CanAddRows == false, bump us back one.
13292
13293         * DataGridColumnStyle.cs (ParentReadOnly): remove the
13294         listmanager.CanAddRows check.  This makes ArrayLists uneditable
13295         using a datagrid, which is not right.
13296         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
13297         is an IEditable, but call property_descriptor.SetValue regardless.
13298         fixes #79435.
13299
13300 2006-09-29  Chris Toshok  <toshok@ximian.com>
13301
13302         * DataGridBoolColumn.cs: we need to test equality in the face of
13303         possible null values (as is the case with the default NullValue).
13304         This patch keeps us from crashing in that case.
13305
13306 2006-09-29  Jackson Harper  <jackson@ximian.com>
13307
13308         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
13309         here, since it will get called for every node collection in the
13310         tree. This is now done in the treeview once the sorting is
13311         finished.
13312         * TreeView.cs: Recalculate the visible order, and update the
13313         scrollbars after sorting, set the top nope to the root so that the
13314         recalc actually works.
13315
13316 2006-09-29  Chris Toshok  <toshok@ximian.com>
13317
13318         * LinkLabel.cs: more handling of the default link collection in
13319         the face of LinkArea manipulation.  The default link collection
13320         contains 1 element (start=0,length=-1).  If the user sets LinkArea
13321         to anything and the links collection is the default, clear it.
13322         Then only add the link if its nonempty.  Fixes #79518.
13323
13324 2006-09-29  Chris Toshok  <toshok@ximian.com>
13325
13326         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
13327         piece correctly when we hit a '\n'.  Fixes #79517.
13328
13329 2006-09-29  Chris Toshok  <toshok@ximian.com>
13330
13331         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
13332         change the binding of gdk_init_check to take two IntPtr's, and
13333         pass IntPtr.Zero for both of them.  Fixes #79520.
13334
13335 2006-09-29  Mike Kestner  <mkestner@novell.com>
13336
13337         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
13338         [Fixes #78779]
13339
13340 2006-09-28  Jackson Harper  <jackson@ximian.com>
13341
13342         * XplatUIX11.cs: When translating NC messages make sure we go from
13343         whole window to screen, not client window to screen.
13344         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
13345         method doesn't exist
13346         - Skip over controls that aren't forms when arranging.
13347
13348 2006-09-28  Jackson Harper  <jackson@ximian.com>
13349
13350         * XplatUIWin32.cs: Clip the rect to the parent window.
13351         * XplatUIStructs.cs: Add clipping modes struct.
13352         * InternalWindowManager.cs: New private method that factors title
13353         bar heights in when calculating the pos of an NC mouse message.
13354         - Use SendMessage to force a paint when the form's size is changed
13355         instead of painting the decorations immediately.
13356         - Don't let the NC button click messages get to DefWndProc,
13357         because they will attempt to handle windowing themself, and this
13358         messes up z-order (it will put them in front of the scrollbars).
13359         * XplatUIX11.cs: Make sure that we don't reset window managers if
13360         we already have one (ie the window is an MDI window).
13361
13362 2006-09-28  Chris Toshok  <toshok@ximian.com>
13363
13364         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
13365         menu code really needs going over.
13366
13367 2006-09-27  Chris Toshok  <toshok@ximian.com>
13368
13369         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
13370         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
13371         window is maximizable.  So, we need to make sure that even if we
13372         clear the border/wm frame of those functions, they're still
13373         available (basically, we remove the decoration without removing
13374         the function).  Half the fix for #79338.
13375
13376 2006-09-27  Chris Toshok  <toshok@ximian.com>
13377
13378         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
13379         Fixes bug #79515.
13380
13381 2006-09-27  Chris Toshok  <toshok@ximian.com>
13382
13383         * Splitter.cs: reorder things a bit so that we don't actually
13384         draw/move the splitter until after calling OnSplitterMoving.  This
13385         lets users cancel/disallow the movement by explicitly setting
13386         event.SplitX/SplitY.  Fixes #79372.
13387
13388 2006-09-27  Jackson Harper  <jackson@ximian.com>
13389
13390         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
13391         because it is most likely on a window being destroyed, and that
13392         will give us an X11 error.
13393
13394 2006-09-27  Chris Toshok  <toshok@ximian.com>
13395
13396         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
13397         the dropdown button now toggles between showing and hiding the
13398         dropdown.  Also, get rid of dropdown_form_showing and just use
13399         dropdown_form.Visible.  We still don't do a grab, but I'll leave
13400         that part to someone who has handled Capture-fu before.
13401
13402 2006-09-27  Chris Toshok  <toshok@ximian.com>
13403
13404         * DataGrid.cs: return false if alt isn't pressed when '0' is
13405         pressed.  this keeps the '0' key from being swallowed, and fixes
13406         bug #79350.
13407
13408 2006-09-27  Chris Toshok  <toshok@ximian.com>
13409
13410         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
13411         Calling Refresh (in response to a scrollbar event) screws up the
13412         scrollbar painting.  Fixes bug #78923.
13413
13414 2006-09-27  Chris Toshok  <toshok@ximian.com>
13415
13416         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
13417         then insert into hashtable" blocks threadsafe.
13418
13419 2006-09-27  Chris Toshok  <toshok@ximian.com>
13420
13421         * MessageBox.cs (CreateParams): the styles should be |'ed with our
13422         baseclass's, since otherwise the
13423         ControlBox/MinimizeBox/MaximizeBox assignments above have no
13424         effect.  This gets the close button back in messageboxes.
13425
13426 2006-09-27  Chris Toshok  <toshok@ximian.com>
13427
13428         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
13429         flag, not just != 0.  this makes flags that are actually multiple
13430         bits (like WS_CAPTION) work.  fixes bug #79508.
13431
13432 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
13433
13434         * PageSetupDialog.cs: add support for getting and settings the 
13435         paper size, source and orientation.
13436
13437 2006-09-26  Chris Toshok  <toshok@ximian.com>
13438
13439         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
13440         and caption == "", we need to remove the resize handles as well as
13441         the title bar.
13442
13443         * Control.cs (set_Text): turns out that setting Text on a form
13444         should change the WM styles on the window, since if ControlBox ==
13445         false, the only way to get a window border is to have a non-""
13446         Text property.  check winforms/forms/text.cs for an example.  so,
13447         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
13448         update both window styles and title.  This fixes a lot of dialogs
13449         (including the preferences dialog in MonoCalendar.)
13450
13451 2006-09-26  Chris Toshok  <toshok@ximian.com>
13452
13453         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
13454         control isn't a Form), call Win32ShowWindow to hide the window,
13455         but don't update the control Visible property.  When we reparent
13456         back to a parent control, call SetVisible in order for the
13457         window's visibility to be reinstated.
13458
13459         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
13460         the FosterParent.
13461
13462         * Control.cs (ControlCollection.Remove): remove that value.Hide()
13463         call for good, since it breaks MonoCalendar (and other things I'm
13464         sure.) Also, set all_controls to null *after* the owner calls,
13465         which end up regenerating it.
13466         (ChangeParent): allow new_parent to be == null, passing
13467         IntPtr.Zero down to XplatUI.
13468
13469         this fixes #79294 the right way.
13470
13471 2006-09-26  Mike Kestner  <mkestner@novell.com>
13472
13473         * GridEntry.cs : internal SetParent method.
13474         * PropertyGrid.cs : attach to property changed on the proper
13475         target if we have a hierarchical grid with subobjects. Setup
13476         GridItem.Parent for hierarchical items.
13477         * PropertyGridView.cs : Set value on the correct target for
13478         hierarchical grids. [Fixes #78903]
13479
13480 2006-09-26  Chris Toshok  <toshok@ximian.com>
13481
13482         * Control.cs (ChildNeedsRecreating): this should return true if
13483         either we're being recreated and the child is in our list, or our
13484         parent is waiting for our recreation.
13485
13486 2006-09-26  Chris Toshok  <toshok@ximian.com>
13487
13488         * Control.cs (ControlCollection.Remove): reinstate the
13489         value.Hide() call as suggested in bug #79294.
13490
13491 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
13492
13493         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
13494         coordinates (versus a relative move).
13495
13496 2006-09-26  Chris Toshok  <toshok@ximian.com>
13497
13498         * Control.cs: rework child recreation a little bit.  It turns out
13499         that we race between the DestroyNotify the WM_DESTROY message.  If
13500         the parent gets its DestroyNotify before the child gets the
13501         WM_DESTROY message, the child ends up not recreating (since the
13502         parent finishes its recreation on DestroyNotify, and the child
13503         checks ParentIsRecreating.)
13504
13505         So, instead we store off a list of all the child controls which
13506         need to be recreated when the parent control starts to recreate
13507         itself.  Then, when child controls get their WM_DESTROY message we
13508         check to see if they're in the parent's pending recreation list,
13509         and if so, we recreate.  This removes all dependency on ordering
13510         from the code and fixes the initial MonoCalendar upgrade dialog.
13511         
13512 2006-09-26  Jackson Harper  <jackson@ximian.com>
13513
13514         * TextControl.cs: Use the Line to get the length of the line,
13515         since soft line breaks can change the end line.
13516
13517 2006-09-26  Chris Toshok  <toshok@ximian.com>
13518
13519         * Control.cs (ControlCollection.AddImplicit): don't add the
13520         control again if it's already in one of our lists.  This keeps us
13521         from adding controls over and over again for comboboxes when their
13522         handle gets recreated (as the combobox adds implicit controls in
13523         OnHandleCreated).  Fixes the X11 errors in bug #79480.
13524
13525 2006-09-26  Jackson Harper  <jackson@ximian.com>
13526
13527         * TextControl.cs: When deleting characters make sure that any
13528         orphaned zero lengthed tags get deleted.
13529         - Fix ToString for zero lengthed tags.
13530
13531 2006-09-25  Jackson Harper  <jackson@ximian.com>
13532
13533         * TextControl.cs: When getting a tag at the location there can be
13534         multiple tags at the same spot, these are 0-lengthed tags that
13535         appear when extra formatting has been stuck in a location.  We
13536         need to pull out the last of these 0 lengthed tags.
13537
13538 2006-09-25  Jackson Harper  <jackson@ximian.com>
13539
13540         * TextControl.cs: Fix print out in debug method.
13541         * TextBoxBase.cs: When text is set bail if we are setting to the
13542         previous value.
13543         
13544 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
13545
13546         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
13547           It is now possible to change the selected index in a FontXXXListBox
13548           with the up and down arrow keys from the FontXXXTextBoxes.
13549           Also, send the FontXXXTextBox mouse wheel event to the corresponding
13550           FontXXXListBoxes to match ms.
13551
13552 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
13553
13554         * SystemInformation.cs: Return a clone of the theme's MenuFont because
13555         anyone can dispose it, anytime. All other properties returns enums, 
13556         structs or basic types so they don't need such tricks.
13557
13558 2006-09-22  Jackson Harper  <jackson@ximian.com>
13559
13560         * XplatUI.cs:
13561         * XplatUIWin32.cs:
13562         * Clipboard.cs:
13563         * DataFormats.cs:
13564         * XplatUIOSX.cs:
13565         * XplatUIDriver.cs: Update interface to add a primary selection
13566         flag, so the driver can use the primary selection buffer if
13567         needed.
13568         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
13569
13570         * RichTextBox.cs: We need to supply the data object to paste now
13571         (so we can choose to supply CLIPBOARD or PRIMARY).
13572         * TextBoxBase.cs: Supply data object to paste (see above).
13573         - Middle click uses the primary selection data object.
13574         
13575 2006-09-21  Chris Toshok  <toshok@ximian.com>
13576
13577         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
13578         of SetWMStyles.  It's still a rat's nest and is largely
13579         order-dependent which I dislike immensely.  This also fixes the X
13580         button disappearing from toplevel forms.
13581
13582 2006-09-21  Mike Kestner <mkestner@novell.com>
13583
13584         * ListBox.cs: move Jordi's click/dblclick raising code to the
13585         mouse up handler.
13586
13587 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
13588
13589         * ListBox.cs: Fixes 79450
13590
13591 2006-09-21  Mike Kestner <mkestner@novell.com>
13592
13593         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
13594         to deal with people updating the TreeNodeCollection after the tree
13595         is disposed.  "Fixes" 79330.
13596
13597 2006-09-20  Jackson Harper <jackson@ximian.com>
13598
13599         * TextControl.cs: Push the cursor record onto the undo stack
13600         before the delete action. This fixes 78651.
13601
13602 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
13603
13604         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
13605         CreateParams. Fixes 79329.
13606
13607 2006-09-19  Chris Toshok  <toshok@ximian.com>
13608
13609         * XplatUIX11.cs: a couple of blanket code massage passes to clean
13610         things up a bit.  First, get rid of the NetAtoms array (and the NA
13611         enum), and just embed the atoms as static fields.  Also, add a
13612         couple of functions (StyleSet and ExStyleSet) to clean up all the
13613         bitmask testing of styles.
13614
13615         * X11Structs.cs: remove the NA enum, not needed anymore.
13616         
13617 2006-09-19  Chris Toshok  <toshok@ximian.com>
13618
13619         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
13620         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
13621         added cleanup to get MessageBox titles appearing again, which were
13622         broken by my earlier fix for caption-less/ControlBox-less windows.
13623
13624 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
13625
13626         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
13627           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
13628           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
13629           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
13630           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
13631           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
13632           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
13633           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
13634           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
13635           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
13636           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
13637             Inital import.
13638         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
13639           ToolStripButton.cs: Stubs needed for above.
13640         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
13641
13642 2006-09-15  Chris Toshok  <toshok@ximian.com>
13643
13644         * XplatUIX11.cs:
13645         - make the MessageQueues hashtable Synchronized.
13646         
13647         - SendMessage: if the Hwnd is owned by a different thread, use the
13648         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
13649         thread.  Fixes bug #79201.
13650
13651 2006-09-15  Chris Toshok  <toshok@ximian.com>
13652
13653         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
13654         ControlBox == false, we disallow maximize/minimize/close.  If the
13655         form Caption is "" we also disallow move (and get rid of the Title
13656         decoration).  Unfortunately, regardless of how things are set,
13657         we're stuck with the Title and WM menu.
13658
13659 2006-09-15  Chris Toshok  <toshok@ximian.com>
13660
13661         * Application.cs: add locking around the static message_filters
13662         ArrayList, part of #79196.
13663
13664 2006-09-15  Chris Toshok  <toshok@ximian.com>
13665
13666         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
13667         Form.ControlBox == false, the window has no titlebar nor resize
13668         handles.  fixes bug #79368.
13669
13670 2006-09-15  Chris Toshok  <toshok@ximian.com>
13671
13672         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
13673         >= 0.  Fixes bug #79370.
13674
13675 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
13676         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
13677         * Control.cs:
13678             Add properties: LayoutEngine, Margin, DefaultMargin.
13679             Add method: GetPreferredSize.
13680             Move layout logic from PerformLayout to layout engines. 
13681
13682 2006-09-13  Chris Toshok  <toshok@ximian.com>
13683
13684         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
13685         fix for #79326 broke #78718, so this change addresses that.
13686
13687         - in SendWMDestroyMessages remove the call to
13688         CleanupCachedWindows, since we might be recreating the control and
13689         need to maintain the references to right Hwnd handles.  Also, set
13690         the zombie flag to true for each of the children in the hierarchy
13691         instead of calling hwnd.Dispose.  This will cause GetMessage to
13692         ignore all events for the window except for DestroyNotify.
13693
13694         - In GetMessage, ignore messages except for DestroyNotify for
13695         zombie hwnds.
13696         
13697         * Control.cs: revert the is_recreating fix from the last
13698         ChangeLog.  It's definitely "right", but it breaks switching from
13699         an MDI form to a non-MDI form.  Will need to revisit that.
13700
13701         * Hwnd.cs: add a zombie flag, which means "the
13702         client_window/whole_window handles are invalid, but we're waiting
13703         for the DestroyNotify event to come in for them".  Set the flag to
13704         false explicitly if setting WholeWindow/ClientWindow, and also
13705         when Disposing.
13706         
13707 2006-09-13  Chris Toshok  <toshok@ximian.com>
13708
13709         * XplatUIX11.cs: rework window destruction slightly.
13710
13711         - when destroying the windows associated with a control, we don't
13712         need 2 separate XDestroyWindow calls.  Just the one for the
13713         whole_window (or for client_window if whole_window is somehow
13714         IntPtr.Zero -- can this happen?) is enough.
13715
13716         - reworked SendWMDestroyMessages slightly, so we always dispose
13717         the child control hwnd's after sending the messages.
13718         
13719         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
13720         the two places it was used (one was even using hwnd.Handle and the
13721         other hwnd.client_window.  ugh), adding another call in
13722         SendWMDestroyMessages.  We need this new call because now the
13723         DestroyNotify events in the queue will be ignored for the child
13724         controls (as their hwnd's were disposed, and the window id's
13725         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
13726
13727         - this fixes bug #79326.
13728
13729 2006-09-13  Chris Toshok  <toshok@ximian.com>
13730
13731         * Control.cs: don't always set is_recreating to false at the end
13732         of RecreateHandle, since sometimes we're not done (and won't be
13733         until WndProc handles the WM_DESTROY message).  Also, set
13734         is_recreating to false in the WM_DESTROY handling code.  Part of
13735         the fix for bug #79326.
13736
13737 2006-09-13  Miguel de Icaza  <miguel@novell.com>
13738
13739         * X11DesktopColors.cs: Start the droppage of debugging messages.
13740
13741         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
13742
13743 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
13744
13745         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
13746
13747 2006-09-12  Chris Toshok  <toshok@ximian.com>
13748
13749         * DataGrid.cs (get_ListManager): if the list_manager is null, try
13750         to create it using SetDataSource.  Fixes bug #79151.
13751
13752 2006-09-11  Chris Toshok  <toshok@ximian.com>
13753
13754         * XEventQueue.cs: add a DispatchIdle property.
13755
13756         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
13757         either the queue is null, or the queue has DispatchIdle set to
13758         true.
13759         (DoEvents): set queue.DispatchIdle to false around the
13760         peek/translate/dispatch message loop in this method.  This keeps
13761         Application.Doevents from emitting idle events.  Part of the fix
13762         for #78823.
13763
13764 2006-09-11  Chris Toshok  <toshok@ximian.com>
13765
13766         * DataGrid.cs (set_DataSource): make this work for both the
13767         winforms/datagrid test and ReportBuilder.  It seems as though when
13768         we've created a ListManager (or maybe it's if we have a
13769         BindingContext?), when we set the DataSource it clears the
13770         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
13771         #79333.
13772
13773 2006-09-11  Chris Toshok  <toshok@ximian.com>
13774
13775         * XplatUIX11.cs: deal with queue being null, which happens in all
13776         the Clipboard functions.  Fixes one of the two problems mentioned
13777         in #78612.
13778
13779 2006-09-11  Chris Toshok  <toshok@ximian.com>
13780
13781         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
13782         button on various spots (including outside the menu) works closer
13783         to MS, and doesn't crash.  Fixes #79343.
13784
13785 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
13786
13787         * ListView.cs: Do not initialize item_sorter in init. To match MS,
13788         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
13789         and the internal comparer is set. When a new ListViewItemSorter is set,
13790         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
13791         was specified. No further processing is necessary if SortOrder is set
13792         to it's current value. If Sorting is modified to None, and View is
13793         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
13794         (either custom or our internal ItemComparer) to null, on 1.0 profile
13795         only set item_sorter to null if its our internal IComparer. If Sorting
13796         is modified to Ascending or Descending, then use our internal IComparer
13797         if none is set, and if the current IComparer is our internal one then:
13798         on 2.0 profile always replace it with one for new Sorting, and on 1.0
13799         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
13800         Enum.IsDefined to verify whether a valid View value is specified in
13801         its setter. Automatically sort listview items when listview is
13802         created. In Sort, do nothing if ListView is not yet created, or if
13803         no item_sorter is set (no Sorting was set, Sorting was explicitly set
13804         to None or ListViewItemSorter was set to null). Added Sort overload
13805         taking a bool to indicate whether the ListView should be redrawn when
13806         items are sorted (we use this in ListViewItemCollection to avoid double
13807         redraws). Modified our internal IComparer to take the sort order into
13808         account. In Add and AddRange methods of ListViewItemCollection, also
13809         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
13810         view), but use overload with noredraw option to avoid double redraw.
13811         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
13812         true when View is Tile, and do the same when attempting to set View to
13813         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
13814         for selected/checked indices, as it involves overhead when sorting is
13815         done while these collections are not used all that often. Instead
13816         we'll build the indices on demand. Modified IList implementation of
13817         CheckedIndexCollection to use public methods if object is int.
13818         Modified CheckedListViewItemCollection to hide checked items if
13819         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
13820         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
13821         IList implementation in SelectedIndexCollection to use public methods
13822         if object is int. Modified SelectedListViewItemCollection to hide
13823         selected items if listview is not yet created.
13824         * ListViewItem.cs: CheckedIndices list no longer needs to be
13825         maintained separately (see ListView changes). Also clone font, fixes
13826         test failure.
13827
13828 2006-09-11  Mike Kestner  <mkestner@novell.com>
13829
13830         * ComboBox.cs: if we are updating the contents of the currently
13831         selected index, refresh the control or the textbox selection.
13832         [Fixes #79066]
13833
13834 2006-09-11  Mike Kestner  <mkestner@novell.com>
13835
13836         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
13837         the 'specified' logic has been moved there.  This seems like a bug 
13838         in Control.cs, since our current SetBoundsCore completely ignores 
13839         the specified parameter.  Peter's commit seems to indicate that is 
13840         the way the MS control implementation works.  [Fixes #79325]
13841
13842 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
13843
13844         * XplatUI.cs: Set default_class_name to be composed
13845         of current domain id. This allows MWF to be loaded in multiple
13846         domains on Win32.
13847
13848 2006-09-09  Miguel de Icaza  <miguel@novell.com>
13849
13850         * X11Keyboard.cs: If we are unable to obtain the input method, do
13851         not call CreateXic to create the input context.   Should fix
13852         #78944/79276.
13853
13854 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
13855
13856         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
13857           Simplified gnome support by adding more pinvokes to get the
13858           icon for a file or mime type.
13859
13860 2006-09-08  Jackson Harper  <jackson@ximian.com>
13861
13862         * MenuAPI.cs: Deslect popup context menu items before closing the
13863         window, so that you don't see the previously selected item
13864         selected when you reopen the menu.
13865         * TextControl.cs: Update the cursor position even if we don't have
13866         focus.  This fixes typing in things like the ComboBox.  I'm not
13867         totally sure we should always set the visibility if we don't have
13868         focus, but couldn't find any corner cases where the cursor showed
13869         up when it shouldn't.
13870
13871 2006-09-08  Chris Toshok  <toshok@ximian.com>
13872
13873         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
13874         our arrays are length 256.  & 0xff before indexing.  Fixes the
13875         crash in bug #78077.
13876         
13877 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13878
13879         * ThemeWin32Classic.cs: 
13880         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
13881         is true. Handle that check box too.
13882
13883 2006-09-07  Chris Toshok  <toshok@ximian.com>
13884
13885         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
13886         79244.
13887
13888 2006-09-07  Chris Toshok  <toshok@ximian.com>
13889
13890         * Control.cs: in set_BackColor only do the work if
13891         background_color != value.
13892
13893         * XplatUIX11.cs: move the clearing of invalid areas (both client
13894         and nc) to the same block of code where we set (nc_)expose_pending
13895         to false.  That is, move it from PaintEventEnd to PaintEventStart,
13896         so things that cause invalidates from within OnPaint will trigger
13897         another call to OnPaint.  Fixes bug #79262.
13898
13899 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
13900
13901         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
13902         * FileDialog.cs: Fix typo
13903
13904 2006-09-07  Jackson Harper  <jackson@ximian.com>
13905
13906         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
13907         for tab pages if they have any.
13908
13909 2006-09-06  Mike Kestner  <mkestner@novell.com>
13910
13911         * Splitter.cs: use the "current" rect when finishing drag handle
13912         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
13913
13914 2006-09-06  Mike Kestner  <mkestner@novell.com>
13915
13916         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
13917         support offset splitters. [Fixes #79298]
13918
13919 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
13920
13921         * Mime.cs: Fixed a bug that could override the global mime type
13922           result.
13923
13924 2006-09-05  Jackson Harper  <jackson@ximian.com>
13925
13926         * TabControl.cs: Better calculation method for setting the slider
13927         pos. Prevents crashes on really wide tabs.
13928         - Draw Image on tab pages if an image list is used.
13929
13930 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13931
13932         * MonthCalendar.cs: When Font changes, the Size should be
13933         updated to fit the new font's space requirements.
13934
13935 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
13936
13937         * ListBox.cs: If the items are cleared with Items.Clear set
13938           top_index to 0.
13939
13940 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13941
13942         * MonthCalendar.cs: Handle arrow keys as input keys. Also
13943         fire DateChanged event instead of DateSelected event when
13944         the date was changed by keyboard interaction.
13945
13946 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13947
13948         * DateTimePicker.cs: Handle DateChanged for the associated
13949         month_calendar control, and set month_calendar.Font from 
13950         OnFontChanged method, as well as resize the height of the
13951         control when needed. Make PreferredHeight proportional.
13952
13953 2006-09-01  Chris Toshok  <toshok@ximian.com>
13954
13955         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
13956         properties.
13957
13958         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
13959
13960 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
13961
13962         * FileDialog.cs: Set ClientSize instead of window size, to allow space
13963           for decorations (Fixes #79219)
13964
13965 2006-09-01  Mike Kestner  <mkestner@novell.com>
13966
13967         * ComboBox.cs: first stab at sorting plus some selection handling
13968         fixes to bring us more in line with MS behavior.  Also switches back
13969         to index based selection.  Alternative patches for index-based 
13970         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
13971         and latency@gmx.de on bug 78848.  I assume they were similar to this
13972         code I've had simmering in my tree forever.
13973         [Fixes #78848]
13974
13975 2006-09-01  Chris Toshok  <toshok@ximian.com>
13976
13977         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
13978         when setting list position guard against ending up with a -1 index
13979         (the other part of the fix for #78812).  Should probably make sure
13980         we don't need the analogous fix in the ItemDeleted case.
13981
13982         * DataGrid.cs:
13983         - in SetDataSource, work around the fact that the way
13984         OnBindingContextChanged is invoked will cause us to re-enter this
13985         method.  I'll remove the hack once I investigate
13986         OnBindingContextChanged.
13987
13988         - fix the logic in set_DataSource and set_DataMember (basically
13989         what to do if the other of the two is null.)
13990         
13991         - in OnListManagerItemChanged, we need to take into account the
13992         edit row when deciding whether or not to call RecreateDataGridRows
13993         (part of the fix for #78812).
13994
13995 2006-09-01  Jackson Harper  <jackson@ximian.com>
13996
13997         * Splitter.cs: Don't do anything if there is no control to affect
13998         (prevents us from crashing in weird tet cases).
13999         * TreeView.cs: Bounding box for the mouse movement reverting
14000         focus/selection back to previously selected node.  This matches
14001         MS, and makes the tree a lot more useable.
14002         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
14003         use clipping so they are not drawn.  This fixes when the control
14004         is set to have a transparent background, or if it was over an
14005         image.
14006
14007 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
14008
14009         * MimeIcon.cs: Improved handling for reading default icons when
14010           using gnome (2.16 made it necessary). Check and read svg icons
14011           first, then 48x48 and then 32x32 icons.
14012
14013 2006-08-31  Chris Toshok  <toshok@ximian.com>
14014
14015         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
14016         visible.
14017
14018         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
14019         ProcessKeyPreview.  Fixes part of #77806.
14020
14021         * DataGrid.cs: big patch.
14022
14023         - revert the queueing up of DataSource/DataMember if inside
14024         BeginInit/EndInit calls.  That's not the way the datagrid achieves
14025         its delayed databinding.  Instead, call SetDataSource in
14026         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
14027         #78811.
14028
14029         - Also, it wasn't mentioned in #78811, but the test case exhibits
14030         behavior that was lacking in our datagrid implementation - Columns
14031         that have mapping names that don't exist in the datasource's
14032         properties aren't shown.  Yuck.  To fix this I added the bound
14033         field to the column style, and basically any calculation to figure
14034         out anything about columns uses a loop to find the bound columns.
14035         still need to investigate if I can cache an array of the bound
14036         columns or if the indices must be the same.
14037
14038         - When setting CurrentCell, we no longer abort if the cell being
14039         edited was in the add row.  This fixes the other part of #77806.
14040
14041         - The new code also fixes #78807.
14042         
14043         * ThemeWin32Classic.cs: perpetrate the same disgusting
14044         column.bound field hack, and only render bound fields.
14045
14046 2006-08-31  Chris Toshok  <toshok@ximian.com>
14047
14048         * DataGridColumnStyle.cs: add bound field.  this field is true if
14049         the datasource has a property corresponding to the mapping name.
14050
14051         * DataGridTableStyle.cs: set the bound field on the column styles
14052         depending on whether or not we have a column for that property.
14053
14054 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
14055
14056         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
14057           splitter control (fixes #79228)
14058
14059 2006-08-31  Chris Toshok  <toshok@ximian.com>
14060
14061         * DataGridColumnStyle.cs: we need to delay the assignment of
14062         property descriptor until the last possible moment due to the lazy
14063         databinding stuff in the datagrid.  Also, fix the exceptions
14064         thrown by CheckValidDataSource to match MS.
14065
14066 2006-08-31  Jackson Harper  <jackson@ximian.com>
14067
14068         * Form.cs: When activated select the active control, if there is
14069         no active control, we select the first control.
14070         * XplatUIX11.cs: If there is no focus control when we get a
14071         FocusIn event, find the toplevel form and activate it.  This
14072         occurs when you popup a window, it becomes the focus window, then
14073         you close that window, giving focus back to the main window.
14074
14075 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14076
14077         * MonthCalendar.cs: 
14078         * ThemeWin32Classic.cs: Cache Font in bold style, as well
14079         as StringFormat with Center alignments in MonthCalendar,
14080         instead of creating new ones when drawing the control. 
14081         Also, draw the month name in bold style.
14082
14083 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14084
14085         * Control.cs:
14086           - PerformLayout(): It would seem MS performs the fill even if the 
14087             control is not visible (part of #79218 fix)
14088           - ResetBackColor(): Use the setter to reset the color, to allow
14089             overriders to catch the change.
14090         * Form.cs:
14091           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
14092           - CreateHandle(): dito (part of $79218 fix)
14093           - Don't set an icon if we have a dialog
14094         * ScrollableControl.cs:
14095           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
14096           - ScrollIntoView(): No need to scroll if control is already visible
14097             (resolves fixme and fixes #79218)
14098
14099 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14100
14101         * MonthCalendar.cs: Change proportions in SingleMonthSize
14102         to match the aspect of the original control.
14103
14104 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
14105
14106         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
14107           get updated when they get maximized.
14108
14109 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
14110
14111         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
14112
14113 2006-08-29  Chris Toshok  <toshok@ximian.com>
14114
14115         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
14116
14117 2006-08-29  Jackson Harper  <jackson@ximian.com>
14118
14119         * TreeView.cs: Need to track selected node and highlighted node,
14120         they aren't always the same thing, when the mouse is down on a
14121         node it is hilighted, but not selected yet.
14122         - Do the HideSelection stuff right
14123         - Need to focus on rbutton mouse down. And redraw selection when
14124         right click is mouse upped.
14125
14126 2006-08-29  Mike Kestner  <mkestner@novell.com>
14127
14128         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
14129         when SubItems.Count < Columns.Count.  [Fixes #79167]
14130
14131 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
14132
14133         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
14134
14135 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
14136
14137         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
14138           from X. Only send based on ConfigureNotify if we don't have the
14139           correct location in hwnd (if the window manager moved us)
14140
14141 2006-08-28  Mike Kestner  <mkestner@novell.com>
14142
14143         * ListView.cs: remove a TODO. 
14144         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
14145         [Fixes ListView part of #79166]
14146
14147 2006-08-28  Mike Kestner  <mkestner@novell.com>
14148
14149         * ListView.cs: move wheel handler to parent since it is focused
14150         instead of the item_control now.  [Fixes #79177]
14151
14152 2006-08-28  Mike Kestner  <mkestner@novell.com>
14153
14154         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
14155         when the control is focused. [Fixes #79171]
14156
14157 2006-08-28  Mike Kestner  <mkestner@novell.com>
14158
14159         * ListView.cs: size the item and header controls for empty and
14160         unscrollable views.
14161         * ThemeWin32Classic.cs: draw disabled backgrounds.
14162         [Fixes #79187]
14163
14164 2006-08-28  Chris Toshok  <toshok@ximian.com>
14165
14166         * Form.cs: remove unused "active_form" static field.
14167
14168         * Hwnd.cs: lock around accesses to static windows collection.
14169
14170         * Application.cs: lock threads in Exit ().
14171
14172 2006-08-28  Chris Toshok  <toshok@ximian.com>
14173
14174         * NativeWindow.cs: lock around accesses to window_collection.
14175         
14176 2006-08-28  Chris Toshok  <toshok@ximian.com>
14177
14178         * Control.cs: err, fix this the right way, by locking on controls
14179         when using it.  not by making it synchronized.
14180
14181 2006-08-28  Chris Toshok  <toshok@ximian.com>
14182
14183         * Control.cs: make the static "controls" field synchronized, as it
14184         gets updated from multiple threads.
14185
14186 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
14187
14188         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
14189           Prevent other threads from exiting when calling thread sets quit state.
14190         * XEventQueue.cs: Added PostQuitState property
14191
14192 2006-08-27  Chris Toshok  <toshok@ximian.com>
14193
14194         * AsyncMethodData.cs: add a slot for the window handle.
14195
14196         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
14197         window (the destination control's window, not the foster window).
14198
14199         * Control.cs (BeginInvokeInternal): store the window's handle in
14200         the AsyncMethodData.
14201         
14202
14203 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
14204
14205         * XplatUIX11.cs:
14206           - PostQuitMessage: Removed resetting S.D display handle, we might have
14207             another loop started after calling PostQuitMessage (Fixes #79119)
14208           - Created destructor to reset S.D handle
14209
14210 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
14211
14212         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
14213
14214 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14215
14216         * TextControl.cs (Insert): Update the caret position even if we don't
14217           have a handle yet, just don't call the driver in that case.
14218         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
14219           to the end of the new selection text (Fixes #79184)
14220
14221 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14222
14223         * Form.cs (Activate): Only activate if the handle is created)
14224         * Control.c:
14225           - Mark window as invisible when it's disposed
14226           - Check if window handle is created when setting window visible, 
14227             instead of relying just on the is_created variable
14228           - Check if object is disposed when creating the control (Fixes #79155)
14229
14230 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14231
14232         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
14233           when allowing layout again. Otherwise we re-generate the anchoring 
14234           distance to the border again and actually alter what the user wanted
14235           This is ugly, it'd be better if we used DisplayRectangle instead of
14236           ClientRectangle for Control.UpdateDistances, but that causes us to
14237           have other problems (initial anchoring positons would be wrong)
14238           (Fixes #78835)
14239
14240 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14241
14242         * Control.cs:
14243           - The size and location setters shouldn't go directly to 
14244             SetBoundsCore, but to SetBounds, which triggers layout on the
14245             parent, then calls SetBoundsCore. (Related to fix for #78835)
14246           - SetBounds: Moved actual location update code into this function
14247             from SetBoundsCore, to match MS. Added call to PerformLayout if
14248             we have a parent (to trigger resizing of anchored parents if the 
14249             child size has changed (see testcase for #78835) 
14250         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
14251           new control code
14252         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
14253
14254 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14255
14256         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
14257           System.Drawing when a toplevel window gets closed; there might
14258           be other toplevel windows belonging to the same app (Fixes #78052)
14259
14260 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
14261
14262         * FileDialog.cs: After reading FileDialog settings from mwf_config
14263           use Desktop prefix only if a real folder doesn't exist anymore.
14264         * FontDialog.cs: Added char sets.
14265           It is now possible to select the font, size or style with the
14266           textboxes.
14267
14268 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
14269
14270         * PrintPreviewDialog.cs: Use assembly name constants.
14271
14272 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14273
14274         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
14275           scrollbar from whacking it's buttons)
14276
14277 2006-08-24  Chris Toshok  <toshok@ximian.com>
14278
14279         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
14280         in this patch (aggregating setting Left/Top/Width/Height to
14281         setting Bounds on the scrollbars), but the crux of the fix is in
14282         Recalculate, where we scroll by the remaining scroll_position if
14283         we're hiding a scrollbar.  The 2*$5 reward in the comment is
14284         serious.
14285
14286 2006-08-24  Jackson Harper  <jackson@ximian.com>
14287
14288         * MdiClient.cs:
14289         * MdiWindowManager.cs: If the form is made a non-mdi window we
14290         need to remove the form closed event so that closing forms works
14291         correctly.
14292
14293 2006-08-24  Jackson Harper  <jackson@ximian.com>
14294
14295         * Control.cs: Make IsRecreating internal so that the driver can
14296         check it
14297         - Temporarily remove the Hide when controls are removed, its
14298         making a whole bunch of things not work because visibility isn't
14299         getting reset elsewhere correctly
14300         * Form.cs: Need to do a full handle recreation when the mdi parent
14301         is set.
14302         * XplatUIX11.cs: If we are recreating handles don't dispose the
14303         HWNDs.  What was happening is the handles were being recreated in
14304         SendWMDestroyMessages, but then flow continued on in that method
14305         and destroyed the new handles.
14306
14307 2006-08-23  Jackson Harper  <jackson@ximian.com>
14308
14309         * Form.cs: MdiClient is always at the back of the bus
14310         * Control.cs: When the order of items in the collection is changed
14311         we need to reset the all_controls array
14312         - do the same sorta setup thats done when adding a control when a
14313         control is set on the collection.
14314
14315 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14316
14317         * TextBoxBase.cs (get_Text): Return an empty array if our document
14318           is empty (fixes #79052)
14319
14320 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14321
14322         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
14323           on WM_SYSCHAR messages (fixes #79053)
14324
14325 2006-08-23  Chris Toshok  <toshok@ximian.com>
14326
14327         * DataGrid.cs: fix flickering when scrolling vertically.
14328
14329 2006-08-23  Chris Toshok  <toshok@ximian.com>
14330
14331         * DataGrid.cs (EndEdit): only invalidate the row header when we
14332         need to.
14333
14334 2006-08-23  Chris Toshok  <toshok@ximian.com>
14335
14336         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
14337         methods.  fixes the flicker when scrolling around.
14338
14339 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14340
14341         * FileDialog.cs: Making sure the control is created before we get a 
14342           chance to use it with BeginInvoke (Fixes #79096)
14343
14344 2006-08-23  Chris Toshok  <toshok@ximian.com>
14345
14346         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
14347         width to use when painting the rows.
14348
14349 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14350
14351         * TextBoxBase.cs:
14352           - Throw ArgumentException if a negative value is passed to SelectionLength
14353           - Update the selection end if start is moved. end needs to be always
14354             after start. (Fixes #79095)
14355           - Track selection length; MS keeps the selection length even if start
14356             is changed; reset on all other operations affection selection
14357
14358 2006-08-22  Jackson Harper  <jackson@ximian.com>
14359
14360         * TreeView.cs: Make sure both scrollbars get displayed and sized
14361         correctly when the other bar is visible.
14362         - Use the original clip rectangle for checking if the area between
14363         the two scrollbars is visible, not the viewport adjusted clipping
14364         rectangle.
14365
14366 2006-08-22  Jackson Harper  <jackson@ximian.com>
14367
14368         * Binding.cs: We don't use IsBinding because it requires the
14369         control to be created, which really shouldn't be necessary just to
14370         set a property on the control.
14371
14372 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14373
14374         * ComboBox.cs: Some CB.ObjectCollection methods must throw
14375         ArgumentNullReferenceException when the argument is null.
14376
14377 2006-08-21  Jackson Harper  <jackson@ximian.com>
14378
14379         * Timer.cs: Track the thread that the timer is started in (NOT
14380         CREATED), this way messages for it will only be triggered on its
14381         queue.
14382         * XEventQueue.cs: Track the timers here, this makes timers per
14383         thread, like MS.
14384         * XplatUIX11.cs: The timers are moved to the XEventQueue.
14385
14386 2006-08-19  Chris Toshok  <toshok@ximian.com>
14387
14388         * XplatUIX11.cs: after further communication with pdb, we get the
14389         best of both worlds.  SetZOrder working for un-Mapped windows, and
14390         no X errors for un-mapped windows.
14391
14392 2006-08-19  Chris Toshok  <toshok@ximian.com>
14393
14394         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
14395         as it was causing pdn toolbars to not have the correct stacking.
14396
14397 2006-08-18  Mike Kestner  <mkestner@novell.com> 
14398
14399         * ListView.cs : guard against negative ClientArea.Width in scrollbar
14400         calculation.  Not sure why control should ever be setting a negative
14401         width though.  Fixes #78931.
14402
14403 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14404
14405         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
14406         null items in ObjectCollection class.
14407         * ListBox.cs.: Likewise.
14408
14409 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
14410
14411         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
14412           as the base method in ThemeWin32Classic should work fine.
14413           Fixed bug #78607.
14414
14415 2006-08-18  Jackson Harper  <jackson@ximian.com>
14416
14417         * Binding.cs: When validating if the value entered doesn't convert
14418         properly reset to the old value.
14419         * RadioButton.cs: Don't fire click when we get focus.
14420
14421 2006-08-18  Jackson Harper  <jackson@ximian.com>
14422
14423         * FileDialog.cs: Paint the selection on the directory combobox the
14424         same way as on MS. 
14425
14426 2006-08-17  Jackson Harper  <jackson@ximian.com>
14427
14428         * ErrorProvider.cs: Don't allow the error control to be selected.
14429         * Control.cs: Don't send the SetFocus messages, the control
14430         activation will do this, and if we do it blindly here validation
14431         does not work.
14432
14433 2006-08-17  Jackson Harper  <jackson@ximian.com>
14434
14435         * Control.cs:
14436         * ContainerControl.cs: Make validation events fire in the correct
14437         order.  TODO: For some reason the first validation event is not
14438         getting fired.
14439
14440 2006-08-17  Mike Kestner  <mkestner@novell.com> 
14441
14442         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
14443
14444 2006-08-17  Mike Kestner  <mkestner@novell.com> 
14445
14446         * ComboBox.cs : implement scroll wheel support for popped-down
14447         state. Fixes #78945. 
14448
14449 2006-08-17  Jackson Harper  <jackson@ximian.com>
14450
14451         * TreeView.cs: Specify treeview actions (old patch that didn't get
14452         committed for some reason).
14453         - Don't let the mouse wheel scroll us too far.  Just want to make
14454         the bottom node visible, not scroll it all the ways to the top.
14455
14456 2006-08-17  Jackson Harper  <jackson@ximian.com>
14457
14458         * XplatUIX11.cs: Mouse wheel events go to the focused window.
14459
14460 2006-08-17  Mike Kestner  <mkestner@novell.com> 
14461
14462         * ComboBox.cs : don't do mouseover selection in simple mode.
14463
14464 2006-08-16  Jackson Harper  <jackson@ximian.com>
14465
14466         * Form.cs: Fire the closing events for all the mdi child windows
14467         when a window is closed.  If the cancel args are set to true, the
14468         main window still gets the event fired, but it doesn't not close.
14469         * MdiWindowManager.cs: Do this closing cleanup in a Closed
14470         handler, instead of when the button is clicked, so cancelling the
14471         close works correctly.
14472         * ComboBox.cs: Send the mouse down to the scrollbar.
14473
14474 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14475
14476         * ListBox.cs: When passing 'null' to SelectedItem,
14477         set SelectedIndex to -1, to unselect items. This is the
14478         observed behaviour in .Net.
14479
14480 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
14481
14482         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
14483           MS flags saying there won't be any. (fixes #78800)
14484         * Control.cs (HandleClick): Made virtual
14485
14486 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
14487
14488         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
14489           cultures. Fixed bug #78399.
14490
14491 2006-08-16  Jackson Harper  <jackson@ximian.com>
14492
14493         * Form.cs: Use the MdiClients MdiChildren property to access
14494         MdiChildren instead of creating the array from the child controls.
14495         * MdiClient.cs: Maintain a separate array of the mdi children, so
14496         that insertion order is maintained when the Z-order is changed.
14497
14498 2006-08-16  Mike Kestner  <mkestner@novell.com> 
14499
14500         * ListView.cs : add an ItemComparer and default to it for sorting.
14501         Fixes #79076, but sorting needs a complete overhaul to be compat with
14502         MS.
14503
14504 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
14505
14506         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
14507
14508 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
14509
14510         * Hwnd.cs (Mapped): Properly traverse the tree
14511
14512 2006-08-15  Chris Toshok  <toshok@ximian.com>
14513
14514         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
14515         pass manager.Current.GetType() to ParseData.  It has to be the
14516         property type.  So, hold off doing the ParseData until we're in
14517         SetPropertyValue where we know the type.  This fixes the crash in
14518         #78821 but the textbox is still empty.
14519
14520 2006-08-15  Chris Toshok  <toshok@ximian.com>
14521
14522         * DataGrid.cs:
14523         - when we're scrolling, only call Edit() again if the
14524         current cell is still unobscured. Fixes bug #78927.
14525         - when handling mousedown on a cell, ensure the cell is visible
14526         before calling Edit.
14527         - remove the properties from DataGridRow, and remove the
14528         DataGridParentRow class altogether.
14529         
14530
14531 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
14532
14533         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
14534           fire OnTextChanged by ourselves. There's no point calling base,
14535           we don't set the base value anywhere else. Fixes #78773.
14536
14537 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14538
14539         * ListBox.cs: Call CollectionChanged when modifying
14540         an item from Items indexer, to update the actual items
14541         in the list box.
14542
14543 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14544
14545         * PrintDialog.cs: Small fixes for focus and a pair of checks,
14546         to match .Net behaviour.
14547
14548 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
14549
14550         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
14551
14552 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
14553
14554         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
14555
14556 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
14557
14558         * MessageBox.cs: Prevent potential NRE exception.
14559         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
14560
14561 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
14562
14563         * MessageBox.cs: Calculate the owner of a messagebox, also make
14564           it topmost. Fixes #78753
14565
14566 2006-08-14  Chris Toshok  <toshok@ximian.com>
14567
14568         * XplatUIX11.cs: A couple of fixes so that metacity will let us
14569         programmatically move windows.  first, set the PPosition hint as
14570         well as the USPosition hint.  Second include some code from pdb
14571         that sets the window type to NORMAL when we set the transient for
14572         hint.  This is because, in the absence of a window type, metacity
14573         thinks any window with TransientFor set is a dialog, and refuses
14574         to let us move it programmatically.  fascists.
14575
14576 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
14577
14578         * XplatUIX11.cs: When setting normal hints, take into consideration
14579           an different hints previously set so we don't delete them (fixes #78866)
14580
14581 2006-08-12  Chris Toshok  <toshok@ximian.com>
14582
14583         * ToolBarButton.cs: make Layout return a boolean, if something to
14584         do with the button's layout changed.
14585
14586         * ToolBar.cs:
14587         - add another parameter to Redraw, @force, which all existing
14588           calls set to true.
14589         - make the Layout function return a boolean which is true if the
14590           layout has actually changed.  Redraw now uses this (and @force)
14591           to determine when to invalidate.  At present the only place
14592           where @force can be false is the call from OnResize, when
14593           background_image == null.  So, resizing a toolbar when the
14594           layout doesn't change results in no drawing.
14595
14596 2006-08-12  Chris Toshok  <toshok@ximian.com>
14597
14598         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
14599         the VScrollBar and HScrollbar reversed.  oops.
14600
14601         * DataGrid.cs: fix the logic that assigns sizes to the implicit
14602         scrollbars.  we were assigning them twice (once in
14603         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
14604         therefore causing two scrollbar resizes (and redraws?) to happen
14605         per grid resize.
14606
14607 2006-08-12  Chris Toshok  <toshok@ximian.com>
14608
14609         * ToolBarButton.cs: redraw the entire button if the theme tells us
14610         to.
14611
14612         * Theme.cs: add ToolBarInvalidateEntireButton.
14613
14614         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
14615         buttons, just the border.
14616
14617         * ThemeNice.cs: redraw the entire toolbar button since we need to
14618         draw the highlight image.
14619
14620         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
14621         we need to redraw the entire button (not just the border).
14622
14623 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
14624
14625         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
14626           for vertical bars. Fixes the mismatches shown by #78513
14627
14628 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
14629
14630         * FileDialog.cs: If a saved/remembered path doesn't exist
14631           anymore, fall back to "Desktop".
14632
14633 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
14634
14635         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
14636           parent. It's apparently legal to not have one
14637         * XplatUIX11.cs:
14638           - SetZOrder: Don't try to set Z-Order on an unmapped window
14639           - CreateWindow: 0,0 are legal coordinates for a window. don't move
14640             it unless the coordinates are negative
14641
14642 2006-08-10  Mike Kestner  <mkestner@novell.com>
14643
14644         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
14645         when setting to null per msdn docs.  Fixes #78854.
14646
14647 2006-08-10  Chris Toshok  <toshok@ximian.com>
14648
14649         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
14650         flickering by setting a clip rectangle on the Graphics when we
14651         need to redraw just a particular menuitem.  Also, rename "OnClick"
14652         to "OnMouseDown" to reflect what it actually is.
14653         
14654         * Form.cs: track the OnMouseDown change.
14655
14656 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
14657
14658         * CommonDialog.cs: Properly inherit the CreateParams from the form
14659           and only change what we need. Fixes #78865
14660
14661 2006-08-10  Chris Toshok  <toshok@ximian.com>
14662
14663         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
14664         flickering in flat mode (and most of the flickering in general) by
14665         only invalidating the button border (and not the entire rectangle)
14666         when the state changes.  A couple of cases still flicker:
14667         ToggleButtons, and the dropdown arrow case when the user mouse
14668         ups.
14669
14670 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
14671
14672         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
14673           for german keyboards. Numlock state shouldn't affect the behaviour
14674           of the Del key. Fixes bug #78291.
14675
14676 2006-08-10  Chris Toshok  <toshok@ximian.com>
14677
14678         * ListControl.cs: remove the items.Clear line from BindDataItems,
14679         as this is the first thing done by both subclasses in their
14680         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
14681         passed -1, refresh the list.  This gets databinding working when
14682         the datasource is set on the list before the datasource is
14683         populated (as in wf-apps/ReportBuilder.)
14684
14685         * ComboBox.cs: remove the argument to BindDataItems.  This call
14686         should really go away, and be initiated by the ListControl code.
14687
14688         * ListBox.cs: same.
14689
14690 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
14691
14692         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
14693           if no data is in the document when the control is displayed
14694
14695 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
14696
14697         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
14698           yes (fixes #78806)
14699         * TextControl.cs: 
14700           - PositionCaret: Allow positioning of caret but don't call methods 
14701             requiring a handle if the window isn't created yet
14702           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
14703           - owner_HandleCreated: Don't position the caret, just update it's 
14704             location. User might have already set a different position
14705
14706 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
14707
14708         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
14709           windows. Screws up the returned coordinates for child windows. 
14710           Fixes #78825. I'm hoping this doesn't break something, since the
14711           code was explicitly put in 8 months ago, but no bug was attached.
14712           Menus still seem to work properly.
14713
14714 2006-08-08  Chris Toshok  <toshok@ximian.com>
14715
14716         * DataGrid.cs: make BeginInit/EndInit actually do what they're
14717         supposed to do - delay data binding until the EndInit call.  Also,
14718         make the table style collection's CollectionChangeAction.Refresh
14719         work properly.
14720
14721         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
14722         (with action = Refresh) when a consituent table's MappingName is
14723         changed.
14724
14725 2006-08-08  Chris Toshok  <toshok@ximian.com>
14726
14727         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
14728         Invalidate, since changing the text can change the size of the all
14729         toolbar buttons.
14730
14731 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
14732
14733         * Form.cs (AddOwnedForm): Still need to add the form to our listif
14734           we don't have it yet
14735
14736 2006-08-08  Chris Toshok  <toshok@ximian.com>
14737
14738         * PrintControllerWithStatusDialog.cs: don't .Close() the status
14739         dialog, as this causes X errors later on, since we actually
14740         destroy the window.  Instead, .Hide() it.
14741
14742 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
14743
14744         * ComboBox.cs: Added focus reflection for popup window
14745         * XplatUIX11.cs: 
14746           - Removed transient setting for non-app windows for now, not sure it
14747             was needed
14748           - Fixed logic checking if we have captions when deciding 
14749             override_redirect, WS_CAPTION is two bits and a 0 check was not
14750             sufficient
14751           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
14752             complicated
14753         * Form.cs: 
14754           - AddOwnedForm: Don't just add the form to the list, call the property
14755             to ensure the driver is informed about the ownership as well
14756           - CreateHandle: Set the TopMost status in the driver if we have an owner
14757         * XplatUI.cs: Fixed debug statement
14758
14759 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
14760         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
14761           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
14762           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
14763           TrackBarRenderer.cs: Make constructor private.
14764         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
14765         * ProfessionalColorTable.cs: Make properties virtual.
14766
14767 2006-08-06  Duncan Mak  <duncan@novell.com>
14768
14769         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
14770         is not changing.
14771
14772 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
14773         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
14774           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
14775           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
14776           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
14777           Initial import of new 2.0 classes.
14778
14779 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
14780         * Application.cs: Add 2.0 VisualStyles properties.
14781
14782 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
14783         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
14784           XplatUIX11.cs: Create property to allow access to existing private
14785           variable "themes_enabled"
14786
14787 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14788
14789         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
14790         file size, as otherwise our class libraries fail using windows. Fixes
14791         bug #78759.
14792
14793 2006-08-04  Jackson Harper  <jackson@ximian.com>
14794
14795         * Form.cs:
14796         * XplatUIX11.cs: Move the toolwindow window manager creation into
14797         the X11 driver, this way on win32 we can let windows create/handle
14798         the toolwindows.
14799
14800 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14801
14802         * PrintDialog.cs: Remove some redundant checks, add some others,
14803         clean some code, and move the focus to the text boxes when the
14804         values are incorrect.
14805
14806 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
14807
14808         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
14809
14810 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
14811
14812         * NumericUpDown.cs: Setting the Minimum and Maximum is now
14813           handled correctly. Fixes bug #79001.
14814
14815 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14816
14817         * PrintDialog.cs: The "Copies" numeric up down must have
14818         set the Minimum property to 1; only if the value is bigger
14819         than 1, activate "Collate" check box. This is the behaviour of .Net.
14820         Also modify the Document elements only if it is not null.
14821
14822 2006-08-03  Jackson Harper  <jackson@ximian.com>
14823
14824         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
14825         length. (We have a larger array then actual node count).
14826                 
14827 2006-08-03  Jackson Harper  <jackson@ximian.com>
14828
14829         * ComboBox.cs: Don't show selection by default.
14830         - The SelectAll isn't needed here, since the focus code should do
14831         that
14832         - DDL style lists to manual selection drawing, so when they
14833         get/lose focus they have to invalidate.
14834
14835 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
14836
14837         * TextBoxBase.cs: Don't always show all selections by default.
14838
14839 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
14840         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
14841           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
14842           Fixed various typos.
14843
14844 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
14845
14846         * Control.cs: Removing the controls in a ControlCollection with
14847           Clear now hides the controls as expected. Fixes bug #78804. 
14848
14849 2006-08-03  Jackson Harper  <jackson@ximian.com>
14850
14851         * Control.cs: Revert previous focus patch, it breaks reflector.
14852
14853 2006-08-03  Jackson Harper  <jackson@ximian.com>
14854
14855         * ComboBox.cs: Cleanup selection and focus with the combobox.
14856         This also eliminates some duplicated keyboard code, since now
14857         everything is handled by the main class.
14858         - Make list selection work on mouse up instead of down, to match
14859         MS.
14860
14861 2006-08-02  Jackson Harper  <jackson@ximian.com>
14862
14863         * Control.cs: Setting focus needs to go through the whole
14864         selection mechanism.
14865
14866 2006-08-02  Chris Toshok  <toshok@ximian.com>
14867
14868         * PrintPreviewDialog.cs: change MinimumSize to use
14869         base.MinimumSize so it works.
14870
14871 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
14872
14873         * TextControl.cs:
14874           - UpdateCaret: Added sanity check in case caret isn't defined yet
14875           - Line.Delete: Now updating selection and caret markers if we're
14876             transfering a node (Properly fixes #78323)
14877           - SetSelectionEnd: Added sanity check
14878         * TextBoxBase.cs: Removed broken attempt to fix #78323
14879
14880 2006-08-01  Chris Toshok  <toshok@ximian.com>
14881
14882         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
14883         Close() call is handled in Form, not here.
14884
14885 2006-08-01  Chris Toshok  <toshok@ximian.com>
14886
14887         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
14888         layout/rendering.
14889
14890         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
14891         for sizes < 100% zoom.  The code now aggressively attempts to keep
14892         from calling document.Print (), and tries not to use the scaling
14893         g.DrawImage whenever possible (it still does if you scale to >
14894         100%, since usually that involves huge images).
14895
14896         * PrintPreviewControl.cs: hook up the close button.
14897
14898 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
14899         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
14900           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
14901           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
14902           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
14903           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
14904           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
14905           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
14906           Removed [Serializable] for 2.0 Event Handlers.
14907
14908 2006-07-31  Jackson Harper  <jackson@ximian.com>
14909
14910         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
14911         * TextControl.cs: Uncomment out the body of this method.
14912
14913 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
14914
14915         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
14916           standard cursors.
14917
14918 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
14919
14920         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
14921           that embed TextBox and need selections visible even if textbox is not
14922           focused to enforce that behaviour.
14923         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
14924           selection drawing
14925
14926 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
14927
14928         * TextControl.cs:
14929           - Added new SetSelectionStart/SetSelectionEnd overloads
14930           - Fixed viewport width assignment to be accurate
14931           - Adjusted alignment line shift calculations to allow cursor on right
14932             aligned lines to be always visible at the right border (like MS)
14933         * TextBoxBase.cs:
14934           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
14935           - TextBoxBase_SizeChanged: recalculating canvas on size changes
14936           - CalculateScrollBars: Use ViewPort size instead of window size, to
14937             properly consider space occupied by the border and scrollbars 
14938             (Fixes #78661)
14939           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
14940             calculations; no longer leaves artifacts
14941           - CaretMoved: Adjusted window scrolling to match MS and fixed several
14942             calculation bugs (Still missing right/center align calculations)
14943
14944 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
14945
14946         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
14947           use of both scroll rect and clip rect, as they do the same.
14948
14949 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
14950
14951         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
14952           in the event handler (fixes #78912)
14953
14954 2006-07-31  Chris Toshok  <toshok@ximian.com>
14955
14956         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
14957         grid.ListManager.Count, since grid.ListManager might be null.
14958         This of course begs the question "why are we drawing rows for a
14959         grid with no list manager (and therefor no rows)?"  Fixes the
14960         crash in bug #78929.
14961
14962 2006-07-31  Chris Toshok  <toshok@ximian.com>
14963
14964         * RelatedPropertyManager.cs: Don't always chain up to the parent
14965         ctor.  instead, call SetDataSource if the parent's position is !=
14966         -1.  Fixes the crash in #78822.
14967
14968 2006-07-31  Chris Toshok  <toshok@ximian.com>
14969
14970         * DataGrid.cs (get_ListManager): use field instead of property
14971         accessors for datasource and datamember.
14972         (RowsCount): make internal again.
14973         (OnMouseDown): end edits before resizing columns/rows.
14974         (OnMouseUp): restart edits after resizing columns/rows.
14975
14976 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
14977
14978         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
14979           This fixes the situation where the last set cursor is displayed
14980           whenever the mouse is over scrollbars.
14981
14982 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14983
14984         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
14985         Document properties, as well as initial values.
14986
14987 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
14988
14989         * XplatUIWin32.cs (SetBorderStyle): Setting both border
14990           and ClientEdge results in a 3-pixel border, which is
14991           wrong.
14992
14993 2006-07-28  Jackson Harper  <jackson@ximian.com>
14994
14995         * TreeNodeCollection.cs: Fix the clear method.
14996         - Fix the Shrink also
14997
14998 2006-07-27  Jackson Harper  <jackson@ximian.com>
14999
15000         * TreeView.cs: Make sure the visible order is computed when we
15001         attempt to size the scrollbars (for trees that mess with the
15002         scrolling when they shouldn't.
15003         - Make sure to give the scrollbars valid values.
15004
15005 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
15006
15007         * XplatUIX11.cs: Move motion compression code to where it
15008           has less performance impact
15009
15010 2006-07-26  Jackson Harper  <jackson@ximian.com>
15011
15012         * UpDownBase.cs: When the control is selected make the child
15013         controls non selectable, so that a click on them won't do a
15014         focus/unfocus cycle.
15015         - Don't give focus to the text box when the spinner is selected.
15016         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
15017
15018 2006-07-26  Chris Toshok  <toshok@ximian.com>
15019
15020         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
15021         satisfied with this solution.  If the bitmaps are small, we should
15022         just cache them in the PrintPreviewDialog and draw them here.
15023         Also, the layout is broken for the 2-up and 3-up cases.
15024
15025         * Theme.cs: add PrintPReviewControlPaint.
15026
15027         * PrintPreviewDialog.cs: first pass implementation.
15028
15029         * PrintPreviewControl.cs: first pass implementation.  No
15030         scrollbars yet.
15031
15032         * PrintDialog.cs: only validate fields if that particular portion
15033         of the UI is enabled.  Also, set the document's controller to a
15034         PrintControllerWithStatusDialog wrapping the document's print
15035         controller.
15036
15037         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
15038         bring up a SaveFileDialog (i hope we don't want to match the
15039         behavior of the crappy windows file entry) and set the
15040         PrinterSettings.PrintFileName accordingly.
15041
15042 2006-07-26  Jackson Harper  <jackson@ximian.com>
15043
15044         * ContainerControl.cs: Add a field that disables auto selecting
15045         the next control in a container when the container is activated.
15046         * UpDownBase.cs: Don't select the text box when the up down is
15047         selected.
15048
15049 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
15050
15051         * XEventQueue.cs: Added methods for peeking (used for compression
15052           of successive events)
15053         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
15054           mouse move events (fixes #78732)
15055
15056 2006-07-25  Jackson Harper  <jackson@ximian.com>
15057
15058         * UpDownBase.cs: Use an internal class for the textbox so that we
15059         can control focus.  the updown control should always have focus,
15060         if either the text area or the buttons are clicked.
15061         - Send the key messages to the textbox, since it never actually
15062         has focus
15063         - Activate and decativate the textbox caret.
15064
15065 2006-07-24  Jackson Harper  <jackson@ximian.com>
15066
15067         * Control.cs: Use the directed select when selecting a control,
15068         this way the container controls override will get called and the
15069         whole ActiveControl chain will get triggered.  TODO: probably need
15070         to make sure this gets done everywhere instead of the old
15071         Select(Control).
15072         * ContainerControl.cs: Implement the directed Select method to
15073         find and activate the correct child control.    
15074         
15075 2006-07-22  Mike Kestner  <mkestner@novell.com>
15076
15077         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
15078         menu handling code so that clicks without a grab work too.
15079         [Fixes #78914]
15080
15081 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
15082
15083         * FileDialog.cs: Enable the BackButton when dirstack has one element.
15084           Added some small optimizations.
15085
15086 2006-07-21  Matt Hargett  <matt@use.net>
15087
15088         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
15089
15090 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
15091
15092         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
15093           tests pass and match MS in some strange border cases.
15094
15095 2006-07-21  Chris Toshok  <toshok@ximian.com>
15096
15097         * ThemeWin32Classic.cs: handle drawing of the relation links and
15098         parent row buttons.
15099
15100         * Theme.cs: change args to DataGridPaintParentRow.
15101
15102         * DataGrid.cs: Don't use controls for the relation links and
15103         parent buttons, so we have to handle all their interactions in
15104         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
15105         when we're navigating through child tables, so we can reinstate
15106         selection, expanded state, current cell, etc.
15107
15108 2006-07-20  Chris Toshok  <toshok@ximian.com>
15109
15110         * ToolBar.cs: When we redraw a button, for whatever reason,
15111         there's no reason to redraw the entire toolbar.  Also, don't call
15112         Control.Refresh from within Redraw, as it's much heavier than
15113         Invalidate (which is really what we want).
15114
15115 2006-07-20  Chris Toshok  <toshok@ximian.com>
15116
15117         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
15118         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
15119         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
15120         traces from within a debug IBindingList datasource
15121         (in mono/winforms/datagrid) for *days*, I've finally gotten things
15122         to work in a similar fashion.
15123
15124 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15125
15126         * ListBox.cs: Don't call Sort () when setting 
15127         the Sorted property to false (avoid an unnecessary sort).
15128
15129 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15130
15131         * ListControl.cs: DataSource should throw an ArgumentException
15132         instead of a normal exception when the argument is not of the 
15133         correct type.
15134
15135 2006-07-20  Mike Kestner  <mkestner@novell.com>
15136
15137         * Control.cs: add InternalPreProcessMessage to allow us to steal
15138         key events before MWF gets its paws on them.  Adapted from a
15139         suggestion by eno.
15140         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
15141         up/down/left/right navigation. Override the new internal control
15142         method to steal the events since they never make it to WndProc.
15143         * ToolBarButton.cs: don't worry about pushed when setting hilight
15144         since the drawing code prefers pushed to hilight. Invalidate on 
15145         Hilight changes. Fixes #78547 and #78525.
15146
15147 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
15148
15149         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
15150           the canvas size. Fixes #78868
15151
15152 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
15153
15154         * Splitter.cs: Track requested split position until first layout
15155           is performed. Fixes #78871
15156
15157 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
15158
15159         * Application.cs: Removed code that forces 1.x for the version
15160           number if the version started with 0. Not sure why that code was
15161           there and I couldn't find any bugs that indicated we needed it.
15162           Fixes #78869
15163
15164 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
15165
15166         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
15167           ResetDefaults(), just write some output to the console until it's
15168           implemented. Fixes bug #78907 for now. Eliminated two warnings.
15169
15170 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
15171
15172         * PropertyGridView.cs: set StartPosition of drop down forms
15173         so they appear in correct initial spot.  Fixes #78190.
15174
15175 2006-07-19  Mike Kestner  <mkestner@novell.com>
15176
15177         * ThemeWin32Classic.cs: use parent background color when drawing
15178         flat toolbars.  Restructure the conditionals to make sure non-flat
15179         non-Divider toolbars are filled too.  Fixes #78837.
15180
15181 2006-07-19  Mike Kestner  <mkestner@novell.com>
15182
15183         * ListBox.cs: Sort on collection changes even if the handle
15184         isn't created yet.  Fixes #78813.
15185
15186 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15187
15188         * ListControl.cs: DisplayMember should never be null,
15189         and now we assign String.Empty when null is passed to it (this
15190         is the .Net way).
15191
15192 2006-07-17  Mike Kestner  <mkestner@novell.com>
15193
15194         * ListViewItem.cs: restructure Font and subitem Font handling 
15195         to hold a specific font and refer back to owner on null.
15196         Fixes #78761.
15197
15198 2006-07-17  Mike Kestner  <mkestner@novell.com>
15199
15200         * ToolBar.cs: bandaid for side-effect of previous patch which was
15201         discarding explicit heights for non-AutoSize toolbars.  Need to
15202         extend my format tester to deal with AutoSize=false. Fixes #78864.
15203
15204 2006-07-15  Jackson Harper  <jackson@ximian.com>
15205
15206         * LabelEditTextBox.cs:
15207         * TreeView.cs: Use a new LabelEdit class for node editing, this
15208         class automatically 'closes' itself when it gets the enter key or
15209         loses focus.
15210         - Use the client rectangle when setting the trees scrollbars, so
15211         border style is taken into account.
15212         
15213 2006-07-14  Jackson Harper  <jackson@ximian.com>
15214
15215         * TreeNode.cs:
15216         * TreeView.cs: Make the editing work similar to MSs, firing the
15217         events correctly and ending edits correctly.
15218
15219 2006-07-14  Mike Kestner  <mkestner@novell.com>
15220
15221         * ToolBarButton.cs:
15222         * ToolBar.cs: layout restructuring and redraw enhancements to support
15223         formatting changes gracefully, like setting TextAlign, ImageList, 
15224         ButtonSize, and Appearance.  Handles explicit button sizing quirks
15225         of the MS controls.  Things like flat toolbars ignoring button size
15226         but becoming constant sized at the largest button's size.  Normal
15227         toolbars with an image set cannot be shrunk smaller than the image,
15228         but text can be clipped/ignored.
15229         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
15230         is zero.  Seems like DrawString should be smart enough to not put
15231         anything on screen though. Also trim labels and ellipsize at the char
15232         boundary, not word.
15233         Fixes #78711 and #78483.
15234
15235 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
15236
15237         * FolderBrowserDialog.cs: Disable "New Folder" button and
15238           "New Folder" contextmenu menuitem if a folder like "My Computer"
15239           is selected.
15240
15241 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
15242
15243         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
15244         * FolderBrowserDialog.cs:
15245           - Use MWFConfig to store and read size and position settings
15246           - Added code to create a new folder (button or context menu).
15247             Use TreeView labeledit to change the name of the new folder.
15248
15249 2006-07-14  Jackson Harper  <jackson@ximian.com>
15250
15251         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
15252         when the tree is scrolled we end editing.
15253
15254 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
15255
15256         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
15257           Down arrows
15258
15259 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
15260
15261         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
15262         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
15263         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
15264         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
15265         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
15266         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
15267         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
15268         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
15269         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
15270         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
15271         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
15272         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
15273         ListViewItemSelectionChangedEventHandler.cs,
15274         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
15275         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
15276         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
15277         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
15278         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
15279         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
15280         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
15281         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
15282         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
15283         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
15284         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
15285         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
15286         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
15287         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
15288         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
15289         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
15290         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
15291         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
15292         WebBrowserNavigatingEventHandler.cs, 
15293         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
15294
15295 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
15296
15297         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
15298         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
15299         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
15300         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
15301         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
15302         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
15303         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
15304         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
15305         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
15306         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
15307         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
15308         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
15309         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
15310         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
15311         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
15312         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
15313         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
15314         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
15315         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
15316         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
15317         ListViewItemStates.cs, MaskFormat.cs: Added
15318
15319 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
15320
15321         * PropertyGridView.cs: Fix keyboard navigation of drop down.
15322         Patch from eno for bug 78558.
15323         
15324 2006-07-13  Jackson Harper  <jackson@ximian.com>
15325
15326         * TreeView.cs: When an edit is finished make sure that the
15327         selected node is visible.
15328         - When setting the top/bottom use the scrollbars is_visible, so
15329         everything will be set correctly even if the tree isn't visible
15330         yet.
15331
15332 2006-07-13  Jackson Harper  <jackson@ximian.com>
15333
15334         * ComboBox.cs: Revert the item->index part of my previous patch.
15335         * TreeView.cs: Use LostFocus instead of Leave for detecting when
15336         the edit box has lost focus (duh).
15337         - Just make the edit box not visible when we get return, that will
15338         take the focus, which will call EndEdit
15339         * TreeNode.cs When we start editing, notify the treeview.
15340
15341 2006-07-12  Jackson Harper  <jackson@ximian.com>
15342
15343         * ComboBox.cs: Clear out old items before setting the item list.
15344         This prevents databound controls from having their items added
15345         twice.
15346         - Switch the combobox to use indices whereever possible instead of
15347         using Item's.  This allows usto navigate through lists that have
15348         more then one item with the same string value (ie a, b, b, a).
15349         - Scroll the listboxes scrollbar when a non visible item is
15350         highlighted
15351         - Allow keypress to cycle through all the possible values. For
15352         example if you have b1, b2, b3 and hold down the B key all the
15353         values will be cycled through.
15354         
15355 2006-07-12  Jackson Harper  <jackson@ximian.com>
15356
15357         * TextBoxBase.cs:
15358         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
15359         this using the internal methods.
15360         * Control.cs: Add OnGotFocusInternal.  A new method that allows
15361         controls to "override" OnGotFocus and change focus behavior if
15362         needed.
15363         - Same thing for LostFocus
15364         * ComboBox.cs: Pass off focus to the text control properly.
15365
15366 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
15367
15368         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
15369         * FolderBrowserDialog.cs: Almost a complete rewrite.
15370           - Better support for Environment.Specialfolders
15371           - Added support for MWFVFS
15372           - Made setting SelectedPath work
15373
15374 2006-07-12  Jackson Harper  <jackson@ximian.com>
15375
15376         * Control.cs: Optimze getting all the controls.
15377
15378 2006-07-11  Jackson Harper  <jackson@ximian.com>
15379
15380         * ContainerControl.cs: Override SETFOCUS in the container control,
15381         so that it is not selected on mouse click.
15382
15383 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
15384
15385         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
15386           Hopefully we will have a better way once all of focus is complete.
15387
15388 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
15389
15390         * ThemeWin32Classic.cs: Commented out some debug code and fixed
15391           a compile error with csc.
15392
15393 2006-07-11  Jackson Harper  <jackson@ximian.com>
15394
15395         * Control.cs: When hiding a control only select the next control
15396         if the current control was focused.
15397         - Don't handle enter/leave when setting/killing focus, this is
15398         done by the container control.
15399         - Remove is_selected, it's not needed anymore.
15400         - Add utility methods for selecting a child control, and for
15401         firing the Enter/Leave events.
15402         * ContainerControl.cs: When a control is activated fire the
15403         enter/leave events.
15404         - Don't wrap when processing the tab key, so that focus can be
15405         moved outside of the container.
15406         - Use the correct active control
15407
15408 2006-07-11  Jackson Harper  <jackson@ximian.com>
15409
15410         * ComboBox.cs: Remove some debug code that was blinding me.
15411         * UpDownBase.cs: These controls actually aren't implicit, they are
15412         visible to the user.
15413
15414 2006-07-10  Chris Toshok  <toshok@ximian.com>
15415
15416         * DataGrid.cs: move back to the is_adding boolean field.  god i
15417         hate this is_editing/is_adding/is_changing stuff.
15418
15419 2006-07-10  Chris Toshok  <toshok@ximian.com>
15420
15421         * DataGridTableStyle.cs: just check if the property type is bool.
15422         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
15423         Don't use CanRenderType.
15424
15425         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
15426         if our text == NullText.  Remove CanRenderType.
15427
15428         * DataGridBoolColumn.cs: nuke CanRenderType.
15429
15430         * DataGrid.cs: reenable some code to end the current edit inside
15431         of set_CurrentCell.  This fixes the other 1.1.16 regression.
15432         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
15433         Also, remove the visible_row_count arg from CalcRowHeaders, since
15434         we don't need to worry about the actual height of the area.
15435
15436 2006-07-10  Chris Toshok  <toshok@ximian.com>
15437
15438         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
15439         mode, just return.
15440
15441         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
15442         the real sense of the IsInEditOrNavigateMode property (true =
15443         navigate, false = edit).  Also, update OnKeyPress to reflect this.
15444
15445         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
15446         column style exists, we still need to set its property descriptor
15447         to match up with our list manager.
15448
15449 2006-07-10  Chris Toshok  <toshok@ximian.com>
15450
15451         * ThemeWin32Classic.cs: implement the new row/header painting
15452         approach.  The parent row painting will likely go away and
15453         replaced with label controls, but the rest seems to work ok (and
15454         efficiently).
15455
15456         * Theme.cs: change the way we draw datagrid rows.  we don't draw
15457         the row headers as a block now.  Instead we draw them in the
15458         normal draw-row loop.  Add some calls for drawing parent rows and
15459         relation rows.
15460
15461         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
15462         a default table style.  Set the defaults from ThemeEngine.Current,
15463         not SystemColors.  Fix lots of misc issues with property setters.
15464
15465         * DataGrid.cs: move loads of style information out of this class
15466         as it's being duplicated with DataGridTableStyle.  keep track of a
15467         special DataGridTableStyle for the properties we used to mirror
15468         here.  Switch all the style properties to access this table style
15469         instead of instance fields of this class.  Also add a internal
15470         class to represent parent rows (more needs to be stored here, like
15471         the selection state from the parent table, as well as the
15472         expansion state.)  Also, for datasources with relations, do the
15473         right thing for collapse/expand, and add support for the
15474         navigation/parent row buttons.
15475
15476         Lastly, fix the crash in the 1.1.16 build.
15477
15478         * GridTableStylesCollection.cs: make the explicit interface
15479         implementations call the class's methods as opposed to duplicating
15480         them.
15481
15482         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
15483         0 so the text doesn't jump around when we move the cursor.
15484
15485 2006-07-10  Jackson Harper  <jackson@ximian.com>
15486
15487         * TextBoxBase.cs:
15488         * ListBox.cs: Match MS's ToString (this makes debugging focus
15489         stuff infinitely easier).
15490
15491 2006-07-10  Jackson Harper  <jackson@ximian.com>
15492
15493         * Control.cs (SelectNextControl): When checking the control's
15494         parent use this instead of ctrl.parent so that null can be passed
15495         to SelectNextControl. (I have unit tests for this).
15496         - Remove unused var.
15497
15498 2006-07-10  Chris Toshok  <toshok@ximian.com>
15499
15500         * CurrencyManager.cs: correct one regression, the removal of the
15501         finalType field.  Also, add a MonoTODO on CanAddRows, implement
15502         Refresh() correctly, and fix some event emission in
15503         ListChangedHandler.
15504
15505 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
15506
15507         * FileDialog.cs: Don't use brackets for new folders if they exist
15508           under *nix. Instead use -(number of existing folders +1).
15509
15510 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
15511
15512         * FileDialog.cs:
15513           - Fixed really nasty bug #78771
15514           - Don't block the whole GUI when reading directories with a lot of
15515             entries. Use an other thread instead and call BeginInvoke to
15516             update the ListView in MWFFileView
15517
15518 2006-07-07  Chris Toshok  <toshok@ximian.com>
15519
15520         * Control.cs (Dispose): release any Capture when disposing.
15521
15522 2006-07-07  Chris Toshok  <toshok@ximian.com>
15523
15524         * LinkLabel.cs (Select): if we chain up to the parent, set
15525         focused_index to -1 so we'll search for the first available link
15526         the next time the user tabs into us.  Also, if the direction is
15527         backward and focused_index == -1, start the search from the last
15528         element.
15529
15530 2006-07-07  Chris Toshok  <toshok@ximian.com>
15531
15532         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
15533         is beyond the end of the text, don't do anything.
15534         (CreateLinkPieces): set our ControlStyles.Selectable based on
15535         whether or not we have any links.
15536         (Link.Invalidate): use a loop instead of foreach.
15537         (Link.set_Start): null out owner.sorted_links so it'll be
15538         recreated by CreateLinkPieces.
15539
15540 2006-07-06  Chris Toshok  <toshok@ximian.com>
15541
15542         * LinkLabel.cs: revert the SetStyle change.
15543
15544 2006-07-06  Chris Toshok  <toshok@ximian.com>
15545
15546         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
15547         (OnEnableChanged): s/Refresh/Invalidate
15548         (OnGotFocus): if we have a focused index already, refocus it (so
15549         if we mouse out/in to the window it'll focus the right link).
15550         (OnKeyDown): move the tab handling out of here.
15551         (OnLostFocus): don't set focused_index to -1, so we can refocus it
15552         when we lose focus.
15553         (OnMouseDown): don't Capture here - Control handles it.  Also,
15554         focus the active link.
15555         (OnMouseUp): don't deal with Capture.
15556         (OnPaintBackgroundInternal): remove.
15557         (OnTextAlignChanged): CreateLinkPieces before calling the
15558         superclass's method.
15559         (OnTextChanged): call CreateLinkPieces before calling superclass's
15560         method.
15561         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
15562         move around.
15563         (Select): implement this, moving the selection between different
15564         links, and call parent.SelectNextControl if we don't have another
15565         link to focus in the given direction.
15566         (CreateLinkPieces): call Invalidate instead of Refresh.
15567         
15568 2006-07-06  Chris Toshok  <toshok@ximian.com>
15569
15570         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
15571         new LinkLabel internals.
15572
15573         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
15574         over pieces looking for active/focused/etc links.  also, deal with
15575         runs of text (and links) with embedded \n's in them, and use
15576         MeasureCharacterRanges instead of MeasureString to figure out the
15577         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
15578         two-step.
15579
15580 2006-07-04  Jackson Harper  <jackson@ximian.com>
15581
15582         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
15583         XKB or key auto repeat, do it manually.  Without key auto repeat,
15584         when a key is held down we get key press, key release, key press,
15585         key release, ... with auto repeat we get key press, key press, key
15586         press ..., and then a release when the key is actually released.
15587
15588 2006-07-03  Jackson Harper  <jackson@ximian.com>
15589
15590         * TabControl.cs:
15591         * ThemeWin32Classic.cs: Tabs do not obey normal background color
15592         rules, they are always control color regardless of the background
15593         color.
15594
15595 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
15596
15597         * FileDialog.cs: Added internal class MWFConfig.
15598           Removed Registry support and replaced it with support for the new
15599           MWFConfig class. See MWFConfig comments for more information.
15600
15601 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
15602
15603         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
15604           rectangle. Added some patches from eno from bug #78490 and fixed
15605           the arrow position for small up and down CPDrawScrollButtons.
15606
15607 2006-06-30  Jackson Harper  <jackson@ximian.com>
15608
15609         * InternalWindowManager.cs: Remove some debug code.
15610         * Form.cs: When an MdiParent is set to null, the window is
15611         "detatched" and becomes a normal window.
15612         * MdiClient.cs: Don't bring the new child form to the front until
15613         it is activated (setting it as active does this), this makes the
15614         previously active forms titlebar get redrawn as inactive.
15615
15616 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
15617
15618         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
15619           with later controls
15620
15621 2006-06-29  Mike Kestner  <mkestner@novell.com>
15622
15623         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
15624         arrow in keynav state.  Fixes #78682.
15625
15626 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
15627
15628         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
15629           order (fixes #78393)
15630
15631 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
15632
15633         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
15634           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
15635           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
15636           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
15637           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
15638           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
15639           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
15640           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
15641           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
15642           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
15643           enumerations (FlagsAttribute, SerializableAttribute, added/removed
15644           values)
15645
15646 2006-06-28  Mike Kestner  <mkestner@novell.com>
15647
15648         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
15649
15650 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
15651
15652         * PropertyGrid.cs,
15653           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
15654           item lines from other area (It also makes BackColor consistent and
15655           compatible with .NET). Fixed bug #78564.
15656
15657 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
15658
15659         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
15660         Patch from Eno for #78555.
15661
15662 2006-06-27  Chris Toshok  <toshok@ximian.com>
15663
15664         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
15665
15666         * DataGridColumnStyle.cs: same.
15667
15668         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
15669         
15670         * DataGridDrawingLogic.cs: nuke.
15671
15672 2006-06-27  Chris Toshok  <toshok@ximian.com>
15673
15674         * DataGridTableStyle.cs: clean up the constructors, and build the
15675         list of child relations for this table.  I have no idea if this is
15676         where we should be doing it (it probably isn't), but since we're
15677         already iterating over the properties..
15678
15679         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
15680         struct and array for keeping track of row information, similar to
15681         what's shown in a hack on
15682         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
15683
15684         * Theme.cs: be consistent about the naming of DataGrid methods,
15685         prefering ColumnWidths and RowHeights over columnsWidths and
15686         RowsHeights.
15687
15688         * ThemeWin32Classic.cs: same, and also add support for variable
15689         sized rows (and the +/- expansion icons for related rows).
15690
15691 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
15692
15693         * TextBoxBase.cs: Applied Eno's patch from #78660
15694
15695 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
15696
15697         * Form.cs (ScaleCore): We don't want to scale our form if it's
15698           state is minimized or maximized, but we still need to scale our
15699           child windows. Also, added try/finally block to ensure layout
15700           gets reset (Fixes #78697)
15701
15702 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
15703
15704         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
15705
15706 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
15707
15708         * Form.cs: Fixed c+p error and added check to resize form if minimum
15709           size is bigger than current size (Fixes #78709)
15710
15711 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
15712
15713         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
15714
15715 2006-06-26  Mike Kestner  <mkestner@novell.com>
15716
15717         * ComboBox.cs: only do Keypress handling in the combo when there  
15718         are items in the collection. Fixes #78710.
15719
15720 2006-06-26  Chris Toshok  <toshok@ximian.com>
15721
15722         * Binding.cs: make this work bi-directionally.  also, clear up
15723         other mixups between Push/Pull Data (e.g. we're supposed to pull
15724         data when validating).
15725
15726         * BindingManagerBase.cs: trim some fully qualified collection
15727         types.
15728
15729         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
15730
15731 2006-06-23  Chris Toshok  <toshok@ximian.com>
15732
15733         * PropertyManager.cs: It appears (according to the unit tests)
15734         that PropertyManager doesn't use
15735         PropertyDescriptor.AddValueChanged to track propery value changes
15736         in its datasource, but uses the same scheme as Binding, where it
15737         looks for a <Property>Changed event and binds to it.
15738
15739         Also, according to the docs, IsSuspended always returns false for
15740         a property manager with a non-null datasource.
15741
15742 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
15743
15744         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
15745           need to update the actual DialogResult. (Fixes #78613)
15746
15747 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
15748
15749         * Form.cs (ShowDialog): Release any captures before running the
15750           new message pump (fixes #78680)
15751
15752 2006-06-22  Mike Kestner  <mkestner@novell.com>
15753
15754         * ListView.cs: Layout column widths properly in details mode even 
15755         if HeaderStyle.None is set.  Fixes #78691.
15756
15757 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
15758
15759         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
15760
15761 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
15762
15763         * Control.cs (ContainsFocus): Using new driver method to get focused
15764           window, instead of trying to use internal tracking var, which can
15765           recursion issues (Fixes #78685)
15766         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
15767           XplatUIWin32.cs: Added GetFocus method to return focused window
15768
15769 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15770
15771         * ColorDialog.cs: when the mouse button is pressed inside the color
15772         matrix, don't let the cursor move out of it until the button is
15773         released, which is the behavior on windows. Changed 'colours' by
15774         'colors' to use the same word consistently.
15775
15776 2006-06-21  Chris Toshok  <toshok@ximian.com>
15777
15778         * DataGrid.cs: add in some basic navigation stuff (navigating to a
15779         child relation and back, using a stack).  Also, remove
15780         GetDataSource and the code that calls it - it's not needed.  Also,
15781         track CurrencyManager.ListName's removal.
15782
15783 2006-06-21  Chris Toshok  <toshok@ximian.com>
15784
15785         * CurrencyManager.cs: push some of the original type checking from
15786         BindingContext.CreateBindingManager to here, and remove some of
15787         the finalType stuff.  Need more tests to make sure I've got the
15788         ListName part right, and we might need more in SetDataSource.
15789
15790         * PropertyManager.cs: add a ctor that takes just the datasource,
15791         and no property name.  Make SetDataSource work with a null
15792         property_name, and make Current return the data_source if the
15793         property descriptor is null.  this makes 'string foo = "hi";
15794         BindingContext[foo].Current' return "hi" as it should.
15795
15796         * RelatedCurrencyManager.cs: make this code more generic - there's
15797         no reason the parent manager has to be CurrencyManager, and
15798         there's no reason to pass the DataRelation.  It suffices to use a
15799         BindingManagerBase and PropetyDescriptor.
15800
15801         * RelatedPropertyManager.cs: make a similar change here.
15802         
15803         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
15804         flower I knew it could be.
15805
15806 2006-06-20  Chris Toshok  <toshok@ximian.com>
15807
15808         * PropertyManager.cs: the PropertyChangedHandler is invoked when
15809         data in the source has changed and we need to update the control,
15810         so s/PullData/PushData.
15811
15812         * CurrencyManager.cs: Refresh is meant to update the control from
15813         data in the datasource.  So, s/PullData/PushData.
15814
15815         * BindingContext.cs: add more ugliness (we weren't handling the
15816         case where data_source = DataTable and data_member = column_name).
15817
15818         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
15819         from the perspective of the datasource.  PullData pulls from the
15820         control, PushData pushes to the control.
15821
15822 2006-06-20  Chris Toshok  <toshok@ximian.com>
15823
15824         * BindingContext.cs: rewrite the CreateBindingManager code to
15825         handle navigation paths more or less properly.  This could
15826         definitely stand some more work, in particular to push the
15827         recursion up to the toplevel.  But that relies on fixes in other
15828         places (System.Data comes to mind).
15829
15830         Also, move to a flat hashtable (and encode the twolevel nature of
15831         the dictionary into the hash key).  This lets us implement the
15832         IEnumerable.GetEnumerator method.
15833
15834         * RelatedCurrencyManager.cs: new class.  Update our view based on
15835         our relation and our parent CurrencyManager's position.
15836
15837         * CurrencyManager.cs: split out some logic from the ctor into
15838         SetView, so it can be called from the new RelatedCurrencyManager
15839         subclass.
15840
15841         * RelatedPropertyManager.cs: new class.  Update our datasource
15842         based on the position of our parent CurrencyManager.
15843
15844         * PropertyManager.cs: split out some logic from the ctor into
15845         SetDataSource, so it can be called from the new RelatedDataSource
15846         subclass.  Also, make the Current getter return the value
15847         of the PropertyDescriptor, not the data_source.
15848
15849         * Binding.cs: no need to duplicate the string splitting code here.
15850
15851 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
15852
15853         * Control.cs:
15854           - set_Enabled: OnEnabledChanged is not called if the inherited state 
15855             of the control is not altered, even though  we might be changing the
15856             internal state of the control (#78458)
15857           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
15858             OnEnabledChanged, to allow easy altering of any child window state
15859           - OnEnabledChanged: Added code to enable/disable driver window state
15860           - OnParentEnabledChanged: Instead of firing the event, call 
15861             OnEnabledChanged, which will fire the event and also a) set driver
15862             window state and pass the enabled state to any grandchildren (#78458)
15863
15864 2006-06-19  Jackson Harper  <jackson@ximian.com>
15865
15866         * InternalWindowManager.cs: We don't set the cursor explicitly
15867         thats done via the response to NCHITTESTs.
15868         - Don't need to adjust for titlebar heights anymore, the
15869         coordinates are coming in the correct coordinates now (see peters
15870         last patch).
15871
15872
15873 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
15874
15875         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
15876           being translated relative to whole window, instead of client window.
15877           That caused broken offsets on mouseclick (and caused gas for our
15878           InternalWindowManager)
15879
15880 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
15881
15882         * TextControl.cs:
15883           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
15884           - Undo(): Added replay of cursor move on DeleteChars action; added
15885             calling Undo() again if a recorded cursor move is invalid (to
15886             ensure that some action is performed on Undo)
15887         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
15888
15889 2006-06-16  Jackson Harper  <jackson@ximian.com>
15890
15891         * MdiClient.cs: Instead of just sizing maximized windows when
15892         there is a resize we also have to adjust the Y of minimized
15893         windows, so they stay pinned to the bottom of the mdi container.
15894         - Eliminate separate tracking of the active control, we can just
15895         get this from the controls collection.
15896         - Paint the decorations for the newly activated titlebar so we get
15897         a pretty blue bar.
15898         * InternalWindowManager.cs:
15899         * ThemeWin32Classic.cs: Minimized windows get all three buttons
15900         even if they are a tool window.
15901         
15902 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
15903
15904         * TextControl.cs (Undo): Handle non-existent cursor locations in the
15905           undo buffer, these can happen when text was deleted and the cursor
15906           was recorded first. Since we will also have a recorded cursor
15907           after the delete this is not an issue. (Fixes #78651)
15908
15909 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
15910
15911         * AccessibleObject.cs: Remove dependence on Control.is_selected;
15912           instead properly track control states internally (allows us to
15913           remove is_selected from Control)
15914
15915 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15916
15917         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
15918         whose width is not a multiple of 8.
15919
15920 2006-06-13  Jackson Harper  <jackson@ximian.com>
15921
15922         * MdiClient.cs:  Only maximize the next child if the current one
15923         is maximized.
15924
15925 2006-06-13  Chris Toshok  <toshok@ximian.com>
15926
15927         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
15928         modified.  Also, guard against grid or grid_drawing being null in
15929         Invalidate.
15930
15931         * DataGrid.cs: Reformat tons of getters/setters.  In the
15932         DataMember setter, just call SetNewDataSource instead of
15933         duplicating some of its functionality.  In SetNewDataSource, don't
15934         check ListManager for null, since the property getter creates the
15935         object if needed.
15936
15937         * DataGridTableStyle.cs: don't set TableStyle or call
15938         SetDataGridInternal on the column here, it's done in
15939         GridColumnStylesCollection.Add.
15940
15941         * GridColumnStylesCollection.cs: fix all the explicit interface
15942         implementations to just call our methods.  Nuke AddInternal() and
15943         move the body of it to Add().  Also, add a call to
15944         column.SetDataGridInternal to Add().
15945
15946         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
15947         base()+duplicate code.  Also, use the Format property instead of
15948         format to generate an Invalidate ala MS.  Lastly, create the
15949         textbox here, unconditionally.
15950         (set_Format): call Invalidate.
15951         (get_TextBox): no need to call EnsureTextBox.
15952         (Commit): remove the message box.
15953         (Edit) remove the call to EnsureTextBox.
15954         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
15955         (EnterNullValue): no need to check textbox for null.
15956         (HideEditBox): no need to check textbox for null.
15957         (SetDataGridInColumn): add the textbox to the grid's controls.
15958         (EnsureTextBox): nuke.
15959         
15960 2006-06-13  Jackson Harper  <jackson@ximian.com>
15961
15962         * MdiWindowManager.cs: Hook up to the maximized menus paint event
15963         and redraw the buttons when needed. Unhook when the window is
15964         unmaximized.
15965         * MainMenu.cs: Add an internal Paint event, the mdi window manager
15966         needs this so that it can redraw its buttons when the menu is
15967         repainted.
15968         * InternalWindowManager.cs:
15969         * Form.cs: The method order has changed for DrawMaximizedButtons,
15970         so that it can be a PaintEventHandler.
15971         
15972 2006-06-13  Jackson Harper  <jackson@ximian.com>
15973
15974         * MdiClient.cs: When we close a maximized mdi window, the next mdi
15975         window is activated and maximized, even if it wasn't before.
15976         - When  a new window is activated repaint the decorations of the
15977         old one, so that it no longer has the Active "look" (the blue
15978         titlebar).
15979         * InternalWindowManager.cs: Open up CreateButtons to base classes
15980         so they can recreate the buttons on state changes.
15981         - If a window is maximized give it all three buttons
15982         * MdiWindowManager.cs: Create the titlebar buttons when the state
15983         is changed, this is needed because a toolwindow will not have all
15984         three buttons until it is maximized.
15985
15986 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
15987
15988         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
15989           Fixed bug #78609.
15990
15991 2006-06-12  Jackson Harper  <jackson@ximian.com>
15992
15993         * KeysConverter.cs: Make sure we handle the Ctrl special case
15994         if its the only key.
15995         
15996 2006-06-12  Jackson Harper  <jackson@ximian.com>
15997
15998         * Theme.cs: Add a method to get the size of a managed window
15999         toolbar button.
16000         * InternalWindowManager.cs: Remove the ButtonSize property, this
16001         should be retrieved from the theme.
16002         * MdiWindowManager.cs: Get the button size from the theme
16003         * ThemeWin32Classic.cs: Make the method to get the managed window
16004         titlebar button size public.
16005         - Handle the different button sizes of maximized toolwindows
16006         (should match any maximized window).
16007         - Get the titlebar height from the theme, not the WM (which gets
16008         it from the theme).
16009
16010 2006-06-12  Jackson Harper  <jackson@ximian.com>
16011
16012         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
16013         event down to the mdi window manager.
16014         - Expose some extra stuff to base classes
16015         - Make sure to end the Capture on an NC Mouse up, so that we can
16016         get double clicks properly, and the sizing doens't stick.
16017         - When doing PointToClient contain it in the workable desktop
16018         area, this prevents windows from changing size when the cursor is
16019         pulled outside of the working area while sizing.
16020         * MdiWindowManager.cs: When we get a double click maximize the
16021         window.
16022         - Reset the cursor after handling mode changes.
16023
16024 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
16025
16026         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
16027           current desktop, instead of just assuming a 0, 0 origin. This
16028           is needed for our internal window manager, to know the top
16029           margin of the desktop
16030
16031 2006-06-12  Chris Toshok  <toshok@ximian.com>
16032
16033         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
16034         we need this to get rid of the selected background in the bool
16035         column.
16036         (CancelEditing): move the ConcedeFocus call to above the Abort
16037         call.  Also, set is_changing to false and invalidate the row
16038         header if we were changing before.
16039         (ProcessKeyPreviewInternal): remove, since noone outside this
16040         class calls it anymore.  Roll the code into ProcessKeyPreview.
16041         (EndEdit): remove the internal version.
16042         (InvalidateCurrentRowHeader): make private.
16043
16044         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
16045         Keys.Escape handling (and with it the last call to
16046         DataGrid.EndEdit from outside the class.)
16047
16048
16049 2006-06-12  Chris Toshok  <toshok@ximian.com>
16050
16051         * DataGridTextBox.cs (.ctor): isedit defaults to false.
16052         (OnKeyPress): set isedit to true.
16053         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
16054         already handled by the grid.
16055
16056         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
16057         right.  ugh.
16058         (set_DataSource): SetDataSource always returns true, so stop
16059         putting it in an if statement.
16060         (EndEdit): get rid of some {}'s
16061         (ProcessGridKey): return true in case Keys.Escape.
16062         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
16063         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
16064         PositionChanged, stopped connecting to CurrentChanged.
16065         (GetDataSource): simplify this a bunch.
16066         (SetDataSource): change return type from bool to void.
16067         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
16068         to this, and make sure we don't set ListManager.Position inside
16069         set_CurrentCell.
16070         (OnListManagerItemChanged): if we're passed an actual index,
16071         redraw that row.
16072
16073         * CurrencyManager.cs (set_Position): don't call PullData here.
16074
16075 2006-06-09  Jackson Harper  <jackson@ximian.com>
16076
16077         * TreeNode.cs:  Recalculate the visible order before doing the
16078         Expand/Collapse Below calls, because those calls generate an
16079         expose.
16080         - Reduce calls to the TreeView property, which is mildly expensive
16081         by using a local var.
16082         * Form.cs: Layout the MDI child windows when creating the parent
16083         form.
16084         - Don't use the internal constructor anymore
16085         * MdiClient.cs: use the parent form width/height (if available)
16086         when laying out the child windows, we do this because the
16087         mdiclient isn't docked yet when the initial layout is done.
16088         - Don't need an internal constructor anymore.
16089
16090 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16091
16092         * FileDialog.cs: handle access errors when trying to create a folder
16093         or changing to a directory. No need to initialize out parameters.
16094
16095 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16096
16097         * FileDialog.cs: Append a number when creating a new folder if the
16098           folder already exists (use parenthesis instead of square brackets)
16099
16100 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16101
16102         * FileDialog.cs:
16103           - Disabled registry support for windows and added better registry
16104             error checking for other systems (need to investigate why it
16105             works perfectly on my system)
16106           - If a folder already exist show an error MessageBox instead of
16107             trying to create an indexed name.
16108           - Fixed a non intentional typo.
16109
16110 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16111
16112         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
16113
16114 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16115
16116         * FileDialog.cs: When creating a new folder don't crash if the
16117           folder already exists.
16118
16119 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16120
16121         * FileDialog.cs: Allmost a complete rewrite.
16122           - added a "virtual" file system that handles the differences
16123             between unix and windows file systems (especially the directory
16124             structure). Moved most of the directory and file handling code
16125             into the vfs.
16126             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
16127             UnixFileSystem and FSEntry.
16128           - Recently used folder/directory, size, location and used file names
16129             (file name ComboBox) are now stored in the registry and get read
16130             before the dialog shows up (fixes part 6 of bug #78446).
16131           - Creation of new folders/directories is now possible (context menu
16132             or ToolBar). Added TextEntryDialog for this that fills in the gap
16133             until ListView.LabelEdit works.
16134           - Fixed cursor handling (bug #78527) and focus handling for
16135             PopupButtonPanel
16136           - Various "Search in" ComboBox enhancements. The content of the
16137             dropdown listbox now almost matches ms.
16138           - Changed the behaviour when the user switches to SpecialFolder
16139             Recent to show the ListView in View.Details.
16140           - Beside using the ToolBar to change the View property of the
16141             file ListView it is now possible to use the context menu too.
16142
16143 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16144
16145         * ComboBox.cs: Don't create a new ObjectCollection when an item
16146           gets inserted. Just insert the item in the existing object_items
16147           ArrayList.
16148
16149 2006-06-08  Jackson Harper  <jackson@ximian.com>
16150
16151         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
16152         that the treeview and root node checks are done also, this fixes a
16153         regression i caused in the unit tests.
16154
16155 2006-06-07  Wade Berrier <wberrier@novell.com> 
16156
16157         * RichTextBox.cs: More ISO8859-1 -> unicode
16158
16159 2006-06-07  Mike Kestner  <mkestner@novell.com>
16160
16161         * ComboBox.cs : use items to hold highlight/selection so that
16162         collection insertions don't require synchronization.
16163
16164 2006-06-07  Jackson Harper  <jackson@ximian.com>
16165
16166         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
16167         routine.  We now always keep the sized edge at the cursor instead
16168         of computing movement and adjusting rects.  There is one buglet
16169         with this method though when the cursor is moved over area that
16170         the window can not expand too (such as the toolbars on the desktop).
16171
16172 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16173
16174         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
16175         here. Fixes crash on startup in AlbumSurfer.
16176
16177 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
16178
16179         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
16180           values
16181
16182 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16183
16184         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
16185         statement to avoid calling XNextEvent which will block if another thread
16186         took the event that we were expecting. Fixes bug #78605.
16187
16188 2006-06-07  Mike Kestner  <mkestner@novell.com>
16189
16190         * ListView.cs : isolated checkbox clicking from the selection logic.
16191         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
16192
16193 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16194
16195         * Form.cs: Check that the value passed to Form.DialogResult
16196         is a valid enum value.
16197
16198 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16199
16200         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
16201         Computer'. Clicking it in the network view goes to 'My Computer'.
16202         Added CIFS filesystem type. Display the mount point of filesystems.
16203         Avoid duplicate mount points (happens for me with CIFS);
16204
16205 2006-06-06  Jackson Harper  <jackson@ximian.com>
16206
16207         * InternalWindowManager.cs: Draw the maximized windows buttons
16208         when resizing.
16209
16210 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16211
16212         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
16213         all other dialogs. Fixes bug #78585.
16214
16215 2006-06-06  Mike Kestner  <mkestner@novell.com>
16216
16217         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
16218         Only invalidate checkbox on checkstate changes to avoid flicker.
16219         * ListBox.cs : avoid unselect/select when clicking selected item.
16220         avoid reselection flicker for already multiselected items.
16221         Fixes #78382.
16222
16223 2006-06-06  Jackson Harper  <jackson@ximian.com>
16224
16225         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
16226         the parent form so that the menu is removed if needed.
16227
16228 2006-06-06  Mike Kestner  <mkestner@novell.com>
16229
16230         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
16231         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
16232
16233 2006-06-06  Mike Kestner  <mkestner@novell.com>
16234
16235         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
16236
16237
16238 2006-06-06  Jackson Harper  <jackson@ximian.com>
16239
16240         * Control.cs: Use the property (instead of the field) to get the
16241         default cursor so it is instantiated correctly.
16242         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
16243         resizes so we need to manually repaint the window decorations here.
16244         - Set the titlebar button locations as soon as they are created,
16245         otherwise they are not set correctly on win32.
16246         
16247 2006-06-06  Chris Toshok  <toshok@ximian.com>
16248
16249         * CurrencyManager.cs (set_Position): call PullData before
16250         OnCurrentChanged.
16251         (AddNew): after calling IBindingList.AddNew, update our
16252         listposition, and call OnCurrentChanged/OnPositionChanged (without
16253         calling PullData).
16254         (OnCurrentChanged): remove the call to PullData from here.
16255         (OnItemChanged): remove the call to PushData from here.
16256         (OnPositionChanged): change the test from == null to != null to
16257         match the other methods.
16258         (ListChangedHandler): the grossest part of the patch.  Implement
16259         this such that it passes the unit tests in CurrencyManagerTest and
16260         the output more or less matches that of MS's implementation.
16261  
16262 2006-06-06  Mike Kestner  <mkestner@novell.com>
16263
16264         * ListView.cs : only update check state on single click.
16265         * ThemeWin32Classic.cs : fix focus drawing for details view without
16266         fullrowselect.  Fixes #78454.
16267         * XplatUIX11.cs : fix for double click emission.
16268
16269 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16270
16271         * PropertyGridView.cs : Applied Atsushi's patch to fix
16272         font dialog bug  (#78197).
16273
16274 2006-06-05  Jackson Harper  <jackson@ximian.com>
16275
16276         * TreeNode.cs: Compute the next node for expanding/collapsing
16277         correctly. We now factor in nodes without a NextNode
16278         correctly. (Fixes somes cases in nunit-gui).
16279         * InternalWindowManager.cs: Set the bounds when updating the
16280         virtual position of a tool window.
16281         
16282 2006-06-05  Chris Toshok  <toshok@ximian.com>
16283
16284         * DataGrid.cs: rename cached_currencymgr to list_manager.
16285         (set_CurrentCell): move SetCurrentCell code here, and clean it up
16286         some.
16287         (CurrentRow, CurrentColumn): single accessors so we can make the
16288         cursor movement code a lot easier to understand.
16289         (CurrentRowIndex): implement this in terms of CurrentRow.
16290         (BeginEdit): clean this up a bit.
16291         (CancelEditing): sort out the is_editing/is_changing/is_adding
16292         stuff a little.
16293         (EndEdit): minor changes.
16294         (OnKeyDown): add a comment about a (most likely) unnecessary
16295         check.
16296         (OnMouseDown): cancel editing when we click on a row header.  And
16297         use the CurrentRow setter, not CurrentCell.
16298         (ProcessDialogKey): directly call ProcessGridKey.
16299         (UpdateSelectionAfterCursorMove): factor out this common block of
16300         code (it's used everywhere that we move the cursor by updating row
16301         or column).
16302         (ProcessGridKey): pretty substantial overhaul.  Use the
16303         CurrentRow/CurrentColumn properties to make the code a lot more
16304         readable.  Only use the CurrentCell property when we have to
16305         modify both row and column at once.  Tab behavior is still broken,
16306         and Delete is untested.
16307         (Select): if we have no selected rows, set selection_start to
16308         @row.
16309         (EditCurrentCell): rename EditCell this.  It was only ever invoked
16310         with CurrentCell as the arg, so drop the arg and rename it.
16311
16312         * DataGridColumnStyle.cs: clean up the constructors a little, and
16313         drop CommonConstructor().
16314
16315         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
16316         actually get notified when the user hits it.
16317         (ProcessKeyMessage): *substantially* simplify this method.
16318         There's no reason (that I can see) for the textbox to be making
16319         calls into the datagrid at all.  Remove all of them but the ones
16320         for Enter handling.  those will take some more work.
16321
16322         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
16323         calling HideEditBox.
16324         (HideEditBox): if we have an active textbox, render it invisible
16325         without causing a re-layout of the datagrid.
16326
16327 2006-06-05  Mike Kestner  <mkestner@novell.com>
16328
16329         * ListView.cs : fix NRE crasher when focuseditem is cleared by
16330         collection changes by resetting it to Items[0].  Fixes #78587.
16331
16332 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16333
16334         * MessageBox.cs: if the height of the text is larger than the icon_size,
16335         use that. Fixes bug #78575.
16336
16337 2006-06-05  Jackson Harper  <jackson@ximian.com>
16338
16339         * TreeView.cs: Fix line drawing when scrolling.  To do this each
16340         node is basically responsible for drawing its entire horizontal
16341         area.  When drawing a node it draws its parent node lines if
16342         needed.
16343         - Adjust the clip area to the viewport rectangle
16344         - Fix Left/Right key handling to match MS. (It expand/collapses
16345         and moves to parents/first child but does not move selection to
16346         sibling nodes).
16347         - Fix SetTop to work with new bound calculation code
16348         - When scrollbars are no longer needed we need to reset scrolling
16349         vars and recalculate the visible order so the redraw is correct
16350         * TreeNode.cs: We can't expand/collapse nodes with no children.
16351
16352 2006-06-03  John Luke  <john.luke@gmail.com> 
16353
16354         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
16355         so the colors work without dev packages
16356         
16357 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
16358
16359         * Control.cs 
16360           - Select: Implemented to just use activate. Seems to match MS 
16361             behaviour closest. Documented to only do actual control walking 
16362             based on it's parameters if in a container control so I moved 
16363             the code there.
16364           - Removed selection check logic from our internal Select() method
16365         * ContainerControl.cs:
16366           - Select: Moved selection logic from Control here, since MS documents
16367             that containers obey the bool arguments. No longer calling base
16368
16369 2006-06-02  Jackson Harper  <jackson@ximian.com>
16370
16371         * TreeView.cs: If the selected node isn't changed when we get
16372         focus update the previously selected node so that we see the
16373         selection box.
16374
16375 2006-06-02  Mike Kestner  <mkestner@novell.com>
16376
16377         * ComboBox.cs: restructure grab and general mouse event handling.
16378         Make the composite control raise mouse events like it was a single
16379         control for leaves/enters/motion/up/down events.  fix dropdown list
16380         coordinate mangling and refactor it into the scrollbar subclass to
16381         reduce code duplication.  Fixes #78282 #78361 and #78457.
16382
16383 2006-06-02  Mike Kestner  <mkestner@novell.com>
16384
16385         * ScrollBar.cs: remove Capture setting/clearing, as it happens
16386         automatically in the Control.WndProc.
16387
16388 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16389
16390         * FileDialog.cs: fix crash when running SharpChess, which sets the
16391         FilterIndex to 2 with only one Filter.
16392
16393 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16394
16395         * ToolBar.cs: add SizeSpecified property.
16396         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
16397         try to figure out our real size, otherwise fallback to what the
16398         container says.
16399
16400 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
16401
16402         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
16403         * Control.cs (WndProc): MS always calls the DefWndProc to pass
16404           up the event
16405
16406 2006-06-01  Mike Kestner  <mkestner@novell.com>
16407
16408         * ListView.cs: revamp the focus management in ListView.  It still
16409         causes churn of LostFocus/GotFocus emissions on clicks, but it's
16410         better than not handling focus at all.  Will revisit when pdb feels
16411         the general focus handling is solid.  Fixes #78526.
16412
16413 2006-06-01  Jackson Harper  <jackson@ximian.com>
16414
16415         * TreeView.cs: Set the default border style in the constructor.
16416         - Move painting to use OnPaintInternal instead of capturing
16417         WM_PAINT, this is the correct way of doing things
16418         - UpdateBelow shouldn't invalidate the scrollbar area
16419         - Cap the top on update below in case the node was above the top
16420         of the viewport rectangle.
16421         - ExpandBelow and Collapse below need to obey Begin/End Update.
16422         * TreeNode.cs: Make is_expanded internal so the treenode
16423         collection can change it without firing the whole event chain.
16424         * TreeNodeCollection.cs: When clearing all the child nodes make
16425         sure to recalc the visible order.
16426         - Improve algo for remove the top node
16427
16428 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
16429
16430         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
16431           SendMessage directly calling window procedures, which in turn might
16432           call SetFocus()
16433
16434 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
16435
16436         * Control.cs: Don't handle WM_SETFOCUS if the same window already
16437           has focus (works around X11 sending a FocusIn after our SetFocus)
16438         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
16439
16440 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
16441
16442         * Mime.cs: Fix for the NET_2_0 build.
16443           NameValueCollection needs StringComparer now.
16444
16445 2006-05-31  Chris Toshok  <toshok@ximian.com>
16446
16447         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
16448         return (via an out parameter) the starting X of the column.
16449         (UpdateVisibleColumn): track change to FromPixelToColumn.
16450         (HitTest): add a ColumnResize case here.
16451         (DrawResizeLine): new function, probably poorly named.
16452
16453         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
16454         only need to keep one reference.
16455         (set_ListManager): same.
16456         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
16457         Also, add support for HitTestType.ColumnResize.
16458         (OnMouseMove): add column resize behavior here, and change the
16459         cursor to the correct one as we move around the datagrid.
16460         (OnMouseUp): terminate the column resize if we're resizing.
16461         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
16462         for the current cell.
16463         (ConnectListManagerEvents): use cached_currencymgr.
16464         (DisconnectListManagerEvents): fill this in, using
16465         cached_currencymgr.
16466         (SetCurrentCell): remove cached_currencymgr_events handling.
16467         (SetDataMember): only call DisconnectListManagerEvents if
16468         cached_currencymgr is != null.
16469         (SetDataSource): same.
16470         (OnListManagerCurrentChanged): cached_currencymgr_events ->
16471         cached_currencymgr.
16472
16473 2006-05-31  Jackson Harper  <jackson@ximian.com>
16474
16475         * BindingManagerBase.cs: Remove somedebug code that creeped into
16476         SVN.
16477         * TreeNode.cs: We get the indent level dynamically right now, so
16478         don't track it as a member.
16479         * TreeNodeCollection.cs: Make sure all nodes added to the list
16480         have parents, treeviews/topnodes setup properly.
16481         - Don't attempt to track indent level.
16482
16483 2006-05-30  Jackson Harper  <jackson@ximian.com>
16484
16485         * BindingContext.cs: Create the currency manager tables here.
16486         This allows us to more easily create null tables (when bad data
16487         members are used), and more easily create related currency
16488         managers.
16489         * CurrencyManager.cs: All the table creation stuff is done by the
16490         binding context now.
16491         - Current should throw an exception if listposition is -1.
16492         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
16493         been bound yet.
16494
16495 2006-05-30  Mike Kestner  <mkestner@novell.com>
16496
16497         * ListView.cs: allow reexpansion of zero-width column headers.
16498         Fixes #78528.
16499
16500 2006-05-28  Chris Toshok  <toshok@ximian.com>
16501
16502         * CurrencyManager.cs (get_Current): after the late binding
16503         listposition = -1 fix, we need to guard against it here and return
16504         null, otherwise we raise an exception (which is swallowed
16505         elsewhere, and breaks datagrid databinding.)
16506
16507 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
16508
16509         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
16510           than WM_SYSKEY, don't throw if get something unexpected (#78507)
16511
16512 2006-05-26  Jackson Harper  <jackson@ximian.com>
16513
16514         * ControlPaint.cs:
16515         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
16516         values, it's faster and it's all we care about (we don't care if
16517         the names aren't equal).
16518         * KeyboardLayouts.cs: Eliminate some dead code.
16519         - Lazy init things
16520         * X11Keyboard.cs: Lazy init keyboard detection.
16521         - Cleanup access modifiers a little.
16522
16523 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
16524
16525         * XplatUIX11.cs: Once again, attempting to get layout just right.
16526
16527 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
16528
16529         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
16530           the sizes of each link section, that will result in sizes that
16531           match DrawString's layout (Fixes #78391)
16532
16533 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
16534
16535         * FileDialog.cs: If AddExtension property is true autocomplete the
16536           extensions in SaveFileDialog correctly. Fixes bug #78453.
16537           Set MyNetwork and MyComputer to "C:\" for windows. This should
16538           fix part 8 of bug #78446 for now.
16539
16540 2006-05-26  Chris Toshok  <toshok@ximian.com>
16541
16542         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
16543         invalidate the current row header if we need to, but presumably
16544         we'll invalidate the row corrsponding to the bounds or
16545         editingControl.
16546         (GridHScrolled): switch back to this method, as it's part of the
16547         public api.  *sigh*.
16548         (GridVScrolled): same.
16549         (OnMouseWheel): hack up something that more or less works.  Call
16550         GridHScrolled/GridVScrolled directly, instead of duplicating much
16551         of their code here.
16552         (EnsureCellVisibility): reinstate a bunch of this code, since we
16553         can't just set the scrollbar Value and expect to do all the work
16554         in the ValueChanged handler.  Also, Call Update() after scrolling
16555         in one direction so the other XplatX11.ScrollWindow call has the
16556         proper stuff in the proper places.
16557         (EditCell): set is_editing to true before calling .Edit.
16558
16559         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
16560         don't bother comparing first.
16561         (OnKeyPress): call grid.ColumnStartedEditing before calling
16562         base.OnKeyPress.  this will set is_changing and invalidate the row
16563         header if necessary.
16564         (ProcessKeyMessage): for WM_CHAR messages, call
16565         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
16566         and WM_KEYDOWN.
16567         
16568         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
16569         it's done in the DataGrid.
16570         (NextState): call grid.ColumnStartedEditing, which takes care of
16571         invalidating the row header (and setting is_changing).
16572
16573         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
16574         here.  it's done in the DataGrid.
16575
16576 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16577
16578         * Control.cs: allow changing the cursor when the mouse position is
16579         out of bounds but Capture is set.
16580         * LinkLabel.cs: handle the case when the mouse button is pressed on the
16581         linklabel but released somewhere else.
16582
16583 2006-05-25  Jackson Harper  <jackson@ximian.com>
16584
16585         * TreeView.cs: When we get focus if there is no selected node make
16586         it the top node
16587         - Remove some uneeded setup code from Draw.
16588         * TreeNodeCollection.cs: If the tree doesn't have a top node when
16589         a new node is inserted make the new node the top.
16590         * XplatUIX11.cs:
16591         * Timer.cs: Use Utc time so that no local time zone stuff needs to
16592         be used (should be faster).
16593         
16594 2006-05-25  Chris Toshok  <toshok@ximian.com>
16595
16596         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
16597         problem with the last commit.
16598
16599 2006-05-25  Chris Toshok  <toshok@ximian.com>
16600
16601         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
16602         need the invalidate call here, while scrolling right-to-left via
16603         the left arrow key (i.e. moving the editing cell while scrolling).
16604
16605         * DataGrid.cs (.ctor): remove the initialization of
16606         ctrl_pressed/shift_pressed.  We no longer track them using key
16607         up/down handlers, but by using Control.ModifierKeys.  Also, switch
16608         to using ValueChanged handlers on the scrollbars instead of
16609         Scrolled event handlers.  This simplifies a bunch of the scrolling
16610         code.
16611         (GridHValueChanged): rename from GridHScrolled, and change it to
16612         work with the new event args.
16613         (GridVValueChanged): same.
16614         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
16615         (OnMouseWheel): actually scroll the datagrid.  Don't change the
16616         selected cell.
16617         (ProcessGridKey): correct all the keyboard navigation stuff I
16618         could find.  Ctrl up/down/left/right/home/end work now.
16619         (EnsureCellVisibility): correct method name spelling.  Also,
16620         simplify this a touch by not explicitly calling the
16621         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
16622         scrollbar value.
16623         (OnKeyUpDG): no need for this method now.
16624         
16625 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16626
16627         * LinkLabel.cs: display the OverrideCursor when hovering the label.
16628         Fixes bug #78392.
16629
16630 2006-05-25  Chris Toshok  <toshok@ximian.com>
16631
16632         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
16633         r61019.
16634
16635 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
16636
16637         * Application.cs: Moved setting of is_modal and closing to before
16638           we create the control, to allow the event handlers called as a
16639           result of creation affect closing. Also removed Gonzalo's previous
16640           change to setting DialogResult, the behaviour has been moved to 
16641           Form.ShowDialog()
16642         * Form.cs: 
16643           - ShowDialog(): Removed explicit creation of the form, let RunLoop
16644             handle it instead
16645           - ShowDialog(): If no dialog result is set, we need to return Cancel
16646           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
16647             the close is cancelled
16648
16649 2006-05-25  Jackson Harper  <jackson@ximian.com>
16650
16651         * StatusBar.cs: We only need to update the sizes of the other
16652         panels when we have auto size contents.  Also we are only updating
16653         the contents of the panel, not the borders, so compensate for the
16654         border width (TODO: get this width from the theme somehow).
16655         * TreeView.cs: Scrollable is true by default
16656         - Use invalidate instead of refresh where needed
16657         - Factor the scrollable value into scrollbar updating
16658         - Update the scrollbars if the Scrollable property is altered
16659         - Update the selected node if its ImageIndex is changed
16660         - Handle null nodes in UpdateNode (mainly so we don't have to
16661         check if selected is null when updating it
16662         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
16663         are factored into the visible count
16664         - Use VisibleCount for clarity in the code
16665         - When the font is changed we need to recurse through all the
16666         nodes and invalidate their sizes
16667         
16668 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16669
16670         * Application.cs: set the DialogResult to fixed when the main form is
16671         hidden or destroyed while being modal.
16672
16673 2006-05-25  Miguel de Icaza  <miguel@novell.com>
16674
16675         * Theme.cs: Use Tangoified messagebox icons. 
16676
16677         (GetSizedResourceImage): Also cope with width = 0 and do not
16678         trigger a warning in that case (0 means "give me your icon from
16679         the resouce, no special size needed).
16680
16681 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
16682
16683         * Application.cs: Leave runloop if the the main modal form is 
16684           hidden (fixes #78484)
16685
16686 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
16687
16688         * BindingContext.cs : reject null datasource in Contains() and
16689           Item[].
16690         * CurrencyManager.cs : check data_member validity when data_source
16691           is dataset. When it is late binding, the initial position is -1.
16692
16693 2006-05-24  Jackson Harper  <jackson@ximian.com>
16694
16695         * TreeNodeCollection.cs: Dont't recalculate the visible order on
16696         inserted nodes that aren't visible.  This changes the
16697         max_visible_order which confuses scrollbar settings.
16698         - Use the enumerator to get the prev node instead of duplicating
16699         code.
16700         * TreeView.cs: Use new method for setting scrollbar values
16701         - Don't set the bounds every time the scrollbar is updated
16702         - When updating below the root node use an invalidate instead of a
16703         refresh to prevent the child controls (scrollbars) from being
16704         refreshed. (UpdateBelow still needs to be reworked anyways).
16705         - Reenable SetBottom now that visible orders are set correctly,
16706         added some debug code incase we ever get bad values there again.
16707         - Set the scrollbar max to 2 less then the max value, this
16708         compensates for the max value being one above the node count, and
16709         for scrollbars adding one extra "notch".
16710         - When drawing image nodes if there is an imagelist we draw the
16711         first image in the list if the supplied image index is out of the
16712         image list's bounds.
16713         
16714 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
16715
16716         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
16717           we receive a size change from the WM (Fixes #78503)
16718
16719 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
16720
16721         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
16722           rectangle (Fixes #78501)
16723
16724 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
16725
16726         * ButtonBase.cs: 
16727           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
16728             as a bitfield.
16729           - Fixed MouseMove to no longer switch pressed state unless the left
16730             mouse button is pressed. Atsushi provided the original patch (#78485)
16731           
16732 2006-05-24  Jackson Harper  <jackson@ximian.com>
16733
16734         * ScrollBar.cs: New internal methods that allow us to change a
16735         couple values on the scrollbar (the most common case is maximum
16736         and large change) without getting multiple invalidates.
16737
16738 2006-05-24  Chris Toshok  <toshok@ximian.com>
16739
16740         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
16741         (Edit): save off the original state in oldState, and set
16742         grid.is_editing to true.
16743         (OnKeyDown): abort editing if escape is pressed.  also, call
16744         NextState if space is pressed.
16745         (OnMouseDown): call NextState.
16746         (NextState): factor out shared code from OnKeyDown and OnMouseDown
16747         here.  Also, only invalidate the row header once (on the initial
16748         is_changing switch) to save on redraws.
16749
16750 2006-05-24  Chris Toshok  <toshok@ximian.com>
16751
16752         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
16753         if the value in the cell is different than it was before.  This
16754         keeps us from triggering a layout when we move around a datarid
16755         with a highlighted cell.
16756         (Edit): suspend layout when creating/positining the text box, and
16757         resume passing false so we don't ever actually re-layout.
16758         (ReleaseHostedControl): same.
16759         (EnsureTextBox): reformat slightly, and set WordWrap to false.
16760
16761         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
16762         control-key sequences should go to the datagrid - remove that
16763         lock.  Also, modify the conditions under which we move between
16764         cells when moving the cursor within a cell, and remove the "this"
16765         and "base" from field accesses.  We weren't even consistent, given
16766         they all were in the base class.
16767
16768 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
16769
16770         * Binding.cs : (.ctor)
16771           An obvious NRE fix for BindingTest.CtorNullTest().
16772
16773 2006-05-23  Chris Toshok  <toshok@ximian.com>
16774
16775         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
16776         them between lines.  This fixes some quirks editing cells in the
16777         datagrid.
16778
16779 2006-05-23  Jackson Harper  <jackson@ximian.com>
16780
16781         * TreeView.cs: Use begin/end update when doing expand/collapse all
16782         so that we don't get flicker on the scrollbar.
16783
16784 2006-05-23  Jackson Harper  <jackson@ximian.com>
16785
16786         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
16787         treenode calculations to be independant of the painting code. To
16788         do this nodes track a visible order which is calculated by the
16789         treeview.
16790         - Call new methods for expanding/collapsing nodes.  These methods
16791         use scrollwindow so we don't have to update everything below the
16792         node.
16793         * TreeView.cs: Refactored drawing and scrolling code.  We don't
16794         need to update nodes when drawing anymore or calculate scrollbar
16795         stuff.
16796         - Added new methods for expanding/collapsing nodes. These methods
16797         use ScrollWindow so as to not have to redraw all the nodes below.
16798         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
16799         we add/remove nodes or sort.
16800         - Handle removing the selected and the top node properly.
16801
16802 2006-05-23  Chris Toshok  <toshok@ximian.com>
16803
16804         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
16805         maybe this should actually happen in the datagrid code?
16806         (EndEdit): no need to invalidate anything, given that
16807         ReleaseHostedControl causes the datagrid to relayout, which
16808         invalidates everything anyway.
16809
16810         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
16811         in SetCurrentCell).
16812         (set_SelectionBackColor): call InvalidateSelection instead of
16813         Refresh.
16814         (set_SelectionForeColor): same.
16815         (BeginEdit): Flesh this out a bit.
16816         (CancelEditing): only do any of this if we're editing/adding.
16817         (EndEdit): same.
16818         (OnMouseDown): there's no need to cancel editing here, it's done
16819         in SetCurrentCell.
16820         (SetCurrentCell): only invalidate the current row header if it's a
16821         different row than the new one.
16822         (ShiftSelection): fix this to work like MS does.
16823         (ResetSelection): factor out the invalidation of selected_rows to
16824         InvalidateSelection.
16825         (SetDataSource): cancel any editing that's going on.
16826
16827         * DataGridColumnStyle.cs
16828         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
16829         call the non-interface version.
16830
16831         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
16832         header rectangle with the clip rectangle so we don't redraw the
16833         entire header for just a small area.  Gets rid of the last flicker
16834         when horizontally scrolling.
16835         (DataGridPaintRow): same.
16836
16837 2006-05-23  Mike Kestner  <mkestner@novell.com>
16838
16839         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
16840         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
16841         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
16842         Critical bug report.
16843
16844 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
16845
16846         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
16847           and this fixes #78493
16848
16849 2006-05-23  Miguel de Icaza  <miguel@novell.com>
16850
16851         * Theme.cs (GetSizedResourceImage): Scale images if the proper
16852         size is not found.  
16853         
16854         * FileDialog.cs: Do not change the background for the side bar as
16855         it wont work nicely with the theme, and also reduces the artifacts
16856         in rendering the icons (which I want to fix too).
16857
16858         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
16859         resources, not resgen resources. 
16860
16861         (PlatformDefaultHandler): Pull images using the new API.
16862
16863 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
16864
16865         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
16866           a reference to the hwnd and will not remove it unless there are
16867           no pending exposures (fixes #78341)
16868         * XplatUI.cs: Improved debug
16869
16870 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
16871
16872         * MenuAPI.cs : don't handle OnClick event when it was not the left
16873           button. Fixed bug #78487.
16874
16875 2006-05-23  Mike Kestner  <mkestner@novell.com>
16876
16877         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
16878         prefer submenus to the top menu for item lookup, to avoid popping down
16879         top-row items.
16880
16881 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
16882
16883         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
16884           Graphics.FillRectangle as the visual results are really bad (even
16885           on win). We now draw perfect arrows (and perfect shadows when the
16886           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
16887           Pen.DashPattern to draw the dots of each line.
16888
16889 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
16890
16891         * FileDialog.cs: Update the filename combobox when navigating through
16892           the ListView with the cursor keys. Fixes part 7 of bug #78446.
16893
16894 2006-05-22  Mike Kestner  <mkestner@novell.com>
16895
16896         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
16897         Fixes #78463.
16898
16899 2006-05-22  Mike Kestner  <mkestner@novell.com>
16900
16901         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
16902         requests. Fix a misspelled parameter and a copy paste exception error
16903         in Select.
16904
16905 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
16906
16907         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
16908           to get the same width/height (5/13) on X11 as the default font has on
16909           win32. This means that our DefaultFont emSize is smaller than the 
16910           the MS SWF equivalent (even thought the width/height stays the same)
16911
16912 2006-05-20  Jackson Harper  <jackson@ximian.com>
16913
16914         * MdiClient.cs:
16915         * MdiWindowManager.cs:
16916         * InternalWindowManager.cs: Make sure to use the border width from
16917         the theme.
16918
16919 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
16920
16921         * PrintDialog.cs: Implements printer details
16922
16923 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
16924
16925         * FileDialog.cs: Added focus handling for PopupButtonPanel.
16926           Fixes part 1 and 2 of bug #78446
16927
16928 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
16929
16930         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
16931           instead of sticking to the first ever calculated value
16932
16933 2006-05-19  Mike Kestner  <mkestner@novell.com>
16934
16935         * ComboBox.cs: fix mouse motion selection to use MousePosition and
16936         PointToClient, since Capture is set. Fixes #78344.
16937
16938 2006-05-19  Mike Kestner  <mkestner@novell.com>
16939
16940         * ListView.cs: match MS behavior in Details view where items are not
16941         drawn if Columns.Count == 0. 
16942         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
16943         Use a separate pen to draw the check, since changing the width affects
16944         the box as well.  Fixes #78454.
16945
16946 2006-05-18  Miguel de Icaza  <miguel@novell.com>
16947
16948         * ListView.cs: ArgumentOutOfRangeException, single versions of the
16949         exception should throw the name of the invalid argument.
16950
16951         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
16952         there are no files listed. 
16953
16954 2006-05-18  Jackson Harper  <jackson@ximian.com>
16955
16956         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
16957         up.
16958
16959 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
16960
16961         * Control.cs: Brought back our old UpdateZOrder method as a private
16962           function and switched our calls from UpdateZOrder to the new one.
16963           This fixes the Paint.Net canvas disappearing bug.
16964
16965 2006-05-18  Jackson Harper  <jackson@ximian.com>
16966
16967         * Theme.cs:
16968         * ThemeWin32Classic.cs:
16969         * InternalWindowManager.cs: Move the drawing into the theme,
16970         expose everything the theme should need from the window manager.
16971
16972 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
16973
16974         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
16975           from the call to NativeWindow to avoid walking up the parent chain
16976           further than needed (speeds up setting cursors and avoids setting
16977           the wrong cursor if a parent has another cursor defined)
16978         * Cursor.cs: When loading an icon as cursor, MS uses the center of
16979           the icon as hotspot, not what's contained as hotspot in the icon
16980           file. This fixes the perceived drawing offset seen with Paint.Net
16981         
16982 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
16983
16984         * XplatUIX11.cs: 
16985           - Store the calculated rectangle in Hwnd object and use it when 
16986             setting the client size
16987           - Force Toolwindows to always be type Dock, to ensure they're on top
16988
16989 2006-05-18  Mike Kestner  <mkestner@novell.com>
16990
16991         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
16992         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
16993         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
16994         Substantial refactoring to remove confusing nested classes. Coding
16995         standard and Get+Set->property refactorings.  Shift to index based
16996         highlighting in ComboListBox instead of constantly using IndexOf and
16997         Items[]. Add invalidations on resize for DropDownList to fix ugliness
16998         in FileDialog growth.  Draw borders manually since Simple mode needs
16999         to look like two independent controls.  Make listbox border
17000         conditional to DropDownStyle.  Improved OwnerDraw support.
17001
17002 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
17003
17004         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
17005         Don't set the disposed graphics to null, so we can throw the "right"
17006         exception if the graphics is reused later (added a flag to avoid 
17007         double disposing). Some behaviours are different under 2.0 and are
17008         filled under bug #78448.
17009
17010 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
17011
17012         * Control.cs: When double-buffering is enabled, we need to reset
17013           our graphics context between paint calls. Otherwise, any 
17014           transformations and other alterations on the context will 
17015           become cumulative (#77734)
17016
17017 2006-05-18  Mike Kestner  <mkestner@novell.com>
17018
17019         * ListView.cs: do focused item selection like MS on clicks. 
17020         Rework focus handling for ItemControl so LostFocus invalidates as
17021         well.
17022         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
17023         the ListView ItemControl has focus.
17024
17025 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
17026
17027         * XplatUIX11.cs: If client_window ends up being width or height zero
17028           due to border settings, move it off window inside whole_window (#78433)
17029
17030 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
17031
17032         * Mime.cs: Shrink the mime file cache correctly.
17033
17034 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
17035
17036         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
17037
17038 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
17039
17040         * XplatUIX11.cs (AddExpose): More sanity checks
17041
17042 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17043
17044         * XplatUIX11.cs:
17045           - AddExpose: Don't add expose ranges outside the size of our
17046             window
17047           - Cast opacity values to Int32 to avoid crashes with certain
17048             values
17049           - Added disabled code paths that protect against illegal cross-
17050             thread painting (Developers.exe)
17051
17052 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
17053
17054         * ProgressBar.cs: Invalidate the control when it's resized
17055           since block size is based on control size. (#78388)
17056
17057 2006-05-16  Miguel de Icaza  <miguel@novell.com>
17058
17059         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
17060         of setting the incoming argument to the "reset" value, we set the
17061         this.datamember to string.empty (before we were invalidating the
17062         incoming data).   
17063
17064         Fixes 78420
17065
17066 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17067
17068         * Form.cs: Only apply transparency settings after the form
17069           is created. (Fixes #77800)
17070
17071 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
17072
17073         * ApplicationContext.cs: Grab the HandleDestroyed event so
17074           we know when to fire OnMainFormClosed 
17075
17076 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17077
17078         * Application.cs: Introduced sub-class to allow tracking of
17079           threads and centralized triggering of the event mess for
17080           ThreadExit, AppExit, etc..  (#76156)
17081
17082 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
17083
17084         * MimeIcon.cs:
17085           - Do not return a null icon index value for a mime subclass.
17086             Instead try the main mime type class too.
17087           - Seems that some newer distributions don't have a link to some
17088             gnome default icons anymore. So check the default gnome dir too.
17089           
17090
17091 2006-05-16  Jackson Harper  <jackson@ximian.com>
17092
17093         * MdiClient.cs: Don't paint the parent background image if we have
17094         our own background image.
17095
17096 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17097
17098         * Control.cs:
17099           - PerformLayout: Do not shrink space filled by DockStyle.Fill
17100             controls, all filled controls are supposed to overlap (#78080)
17101           - UpdateZOrder is supposed to update the control's z-order in the
17102             parent's z-order chain. Fixed to behave like that
17103           - BringToFront: Removed obsolete code
17104           - SendToBack: Simplyfied
17105           - SetChildIndex: Trigger layout calculations when Z-order changes
17106             since layout is done by z-order
17107
17108 2006-05-16  Chris Toshok  <toshok@ximian.com>
17109
17110         [ fixes bug #78410 ]
17111         * DataGrid.cs (set_AlternatingBackColor): use
17112         grid_drawing.InvalidateCells instead of Refresh().
17113         (set_BackColor): call grid_drawing.InvalidateCells.
17114         (set_BackgroundColor): use Invalidate instead of Refresh.
17115
17116         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
17117         invalidate the cell area.
17118
17119 2006-05-15  Chris Toshok  <toshok@ximian.com>
17120
17121         [ fixes bug #78011 ]
17122         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
17123         on to DataGridPaintRow.
17124         (DataGridPaintRow): take a clip argument, and only draw the cells
17125         which intersect it.  same with the not_usedarea.
17126
17127         * Theme.cs (DataGridPaintRow) add @clip parameter.
17128
17129         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
17130         XplatUI.ScrollWindow.
17131         (ScrollToRow): same.
17132
17133         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
17134         with last column which was causing a gray swath to appear with the
17135         XplatUI.ScrollWindow code.
17136
17137 2006-05-15  Chris Toshok  <toshok@ximian.com>
17138
17139         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
17140         use XplatUI.ScrollWindow.
17141         (VerticalScrollEvent): use XplatUI.ScrollWindow.
17142
17143 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
17144
17145         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
17146
17147 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
17148
17149         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
17150           file since there are no equivalent X11 cursors
17151
17152 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
17153
17154         * MonthCalendar.cs : DateTimePicker should reflect selected date
17155           on mouse*up*, not mouse*down*. Fixed originally reported part of
17156           bug #76474.
17157
17158 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
17159
17160         * TabControl.cs : When argument index is equal or more than tab
17161           count, just ignore. Fixed bug #78395.
17162
17163 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
17164
17165         * Control.cs: Dispose all child controls when control is diposed (#78394)
17166
17167 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
17168
17169         * ColorDialog.cs: Finally it is possible to select the color with
17170           the text boxes
17171
17172 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
17173
17174         * PrintDialog.cs: Fix typo
17175
17176 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
17177
17178         * PrintDialog.cs: PrintDialog is not resizable
17179         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
17180           color. Made some ToolBar drawing methods protected virtual.
17181
17182 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
17183
17184         * PrintDialog.cs: Implementation of the PrintDialog
17185
17186 2006-05-12  Chris Toshok  <toshok@ximian.com>
17187
17188         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
17189         thumb, instead use MoveThumb.  This has the side effect of making
17190         most of the other thumb moving machinery use MoveThumb as well.
17191         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
17192         need to actually invalidate the rectangle where the new thumb will
17193         go.
17194         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
17195         We force an Update() after, so it's not as fast as it could be,
17196         but at least there's zero flicker and no droppings.
17197         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
17198         (UpdateThumbPos): add another argument (dirty), which says whether
17199         or not to calculate/add dirty regions which we later invalidate.
17200         For cases where we know we're going to use MoveThumb, we pass
17201         false for this.  Otherwise, pass true.
17202
17203 2006-05-12  Jackson Harper  <jackson@ximian.com>
17204
17205         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
17206         the status bar.
17207         
17208 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
17209
17210         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
17211           and GetClipRegion methods and UserClipWontExposeParent property.
17212         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
17213           overriding UserClipWontExposeParent property, setting to false, since
17214           Win32 handles the required expose messages to draw our clipped parent
17215           areas internally
17216         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
17217           PaintEventStart to set the user clip region if set.
17218         * Control.cs: 
17219           - Now internally tracking the Region for the control since we need to
17220             store it if the handle is not yet created and only set it when it
17221             becomes created. Before setting the region forced handle creation
17222           - Added code to draw the parents underneath a user-clipped region
17223         * Hwnd.cs: Added UserClip property
17224
17225 2006-05-12  Chris Toshok  <toshok@ximian.com>
17226
17227         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
17228         (set_Maximum): same.
17229         (set_Minimum): same.
17230         (set_SmallChange): same.
17231         (OnMouseUpSB): remove the call to refresh when releasing the
17232         thumb.  We shouldn't need it.
17233         
17234 2006-05-12  Miguel de Icaza  <miguel@novell.com>
17235
17236         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
17237         AutoSize set to None, we do not need to relayout everything, we
17238         just need to invalidate the current region.
17239
17240         (Draw): Do not draw the entire ClientArea, just redraw the
17241         clip area being passed.
17242
17243         * MdiClient.cs: Make MdiClient constructor with the Form argument
17244         internal. 
17245
17246 2006-05-12  Jackson Harper  <jackson@ximian.com>
17247
17248         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
17249         parents background image,  but strangely not their own.
17250         - (DrawStatusBarPanel): Take into account horizontal alignment
17251         when drawing the strings and icons.
17252
17253 2006-05-12  Mike Kestner  <mkestner@novell.com>
17254
17255         * ListBox.cs: avoid invalidations for focus when the collection is
17256         empty. 
17257
17258 2006-05-12  Chris Toshok  <toshok@ximian.com>
17259
17260         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
17261         invalidate the entire thumb area.  Call InvalidateDirty which
17262         limits the redraw to the thumb itself and surrounding pixels.
17263
17264         * XplatUIX11.cs (ScrollWindow): optimize copying.
17265         
17266 2006-05-12  Chris Toshok  <toshok@ximian.com>
17267
17268         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
17269         Figure out the positioning/layout in a single pass instead of
17270         multiple recursive invocations.  Speeds up the initial display of
17271         the data grid.  Also, make many things private that were
17272         originally public but unused outside this class.
17273
17274 2006-05-11  Jackson Harper  <jackson@ximian.com>
17275
17276         * MdiClient.cs: Improved layout code.
17277
17278 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
17279
17280         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
17281           not SelectedObject.
17282
17283 2006-05-11  Chris Toshok  <toshok@ximian.com>
17284
17285         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
17286         union of that will always be {0,0,width,height}.
17287
17288 2006-05-11  Jackson Harper  <jackson@ximian.com>
17289
17290         * Form.cs: Match MS's DefaultSize for forms (they must have
17291         changed the size in sp2).
17292
17293 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
17294
17295         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
17296
17297 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
17298
17299         * TextControl.cs : Fixed bug #78109. This incorrect position
17300           comparison caused crash on automatic line split.
17301         * TextBoxBase.cs : reduce duplicate code.
17302
17303 2006-05-10  Jackson Harper  <jackson@ximian.com>
17304
17305         * MdiClient.cs: Active form is only sent to the back when using
17306         the Next form functionality, when a form is clicked the current
17307         active shouldn't be sent to the back.
17308         - Layout the mdi windows when the container is first made visible.
17309         * Form.cs: Give the MdiClient a ref to the containing form when we
17310         create it.
17311         
17312 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
17313
17314         * LinkLabel.cs : link_font could be uninitialized, so populate one
17315           before actual use. Fixed bug #78340.
17316
17317 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
17318
17319         * XplatUIX11.cs : clipboard format native value is IntPtr.
17320           Fixed bug #78283.
17321
17322 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
17323
17324         * Control.cs: 
17325           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
17326             which is passed up the parent chain by DefWndProc
17327           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
17328             to DefWndProc (#77956)
17329         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
17330
17331 2006-05-10  Jackson Harper  <jackson@ximian.com>
17332
17333         * MdiClient.cs: We need to remove the controls from the mdi
17334         collection, when we close the window.
17335         * MdiWindowManager.cs: Special handling of closing mdi windows.
17336         * InternalWindowManager.cs: Make the close method virtual so the
17337         mdi window manager can handle it specially.
17338
17339 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
17340
17341         * DataGrid.cs:
17342           - Recalculate grid when the data source has changed
17343           - Matches styles provided by user from all data sources types
17344         * DataGridTableStyle.cs: For columns that provided by the user set the
17345         with the preferred value is there was unassigned.
17346         * CurrencyManager.cs: throw OnItemChanged event
17347
17348 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
17349
17350         * PictureBox.cs: Don't animate until handle is created. Start animation
17351           when handle is created.
17352
17353 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
17354
17355         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
17356           current codebase.
17357         * XEventQueue.cs: We don't need to provide the extra info
17358
17359 2006-05-10  Jackson Harper  <jackson@ximian.com>
17360
17361         * MdiClient.cs: If the mdi clients parent form has a background
17362         image set, we draw that background image for the mdi area's
17363         background.
17364
17365 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
17366
17367         * TextBoxBase.cs: Set IBeam cursor (#78347)
17368
17369 2006-05-10  Mike Kestner  <mkestner@novell.com>
17370
17371         * ToolBar.cs: fix some text padding issues with ButtonSize
17372         calculation. Update the default size to match MS documentation.
17373         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
17374         button size. Fixes #78296.
17375
17376 2006-05-10  Mike Kestner  <mkestner@novell.com>
17377
17378         * ListBox.cs: use is_visible for scrollbar positioning in case the
17379         control isn't on screen yet.  Fix off by one with Right vs Width
17380         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
17381         
17382 2006-05-10  Jackson Harper  <jackson@ximian.com>
17383
17384         * X11Dnd.cs: Drop to a control with another control on top of it.
17385         * ToolBar.cs: Work on a copy of the buttons list, so that it can
17386         be modified in click handlers. TODO: Look for similar problems in
17387         other controls.
17388
17389 2006-05-09  Jackson Harper  <jackson@ximian.com>
17390
17391         * Form.cs: Window managers need the old window state when setting
17392         window state now.
17393         * InternalWindowManager.cs: Allow the base mdi window manager to
17394         handle more of the MDI only stuff (like maximize buttons).
17395         * MdiWindowManager.cs: Fix some snafus in changing the window
17396         state.  Add all the menu functionality, for both popup and
17397         maximized menus.
17398         * MdiClient.cs: When a new form is selected the currently
17399         activated form is sent to the back, this matches MS.
17400         - Implement a new method to activate the next mdi child window.
17401
17402 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
17403
17404         * Control.cs: 
17405           - Added new InternalCapture method to allow controls to prevent
17406             the capture behaviour on the click handlers
17407           - Switched to use InternalCapture
17408         * ComboBox.cs:
17409           - Using InternalCapture to prevent mouse captures from being released
17410             on mouse button release (Fixes #78100)
17411         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
17412           returns Form borders if a caption is present. (Fixes #78310)
17413
17414 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
17415
17416         * TreeNode.cs: Changed serialization .ctor to not require every field
17417           to be present. (#78265)
17418         * OwnerDrawPropertyBag.cs: Added serialization .ctor
17419
17420 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
17421
17422         * MimeIcon.cs: for is faster than foreach for strings.
17423
17424 2006-05-05  Mike Kestner  <mkestner@novell.com>
17425
17426         * CheckedListBox.cs: update check handling code to not use selected.
17427         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
17428         behavior for visual feedback, motion response, shift/ctrl handling,
17429         and properly deal with all 4 selection modes. Updates to bounds
17430         handling logic.  Add scroll wheel support. [Fixes #77842]
17431
17432 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
17433
17434         * ListView.cs:
17435           - Moved adding of Implicit controls into .ctor. That way, subsequent
17436             creation of the controls will not cause them to think they are 
17437             toplevel windows (fixes #78200 header problem)
17438           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
17439           - Switched visibility setting of header control to use internal field
17440             to avoid triggering handle creation
17441           - Now checking if handle is created before causing a refresh when items
17442             are added (This makes us now match handle creation time with MS)
17443         * Splitter.cs: Removed loading of private splitter cursor, switched to
17444           Cursors version now that that is loading the right ones
17445         * Cursors.cs: Load proper splitter cursors from resources
17446         * Cursor.cs: Added second method of loading resource cursors for the 
17447           VS.Net users amongst us
17448
17449 2006-05-05  Mike Kestner  <mkestner@novell.com>
17450
17451         * ListView.cs: give header_control a minimum size based on the
17452         ListView size.
17453
17454 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
17455
17456         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
17457           window seems to do that with metacity, so set that type. (#78120)
17458
17459 2006-05-05  Mike Kestner  <mkestner@novell.com>
17460
17461         * ListViewItem.cs: fix Details mode checkbox layout bug.
17462         * ThemeWin32Classic.cs: draw a ListView column header for unused space
17463         at the end of the header, if it exists. [Fixes for #78200]
17464
17465 2006-05-04  Jackson Harper  <jackson@ximian.com>
17466
17467         * MdiClient.cs: Add a helper property to get the container form.
17468         * MdiWindowManager.cs: We have to make sure to use the menu origin
17469         when drawing the icons and buttons, this fixes maximized window
17470         icons/buttons on win32.
17471         * InternalWindowManager.cs: Reset the restore captions when a
17472         window goes from Maximized to Minimized and vice versa. Move the
17473         DrawMaximizedButtons into the MdiWindowManager source, tool
17474         windows can't be maximized. NOTE: This could use a little
17475         refactoring if time ever permits.
17476         
17477 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
17478
17479         * TextBox.cs: Add MWFCategoryAttributes
17480         * TextBoxBase.cs: Add MWFCategoryAttributes
17481         * Form.cs: Add MWFCategoryAttributes
17482
17483 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
17484
17485         * Control.cs: Add MWFCategoryAttributes
17486         * ScrollableControl.cs: Add MWFCategoryAttributes
17487
17488 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
17489
17490         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
17491           Divider is true. Fix a little glitch in PropertyToolBar
17492           drawing code
17493
17494 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
17495
17496         * Control.cs:
17497           - Dispose: Call base.Dispose, this causes the disposed event
17498             to be fired (and probably other, more important stuff)
17499           - SetVisibleCore: Set is_visible to true after creating the
17500             window so that the window still gets created invisible (if
17501             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
17502             to generate a WM_ACTIVE message
17503         * Form.cs: Call Dispose when we want to destroy the window, instead of
17504           just destroying the handle (Dispose will do that for us)
17505         * XplatUIX11.cs:
17506           - RootWindow also needs a queue, so we can properly process the
17507             property change events from RootWindow (like Activate)
17508           - Generatic synthetic WM_ACTIVE message when the active window is
17509             being destroyed
17510
17511 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
17512
17513         * LinkLabel.cs: Trigger a recalc of our label dimensions when
17514           bounds are changed
17515
17516 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
17517
17518         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
17519           for determining width and height (image might not be assigned if
17520           we're drawing an imagelist)
17521
17522 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
17523
17524         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
17525         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
17526           height from system
17527         * Theme.cs: No longer returns hardcoded menu height, instead calls
17528           new driver method
17529         * Form.cs (OnLoad): Scaling happens before triggering Load events 
17530           on MS (# 78257)
17531
17532 2006-05-01  Mike Kestner  <mkestner@novell.com>
17533
17534         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
17535
17536 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
17537
17538         * TextBoxBase.cs: Removed Fixme
17539         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
17540
17541 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
17542
17543         * XplatUIX11.cs:
17544           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
17545             the rectangle relative to the parent, considering borders. We
17546             don't really want that.
17547           - ScrollWindow: Fixed warning to be more understandable
17548         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
17549           scrollbars and scroll only the visible area
17550         * RichTextBox.cs: Removed debug output
17551
17552 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
17553
17554         * NumericUpDown.cs (Text): Just use base
17555         * UpDownBase.cs: Ensure txtView is created before using it
17556
17557 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
17558
17559         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
17560           casting to IntPtr to avoid 64bit overflow errors
17561
17562 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
17563
17564         * Control.cs:
17565           - AllowDrop: Don't force handle creation.
17566           - CreateHandle: Added call to tell driver if we're allowed to drop
17567
17568 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
17569
17570         * FileDialog.cs: Remember the last directory not only for the
17571           current instance but also for new FileDialog instances.
17572
17573 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
17574         
17575         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
17576           broke sending async messages
17577
17578 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
17579
17580         * XplatUIX11.cs:
17581           - ScrollWindow: Fixed method. We finally generate expose events again
17582             for scrolled areas. This was causing 'garbage' when scrolling
17583             textbox and other controls that used ScrollWindow
17584           - Switched from using the regular queue for paint events to the MS 
17585             model of 'generating' paint events when the queue is empty.
17586             We use the new XQueueEvent.Paint subclass to store which windows
17587             need painting.
17588           - AddExpose now takes the x/y/width/height of the exposed area
17589             and inserts the window into the paint queue if not already there
17590           - InvalidateWholeWindow: Switched to use new AddExpose method
17591           - UpdateMessageQueue: Added which queue to monitor for paint events
17592           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
17593             the unlikely case nothing above handles it. We reset the expose
17594             pending states to get them off the queue.
17595           - GetMessage: Now pulls a paint event if no other events are in the
17596             queue
17597           - Invalidate: Switched to new AddExpose method
17598           - PeekMessage: Updated to understand pending paint events
17599           - UpdateWindow: Fixed logic bug. We were only updating if the window
17600             didn't need updating. Also switched to sending WM_PAINT directly,
17601             like MS does.
17602         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
17603           and random access Remove(). The random access is needed to handle
17604           UpdateWindow() where a WM_PAINT is sent directly without accessing
17605           the queue.
17606         * ScrollBar.cs: Added Update() calls to cause immediate updates to
17607           allow for better feedback when scrolling. Scrollbars are small and
17608           the immediate update should make it 'feel' more responsive without
17609           slowing things down. ScrollBar still needs it's invaliate logic
17610           updated to not always invalidate the whole bar on certain changes.
17611
17612 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17613
17614         * Control.cs:
17615         (BackColor): if the control does not support a transparent background,
17616         return the default backcolor when the parent backcolor is transparent.
17617
17618 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
17619
17620         * Application.cs: Updated to new StartLoop/GetMessage API
17621         * RichTextBox.cs: Provide some output on RTF parsing errors
17622         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
17623           new queue_id argument to GetMessage and PeekMessage to allow faster
17624           handling of per-thread queues in drivers.
17625         * Hwnd.cs: Added Queue tracking and property
17626         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
17627         * XEventQueue.cs: Added thread trackingA
17628         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
17629         * XplatUIX11.cs:
17630           - Implemented new per-thread queue
17631           - GetMessage: Fixed return/break behaviour on several cases. We were
17632             returning stale messages in some cases, instead of just processing
17633             the next message
17634
17635 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
17636
17637         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
17638
17639 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
17640
17641         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
17642           fixed off-by-one comparisons between Width/Height and Right/Bottom.
17643
17644 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
17645
17646         * PropertyGridView.cs: Fix drop down width.
17647
17648 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
17649
17650         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
17651           a mess in DrawToolBar, so I removed one of them.
17652
17653 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
17654
17655         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
17656           needed (clip). Otherwise we get artifacts.
17657
17658 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
17659
17660         * FixedSizeTextBox.cs: Added constructor to allow specifying which
17661           dimension is fixed
17662         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
17663           and switched FixedSizeTextBox to only be fixed vertical (#78116)
17664         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
17665           if it matches the scale base font (avoids unneeded scaling)
17666
17667 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
17668
17669         * X11DesktopColors.cs: One gtk_init_check should be enough
17670
17671 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
17672
17673         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
17674           match MS behaviour
17675
17676 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
17677
17678         * TextBoxBase.cs: 
17679           - Generate OnTextChanged for Backspace even if we're only deleting
17680             the current selection
17681           - When setting the Text property, only select all text if the
17682             control does not have focus when it is being set. Otherwise
17683             just place the cursor at the beginning of the control
17684
17685 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
17686
17687         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
17688           Added a little helper to draw PropertyGrid ToolBar with a different
17689           border and a different BackColor.
17690         * PropertyGrid.cs: Some background parts didn't get painted with the
17691           correct background color. Added a class that helps us to draw the
17692           correct border for PropertyGridView and a class that helps us to
17693           draw ToolBars with a different backcolor
17694         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
17695
17696 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
17697
17698         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
17699         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
17700
17701 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
17702
17703         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
17704           into the palette entries. Also, since we're working on a copy
17705           we needed to copy the palette back onto the bitmap.
17706         * Cursor.cs: Same fix as XplatUIWin32.cs.
17707
17708 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
17709
17710         * ImageListStreamer.cs: Need to read the var (or we're off)
17711
17712 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
17713
17714         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
17715           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
17716           TextBoxBase.cs: Unused var fixes
17717         * AxHost.cs: Small 2.0 fix
17718         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
17719           as it seems that is what at least Metacity expects. This will make
17720           icons show up on 64bit platforms. We still have some 64bit size
17721           issues, though, since the startup app window size still won't match.
17722
17723 2006-04-25  Mike Kestner  <mkestner@novell.com>
17724
17725         * *.cs: cleanup newly reported exception var unused warnings.
17726
17727 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
17728
17729         * ThemeWin32Classic.cs: Button image alignment now matches exactly
17730           ms
17731
17732 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
17733
17734         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
17735           image. The image position is always the same, no matter if the
17736           button is pressed or not.
17737
17738 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
17739
17740         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
17741           selection and set the correct filename for SaveFileDialog.
17742           Patch by Emery Conrad.
17743
17744 2006-04-24  Mike Kestner  <mkestner@novell.com>
17745
17746         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
17747         check for item.X outside the ClientRect instead of item.Y. Fixes
17748         #78151.
17749
17750 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17751
17752         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
17753         trust that value blindly and do some sanity check. Fixes bug #77814.
17754
17755 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17756
17757         * ImageListStreamer.cs: save the mask as a 1bpp image.
17758
17759 2006-04-21  Mike Kestner  <mkestner@novell.com>
17760
17761         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
17762         pass Checked and Indeterminate to the Theme Engine. Improve
17763         encapsulation with ListBox.
17764         * ListBox.cs: Keep a StringFormat instead of calculating it every item
17765         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
17766         nested types.  Move all CheckState functionality to CheckedListBox.
17767         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
17768         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
17769         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
17770         single base list. Fix scrollbar sizing and placement to mirror MS.
17771         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
17772         used.
17773         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
17774         for CheckedListBox by using new DrawItemState info.  Center the
17775         checkboxes on the items. Use new StringFormat property.
17776
17777 2006-04-18  Jackson Harper  <jackson@ximian.com>
17778
17779         * Form.cs: MdiChildren don't do default locations the same way as
17780         regular forms.  This prevents a crash when trying to position the
17781         mdi windows.
17782
17783 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
17784
17785         * PropertyGridTextBox.cs: Formatting, copyright
17786         * PropertiesTab.cs: Formatting
17787         * PropertyGrid.cs: Formatting
17788         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
17789           click toggling of values
17790           
17791 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
17792
17793         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
17794         * Control.cs (.ctor): verify_thread_handle is static, don't reset
17795           every time a control is created
17796         * Application.cs: Removed obsolete EnableRTLMirroring method
17797
17798 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
17799
17800         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
17801         SelectedIndex to -1. Fixes bug #78121.
17802
17803 2006-04-17  Jackson Harper  <jackson@ximian.com>
17804
17805         * Binding.cs: Handle null values for Current and BindingContext.
17806         This occurs when binding is a little delayed.
17807         * CurrencyManager.cs: return null for Current when there are no
17808         items in the list.
17809         - Hookup to the listchanged event on the DataView and update
17810         bindings when the list is changed.  This fixes late binding of
17811         controls.
17812
17813 2006-04-17  Jackson Harper  <jackson@ximian.com>
17814
17815         * X11Dnd.cs:
17816         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
17817         Ringenbach.
17818
17819 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
17820
17821         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
17822           place
17823         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
17824           with the correct ButtonState
17825
17826 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
17827
17828         * XplatUIX11.cs: Improved distinguishing between window types to
17829           tell the WM a type closer to what the app wants (Fixes #78107)
17830
17831 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
17832
17833         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
17834           GrabHandle
17835
17836 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
17837
17838         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
17839           drawing code to reflect the size grip changes
17840
17841 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17842
17843         * ImageListStreamer.cs: fix handling of the mask that follows the main
17844         bitmap when deserializing and serialize it properly. The generated mask
17845         should better be a 1bpp image, but I'll do that later.
17846
17847 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
17848
17849         * FileDialog.cs: Show something in the DirComboBox on *nix if the
17850           path doesn't fit into some of our Current.Places
17851
17852 2006-04-13  Jackson Harper  <jackson@ximian.com>
17853
17854         * ComboBox.cs: Use borders instead of drawing our own decorations,
17855         try to obey correct rules for heights.
17856         * Theme.cs:
17857         * ThemeNice.cs:
17858         * ThemeClearLooks.cs:
17859         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
17860         this is now handled by borders.
17861         - Remove unused DrawListBoxDecorationSize method.
17862         
17863 2006-04-13  Mike Kestner  <mkestner@novell.com>
17864
17865         * MenuAPI.cs: null guarding for the disbled click check fixes crash
17866         reported by Alex.
17867
17868 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
17869
17870         * ThemeWin32Classic.cs: 
17871           - Fixed CPDrawStringDisabled
17872           - Corrected drawing of disabled menu items
17873           - Fixed drawing of disabled radio buttons (bug #78095)
17874           - Draw check in a disabled CheckBox with color ControlDark 
17875
17876 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
17877
17878         * Form.cs: Use the provided width when calculating the menu size;
17879           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
17880           and ClientSize.Width won't be updated yet
17881         * Application.cs: Use Visible instead of Show() to make form visible,
17882           this way we create the handle later and menusize is considered
17883
17884 2006-04-12  Mike Kestner  <mkestner@novell.com>
17885
17886         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
17887         reporting.
17888
17889 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
17890
17891         * TextBox.cs: Implemented context menu
17892
17893 2006-04-12  Mike Kestner  <mkestner@novell.com>
17894
17895         * ListView.cs: implement box selection. fixes #77838.
17896         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
17897
17898 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
17899
17900         * XplatUIX11.cs: Added setting of window type when transient window
17901           is created (metacity would move it otherwise)
17902         * X11Structs.cs: Added WINDOW_TYPE atoms
17903         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
17904           background (the control is Opaque but still wants transparent
17905           backgrounds)
17906
17907 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
17908
17909         * Control.cs: Added OnPaintBackgroundInternal to allow controls
17910           that set Opaque but don't mean it (like all ButtonBase-derived
17911           controls) to still draw their background
17912         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
17913           the background
17914
17915 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
17916
17917         * Control.cs (PaintControlBackground): Set the graphics object
17918           on our PaintEvent to null to prevent it from being disposed
17919           when the PaintEvent gets disposed
17920
17921 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
17922
17923         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
17924         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
17925
17926 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
17927
17928         * Control.cs: 
17929           - Added transparency check to BackColor property. Transparent
17930             backgrounds are only allowed if the control styles permit it
17931           - Added recursive painting of parent control background and
17932             foreground if a control with a transparent backcolor is drawn
17933             (Thanks to Tim Ringenback for providing his 'hack' as a base
17934              for this patch) Fixes #77985 and #78026.
17935           - Added Opaque style check before calling OnPaintBackground, no
17936             need to draw the background if the control is opaque
17937           - Removed ControlAccessibleObject owner variable (inherited from
17938             base, no need to define again)
17939           - Added some documentation links explaining the drawing events
17940             and styles
17941
17942 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
17943
17944         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
17945           that the affected control is the located at the left border of our
17946           parent (Fixes #77936)
17947
17948 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
17949
17950         * TextBoxBase.cs: When rendering disabled or readonly controls,
17951           draw the background with 'Control' instead of 'Window' color as
17952           long as the user hasn't specifically set a color
17953
17954 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
17955
17956         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
17957           since that won't be updated if the user types text (only if it's
17958           programatically set)
17959
17960 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
17961
17962         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
17963           layout changes do to app-triggered resizes will have the proper
17964           display rectangle for layout
17965
17966 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
17967
17968         * ThemeWin32Classic.cs:
17969           - Make use of the SystemBrushes and SystemPens wherever possible
17970           - Corrected some highlight colors
17971           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
17972             drawing
17973         * Theme.cs: Added Empty field to CPColor struct
17974
17975 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
17976
17977         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
17978           is displayed when calculating the display rectangle. Thanks to Mike
17979           for teaching me the err of my ways.
17980
17981 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
17982
17983         * ScrollableControl.cs:
17984           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
17985             (instead of 0,0) and we now return the real width/height instead of
17986             just the clientrectangle, adjusted for padding. The rectangle is
17987             now cached and created by the new CalculateDisplayRectangle method.
17988           - Created new CalculateDisplayRectange method, which basically does
17989             what get_DisplayRectangle() did originally, but now using the 
17990             right edge instead of DisplayRectangle to determine the size of
17991             our scrollbars
17992           - get_Canvas(): Fixed it to properly calculate canvas for 
17993             right/bottom controls which seem to be placed to the right/bottom
17994             of any controls that have a fixed location
17995           - Removed TODO that's taken care of
17996           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
17997             and SetDisplayRectLocation according to new MSDN2 docs
17998           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
17999             event when that is called, this is added for compatibility
18000           - ScrollControlIntoView(): Implemented.
18001           - Switched scrollbars to be implicit, they shouldn't be selectable
18002         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
18003           call it when the active control is set/changed
18004         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
18005         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
18006           implicit_control variable (used for native Win32 message generation)
18007         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
18008           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
18009         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
18010         * XplatUIStructs.cs: Added ScrollBarCommands enum
18011
18012 2006-04-10  Jackson Harper  <jackson@ximian.com>
18013
18014         * ButtonBase.cs:
18015         * CheckedListBox.cs:
18016         * ComboBox.cs:
18017         * DataGrid.cs:
18018         * DataGridView.cs:
18019         * Form.cs:
18020         * GroupBox.cs:
18021         * ListBox.cs:
18022         * PrintPreviewControl.cs:
18023         * ProgressBar.cs:
18024         * PropertyGrid.cs:
18025         * Splitter.cs:
18026         * StatusBar.cs:
18027         * TrackBar.cs:
18028         * UpDownBase.cs: Fixup base event overrides.
18029         
18030 2006-04-06  Mike Kestner  <mkestner@novell.com>
18031
18032         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
18033         all user-initiated value changes to min <= value <= max-thumbsz+1.
18034         (set_Value): check for vert/horiz when calculating new thumb position.
18035         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
18036         like MS does.
18037         (OnMouseMoveSB): refactor the thumb dragging code and refine
18038         invalidation logic to reduce flicker.
18039         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
18040         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
18041         (UpdateThumbPosition): small code readability cleanup
18042
18043 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
18044
18045         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
18046           different
18047
18048 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
18049
18050         * ThemeNice.cs: Use a better graphics effect when a button is pressed
18051
18052 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
18053
18054         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
18055         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
18056           This dramatically reduces the number of Pen.Dispose calls. 
18057           Where possible call ResPool methods only once instead of calling it
18058           over and over again (for example for the same color).
18059
18060 2006-04-06  Mike Kestner  <mkestner@novell.com>
18061
18062         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
18063         Also remove an unused private field on the collection. Fixes #77972.
18064
18065 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
18066
18067         * ThemeNice.cs: Added ToolBar drawing code
18068
18069 2006-04-06  Mike Kestner  <mkestner@novell.com>
18070
18071         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
18072         I'm assuming that means we need to look up the toplevel for the
18073         provided control. Fixes the crash trace in #77911 but exposes another
18074         crash in some strange reflection usage in NDocGui.
18075
18076 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
18077
18078         * ThemeNice.cs: Gave it a little silver touch and added Images
18079           method
18080         * FontDialog.cs: FontDialog is not resizable
18081         * FileDialg.cs: Added SizeGripStyle.Show
18082
18083 2006-04-05  Jackson Harper  <jackson@ximian.com>
18084
18085         * KeyboardLayouts.cs: Remove warning.
18086
18087 2006-04-05  Jackson Harper  <jackson@ximian.com>
18088
18089         * Control.cs: Enable OnPaintInternal so we can use it for drawing
18090         all of our controls instead of Paint +=.
18091         * ListBox.cs:
18092         * ListView.cs:
18093         * MenuAPI.cs:
18094         * MessageBox.cs:
18095         * NotifyIcon.cs:
18096         * ProgressBar.cs:
18097         * ScrollBar.cs:
18098         * Splitter.cs:
18099         * StatusBar.cs:
18100         * TabControl.cs:
18101         * TextBoxBase.cs:
18102         * ToolBar.cs:
18103         * TrackBar.cs:
18104         * UpDownBase.cs:
18105         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
18106         use OnPaintInternal. Remove Width/Height and Visible checks in
18107         paint handler, this is done at a higher level now.
18108         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
18109         * PaintEventArgs.cs: Add a handled flag so controls that don't
18110         want anymore painting after OnPaintInternal can make sure OnPaint
18111         isn't called.
18112
18113 2006-04-05  Mike Kestner  <mkestner@novell.com>
18114
18115         * Form.cs: fix the menu WndProc hacks to respect the native enabled
18116         state of the form, so that we don't process events when Modal dialogs
18117         are up. Fixes #77922.
18118
18119 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
18120
18121         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
18122           checking is done.
18123
18124 2006-04-05  Mike Kestner  <mkestner@novell.com>
18125
18126         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
18127
18128 2006-04-05  Mike Kestner  <mkestner@novell.com>
18129
18130         * ListView.cs (HeaderMouseMove): null guarding for the over column
18131         when setting up the drag_to_index.  Fixes #78015.
18132
18133 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
18134
18135         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
18136           in the taskbar. Transient windows seem to accomplish that.
18137
18138 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
18139
18140         * Form.cs:
18141           - Re-enabled CreateParams.X/Y code for FormStartPosition
18142           - Added code for manual placement when creating the Control
18143           - Incomplete patch to treat MDI forms differently when
18144             setting the ClientSizeCore. (Still need to figure out handling
18145             x/y coords there)
18146         * XplatUIX11.cs:
18147           - When we're explicitly setting the X/Y position of a non-Child
18148             window, let the WM know. Metacity really wants this.
18149
18150 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
18151
18152         * ThemeNice.cs: Added CPDrawButton
18153
18154 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
18155
18156         * ThemeNice.cs: Changed the color for focused buttons and activated
18157           the arrows for small scroll buttons.
18158
18159 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
18160
18161         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
18162           anymore. Changed some method modifiers to protected (virtual)
18163         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
18164           changes
18165         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
18166           Updated drawing of menus, buttons and progressbars; added
18167           CPDrawBorder3D 
18168
18169 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18170
18171         * ImageListStreamer.cs: implemented serialization/deserialization
18172         of the images.
18173
18174 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
18175
18176         * ThemeWin32Classic.cs:
18177           - Removed all the DrawFrameControl stuff; CPDrawButton,
18178             CPDrawCheckBox and CPDrawRadioButton are now handled directly
18179             inside the methods
18180           - Updated and corrected the drawing code of CPDrawButton,
18181             CPDrawCheckBox and CPDrawRadioButton to better match ms
18182           - Updated theme checkbox and radiobutton code to use the CP*
18183             methods
18184
18185 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
18186
18187         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
18188           bug is fixed
18189
18190 2006-03-31  Jackson Harper  <jackson@ximian.com>
18191
18192         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
18193         sometimes.
18194         * UpDownBase.cs: Don't CreateGraphics manually, use a
18195         Refresh. Ideally we would invalidate the correct areas here.
18196
18197 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
18198
18199         * XplatUIX11.cs: 
18200           - We now track the mapping state of windows. If a window (or 
18201             one of it's parents) is not mapped we no longer permit
18202             WM_PAINT messages to be generated since we'd otherwise get 
18203             lots of BadMatch X errors. Jackson did all the work figuring
18204             out the problem.
18205           - Destroying the caret if the window it's contained in is 
18206             destroyed. Can't use regular DestroyCaret method since it
18207             might fall into a drawing function (trying to remove the
18208             caret) and with that generate new BadMatch errors. Again,
18209             Jackson tracked this down.
18210           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
18211             make sure we send the messages to all windows. (The old code
18212             would send the WM_DESTROY to the window, and then all child
18213             windows would be 'gone' because the WM_DESTROY handle lookup
18214             would no longer find the destroyed window)
18215         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
18216         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
18217
18218 2006-03-31  Jackson Harper  <jackson@ximian.com>
18219
18220         * ScrollableControl.cs: Dont recalc if we are not visible.
18221
18222 2006-03-31  Mike Kestner  <mkestner@novell.com>
18223
18224         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
18225         the visibility branch.
18226
18227 2006-03-31  Jackson Harper  <jackson@ximian.com>
18228
18229         * ScrollBar.cs: Cap values when incrementing/decrementing.
18230
18231 2006-03-31  Mike Kestner  <mkestner@novell.com>
18232
18233         * MenuAPI.cs: setup menu.tracker for popup/context menus.
18234         * ToolTip.cs: guard against timer expirations with no active control.
18235         Not sure why it happened.
18236
18237 2006-03-31  Mike Kestner  <mkestner@novell.com>
18238
18239         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
18240         text.
18241         * ToolTip.cs: Position the tooltip based on where the cursor is at
18242         popup time, not at MouseEnter time.  Add a Down state so that we don't
18243         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
18244         positioning offset. Lookup DisplaySize at positioning time, since it
18245         can theoretically change during invocation.
18246         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
18247         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
18248
18249 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
18250
18251         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
18252           Fixes behaviour when the Text property of the box is String.Empty
18253
18254 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
18255
18256         * XplatUIX11.cs: Only send mouseleave for our client windows, not
18257           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
18258           a window)
18259
18260 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
18261
18262         * FileDialog.cs: Visual enhancement for the popup buttons in 
18263           PopupButtonPanel
18264
18265 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
18266
18267         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
18268           code
18269
18270 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
18271
18272         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
18273           highlighted menu items to match ms
18274
18275 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
18276
18277         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
18278
18279 2006-03-30  Mike Kestner  <mkestner@novell.com>
18280
18281         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
18282         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
18283         go active to account for HotLight to Selected transition.
18284         * MenuItem.cs: add internal Selected prop. Fill out the Status
18285         property by calculating it from item info. Add HotLight,
18286         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
18287
18288 2006-03-30  Mike Kestner  <mkestner@novell.com>
18289
18290         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
18291
18292 2006-03-29  Jackson Harper  <jackson@ximian.com>
18293
18294         * Form.cs: Implement TODO.
18295
18296 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
18297
18298         * PrintPreviewDialog.cs: Implemented missing methods and events; still
18299           missing proper dialog setup in the constructor
18300
18301 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
18302
18303         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
18304         * Control.cs:
18305           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
18306           - Fixed ResetBindings and removed TODO
18307           - Added check for cross-thread calls to get_Handle()
18308           - Added Marshaller attribute for set_Font to satisfy class status
18309         * FontDialog.cs: Removed TODOs that seemed implemented
18310         * UpDownBase.cs: Removed unneeded TODO and Fixme
18311         * MessageBox.cs: Implemented support for Default button and removed TODO
18312         * FileDialog.cs: Removed obsolete TODO
18313         * DomainUpDown.cs: Removed obsolete TODO
18314         * ButtonBase.cs: Removed obsolete TODO
18315         * XplatUIWin32.cs: Removed obsolete TODO
18316         * Form.cs:
18317           - Removed obsolete TODO
18318           - Calling CheckAcceptButton when the acceptbutton is changed to allow
18319             internal status updates
18320           - Making sure the active control is selected when the control is created
18321         * CurrencyManager.cs: Removed obsolete TODO
18322
18323 2006-03-29  Mike Kestner  <mkestner@novell.com>
18324
18325         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
18326         of PrintPreviewDialog and RichTextBox.
18327
18328 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
18329
18330         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
18331           DarkDark, Light and LightLight colors for a specific color
18332         * ThemeWin32Classic.cs:
18333           - Use Button drawing code to draw RadioButtons and CheckBoxes with
18334             Appearance = Button 
18335           - Make use of the new ResPool helper CPColor
18336           - Draw ProgressBar and StatusBar with correct 3D borders
18337
18338 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
18339
18340         * ColorDialog.cs: Return selected color. Fixes bug #77940.
18341
18342 2006-03-28  Mike Kestner  <mkestner@novell.com>
18343
18344         * ListView.cs: fix Icon layout to plan for scrollbar widths when
18345         calculating col/row counts.
18346
18347 2006-03-28  Mike Kestner  <mkestner@novell.com>
18348
18349         * ColumnHeader.cs:
18350         * ListView.cs:
18351         * ListViewItem.cs:
18352         * Menu.cs: 
18353         switch to explicit interface method implementation for some methods
18354         corcompare identifies as inconsistent with MS.
18355
18356 2006-03-28  Mike Kestner  <mkestner@novell.com>
18357
18358         * MainMenu.cs: 
18359         * Menu.cs:
18360         add a few missing methods from the class status output.
18361
18362 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
18363
18364         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
18365           correct.
18366
18367 2006-03-28  Mike Kestner  <mkestner@novell.com>
18368
18369         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
18370
18371 2006-03-27  Mike Kestner  <mkestner@novell.com>
18372
18373         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
18374         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
18375
18376 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
18377
18378         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
18379
18380 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18381
18382         * ThemeWin32Classic.cs:
18383           - GroupBox: Inserted a little gap between the text and the lines
18384             on the right side
18385           - Made the code in CPDrawBorder3D more readable
18386           - Corrected the drawing location of the up and down arrows in 
18387             CPDrawScrollButton
18388
18389 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18390
18391         * ControlPaint.cs: Corrected line widths in DrawBorder for
18392           ButtonBorderStyle Inset and Outset
18393
18394 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18395
18396         * ThemeWin32Classic.cs:
18397           - Rewrote the totally broken CPDrawBorder3D method. That was
18398             one of the main problems for the terrific ThemeWin32Classic
18399             look
18400           - Updated and corrected Button drawing
18401           - Correct the dimensions of the SizeGrip to match ms ones
18402           - Removed a small drawing glitch in DrawComboBoxEditDecorations
18403         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
18404           Border3DStyle.Sunken to match ms.
18405
18406 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18407
18408         * ThemeWin32Classic.cs: First small part of the "de-uglify
18409           ThemeWin32Classic" effort, SizeGrip
18410
18411 2006-03-24  Jackson Harper  <jackson@ximian.com>
18412
18413         * XplatUIX11.cs: Give a max idle time of one second, this matches
18414         MS and forces an Idle event every second when there are no other
18415         events in the queue.
18416
18417 2006-03-24  Mike Kestner  <mkestner@novell.com>
18418
18419         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
18420         * ListView.Item.cs: fix layout issues with null image lists and images
18421         smaller than checkbox size.
18422         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
18423         mode like MS does.  It's weird, but consistent.  ;-)
18424         Fixes #77890.
18425
18426 2006-03-24  Mike Kestner  <mkestner@novell.com>
18427
18428         * ListView.cs: Scroll wheel support for the item control.  Fixes
18429         #77839.
18430
18431 2006-03-23  Jackson Harper  <jackson@ximian.com>
18432
18433         * ScrollableControl.cs: Special case negative sized areas, not
18434         zero.
18435         * MonthCalendar.cs: Save the rect of the clicked date so we can
18436         use it for invalidation.
18437         - Try to cut down on the number of invalidates
18438         - Invalidate the rect the mouse is over and was over when moving
18439         the mouse, so we get the focus box following the cursor.
18440
18441 2006-03-23  Mike Kestner  <mkestner@novell.com>
18442
18443         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
18444         focus rectangle drawing. Fixes #77835.
18445
18446 2006-03-23  Mike Kestner  <mkestner@novell.com>
18447
18448         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
18449         the if and else if and reverting back to the original == check on the
18450         None conditional.
18451
18452 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
18453
18454         * FontDialog.cs: Update the example panel if the selected index of
18455           the fontListBox changes.
18456
18457 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
18458
18459         * FileDialog.cs: Make FileDialog remember which directory it was in
18460           last in the same execution.
18461
18462 2006-03-22  Mike Kestner  <mkestner@novell.com>
18463
18464         * FileDialog.cs: make the DropDownMenu on the toolbar display
18465         RadioChecks since they are mutually exclusive and that's what MS does.
18466
18467 2006-03-22  Mike Kestner  <mkestner@novell.com>
18468
18469         * Theme.cs: add Color param to CPDrawMenuGlyph.
18470         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
18471         checks and radio marks and arrows are visible on highlighted items.
18472         * ControlPaint.cs: update to use new Theme signature.
18473
18474 2006-03-22  Mike Kestner  <mkestner@novell.com>
18475
18476         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
18477         is active. Fixes #77870.
18478
18479 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
18480
18481         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
18482           to be focused/selected after startup
18483
18484 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
18485
18486         * ColorDialog.cs: 
18487           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
18488             CustomColors and ShowHelp properties
18489           - Some internal rewrites to get better results when using the
18490             ColorMatrix
18491
18492 2006-03-22  Mike Kestner  <mkestner@novell.com>
18493
18494         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
18495         HoverSelection.  Fixes #77836.
18496
18497 2006-03-22  Mike Kestner  <mkestner@novell.com>
18498
18499         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
18500         ToggleButtons.  (De)Sensitize the Back button around a stack count of
18501         1, not 0.  Update ButtonSize based on a pixel count of the win32
18502         control.  Adjust the toolbar size/location for new button size.
18503
18504 2006-03-22  Jackson Harper  <jackson@ximian.com>
18505
18506         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
18507         true.
18508         * ScrollBar.cs: When doing increments and decrements we need to
18509         set the Value property so that ValueChanged gets raised. A
18510         possible optimization here would be to make an internal SetValue
18511         that doesn't invalidate immediately.
18512         * ToolTip.cs: Tooltips get added to their container (when
18513         supplied) so they get disposed when the container is disposed.
18514         - Don't create tooltips for String.Empty. This prevents all these
18515         little 2-3 pixel windows from showing up when running nunit-gui
18516         and driving me mad.
18517         * Form.cs: Don't set topmost when setting the owner if the handles
18518         haven't been created yet.  The topmost set will happen when the
18519         handles are created.
18520
18521 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
18522
18523         * XplatUIX11.cs:
18524           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
18525           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
18526             visible (to allow them to recalculate their sizes)
18527
18528 2006-03-21  Mike Kestner  <mkestner@novell.com>
18529
18530         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
18531         methods. Removed a ton of redundant code.  Still not really happy with
18532         the border rendering, but I think that's mainly because of the
18533         ControlDarkDark being black instead of a dark grey. Depending on how 
18534         close we want to be, we might want to revisit those color choices.
18535         Among the new features added during the refactor were DropDownArrow
18536         pressed rendering, Disabled image rendering.  Proper flat appearance
18537         boundary rendering.  Removed the Divider and Wrapping dividers since I
18538         can't figure out any combination of themes and conditions to make the
18539         MS control draw a horizontal line on a toolbar despite what the
18540         Divider property docs indicate.
18541         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
18542         conditions and incorrect layout.  Updated to coding standard.
18543         * ToolBarButton.cs: refactored layout and positioning code from
18544         ToolBar to here.  Invalidate wherever possible instead of forcing
18545         redraws of the whole toolbar. 
18546         (Known remaining issues: explicit ButtonSize smaller than provided
18547         images.)
18548
18549 2006-03-21  Mike Kestner  <mkestner@novell.com>
18550
18551         * ContextMenu.cs (Show): use the position parameter instead of just
18552         showing at the MousePosition.
18553
18554 2006-03-21  Jackson Harper  <jackson@ximian.com>
18555
18556         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
18557         control handle this.
18558         * TreeNodeCollection.cs: If we are clearing the root node we need
18559         to reset top_node so calcs can still happen.
18560         * ThemeWin32Classic.cs: This is a Flags so we need to check
18561         properly.
18562         
18563 2006-03-21  Jackson Harper  <jackson@ximian.com>
18564
18565         * DataGrid.cs: Create columns when the binding context has been
18566         changed.
18567         * X11Structs.cs: Keysyms are uints.
18568         - Add size to fix build.
18569
18570 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
18571
18572         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
18573           XplatUIOSX.cs: 
18574           - Added ResetMouseHover method to allow controls to retrigger
18575             hovering if they need it more than once
18576           - Implemented MouseHoverTime and MouseHoverSize properties
18577         * Timer.cs: Start() must reset the interval
18578         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
18579           properties
18580
18581 2006-03-21  Jackson Harper  <jackson@ximian.com>
18582
18583         * X11Keyboard.cs: improved layout detection. Move the nonchar
18584         tables into this file.
18585         * KeyboardLayouts.cs: Move the tables into resource files.
18586
18587 2006-03-21  Mike Kestner  <mkestner@novell.com>
18588
18589         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
18590
18591 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
18592
18593         * Mime.cs: Various speed optimizations. Looking up mime types
18594           is now 2 times faster than before
18595
18596 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
18597
18598         * CreateParams.cs: Added internal menu field
18599         * Control.cs: 
18600           - Switched call order for UpdateBounds; now we always call
18601             the one that also takes ClientSize, and we're calculating the 
18602             client size via driver method in the others. The previous
18603             method of tracking client size by difference wasn't working
18604             for forms where even the starting client size wouldn't match
18605             the overall form size (due to borders) (Part of fix for #77729)
18606           - CreateParams(): Do not use parent.Handle unless the handle is
18607             already created. Causes havoc with Nexxia and throws off our
18608             creation of controls
18609         * XplatUIX11.cs:
18610           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
18611           - Switched handling of ConfigureNotify over to new PerformNCCalc 
18612             method (consolidates code)
18613           - Changed RequestNCRecalc to use new PerformNCCalc method
18614           - Added calls to RequestNCRecalc when menus and borders are changed
18615             to allow app to set NC size. (Part of fix for #77729) This matches
18616             when MS send a WM_NCRECALC on Win32 windows.
18617           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
18618             (Part of fix for #77729). This matches what MS does, they also
18619             send that message when the form is made visible.
18620           - XException.GetMessage: Improved usability of X errors by including
18621             a translation of the window into Hwnd and Control class
18622           - Improved debug info for window creation, reparenting and destruction
18623           - Created helper method WindowIsMapped() [Currently not used]
18624         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
18625         * Form.cs:
18626           - CreateParams: Now setting our menu on the new internal menu field
18627           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
18628             avoid calculating the same property twice
18629         * Hwnd.cs:
18630           - Improved usability of ToString() for debugging purposes
18631           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
18632             determine the height of the menu, instead of just the font. This
18633             required to also create a graphics context and to keep a bmp 
18634             around (for performance reasons)
18635
18636 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
18637
18638         * MenuAPI.cs: Added OnMouseUp method
18639         * Form.cs:
18640           - Now remembering the requested client size, avoids size errors
18641           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
18642             instead of base if the menu is active. This is required due to
18643             control now capturing and releasing on down/up and it would
18644             prematurely release our menu capture
18645
18646 2006-03-17  Jackson Harper  <jackson@ximian.com>
18647
18648         * KeyboardLayouts.cs: Add the czech layouts.
18649
18650 2006-03-16  Jackson Harper  <jackson@ximian.com>
18651
18652         * Control.cs: Use the viewport space when sizing not the controls
18653         client size, so things like ScrollableControl that effect the
18654         viewport size (when scrollbars are added) are computed correctly.
18655         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
18656         of ManagerEntrys.
18657         - Handle creating BindingManagers for null data sources.
18658         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
18659         source, otherwise when rows are added they are added to the 'fake'
18660         datasource and we will crash when trying to set the position in
18661         those rows.
18662         - Use Implicit scrollbars on the datagrid so they arent
18663         selectable.
18664         
18665 2006-03-16  Jackson Harper  <jackson@ximian.com>
18666
18667         * Binding.cs:
18668         * InternalWindowManager.cs:
18669         * MdiWindowManager.cs:
18670         * X11Keyboard.cs: I really want Mike to love me again (fix
18671         compiler warnings).
18672
18673 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
18674
18675         * DataGrid.cs:
18676           - OnMouseDown: Switch to editing mode when clicking on the cell
18677                          even if we're clicking on the cell that's currently 
18678                          selected
18679           - ProcessGridKey: Left/Right now wrap like MS.Net does
18680           - ProcessGridKey: Tab now knows to add a new row when tab is
18681                             pressed in the cell of the last column of the 
18682                             last row
18683           - ProcessGridKey: Enter now adds another row  if pressed in the last
18684                             row and selectes the new row, same column cell
18685           - ProcessGridKey: Home/End navigate columns, not rows, like 
18686                             originally implemented
18687           - Broke ProcessKeyPreview code out into an extra Internal method
18688             so it can be called from the edit code
18689         * DataGridTextBox.cs (ProcessKeyMessage):
18690           - Switched to accept Tab keypresses
18691           - Added F2 handling to allow jumping to the end of the edited cell
18692           - Added logic to allow moving caret left/right inside edited cell
18693             and making the edited cell jump when the caret hits cell borders
18694           - Tab and Enter are now passed to the datagrid after being handled
18695         * TextBoxBase.cs:
18696           - Removed capture code now that Control handles it
18697           - set_SelectionStart now ensures caret is visible
18698
18699 2006-03-16  Jackson Harper  <jackson@ximian.com>
18700
18701         * TrackBar.cs: Debackwards the increment/decrement for handling
18702         mouse clicks on the bar with vertical trackbars.
18703         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
18704         bottom to match MS.
18705
18706 2006-03-16  Mike Kestner  <mkestner@novell.com>
18707
18708         * ListView.cs: make shift/ctrl keyboard and mouse selection 
18709         consistent with the MS control. Fix a bug in
18710         SelectedListViewItemCollection.Clear that was pissing me off for the
18711         better part of a day because the collection was being altered
18712         underneath us as we walked the list.
18713
18714 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
18715
18716         * Control.cs: Not sure how we could miss this so long, but it seems
18717           that MS.Net has Capture set all the way from before calling 
18718           OnMouseDown through sending the mouse events until after
18719           OnMouseUp. This will fix DataGrid's selection being set to end
18720           at the location of the MouseUp.
18721
18722 2006-03-15  Jackson Harper  <jackson@ximian.com>
18723
18724         * BindingContext.cs: Check the binding after its added so that it
18725           can initialize the binding managers and hookup to events.
18726         * Binding.cs: Data members seem to sometimes include rows/cols in
18727           the format Row.Column we now take this into account.
18728           - Hookup to the position changed event so we can update the
18729           control when the position has changed in the data set.
18730         * CurrencyManager.cs: Take into account the row/col naming
18731           convention when creating dataset tables.
18732         * BindingContext.cs: Using a newer better way of storing
18733           datasource/datamember pairs.  Hopefully this better matches MS for
18734           looking up binding managers.
18735
18736
18737 2006-03-15  Jackson Harper  <jackson@ximian.com>
18738
18739         * BindingContext.cs: The currency manager needs the data member
18740         name, if the member is a data set we use the name to find the
18741         correct table.
18742         * CurrencyManager.cs: When creating the list prefer an IList over
18743         an IListSource.
18744         - Attempt to create a DataTable from a DataSet (TODO: might need
18745         some better error checking here, although MS doesn't seem to have much)
18746         - If we have a DataTable create a view and use it as our list.
18747
18748 2006-03-15  Mike Kestner  <mkestner@novell.com>
18749
18750         * ListView.cs: keep a matrix of the icon mode layout to facilitate
18751         keyboard navigation. Support Up/Down/Left/Right selection correctly
18752         for all 4 View modes.
18753         * ListViewItem.cs: add internal row/col fields for icon layouts.
18754
18755 2006-03-15  Jackson Harper  <jackson@ximian.com>
18756
18757         * TabControl.cs: Redraw the tabs when we resize so their newly
18758         calculated sizes are drawn on screen.
18759         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
18760         composite characters.
18761         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
18762         - filter events so that composite characters can be created
18763         patches by peter
18764         * X11Structs.cs: Add XIMProperties enum.
18765
18766 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
18767
18768         * Control.cs (BringToFront, SendToBack): Don't use window or handle
18769           unless it's created
18770
18771 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
18772
18773         * Control.cs (PerformLayout): We don't need to consider visiblity
18774           for anchoring, only for docking. This fixes 'whacky' alignment
18775           in listbox and other controls that use implicit scrollbars after
18776           the previous PerformLayout patch
18777         * ListBox.cs: Switched to use implicit scrollbars
18778           
18779 2006-03-14  Mike Kestner  <mkestner@novell.com>
18780
18781         * ToolBar.cs: 
18782         * VScrollBar.cs:
18783         - chain up the "new event" overrides to base and use
18784         OnEvent to raise them.  Part of fix for bug #76509.
18785
18786 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
18787
18788         * FileDialog.cs: Do not select an item in the parent directory
18789           on backspace
18790
18791 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
18792
18793         * Control.cs (PerformLayout): It would seem that we considered
18794           invisible windows for our layout. Not quite the right thing
18795           to do. Now we don't any longer, thereby fixing bug #76889.
18796
18797 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
18798
18799         * Control.cs (CanFocus): I goofed. A control can have focus 
18800           even though it's not selectable. Made it match MS docs.
18801
18802 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
18803
18804         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
18805           center by default (fixes #76895)
18806         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
18807           all uses of Border3DSides.All with the explicit ORd together
18808           Left|Right|Top|Bottom because I assume that nobody was aware 
18809           that All also implies a center fill. Most places I checked had
18810           a fill right above.
18811         * ProgressBarStyle.cs: Added
18812
18813 2006-03-13  Mike Kestner  <mkestner@novell.com>
18814
18815         * ListView.cs: fix breakage in drag shadow header positioning 
18816         from Peter's csc compilation fix.
18817
18818 2006-03-13  Mike Kestner  <mkestner@novell.com>
18819
18820         * ListView.cs: fix NRE produced by backspacing twice in a focused
18821         FileDialog.
18822
18823 2006-03-13  Mike Kestner  <mkestner@novell.com>
18824
18825         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
18826
18827 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
18828
18829         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
18830           be changed
18831         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
18832           the allowed size before making programmatic size changes
18833
18834 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
18835
18836         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
18837           set, metacity is broken and will still use the emty sizes in 
18838           the struct. (Fix for #77089)
18839
18840 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
18841
18842         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
18843           WindowExStyles and marked both enums as Flags
18844         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
18845           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
18846           to match WindowStyles split
18847         * XplatUIX11.cs:
18848           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
18849           - Updated to match WindowStyles split
18850         * XplatUIWin32.cs:
18851           - Fixed FosterParent creation, was using ExStyle on the Style field
18852             (This should help with Popup focus issues)
18853           - Updated to match WindowStyles split
18854
18855 2006-03-13  Jackson Harper  <jackson@ximian.com>
18856
18857         * MdiWindowManager.cs: Use the system menu height. Fixes some
18858         strange sizing issues.
18859
18860 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
18861
18862         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
18863         * TextBoxBase.cs:
18864           - Scroll to caret after inserting text (#77672)
18865           - Make scroll range one pixel higher, fixes off-by-one error (and
18866             makes underlines visible on the last line)
18867
18868 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
18869
18870         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
18871           the keyboard state from being stuck with keys in 'pressed' state when
18872           focus is switched away via keyboard
18873         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
18874           reset the keyboard if no X11 KeyUp events are expected to come
18875         * X11Structs.cs: Switched type of Visible to bool to match driver
18876
18877 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
18878
18879         * TextControl.cs:
18880           - Switched caret to be just 1 pixel wide, matches MS and looks less
18881             clunky
18882           - Moved caret display 1 pixel down from the top of the control
18883             to improve view
18884           - InsertCharAtCharet: Update the selection start if moving the caret
18885             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
18886           - No longer always creating the caret when the caret methods are
18887             called. Only the actual ShowCaret/HideCaret will do that now
18888           - Only setting caret visible if the owner control has focus
18889           - UpdateView: Added invalidation-shortcut logic for center and right 
18890             aligned text. Previously we'd update all according to the left
18891             logic which caused drawing errors. Also fixed height of invalidated
18892             areas, now properly invalidating the whole area (was off-by-one)
18893           - owner_HandleCreated: Always generate the document when the
18894             handle is created; this ensures that 
18895         * TextBoxBase.cs:
18896           - Fixed situation where caret would disappear under the right
18897             window border, also improved scrolling behaviour on left-
18898             aligned textboxes
18899           - Fixed right-aligned textboxes to have a border to the
18900             right instead of the caret being under the right border
18901         * XplatUIX11.cs:
18902           - Switched from 'nested' to simple visible/not visible tracking 
18903             for caret (part of fix for #77671)
18904           - No longer passing through translated FocusIn/FocusOut messages
18905             since we were notifying too often and the wrong windows. Instead
18906             we just notify our focussed window of receiving or loosing focus
18907         * XplatUIWin32.cs: Switched from 'nested' show/hide 
18908           counting for caret to simple visible yes/no behaviour (part of 
18909           fix for #77671)
18910
18911 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
18912
18913         * Mime.cs: Remove debug code...
18914
18915 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
18916
18917         * MimeGenerated.cs: Removed
18918         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
18919           and subclasses) from /usr/(local/)share/mime and
18920           $HOME/.local/share/mime.
18921
18922 2006-03-10  Jackson Harper  <jackson@ximian.com>
18923
18924         * MdiWindowManager.cs: Recalc the NC area when a window is
18925         maximized/restored so that the menu area is drawn on forms that
18926         don't have a menu.
18927
18928 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
18929
18930         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
18931           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
18932           us to force a WM_NCCALCRESIZE message being sent. This is needed
18933           for MDI maximizing.
18934
18935 2006-03-10  Jackson Harper  <jackson@ximian.com>
18936
18937         * Form.cs: We need to use the ActiveMenu when calculating menu
18938         height.
18939         - Fix nullref when the window manager hasn't been created yet.
18940         * Control.cs: Fix nullref when we try to bring a control to the
18941         front that has no parent.
18942         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
18943         height.
18944         - Add a dummy item to the maximized menu so it always has the
18945         correct height. Otherwise when there are no menus we don't get our
18946         icon and buttons.
18947         
18948
18949 2006-03-10  Jackson Harper  <jackson@ximian.com>
18950
18951         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
18952         stuff.
18953         * Form.cs: Make the window_state internal so the window managers
18954         can track it.
18955         - When an MDI child is maximized let its window manager create the
18956         main menu (so it can add its icon).
18957         - Notify the window managers of state changes
18958         - Let the window manager paint its buttons and handle button
18959         clicks on the menu when it is maximized.
18960         * InternalWindowManager.cs: Move the prev_bounds into the mdi
18961         window manager, since tool windows don't use it, only mdi windows.
18962         - Tell the main form that we don't want it to handle NCPAINT
18963         itself to avoid extra painting.
18964         - Handle clicks on a maximized windows menu.
18965         - Handle window state changes
18966         - Handle minimize/maximize clicks correctly by setting the window state.
18967         * MdiWindowManager.cs: Add an icon menu that (the menu you get
18968         when clicking on the forms icon).
18969         - New method to create a forms maximized menu. This is its normal
18970         menu + an icon.
18971         - Handle window state changes.
18972         - Handle sizing of maximized windows.  Maximized windows are just
18973         drawn bigger then the parent visible area. All controls are still
18974         there, they are just outside the visible area (this matches windows).
18975         * MdiClient.cs: No scrollbars when a child window is maximized.
18976         - Let the children windows figure out how big they should be when
18977         sizing maximized windows.
18978         - Implement a version of ArrangeIconicWindows somewhat similar to
18979         Windows version.  There are some little differences, but I don't
18980         think any app will rely on the layout of minimized mdi windows.
18981
18982 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
18983
18984         * Padding.cs: Several fixes to allow compiling with csc 2.0
18985
18986 2006-03-09  Jackson Harper  <jackson@ximian.com>
18987
18988         * Menu.cs:
18989         * MenuItem.cs: Cheap hack so we can add items to the list without
18990         the events being raised.  This allows adding mdi items during
18991         drawing. TODO: Should probably find a better time to add the items.
18992
18993 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
18994
18995         * ThemeWin32Classic.cs:
18996           - CheckBox_DrawText: Added logic to not wrap if not enough space
18997             is available (Fix for bug #77727)
18998           - RadioButton_DrawText: Added logic not to wrap if not enough
18999             space is available (Fix for bug #77727). Also removed some
19000             duplicate code, DrawString always drawing the regular text
19001             before hitting the if statement.
19002
19003 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
19004
19005         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
19006
19007 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19008
19009         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
19010         * ContainerControl.cs: Partial implementation of some 2.0 scaling
19011           methods. Moved the new 2.0 properties into alphabetical order with
19012           other properties and added MonoTODO tags
19013
19014 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
19015
19016         * AutoScaleMode.cs: Added. Fix build.
19017
19018 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19019
19020         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
19021           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
19022           and was requiring premature handle creation for calls from above
19023         * Form.cs, Control.cs: Removed handle arguments from calls to
19024           CalculateClientRect()
19025
19026 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
19027
19028         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
19029           drag_column.column_rect is MarshalByRef and can't be used that way
19030
19031 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19032
19033         * AxHost.cs: Added deserialization constructor for 
19034           AxHost+State (fixes 77743)
19035
19036 2006-03-09  Mike Kestner  <mkestner@novell.com>
19037
19038         * ListView.cs: 
19039         - Added column drag reordering for details view.
19040         - fixed behavior when mouse is dragged off column and
19041         AllowColumnReorder is false.
19042         * ColumnHeader.cs: clone the format too in Clone.
19043         * Theme.cs: add DrawListViewHeaderDragDetails method.
19044         * ThemeWin32Classic.cs:
19045         - impl new method for drawing drag column shadows and targets.
19046         - support column offset for details mode in DrawListViewItem.
19047
19048 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19049
19050         * TextControl.cs: Reset the char_count when the document is cleared
19051           (Fixes bug reported on mono-winforms mailing list)
19052
19053 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
19054
19055         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
19056           of calling base we simply process the key ourselves, since both
19057           DefWindowProc and the handled method would set m.Result. 
19058           (Fixes #77732)
19059
19060 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19061
19062         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
19063           method also moves the window; instead implemented a copy of
19064           Control.ScaleCore (Part of fix for #77456)
19065         * TextBoxBase.cs: 
19066           - Created new CreateGraphicsInternal method to allow providing
19067             a graphics context when no handle is created without triggering
19068             handle creation. (Part of fix for #77456)
19069           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
19070         * TextControl.cs: 
19071           - Switched Constructor to require TextBoxBase instead of Control (to
19072             allow uncast access to CreateGraphicsInternal)
19073           - Safeguarded use of owner.Handle property. No longer accessing it
19074             unless the handle is already created.
19075           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
19076           - Now triggering a recalc when owning control becomes visible
19077         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
19078           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
19079           premature handle creation (Part of fix for #77456)
19080         * Control.cs:
19081           - We now only destroy our double-buffering buffers when the
19082             control is resized or disposed, but not when visibility
19083             changes. (The code even re-created them twice every time)
19084           - Now requiring a redraw of the buffer on visibility changes
19085             (fixes bug 77654 part 2)
19086           - Not passing OnParentVisibleChanged up unless the control
19087             is visible
19088           - CanFocus: Fixed to match MS documentation
19089           - Focus: Fixed to return actual focus state and to check if
19090             setting focus is legal before setting it
19091
19092 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
19093
19094         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
19095           when to draw focus rectangle by looking at parent focus and
19096           selected state instead. This fixes TabPages on Linux sometimes
19097           having none or multiple focus rectangles.
19098         * XplatUIX11.cs (SetFocus): 
19099           - Don't set the focus if the same window already has focus
19100           - Use SendMessage instead of PostMessage (like it's Win32
19101             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
19102             to match MS behaviour
19103         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
19104           are not selectable.
19105
19106 2006-03-07  Jackson Harper  <jackson@ximian.com>
19107
19108         * PictureBox.cs: Revert line I accidently committed last week.
19109
19110 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19111
19112         * Control.cs: 
19113           - Added new IsRecreating and ParentIsRecreating properties to
19114             allow testing if RecreateHandle has been called on ourselves
19115             or one of our parents
19116           - WndProc(WM_DESTROY): If our control handle is being recreated
19117             we immediately need to create the handle when receiving the
19118             destroy, that way our child windows find a valid parent handle
19119             when they themselves are being recreated upon WM_DESTROY receipt
19120             (fix for bug #77654 part 1)
19121         * XplatUIX11.cs:
19122           - DestroyWindow: WM_DESTROY must be sent to our own window before
19123             notifying any child windows. MS documents that child windows
19124             are still valid when WM_DESTROY is received. (Control now relies on
19125             this behaviour)
19126           - Added some fine-grain debug options
19127
19128 2006-03-06  Jackson Harper  <jackson@ximian.com>
19129
19130         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
19131         box and base calculations off this.
19132         * MdiChildContext.cs:
19133         * MdiWindowManager.cs: Don't need to ensure scrollbars here
19134         anymore.
19135         
19136 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
19137
19138         * Splitter.cs: In situations where the affected control is added
19139           to the parent's control list after the splitter, we would not
19140           populate affected. Now we try populating it on mousedown, if
19141           it's not already set, and force it to be re-set whenever our
19142           parent changes.
19143
19144 2006-03-03  Matt Hargett  <matt@use.net>
19145
19146         * Control.cs: implement Control.Padding
19147         * Padding.cs: -Padding.All returns -1 when constructing with the
19148         implicit default ctor
19149         -Padding.ToString() matches MS.NET
19150         * ContainerControl.cs: implement
19151         ContainerControl.AutoScaleDimensions
19152         * ListControl.cs: implement ListControl.FormattingEnabled
19153         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
19154         * ButtonBase.cs:
19155         * TabPage.cs: Implement UseVisualStyleBackColor.
19156         * PictureBox.cs: Implement PictureBox.InitialImage.
19157
19158 2006-03-03  Mike Kestner  <mkestner@novell.com>
19159
19160         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
19161         event declarations to proxy to base event.
19162         * ListViewItem.cs: update to use ItemControl.
19163         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
19164         * ThemeWin32Classic.cs: update to new ListView theme API and fix
19165         column header label rendering for 0 width columns.
19166
19167 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
19168
19169         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
19170           that causes the control to be created. Fixes #77476.
19171
19172 2006-03-02  Jackson Harper  <jackson@ximian.com>
19173
19174         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
19175         expose_pending.
19176
19177 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
19178
19179         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
19180           passed in for the EventArgs (fixes #77690)
19181
19182 2006-03-01  Jackson Harper  <jackson@ximian.com>
19183
19184         * ScrollBar.cs: Refresh afterbeing resized.
19185
19186 2006-02-28  Mike Kestner  <mkestner@novell.com>
19187
19188         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
19189         Clean up a tracker compile warning.
19190         * MenuItem.cs: add internal PerformPopup method.
19191         [Fixes #77457]
19192
19193 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
19194
19195         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
19196           implicit expose) when the text is set to null
19197
19198 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
19199
19200         * RichTextBox.cs (FlushText): When newline is true, we always
19201           need to split the line, even if no text is on it and we may
19202           never eat newlines. (Fixes #77669)
19203
19204 2006-02-28  Mike Kestner  <mkestner@novell.com>
19205
19206         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
19207         and set Selected instead.
19208         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
19209         collections.
19210
19211 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
19212
19213         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
19214
19215 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
19216
19217         * FontDialog.cs:
19218           - Got rid of the panel. All controls are now directly added to
19219             the dialog form
19220           - It is now possible to set a font with the Font property
19221           - MinSize and MaxSize property do now what they should
19222           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
19223           - Searching and selecting a font with the font textbox works now,
19224             the same applies to the style and size textbox
19225           - Draw the correct 3D border in the example panel
19226           - Fixed a little mem leak (unused fonts didn't get disposed)
19227           - Many other internal updates/rewrites...
19228           - Fix typo
19229
19230 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
19231
19232         * TextControl.cs: 
19233           - InsertRTFFromStream: Added 'number of characters inserted' argument
19234           - set_SelectedRTF: Now using the number of characters to calculate
19235             the new location for the selection and cursor (x/y cannot be used
19236             due to potentially already wrapped text)
19237
19238 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
19239
19240         * TextControl.cs: Added property and implemented means to allow 
19241           disabling recalculation of a document (can be used to speed up
19242           multiple inserts and is needed to make RTF inserts predictable, see
19243           bug #77659)
19244         * RichTextBox.cs: Using the new NoRecalc property of Document to
19245           keep x/y insert locations predictable. Also makes it faster inserting
19246           large chunks of RTF
19247
19248 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
19249
19250         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
19251           it's easier for a child control to handle the other messages without
19252           having to duplicate the special functionality
19253         * TextBoxBase.cs
19254           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
19255             code to handle processing the key ourselves, in order to get 
19256             access to the result of KeyEventArgs.Handled. We now only call 
19257             ProcessKey if they key hasn't been handled already. Fixes #77526.
19258           - set_Text: If null or empty string is given, just clear the 
19259             document. Fixes part of #77526
19260
19261 2006-02-27  Jackson Harper  <jackson@ximian.com>
19262
19263         * SizeGrip.cs: Paint the background color before painting the grip
19264         so things look right.
19265         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
19266
19267 2006-02-27  Mike Kestner  <mkestner@novell.com>
19268
19269         * ListView.cs:
19270           - Restructure layout and invalidation model to remove a ton of
19271           flicker from the control and speed up performance in general.
19272           - Add manual column resize, flickers like crazy, but I already have
19273           some ideas on how I'll fix that. (#76822)
19274           - Merge the three Icon-based views into a single layout method.
19275           - Move item selection interaction logic from the item since 
19276           interaction with the collections is more appropriate to the view.
19277           - Deselection on non-item clicks.
19278         * ListViewItem.cs:
19279           - Encapsulate most of the layout. Add some internal props to trigger
19280           layout.  Move to a model where Items invalidate themselves instead
19281           of just invalidating the whole control every time something changes.
19282           - Invalidate on Text/Caption changes.
19283           - switch to an offset based layout model to avoid having to absolute
19284           position every element on item moves.
19285           - correct checkbox layout to conform to MS layout.
19286         * ThemeWin32Classic.cs:
19287           - refactor some column header drawing code.
19288           - fix string justification for column headers (#76821)
19289           - make SmallIcon labels top justified for compat with MS impl.
19290         * ThemeClearlooks.cs:
19291           - adjust to new ListViewItem internal checkbox bounds api.
19292
19293 2006-02-27  Jackson Harper  <jackson@ximian.com>
19294
19295         * Control.cs:  Change where implicit controls fall in the zorder.
19296         They are now on top of all children.
19297         - Synced AddImplicit code with Add
19298         - Removed unused enumerator.
19299         * SizeGrip.cs: Remove the TODO as its been TODONE.
19300
19301 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
19302
19303         * TextControl.cs(Insert): Combine the last lines unless the insertion
19304           string ends with \n\n, otherwise we leave one line too many (Fixes
19305           something I noticed with the testapp for #77526; the bug itself was
19306           already fixed in the previous checkin)
19307
19308 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
19309
19310         * RichTextBox.cs:
19311           - SelectionColor and SelectionFont methods no longer set absolute
19312             styles. Instead, the keep font or color respectively (This 
19313             resolves a long-standing FIXME in the code)
19314           - When flushing RTF text, the insert code now considers text trailing
19315             behind the insertion point (Fixes the bug where when replacing
19316             the selected text via SelectedRTF the remainder of the line behind 
19317             the selection would stay on the first insertion line)
19318         * TextBoxBase.cs:
19319           - AppendText now updates the selection points after inserting text
19320           - AppendText now ensures that the last tag (sometimes 0-length) of
19321             the document is used for the style information (Fixes part of 
19322             bug #77220)
19323         * TextControl.cs:
19324           - Created new FontDefiniton class to allow describing partial style
19325             changes
19326           - StreamLine() now takes a lines argument, to allow it to decide
19327             whether an encountered zero-length tag is the last in the document
19328             (which must be kept to not loose the font/color contained in it,
19329             for later appends)
19330           - Created Combine() and Split() methods for Marker structs, to 
19331             support marker updates due to reformatted documents (soft line
19332             wraps)
19333           - Implemented Document.CaretTag setter
19334           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
19335             of the last line (Not the cause, but also exposed by bug #77220)
19336           - Added LineTag argument to InsertString method, to allow callers
19337             to force a certain tag to be used (required to force use of the
19338             trailing zero-length tag of a document)
19339           - Now updating markers in Combine(), to avoid stale tag markers
19340           - Added some method descriptions to aid maintenance
19341           - Implemented new FormatText concept, allowing additive/subtractive
19342             formatting by only specifying the components that are to be 
19343             changed. This was needed for resolving the RTB.SelectedColor/
19344             RTB.SelectedFont fixmes
19345           - Added Break() support method to allow breaking up linetags (used
19346             for partial formatting)
19347           - Added GenerateTextFormat() method. It is used for partial 
19348             formatting and allows to generate a full font/color from given
19349             attributes and an existing tag.
19350
19351 2006-02-26  Jackson Harper  <jackson@ximian.com>
19352
19353         * XplatUIX11.cs:  Use the correct caption height.
19354         - Translate hittest coordinates to screen coords to match MS.
19355         * XplatUIWin32.cs: When we create MDI windows we need to reset
19356         some of the style flags, so we get a nice blank window, and can
19357         draw all the decorations ourselves.
19358         - Set a clipping rectangle on the non client paint event, the
19359         window manager drawing code needs one.
19360         * Form.cs: The window manager needs to know when the window state
19361         has been updated.
19362         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
19363         don't need to factor in border and title sizes in these
19364         methods. TODO: Remove the args and fix the call points.
19365         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
19366         properly.
19367         - Let the driver set the cursors.
19368         - Improve active window handling
19369         - Correct sizes for title bars and buttons.
19370         - Match MS drawing better
19371         * MdiWindowManager.cs: We don't need to handle border style
19372         updates specially anymore.
19373         - Check for scrollbars when windows are done moving
19374         - Handle Active properly.
19375         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
19376         correctly. I am spewing the exception though, so we don't hide the
19377         bugs.
19378         
19379 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
19380
19381         * DataGridViewRowPostPaintEventArgs.cs,
19382           DataGridViewCellPaintingEventArgs.cs,
19383           DataGridViewRowCollection.cs,
19384           DataGridViewRowPrePaintEventArgs.cs,
19385           DataGridViewCell.cs: Clear a few warnings and implement a few
19386           exceptions that should be thrown.
19387
19388 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
19389
19390         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
19391           'inheriting' our parent's (non-default) cursor. (Part of
19392            the fix for #77479)
19393
19394 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
19395
19396         * XplatUIX11.cs: Fixed cast to make csc happy
19397
19398 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
19399
19400         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
19401           it's for the client area (part of fix for #77479 and needed
19402           for MDI window cursor handling)
19403         * XplatUIX11.cs
19404           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
19405             the appropriate default cursors and also passing the message
19406             up the parent chain 
19407           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
19408             for non-client areas
19409
19410 2006-02-15  Jackson Harper  <jackson@ximian.com>
19411
19412         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
19413         is a real MDI window
19414
19415 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
19416
19417         * X11DesktopColors.cs: Instead of checking the desktop session
19418           string for "KDE" check if it starts with "KDE"
19419
19420 2006-02-10  Jackson Harper  <jackson@ximian.com>
19421
19422         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
19423         systems).
19424
19425 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
19426
19427         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
19428           errors
19429         * ColorDialog.cs:
19430           - Got rid of the panel. All controls are now directly added to
19431             the dialog form
19432           - Changed to mono coding style
19433
19434 2006-02-10  Jackson Harper  <jackson@ximian.com>
19435
19436         * InternalWindowManager.cs: We don't need the set visibility to
19437         false hack anymore now that peter has written beautiful shutdown
19438         code.
19439
19440 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
19441
19442         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
19443           where already explicitly destroyed
19444
19445 2006-02-10  Jackson Harper  <jackson@ximian.com>
19446
19447         * MdiClient.cs: Handle the case where windows are too high or to
19448         the left and we need scrollbars.
19449
19450 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
19451
19452         * MimeIcon.cs: Added some icons
19453         * FileDialog.cs:
19454           - Fixed bug #77477
19455           - Got rid of the panel. All controls are now directly added to
19456             the dialog form
19457           - Changed to mono coding style
19458           - On Linux "My Computer" and "My Network" will now show some
19459             more usefull information. A new class, MasterMount, gathers
19460             this information from /proc/mount. Updated MWFFileView to make
19461             use of this information
19462           - Fixed a bug that caused FileDialog to crash when
19463             ".recently_used" file had a zero size
19464           - FilterIndex does now what it should
19465           - Some Refactoring
19466         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
19467             FileDialog changes
19468
19469 2006-02-09  Jackson Harper  <jackson@ximian.com>
19470
19471         * ComboBox.cs: Don't touch if null.
19472
19473 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
19474
19475         * Cursor.cs: 64bit safeness fix
19476         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
19477
19478 2006-02-09  Jackson Harper  <jackson@ximian.com>
19479
19480         * Form.cs: If a form is made into an MDI form update the styles so
19481         all the props can get set correctly.
19482         - Kill the mdi_container when we dont need it anymore.
19483         * InternalWindowManager.cs: Add missing NOT
19484
19485 2006-02-08  Jackson Harper  <jackson@ximian.com>
19486
19487         * InternalWindowManager.cs: Respek clipping when drawing MDi
19488         decorations.
19489
19490 2006-02-08  Jackson Harper  <jackson@ximian.com>
19491
19492         * Hwnd.cs: Add bits to track non client expose events.
19493         * XplatUIX11.cs: Track non client expose events on the hwnd. This
19494         gives us a proper invalid rect and will allow for some nice
19495         optimizations with NC client drawing
19496         - MDI windows are children windows, so move their style handling
19497         into the child window block.
19498         * InternalWindowManager.cs: Remove a state reset that was
19499         getting invoked at the wrong time. Fixes managed windows getting
19500         into a 'stuck' captured state.
19501
19502 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
19503
19504         * TextControl.cs (Document.ctor): Now initializing 
19505           selection_anchor. Fixes #77493
19506
19507 2006-02-07  Jackson Harper  <jackson@ximian.com>
19508
19509         * TrackBar.cs: The increment/decrements were backwards.
19510
19511 2006-02-07  Mike Kestner  <mkestner@novell.com>
19512
19513         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
19514         to the instance itself.
19515
19516 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
19517
19518         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
19519           on ulongs and pointers, the size differs between 32bit and 64bit
19520           systems. 
19521
19522 2006-02-07  Mike Kestner  <mkestner@novell.com>
19523
19524         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
19525         for 64 bit platforms to work around a metacity bug. 
19526
19527 2006-02-07  Jackson Harper  <jackson@ximian.com>
19528
19529         * TrackBar.cs: Process the input keys we need, and hookup to
19530         KeyDown instead of using WndProc, so we get key messages.
19531
19532 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
19533
19534         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
19535           machine we're on. 
19536         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
19537           we need to translate the XdndVersion atoms array before sending it
19538
19539 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
19540
19541         * XplatUIX11.cs: 
19542           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
19543             number of bits for the property, not the number of bytes. The
19544             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
19545             but would not crash since it specified 8 bits instead of 4 bits)
19546           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
19547             defined as XID -> long in the C headers)
19548           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
19549             references since those are now IntPtr to begin with
19550           - Switched all Atom.XXX 'int' casts to IntPtr casts
19551           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
19552           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
19553           - Added XChangeActivePointerGrab DllImport (for X11DnD)
19554         * X11Structs.cs:
19555           - Changed 'int' type for Atoms in XEvent structures to IntPtr
19556           - Changed atom in HoverStruct to be IntPtr
19557         * X11DnD.cs:
19558           - Removed local DllImports, switched code to use those from XplatUIX11
19559           - Removed/fixed casts related to the switch of Atom to be a IntPtr
19560
19561 2006-02-06  Mike Kestner  <mkestner@novell.com>
19562
19563         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
19564         method signatures in the import region.  There may still be some
19565         lingering struct marshaling issues, as I didn't drill down into those.
19566         Yet.
19567
19568 2006-02-06  Jackson Harper  <jackson@ximian.com>
19569
19570         * ComboBox.cs: Dont manually set the top_item, this is computed
19571         when the scrollbar position is set.
19572
19573 2006-02-06  Mike Kestner  <mkestner@novell.com>
19574
19575         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
19576         startup crashes on amd64.  There's other fixes needed.  All pinvoke
19577         usage of Atom needs to be mapped to IntPtr for example.  And there are
19578         likely other int/long issues to be addressed.
19579
19580 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
19581
19582         * FileDialog.cs: One more...
19583
19584 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
19585
19586         * FileDialog.cs: Next try
19587
19588 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
19589
19590         * FileDialog.cs: First part of fix for #77464
19591
19592 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
19593
19594         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
19595           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
19596           AcceptButton border drawing.
19597
19598 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
19599
19600         * Form.cs: Moved positioning of form after auto scaling is applied,
19601           otherwise it would possibly use wrong form size.
19602
19603 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
19604
19605         * Control.cs (RecreateHandle): No need to re-create any child
19606           controls, the child windows will get destroyed automatically by
19607           the windowing system or driver, and re-created when the handle
19608           is being accessed the first time. Fixes #77456
19609         * Form.cs: No longer setting the form to closing if the handle is 
19610           being recreated. This seems like the right thing to do, don't
19611           have a bug or testcase for this, though.
19612
19613 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
19614
19615         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
19616           controls to avoid unwanted side effects
19617
19618 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
19619
19620         * Control.cs: 
19621           - ScaleCore needs to scale the bounds, not the ClientSize of the 
19622             control. Fixes #77416.
19623           - DefaultSize is 0,0 for control
19624         * TextBoxBase.cs: 
19625           - DefaultSize is 100, 20
19626           - SetBoundsCore: Now enforcing the height, no matter if the provided
19627             height is more or less than the preferred one, as long as AutoSize
19628             is on
19629         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
19630
19631 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
19632
19633         * Control.cs:
19634           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
19635             call unless both performLayout is true *and* we have a pending
19636             layout change
19637           - ResumeLayout: MS does not completely nest Suspend and Resume,
19638             they bottom out at 0, fixed our code to match that.
19639           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
19640             SetBoundsCore, we were updating even when we shouldn't. This fixes
19641             swf-anchors mis-anchoring when resizing the app fast and lots.
19642           - UpdateDistances: Now only setting the left and top distance if 
19643             we have a parent and are not suspended, this is based on
19644             a suggestion by Don Edvaldson in bug #77355.
19645           - OnVisibleChanged: Fixed logic when to create the control. We may
19646             not create the control if we have no parent or if it's not visible;
19647             switched to using Visible property instead of is_visible field 
19648             since the property also considers parent states. This fixes a bug
19649             when starting Paint.Net
19650
19651 2006-02-02  Jackson Harper  <jackson@ximian.com>
19652
19653         * Form.cs: If the forms handle hasn't been created yet don't call
19654         into xplatui to make it top most, just set the topmost flag on the
19655         form in CreateParams
19656         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
19657
19658 2006-02-01  Jackson Harper  <jackson@ximian.com>
19659
19660         * ScrollableControl.cs: Refactored the Recalculate method a
19661         little, this wasn't handling all the variants of bottom and right
19662         bars needed to be added and added/removed based on their
19663         counterparts being added/removed (which changes the drawable
19664         size). Also we special case client widths and heights of 0 and
19665         don't add the scrollbar for those.
19666
19667 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
19668
19669         * XplatUIX11.cs: 
19670           - Added method to get AbsoluteGeometry(); currently unused, but might
19671             be used in the future, if we try again to figure out toplevel
19672             coordinates with some more crappy window managers
19673           - Added FrameExtents() method to retrieve the WM set decoration size
19674           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
19675             to deal with at least KDE, FVWM and metacity (Fixes #77092)
19676         * Hwnd.cs: 
19677           - Added whacky_wm tracking var for metacity
19678           - Added logic to have default menu height if the actual menu height
19679             has not yet been calculated (part of fix for #77426)
19680         * Form.cs: Keep track whether client size has been set and re-set 
19681           it if a menu is added/removed afterwards (Fixes #77426)
19682
19683 2006-01-31  Jackson Harper  <jackson@ximian.com>
19684
19685         * Control.cs: When a new Site is set on the component attempt to
19686         pull the AmbientProperties from it.
19687
19688 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
19689
19690         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
19691           in the background of the owning form. Fixes #77332
19692
19693 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
19694
19695         * MimeIcon.cs: Fix for #77409
19696
19697 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
19698
19699         * XplatUIX11GTK.cs: Initial import
19700
19701 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
19702
19703         * FixedSizeTextBox: fixes class signature
19704
19705 2006-01-30  Jackson Harper  <jackson@ximian.com>
19706
19707         * FixedSizeTextBox.cs: New internal class that represents a
19708         textBox that will not be scaled.
19709         * TreeView.cs:
19710         * ComboBox.cs:
19711         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
19712         standard TextBox.
19713                 
19714 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
19715
19716         * XplatUIX11.cs: Retrieve default screen number instead of
19717           assuming 0. Attempted fix for #77318
19718
19719 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
19720
19721         * XplatUIWin32.cs: 
19722           - GetWindowPos: When a window is parented by FosterParent, use 
19723             the desktop instead of FosterParent as the base to get coordinates
19724           - CreateWindow: Don't make FosterParent the parent window for Popups
19725             if we don't want a taskbar entry, Popups automatically don't get one
19726         * Hwnd.cs: Need to call remove to actually remove the key from the
19727           hash table
19728
19729 2006-01-30  Mike Kestner  <mkestner@novell.com>
19730
19731         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
19732
19733 2006-01-30  Jackson Harper  <jackson@ximian.com>
19734
19735         * TreeView.cs:
19736         * TreeNode.cs: Raise events no matter how the treenode is
19737         checked. Patch by Don Edvalson.
19738
19739 2006-01-30  Jackson Harper  <jackson@ximian.com>
19740
19741         * TreeNode.cs: Signature fix.
19742
19743 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
19744
19745         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
19746
19747 2006-01-20  Mike Kestner  <mkestner@novell.com>
19748
19749         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
19750         event forwarding when menus are active.
19751         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
19752         Most of the patch is pdb's with a little rework.
19753
19754 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
19755
19756         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
19757           Removed GetMenuDC and ReleaseMenuDC methods; replaced
19758           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
19759         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
19760         * InternalWindowManager.cs: Added use of PaintEventStart/End to
19761           handling of WM_NCPAINT message, now passing the PaintEventArgs to
19762           the PaintWindowDecorations method
19763         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
19764         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
19765         * MenuAPI.cs: Made tracker window invisible
19766         * XplatUIWin32.cs:
19767           - Removed GetMenuDC and ReleaseMenuDC methods
19768           - Implemented the client=false path for PaintEventStart and
19769             PaintEventEnd
19770
19771 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
19772
19773         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
19774         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
19775           styles
19776         * Form.cs: 
19777           - MaximizeBox, MinimizeBox: Recreate the handle when setting
19778             the style
19779           - CreateParams: Reworked the styles to match MS look'n'feel,
19780             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
19781             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
19782
19783 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
19784
19785         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
19786           window is not mapped, since otherwise every form that's being 
19787           created is considered minimized, which is wrong.
19788         * Form.cs: Catching the exception and returning our internal value
19789           instead
19790
19791 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
19792
19793         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
19794           SetWindowMinMax() to have means to tell the driver about the minimum,
19795           maximum and maximized state window sizes. (Part of the fix for #76485)
19796         * Form.cs:
19797           - Implemented tracking of minimum and maximum window size, now calling
19798             new SetWindowMinMax() driver method to tell the driver (Part of the
19799             fix for #76485)
19800           - Finished handling of WM_GETMINMAXINFO method, now setting all values
19801             (Completes fix for #76485)
19802           - Calling new SetWindowMinMax driver method when the handle for a 
19803             form is created, to make sure the driver knows about it even if
19804             the values have been set before the window was created
19805           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
19806             to avoid messing up our anchoring calculations (partial fix
19807             for #77355)
19808         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
19809         * XplatUIX11.cs:
19810           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
19811           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
19812             (and presumably other freedesktop.org compliant WMs). Left the
19813             assumption unmapped=minimized, needed for SetVisible to work.
19814           - Now setting the window state when creating windows
19815           - Fixed SetVisible to consider/set the window state when mapping
19816             a Form. We cannot set the state before it's mapped, and we cannot
19817             use Form.WindowState once it's mapped (since it would ask the
19818             driver and get 'normal'. Therefore, we grab the state before
19819             mapping, map, and then set state.
19820           - Implmemented SetWindowMinMax method; Metacity does not seem to
19821             honor the ZoomHints, though.
19822         * XplatUIWin32.cs:
19823           - Removed MINMAXINFO (moved to XplatUIStructs)
19824           - Added SetWindowMinMax stub (on Win32 the only way to set that
19825             information is in response to the WM_GETMINMAXINFO message, which
19826             is handled in Form.cs)
19827           - Added logic to SetVisible to set the proper window state when a 
19828             form is made visible (fixes #75720)
19829
19830 2006-01-26  Jackson Harper  <jackson@ximian.com>
19831
19832         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
19833         same way we handle them with Invoke.
19834
19835 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
19836
19837         * Form.cs:
19838           - Added tracking of window state so CreateParams can return
19839             the appropriate style
19840           - Moved setting of WS_CAPTION style in CreateParams to allow
19841             styles without caption
19842         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
19843           control if the TextBox property is accessed. Fixes #77345
19844         * Control.cs:
19845           - get_Created: now uses is_disposed and is_created to determine
19846             return value (suggested by Jackson)
19847           - CreateHandle: No longer exits if the handle is being recreated
19848           - RecreateHandle: If the handle is not yet created call the 
19849             appropriate method to create either control or handle. If the
19850             control is already created CreateHandle will simply exit instead
19851             of just creating the handle
19852         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
19853           now SendMessage WM_DESTROY directly to the control when DestroyWindow
19854           is called.
19855         * XplatUIX11.cs: 
19856           - When DestroyWindow is called, instead of waiting for the 
19857             DestroyNotification from X11, we directly post it to the WndProc
19858             and immediately dispose the hwnd object.
19859             Same applies to DestroyChildWindows, and this obsoletes the
19860             expose_pending tracking. Contrary to Win32 behaviour we destroy our
19861             child windows before our own, to avoid X11 errors.
19862           - Removed the direct sending of WM_PAINT on UpdateWindow
19863         * XplatUIWin32.cs:
19864           - Reworked DoEvents and GetMessage to allow access to internal queue
19865             even when trying non-blocking access to the queue.  Fixes #77335. 
19866             Based on a patch suggestion by Don Edvalson. The new private
19867             GetMessage can now also be used as a backend for a PeekMessage
19868             frontend version.
19869         * XplatUI.cs: Improved debug output for CreateWindow
19870
19871 2006-01-25  Jackson Harper  <jackson@ximian.com>
19872
19873         * Help.cs: Allow param to be null. Patch by Don Edvalson.
19874
19875 2006-01-24  Jackson Harper  <jackson@ximian.com>
19876
19877         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
19878         when we have a MaxDropItems lower then the selected index.
19879
19880 2006-01-24  Jackson Harper  <jackson@ximian.com>
19881
19882         * Control.cs: Don't allow selection of non visible controls, allow
19883         selection of controls without parents.
19884
19885 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
19886
19887         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
19888         * DataGridDrawingLogic.cs: Add editing row only when is necessary
19889
19890 2006-01-23  Jackson Harper  <jackson@ximian.com>
19891
19892         * UpDownBase.cs: Make the textbox handle all the selection and
19893         tabbing. This fixes tabing to updown controls.
19894
19895 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
19896
19897         * TextBoxBase.cs: fixes exception thown the object was null
19898
19899 2006-01-23  Jackson Harper  <jackson@ximian.com>
19900
19901         * ButtonBase.cs: Just use the base CreateParams. They set
19902         visibility and enabled correctly.
19903         * ComboBox.cs:
19904         * TrackBar.cs:
19905         * MonthCalendar.cs: Lets let the base set as much of the
19906         createparams as possible so we don't have duplicate code all over
19907         the place.
19908
19909 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
19910
19911         * ThemeGtk.cs: Added TrackBar and some experimental code to
19912           get double buffering back
19913
19914 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
19915
19916         * DataGrid.cs: Allows row number set internally higher than the last
19917         when creating a new row. Restores the editing functionality.
19918
19919 2006-01-20  Mike Kestner  <mkestner@novell.com>
19920
19921         * MimeIcon.cs: delay Image creation until the icons are accessed
19922         instead of creating 190 scaled images on GnomeHandler startup.
19923
19924 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
19925
19926         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
19927           first call base before processing the event. Fixes #77279
19928
19929 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
19930
19931         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
19932           that the stride for the GDI bitmap would match the stride of
19933           a DIB or a Cursor.
19934
19935 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
19936
19937         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
19938
19939 2006-01-19  Jackson Harper  <jackson@ximian.com>
19940
19941         * ComboBox.cs: Hookup the text controls keydown event so we get
19942         those when the text control has the focus.
19943
19944 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
19945
19946         * Label.cs: Now using the base events instead of defining new ones;
19947           this allows us to just call the base properties without having to
19948           duplicate all base property logic 
19949
19950 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
19951
19952         * Label.cs: A label by default is not a tabstop (Fixes one of our
19953           failing nunit tests)
19954
19955 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
19956
19957         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
19958         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
19959
19960 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
19961
19962         * Cursor.cs: Reimplemented creating cursor bitmaps without using
19963           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
19964           This fixes #77218
19965         * XplatUIWin32.cs: 
19966           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
19967             constructor creates images that can't be saved. Part of the fix
19968             for #76103
19969           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
19970           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
19971             bug fix for handling window state in forms properly)
19972
19973 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
19974
19975         * ThemeGtk.cs: Simplify ScrollBar drawing
19976
19977 2006-01-18  Jackson Harper  <jackson@ximian.com>
19978
19979         * Splitter.cs: Set the default dock style for the splitter control
19980         in the constructor.
19981
19982 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
19983
19984         * ThemeGtk.cs: Corrected StateType and ShadowType for
19985           gtk_paint_box
19986
19987 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
19988
19989         * Control.cs: Make use of Theme.DoubleBufferingSupported
19990         * ThemeGtk.cs:
19991           - Added drawing for flat style buttons
19992           - Added ScrollBar drawing
19993
19994 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
19995
19996         * ThemeClearlooks.cs: Removed some unneeded code.
19997         * ThemeGtk.cs: First part of ThemeGtk enhancements.
19998
19999 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
20000
20001         * LinkLabel.cs: We need to update the hover drawing when
20002           leaving the control as well.
20003
20004 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
20005
20006         * DataGrid.cs: Clicking on non empty areas in the columns
20007            area was giving an exception
20008
20009 2006-01-17  Jackson Harper  <jackson@ximian.com>
20010
20011         * ThemeWin32Classic.cs:
20012         * ListView.cs: Do not draw/clip the headers when the header style
20013         is None.
20014
20015 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
20016
20017         * DataGrid.cs: Fixes 77260
20018         
20019 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
20020
20021         * DataGrid.cs: Clicking on a column on a empty grid was giving
20022           an exception
20023
20024 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
20025
20026         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
20027           or any keypress will crash the grid.
20028
20029 2006-01-17  Mike Kestner  <mkestner@novell.com>
20030
20031         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
20032         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
20033         invisible/previously-visible items.
20034         [Fixes #76909]
20035
20036 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
20037
20038         * ThemeClearlooks.cs:
20039         - Added CL_Draw_Button method; now other theme controls that are 
20040           not derived from button or do not have a button can draw buttons
20041           too
20042         - Updated ComboBox drawing
20043         - Beautified RadioButton drawing
20044         - Corrected drawing of bottom and left tabs
20045         - Beautified DateTimePicker and MonthCalendar
20046         - Added CPDrawButton and CPDrawRadioButton
20047
20048 2006-01-16  Jackson Harper  <jackson@ximian.com>
20049
20050         * ComboBox.cs: Set the initial value of the scrollbar to the
20051         current index. Reduce the numbers of refreshs and IndexOfs called.
20052
20053 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
20054
20055         * FileDialog.cs: When the file listview is focused hitting the
20056           backspace key moves the fileview to the parent directory
20057
20058 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
20059
20060         * Form.cs: 
20061           - Added RecreateHandle call when changing taskbar visibility to 
20062             trigger reparenting in Win32 driver (Fixes #75719)
20063           - If a window has minimize or maximize buttons, it cannot have
20064             a help button
20065         * XplatUIWin32.cs:
20066           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
20067             the toplevel form with FosterParent (A toolwindow not on the
20068             taskbar) (Fixes #75719)
20069           - Made FosterParent a toolwindow
20070
20071 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
20072
20073         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
20074
20075 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
20076
20077         * ToolTip.cs: If SetToolTip is called from a control and the mouse
20078           is currently over that control, make sure that tooltip_window.Text
20079           gets updated
20080
20081 2006-01-13  Mike Kestner  <mkestner@novell.com>
20082
20083         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
20084
20085 2006-01-13  Jackson Harper  <jackson@ximian.com>
20086
20087         * TreeView.cs: On MS GetNodeAt never actually factors in the X
20088         value passed.  Also redraw the selected node when we recieve
20089         focus, so tabbing between trees works correctly.
20090
20091 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
20092
20093         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
20094           ~/.gconf/%gconf-tree.xml, so use
20095           .gconf/desktop/gnome/interface/%gconf.xml
20096
20097 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
20098
20099         * TextControl.cs: Draw text in gray if control is disabled
20100
20101 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
20102
20103         * TreeView.cs: Draw the focus rectangle outside the highlight, to
20104           make sure it's always visible. Fixes #76680.
20105
20106 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
20107
20108         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
20109
20110 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
20111
20112         * PageSetupDialog.cs: Added.
20113         * PrintDialog.cs: Attributes.
20114         * PrintPreviewControl.cs: Updates.
20115         * PrintPreviewDialog.cs: Updates.
20116         
20117 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20118
20119         * Control.cs: Undid my selection check fix, since it's not needed
20120         * TextBoxBase.cs:
20121           - Now considering the presence of hscroll/vscroll when sizing
20122             vscroll/hscroll respectively. Fixed bug #77077
20123           - Added Left/Up/Down/Right to IsInputKey list to prevent
20124             ContainerControl from stealing them. This fixes what I broke
20125             with my last checkin.
20126
20127 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
20128
20129         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
20130           I finally understand how the property can be set without a setter :-)
20131
20132 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20133
20134         * Application.cs:
20135           - Switched RunLoop to use static Message.Create to create a 
20136             Message object
20137           - Added PreProcessMessage call in runloop for keyboard events; this
20138             is part of the fix for #77219, I overlooked this originally in the
20139             MSDN doc for PreProcessMessage
20140         * Control.cs:
20141           - Removed call to PreProcessMessage from handling of keyboard 
20142             messages; it's supposed to be done in the message pump
20143           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
20144             per MSDN documentation.
20145           - IsInputChar: All chars are input chars by default; removed the 
20146             parent calling chain, MS does not document that
20147           - PreProcessMessage: If IsInputChar is true, we want to return false
20148             to allow dispatching of the message
20149           - When selecting the next control, now also check that we're not
20150             selecting ourselves again and therefore return a false positive.
20151         * TextBoxBase.cs:
20152           - Tried to match return values for IsInputKey and ProcessDialogKey
20153             to what MS returns; moved processing of our special keys outside
20154             ProcessDialogKey since MS does not seem to return true on those.
20155           - Moved code that previously was in ProcessDialogKey into new private
20156             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
20157           - Reworked handling of WM_CHAR to not have to duplicate code from
20158             Control.cs anymore, instead we simply call down to base.
20159            
20160 2006-01-12  Jackson Harper  <jackson@ximian.com>
20161
20162         * ComboBox.cs: We always need to refresh the text area when
20163         EndUpdate is called. Fixes the combobox in the file dialog.
20164         * Control.cs: Don't create the creator_thread until the controls
20165         handle is created.  Also in InvokeRequired we check if the
20166         creator_thread is null. This gives the effect of InvokeRequired
20167         returning true if the controls handle is not created yet, and
20168         matches MS.
20169
20170 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20171
20172         * XplatUI.cs:
20173           - Added StartLoop() driver method. This is used to allow drivers to
20174             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
20175             loop for a particular thread
20176           - Added EndLoop() driver method. This is called once the message
20177             pump for the thread is shut down
20178           - Added SupportsTransparency method to allow the driver to indicate
20179             opacity support for windows
20180         * Form.cs:
20181           - Removed TODO attribute, completed AllowTransparency property
20182           - Added documented logic to Opacity
20183         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
20184           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
20185           versions of CompatibleTextRendering
20186         * X11Structs.cs: Added opacity atom to our atom enumeration
20187         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
20188           of a form might be set before it's reparented by the WM, and we need
20189           the opacity value without calling up to Form)
20190         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
20191           SupportsTransparency() driver methods
20192         * Application.cs: Now calling StartLoop and EndLoop driver methods
20193         * XplatUIX11.cs:
20194           - Added opacity atom registration
20195           - Added StartLoop()/EndLoop() methods. They're empty right now but
20196             will need to get implemented when we switch to a per-thread queue
20197           - Implemented SupportsTransparency() method
20198           - Implemented SetWindowTransparency() method
20199           - Added support for setting the opacity value when a window is
20200             reparented (since the opacity needs to be set on the WM frame)
20201         * XplatUIOSX.cs, XplatUIWin32.cs:
20202           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
20203
20204 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
20205
20206         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
20207
20208 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
20209
20210         * FileDialog.cs: Added ToolTip for MWFFileView
20211         * MimeIcon.cs: Rewrote GnomeHandler.
20212           - Get currently used gnome icon theme from
20213             ($HOME)/.gconf/%gconf-tree.xml
20214           - Make use of inherited icon themes
20215           - Support SVG icon themes like Tango via librsvg
20216
20217 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20218
20219         Revert's Jackson's revert which broke 2.0 builds.   Fix both
20220         builds. 
20221         
20222         * Application.cs: Move the use_compatible_text_rendering outside
20223         the NET_2_0 define.  If we ever need to use the
20224         use_compatible_text_rendering on the individual controls they will
20225         access the variable from the common shared code paths.
20226
20227 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20228
20229         * XplatUI.cs:
20230           - Added more granular debug options
20231           - Added method to print both window text and id
20232           - Switched debug output to use new Window() debug method
20233           - Added IsEnabled() driver method
20234           - Added EnableWindow() driver method
20235         * Form.cs:
20236           - Removed end_modal; no longer needed, new loop handles termination
20237             via 'closing' variable
20238           - If form is modal, setting DialogResult will now initiate loop
20239             termination via 'closing' variable
20240           - Added support for is_enabled/WS_DISABLED to CreateParams
20241           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
20242             does all the work
20243           - Removed code that's now in RunLoop from ShowDialog()
20244           - Added various documented sanity checks to ShowDialog()
20245           - Added handling of WM_DESTROY message; we set 'closing' on getting
20246             the message to indicate the message pump to terminate
20247           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
20248             send by the Application.ExitThread method. (We send the message
20249             to destroy the window after all other events have been
20250             processed through the queue, instead of destroying the handle 
20251             directly)
20252           - Moved code from Close() method to WM_CLOSE handler; added logic
20253             to only send close-related events if the form is not displayed
20254             modal
20255         * Splitter.cs (..ctor): Fixed typo in resource name
20256         * Control.cs:
20257           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
20258             brush now
20259           - set_Cursor: Now only setting calling into XplatUI if the handle for
20260             the control is already created; this avoids implict handle creation
20261             or crashes if it's not created
20262           - set_Enabled: Now setting the enabled state via the new driver method
20263             instead of just tracking it
20264           - CreateParams: Added logic to set WS_DISABLED based on enabled state
20265           - CreateControl: Reordered event firing and method calls to more
20266             closely fire events in the order MS does. Now setting the
20267             enabled state in the driver when creating the control.
20268           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
20269             match MS order
20270         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
20271           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
20272         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
20273         * Hwnd.cs:
20274           - Added tracking of window enabled state (get_Enabled/set_Enabled)
20275           - Added EnabledHwnd property to easily allow a driver to find the
20276             handle of the first enabled window in the parent chain (this is
20277             used by drivers to pass up input events of disabled windows)
20278         * XplatUIDriver.cs: Added IsEnabled() method
20279         * Application.cs:
20280           - Removed crude and obsolete exiting tracking variable
20281           - Removed internal ModalRun(); replaced by RunLoop()
20282           - Implemented private CloseForms() method to allow closing all 
20283             windows owned by a particular (or all) threads
20284           - Exit() now properly closes all windows without forcing the message
20285             pump to quit
20286           - Removed obsolete InternalExit() method
20287           - Changed Run() methods to use new RunLoop() message pump
20288           - Implemented new RunLoop() method for both modal and non-modal forms
20289         * CommonDialog.cs:
20290           - get_CreateParams: Added setting of WS_DISABLED
20291           - Simplified ShowDialog(); now all the work is done in RunLoop(),
20292             invoked via Form.ShowDialog()
20293         * NativeWindow.cs: We don't remove the window from the collection when
20294           the handle is destroyed; there might still be messages for it in the
20295           queue (mainly the resulting WM_DESTROY); instead it will be removed
20296           when Control calls InvalidateHandle in the WM_DESTROY handler
20297         * XplatUIX11.cs:
20298           - CreateWindow: Added logic to handle the WS_DISABLED window style
20299           - EnableWindow: Implemented based on Hwnd.Enabled
20300           - GetMessage: Reset PostQuitState so the method can be called again
20301           - Implemented support for disabled windows (passing messages to the
20302             first enabled parent) in handling all input messages
20303           - Added optimizations for handling Expose events
20304           - Implemeted new driver method IsEnabled()
20305           - Now always resetting paint pending tracking vars when we start paint
20306           - Re-implemented UpdateWindow via just sending a WM_PAINT message
20307         * XplatUIOSX.cs: Added IsEnabled method stub
20308         * XplatUIWin32.cs: Implemented new IsEnabled() method
20309
20310 2006-01-11  Jackson Harper  <jackson@ximian.com>
20311
20312         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
20313         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
20314         variables a little.
20315         * ColorDialog.cs: Clear out the old form before adding the new
20316         panel.  
20317
20318 2006-01-11  Jackson Harper  <jackson@ximian.com>
20319
20320         * X11Dnd.cs: Make sure to add all the text formats when adding
20321         strings to the data object.
20322         * TreeNodeCollection.cs: When adding to a sorted tree we need to
20323         do some redrawing too.  Also change the UpdateNode to an
20324         UpdateBelow so the newly added node gets painted.
20325         
20326 2006-01-11  Miguel de Icaza  <miguel@novell.com>
20327
20328         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
20329         LinkLabel.cs, PropertyGrid.cs: Implement the
20330         UseCompatibleTextRendering property for 2.x
20331
20332         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
20333
20334 2006-01-11  Jackson Harper  <jackson@ximian.com>
20335
20336         * TreeView.cs: Use the property for setting the selected node so
20337         the correct events get raised.
20338         * TreeNode.cs: Update the tree when the fore/back colours of a
20339         node are set.
20340
20341 2006-01-10  Jackson Harper  <jackson@ximian.com>
20342
20343         * TreeView.cs: Allow setting SelectedNode to null.
20344
20345 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20346
20347         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
20348
20349 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20350
20351         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
20352
20353 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20354
20355         * PrintDialog.cs: Added attributes and set default property values.
20356
20357 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20358
20359         * PrintControllerWithStatusDialog.cs: 
20360         Added PrintControllerWithStatusDialog.
20361
20362 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20363
20364         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
20365         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
20366
20367 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20368
20369         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
20370
20371 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
20372
20373         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
20374         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
20375
20376 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
20377
20378         * MimeIcon.cs: Added internal class SVGUtil.
20379
20380 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
20381
20382         * FileDialog.cs: Don't crash if there are two files with the
20383           same name but different locations.
20384
20385 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
20386
20387         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
20388         dates across multiple month grids. Used to not highlight entire 
20389         month, but does now.
20390         
20391 2006-01-06  Jackson Harper  <jackson@ximian.com>
20392
20393         * MonthCalendar.cs: Removed DoEvents call to prevent a running
20394         message loop. Change timer intervals to numbers that seem more
20395         natural.
20396
20397 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
20398
20399         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
20400           object for location info since screen object is now implemented.
20401
20402 2006-01-05  Jackson Harper  <jackson@ximian.com>
20403
20404         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
20405         * AsyncMethodResult.cs: We no longer use a WeakReference for the
20406         AsyncMethodResult, this is because we ALWAYS want the
20407         ManualResetEvent to get set.
20408         * Control.cs: When disposing use an async invoke to call shutdown
20409         code, so that thigns don't block on the finalizer thread.  Also
20410         check if we even have a message loop before trying to send
20411         messages, if we don't then don't bother sending messages.
20412         - No more weak references for async methods
20413         * XplatUIDriver.cs: No more weak references for async methods.
20414
20415 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
20416
20417         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
20418           returns two FontFamily with the same name
20419
20420 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
20421
20422         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
20423           drawing disabled text. Instead using the ColorGrayText color
20424
20425 2006-01-04  Jackson Harper  <jackson@ximian.com>
20426
20427         * TreeNode.cs: redraw the node when its image index is changed.
20428
20429 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
20430
20431         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
20432           time I checked there are no others like it.
20433
20434 2006-01-04  Jackson Harper  <jackson@ximian.com>
20435
20436         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
20437         this gives the behavoir I was looking for.
20438         * Control.cs: Special case Invoking EventHandlers, this matches MS
20439         and fixes part of bug #76326.
20440
20441 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
20442
20443         * ThemeClearlooks.cs, FileDialog.cs:
20444           - Reflect the latest Theme class changes
20445           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
20446             with DateTime
20447             
20448 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
20449
20450         * Theme.cs: Cache UI resource images and resize them if needed
20451
20452 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
20453
20454         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
20455           is called. This fixes the crash in Nexxia when setting the font
20456           attributes in the chat. [However, RTF needs a look-over to make sure
20457           that all SelectionXXX methods handle the special case that selection
20458           is empty and therefore the change must be applied to all text starting
20459           at the cursor/selection start]
20460
20461 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
20462
20463         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
20464           XplatUIOSX.cs: Added SendMessage and PostMessage methods
20465         * X11Keyboard.cs: Switched to new way of calling PostMessage
20466
20467 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
20468
20469         * Theme.cs: Added theme interface for images to allow the theme to
20470           control what images are used for things like FileDialog, MessageBox
20471           icons, etc.
20472         * MessageBox.cs: Now uses the new Theme icon/image interfaces
20473
20474 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
20475
20476         * FileDialog.cs:
20477           - Removed some dead code
20478           - Opening a recently used file does work now
20479           - Small UI enhancements
20480           - Refactoring
20481
20482 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
20483
20484         * FileDialog.cs: Forgot too add __MonoCS__
20485
20486 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
20487
20488         * FileDialog.cs: We are able to read recently used files now let's
20489           go on and write them.
20490
20491 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
20492
20493         * FileDialog.cs: Breathe some life into "last open"/"recently used"
20494           button
20495         * MimeIcon.cs: Do a check for the top level media type also
20496
20497 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
20498
20499         * ThemeClearlooks.cs:
20500           - Added CPDrawStringDisabled
20501           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
20502             some chars if the text doesn't fit into text_rect
20503           - DrawListViewItem: If View = View.LargeIcon center the image;
20504             rewrote the drawing of ListViewItem.Text if View = 
20505             View.LargeIcon
20506
20507 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
20508
20509         * MimeIcon.cs: Use default KDE icon theme if there is no
20510           "48x48" directory for the current icon theme, fixes #77114
20511         * Mime.cs: Disable not working and actually not used code. 
20512         * ThemeWin32Classic.cs:
20513           - Replace "new SolidBrush" in GetControlBackBrush and
20514             GetControlForeBrush with ResPool.GetSolidBrush
20515           - Changed DrawListViewItem from private to protected virtual
20516         * FileDialog.cs:
20517           - Added form.MaximizeBox = true
20518           - Don't throw an exception if there is a broken symbolic link
20519
20520 2005-12-23  Jackson Harper  <jackson@ximian.com>
20521
20522         * TabControl.cs: Give the panels focus, keyboard navigation is
20523         fixed so this works correctly now.
20524         - We need these key events also.
20525         * ToolBar.cs: Remove some of the poor mans double buffering.
20526         
20527 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
20528
20529         * ComboBox.cs: The internal TextBox now returns the focus.
20530
20531 2005-12-23  Jackson Harper  <jackson@ximian.com>
20532
20533         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
20534
20535 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
20536
20537         * Control.cs: Removed debug code
20538         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
20539           implicit children
20540
20541 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
20542
20543         * Control.cs: When creating the control, update the Z-order after
20544           all it's children are created, too. (Fixes nexxia not showing
20545           picturebox bug)
20546
20547 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
20548
20549         * Control.cs: Do not update the anchoring distances if layout is
20550           suspended, instead do it once layout is resumed
20551
20552 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
20553
20554         * Control.cs: 
20555           - After many hours of debugging, for both Jackson and
20556             myself, it turns out that it helps to set the parent of a control
20557             if you want to actually see it onscreen. In the spirit of that
20558             discovery, we're now setting the parent of the control and
20559             it's children when the control's handle is created. This fix
20560             will make Lutz Roeder's Reflector run happily. 
20561           - now just creating the handle instead of the whole control when
20562             getting a graphics context for the control.
20563
20564 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
20565
20566         * ScrollableControl.cs: When calculating the canvas, don't consider
20567           the scrollbar widths. Instead, predict if horizontal scrollbar
20568           will affect canvas when deciding on vertical display and vice versa.
20569
20570 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
20571
20572         * RichTextBox.cs: Set default RTF font for documents that don't
20573           have a font table (Fixes #77076)
20574
20575 2005-12-22  Jackson Harper  <jackson@ximian.com>
20576
20577         * TextBoxBase.cs: It's difficult to do, but you can have an empty
20578         clipboard. This prevents a NullRef in that case.
20579         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
20580         clipboard. PRIMARY is for the currently selected text only. (We
20581         should implement PRIMARY at some point.
20582
20583 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
20584
20585         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
20586           a Unicode function with a structure that was defined in Ansi way.
20587           This fixes #76942.
20588
20589 2005-12-21  Jackson Harper  <jackson@ximian.com>
20590
20591         * StatusBar.cs: Statusbar handles its fore/back colours on it's
20592         on. Because thats how it rolls. (and this avoids it using ambient
20593         colours).
20594         * ThemeWin32Classic.cs: Use the proper back color for filling.
20595         * Menu.cs: Use the system menu bar color for drawing menu
20596         bars. Using the window back color will bring ambient colours into
20597         the picture.
20598
20599 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
20600
20601         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
20602           Bitmaps were created and not disposed.
20603
20604 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
20605
20606         * Control.cs (CreateControl): Don't do anything if the control is
20607           already created, otherwise we'd fire the OnCreated event more than
20608           once
20609
20610 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
20611
20612         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
20613           will always match. Instead return -1. Fixes #76464.
20614
20615 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
20616
20617         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
20618           neither the beginning nor the end of the line (Fixes bug #76479)
20619
20620 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
20621
20622         * Control.cs:
20623           - ControlNativeWindow.ControlFromHandle(): Now handling situation
20624             where handle is invalid
20625           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
20626             instead of slower linear search
20627         * NativeWindow.cs: Don't remove the window from the hashtable until
20628           after the driver has destroyed it (since the driver might use
20629           Control.FromHandle to lookup the control object
20630         * Hwnd.cs: Added DestroyPending property to track if a window is 
20631           already destroyed as far as the driver is concerned and only hasn't
20632           yet notified the control
20633         * XplatUIX11.cs:
20634           - Activate(): Check if the window is still valid before using the 
20635             handle
20636           - Implemented DestroyChildWindow() method to mark child windows as
20637             destroyed when a window is destroyed. This prevents situations 
20638             where we might call an X method based on queued events for a
20639             window that already has been destroyed but we haven't yet pulled
20640             the destroy method from the queue.
20641           - Added a call to the new DestroyChildWindow() method to the drivers
20642             DestroyWindow code. Also now marking the destroyed window itself
20643             as pending
20644
20645 2005-12-20  Jackson Harper  <jackson@ximian.com>
20646
20647         * StatusBar.cs:
20648         * StatusBarPanel.cs: Don't calculate panel sizes on draw
20649         anymore. Just do them when needed, also track the rects of panels
20650         so that we can optimize refreshing more in the future.
20651
20652 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
20653
20654         * ColorDialog.cs: Fixed focus drawing in small color controls
20655
20656 2005-12-19  Jackson Harper  <jackson@ximian.com>
20657
20658         * InternalWindowManager.cs:
20659         * MdiWindowManager.cs: Cleanup some coordinate system changes so
20660         moving windows works properly.
20661
20662 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
20663
20664         * Control.cs: 
20665           - Removed call to InitLayout() from SetBoundsCore(); doc says
20666             it's only called when a control is added to a container
20667           - Split InitLayout logic, moved to separate UpdateDistances() method
20668             since we need to perform those calculations more often than just
20669             when adding the control to a container. (Needed to fix #77022)
20670           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
20671           - Reduced the OnBindingContextChanged events count, don't send them
20672             unless the control is created, we still aren't totally matching
20673             MS, but I can't quite figure out some of their rules
20674
20675 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
20676
20677         * ThemeClearlooks.cs: Corrected distance between ProgressBar
20678           stripes
20679
20680 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
20681
20682         * ThemeClearlooks.cs:
20683           - Updated ProgressBar drawing
20684           - Corrected drawing of ScrollBars and scroll buttons
20685           - Some temporary fixes for minor pixel artefacts
20686
20687 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
20688
20689         * Control.cs:
20690           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
20691             cause events to be sent in the same order as MS does.
20692           - Added ChangeParent() method to trigger various OnXXXChanged events
20693             that need to be fired when a parent changes (This is a reworking
20694             of the patch from r54254, with the X11 errors fixed)
20695           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
20696             since on MS we get OnLayoutChanged events when calling Clear()
20697           - Changed Enabled property to consider parent state as well, if a
20698             parent is not enabled, the control will not be either
20699           - Changed Parent property to simply call Controls.Add() since that
20700             now does all the work required, this way we avoid code duplication
20701           - Threw in a few OnBindingsContextChanged calls to try and match
20702             when MS sends them. We seem to send a few too many, though.
20703           - Added call to CreateControl when adding the control to a parent.
20704             We were never calling CreateControl. Still needs some work, in
20705             some places we treat HandleCreated and ControlCreated as equal, 
20706             which is wrong
20707           - Removed obsolete commented out code from UpdateZOrder()
20708
20709 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
20710
20711         * ThemeClearlooks.cs: Updated TrackBar drawing.
20712
20713 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
20714
20715         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
20716
20717 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
20718
20719         * FileDialog.cs: Add the Help button and the open readonly
20720           checkbox only if needed
20721
20722 2005-12-16  Jackson Harper  <jackson@ximian.com>
20723
20724         * Control.cs: Make sure we have an active menu before trying to
20725         process commands on it. Prevents menu-less forms from crashing
20726         when Alt is pressed.
20727         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
20728         Dieter Bremes.
20729         * RichTextBox.cs: Expand statement to help out gmcs and fix the
20730         2.0 build.
20731
20732 2005-12-16  Jackson Harper  <jackson@ximian.com>
20733
20734         * InternalWindowManager.cs: Don't translate tool windows screen
20735         coordinates. This fixes windows 'bouncing' around when being moved.
20736
20737 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
20738
20739         * TextBoxBase.cs:
20740           - MaxLength now treats 2^31-1 equal to unlimited length (this is
20741             not quite MS compatible, MS uses that number only for single line
20742             and 2^32-1 for multi-line, but I figure it won't hurt keeping
20743             the limit at 2GB)
20744           - Now enforcing the MaxLength limit when entering characters
20745           - Added argument to internal Paste() method to track if it's called
20746             from programatically or via keyboard, since keyboard driven pastes
20747             need to enforce max-length
20748           - Added logic to Paste to only paste as many chars as MaxLength 
20749             allows
20750         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
20751         * TextControl.cs:
20752           - Added Length property to return number of characters in document
20753           - Added private CharCount property which only tracks actual chars
20754             in the document (no linefeeds) and fires event when CharCount
20755             changes
20756           - Added tracking of character count to all methods that alter it
20757           - Added LengthChanged event to allow applications to subscribe
20758             to any changes to the document
20759
20760 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
20761
20762         * TextBox.cs: 
20763           - Removed local password_char field (moved to TextBoxBase)
20764           - Now setting the document's password var when password is
20765             set
20766         * TextBoxBase.cs:
20767           - Added password_char field (needed here so MultiLine can
20768             access it)
20769           - Added logic to MultiLine property setter to set the document's
20770             variable when password display is allowed
20771           - Removed debug code and made some debug code conditional
20772         * TextControl.cs:
20773           - Added RecalculatePasswordLine() method to handle special password
20774             char only lines
20775           - Added PasswordChar property, also added related tracking vars
20776           - Draw() method now uses local text var for grabbing text to draw,
20777             this var is set to line.text unless we're doing password display,
20778             then it is set to the pre-generated all-password-chars line
20779           - Added calling RecalculatePasswordLine() method for password lines
20780
20781 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
20782
20783         * Hwnd.cs: 
20784           - Added Reparented property to allow tracking of Window Manager
20785             reparenting actions (which affect X/Y calculations of toplevel 
20786             windows)
20787           - Made ToString() print window handles in hex
20788         * XplatUIX11.cs:
20789           - AddConfigureNotify(): Now uses reparented state off Hwnd to
20790             determine if X/Y needs offsetting
20791           - AddConfigureNotify(): Fixed offset calculations
20792           - Now adds ReparentNotify messages into the queue
20793           - Now processes ReparentNotify messages and causes a 
20794             WM_WINDOWPOSCHANGED message to be sent upstream if a window
20795             is reparented (as most likely it's X/Y coordinates are changed
20796             due to that)
20797
20798 2005-12-14  Jackson Harper  <jackson@ximian.com>
20799
20800         * XplatUIX11.cs: Tool windows still need to respek focus.
20801
20802 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
20803
20804         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
20805           have a working release
20806
20807 2005-12-13  Jackson Harper  <jackson@ximian.com>
20808
20809         * Form.cs: Update styles after setting the border style regardless
20810         of whether or not the window is using a window manager.
20811
20812 2005-12-13  Jackson Harper  <jackson@ximian.com>
20813
20814         * Form.cs: We now hook into an internal window manager instead of just an
20815         MDI subsystem, this is so we can have properly behaving tool windows.
20816         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
20817         * InternalWindowManager.cs: New internal class that acts as a
20818         window manager for tool windows and as a base for mdi windows.
20819         * MdiWindowManager.cs: New class that acts as a window manager for
20820         mdi windows.
20821
20822 2005-12-12  Jackson Harper  <jackson@ximian.com>
20823
20824         * Control.cs: Updates so we match behavoir for for implicit
20825         controls. Fixes explosions in MDI.
20826
20827 2005-12-12  Jackson Harper  <jackson@ximian.com>
20828
20829         * Control.cs: Implement Invalidate (Region).
20830
20831 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
20832
20833         * Control.cs: 
20834           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
20835             the same events as MS does. MS fires events for each property 
20836             except, for unknown reasons, Cursor, when the control is reparented. 
20837             I can't seem to totally match add/remove since MS also fires some 
20838             VisibleChanged events, which makes no sense. Consolidated the
20839             parenting code into a separate method so it can be called from
20840             both Add and Remove. set_Parent no longer needs any special logic
20841             as it calls the parent's add method which implicitly fires
20842             all events
20843           - Removed some obsolete code and debug output
20844           - Enabled state is inherited from parents, if this is enabled
20845
20846 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
20847
20848         * Form.cs: Removed commented out code
20849
20850 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
20851
20852         * Control.cs:
20853           - Added internal version of Invoke, with additional argument 
20854             indicating if we're calling it from a Dispose() handler. That
20855             way we can avoid BeginInvoke throwing an exception if we're
20856             calling for an already destroyed window.
20857           - Added a dispose argument to BeginInvokeInternal, and made the
20858             check if a valid window handle chain exists conditional on
20859             it not being a dispose call
20860           - Removed code in DestroyHandle to destroy our children. Since we
20861             now handle the WM_DESTROY message we will catch all our children
20862             being destroyed.
20863           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
20864         * Form.cs:
20865           - Added a field to track the application context of the form.
20866           - No need to set closing variable as response to WM_CLOSE, instead
20867             we destroy the window. We also call PostQuitMessage if the form
20868             has an application context (which makes it the main app form,
20869             which, when closed terminates the app)
20870         * XplatUI.cs:
20871           - Dropped Exit() method, it's naming was confusing
20872           - Added PostQuitMessage() which causes GetMessage to return false
20873             once the message queue is empty
20874         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
20875           PostQuitMessage()
20876         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
20877           no longer a valid XplatUI method, but left it in since it's used
20878           internally. Added empty PostQuitMessage() method.
20879         * MenuAPI.cs: Replaced call to Exit() with call to
20880           PostQuitMessage, even though this is probably no longer needed.
20881         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
20882         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
20883         * Application.cs:
20884           - Replaced call to XplatUI.Exit() with PostQuitMessage()
20885           - Removed old debug code that would call XplatUI for exception
20886             display, enabled standard exception handling (Still not enabled
20887             though, until NativeWindow's ExternalExceptionHandler define
20888             is removed
20889         * NativeWindow.cs:
20890           - Added internal method to allow control to update NativeWindow
20891             after a window has been destroyed
20892           - Added handling of already destroyed windows when calling i
20893             DestroyWindow
20894           - Added removal of handle from list on ReleaseHandle
20895         * XplatUIX11.cs:
20896           - Dropped GetMessageResult var and related code
20897           - Added PostQuitState to field to track if PostQuitMessage has been
20898             called
20899           - Dropped Exit() method
20900           - Added PostQuitMessage() method
20901           - GetMessage now will return false if PostQuitState is set and no
20902             more messages are in the queue.
20903           - Expose handler will no longer generate WM_PAINT messages if we are
20904             in PostQuitState since it's very likely any windows have already
20905             been destroyed, and since Hwnd won't get updated until we have
20906             processed the DestroyNotify we'd be causing X errors.
20907         
20908 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20909
20910         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
20911           Thanks to Mike for pointing out the err of my ways.
20912
20913 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20914
20915         * Control.cs(PreProcessMessage): Moved menu handling back, but
20916           after all other key handling, to match MS (who handles Menu in
20917           DefWndProc)
20918         * Menu.cs (WndProc): Removed my brainfart
20919
20920 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20921
20922         * Control.cs(PreProcessMessage): Removed special menu handling 
20923         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
20924
20925 2005-12-07  Mike Kestner  <mkestner@novell.com>
20926
20927         * Control.cs : special case SYSKEYUP so that we can adjust keynav
20928         state according in tracker.
20929         * Menu.cs : promote tracker field to base class and provide a tracker
20930         lookup capability.  Add/Remove shortcuts dynamically if the top menu
20931         has a tracker. Unparent items that are removed from the collection.
20932         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
20933         * Theme*.cs: add always_show_hotkeys field to support configurability
20934         of mnemonic display.  win32 doesn't show mnemonics until Alt is
20935         pressed.
20936
20937 2005-12-07  Jackson Harper  <jackson@ximian.com>
20938
20939         * MdiChildContext.cs: Use Control.ResetCursor.
20940         * Control.cs: ResetCursor needs to set the property so that the
20941         correct XplatUI call gets made.
20942
20943 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20944
20945         * Control.cs: More fixes to make our key events match MS. We
20946           were not setting the modifier state on KeyData, and we were
20947           not generating any events when Alt was pressed with a key
20948           since handling of WM_SYSxxx was missing for the OnKey methods.
20949
20950 2005-12-07  Jackson Harper  <jackson@ximian.com>
20951
20952         * MdiChildContext.cs: reenable the sizing code.
20953         - When the mouse leaves a window reset its cursor.
20954
20955 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
20956
20957         * ThemeClearlooks.cs: Reflect latest Hwnd changes
20958
20959 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20960
20961         * Hwnd.cs: Now using the theme 3d bordersize to calculate
20962           widths of Fixed3D borders
20963
20964 2005-12-07  Jackson Harper  <jackson@ximian.com>
20965
20966         * MdiClient.cs: Fix warnings. Earn Mike's love.
20967
20968 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
20969
20970         * ThemeClearlooks.cs:
20971           - Adjusted mouse over button color
20972           - Added first parts of CheckBox drawing
20973           - Added correct color for selected text background
20974           - Fixed ComboBox drawing
20975           - Added CPDrawBorder3D and CPDrawBorder
20976
20977 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
20978
20979         * XplatUIX11.cs: Added call to XBell for AudibleAlert
20980
20981 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
20982
20983         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
20984           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
20985           alert users via sound. We could add an enum arg with different
20986           types of alerts in the future
20987
20988 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
20989
20990         * Control.cs: Fix behaviour problems pointed out by Mike
20991
20992 2005-12-05  Mike Kestner  <mkestner@novell.com>
20993
20994         * StatusBarPanel.cs: add Invalidate method and hook it into all the
20995         prop setters.  Calls parent.Refresh for now, but could be maybe be
20996         optimized with an internal method on StatusBar at some point.
20997         [Fixes #76513]
20998
20999 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
21000
21001         * RichTextBox.cs: Implemented get_SelectionColor
21002
21003 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
21004
21005         * ThemeClearlooks.cs:
21006           - Removed dead code
21007           - Draw black button border only if button is Form.AcceptButton
21008           - Draw correct button color for pressed RadioButton if the mouse 
21009             has entered the button
21010           - Updated ProgressBar drawing!
21011           - Updated CPDrawSizeGrip drawing
21012           - Updated StatusBarPanel drawing
21013
21014 2005-12-05  Mike Kestner  <mkestner@novell.com>
21015
21016         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
21017         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
21018
21019 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
21020
21021         * ThemeClearlooks.cs: Initial check-in, activate with
21022           export MONO_THEME=clearlooks
21023         * ThemeEngine.cs: Added ThemeClearlooks
21024
21025 2005-12-03  Mike Kestner  <mkestner@novell.com>
21026
21027         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
21028         [Fixes #76897]
21029
21030 2005-12-02  Jackson Harper  <jackson@ximian.com>
21031
21032         * Form.cs: If the child form has no menu the default main menu is
21033         used as the active menu.
21034
21035 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
21036
21037         * ListBox.cs: Check if any items exist before trying to resolve 
21038           coordinates into items
21039
21040 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
21041
21042         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
21043           as the second color for the background hatch
21044
21045 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
21046
21047         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
21048         * RichTextBox.cs: FormatText position arguments are 1-based, now making
21049           sure that what we pass to FormatText is always 1-based. Fixes #76885
21050
21051 2005-11-29  Miguel de Icaza  <miguel@novell.com>
21052
21053         * NumericUpDown.cs (EndInit): When we are done initializing,
21054         reflect any updates on the UI.
21055
21056 2005-12-02  Jackson Harper  <jackson@ximian.com>
21057
21058         * ImplicitHScrollBar.cs:
21059         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
21060         their container controls.
21061         * TreeView.cs: Use the new implicit scrollbars.
21062
21063 2005-12-02  Jackson Harper  <jackson@ximian.com>
21064
21065         * TreeView.cs: Make top_node internal so the TreeNodeCollections
21066         can play with it.
21067         * TreeNodeCollection.cs: If we remove the topnode we need to
21068         update topnode to the next node in line.
21069         - When clearing nodes go through the same process as removing
21070         them, so they get depareneted and checked if they are top node.
21071
21072 2005-12-01  Jackson Harper  <jackson@ximian.com>
21073
21074         * TreeView.cs: When imagelists are used the image area is
21075         selectable as well as the text.
21076         - If there are no selected nodes select the first one.
21077         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
21078         so don't do it more then we need to.
21079
21080 2005-12-01  Jackson Harper  <jackson@ximian.com>
21081
21082         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
21083         that arrows can be scaled.
21084
21085 2005-12-01  Jackson Harper  <jackson@ximian.com>
21086
21087         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
21088         fail. Patch by Dieter Bremes
21089
21090 2005-11-30  Jackson Harper  <jackson@ximian.com>
21091
21092         * Form.cs: Property is 2.0 only
21093         * PrintDialog.cs: Signature fix.
21094
21095 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
21096
21097         * TextControl.cs: 
21098           - No longer artificially moves text 2 pixels down (now that we have
21099             borders this is no longer needed)
21100           - Added calcs for left, hanging and right indent
21101
21102 2005-11-23  Mike Kestner  <mkestner@novell.com>
21103
21104         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
21105
21106 2005-11-30  Jackson Harper  <jackson@ximian.com>
21107
21108         * MdiChildContext.cs: Set the cloned menus forms, as these don't
21109         get cloned as part of CloneMenu ().
21110         * Menu.cs: Make sure the parent of the items get set correctly
21111         when they are added.  And the owners are notified of the changes.
21112         * Form.cs: Create an ActiveMenu property, so that when MDI is used
21113         we can change the menu being displayed/handled by the form without
21114         changing the menu assosciated with the form.
21115         - Don't let Mdi children draw/handle menus.
21116         
21117 2005-11-30  Jackson Harper  <jackson@ximian.com>
21118
21119         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
21120         a MenuChanged event. Just to make the API a little more
21121         consistent.
21122         * MainMenu.cs:
21123         * MenuItem.cs: Use the new OnMenuChanged
21124         * MdiChildContext.cs: Handle menu merging.
21125         * Form.cs: Implement MergedMenu.
21126         
21127 2005-11-30  Jackson Harper  <jackson@ximian.com>
21128
21129         * Menu.cs: We were misusing Add. Add goes behind the specified
21130         index according to the docs, and does not replace the specified
21131         index. So I added an Insert method.
21132
21133 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
21134
21135         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
21136           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
21137           is for Jackson
21138         * RichTextBox.cs: Added calls to base for DnD events
21139
21140 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
21141
21142         * TextControl.cs:
21143           - Fixed drag-selection related crash; style fixes
21144           - Implemented undo class
21145             o Implemented method to capture document state for specified
21146               range in document tree
21147             o Implemented method to restore captured document state
21148             o Implemented cursor tracking
21149             o Implemented basic undo stack
21150           - Added undo cursor tracking to methods altering cursor location
21151           - Added undo tracking to selection deletion (still missing
21152             other text-altering hookups)
21153         * RichTextBox.cs:
21154           - Added SelectionLength property
21155           - Implemented CanPaste()
21156           - Implemented Paste()
21157           - Added missing protected methods
21158           - Fixed RTF->Document conversion; now uses font index 0 and color 
21159             index 0 as the default font for the parsed text
21160           - Fixed RTF<->Document font size translation
21161           - Fixed RTF generation, now properly handles cross-tag boundaries
21162             for single line selection
21163           - No longer always appends blank line to generated RTF
21164           - Removed TODOs
21165           - Added missing attributes
21166           - Hooked up undo-related methods
21167         * TextBoxBase.cs:
21168           - Implemented Copy()
21169           - Implemented Paste()
21170           - Implemented Cut()
21171           - Fixed caret mis-behaviour on backspace across line-boundaries
21172
21173 2005-11-29  Jackson Harper  <jackson@ximian.com>
21174
21175         * MdiClient.cs: Add a method for activating mdi children. Very
21176         basic right now. I imagine someday it might need more girth.
21177         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
21178         children windows names are added to the menu item.
21179         * ThemeWin32Classic.cs: Draw the arrow if the item is an
21180         mdilist. This happens regardless of whether or not there are any
21181         mdi windows to see in the list, and according to my tests happens
21182         before the items are even added. Also happens if there isn't even
21183         an mdi client to get windows from.
21184
21185 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
21186
21187         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
21188         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
21189
21190 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
21191
21192         * DataGridTableStyle.cs:
21193           - Create always the styles for the missing columns even if they are
21194             provided by the user (not default table style)
21195         * DataGrid.cs:
21196           - Fixes bug 76770
21197           - Fixes SetDataBinding (always re-attach source)
21198           - Fixes SetNewDataSource (only clear styles if they are not for 
21199             this source)
21200          -  Expands OnTableStylesCollectionChanged to handle style refresh 
21201             and remove properly
21202
21203 2005-11-29  Jackson Harper  <jackson@ximian.com>
21204
21205         * FileDialog.cs: Implement missing bits, remove some dead
21206         code.
21207         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
21208         creation of the panel so that the options set on the dialog are
21209         seen when the panel is created.
21210         * TreeView.cs: raise a click when items are clicked.
21211         
21212 2005-11-29  Jackson Harper  <jackson@ximian.com>
21213
21214         * MdiClient.cs: Pass some signature methods through to base.
21215
21216 2005-11-28  Jackson Harper  <jackson@ximian.com>
21217
21218         * ListView.cs: Raise the click event when items are clicked.
21219
21220 2005-11-28  Jackson Harper  <jackson@ximian.com>
21221
21222         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
21223         a nullref.
21224
21225 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
21226
21227         * ThemeNice.cs: - Removed 1 pixel bitmaps
21228           - Use SmoothingMode.AntiAlias where it makes sense
21229             (ScrollButton arrow for example)
21230           - Enhanced Button focus drawing
21231           - Fixed ComboBox drawing (no artefacts anymore, focus
21232             rectangle is back again, reduced size of ComboButton, etc.)
21233           - Fixed RadioButton focus drawing for Appearence.Button
21234           - Slight ScrollButton redesign
21235           - Some LinearGradientBrush size fixes
21236           - GroupBoxes have now rounded edges
21237           - Fixed StatusBar drawing
21238
21239 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
21240
21241         * ThemeNice.cs: - Remove dead code
21242           - use correct background colors for menus, etc.
21243           - Fake pixel drawing with 1 pixel bitmaps
21244
21245 2005-11-24  Jackson Harper  <jackson@ximian.com>
21246
21247         * MdiClient.cs: Size the scrollbars when resizing the window.
21248         - Resize the maximized windows when the client is resized
21249         * Form.cs: Make the child context available
21250         
21251 2005-11-23  Jackson Harper  <jackson@ximian.com>
21252
21253         * MdiChildContext.cs: Don't size windows if they are maximized.
21254
21255 2005-11-23  Mike Kestner  <mkestner@novell.com>
21256
21257         * ContextMenu.cs: use MenuTracker.
21258         * Control.cs: remove menu handle usage.
21259         * Form.cs: remove menu handle usage.
21260         * Hwnd.cs: remove menu handle usage.
21261         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
21262         motion and clicks to the new Tracker handlers.
21263         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
21264         and handle usage.
21265         * MenuAPI.cs: refactored to combine popup and menubar event handling.
21266         Killed the MENU and MENUITEM data types and associated collections
21267         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
21268         MenuTracker class that exposes the leftovers from the old MenuAPI
21269         static methods. Restructured Capture handling so that only one grab is
21270         done for the entire menu hierarchy instead of handing off grabs to
21271         submenus. Tracker now has an invisible control to Capture when active.
21272         * MenuItem.cs: add sizing accessors, kill Create
21273         and handle usage.
21274         * Theme.cs: remove menu handle and MENU(ITEM) usage.
21275         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
21276         MENU(ITEM). remove menu handle usage, use Menu directly.
21277         * XplatUIDriver.cs: remove menu handle usage.
21278         * XplatUIOSX.cs: remove menu handle usage.
21279         * XplatUIWin32.cs: remove menu handle usage.
21280         * XplatUIX11.cs: remove menu handle usage.
21281
21282 2005-11-22  Jackson Harper  <jackson@ximian.com>
21283
21284         * Hwnd.cs: Don't compute the menu size for
21285         DefaultClientRectangle.
21286         - Reenable menu sizes being computed for GetClienRectangle.
21287         * Form.cs: Remove comment of trechery
21288         
21289 2005-11-22  Jackson Harper  <jackson@ximian.com>
21290
21291         * Hwnd.cs: The adjustments for the menu bar are made when it is
21292         attached to the form.
21293
21294 2005-11-19  Jackson Harper  <jackson@ximian.com>
21295
21296         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
21297         (just like on windows).
21298
21299 2005-11-19  Jackson Harper  <jackson@ximian.com>
21300
21301         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
21302         use real buttons anymore because they are in non client area. The
21303         one TODO here is that I need to somehow invalidate a section of
21304         the non client area.
21305
21306 2005-11-18  Jackson Harper  <jackson@ximian.com>
21307
21308         * Control.cs: Put the enum check back in now that MDI doesnt have
21309         to use this to set border styles.
21310         * Form.cs: Only set mdi child windows borders if the handle has
21311         been created.
21312         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
21313         this directly on to the driver.
21314         - Get the move start position before adjusting for the titlebar
21315         height, this fixes the windows "skipping" when they are first
21316         moved.
21317
21318 2005-11-18  Jackson Harper  <jackson@ximian.com>
21319
21320         * XplatUIX11.cs: Just compute the mdi borders separately as they
21321         don't totally match up with normal form borders.
21322
21323 2005-11-18  Jackson Harper  <jackson@ximian.com>
21324
21325         * Control.cs: Set WS_ styles for borders, so that the driver does
21326         not have to retrieve the control instance to figure out what kind
21327         of borders it should have.
21328         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
21329         driver can know its an mdi child easily.
21330         * XplatUIX11.cs: Get the border styles and whether the window is
21331         MDI from the Styles and ExStyles params instead of having to get a
21332         control. This prevents a chicken and egg problem.       
21333
21334 2005-11-18  Jackson Harper  <jackson@ximian.com>
21335
21336         * MdiClient.cs: Fix typo so scrollbars show up correctly.
21337
21338 2005-11-18  Jackson Harper  <jackson@ximian.com>
21339
21340         * MdiClient.cs: Calculate when to add and remove scrollbars
21341         correctly.
21342         * MdiChildContext.cs: Adjust the y position to take the titlebar
21343         into account.
21344         - No height for FormBorderStyle.None
21345
21346 2005-11-18  Jackson Harper  <jackson@ximian.com>
21347
21348         * Control.cs: Allow non enum values to be used for
21349         InternalBorderStyle.  MDI does this to set a special border style.
21350         - New utility methods for converting points to/from client coords
21351         - Add the newly created control to the Controls collection before
21352         updating its style. This way UpdateStyle can walk the control
21353         heirarchy to find the control if needed.
21354         so I don't need to create a new Point object all the time.
21355         * Form.cs: Let MDI windows handle their border styles.
21356         - Set styles on MDI windows so the correct title style is derived.
21357         * MdiChildContext.cs: Move all the painting and window handling
21358         into the non client area.
21359         - Use correct sizing and put correct buttons on frames based on
21360         the FormBorderStyle.
21361         - Notify the mdi client about scrolling
21362         - Need to handle the buttons ourselves now, because they are all
21363         in non client areas and we can't add controls there.
21364         * MdiClient.cs: Halfway to scrolling, this implementation is
21365         somewhat broken though, we need to check to make sure other
21366         windows aren't causing scrolling before removing the bars. Also
21367         the bars need to be drawn on top, maybe I can switch implicit
21368         controls to be on top.
21369         * Hwnd.cs: caption_height and tool_caption_height are now
21370         properties of an hwnd, this way they can be set by the driver
21371         based on the type of window they are.  In X11 the window manager
21372         handles the decorations so caption_height is zero unless its an
21373         MDI window.
21374         - Add 3 pixel borders for MDI windows (0xFFFF).
21375         - Get rid of some code duplication, have DefaultClientRectanle
21376         just call GetClientRectangle.
21377         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
21378         Hwnd now.
21379         - Set border styles differently for mdi windows.
21380         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
21381         Hwnd now.
21382         
21383 2005-11-15  Mike Kestner  <mkestner@novell.com>
21384
21385         * Menu.cs: when adding an item to the collection, if item is already 
21386         parented, remove it from the parent.
21387
21388 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
21389
21390         * X11DesktopColors.cs: Added KDE support
21391
21392 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
21393
21394         * XplatUIWin32.cs: 
21395           - Clipboard methods now can translate Rtf format
21396           - No longer removes clipboard contents whenever a new format is added
21397             to allow placing multiple formats on the clipboard
21398         * Clipboard.cs: Clipboard now supports getting a IDataObject and
21399           will place all formats contained in it onto the clipboard. Also
21400           now cleans the clipboard before placing a new object onto it
21401         * RichTextBox.cs:
21402           - Implemented set_Rtf
21403           - Implemented set_SelectedRtf
21404           - Created InsertRTFFromStream() method to allow single code base
21405             for all properties and methods that insert RTF into document
21406           - Removed debug output
21407         * TextControl.cs:
21408           - Fixed Delete(int) to fix up line numbers
21409           - Fixed ReplaceSelection to combine start and end line
21410           - Fixed serious DeleteChars bug that would leave the document tree
21411             broken
21412           - Improved DumpTree with several logic checks to detect broken
21413             document trees
21414           - Removed debug lines
21415           - Fixed Caret.WordForward/WordBack moving code, now always also 
21416             updates caret.tag (fixes crash when word-selecting across tag
21417             boundaries via keyboard)
21418           - Added Insert() method for inserting multiline text into documents
21419           - Fixed DeleteChars() calculation errors that would cause a broken
21420             tag chain with multiple tag lines
21421           - DeleteChars() no longer crashes on multi-tag lines if not all tags
21422           - Split() no longer moves caret if split is at caret location
21423           - ReplaceSelection() now updates the cursor and re-displays it
21424           - ReplaceSelection() now uses new Insert() method to avoid code
21425             duplication
21426           - FormatText() can now handle formatting partial lines
21427         * TextBoxBase.cs:
21428           - Append now uses new TextControl.Insert() method (this avoids 
21429             duplicate code)
21430           - Implemented Ctrl-X (Cut) (
21431           - Implemented Ctrl-C (Copy)
21432           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
21433             regeneration when pasting text; roundtripping Copy&Paste within
21434             edit control still fails due to some calculation bugs in GenerateRTF)
21435           - The Delete key will now remove the current selection if it is visible
21436         * TextBox.cs: Removed debug lines
21437         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
21438           driver to be initialized and can't therefore be done via a static ctor)
21439
21440 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
21441
21442         * TextControl.cs: Added backend code for finding char arrays and strings
21443         * TextBoxBase.cs:
21444           - Added mouse wheel scroll support
21445           - Added support for VScroll and HScroll events
21446         * RichTextBox.cs:
21447           - Implemented all seven Find() variants
21448           - Implemented GetCharFromPosition()
21449           - Implemented GetCharIndexFromPosition()
21450           - Implemented GetLineFromIndex()
21451           - Implemented GetPositionFromCharIndex();
21452           - Implemented SaveFile for PlainText and UnicodeText
21453           - Fixed set_Font, now setting a new font applies that font to
21454             the whole document
21455           - Implemented generic Document to RTF converter
21456           - Implemented SaveFile for RichText format (still missing unicode
21457             conversion for non-ansi chars)
21458           - Implemented get_Rtf
21459           - Implemented get_SelectedRtf
21460
21461 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
21462
21463         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
21464           to allow any captures to be released before triggering OnClick. This
21465           way a click handler may capture the mouse without interference.
21466         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
21467           This way we send them even though X may not allow a grab (if the window
21468           isn't visible, for example)
21469
21470 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
21471
21472         * DataGridViewRowEventArgs.cs: DataGridView implementation
21473         * DataGridViewElement.cs: DataGridView implementation
21474         * DataGridViewComboBoxCell.cs: DataGridView implementation
21475         * DataGridViewDataErrorContexts.cs: DataGridView implementation
21476         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
21477         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
21478         * ImageLayout.cs: DataGridView implementation
21479         * DataGridViewComboBoxColumn.cs: DataGridView implementation
21480         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
21481         * DataGridViewSelectionMode.cs: DataGridView implementation
21482         * IDataGridViewEditingControl.cs: DataGridView implementation
21483         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
21484         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
21485         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
21486         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
21487         * DataGridViewColumnSortMode.cs: DataGridView implementation
21488         * DataGridView.cs: DataGridView implementation
21489         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
21490         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
21491         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
21492         * Padding.cs: DataGridView implementation
21493         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
21494         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
21495         * DataGridViewRowEventHandler.cs: DataGridView implementation
21496         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
21497         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
21498         * DataGridViewButtonCell.cs: DataGridView implementation
21499         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
21500         * DataGridViewEditMode.cs: DataGridView implementation
21501         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
21502         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
21503         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
21504         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
21505         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
21506         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
21507         * DataGridViewCellEventHandler.cs: DataGridView implementation
21508         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
21509         * DataGridViewCellStyleConverter.cs: DataGridView implementation
21510         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
21511         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
21512         * DataGridViewColumnEventArgs.cs: DataGridView implementation
21513         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
21514         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
21515         * QuestionEventArgs.cs: DataGridView implementation
21516         * IDataGridViewEditingCell.cs: DataGridView implementation
21517         * DataGridViewTriState.cs: DataGridView implementation
21518         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
21519         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
21520         * DataGridViewColumnCollection.cs: DataGridView implementation
21521         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
21522         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
21523         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
21524         * DataGridViewColumn.cs: DataGridView implementation
21525         * DataGridViewCellBorderStyle.cs: DataGridView implementation
21526         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
21527         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
21528         * DataGridViewRow.cs: DataGridView implementation
21529         * DataGridViewImageCellLayout.cs: DataGridView implementation
21530         * DataGridViewImageCell.cs: DataGridView implementation
21531         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
21532         * DataGridViewCheckBoxCell.cs: DataGridView implementation
21533         * DataGridViewHeaderCell.cs: DataGridView implementation
21534         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
21535         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
21536         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
21537         * DataGridViewTextBoxColumn.cs: DataGridView implementation
21538         * QuestionEventHandler.cs: DataGridView implementation
21539         * DataGridViewCellStyleScopes.cs: DataGridView implementation
21540         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
21541         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
21542         * DataGridViewCell.cs: DataGridView implementation
21543         * DataGridViewCellEventArgs.cs: DataGridView implementation
21544         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
21545         * DataGridViewCellStyle.cs: DataGridView implementation
21546         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
21547         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
21548         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
21549         * TextFormatFlags.cs: DataGridView implementation
21550         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
21551         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
21552         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
21553         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
21554         * DataGridViewButtonColumn.cs: DataGridView implementation
21555         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
21556         * HandledMouseEventArgs.cs: DataGridView implementation
21557         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
21558         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
21559         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
21560         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
21561         * DataGridViewRowCollection.cs: DataGridView implementation
21562         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
21563         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
21564         * DataGridViewHitTestType.cs: DataGridView implementation
21565         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
21566         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
21567         * DataGridViewColumnEventHandler.cs: DataGridView implementation
21568         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
21569         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
21570         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
21571         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
21572         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
21573         * DataGridViewContentAlignment.cs: DataGridView implementation
21574         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
21575         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
21576         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
21577         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
21578         * DataGridViewPaintParts.cs: DataGridView implementation
21579         * DataGridViewCellCollection.cs: DataGridView implementation
21580         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
21581         * DataGridViewImageColumn.cs: DataGridView implementation
21582         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
21583         * DataGridViewElementStates.cs: DataGridView implementation
21584         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
21585         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
21586         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
21587         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
21588         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
21589         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
21590         * DataGridViewRowHeaderCell.cs: DataGridView implementation
21591         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
21592         * DataGridViewTextBoxCell.cs: DataGridView implementation
21593         * DataGridViewBand.cs: DataGridView implementation
21594         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
21595         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
21596         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
21597         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
21598         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
21599         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
21600         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
21601         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
21602         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
21603         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
21604         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
21605
21606 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
21607
21608         * ThemeWin32Classic.cs: 
21609           - Draw the outside focus rectangle around buttons
21610           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
21611             doesn't use end caps for every dash of a line anymore. This
21612             workaround ignores the forecolor.
21613
21614 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
21615
21616         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
21617           endian safe.
21618
21619 2005-11-07  Jackson Harper  <jackson@ximian.com>
21620
21621         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
21622
21623 2005-11-07  Jackson Harper  <jackson@ximian.com>
21624
21625         * ScrollableControl.cs: Calculate the maximum and change vars
21626         (more) correctly so that scrollbars appear as a sensible size.
21627
21628 2005-11-04  Jackson Harper  <jackson@ximian.com>
21629
21630         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
21631         collection.
21632         * TreeView.cs: When the tree is sorted null out the top_node so
21633         that it is recalculated.
21634         - Use dotted lines instead of dashed lines to match MS better.
21635
21636 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
21637
21638         * ListView.cs: 
21639           - Implements key search for items. Useful when browsing files with FileDialog
21640           - When changing view mode or when clear the items reset scrollbar positions
21641
21642 2005-11-04  Jackson Harper  <jackson@ximian.com>
21643
21644         * CurrencyManager.cs: Implement the MetaDataChanged event, the
21645         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
21646         as to what the method may do as there is no real way of creating a
21647         derived CurrencyManager and calling the method. 
21648
21649 2005-11-03  Jackson Harper  <jackson@ximian.com>
21650
21651         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
21652         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
21653         method which seems to just be used internally to refresh the tabs.
21654
21655 2005-11-03  Jackson Harper  <jackson@ximian.com>
21656
21657         * TabControl.cs: Implement the remove method. Fix some broken
21658         comments.
21659
21660 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
21661
21662         * DateTimePicker.cs:
21663           - Added missing DateTimePickerAccessibleObject class
21664           - Added missing events
21665           - Added OnFontChanged method
21666         * Form.cs: Added missing attributes
21667         * TreeView.cs: Added missing attributes
21668
21669 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
21670
21671         * GridItemCollection.cs: Fix signatures
21672
21673 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
21674
21675         * XplatUI.cs: Updated build rev/date
21676         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
21677           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
21678         * Application.cs: Trigger context-specific ExitThread events
21679
21680 2005-11-03  Jackson Harper  <jackson@ximian.com>
21681
21682         * Menu.cs:
21683         * MainMenu.cs:
21684         * GridTableStylesCollection.cs:
21685         * Timer.cs:
21686         * TabPage.cs:
21687         * HelpProvider.cs:
21688         * StatusBar.cs:
21689         * MonthCalendar.cs: Signature fixes
21690
21691 2005-11-03  Jackson Harper  <jackson@ximian.com>
21692
21693         * TreeNodeCollection.cs: Remove should not be virtual.
21694         * TreeView.cs: Implement the last of the missing methods.
21695
21696 2005-11-03  Jackson Harper  <jackson@ximian.com>
21697
21698         * TreeNodeConverter.cs: Implement to get off my class-status back.
21699
21700 2005-11-03  Jackson Harper  <jackson@ximian.com>
21701
21702         * TreeView.cs: Hookup the bits for drag and drop.
21703         * TreeNode.cs: Don't cache the tree_view or index anymore, now
21704         that nodes can be moved from tree to tree easily this just causes
21705         all sorts of problems.
21706         * TreeNodeCollection: Don't need to give treenodes an index and
21707         treeview anymore when they are added, these are computed on the
21708         fly. Also make sure to remove a node before its added.
21709
21710 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
21711
21712         * TextControl.cs:
21713           - Added CaretSelection enum
21714           - Added comparison methods to Marker struct, makes selection code
21715             more readable
21716           - Added SelectionStart and SelectionEnd as 'moveable' location for
21717             the CaretDirection enum and handler
21718           - Added selection_prev variable to track optimized invalidation for
21719             word and line selection
21720           - Added SelectionVisible property (returns true if there is a valid 
21721             selection)
21722           - Switched CaretHasFocus to only display the caret if there is no
21723             visible selection
21724           - Avoiding StringBuilder.ToString to retrieve a single char, instead
21725             using the direct character index; should be much faster
21726           - Added various conditional debug statements
21727           - Fixed invalidation calculation for selection ranges
21728           - Added ExpandSelection() method to support word and line selection
21729           - Switched SetSelectionToCaret to use new Marker compare overloads
21730           - Added central IsWordSeparator() method to determine word 
21731             separators/whitespace and FindWordSeparator() to streamline common
21732             usage of IsWordSeparator()
21733         * TextBoxBase.cs:
21734           - Removed unneeded grabbed variable, it was just mirroring
21735             Control.Capture
21736           - No longer firing OnTextChanged event when Text setter is called,
21737             since the base will fire the event for us
21738           - Added handling of Ctrl-Up/Down selection
21739           - Added handling of Shift-Cursorkey selection
21740           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
21741             words
21742           - Added handling of Shift and Ctrl-Shift-Home/End selection
21743           - Removed some debug output
21744           - Added handling for single/double/tripple-click to place caret/
21745             select word/select line respectively (Fixes bug #76031)
21746           - Added support for drag expansion of word/line selection
21747         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
21748           current selection
21749
21750 2005-11-02  Jackson Harper  <jackson@ximian.com>
21751
21752         * X11Dnd.cs: If the drag is going to and from a MWF window just
21753         copy the data instead of sending it out through the X Selection
21754         mechanism.
21755
21756 2005-11-02  Jackson Harper  <jackson@ximian.com>
21757
21758         * X11Dnd.cs:
21759         * XplatUIX11.cs: When in a drag we don't want motion notify
21760         messages to get passed on to the other controls. This prevents
21761         mouse move messages from showing up in the drag source.
21762
21763 2005-11-02  Jackson Harper  <jackson@ximian.com>
21764
21765         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
21766         the correct button is release to end a drag.
21767         * XplatUIX11.cs: Make the button state internal so the drag system
21768         can access it.  Dragging needs to know about all button releases,
21769         not just left button.
21770
21771 2005-11-02  Miguel de Icaza  <miguel@novell.com>
21772
21773         * Form.cs (Icon): If the icon is null, reset the icon to the
21774         default value. 
21775
21776         * Cursor.cs: When writing the AND-mask bitmap do not include the
21777         number of colors, but hardcode those to two (black and white),
21778         fixes the loading of color cursors (Paint Dot Net).
21779
21780         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
21781         turn off autoscaling.
21782
21783         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
21784
21785 2005-11-02  Jackson Harper  <jackson@ximian.com>
21786
21787         * X11Dnd.cs: Make sure to send a status message if the pointer
21788         enters a control that can not accept a drop, otherwise the cursor
21789         isn't updated correctly. Also tried to compress the lines of code
21790         a bit.
21791
21792 2005-11-02  Jackson Harper  <jackson@ximian.com>
21793
21794         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
21795         set actions correctly.  This isn't perfect as XDND and win32 have
21796         some differences on how you allow actions. I'll clear this up by
21797         adding a path for drag from MWF to MWF windows.
21798         * XplatUIX11.cs: Hook into the dnd system.
21799
21800 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
21801
21802         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
21803         previously shown but they are no longer need it. Very obvious when 
21804         browsing files with FileDialog.
21805
21806 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
21807
21808         * Control.cs: We always need to call OnPaintBackground. We pretty much
21809           ignore AllPaintingInWmPaint and always do the painting there, whether 
21810           it's set or not, since we always ignore the WM_ERASEBKGND message 
21811           (which we don't generate on X11). This fixes #76616.
21812         * Panel.cs: Removed unneeded background painting. This happens properly
21813           in Control.cs already
21814
21815 2005-10-31  Mike Kestner  <mkestner@novell.com>
21816
21817         * Menu.cs: Add items to collection before setting their index.
21818         * MenuItem.cs : add range checking with ArgumentException like MS.
21819         [Fixes #76510]
21820
21821 2005-10-31  Jackson Harper  <jackson@ximian.com>
21822
21823         * ListBox.cs: Invalidate if the area is visible at all not just
21824         contained in the visible rect. Fixes unselection of semi visible
21825         items.
21826
21827 2005-10-31  Jackson Harper  <jackson@ximian.com>
21828
21829         * Control.cs: Consistently name the dnd methods. Make them
21830         internal so we can override them to match some MS behavoir
21831         internally.
21832         * Win32DnD.cs: Use the new consistent names.
21833
21834 2005-10-31  Jackson Harper  <jackson@ximian.com>
21835
21836         * TreeView.cs: Don't draw the selected node when we lose focus.
21837
21838 2005-10-31  Jackson Harper  <jackson@ximian.com>
21839
21840         * X11Dnd.cs: We still need to reset the state even though a full
21841         reset isn't being done, otherwise status's still get sent all over
21842         the place.
21843
21844 2005-10-31  Jackson Harper  <jackson@ximian.com>
21845
21846         * Control.cs: Make the dnd_aware flag internal so the dnd
21847         subsystem can check it. Catch exceptions thrown in dnd handlers to
21848         match MS behavoir.
21849         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
21850         * X11Dnd.cs: Handle null data in the converters. Set the XDND
21851         version when sending a XdndEnter. Use the control/hwnd dnd_aware
21852         flags to reduce the number of dnd enters/status's sent.
21853
21854 2005-10-31  Jackson Harper  <jackson@ximian.com>
21855
21856         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
21857
21858 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
21859
21860         * PictureBox.cs: Fixes 76512
21861
21862 2005-10-28  Jackson Harper  <jackson@ximian.com>
21863
21864         * X11Dnd.cs: Early implementation to support winforms being a drag
21865         source for data on X11. Also restructured the converters so they
21866         can go both ways now.
21867         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
21868         
21869 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
21870
21871         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
21872           clipboard requests
21873
21874 2005-10-27  Jackson Harper  <jackson@ximian.com>
21875
21876         * TreeNode.cs: Implement serialization so my DnD examples will work.
21877
21878 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
21879
21880         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
21881           TreeView.cs: Don't dispose objects that are not owned.
21882           
21883 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
21884
21885         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
21886           should retrieve the current cursor and report that, but XplatUI
21887           doesn't (yet) have an interface for that (and I'm not sure I even
21888           can, on X11)
21889         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
21890           until any message loop processing is done (and the WM_SETCURSOR
21891           replaces the cursor to the proper one)
21892         * XplatUIX11.cs: 
21893           - Fixed override behaviour, we can't set the cursor globally on X11, 
21894             just for our windows.
21895           - Invalidating the System.Drawing X11 display handle when we are
21896             shutting down
21897         * Control.cs: Fix to make csc happy
21898
21899 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
21900
21901         * TextBoxBase.cs: 
21902           - get_Text: Add last line (without trailing newline) to returned
21903             value (Fixes 76212)
21904           - get_TextLength: Count last line in returned length
21905           - ToString: Call Text property instead of duplicating code
21906
21907 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
21908
21909         * ImageList.cs: Dispose ImageAttributes objects.
21910
21911 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
21912
21913         * ImageList.cs: Use attribute constructors with less arguments where
21914           possible.
21915
21916 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
21917
21918         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
21919           Use typeof instead of strings when assembly is referenced. Added
21920           some more comments.
21921
21922 2005-10-21  Jackson Harper  <jackson@ximian.com>
21923
21924         * ListView.cs: Raise a double click event. Also tried to somewhat
21925         fix when the selectedindexchanged event is raised. Its still
21926         broken though.
21927
21928 2005-10-21  Jackson Harper  <jackson@ximian.com>
21929
21930         * TreeView.cs: New method to invalidate the plus minus area of a
21931         node without invalidating the whole node (maybe this can be used
21932         in some more places).
21933         * TreeNodeCollection.cs: When adding to an empty node we need to
21934         invalidate its plus minus area so the little block shows up.
21935         
21936 2005-10-21  Jackson Harper  <jackson@ximian.com>
21937
21938         * TreeView.cs: Make sure that when we invalidate a node the bounds
21939         are big enough to cover the selected box and the focus
21940         rectangle. Use a different colour for the lines connecting nodes
21941         so they show up with all themes.
21942
21943 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
21944
21945         * NativeWindow.cs: Don't call anything that could call into the driver,
21946           we might be on a different thread.
21947
21948 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
21949
21950         * Control.cs(Dispose): Since Dispose might run on a different thread,
21951           make sure that we call methods that could call into the driver via
21952           invoke, to avoid thread issues
21953
21954 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
21955
21956         * XplatUI.cs: Removed finalizer
21957         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
21958           not allowing to be called on the finalizer thread.
21959
21960 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
21961
21962         * ImageList.cs:
21963           - Reverted r51889 and r51891.
21964           - Added ImageListItem class that stores unmodified image items and image
21965             properties required to create list images until handle is created.
21966           - Added AddItem and moved image creation logic to AddItemInternal.
21967           - Added CreateHandle method that creates images based on unmodified items.
21968           - Added DestroyHandle that changes state to store unmodified items.
21969           - Add and AddStrip methods no more create handle.
21970           - ReduceColorDepth has no return value.
21971           - Dispose destroys handle.
21972           - Modified other methods to reflect the above changes.
21973           - Implemented key support.
21974           - Added profile 2.0 members and attributes.
21975           - Added private Reset and ShouldSerialize methods that provide the same
21976             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
21977             them as they are private.
21978           - Added some more comments about implementation details.
21979
21980 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
21981
21982         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
21983
21984 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
21985
21986         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
21987
21988 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
21989
21990         * DataGridDrawingLogic.cs: Fixes column hit calcultation
21991         * DataGridColumnStyle.cs: Remove debug message
21992
21993 2005-10-20  Jackson Harper  <jackson@ximian.com>
21994
21995         * TreeView.cs: We can always get input keys regardless of whether
21996         or not editing is enabled. They are used for navigation.
21997
21998 2005-10-20  Jackson Harper  <jackson@ximian.com>
21999
22000         * TreeNode.cs: Use the viewport rect for determining if a node
22001         needs to be moved for visibility. Don't use Begin/End edit. This
22002         calls a full refresh when its done.
22003         * TreeView.cs: New SetBottom works correctly.  Make the viewport
22004         rect property internal so the treenodes can see it. When clicking
22005         on a node we need to ensure that its visible because it might just
22006         be partly visible when clicked.
22007
22008 2005-10-20  Jackson Harper  <jackson@ximian.com>
22009
22010         * TreeNodeCollection.cs: Remove debug code.
22011
22012 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
22013
22014         * Datagrid.cs: Implements column sorting in Datagrid
22015         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
22016
22017 2005-10-20  Jackson Harper  <jackson@ximian.com>
22018
22019         * TreeNodeCollection.cs: Remove items properly. Update the correct
22020         area after removing them.
22021
22022 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
22023
22024         * Datagrid.cs: Should not call base.OnPaintBackground
22025
22026 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
22027
22028         * XplatUIX11.cs (GetMessage):
22029           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
22030             window instead of client window
22031           - Now properly calculates NC_xBUTTONUP message coordinates
22032           - ScreenToMenu now properly calculates it's coordinates of whole 
22033             window, since menus are in the whole window, not in the client
22034             window
22035           - Added WholeToScreen coordinate translation method
22036
22037 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
22038
22039         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
22040           want to return a message, loop back to the beginning of the function
22041           and grab the next real message to process instead.
22042
22043 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
22044
22045         * Splitter.cs: Properly set limits if no filler control is used
22046
22047 2005-10-19  Jackson Harper  <jackson@ximian.com>
22048
22049         * ColorDialog.cs: Don't show the help button if it is not enabled
22050         instead of disabling it (this is what MS does). Don't create the
22051         panel until the dialog is run, otherwise the vars (such as
22052         ShowHelp) are not set yet.
22053
22054 2005-10-19  Jackson Harper  <jackson@ximian.com>
22055
22056         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
22057         are reduced when adding nodes.
22058         * TreeNode.cs:
22059         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
22060         tree.
22061         
22062 2005-10-19  Jackson Harper  <jackson@ximian.com>
22063
22064         * FolderBrowserDialog.cs: End editing our treeview so the window
22065         actually gets refreshed.
22066
22067 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
22068
22069         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
22070           Obsoleted handling of WM_ERASEBKGND, now always draws our background
22071           inside of WM_PAINT
22072
22073 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
22074
22075         * MenuAPI.cs: Returns after Hidding window
22076         * XplatUIX11.cs: Added TODO found while debugging menu issues
22077
22078 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
22079
22080         * XplatUIX11.cs: Do not re-map the whole window when it's size
22081           becomes non-zero unless it's supposed to be actually visible
22082
22083 2005-10-18  Jackson Harper  <jackson@ximian.com>
22084
22085         * TreeView.cs: We don't need to keep a count anymore.
22086         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
22087         use the Grow method.
22088
22089 2005-10-18  Jackson Harper  <jackson@ximian.com>
22090
22091         * TreeNodeCollection.cs: Insert is not supported on arrays, so
22092         implement it manually here.
22093
22094 2005-10-18  Jackson Harper  <jackson@ximian.com>
22095
22096         * ImageList.cs: Dont kill the list when the colour depth is
22097         changed, just change the colour depth of all the images.
22098         - Same goes for setting the image size. Just resize them all
22099         instead of killing the list softly.
22100
22101 2005-10-18  Jackson Harper  <jackson@ximian.com>
22102
22103         * Control.cs: Don't invalidate empty rectangles.
22104
22105 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
22106
22107         * ListViewItem.cs:
22108           - Adds checked item to the Checked/Item lists (where empty before)
22109           - Do not add items to the Selected lists if they are already present
22110         * ListView.cs:
22111           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
22112           - When deleting items make sure that we delete them for the Selected
22113           and Checked list also.
22114
22115 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
22116
22117         * Label.cs: Dispose objects no longer used
22118         * ThemeWin32Classic.cs: Dispose objects no longer used
22119
22120 2005-10-18  Jackson Harper  <jackson@ximian.com>
22121
22122         * TabControl.cs: Don't refresh the whole control when the tabs are
22123         scrolled, we just need to refresh the tab area.
22124
22125 2005-10-17  Jackson Harper  <jackson@ximian.com>
22126
22127         * XplatUIX11.cs: Compress code a little bit. Only calculate the
22128         after handle when we need it.
22129
22130 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
22131
22132         * Control.cs: When the parent size changes, recalculate anchor 
22133           positions. Partial fix for #76462
22134
22135 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
22136
22137         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
22138           drawn. Fixes #76462
22139
22140 2005-10-17  Jackson Harper  <jackson@ximian.com>
22141
22142         * MonthCalendar.cs: Don't create the numeric up down until our
22143         handle is created. Otherwise our handle is created in the
22144         constructor and we don't know if we are a WS_CHILD or WS_POPUP
22145         yet.
22146
22147 2005-10-17  Jackson Harper  <jackson@ximian.com>
22148
22149         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
22150         correctly.
22151
22152 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
22153         * TreeNode.cs : small logical fix (was using local var instead of field)
22154         
22155 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
22156
22157         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
22158
22159 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
22160
22161         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
22162
22163 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
22164
22165         * Control.cs: 
22166           - Re-implemented anchoring code. My first version was really broken.
22167             This fixes bug #76033. Unlike the previous implementation we will
22168             no longer have round errors since all numbers are calculated from
22169             scratch every time. Removed various anchor-related obsolete vars.
22170           - InitLayout no longer causes layout event firing and layout to be 
22171             performed
22172
22173 2005-10-16  Jackson Harper  <jackson@ximian.com>
22174
22175         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
22176         which was broken).
22177
22178 2005-10-16  Jackson Harper  <jackson@ximian.com>
22179
22180         * TabControl.cs: Remove debug code.
22181
22182 2005-10-16  Jackson Harper  <jackson@ximian.com>
22183
22184         * XEventQueue.cs: Increase the default queue size (very simple
22185         apps needed to grow the queue).
22186         * Hwnd.cs: No finalizer so we don't need to suppress
22187         finalization. Compute the invalid area manually so a new rectangle
22188         does not newto be created.
22189         * ScrollableControl.cs: Don't set any params (otherwise visibility
22190         isn't set correctly).
22191         * MdiChildContext.cs: New constructor takes the mdi parent so it
22192         doesn't have to be computed and avoids a crash on windows. Draw
22193         the window icon properly, and allow the text to be seen.
22194         * Form.cs: Use new MdiChildContext constructor. Make sure the
22195         child context isn't null in wndproc.
22196         * TabControl.cs: Don't set focus, this is muddling keyboard
22197         behavoir. Expand the tab rows when a window size increase will
22198         allow extra tabs to be seen. Don't allow tabs smaller than the
22199         width of a window to be scrolled out of view.
22200         * TreeNode.cs:
22201         * TreeView.cs: Use measure string to calculate a nodes width, the
22202         width is cached and only updated when the text or the font is
22203         changed. Don't check for expand/collapse clicks on the first level
22204         nodes if root lines are disabled.
22205         
22206 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
22207
22208         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
22209
22210 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
22211
22212         * DataGridBoolColumn.cs: fixes warning
22213
22214 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
22215
22216         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
22217         to match more to match more precisely the MS Net behavior
22218
22219 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
22220
22221         * Hwnd.cs: Added field to track if window is mapped
22222         * XplatUIX11.cs: 
22223           - Unmap windows if they become 0-size, re-map when 
22224             they are >0 again; fixes #76035
22225           - Re-set our error handler after initializing X11Desktop
22226             to override any error handlers Gtk or whatever was called
22227             may have set.
22228
22229 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
22230
22231         * CheckedListBox.cs: Removed unused vars
22232         * ListView.cs: Fixed signatures
22233         * RichTextBox.cs: Removed unused vars
22234         * TextBoxBase.cs: Removed unused vars
22235         * XplatUIWin32.cs: Removed unused vars
22236         * XplatUIX11.cs: Removed unused vars
22237         * XplatUI.cs: Updated version and date to latest published
22238
22239 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
22240
22241         * Cursor.cs: Added private .ctor to work around a bug in
22242           resourceset (Thanks to Geoff Norton for the help on this)
22243         * SplitterEventArgs.cs: Made fields accessible so we don't
22244           waste boatloads of objects and can reuse the same one
22245           in Splitter
22246         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
22247           any captions and borders when generating screen coordinates
22248         * Splitter.cs: Reimplemented control, now fully complete, uses
22249           rubberband drawing, supports and obeys all properties, has
22250           proper cursors
22251
22252 2005-10-13  Miguel de Icaza  <miguel@novell.com>
22253
22254         * Form.cs (Form): Setup default values for autoscale and
22255         autoscale_base_size;  Make these instance variables, not static
22256         variables. 
22257
22258         (OnLoad): on the first load, adjust the size of the form.
22259
22260 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
22261
22262         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
22263           width argument to DrawReversibleRectangle()
22264         * XplatUIWin32.cs, XplatUIX11.cs: 
22265           - Implemented width for DrawReversibleRectangle()
22266           - Added logic to DrawReversibleRectangle that recognizes a zero
22267             width or height and only draws a line in that situation
22268         
22269 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
22270
22271         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
22272         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
22273         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
22274           method (it uses our FosterParent window to get a graphics context)
22275
22276 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
22277
22278         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
22279           and SetWindowBackground methods
22280         * Control.cs:
22281           - Setting proper ControlStyles
22282           - We no longer call XplatUI.SetWindowBackground and XplatUI.
22283             EraseWindowBackground, instead we draw the window background
22284             ourselves in PaintControlBackground. This behaviour is
22285             required to match MS, where, when OnPaintBackground is not
22286             called, the background is not drawn.
22287           - Removed unneeded Refresh() in set_Text
22288         * Hwnd.cs: Dropped the ErasePending support. No longer needed
22289         * XplatUIX11.cs:
22290           - Created DeriveStyles method to translate from CreateParams to
22291             FormBorderStyle and TitleStyle, also handles BorderStyle (which
22292             matches FormBorderStyle enum values)
22293           - Consolidated SetHwndStyles and CalculateWindowRect border/title
22294             style calculations into single DeriveStyles method
22295           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
22296             from redrawing the whole window on any resize or expose.
22297           - Fixed CreateWindow usage of SetWindowValuemask. Before not
22298             all styles were applied to our whole/client window appropriately
22299           - Removed EraseWindowBackground() and SetWindowBackground() methods
22300           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
22301             no longer clear/redraw the background through X
22302           - Removed handling of erase_pending bit, we have no use for it (or
22303             so it seems)
22304         * XplatUIOSX.cs:
22305           - Removed generation and handling of WM_ERASEBKGND message
22306           - Removed EraseWindowBackground() and SetWindowBackground() methods
22307           - Removed handling of hwnd.ErasePending flag
22308         * XplatUIWin32.cs:
22309           - Removed EraseWindowBackground() and SetWindowBackground() methods
22310           - We no longer call EraseWindowBackground on PaintEventStart, we 
22311             ignore the fErase flag, erasing is handled in Control in the
22312             background handler
22313         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
22314           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
22315           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
22316           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
22317           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
22318           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
22319           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
22320
22321 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
22322
22323         * PropertyGrids.cs: Get sub properties
22324         * PropertyGridView.cs: Fix drawing code
22325
22326 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22327
22328         * ListBox.cs: Fixes 76383
22329
22330 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22331
22332         * DataGridTextBoxColumn.cs: Sets location and size before attachment
22333         * ThemeWin32Classic.cs: Fixes border drawing and calculations
22334         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
22335
22336
22337 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22338
22339         * ComboBox.cs: Fixes border drawing
22340
22341 2005-10-10  Miguel de Icaza  <miguel@novell.com>
22342
22343         * MimeIcon.cs: Ignore errors if the file can not be read.
22344
22345 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22346
22347         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
22348          - Fixed border calculations
22349          - Fixed horizontal scrolling in single column listboxes
22350          - Fixed drawing issues
22351
22352 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
22353
22354         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
22355           FormBorderStyle enum
22356         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
22357           code to determine FormBorderStyles from CreateParams
22358         * Form.cs:
22359           - Fixed bug where we'd set the wrong window styles if we were
22360             not creating an MDI window
22361           - Added call to XplatUI.SetBorderStyle when form borders are set
22362         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
22363         * Hwnd.cs:
22364           - Removed obsolete edge style
22365           - Switched from BorderStyle to FormBorderStyle
22366         
22367 2005-10-10  Jackson Harper  <jackson@ximian.com>
22368
22369         * Form.cs: Use the property to get the window handle instead of
22370         accessing it directly. Prevents a null reference exception.
22371
22372 2005-10-10  Jackson Harper  <jackson@ximian.com>
22373
22374         * TreeView.cs: Don't adjust the rect given to DrawString now that
22375         our libgdiplus draws correctly.
22376
22377 2005-10-08  Jackson Harper  <jackson@ximian.com>
22378
22379         * TreeView.cs: Don't try to find the clicked on node if there are
22380         no nodes in the tree.
22381
22382 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
22383
22384         * RichTextBox.cs:
22385
22386           restore
22387
22388 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
22389
22390         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
22391           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
22392           ErrorProvider.cs:
22393           Use ResPool for brushes and dispose System.Drawing objects that
22394           are not used anymore.
22395
22396 2005-10-07  Jackson Harper  <jackson@ximian.com>
22397
22398         * MdiChildContext.cs: Use the new borders instead of drawing them
22399         ourselves.
22400
22401 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
22402
22403         * Calling UpdateBounds after changing the window's BorderStyle 
22404         since the style can change the ClientSize
22405
22406 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22407
22408         * Control.cs: Made PaintControlBackground virtual
22409         * Panel.cs: Overriding PaintControlBackground instead of using paint
22410           event; paint event method was interfering with 'real' users of the
22411           event.
22412
22413 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
22414
22415         * ThemeWin32Classic.cs: remove border drawing since it is handled
22416         by the base control class now and was causing double border drawing.
22417
22418 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22419
22420         * Panel.cs: Redraw our background on paint. Not a pretty solution,
22421           but it does seem to match MS behaviour. This fixes bug #75324
22422
22423 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22424
22425         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
22426           somewhat hackish looking
22427
22428 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
22429
22430         * TextBoxBase.cs:
22431           - We now accept Enter even if AcceptEnter is false, if the containing
22432             form does not have an AcceptButton configured (fixes bug #76355)
22433           - Calculations are now fixed to no longer use Width/Height, but
22434             ClientSize.Width/Height, since we now support borders (this was
22435             a result of fixing borders and therefore bug #76166)
22436           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
22437             true (fixes bug #76354)
22438         
22439 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22440
22441         * Control.cs: 
22442           - Defaulting BorderStyle and setting it in XplatUI when our window 
22443             is created
22444           - Added enum check to InternalBorderStyle setter
22445         * XplatUIX11.cs: 
22446           - Added drawing of window borders
22447           - Now properly calculates WM decorations offset for toplevel 
22448             windows (fixes bug #74763)
22449         * XplatUIWin32.cs: 
22450           - Implemented BorderStyles for windows (we're letting win32 draw 
22451             the border for us)
22452           - Fixed the signature for SetWindowLong
22453         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
22454           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
22455           setting borders
22456         * UpDownBase.cs: Remove drawing of borders, this is handled by
22457           the driver, outside the client area
22458         * ListView.cs: Removed bogus border calculations. The control should
22459           be oblivious to borders, since those are not part of the client
22460           area. 
22461         * X11DesktopColors.cs: Commented out (currently) unneeded variables
22462         * ThemeWin32Classic.cs: Removed border calculations from ListView 
22463           drawing code
22464
22465 2005-10-06  Jackson Harper  <jackson@ximian.com>
22466
22467         * MdiChildContext.cs: Clear out the old virtual position remove
22468         all the unneeded calls to CreateGraphics.
22469
22470 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
22471
22472         * TextControl.cs: Use proper color for highlighted text; fixes #76350
22473
22474 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
22475
22476         * Form.cs: 
22477           - Added loading and setting of our new default icon
22478           - Only set icon if window is already created
22479
22480 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22481
22482         * Label.cs:
22483           - Do not explicitly set the foreground and background colors, to
22484             allow inheriting from parents (fixes #76302)
22485           - Use Control's InternalBorderStyle property to deal with borders
22486
22487 2005-10-06  Jackson Harper  <jackson@ximian.com>
22488
22489         * MdiChildContext.cs: Use the new xplatui function to draw a
22490         reversible rect.
22491
22492 2005-10-06  Jackson Harper  <jackson@ximian.com>
22493
22494         * Form.cs: Add the parent before creating the child context cause
22495         we need the parent when setting up the child.
22496
22497 2005-10-06  Jackson Harper  <jackson@ximian.com>
22498
22499         * FolderBrowserDialog.cs: redo the tree population code so a
22500         second thread isn't used. Should be a lot faster and more stable
22501         now.
22502
22503 2005-10-05  Jackson Harper  <jackson@ximian.com>
22504
22505         * TreeView.cs: There are no expand/collapse boxes if the node has
22506         no children.
22507
22508 2005-10-05  Jackson Harper  <jackson@ximian.com>
22509
22510         * X11DesktopColors.cs: Get menu colours for the gtk theme.
22511
22512 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
22513
22514         * FileDialog.cs: Fix InitialDirectory
22515
22516 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
22517
22518         * ComboBox.cs:
22519                 - Fixes changing between styles
22520                 - Fixes simple mode
22521                 - Fixes last item crashing when navigating with keyboard
22522
22523 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
22524
22525         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
22526
22527 2005-10-05  Jackson Harper  <jackson@ximian.com>
22528
22529         * TreeView.cs: If updating the root node do a full refresh.
22530         * TreeNode.cs: The root node should be expanded by default. Also
22531         added a utility prop to tell if we are the root node.
22532         * TreeNodeCollection.cs: Only refresh if the node we are being
22533         added to is expanded. Also added a comment on a potential
22534         optimization.
22535         
22536 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
22537
22538         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
22539           in dispose method. Fixes #76330
22540
22541 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
22542
22543         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
22544
22545                 - Implements vertical and horizontal scrolling using XplatUI
22546                 - Fixes keyboard navagation
22547                 - Fixes EnsureVisible
22548                 - Drawing fixes
22549                 - Handles and draws focus properly
22550
22551
22552 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
22553
22554         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
22555           Create handle. NET_2_0: Destroy handle when value is null.
22556
22557 2005-10-03  Jackson Harper  <jackson@ximian.com>
22558
22559         * ScrollBar.cs: My last scrollbar patch was broken. This is a
22560         revert and a new patch to prevent the thumb from refreshing so
22561         much.
22562
22563 2005-10-02  Jackson Harper  <jackson@ximian.com>
22564
22565         * ScrollBar.cs: Don't update position if it hasn't actually
22566         changed. This occurs when you hold down the increment/decrement
22567         buttons and the thumb gets to the max/min.
22568
22569 2005-10-01  Jackson Harper  <jackson@ximian.com>
22570
22571         * Form.cs:
22572         * MdiChildContext.cs:
22573         * MdiClient.cs: Implement ActiveMdiChild in Form.
22574
22575 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
22576
22577         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
22578
22579 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
22580
22581         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
22582           be found
22583
22584 2005-09-30  Jackson Harper  <jackson@ximian.com>
22585
22586         * ListBox.cs: Don't do a full refresh unless some data has
22587         actually changed.
22588
22589 2005-09-30  Jackson Harper  <jackson@ximian.com>
22590
22591         * TreeView.cs: Make sure that the checkboxes size is factored in
22592         even when not visible.
22593
22594 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
22595
22596         * FileDialog.cs: Fix Jordi's build break
22597
22598 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
22599
22600         * FileDialog.cs: 
22601                 - Use standard the Windows colours for the combobox as espected
22602                 - Dispose objects that use resouces when no longer need them
22603
22604 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
22605
22606         * X11DesktopColors.cs: Initial incomplete implementation
22607         * XplatUIX11.cs: Added call to initialize X11DesktopColors
22608
22609 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
22610
22611         * Theme.cs: 
22612           - Switched Theme color names to match the names defined in 
22613             System.Drawing.KnownColors. Life's hard enough, no need to make 
22614             it harder.
22615           - Added setters to all theme color properties so themes can set
22616             their color schemes. The setters also propagate the color changes
22617             to System.Drawing.KnownColors via reflection
22618         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
22619           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
22620           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
22621           use the new, more logical theme color names
22622         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
22623           post-NT colors
22624         * ThemeWin32Classic.cs:
22625           - Removed code to set the old classic Windows colors. Instead it
22626             now relies on the colors returned by System.Drawing.KnownColors
22627             which will be either modern static colors (Unix) or colors
22628             read from the user's configuration (Win32)
22629           - Updated to use the new, more logical theme color names
22630           - Switched DataGrid drawing code to use only Theme colors instead of
22631             a mix of System.Drawing.KnownColors and Theme colors
22632           - DrawFrameControl(): Removed code that fills the button area, the
22633             fill would overwrite any previous fill done by a control. This
22634             fixes bug #75338 
22635           - Added DrawReversibleRectangle() stub
22636         * ScrollableControl.cs: Set visible state to false when scrollbars
22637           are removed (pdn fix)
22638         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
22639           DrawReversibleRectangle() method to allow drawing primitive 
22640           'rubber bands'
22641         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
22642
22643 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22644
22645         * ImageList.cs: Add(Icon): Create handle.
22646
22647 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
22648
22649         * ListView.cs:
22650         * ThemeWin32Classic.cs:
22651                 - Fixes detail mode
22652                 - Sets clippings
22653                 - Issues with drawing
22654
22655 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22656
22657         * ImageList.cs: Moved RecreateHandle back to ImageList as event
22658           source has to be the ImageList.
22659
22660 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22661
22662         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
22663
22664 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22665
22666         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
22667
22668 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22669
22670         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
22671
22672 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
22673         * GridItem.cs: Fixed TODOs
22674         * GridItemCollection.cs: Added ICollection interface
22675
22676 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22677
22678         * ImageList.cs: Resize icons when needed.
22679
22680 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
22681
22682         * ListViewItem.cs
22683                 - Fixes GetBounds and returns on screen rects
22684         * ListView.cs:
22685                 - Fixes vertical and horzintal scrolling of items
22686         * ThemeWin32Classic.cs:
22687                 - Fixes drawing
22688                 
22689 2005-09-29  Raja R Harinath  <harinath@gmail.com>
22690
22691         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
22692
22693 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
22694
22695         * ImageList.cs: Added comments about handle creation. Moved Handle,
22696           HandleCreated and OnRecreateHandle implementations to ImageCollection.
22697           Handle is created in Add methods.
22698
22699 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
22700          
22701         * DataGridDrawingLogic.cs: 
22702                 - Takes rows into account on Colum calculations
22703                 - Returns the column when clickig
22704         * DataGrid.cs:
22705                 - Fixes default HitTestInfo values
22706                 - Fixes HitTestInfo.ToString
22707                 - Fixes ResetBackColor          
22708         
22709 2005-09-28  Jackson Harper  <jackson@ximian.com>
22710
22711         * MdiChildContext.cs: Obey rules for fixed sized windows (no
22712         sizing or cursor changes). Also added some temp code to draw the
22713         titlebars text (Makes dev a little easier).
22714
22715 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
22716
22717         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
22718
22719 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
22720          
22721         * ListBox.cs: Fixes bug 76253
22722
22723 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
22724
22725         * ImageList.cs: Added comments about the current implementation. Added
22726           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
22727           Format32bppArgb to preserve transparency and can use Graphics.FromImage
22728           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
22729           with Bitmap.LockBits for better performance. Revised the whole file to
22730           match MS.NET behaviour and provide better performance. Non-public
22731           interface members are calling public members even when they throw
22732           NotSupportedException for better maintainability. Moved ColorDepth,
22733           ImageSize, ImageStream and TransparentColor implementations to
22734           ImageCollection for better performance as these properties are not used
22735           by ImageList.
22736         * ImageListStreamer.cs: Added a new internal constructor that takes an
22737           ImageList.ImageCollection and serializes Images based on
22738           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
22739           match ImageList property name.
22740
22741 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
22742
22743         * ListBox.cs: Fixes IndexFromPoint for last item
22744
22745 2005-09-27  Jackson Harper  <jackson@ximian.com>
22746
22747         * Form.cs: Set the position of new mdi children correctly.
22748
22749 2005-09-27  Jackson Harper  <jackson@ximian.com>
22750
22751         * MdiClient.cs: New mdi children need to be added to the back of
22752         the controls collection so the zorder is set correctly. Also add a
22753         count of all the child windows that have been created.
22754
22755 2005-09-27  Jackson Harper  <jackson@ximian.com>
22756
22757         * Form.cs (CreateParams): Setup MDI forms correctly.
22758
22759 2005-09-27  Jackson Harper  <jackson@ximian.com>
22760
22761         * MdiChildContext.cs:
22762         * MonthCalendar.cs:
22763         * UpDownBase.cs:
22764         * ListBox.cs:
22765         * ListView.cs:
22766         * TextBoxBase.cs:
22767         * TreeView.cs:
22768         * ScrollableControl.cs:
22769         * ComboBox.cs: Add implicit controls using the new implict control
22770         functionality in ControlCollection. Also try to block multiple
22771         control add in a suspend/resume layout to save some cycles.
22772         
22773 2005-09-27  Jackson Harper  <jackson@ximian.com>
22774
22775         * Control.cs: Add functionality to the controls collection to add
22776         'implicit controls' these are controls that are created by the
22777         containing control but should not be exposed to the user. Such as
22778         scrollbars in the treeview.
22779         * Form.cs: The list var of the ControlsCollection is no longer
22780         available because of the potential of implicit controls getting
22781         ignored by someone accessing the list directly.
22782
22783 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
22784
22785         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
22786           loose it's parent. (Fixed bug introduced in r49103 when we added
22787           setting the child parent to null on Remove)
22788
22789 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
22790
22791         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
22792         * Splitter.cs: Added missing attributes for BorderStyle property.
22793         * TextBoxBase.cs: Marked Calculate* methods internal.
22794         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
22795         MS.NET.
22796
22797 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
22798          
22799         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
22800
22801 2005-09-25  Jackson Harper  <jackson@ximian.com>
22802
22803         * TreeView.cs: Update the node bounds correctly regardless of
22804         whether the node is visible.
22805
22806 2005-09-25  Jackson Harper  <jackson@ximian.com>
22807
22808         * ImageList.cs: Don't dispose the image after it is added to the
22809         image list. Only reformat images that need to be resized.
22810
22811 2005-09-25  Jackson Harper  <jackson@ximian.com>
22812
22813         * ImageList.cs: Don't set the format when changing the image.
22814
22815 2005-09-25  Jackson Harper  <jackson@ximian.com>
22816
22817         * TreeView.cs: We can't just assume the node has a font. Use the
22818         treeviews font if no node font is available.
22819
22820 2005-09-25  Jackson Harper  <jackson@ximian.com>
22821
22822         * TreeView.cs: Allow the scrollbars to be reset with negative
22823         values.
22824         - Don't add scrollbars to negative sized windows.
22825
22826 2005-09-23  Jackson Harper  <jackson@ximian.com>
22827
22828         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
22829         old Mono.Posix. Also remove some stray code that shouldn't have
22830         been committed.
22831
22832 2005-09-23  Jackson Harper  <jackson@ximian.com>
22833
22834         * TreeView.cs: Attempt at proper sizing of the horizontal
22835         scrollbar. Also don't resize the scrollbars unless they are
22836         visible.
22837
22838 2005-09-23  Jackson Harper  <jackson@ximian.com>
22839
22840         * TreeView.cs: We don't need to expand the invalid area when the
22841         selection changes, as this is all drawn in the node's bounding
22842         box. The area needs to be expanded (previous typo was contracting
22843         it) when the focus rect moves.
22844
22845 2005-09-23  Jackson Harper  <jackson@ximian.com>
22846
22847         * TreeView.cs: Display the selection box under the correct
22848         circumstances. We were rendering white text with no selection box
22849         before.
22850
22851 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
22852
22853         * TextControl.cs(Split): Now updates selection start/end if it points 
22854           into a line that's being split. Fixes a FIXME and bug #75258
22855
22856 2005-09-23  Jackson Harper  <jackson@ximian.com>
22857
22858         * Binding.cs:
22859         * ListControl.cs: Don't use the path when retrieving binding
22860         managers from the binding context. My bat sense tells me that the
22861         path is only used on insertion.
22862
22863 2005-09-22  Jackson Harper  <jackson@ximian.com>
22864
22865         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
22866
22867 2005-09-22  Jackson Harper  <jackson@ximian.com>
22868
22869         * Splitter.cs: There are special cursors used for splitting.
22870         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
22871
22872 2005-09-22  Jackson Harper  <jackson@ximian.com>
22873
22874         * Splitter.cs: Change the cursor appropriately when the splitter
22875         is moused over, so the user actually knows there is a splitter
22876         there.
22877
22878 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
22879
22880        * Label.cs : Fix ToString method to give same output as MS.NET
22881
22882 2005-09-22  Jackson Harper  <jackson@ximian.com>
22883
22884         * TreeView.cs: Create the scrollbars when the handle is created
22885         and add them right away, just make them invisble. Also account for
22886         the window being shrunk vertically to the point that the vert
22887         scrollbar needs to be added.
22888         - Remove some 0.5 adjustments to get around anti aliasing issues.
22889         
22890 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
22891          
22892         * MainMenu.cs: Fixes default value
22893         * MenuItem.cs: Fixes default value
22894
22895 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
22896
22897         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
22898
22899 2005-09-21  Jackson Harper  <jackson@ximian.com>
22900
22901         * Control.cs: Don't try to set the border style on the window if
22902         it hasn't been created. When the window is created the border
22903         style will be used.
22904
22905 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
22906
22907         * Control.cs (Update): Don't call XplatUI if we don't have a
22908           window handle yet
22909
22910 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
22911
22912         * ContainerControl.cs: Instead of throwing an exception, print
22913           a one-time warning about Validate not being implemented
22914         * XplatUIWin32.cs: Removed debug output
22915
22916 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
22917
22918         * Control.cs: Only set XplatUI background if we expect the windowing
22919           system to handle the background. This stops controls that draw their
22920           own background from flickering
22921
22922         * XplatUIX11.cs: Support custom visuals and colormaps for window 
22923           creation. This allows, amongst other things, using MWF X11 windows 
22924           with OpenGL.
22925
22926 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
22927
22928         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
22929           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
22930           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
22931           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
22932           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
22933           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
22934           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
22935           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
22936           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
22937           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
22938           GridColumnStylesCollection.cs, 
22939           IDataGridColumnStyleEditingNotificationService.cs,
22940           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
22941           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
22942           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
22943           TreeNodeCollection.cs, AmbientProperties.cs, 
22944           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
22945           DataObject.cs, ErrorProvider.cs, Splitter.cs,
22946           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
22947           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
22948           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
22949           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
22950           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
22951           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
22952           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
22953           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
22954           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
22955           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
22956           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
22957           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
22958           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
22959           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
22960           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
22961           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
22962           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
22963           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
22964           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
22965           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
22966           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
22967           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
22968           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
22969           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
22970           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
22971           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
22972           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
22973           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
22974           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
22975           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
22976           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
22977           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
22978           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
22979           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
22980           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
22981
22982 2005-09-21  Jackson Harper  <jackson@ximian.com>
22983
22984         * TreeNode.cs: Call Before/After Expand not Collapse when
22985         expanding.
22986
22987 2005-09-20  Jackson Harper  <jackson@ximian.com>
22988         
22989         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
22990
22991 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
22992          
22993         * ListViewItem.cs:
22994                 - Fixes bug 76120
22995                 - Fixes proper storing of subitems
22996                 - Fixes not updated items
22997
22998 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
22999
23000         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
23001           things if our window handle isn't created yet. Also disabled 
23002           debug for TextBoxBase
23003
23004 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
23005
23006         * MenuAPI.cs: Remove filtering of events to allow menu usage
23007
23008 2005-09-20  Miguel de Icaza  <miguel@novell.com>
23009
23010         * Cursor.cs: Allow null to be passed to Cursor.Current.
23011
23012 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
23013
23014         * ThemeWin32Classic.cs:
23015           - Change some private methods/fields to protected virtual so that 
23016             they can be accessed and overriden in derived classes
23017           - First refactoring of some methods. Derived themes now don't 
23018             need to duplicate the complete code from ThemeWin32Classic
23019         * ThemeNice.cs:
23020           - Added nice StatusBar
23021           - Derive from ThemeWin32Classic and not Theme
23022           - Removed duplicate ThemeWin32Classic code
23023
23024 2005-09-20  Miguel de Icaza  <miguel@novell.com>
23025
23026         * Control.cs (ControlCollection.Add): If the value null is passed
23027         the control is ignored. 
23028
23029         Optimize this loop.
23030
23031 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
23032
23033         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
23034           PostQuitMessage state.
23035         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
23036
23037 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
23038
23039         * Application.cs: Our constructor will never get called, move 
23040           initialization to fields; fixes bug #75933
23041
23042 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
23043
23044         * FileDialog.cs :
23045                 - Allow files to be selected properly using file name
23046                 combo box.
23047                 - Add ability to change diretory (absolute / relative)
23048                 using file name combo box.
23049
23050 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
23051          
23052         * ListBox.cs: 
23053                 - Fixes Multicolumn listboxes item wrong calculations
23054                 - Allows to click when only one item is in the listbox
23055                 - Fixes crash when no items using keyboard navigation
23056
23057 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
23058
23059         * ComboBox.cs: Reverted almost everything from the latest patch which
23060           broke ComboBox
23061
23062 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
23063         
23064         * ToolTip.cs:
23065                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
23066         * ComboBox.cs:
23067                 - When DropDownStyle is Simple, it does not show scrollbar 
23068                 to the last item of the list.
23069                 - When DropDownStyle is Simple, it crashed when the list was 
23070                 scrolled down with the down cursor key.
23071                 - Fixed a bug that when DropDownStyle is DropDownList, the 
23072                 selected item was not shown.
23073                 - The position of the selected item was not preserved when 
23074                 the next dropdown happened.
23075         * ThemeWin32Classic.cs:
23076                 - Items were wrapped at the right end.
23077         * CheckedListBox.cs:
23078                 - Fixed Add method
23079         * ListBox.cs:
23080                 - Items should be fully shown.
23081                 - When resizing and vertical scrollbar disappeared, the item 
23082                 of index 0 should be on the top of the list.
23083                 - GetItemRectangle should consider the size of ver. scrollbar
23084         * StatusBar.cs:
23085                 - SizingGrip area should not be allocated when it is not 
23086                 displayed.
23087                 - Now it reflects MinWidth of the containing panel and 
23088                 fixed a crash that happens when its width becomes so small.
23089
23090 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
23091
23092         * CheckedListBox.cs: Fixes bug 76028
23093         * ListBox.cs: Fixes bug 76028
23094
23095 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
23096
23097         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
23098         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
23099
23100 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
23101
23102         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
23103
23104 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
23105
23106         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
23107
23108 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
23109
23110         * IRootGridEntry.cs: Added
23111         * PropertyGridCommands.cs: Added
23112         * PropertiesTab.cs: Added missing methods and property
23113         * PropertyGridView.cs: Made class internal
23114         * PropertyGridTextBox.cs: Made class internal
23115
23116 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
23117
23118         * MimeIcon.cs: Try to check some other environment variables
23119           if "DESKTOP_SESSION" returns "default"
23120
23121 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
23122
23123         * ThemeNice.cs: Corrected background colors (e.g. menus)
23124         * ColorDialog.cs: Use correct background colors for controls
23125
23126 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
23127
23128         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
23129
23130 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
23131
23132         * RichTextBox.cs: Added initial implementation
23133         * lang.cs: Removed. Was accidentally checked in long time ago
23134         * TODO: Removed. Contents were obsolete
23135
23136 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
23137                                                                                 
23138         * PropertiesTab.cs : Added
23139
23140 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
23141                                                                                 
23142         * PropertyGrid.cs : Update
23143         * PropertyGridView.cs : Update
23144         * System.Windows.Forms.resx : Added images and strings
23145
23146 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
23147
23148         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
23149  
23150 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
23151
23152         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
23153           a busy loop right after the Ungrab the X11 display is otherwise 
23154           blocked
23155
23156 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
23157
23158         * ThemeWin32Classic.cs: Optimise the use of clipping
23159
23160 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
23161
23162         * DataGrid.cs: fixes recursion bug
23163
23164 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
23165
23166         * ThemeNice.cs: 
23167           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
23168           - Cleanup
23169
23170 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
23171
23172         * ThemeNice.cs: Draw nice ProgressBars
23173
23174 2005-09-01  Miguel de Icaza  <miguel@novell.com>
23175
23176         * VScrollBar.cs: Another buglet found by Aaron's tool. 
23177
23178         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
23179         bug finder.
23180
23181 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
23182
23183         * ThemeNice.cs:
23184           - Added nicer menu drawing
23185           - Updated DrawTab
23186           - some refactoring
23187
23188 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
23189
23190         * CreateParams.cs (ToString): Made output match MS
23191         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
23192             handle is already created (to avoid forcing window creation)
23193         * XplatUIX11.cs: Set window text to caption after creating window,
23194           in case Text was set before window was created
23195         * Form.cs: Use this.Text instead of a static string as caption
23196
23197 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
23198
23199         * NotifyIcon.cs: Don't set the window to visible; this screws
23200           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
23201           OnPaint without a bitmap)
23202         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
23203           happen very often anyway; we could add the check to the WM_PAINT 
23204           event generation code
23205
23206 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
23207
23208         * NotifyIcon.cs: Fill the icon area with a background color, to 
23209           avoid 'residue' when transparent icons are drawn
23210         * XplatUIX11.cs:
23211           - Handle whole_window == client_window when destroying windows
23212           - SystrayAdd(): Set client_window to whole_window value to
23213             get mouse and other events passed to NotifyIcon
23214
23215 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
23216
23217         * Form.cs: Set proper default for Opacity property
23218         * NotifyIcon.cs:
23219           - ShowSystray(): Don't bother creating telling the OS
23220             about the systray item if no icon is provided
23221           - Now handles WM_NCPAINT message to deal with whole/client window
23222             split
23223           - Create window as visible to not get caught by Expose optimization
23224         * Hwnd.cs: Removed debug message
23225         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
23226           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
23227             PaintEventStart/End to use new client argument
23228         * TextBoxBase.cs:
23229           - Commented out debug messages
23230           - Switched PaintEventStart/End to use new client argument
23231         * XplatUI.cs: Added client window bool to PaintEventStart()/
23232           PaintEventEnd() calls, to support drawing in non-client areas
23233         * XplatUIDriver.cs: 
23234           - Added client window bool to PaintEventStart()/PaintEventEnd() 
23235             calls, to support drawing in non-client areas
23236           - Added conditional compile to allow using MWF BeginInvoke 
23237             on MS runtime
23238         * XplatUIX11.cs:
23239           - Added some conditional debug output
23240           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
23241             whole/client window split
23242           - Implemented handling of client argument to PaintEventStart()/End()
23243         * Control.cs:
23244           - Throw exception if BeginInvoke() is called and the window handle
23245             or one of the window's parent handles is not created
23246           - Added conditional compile to allow using MWF BeginInvoke on
23247             MS runtime
23248           - get_Parent(): Only sets parent if handle is created. This avoids
23249             forcing window handle creation when parent is set.
23250           - Now fires Layout and Parent changed events in proper order
23251           - Switched to use Handle instead of window.Handle for Z-Order setting,
23252             the get_Parent() patch above causes us to possibly get null for 'window'
23253           - Implemented handling of client argument to PaintEventStart()/End()
23254           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
23255             default handling)
23256           - Now sends a Refresh() to all child windows when Refresh() is called
23257
23258 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
23259
23260         * Form.cs: Added (non-functional) Opacity property
23261         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
23262
23263 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
23264         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
23265           use export MONO_THEME=nice to activate it.
23266           Currently supported controls:
23267           - Button
23268           - ComboBox
23269           - ScrollBar
23270           - TabControl (TabAlignment.Top only, other will follow)
23271         * ThemeEngine.cs: Add theme nice
23272         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
23273           if enabled
23274
23275 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
23276
23277         * Splitter.cs: Resize docked control and its neighbor.
23278
23279 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
23280         -- Making Windows with Menus layout correctly --
23281         * Form.cs : The first leg of the fix
23282                 Menu setter - adjust Client Size as needed to make space for the menu
23283                 SetClientSizeCore - doesn't call base version to be able to pass the 
23284                         menu handle to XplatUI.CalculateWindowRect
23285         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
23286         * XplatUIX11.cs: The critical second leg of the fix
23287                 GetWindowPos needs to use a recalculated client_rect
23288                 so that resizing the window doesn't break layout of child controls. 
23289                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
23290                 Lots of \t\n killed
23291
23292 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
23293
23294         * Label.cs: Now properly recalculates width and height on Font and Text
23295           changes if AutoSize is set
23296
23297 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
23298         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
23299
23300 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
23301
23302         * ImageList.cs: Makes ToString method compatible with MS
23303
23304 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
23305
23306         * MenuAPI.cs: fixes bug 75716
23307
23308 2005-08-11 Umadevi S <sumadevi@novell.com>
23309         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
23310
23311 2005-08-11 Umadevi S <sumadevi@novell.com>
23312         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
23313
23314 2005-08-10  Umadevi S <sumadevi@novell.com>
23315         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
23316
23317 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
23318
23319         * Menu.cs: fixes bug 75700
23320         * MenuAPI.cs: fixes navigation issues
23321
23322 2005-08-09  Umadevi S <sumadevi@novell.com>
23323         * CheckedListBox.cs - simple fix for GetItemChecked.
23324
23325 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
23326
23327         * ComboBox.cs: Serveral fixes
23328         * ListBox.cs: Serveral fixes
23329
23330 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
23331
23332         * ComboBox.cs: Fixes FindString methods and GetItemHeight
23333         * ListBox.cs: Fixes FindString methods
23334
23335 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
23336
23337         * DataGrid.cs: fixes bugs exposed by new tests
23338
23339 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
23340
23341         * Mime.cs: Compile Mono assembly references only if compiling
23342           with Mono (Allows to build with VS.Net again)
23343
23344 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
23345
23346         * Control.cs (PaintControlBackground): Draw background image
23347         corrrectly.
23348         (CheckForIllegalCrossThreadCalls): Stubbed.
23349         
23350         * Form.cs (OnCreateControl): Center when should be centered.
23351         
23352         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
23353
23354 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
23355
23356         * Binding.cs: Binding to properties should be case unsensitive
23357
23358 2005-07-18 vlindos@nucleusys.com
23359
23360         * DataGrid.cs: fixes setmember order
23361
23362 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
23363
23364         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
23365         * FileDialog.cs: FileDialog is now resizable and uses the new
23366           MimeIconEngine
23367
23368 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
23369
23370         * DataGridTextBoxColumn.cs: default value
23371         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
23372         * GridTableStylesCollection.cs: fixes checking MappingName
23373         * DataGridDrawingLogic.cs: fixes drawing logic issues
23374         * DataSourceHelper.cs: rewritten to make compatible with more data sources
23375         * DataGrid.cs: fixes    
23376
23377 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
23378
23379         * MimeGenerated.cs: Use case sensitive comparer for
23380           NameValueCollections
23381
23382 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
23383
23384         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
23385         * ThemeWin32Classic.cs: bug fixes, code refactoring
23386         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
23387         * DataGrid.cs: bug fixes, code refactoring
23388         * DataGridTextBox.cs: bug fixes, code refactoring
23389         * DataGridColumnStyle.cs:  bug fixes, code refactoring
23390         * Theme.cs:  bug fixes, code refactoring
23391
23392 2005-07-01  Peter Bartok  <pbartok@novell.com> 
23393
23394         * TextControl.cs: Quick fix for the reported crash on ColorDialog
23395           and other text box usage
23396
23397 2005-07-01  Jackson Harper  <jackson@ximian.com>
23398
23399         * TabControl.cs: Make sure the bottom of the tab covers the pages
23400         border.
23401
23402 2005-06-30  Peter Bartok  <pbartok@novell.com> 
23403
23404         * Form.cs (ShowDialog): Assign owner of the dialog
23405         * TextBoxBase.cs: Always refresh caret size when deleting, caret
23406           might have been moved to a tag with different height
23407
23408 2005-06-30  Jackson Harper  <jackson@ximian.com>
23409
23410         * Form.cs: Don't create an infinite loop when setting focus
23411         * MenuItem.cs: Don't dirty the parents if we don't have any
23412
23413 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
23414
23415         * LibSupport.cs: Rename
23416
23417 2005-06-29  Peter Bartok  <pbartok@novell.com>
23418
23419         * TextBoxBase.cs: Re-align caret after deleting a character
23420         * TextControl.cs:
23421           - DeleteChars(): Ensure that tag covers the provided position
23422           - StreamLine(): Drop reference for dropped tag
23423
23424 2005-06-29  Peter Bartok  <pbartok@novell.com> 
23425
23426         * TextControl.cs: 
23427           - Selections now work properly, anchoring at the initial location
23428             and properly extending in either direction (SetSelectionToCaret(),
23429             SetSelectionStart() and SetSelectionEnd())
23430           - No longer redraws the whole control on selection change, now
23431             calculates delta between previous and new selection and only
23432             invalidates/redraws that area
23433           - Fixed FindPos() math off-by-one errors
23434           - Changed DeleteChars() to verify the provided tag covers the
23435             provided position, selections may have a tag that doesn't cover
23436             the position if the selection is at a tag border
23437           - Fixed off-by-one errors in DeleteChars()
23438           - Added missing streamlining check in DeleteChars() to remove
23439             zero-length tags
23440           - Implemented Invalidate() method, now properly calculates exposures
23441             between two given lines/positions
23442           - Implemented SetSelection()
23443           - Obsoleted and removed FixupSelection()
23444           - Improved RecalculateDocument() logic, removing code duplication
23445
23446 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23447
23448         * LibSupport.cs: changes to match different input/output arguments.
23449
23450 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23451
23452         * LibSupport.cs: added libsupport.so init routine.
23453
23454 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
23455         
23456         * ControlBindingsCollection.cs
23457                 - Throws an exception on null datasource when adding
23458                 - Checks for duplicated bindings when adding
23459
23460 2005-06-28  Jackson Harper  <jackson@ximian.com>
23461
23462         * TreeView.cs (OnKeyDown): Support left and right properly
23463         (navigates as well as expanding and collapsing.
23464         - Add support for Multiply, this expands all the selected nodes
23465         children.
23466         - Fix some tabbing.
23467
23468 2005-06-28  Jackson Harper  <jackson@ximian.com>
23469
23470         * TreeView.cs: Implement keyboard navigation, currently supports,
23471         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
23472         support for toggling checkboxes with the space bar.
23473
23474 2005-06-28  Jackson Harper  <jackson@ximian.com>
23475
23476         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
23477         tree.
23478
23479 2005-06-28  Jackson Harper  <jackson@ximian.com>
23480
23481         * TreeView.cs: Add missing event.
23482
23483 2005-06-27  Peter Bartok  <pbartok@novell.com> 
23484
23485         * TextControl.cs:
23486           - Made line ending size configurable (now allows for counting 
23487             lineendings as \n or \r\n)
23488           - Added margin to viewport to keep caret visible on right side
23489           - Fixed translation routines for line/pos to documentpos to consider
23490             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
23491           - Fixed some line-endings to be unix style
23492           - Fixed Document.FormatText to perform it's calculations 1-based
23493           - Added descriptions for a few methods that might otherwise get 
23494             used wrong
23495           - Added NOTE section with some basic conventions to remember at 
23496             the top of the file
23497           - Major fixup for RichTextBox selection drawing:
23498             * Fixed crashes when multiple tags on a single line were selected
23499             * fixed selection box drawing not overlaying text
23500             * fixed bogus offset calculation for tags not starting at index 1
23501             * Switched behaviour from using multiple Substrings of a 
23502               StringBuilder.ToString() to using multiple 
23503               StringBuilder.ToString(start, length) statements, hoping this is
23504               faster (kept original version commented out in the code, in case
23505               original version was faster)
23506         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
23507           alignment != Left
23508         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
23509           call it as well
23510
23511 2005-06-27  Jackson Harper  <jackson@ximian.com>
23512
23513         * TabControl.cs: Move to the left and right with the arrow
23514         keys. These keys don't cycle beyond first and last like
23515         tab. Refresh all the tabs when scrolling them to the left or
23516         right.
23517
23518 2005-06-27  Jackson Harper  <jackson@ximian.com>
23519
23520         * TabControl.cs:
23521           - ToString: Added method
23522           - CreateParams: Remove TODO and comment
23523           - OnKeyDown: Cycle through bounds properly.
23524           - SelectedIndex: Scroll to the right or left if we need to
23525           display the newly selected tab.
23526
23527 2005-06-23  Jackson Harper  <jackson@ximian.com>
23528
23529         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
23530         set.
23531
23532 2005-06-23  Jackson Harper  <jackson@ximian.com>
23533
23534         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
23535         CTRL-SHIFT-TAB, and HOME, END are there any others?
23536
23537 2005-06-23  Jackson Harper  <jackson@ximian.com>
23538
23539         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
23540
23541 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
23542         
23543         * DataGridTextBoxColumn.cs: fixes and enhancements
23544         * ThemeWin32Classic.cs: fixes and enhancements
23545         * DataGridBoolColumn.cs:  fixes and enhancements
23546         * DataGridDrawingLogic.cs:  fixes and enhancements
23547         * CurrencyManager.cs: fixes and enhancements
23548         * DataGrid.cs: fixes and enhancements
23549         * DataGridColumnStyle.cs:  fixes and enhancements
23550
23551 2005-06-22  Jackson Harper  <jackson@ximian.com>
23552
23553         * TabControl.cs: Add some missing methods that just call into the
23554         base. Make the TabPageCollection's IList interface behave in the
23555         same manner as the MS implementation.
23556
23557 2005-06-22  Peter Bartok  <pbartok@novell.com> 
23558
23559         * TextControl.cs: Added sanity check
23560         * TextBoxBase.cs: 
23561           - Fixed wrapping behaviour, don't set wrap on single line controls
23562             (this fixes the breakage of colordialog introduced in an earlier
23563              checkin)
23564           - Added rudimentary support for autoscrolling right-aligned controls
23565             (still needs fixing, also, center alignment scroll is missing)
23566
23567 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
23568         
23569         * ScrollBar.cs: Fixes thumbpos on Maximum values
23570
23571 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
23572         
23573         * PropertyGridView.cs: Pass context information to UITypeEditors 
23574
23575 2005-06-21  Peter Bartok  <pbartok@novell.com> 
23576
23577         * TextBoxBase.cs:
23578           - Now calling PositionCaret with absolute space coordinates
23579           - Enabled vertical scrolling
23580           - Better tracking of scrollbar changes, tied into WidthChange
23581             event
23582           - Improved cursor tracking
23583           - Removed debug output
23584         * TextControl.cs:
23585           - PositionCaret coordinates are now works in absolute space, not 
23586             the canvas
23587           - Improved tracking of document size
23588           - Added events for width and height changes
23589
23590 2005-06-21  Peter Bartok  <pbartok@novell.com>
23591
23592         * Form.cs: Set focus to active control when form is activated
23593         * TextControl.cs: 
23594           - Added word-wrap functionality to RecalculateLine() 
23595           - Added some short function descriptions for VS.Net to aid in
23596             writing dependent controls
23597           - Added Caret property, returning the current coords of the caret
23598           - Added ViewPortWidth and ViewPortHeight properties
23599           - Added Wrap property
23600           - Added CaretMoved event
23601           - Removed some old debug code
23602           - Split() can now create soft splits
23603           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
23604           - Added method to format existing text
23605           - Fixed size/alignment calculations to use viewport
23606           - RecalculateDocument now can handle changing line-numbers while
23607             calculating lines
23608
23609         * TextBox.cs:
23610           - Added some wrap logic, we don't wrap if alignment is not left
23611           - Added casts for scrollbar var, base class switched types to
23612             also support RichTextBoxA
23613           - Implemented handling of scrollbar visibility flags
23614
23615         * TextBoxBase.cs:
23616           - Switched scrollbars type to RichTextBoxScrollBars to support
23617             RichTextBox
23618           - Added tracking of canvas width/height
23619           - Switched scrollbars to be not selectable (to keep focus on text)
23620           - Added central CalculateDocument() method to handle all redraw
23621             requirements
23622           - Added ReadOnly support
23623           - Added WordWrap support
23624           - Fixed handling of Enter key (we now treat it as a DialogKey)
23625           - Fixed caret positioning when h or v scroll is not zero
23626           - Fixed placing/generation of vertical scrollbar
23627           - Added CalculateScrollBars() method to allow updating scrollbar
23628             limits and visibility
23629           - Fixed handling of horizontal scroll
23630           - Added handling of vertical scroll
23631           - Implemented auto-'jump' when caret moves to close to a left or
23632             right border and there is text to be scrolled into view (currently
23633             there's the potential for a stack overflow, until a bug in
23634             scrollbar is fixed)
23635
23636 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
23637         
23638         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
23639
23640 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
23641
23642         * Mime.cs:
23643         - added inodes.
23644         - return application/x-zerosize for files with size zero
23645           (if no extension pattern matches).
23646         - check matches collection for strings too.
23647         - return only the first mime type if the name value
23648           collection has more than one mime type.
23649
23650 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
23651         
23652         * PropertyGrid.cs: Cleaned up some TODOs
23653         * PropertyGridView.cs: Added support for UITypeEditors
23654
23655 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
23656         
23657         * DataGrid.cs: clears cached value
23658
23659 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
23660
23661         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
23662         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
23663         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
23664         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
23665         
23666 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
23667
23668         * ThemeWin32Classic.cs: fixes colour
23669
23670 2005-06-15  Peter Bartok  <pbartok@novell.com>
23671
23672         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
23673         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
23674         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
23675         * Control.cs: Added some MWFCategory and MWFDescription attributes
23676         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
23677
23678 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
23679
23680         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
23681         usage
23682
23683 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
23684
23685         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
23686         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
23687         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
23688         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
23689         * DataGrid.cs: default datagrid settings for Default Styles, fixes
23690         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
23691
23692 2005-06-13  Jackson Harper  <jackson@ximian.com>
23693
23694         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
23695         isn't printed when the user enables dropping. (X11 does accept
23696         drops).
23697         
23698 2005-06-13  Jackson Harper  <jackson@ximian.com>
23699
23700         * TreeView.cs: Remove some TODOS.
23701
23702 2005-06-13  Jackson Harper  <jackson@ximian.com>
23703
23704         * Form.cs: Hook into the mdi framework.
23705         * MdiClient.cs: Use the base control collections add method so
23706         parents get setup correctly. Set the default back colour and dock
23707         style.
23708         * MdiChildContext.cs: New class, this bad actor handles an
23709         instance of an MDI window. Right now there is only basic
23710         support. You can drag, close, and resize windows. Minimize and
23711         Maximize are partially implemented.
23712
23713 2005-06-13  Jackson Harper  <jackson@ximian.com>
23714
23715         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
23716         freaky when both vals are negative. NOTE: There are probably other
23717         places in XplatUIX11 that this needs to be done.
23718
23719 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
23720
23721         * DataGrid.cs: implement missing methods, move KeyboardNavigation
23722         * DataGridColumnStyle.cs: fixes signature
23723
23724 2005-06-12  Jackson Harper  <jackson@ximian.com>
23725
23726         * XplatUIX11.cs: Use sizing cursors similar to the ones on
23727         windows.
23728
23729 2005-06-11  Jackson Harper  <jackson@ximian.com>
23730
23731         * StatusBarPanel.cs: Signature cleanups. Implement
23732         BeginInit/EndInit.
23733
23734 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
23735
23736         * DataGridTextBoxColumn.cs: Honors aligment
23737         * GridColumnStylesCollection.cs: Contains is case unsensitive
23738         * GridTableStylesCollection.cs: several fixes
23739         * DataGridTableStyle.cs: default column creation
23740         * DataGridDrawingLogic.cs: fixes
23741         * CurrencyManager.cs: ListName property
23742         * DataGrid.cs: multiple styles support
23743         * DataGridColumnStyle.cs: fixes
23744         
23745
23746 2005-06-10  Peter Bartok  <pbartok@novell.com>
23747
23748         * Control.cs(Select): Moved SetFocus call to avoid potential
23749           loops if controls change the active control when getting focus
23750         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
23751           the up/down buttons
23752
23753 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
23754
23755         * ImageListConverter.cs: Implemented
23756
23757 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
23758
23759         * MonthCalendar.cs: Wired in NumericUpDown control for year
23760
23761 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
23762
23763         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
23764           DoubleClick events, since they are not meant to be fired.
23765
23766 2005-06-09  Peter Bartok  <pbartok@novell.com>
23767
23768         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
23769           Jonathan's standalone controls into MWF, implemented missing
23770           events, attributes and methods; added xxxAccessible classes
23771         * AccessibleObject.cs: Made fields internal so other classes
23772           can change them if needed
23773
23774 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
23775
23776         * UpDownBase.cs: Complete implementation
23777         * NumericUpDown.cs: Complete implementation
23778         * DomainUpDown.cs: Complete implementation
23779
23780 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
23781
23782         * DataGridTextBoxColumn.cs: drawing fixes
23783         * DataGridCell.cs: fixes ToString method to match MSNet
23784         * DataGridTableStyle.cs: fixes
23785         * DataGridBoolColumn.cs: fixes, drawing
23786         * DataGridDrawingLogic.cs: fixes, new methods
23787         * DataGridTextBox.cs: Keyboard and fixes
23788         * DataGrid.cs:
23789                 - Keyboard navigation
23790                 - Scrolling fixes
23791                 - Row selection (single, multiple, deletion, etc)
23792                 - Lots of fixes
23793         
23794 2005-06-07  Jackson Harper  <jackson@ximian.com>
23795
23796         * ThemeWin32Classic.cs: Clear the background area when drawing
23797         buttons.
23798
23799 2005-06-06  Peter Bartok  <pbartok@novell.com>
23800
23801         * ImageListStreamer.cs: Fixed signature for GetData
23802         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
23803         * ComboBox.cs:
23804           - Added missing ChildAccessibleObject class
23805           - Added missing OnXXXFocus overrides, switched to using those
23806             instead of the event handler
23807         * Control.cs:
23808           - Added Parent property for ControlAccessibleObject
23809           - Fixed signatures
23810           - Fixed attributes
23811           - Added ResetBindings()
23812         * ListBindingConverter.cs: Implemented some methods
23813         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
23814         * ImageList.cs: Implemented basic handle scheme, removed TODOs
23815         * ContainerControl.cs: Fixed signature, now subscribing to the
23816           ControlRemoved event instead of overriding the handler, LAMESPEC
23817         * CurrencyManager.cs: Added missing attribute
23818         * MonthCalendar.cs: Added missing properties
23819
23820 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
23821
23822         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
23823         
23824 2005-06-06  Gaurav Vaish and Ankit Jain
23825
23826         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
23827         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
23828         
23829 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
23830
23831         * Control.cs: fixes CreateParams Width / Height.
23832
23833 2005-06-05  Peter Bartok  <pbartok@novell.com>
23834
23835         * Win32DnD.cs: Removed compilation warnings
23836
23837 2005-06-05  Peter Bartok  <pbartok@novell.com>
23838
23839         * Control.cs (CreateParams): Since we don't know if one of the
23840           properties we use is overridden, lets make sure if we fail accessing
23841           we continue with a backup plan
23842
23843 2005-06-05  Peter Bartok  <pbartok@novell.com>
23844
23845         * Win32DnD.cs:
23846           - Removed debug output
23847           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
23848             struct
23849           - Plugged resource leak
23850         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
23851           MS size
23852
23853 2005-06-05  Peter Bartok  <pbartok@novell.com>
23854
23855         * XplatUIWin32.cs: Removed DnD code
23856         * Win32DnD.cs: Implemented drop source and drop target functionality
23857
23858 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23859
23860         * UpDownBase.cs: remove duplicate addition of event, enable some code
23861         that was commented out.
23862         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
23863         Validate input when a key is pressed. It works fine now for every
23864         combination of Hexadecimal. Only missing some drawing love when sharing
23865         space with other controls.
23866
23867 2005-06-04  Peter Bartok  <pbartok@novell.com>
23868
23869         * Control.cs:
23870           - We need to pass a window for DragDrop, so enable callback events
23871           - Added DnD callback events when being a DragSource
23872         * XplatUI.cs (StartDrag): Added window handle argument
23873         * XplatUIDriver.cs (StartDrag): Added window handle argument
23874         * QueryContinueDragEventArgs: Made fields internally accessible so
23875           drivers can set them
23876         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
23877           can set them
23878
23879 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
23880
23881         * DataGridTextBoxColumn.cs: column text editing
23882         * DataGridTableStyle.cs: Respect columns styles created by the user
23883         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
23884         * DataGridBoolColumn.cs: bool column editing
23885         * DataGrid.cs: fixes to scrolling, properties, etc
23886         * DataGridTextBox.cs: handle keyboard
23887         * DataGridColumnStyle.cs: fixes
23888
23889 2005-06-02  Jackson Harper  <jackson@ximian.com>
23890
23891         * ImageListStreamer.cs: Somewhat broken implementation of
23892         GetObjectData. The RLE needs some work to match MS properly.
23893
23894 2005-06-02  Jackson Harper  <jackson@ximian.com>
23895
23896         * X11Dnd.cs: Attempting to keep at least one file in MWF
23897         monostyled.
23898
23899 2005-06-02  Peter Bartok  <pbartok@novell.com>
23900
23901         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
23902           that way
23903
23904 2005-06-02  Peter Bartok  <pbartok@novell.com>
23905
23906         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
23907         * XplatUI.cs: Added DoDragDrop() method
23908         * XplatUIDriver.cs: Added DoDragDrop() method
23909
23910 2005-06-02  Jackson Harper  <jackson@ximian.com>
23911
23912         * Splitter.cs: Implement BorderStyle.
23913
23914 2005-06-02  Jackson Harper  <jackson@ximian.com>
23915
23916         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
23917         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
23918         X11 using XDND.
23919
23920 2005-06-02  Peter Bartok  <pbartok@novell.com>
23921
23922         * DataObject.cs:
23923           - Added Data setter
23924           - Fixed broken insertion code for SetData, now also
23925             overwrites any existing entry of the same format name
23926         * Hwnd.cs: Added list of pointers that automatically gets
23927           freed when the window is disposed
23928         * XplatUI.cs: Call driver initialization method when loading
23929           a driver
23930         * Control.cs:
23931           - OnDragLeave takes EventArgs, not DragEventArgs
23932           - Added setting of WS_EX_ACCEPTFILES style when dropping is
23933             supported
23934           - Forces style update when drop state changes
23935         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
23936           not perfect since we cannot (yet) call the IDataObject.GetData()
23937           method, we keep getting 0x80004005 error, dunno why)
23938
23939 2005-06-02  Peter Bartok  <pbartok@novell.com>
23940
23941         * DragEventArgs.cs: Make fields internal so we can cache the
23942           object and re-set the fields from XplatUI
23943
23944 2005-06-02  Jackson Harper  <jackson@ximian.com>
23945
23946         * Control.cs: Add some internal methods so the DnD subsystem can
23947         raise DnD events. Also call into the driver when AllowDrop is set.
23948         * XplatUI.cs:
23949         * XplatUIDriver.cs: New method for setting whether or not a window
23950         is allowed to accept drag and drop messages.
23951                 
23952 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
23953         
23954         * ScrollBar.cs: Make sure that values sent in Scroll events
23955         are always between Maximum and Minimum.
23956
23957 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
23958
23959         * Menu.cs: Call MenuChanged when menuitem visibility has been
23960         changed.
23961         * MenuItem.cs: Rebuild menu when item is (not) visible.
23962         * MainMenu.cs: MainMenu has special MenuChanged.
23963         * Theme.cs: Caption and FrameBorderSize are not fixed.
23964         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
23965         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
23966         * XplatUIX11.cs,
23967         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
23968         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
23969
23970 2005-05-30  Jackson Harper  <jackson@ximian.com>
23971
23972         * DataFormat.cs: We can't statically initialize this stuff because
23973         it calls into the xplatui and could create a loop. So we lazy init
23974         it.
23975
23976 2005-05-28  Jackson Harper  <jackson@ximian.com>
23977
23978         * Control.cs: Proper implementation of Product(Name/Version).
23979
23980 2005-05-27  Jackson Harper  <jackson@ximian.com>
23981
23982         * DataObject.cs: Dont crash if no data is found.
23983
23984 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
23985         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
23986                 as per status page, guessing it should be set to true
23987
23988 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
23989
23990         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
23991         * DataGridTableStyle.cs: set proper formatting text, def header text
23992         * ThemeWin32Classic.cs: new themable paramaters
23993         * DataGridBoolColumn.cs: paint check box, get data, fixes
23994         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
23995         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
23996         * DataGridColumnStyle.cs: fixes
23997         * Theme.cs: new themable paramaters
23998                 
23999 2005-05-26  Peter Bartok  <pbartok@novell.com>
24000
24001         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
24002
24003 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
24004         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
24005
24006 2005-05-24  Peter Bartok  <pbartok@novell.com>
24007
24008         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
24009           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
24010           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
24011           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
24012           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
24013           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
24014           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
24015           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
24016           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
24017           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
24018           missing attributes, etc
24019         * DataGridPreferredColumnWidthTypeConverter.cs: Added
24020
24021 2005-05-24  Peter Bartok  <pbartok@novell.com>
24022
24023         * Help.cs: Added, implemented trivial functions, throws up MessageBox
24024           when user tries to get help
24025         * DataObject.cs, DataFormats.cs, LinkArea.cs,
24026           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
24027           to suppress warnings
24028         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
24029           avoid unreachable code warning
24030
24031 2005-05-20  Peter Bartok  <pbartok@novell.com>
24032
24033         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
24034
24035 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
24036
24037         * DataGridTextBoxColumn.cs: Basic painting methods
24038         * DataGridTableStyle.cs: Set table style in the column
24039         * ThemeWin32Classic.cs: Use Theme for colors
24040         * DataGridDrawingLogic.cs: Implement more drawing
24041         * DataGrid.cs: drawing, theming, enhacements, fixes
24042         * DataGridColumnStyle.cs: fixes, drawing
24043         * Theme.cs: theming for Datagrid
24044
24045 2005-05-20  Peter Bartok  <pbartok@novell.com>
24046
24047         * Cursor.cs: Implemented GetObjectData() method
24048
24049 2005-05-20  Peter Bartok  <pbartok@novell.com>
24050
24051         * Cursors.cs: Added setting of cursor name
24052         * Cursor.cs:
24053           - Implemented constructors
24054           - Implemented Draw and DrawStretched
24055           - Implemented Current property
24056           - Implemented == and != operators
24057           - Implemented Dispose()
24058           - Implemented ToString
24059           - Added missing attributes
24060         * XplatUIX11.cs:
24061           - Added missing reset for OverrideCursor when DoEvents is called
24062           - Fixed creation of cursor, logic was wrong
24063         * XplatUIWin32.cs:
24064           - Added missing reset for OverrideCursor when DoEvents is called
24065           - Fixed creation of cursor, bit arrays were swapped
24066         * Clipboard.cs: Removed obsolete MonoTODO attribute
24067
24068 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
24069
24070         * ComboBox.cs: fixes OnSelectedItemChanged
24071         * ControlBindingsCollection.cs: fixes item range check
24072
24073 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
24074
24075         * UpDownBase.cs:
24076                 - Calc preferred height properly
24077                 - Implement missing properties
24078                 
24079         * NumericUpDown.cs: Implement missing events
24080
24081 2005-05-19  Jackson Harper  <jackson@ximian.com>
24082
24083         * TabControl.cs: New method that resizes the tab pages before
24084         redrawing them. This as needed as the control is double buffered
24085         and sizing will not be recalculated unless ResizeTabPages is
24086         called.
24087         * TabPage.cs: Set base.Text instead of Text in the constructor so
24088         that UpdateOwner does not get called. Use the new Redraw method of
24089         TabControl instead of Refresh so the sizing is recalculated.
24090         * ThemeWin32Classic.cs: Draw the text for button tabs.
24091
24092 2005-05-19  Jackson Harper  <jackson@ximian.com>
24093
24094         * Control.cs: Paint control background images. Fix typo where
24095         PaintControlBackground was not getting called correctly.
24096
24097 2005-05-19  Peter Bartok  <pbartok@novell.com>
24098
24099         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
24100           I can investigate, apparently I broke FileDialog
24101
24102 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
24103
24104         * AxHost.cs: Some simple properties.
24105         * Control.cs: window must be accessible after ctor.
24106         * Form.cs: Added TransparencyKey property.
24107         * TextBoxBase.cs: Implemented Clear. Text property can be null.
24108         * XplatUIWin32.cs: SetBorderStyle implemented.
24109
24110 2005-05-18  Peter Bartok  <pbartok@novell.com>
24111
24112         * DataObject.cs: Entries are not global but particular to the
24113           DataObject, now it behaves that way
24114         * XplatUIWin32.cs: Implemented Clipboard methods
24115         * Clipboard.cs: Implemented
24116         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
24117         * XplatUIOSX.cs: Updated to final clipboard prototypes
24118         * XplatUIX11.cs: Implemented Clipboard methods
24119         * XplatUIDriver.cs: Updated to final clipboard prototypes
24120         * XplatUIStructs.cs:
24121           - Added BITMAPINFOHEADER struct
24122           - Added ClipboardFormats enum
24123         * X11Structs.cs:
24124           - Added ClipboardStruct
24125           - Added Atom enum items for clipboard types
24126           - Fixed atom types for Selection event structures
24127         * DataFormats.cs:
24128           - Added internal properties and methods for drivers to enumerate
24129             all known formats
24130           - Switched initialization method to allow drivers to assign their
24131             own IDs even for the MS predefined clipboard IDs
24132         * XplatUI.cs: Updated to final clipboard interface
24133
24134 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
24135         * PropertyGridView.cs: Fixed compiler warnings.
24136
24137 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
24138         * PropertyGrid.cs: Added some event calls
24139         * PropertyGridView.cs: Change drawing code to use double buffering
24140         * PropertyGridTextBox.cs: Changed Text property name
24141         * GridItem.cs: Added Bounds property.
24142         * GridEntry.cs: Added Bounds property.
24143
24144 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
24145
24146         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
24147         since GetType() may not return the correct type if the object is
24148         a remoting proxy.
24149
24150 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
24151
24152         * TreeNodeCollection.cs: fixes get/set item ranges
24153         
24154 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
24155
24156         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
24157                 
24158 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
24159
24160         * ComboBox.cs: Fix item range comparation
24161         * ListView.cs: Fix item range comparation
24162
24163 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
24164
24165         * FontDialog.cs:
24166           - Clear example panel when OnPaint is called
24167           - Better solution for displaying the example panel text
24168           - Select default indexes in the ListBoxes
24169
24170 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
24171
24172         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
24173
24174 2005-05-11  Peter Bartok  <pbartok@novell.com>
24175
24176         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
24177         * SelectionRangeConverter.cs: Implemented
24178         * PropertyGrid.cs: Fixed attribute value
24179         * Control.cs:
24180           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
24181           - Added Sebastien Pouliot's CAS Stack Propagation fixes
24182         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
24183           that's common to all drivers. First methods to go there are
24184           Sebastien Pouliot's CAS Stack Propagation helper methods
24185         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
24186           Sebastien Pouliot for CAS Stack Propagation
24187
24188 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
24189
24190         * OSXStructs.cs:
24191           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
24192
24193 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
24194
24195         * DataGridTextBoxColumn.cs: fixed some members
24196         * GridColumnStylesCollection.cs: indexed column is case insensitive
24197         * DataGridTableStyle.cs: fixes
24198         * ThemeWin32Classic.cs: add new theme parameter
24199         * Theme.cs: add new theme parameter
24200         * DataGridDrawingLogic.cs: Datagrid's drawing logic
24201         * DataGrid.cs: fixes, new internal properties, etc.
24202         * DataGridColumnStyle.cs: allows to set grid value
24203         *
24204
24205 2005-05-10  Peter Bartok  <pbartok@novell.com>
24206
24207         * AccessibleObject.cs:
24208           - Removed MonoTODO attribute on help, method is correct
24209           - Fixed Bounds property
24210         * AxHost.cs: Moved MonoTODO
24211         * ButtonBase.cs: Now setting AccessibleObject properties
24212         * RadioButton.cs: Setting proper AccessibleObject role
24213         * CheckBox.cs: Setting proper AccessibleObject role
24214         * ControlBindingsCollection.cs: Added properties, methods and attributes
24215         * DataFormats.cs: Fixed awkward internal API, and changed to enable
24216           userdefined DataFormats.Format items as well
24217         * ListControl.cs: Removed data_member from the public eye
24218         * OpenFileDialog.cs:
24219           - Made class sealed
24220           - Added missing attributes
24221         * SaveFileDialog.cs: Added missing attributes
24222         * ImageListStreamer.cs: Fixed code that caused warnings
24223         * LinkLabel.cs: Removed unreachable code
24224         * TreeView.cs: Fixed code that caused warnings
24225         * PropertyGridView.cs: Fixed code that caused warnings
24226         * GridColumnStylesCollection.cs: Added missing attributes
24227         * GridTableStylesCollection: Added missing attribute
24228         * PropertyManager: Added .ctor
24229         * SecurityIDType: Added
24230         * DataObject.cs: Implemented class
24231         * LinkArea.cs: Added missing attribute
24232
24233 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
24234
24235         * RadioButton.cs: call base method to allow to fire OnClick event
24236         * UpDownBase.cs: OnMouseUp call base method
24237         * CheckedListBox.cs: call base method before returning
24238         * TrackBar.cs: call base method before returning
24239         
24240
24241 2005-05-10  Peter Bartok  <pbartok@novell.com>
24242
24243         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
24244           for messages
24245
24246 2005-05-10  Peter Bartok  <pbartok@novell.com>
24247
24248         * DataFormats.cs: Implemented
24249         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
24250           XplatUIX11.cs: Added Clipboard APIs
24251         * XplatUIWin32.cs: Implemented Clipboard APIs
24252         * FolderBrowserDialog.cs: Added missing event, attributes
24253
24254 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
24255
24256         * CheckBox.cs: call base method to allow to fire OnClick event
24257
24258 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
24259
24260         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
24261
24262 2005-05-06  Peter Bartok  <pbartok@novell.com>
24263
24264         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
24265         * Screen.cs: Implemented
24266         * HelpNavigator.cs: Added
24267         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
24268           property
24269         * HelpProvider.cs: Implemented all we can do until we have a CHM
24270           help library (which means that "What's This" does work now)
24271
24272 2005-05-06  Jackson Harper  <jackson@ximian.com>
24273
24274         * XplatUIX11.cs: Fix waking up the main loop.
24275                 
24276 2005-05-05  Peter Bartok  <pbartok@novell.com>
24277
24278         * XplatUI.cs: Updated revision
24279         * Form.cs: Removed enless loop
24280         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
24281         * Label.cs (OnPaint): Added call to base.OnPaint()
24282         * ToolTip.cs: Made ToolTipWindow reusable for other controls
24283         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
24284         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
24285         * AxHost.cs: Added
24286         * ButtonBase.cs: Moved base.OnPaint() call to end of method
24287         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
24288           to ToolTip.ToolTipWindow for drawing and size methods; this allows
24289           reuse of ToolTipWindow by other controls
24290         * SizeGrip.cs: Moved base.OnPaint() call to end of method
24291         * XplatUIX11.cs: Now clipping drawing area (experimental)
24292         * PictureBox.cs: Moved base.OnPaint() call to end of method
24293         * Theme.cs: Fixed ToolTip abstracts to match new format
24294         * ErrorProvider.cs: Implemented
24295
24296 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
24297
24298         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
24299         * LinkLabel.cs:
24300                 - Adds cursors
24301                 - Handles focus
24302                 - Implements LinkBehavior
24303                 - Fixes many issues
24304
24305 2005-05-03  Jackson Harper  <jackson@ximian.com>
24306
24307         * ListView.cs: Calculate the scrollbar positioning on resize and
24308         paint, so they get put in the correct place.
24309
24310 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
24311
24312         * ColorDialogs.cs: The small color panels are now handled by
24313           SmallColorControl. This fixes drawing of the focus rectangle
24314           and adds a 3D border.
24315
24316 2005-05-03  Peter Bartok  <pbartok@novell.com>
24317
24318         * Control.cs: Modified version of Jonathan Chamber's fix for
24319           double-buffering
24320
24321 2005-05-03  Jackson Harper  <jackson@ximian.com>
24322
24323         * ListView.cs: Remove redraw variable. Control now handles whether
24324         or not a redraw needs to be done, and will only raise the paint
24325         event if redrawing is needed.
24326
24327 2005-05-03  Jackson Harper  <jackson@ximian.com>
24328
24329         * Splitter.cs: No decorations for the splitter form. Cache the
24330         hatch brush.
24331
24332 2005-05-03  Jackson Harper  <jackson@ximian.com>
24333
24334         * TreeView.cs: Use dashed lines to connect nodes. Use the
24335         ControlPaint method for drawing the focus rect instead of doing
24336         that in treeview.
24337
24338 2005-05-02  Peter Bartok  <pbartok@novell.com>
24339
24340         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
24341
24342 2005-04-29  Jackson Harper  <jackson@ximian.com>
24343
24344         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
24345         entire image buffer. Just clear the clipping rectangle.
24346
24347 2005-04-29  Jackson Harper  <jackson@ximian.com>
24348
24349         * ThemeWin32Classic.cs: Don't draw list view items that are
24350         outside the clipping rectangle.
24351
24352 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
24353
24354         * ListBox.cs: added horizontal item scroll
24355
24356 2005-04-29  Jackson Harper  <jackson@ximian.com>
24357
24358         * ThemeWin32Classic.cs: Remove some old debug code that was
24359         causing flicker with the new double buffering code.
24360
24361 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
24362
24363         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
24364         behave like combobox and comboboxlist (still not sure if this is
24365         correct though).
24366
24367 2005-04-28  Jackson Harper  <jackson@ximian.com>
24368
24369         * ThemeWin32Classic.cs: Don't fill the middle of progress
24370         bars. This fills areas outside of the clip bounds that don't need
24371         to be filled.
24372
24373 2005-04-28  Jackson Harper  <jackson@ximian.com>
24374
24375         * Control.cs: Don't expose functionality to touch the image buffers.
24376         * ProgressBar.cs:
24377         * ListView.cs: We do not need to (and no longer can) manipulate
24378         the image buffers directly. All of this is handled by Control.
24379
24380 2005-04-28  Peter Bartok  <pbartok@novell.com>
24381
24382         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
24383           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
24384           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
24385
24386 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
24387
24388         * Combobox:
24389                 - Adjust control's height for non-simple comboboxes (bug fix)
24390                 - Remove dead code
24391         * MenuAPI.cs: remove unused var
24392         * ScrollBar.cs: remove unsed var
24393                  
24394         * ListBox.cs: unselect items when clearing
24395
24396 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
24397
24398         * ListControl.cs: honors OnPositionChanged and default Selected Item
24399         * ListBox.cs: unselect items when clearing
24400
24401 2005-04-27  Jackson Harper  <jackson@ximian.com>
24402
24403         * X11Keyboard.cs: Initialize a default keyboard and give a warning
24404         if a "correct" keyboard is not found. This will make us not crash,
24405         but might give some users bad keyboard layouts...seems to be the
24406         same thing rewind does.
24407
24408 2005-04-27  Jackson Harper  <jackson@ximian.com>
24409
24410         * BindingManagerBase.cs: Attach the current/position changed
24411         handlers to their respective events.
24412
24413 2005-04-27  Jackson Harper  <jackson@ximian.com>
24414
24415         * Control.cs: Make sure that the first WM_PAINT does a full draw,
24416         not just a blit.
24417         * ThemeWin32Classic.cs: Don't fill the background for picture
24418         boxes. This could overright user drawing.
24419         * ComboBox.cs: Just fill the clipping rect not the entire client
24420         rect when drawing the background. This prevents pieces of the
24421         image buffer from getting overwritten and is theoretically faster.
24422
24423 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
24424
24425         * ComboBox.cs: Databinding support fixes, fire missing events
24426         * ListControl.cs: implement missing methods and properties, fixes
24427         * ThemeWin32Classic.cs: Databiding support on Drawing
24428         * CheckedListBox.cs: Databinding support fixes, fire missing events
24429         * ListBox.cs: Databinding support fixes, fire missing events
24430         
24431 2005-04-25  Peter Bartok  <pbartok@novell.com>
24432
24433         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
24434
24435 2005-04-25  Jackson Harper  <jackson@ximian.com>
24436
24437         * TreeView.cs: Use the horizontal scrollbars height not width when
24438         determining how much of the client area is available.
24439
24440 2005-04-25  Jackson Harper  <jackson@ximian.com>
24441
24442         * Control.cs: Double buffering is handled differently now. As per
24443         the spec, the extra buffer is created in the WM_PAINT message and
24444         passed down to the control's drawing code.
24445         * GroupBox.cs:
24446         * Label.cs:
24447         * CheckBox.cs:
24448         * ProgressBar.cs:
24449         * RadioButton.cs:
24450         * ColorDialog.cs:
24451         * ComboBox.cs:
24452         * PropertyGridView.cs:
24453         * UpDownBase.cs:
24454         * MessageBox.cs:
24455         * MenuAPI.cs:
24456         * ListView.cs:
24457         * ButtonBase.cs:
24458         * SizeGrip.cs:
24459         * ScrollBar.cs:
24460         * ListBox.cs:
24461         * TrackBar.cs:
24462         * ToolBar.cs:
24463         * PictureBox.cs:
24464         * DateTimePicker.cs:
24465         * StatusBar.cs:
24466         * TreeView.cs: Update to new double buffering system.
24467         * MonthCalendar.cs: Uncomment block, as Capture is now
24468         working. Update to new double buffering
24469         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
24470         * PaintEventArgs.cs: New internal method allows us to set the
24471         graphics object. This is used for double buffering.
24472         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
24473         rectangle. The internal paint_area var has been removed from
24474         StatusBar. The clipping rect should be used instead.
24475         * Theme.cs: Give the PictureBox drawing method a clipping rect.
24476         * TabPage.cs: The RefreshTabs method was removed, so just call the
24477         tab controls Refresh method now.
24478         * TabControl.cs: Update to new double buffering. Make sure the
24479         handle is created before sizing the tab pages, otherwise we will
24480         get stuck in a loop.
24481
24482 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
24483
24484         * LinkLabel.cs: Fix typo, bug #74719; patch
24485           from Borja Sanchez Zamorano
24486
24487 2005-04-22  Jackson Harper  <jackson@ximian.com>
24488
24489         * TreeNode.cs: Implement Handle stuff.
24490         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
24491
24492 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
24493
24494         * DataGridTextBoxColumn.cs: call base constructors, fixes
24495         * GridColumnStylesCollection.cs: missing events, methods, and functionality
24496         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
24497         * DataGridTableStyle.cs: implements create default column styles
24498         * DataGridBoolColumn.cs: which types can handle
24499         * DataGrid.cs: missing methods, fixes, new functionality
24500         * DataGridColumnStyle.cs: fixes
24501
24502 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
24503         * FolderBrowserDialog.cs:
24504         - Use a thread to fill the TreeView
24505         - Adjusted some sizes
24506
24507 2005-04-19  Peter Bartok  <pbartok@novell.com>
24508
24509         * LinkLabel.cs: (Re-)create the pieces when setting the Text
24510           property. Fixes #74360.
24511
24512 2005-04-19  Jackson Harper  <jackson@ximian.com>
24513
24514         * XEventQueue.cs: Lock when getting the lockqueue size.
24515         * PictureBox.cs: Call base OnPaint
24516         
24517 2005-04-19  Peter Bartok  <pbartok@novell.com>
24518
24519         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
24520           messages were no longer being processed (this broke BeginInvoke)
24521
24522           
24523 2005-04-18  Jackson Harper  <jackson@ximian.com>
24524
24525         * TreeView.cs: buglet that caused node images to get drawn
24526         regardless of whether or not they were in the clipping rectangle.
24527
24528 2005-04-18  Jackson Harper  <jackson@ximian.com>
24529
24530         * CurrencyManager.cs: There are four rules for GetItemProperties:
24531         - If the type is an array use the element type of the array
24532         - If the type is a typed list, use the type
24533         - If the list contains an Item property that is not an object, use
24534         that property
24535         - use the first element of the list if there are any elements in
24536         the list.
24537         
24538 2005-04-17  Jackson Harper  <jackson@ximian.oom>
24539
24540         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
24541         click. This handles offsets for scrolling properly and reduces
24542         memory. Also fixed GetNode to not offset now that TopNode works
24543         properly.
24544         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
24545         
24546 2005-04-17  Jackson Harper  <jackson@ximian.com>
24547
24548         * CursorConverter.cs: Initial implementation.
24549
24550 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
24551
24552         * ListControl.cs: work towards complex data binding support on ListControl
24553         * CurrencyManager.cs: work towards complex data binding support on ListControl
24554         * ListBox.cs: work towards complex data binding support on ListControl
24555
24556
24557 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
24558
24559         * GridTableStylesCollection.cs: fixes name and constructor
24560         * DataGridTableStyle.cs: fixes
24561         * DataGridBoolColumn.cs: fixes names and constructors
24562         * DataGrid.cs: define methods and properties. Some init implementations
24563         * DataGridCell.cs: define methods and properties. Some init implementations
24564         * GridTablesFactory.cs: Define methods and properties
24565
24566 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
24567
24568         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
24569         graphics port changes.  We still want the coordinates in global screen
24570         coordinates.
24571
24572 2005-04-14  Jackson Harper  <jackson@ximian.com>
24573
24574         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
24575         check plus minus or checkbox clicks unless those features are enabled.
24576
24577 2005-04-14  Jackson Harper  <jackson@ximian.com>
24578
24579         * TreeView.cs: Add methods for setting the top and bottom visible
24580         nodes. TreeNode::EnsureVisible uses these methods.
24581         * TreeNode.cs: Implement EnsureVisible
24582
24583 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
24584
24585         * Form.cs: Pospone menu assignation if the window has not been created yet
24586         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
24587         size and position
24588
24589 2005-04-12  Jackson Harper  <jackson@ximian.com>
24590
24591         * TreeView.cs: Set the TopNode properly when scrolling
24592         occurs. This has the added benifit of reducing the amount of
24593         walking that needs to be done when drawing. Also removed an old
24594         misleading TODO.
24595         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
24596         
24597 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
24598
24599         * Timer.cs: fixes interval setting when the timer is already enabled
24600         
24601 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
24602
24603         * FolderBrowserDialog.cs: First approach
24604
24605 2005-04-09  Peter Bartok  <pbartok@novell.com>
24606
24607         * FolderBrowserDialog: Added
24608
24609 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
24610
24611         * LinkLabel.cs: move drawing code into the theme
24612         * ThemeWin32Classic.cs: drawing code and painting background bugfix
24613         * Theme.cs: define DrawLinkLabel method
24614
24615 2005-04-05  Jackson Harper  <jackson@ximian.com>
24616
24617         * BindingContext.cs: Use weak references so these bad actors don't
24618         stay alive longer then they need to.
24619
24620 2005-04-05  Jackson Harper  <jackson@ximian.com>
24621
24622         * ListControl.cs: Basic implementation of complex databinding.
24623         * ComboBox.cs:
24624         * ListBox.cs: Add calls to ListControl databinding methods.
24625
24626 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
24627
24628         * FileDialog.cs:
24629           - Don't change PopupButtonState to Normal when the
24630             PopupButton gets pressed several times.
24631           - Renamed ButtonPanel to PopupButtonPanel
24632
24633 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
24634
24635         * ColorDialog.cs: Use cached objects instead of creating them
24636         * LinkLabel.cs: Use cached objects instead of creating them
24637         * Splitter.cs: Use cached objects instead of creating them
24638         * FontDialog.cs: Use cached objects instead of creating them
24639         * PropertyGridView.cs: Use cached objects instead of creating them
24640         * MessageBox.cs: Use cached objects instead of creating them
24641         * FileDialog.cs: Use cached objects instead of creating them
24642         * ThemeWin32Classic.cs: Use cached objects instead of creating them
24643         * TreeView.cs: Use cached objects instead of creating them
24644         
24645 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
24646
24647         * Control.cs: use Equals to compare the font since no == op
24648         * ScrollBar.cs: use Equals to compare the font since no == op
24649
24650 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
24651
24652         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
24653
24654 2005-04-01  Jackson Harper  <jackson@ximian.com>
24655
24656         * Binding.cs: Implement IsBinding.
24657         * BindingManagerBase.cs:
24658         * PropertyManager.cs:
24659         * CurrencyManager.cs: Add IsSuspended property.
24660
24661 2005-04-01  Jackson Harper  <jackson@ximian.com>
24662
24663         * Binding.cs: Had some IsAssignableFrom calls backwards.
24664
24665 2005-04-01  Jackson Harper  <jackson@ximian.com>
24666
24667         * Binding.cs: Handle null data members when pulling data.
24668         * PropertyManager.cs: Handle the data member being a property that
24669         does not exist.
24670
24671 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
24672
24673         * DataGridTextBoxColumn.cs: fixes signature
24674         * DataGrid.cs: calls right constructor
24675
24676 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
24677
24678         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
24679         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
24680         * GridTableStylesCollection.cs: implements GridTableStylesCollection
24681         * DataGridTableStyle.cs: implements DataGridTableStyle
24682         * DataGridBoolColumn.cs: implements DataGridBoolColumn
24683         * DataGridTextBox.cs: implements DataGridTextBox
24684         * DataGridColumnStyle.cs: implements DataGridColumnStyle
24685
24686 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
24687
24688         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
24689
24690 2005-03-29  Peter Bartok  <pbartok@novell.com>
24691
24692         * Application.cs:
24693           - Properly implemented CompanyName property
24694           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
24695             returns a path that includes CompanyName, ProductName and
24696             Version (fixes bug #70330)
24697
24698 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
24699
24700         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
24701           fixes bug #72588.
24702
24703 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
24704
24705         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
24706         
24707           - Added ReadOnly CheckBox
24708           - Further refactoring: moved some code from Open-/SaveFileDialog
24709             to FileDialog
24710
24711 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
24712
24713         * OpenFileDialog.cs: Fixed CheckFileExists
24714         * FileDialog.cs:
24715           Moved FileView and DirComboBox outside FileDialog class.
24716           They can now be used outside FileDialog
24717
24718 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
24719
24720         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
24721         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
24722
24723 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
24724
24725         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
24726           - Added missing CreatePrompt property in SaveDialog
24727           - Overall SaveDialog handling should be better now
24728           - Added non standard ShowHiddenFiles property
24729           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
24730           - Added InitialDirectory and RestoreDirectory support
24731
24732 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
24733
24734         * FileDialog.cs: Made dirComboBox usable
24735
24736 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
24737
24738         * FileDialog.cs: Added Filter support (case sensitiv)
24739
24740 2005-03-24  Jackson Harper  <jackson@ximian.com>
24741
24742         * TabControl.cs: Need a couple more pixels for the lines.
24743
24744 2005-03-23  Jackson Harper  <jackson@ximian.com>
24745
24746         * TabControl.cs: Give the tab page focus when it is selected.
24747
24748 2005-03-23  Jackson Harper  <jackson@ximian.com>
24749
24750         * TabControl.cs: Account for the drawing of tabs borders when
24751         invalidating. If the slider was clicked dont do click detection on
24752         the tabs.
24753
24754 2005-03-23  Jackson Harper  <jackson@ximian.com>
24755
24756         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
24757
24758 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
24759
24760         * CategoryGridEntry.cs: Added
24761         * GridItem.cs: Added helper properties
24762         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
24763         * GridEntry.cs: Updated code for collection
24764         * PropertyGrid.cs: Cleaned up some formatting
24765         * PropertyGridView.cs: Added drop down functionality for enums.
24766         * GridItemCollection.cs: Added enumerator logic
24767         * PropertyGridEntry.cs: Added
24768
24769 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
24770
24771         * FileDialog.cs:
24772           - Removed unnecessary commented code
24773           - Fixed handling for entering the filename manually in the combobox
24774
24775 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
24776
24777         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
24778
24779 2005-03-18  Peter Bartok  <pbartok@novell.com>
24780
24781         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
24782           them being touching the border
24783
24784 2005-03-18  Peter Bartok  <pbartok@novell.com>
24785
24786         * TextControl.cs: Quick hack to center text better
24787
24788 2005-03-18  Peter Bartok  <pbartok@novell.com>
24789
24790         * ControlPaint.cs:
24791           - Don't throw NotImplemented exceptions, just print a notice once
24792             instead (requested by Miguel). This makes running existing SWF
24793             apps a bit easier
24794         * Control.cs:
24795           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
24796           - Added context menu trigger on right click
24797         * Panel.cs: Trigger invalidate on resize
24798         * StatusBar.cs:
24799           - Removed old double-buffer drawing
24800           - Added ResizeRedraw style to force proper update of statusbar
24801         * ListView.cs:
24802           - Removed debug output
24803         * ThemeWin32Classic.cs:
24804           - Fixed drawing of status bar, now draws Text property if there
24805             are no defined panels
24806
24807 2005-03-18  Jackson Harper  <jackson@ximian.com>
24808
24809         * ImageList.cs: When the image stream is set pull all the images
24810         from it.
24811         * ImageListStreamer.cs: Implement reading image list streams.
24812
24813 2005-03-18  Peter Bartok  <pbartok@novell.com>
24814
24815         * ThemeWin32Classic.cs (DrawPictureBox):
24816           - Fixed calculations for centered drawing
24817           - Fixed drawing for normal mode, not scaling the image on normal
24818
24819 2005-03-18  Peter Bartok  <pbartok@novell.com>
24820
24821         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
24822           textbox
24823         * FileDialog.cs:
24824           - Made Open/Save button the accept button for FileDialog
24825           - Tied the cancel button to the IButtonControl cancel button
24826           - Save/Open now properly builds the pathname
24827           - Now handles user-entered text
24828           - Preventing crash on right-click if no item is selected
24829           - Fixed Text property, now uses contents of textbox
24830           - Fixed SelectedText property, now just returns the text part that
24831             is selected in the text box
24832
24833 2005-03-18  Jackson Harper  <jackson@ximian.com>
24834
24835         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
24836         rect, make sure to de-adjust the interior rect after drawing the
24837         tab text.
24838
24839 2005-03-18  Peter Bartok  <pbartok@novell.com>
24840
24841         * MenuAPI.cs: Remove menu *before* executing selected action to
24842           prevent the menu from 'hanging around'
24843           
24844 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
24845
24846         * XplatUIOSX.cs: Implemented WorkingArea property
24847
24848 2005-03-17  Peter Bartok  <pbartok@novell.com>
24849
24850         * XplatUIX11.cs: Fixed menu coord calculations
24851         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
24852           for calculating offsets
24853
24854 2005-03-17  Peter Bartok  <pbartok@novell.com>
24855
24856         * Hwnd.cs: Do not consider menu presence for default client
24857           rectangle location/size
24858         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
24859           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
24860           translation functions
24861         * FileDialog.cs: Fixed (what I presume is a) typo
24862
24863 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
24864
24865         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
24866           X access (avoids X-Async errors)
24867
24868 2005-03-16  Jackson Harper  <jackson@ximian.com>
24869
24870         * TabControl.cs: Raise the SelectedIndexChanged event.
24871
24872 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
24873
24874         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
24875           - Removed vertical ToolBar and replaced it with a custom panel
24876             (desktop and home button already work)
24877           - Added Help button (some controls get resized or relocated then)
24878           - Draw correct text depending on Open or Save.
24879           - Fixed some typos...
24880
24881 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
24882
24883         * ScrollBar.cs:
24884           - Only change Maximum and Minimum when need it (bug fix)
24885
24886 2005-03-15  Peter Bartok  <pbartok@novell.com>
24887
24888         * Form.cs: Use Handle for icon, to trigger creation if
24889           the window does not yet exist
24890         * Control.cs:
24891           - CanSelect: Slight performance improvement
24892           - Focus(): Preventing possible recursion
24893           - Invalidate(): Removed ControlStyle based clear flag setting
24894           - WM_PAINT: fixed logic for calling OnPaintBackground
24895           - WM_ERASEBKGND: Fixed logic, added call to new driver method
24896             EraseWindowBackground if the control doesn't paint background
24897         * XplatUIWin32.cs:
24898           - Moved EraseWindowBackground() method to internal methods
24899           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
24900             is sent via SendMessage on BeginPaint call on Win32
24901         * XplatUIX11.cs:
24902           - Added EraseWindowBackground() method
24903           - No longer sends WM_ERASEBKGND on .Expose, but on call to
24904             PaintEventStart, which more closely matches Win32 behaviour
24905           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
24906           - Fixed SetFocus() to properly deal with client and whole windows
24907         * Hwnd.cs: Added ErasePending property
24908         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
24909         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
24910
24911 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
24912
24913         * XplatUIOSX.cs:
24914           - Fix hard loop when timers exist.
24915           - Fix bugs with middle and right click for 3 button mice.
24916
24917 2005-03-11  Peter Bartok  <pbartok@novell.com>
24918
24919         * XplatUIX11.cs:
24920           - get_WorkingArea: Need to call X directly, GetWindowPos only
24921             returns cached data now
24922           - Added sanity check to GetWindowPos hwnd usage
24923
24924 2005-03-11  Jackson Harper  <jackson@ximian.com>
24925
24926         * BindingManagerBase.cs: This method isn't used anymore as
24927         PullData now updates the data in the control.
24928
24929 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
24930
24931         * Form.cs: fixes menu drawing on X11
24932         * MenuAPI.cs:  fixes menu drawing on X11
24933
24934 2005-03-11  Peter Bartok  <pbartok@novell.com>
24935
24936         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
24937           from Jonathan Gilbert; should fix bug #73606
24938         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
24939           in Screen coordinates. Thanks, Jordi.
24940         * Form.cs: Added missing attribute
24941
24942 2005-03-11  Peter Bartok  <pbartok@novell.com>
24943
24944         * Form.cs:
24945           - Rudimentary Mdi support
24946           - Removed outdated FormParent code
24947           - Implemented lots of missing properties and methods, still missing
24948             transparency support
24949           - Added missing attributes
24950           - Implemented support for MaximumBounds
24951           - Added firing of various events
24952         * XplatUI.cs: Added SetIcon() method
24953         * XplatUIDriver.cs: Added SetIcon() abstract
24954         * XplatUIOSX.cs: Stubbed out SetIcon() method
24955         * XplatUIX11.cs:
24956           - Implemented SetIcon() support
24957           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
24958           - Switched to unix line endings
24959         * XplatUIWin32.cs:
24960           - Made POINT internal so for can access it as part of MINMAX
24961           - Implemented SetIcon() support
24962           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
24963             native Mdi support again, might have to go managed)
24964         * Control.cs: Now fires the StyleChanged event
24965         * MdiClient.cs: Added; still mostly empty
24966
24967 2005-03-10  Peter Bartok  <pbartok@novell.com>
24968
24969         * SaveFileDialog.cs: Added emtpy file
24970
24971 2005-03-08  Peter Bartok  <pbartok@novell.com>
24972
24973         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
24974           in turn triggers OnCreateContro) when creating a handle for the
24975           first time.
24976         * TextControl.cs: Fixed endless loop in certain cases when
24977           replacing the current selection
24978
24979 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
24980
24981         * ScrollBar.cs:
24982           - Honors NewValue changes in Scroll events allowing apps to change it
24983           - Adds First and Last Scroll events
24984           - Fixes Thumb events
24985
24986 2005-03-07  Peter Bartok  <pbartok@novell.com>
24987
24988         * Hwnd.cs: Added DefaultClientRectangle property
24989         * XplatUI.cs: Now using the X11 driver Where() method, which provides
24990           more detailed debug information
24991         * XplatUIX11.cs:
24992           - Fixed size-change feedback loop, where we would pull an old size
24993             off the queue and mistakenly change our window's size to an
24994             earlier value
24995           - Now compressing ConfigureNotify events, to reduce looping and
24996             redraw issues
24997         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
24998           is called
24999
25000 2005-03-07  Jackson Harper  <jackson@ximian.com>
25001
25002         * Binding.cs: Push data pushes from data -> property. Check if the
25003         property is readonly when attempting to set it.
25004
25005 2005-03-07  Jackson Harper  <jackson@ximian.com>
25006
25007         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
25008         instead of IsSubclassOf. Pulling data now sets the value on the
25009         control.
25010         * PropertyManager.cs:
25011         * CurrencyManager.cs: Just need to pull data when updating now,
25012         because PullData will set the value on the control.
25013
25014 2005-03-04  Jackson Harper  <jackson@ximian.com>
25015
25016         * Binding.cs: Implement data type parsing and converting on pulled
25017         data. TODO: Are there more ways the data can be converted?
25018
25019 2005-03-04  Jackson Harper  <jackson@ximian.com>
25020
25021         * Binding.cs: Support <Property>IsNull checks. Also bind to the
25022         controls Validating method so we can repull the data when the
25023         control loses focus.
25024
25025 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
25026
25027         * ColumnHeader.cs:
25028           - Fixes null string format
25029           
25030         * ListView.cs:
25031           - Adds enum type checks
25032           - Fixes redrawing and recalc need after changing some properties
25033           - Fixes on focus_item set after the event
25034           - Fixes adding columns after the control has been created
25035           
25036         * ThemeWin32Classic.cs:
25037           - Fixes CheckBox focus rectangle
25038           - Fixes ColumnHeader drawing
25039
25040
25041 2005-03-03  Jackson Harper  <jackson@ximian.com>
25042
25043         * Binding.cs: Bind to <Property>Changed events so we can detect
25044         when properties are changed and update the data.
25045
25046 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
25047
25048         * ImageList.cs:
25049           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
25050           - Fixes ImageList constructor with ImageList container
25051           - Fixes image scaling (wrong parameters at DrawImage)
25052
25053 2005-02-02  Jackson Harper  <jackson@ximian.com>
25054
25055         * Binding.cs: Make property searches case-insensitive. Eliminate
25056         some duplicated code.
25057
25058 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
25059
25060         * ComboBox.cs:
25061                 - Handle focus event
25062                 - Fix scrollbar events
25063                 - Discard highlighted item if remove it
25064                 - Fixes SelectedItem with strings
25065
25066 2005-03-01  Peter Bartok  <pbartok@novell.com>
25067
25068         * Control.cs:
25069           - Fixed Visible property, now follows (once again) parent chain
25070             to return false if any control in the chain is visible=false
25071           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
25072           - Fixed several places where is_visible instead of Visible was used
25073           - Implemented FIXME related to focus selection when setting focused
25074             control to be invisible
25075
25076         * XplatUIWin32.cs: Now using proper method to find out if window is
25077           visible. Thanks to Jordi for pointing it out
25078
25079 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
25080
25081         * ComboBox.cs: show/hide scrollbar instead of creating it
25082
25083 2005-02-27  Jackson Harper  <jackson@ximian.com>
25084
25085         * CurrencyManager.cs: Add PositionChanged stuff.
25086
25087 2005-02-27  Peter Bartok  <pbartok@novell.com>
25088
25089         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
25090         * XplatUIOSX.cs: Added GetMenuOrigin() stub
25091         * XplatUIWin32.cs: Implemented GetMenuOrigin()
25092         * XplatUIX11.cs:
25093           - Implemented GetMenuDC()
25094           - Implemented GetMenuOrigin()
25095           - Implemented ReleaseMenuDC()
25096           - Implemented generation of WM_NCPAINT message
25097           - Implemented generation and handling of WM_NCCALCSIZE message
25098         * Form.cs: Added debug helper message for Jordi's menu work
25099         * Hwnd.cs:
25100           - Modified ClientRect property; added setter, fixed getter to handle
25101             setting of ClientRect
25102           - Added MenuOrigin property
25103
25104 2005-02-26  Peter Bartok  <pbartok@novell.com>
25105
25106         * XplatUIX11.cs:
25107           - Destroys the caret if a window that's being destroyed contains it
25108           - Ignores expose events coming from the X11 queue for windows that
25109             already are destroyed
25110           - Now uses the proper variable for handling DestroyNotify, before we
25111             marked the wrong window as destroyed
25112           - Improved/added some debug output
25113
25114 2005-02-26  Peter Bartok  <pbartok@novell.com>
25115
25116         * X11Keyboard.cs: Fixes to work on 64bit systems
25117
25118 2005-02-26  Peter Bartok  <pbartok@novell.com>
25119
25120         * Control.cs:
25121           - Now calling OnHandleDestroyed from DestroyHandle()
25122             instead of Dispose()
25123           - Removed bogus call to controls.Remove() from DestroyHandle()
25124
25125 2005-02-26  Peter Bartok  <pbartok@novell.com>
25126
25127         * Control.cs: Properly destroy child windows when our handle is
25128           destroyed
25129
25130 2005-02-25  Peter Bartok  <pbartok@novell.com>
25131
25132         * XplatUI.cs:
25133           - Added 'DriverDebug' define to allow tracing XplatUI API calls
25134           - Alphabetized Static Methods and Subclasses
25135
25136         * XplatUIX11.cs:
25137           - Added XException class to allow custom handling of X11 exceptions
25138           - Created custom X11 error handler, tied into XException class
25139           - Added support for MONO_XEXCEPTIONS env var to allow the user
25140             to either throw an exception on X errors or continue running
25141             after displaying the error
25142           - Added handling of DestroyNotify message
25143           - Added handler for CreateNotify message (still disabled)
25144           - Improved (tried to at least) Where method to provide file and lineno
25145         * X11Structs.cs:
25146           - Added XErrorHandler delegate
25147           - Added XRequest enumeration (to suppor translation of errors)
25148
25149 2005-02-25  Jackson Harper  <jackson@ximian.com>
25150
25151         * PropertyManager.cs: Implement editing features
25152         * CurrencyManager.cs:
25153         * Binding.cs: First attempt at UpdateIsBinding
25154         * BindingManagerBase.cs: Call UpdateIsBinding before
25155         pushing/pulling data.
25156
25157 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
25158
25159         * MenuAPI.cs: Respect disabled items
25160         * ThemeWin32Classic.cs
25161                 - Caches ImageAttributes creation for DrawImageDisabled
25162                 - Fixes vertical menu line drawing
25163                 - Draws disabled arrows in disable menu items
25164
25165 2005-02-24  Peter Bartok  <pbartok@novell.com>
25166
25167         * Hwnd.cs:
25168           - Added UserData property to allow associating arbitrary objects
25169             with the handle
25170           - Fixed leak; now removing Hwnd references from static windows array
25171         * XplatUIWin32.cs:
25172           - Fixed Graphics leak in PaintEventEnd
25173           - Removed usage of HandleData, switched over to Hwnd class
25174         * HandleData.cs: Removed, obsoleted by Hwnd.cs
25175
25176 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
25177
25178         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
25179         * ScrollBar.cs: Fixes bug
25180         * TrackBar.cs: removes death code, clipping, mimize refreshes,
25181          keyboard navigation enhancements
25182
25183 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
25184
25185         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
25186         * GroupBox.cs: Add control styles
25187         * Label.cs: Add control styles
25188         * UpDownBase.cs: Add control styles
25189         * ListBox.cs: Add control styles
25190         * XplatUIWin32.cs: Fixes wrong parameter order
25191
25192
25193 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
25194
25195         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
25196
25197 2005-02-23  Jackson Harper  <jackson@ximian.com>
25198
25199         * PropertyManager.cs: Implement property binding. This doesn't
25200         seem to work yet though as (I think) there are some bugs in
25201         System.ComponentModel.PropertyDescriptor.
25202         * BindingContext.cs: Use new PropertyManager constructor.
25203
25204 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
25205
25206         * ProgressBar.cs: use clip region in ProgressBar
25207         * ThemeWin32Classic.cs: use clip region in ProgressBar
25208
25209 2004-02-22  Jackson Harper  <jackson@ximian.com>
25210
25211         * BindingsCollection.cs: Remove some debug code.
25212
25213 2005-02-22  Jackson Harper  <jackson@ximian.com>
25214
25215         * BindingContext.cs:
25216         * ControlBindingsCollection.cs:
25217         * CurrencyManager.cs:
25218         * Binding.cs:
25219         * BindingManagerBase.cs: Initial implementation
25220         * BindingsCollection.cs: Add an internal contains method that the
25221         BindingManagerBase uses to ensure bindings aren't added twice to
25222         the collection.
25223         * PropertyManager.cs: Stubbed out.
25224         * Control.cs:
25225         * ContainerControl.cs: Hook up databinding
25226         
25227 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
25228
25229         * XplatUIOSX.cs:
25230           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
25231           Fixed Invalidate/Update chain.
25232           Fixed tons of other minor bugs (this is almost a complete rewrite).
25233
25234 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
25235
25236         * ComboBox.cs: do subcontrol creation when the control is created
25237
25238 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
25239
25240         * Label.cs: fixes image drawing (image and imagelist)
25241         * ThemeWin32Classic.cs: cache brushes
25242         
25243 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
25244
25245         * Form.cs: Move menu drawing code to Theme class
25246         * ComboBox.cs: Move ComboBox drawing code to Theme class
25247         * MenuItem.cs: Move menu drawing code to Theme class
25248         * MenuAPI.cs: Move menu drawing code to Theme class
25249         * ThemeWin32Classic.cs: New methods
25250         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
25251         * ListBox.cs: Move Listbox drawing code to Theme class
25252         * Theme.cs: New methods
25253
25254 2005-02-20  Peter Bartok  <pbartok@novell.com>
25255
25256         * Control.cs:
25257           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
25258             only process mnemonics on those)
25259           - Fixed event sequence for key handling; first calling
25260             ProcessKeyEventArgs now
25261         * TextBoxBase.cs:
25262           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
25263             for processing non-character keys
25264           - Fixed WM_CHAR to generate proper event sequence before processing
25265         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
25266           generation
25267
25268 2005-02-19  Peter Bartok  <pbartok@novell.com>
25269
25270         * UserControl.cs: Added TextChanged event; added attributes
25271         * SizeGrip.cs: Implemented resizing and optional display of grip
25272         * Form.cs: Fixed attribute
25273         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
25274           Changed meaning of ScrollWindow bool argument; instead of the
25275           clear attribute (which will be true usually anyway), it gives the
25276           option of moving child controls as well.
25277         * XplatUIX11.cs:
25278           - Changed to match new ScrollWindow argument
25279           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
25280             now handles the implicit parent window a WM puts around us
25281         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
25282           to work)
25283         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
25284         * TreeView.cs: Adjusted to new ScrollWindow arguments
25285
25286 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
25287
25288         * Form.cs: Menu integration with non-client area
25289         * MenuItem.cs: Menu integration with non-client area
25290         * MenuAPI.cs: Menu integration with non-client area
25291
25292 2005-02-18  Peter Bartok  <pbartok@novell.com>
25293
25294         * MethodInvoker.cs: Added
25295         * MdiLayout.cs: Added
25296         * SendKeys.cs: Started implementation
25297         * ErrorIconAlignment.cs: Added
25298
25299 2005-02-18  Peter Bartok  <pbartok@novell.com>
25300
25301         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
25302         * Form.cs: Added handling for Menu-related Non-client messages
25303
25304 2005-02-17  Peter Bartok  <pbartok@novell.com>
25305
25306         * UpDownBase.cs: Fixed typo, compilation errors
25307         * DomainUpDown.cs: Fixed attribute value
25308
25309 2005-02-16  Miguel de Icaza  <miguel@novell.com>
25310
25311         * UpDownBase.cs: Attach entry events.
25312         Propagate events.
25313         Add ForeColor property, Focused, InterceptArrowKeys (interception
25314         does not work yet).
25315
25316 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
25317
25318         * Form.cs:
25319                 - Redraw non client are on Setmenu
25320                 - Calc proper menu starting point
25321
25322 2005-02-17  Peter Bartok  <pbartok@novell.com>
25323
25324         * Application.cs: Fixed message_filter check
25325
25326 2005-02-17  Peter Bartok  <pbartok@novell.com>
25327
25328         * Application.cs: Now calls registered message filters
25329         * DockStyle.cs: Fixed attribute
25330         * Form.cs: Fixed attribute
25331         * Menu.cs: Fixed attribute
25332         * ToolTip.cs: Fixed attribute
25333         * TreeNode.cs: Added missing attributes and arranged in regions
25334         * PropertyGrid.cs: Fixed signatures
25335         * TreeNodeCollection.cs: Added attributes
25336         * Splitter.cs: Added missing attributes; arranged into regions
25337         * TabPage.cs: Added missing attributes; arranged into regions
25338         * TextBoxBase.cs: Added missing attributes
25339         * TextBox.cs: Added missing attributes
25340         * ArrangeDirection.cs: Added missing attributes
25341         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
25342         * ToolBarButton.cs: Fixed attributes
25343         * AnchorStyles.cs: Fixed attribute
25344         * TrackBar.cs: Fixed attributes
25345         * TabControl.cs: Added missing attributes and arranged into regions
25346         * ToolBar.cs: Fixed attribute
25347         * StatusBar.cs: Fixed signature, organized into regions and added
25348           attributes
25349         * StatusBarPanel.cs: Fixed attributes
25350         * ContentsResizedEventArgs.cs: Implemented
25351         * ContentsResizedEventHandler.cs: Implemented
25352         * DateBoldEventArgs.cs: Implemented
25353         * DateBoldEventHandler.cs: Implemented
25354         * UpDownEventArgs.cs: Implemented
25355         * UpDownEventHandler.cs: Implemented
25356         
25357 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
25358
25359         * Form.cs: first Menu NC refactoring
25360         * MenuAPI.cs: first Menu NC refactoring
25361         
25362 2005-02-16  Peter Bartok  <pbartok@novell.com>
25363
25364         * ImeMode.cs: Added missing attributes
25365         * Menu.cs: Fixed attribute
25366         * GroupBox.cs: Fixed attribute
25367         * Label.cs: Fixed attribute
25368         * ColorDialog.cs (RunDialog): Removed TODO attribute
25369         * ComboBox.cs: Fixed attributes
25370         * ListControl.cs: Added missing attributes
25371         * PropertyGrid.cs: Fixed attributes
25372         * Control.cs: Fixed attributes
25373         * ListViewItem.cs: Added TypeConverter attribute
25374         * NotifyIcon.cs: Fixed attributes
25375         * ListView.cs: Fixed attributes
25376         * ButtonBase.cs: Fixed attribute
25377         * ImageList.cs: Added missing attributes
25378         * ContainerControl.cs: Fixed signature
25379         * CheckedListBox.cs: Fixed attribute; added missing attributes
25380         * Panel.cs: Fixed attributes
25381         * PropertyTabChangedEventArgs.cs: Added missing attribute
25382         * PropertyValueChangedEventArgs.cs: Added missing attribute
25383         * Binding.cs: Fixed attribute
25384         * ListViewItemConverter: Implemented ListViewSubItemConverter class
25385         * ListBox.cs: Fixed attribute; added missing attributes;
25386         * ScrollableControl.cs: Added missing attributes
25387         * PictureBox.cs: Added missing attributes; implemented missing property
25388         * DateTimePicker.cs: Added missing attributes
25389         * Theme.cs (ToolWindowCaptionHeight): Fixed type
25390         * MonthCalendar.cs: Fixed attributes
25391         * StatusBarPanel.cs: Added missing attributes
25392         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
25393
25394 2005-02-16  Peter Bartok  <pbartok@novell.com>
25395
25396         * TextBoxBase.cs: The previous method to enforce height yet remember
25397           the requested high was less than ideal, this is an attempt to do
25398           it better.
25399         * Control.cs: Added comment about possible problem
25400         * Copyright: Updated format
25401         * GridItemType.cs: Fixed swapped values
25402
25403 2005-02-15  Jackson Harper  <jackson@ximian.com>
25404
25405         * BaseCollection.cs: Use property so we never access an
25406         uninitialized list. Also initialize the list in the property.
25407
25408 2005-02-15  Peter Bartok  <pbartok@novell.com>
25409
25410         * GroupBox.cs (ProcessMnemonic): Implemented
25411         * Label.cs (ProcessMnemonic): Implemented
25412         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
25413           hotkeys
25414
25415 2005-02-15  Peter Bartok  <pbartok@novell.com>
25416
25417         * RadioButton.cs (ProcessMnemonic): Implemented
25418         * CheckBox.cs (ProcessMnemonic): Implemented
25419         * Control.cs:
25420           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
25421             handling
25422           - Added internal method to allow calling ProcessMnemonic from other
25423             controls
25424         * ContainerControl.cs:
25425           - Started support for handling validation chain handling
25426           - Implemented ProcessMnemonic support
25427           - Added Select() call to Active, to make sure the active control
25428             receives focus
25429         * Form.cs: Setting toplevel flag for Forms (this was lost in the
25430           FormParent rewrite)
25431         * ThemeWin32Classic.cs:
25432           - DrawCheckBox(): Fixed stringformat to show hotkeys
25433           - DrawRadioButton(): Fixed stringformat to show hotkeys
25434         * CommonDialog.cs: Removed WndProc override, not needed
25435
25436 2005-02-14  Peter Bartok  <pbartok@novell.com>
25437
25438         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
25439           missed those in the rewrite
25440
25441 2005-02-14  Miguel de Icaza  <miguel@novell.com>
25442
25443         * NumericUpDown.cs (Increment, ToString): Add.
25444         (DecimalPlaces): implement.
25445         
25446         Add attributes.
25447         
25448         * UpDownBase.cs: Add the designer attributes.
25449
25450 2005-02-13  Peter Bartok  <pbartok@novell.com>
25451
25452         * Panel.cs: Removed border_style, now in Control
25453         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
25454           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
25455
25456 2005-02-13  Peter Bartok  <pbartok@novell.com>
25457
25458         * MouseButtons.cs: Added missing attributes
25459         * XplatUIStructs.cs: Added enumeration for title styles
25460         * LeftRightAlignment.cs: Added missing attributes
25461         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
25462           it compatible with Graphics.FromHwnd()
25463         * SelectedGridItemChangedEventArgs.cs: Fixed property type
25464         * Keys.cs: Added missing attributes
25465         * SelectionRange.cs: Added missing attributes
25466         * SelectionRangeConverter.cs: Added
25467         * XplatUI.cs:
25468           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
25469             ReleaseMenuDC methods
25470           - Renamed ReleaseWindow to UngrabWindow
25471           - Added proper startup notice to allow version identification
25472         * Form.cs:
25473           - Added missing attributes
25474           - Removed FormParent concept
25475         * Label.cs: Removed border_style field, now in Control
25476         * RadioButton.cs: Now properly selects RadioButton when focus is
25477           received
25478         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
25479         * Control.cs:
25480           - Added missing attributes
25481           - Added borderstyle handling
25482           - Removed FormParent concept support
25483           - Fixed calls to XplatUI to match changed APIs
25484           - Fixed bug that would case us to use disposed Graphics objects
25485           - Removed unneeded internal methods
25486           - PerformLayout(): Fixed to handle DockStyle.Fill properly
25487           - SelectNextControl(): Fixed to properly check common parents
25488         * TextBoxBase.cs: Removed border_style field (now in Control)
25489         * MessageBox.cs:
25490           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
25491             fixed calculations for form size
25492           - Added support for localized strings and icons
25493           - Improved form size calculations, added border
25494         * ListView.cs: Removed border_style field (now in Control)
25495         * X11Structs.cs: Moved several structs from X11 driver here
25496         * X11Keyboard.cs: Changed debug message
25497         * Application.cs: Removed FormParent concept support
25498         * CommonDialog.cs:
25499           - Resetting end_modal flag
25500           - Removed FormParent concept support
25501         * NativeWindow.cs: Removed FormParent concept support
25502         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
25503           Client area and Non-Client whole window to allow support for WM_NC
25504           messages
25505         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
25506           prevent using it until it supports Hwnd as per Geoff Norton's request
25507         * ToolBar.cs: Fixed drawing, was not doing proper drawing
25508         * PictureBox.cs: Removed border_style field, now in Control
25509         * XplatUIWin32.cs: Added new driver methods
25510
25511 2005-02-12  Peter Bartok  <pbartok@novell.com>
25512
25513         * OpacityConverter.cs: Implemented
25514         * Hwnd.cs: Internal class to support drivers that need to emulate
25515           client area/non-client area window behaviour
25516
25517 2005-02-11  Peter Bartok  <pbartok@novell.com>
25518
25519         * KeysConverter.cs: Implemented
25520
25521 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
25522
25523         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
25524         * LinkLabel: Added missing attributes
25525         * MainMenu.cs: fixes ToString
25526         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
25527         * ListBox.cs: fixes event position
25528         * TrackBar.cs: adds missing attributes and events
25529         
25530 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
25531
25532         * MenuItem.cs: Use SystemInformation and bug fixes
25533         * MenuAPI.cs: Use SystemInformation and bug fixes
25534
25535 2005-02-09  Jackson Harper  <jackson@ximian.com>
25536
25537         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
25538         their keystate otherwise things like VK_MENU get stuck "on".
25539
25540 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
25541
25542         * ListBox.cs: Fixes AddRange bug
25543         
25544 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
25545
25546         * ProgressBar.cs
25547                 - Add missing attributes
25548                 - Add missing method
25549                 
25550         * CheckedListBox.cs: Added missing attributes
25551                 - Add missing attributes
25552                 - Remove extra method
25553         
25554         * ComboBox.cs: Added missing attributes
25555         * VScrollBar.cs: Added missing attributes
25556         * ScrollBar.cs:  Added missing attributes
25557         * ListBox.cs: Fixes signature, add missing consts
25558         * LinkArea.cs:   Added missing attributes
25559         
25560
25561 2005-02-08  Peter Bartok  <pbartok@novell.com>
25562
25563         * Menu.cs: Added missing attributes
25564         * MainMenu.cs: Added missing attributes
25565         * GroupBox.cs: Added missing attributes
25566         * Label.cs: Added missing attributes
25567         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
25568         * ColorDialog.cs:
25569           - Added Instance and Options properties
25570           - Added missing attributes
25571         * Cursor.cs: Made Serializable
25572         * NotifyIcon: Added missing attributes
25573         * MenuItem.cs: Added missing attributes
25574         * TextBoxBase.cs: Implemented AppendText() and Select() methods
25575         * Panel.cs: Added Missing attributes
25576         * MonthCalendar.cs: Fixed CreateParams
25577
25578 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
25579         
25580         * LinkLabel.cs:
25581                 - Fixes signature
25582                 - Fixes issues with links
25583                 - Adds the class attributes
25584
25585 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
25586         
25587         * ComboBox.cs:
25588                 - Fixes button when no items available in dropdown
25589                 - Fixes repainting problems
25590                 - Adds the class attributes
25591                 
25592 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
25593
25594         * XplatUIOSX.cs: Detect the menu bar and title bar height from
25595         the current theme.  Cache these on startup.
25596
25597 2005-02-07  Jackson Harper  <jackson@ximian.com>
25598
25599         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
25600         the scrollbar buttons when they are depressed.
25601
25602 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
25603
25604         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
25605         Get the display size from the main displayid.  We currently dont
25606         support multiple display configurations.
25607
25608 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
25609
25610         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
25611
25612 2005-02-07  Miguel de Icaza  <miguel@novell.com>
25613
25614         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
25615
25616 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
25617
25618         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
25619
25620 2005-02-04  Jackson Harper  <jackson@ximian.com>
25621
25622         * ThemeWin32Classic.cs: Respect the clipping rect when
25623         drawing. Only fill the intersection of clips and rects so there
25624         isn't a lot of large fills.
25625         * ScrollBar.cs: Pass the correct clipping rect to the theme
25626         engine. Remove some debug code.
25627
25628 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
25629         
25630         * DateTimePicker.cs:
25631                 - Fixed crash on DateTime.Parse, use Constructor instead
25632
25633 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
25634         
25635         * MenuItem.cs:
25636         * MenuAPI.cs:
25637                 - Owner draw support (MeasureItem and DrawItem)
25638
25639 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
25640         
25641         *  Menu.cs:
25642                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
25643                 - Fixes MenuItems.Add range
25644         * MenuItem.cs:
25645                 - MergeMenu and Clone and CloneMenu functions
25646
25647 2005-02-03  Jackson Harper  <jackson@ximian.com>
25648
25649         * ScrollBar.cs: Make abstract
25650         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
25651         is abstract.
25652
25653 2005-02-03  Jackson Harper  <jackson@ximian.com>
25654
25655         * ScrollBar.cs: First part of my scrollbar fixups. This removes
25656         all the unneeded refreshes and uses invalidates with properly
25657         computed rects.
25658
25659 2005-02-03  Peter Bartok  <pbartok@novell.com>
25660
25661         * ComponentModel.cs: Added
25662         * IDataGridEditingService.cs: Added
25663         * Timer.cs: Added missing attributes
25664         * ToolTip.cs: Added missing attributes
25665
25666 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
25667
25668         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
25669
25670 2005-02-03  Peter Bartok  <pbartok@novell.com>
25671
25672         * ListBox.cs: Added missing attributes
25673
25674 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
25675         
25676         * ListBox.cs:
25677                 - Fixes font height after font change
25678                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
25679                 
25680 2005-02-02  Peter Bartok  <pbartok@novell.com>
25681
25682         * HandleData.cs: Introduced static methods to allow class
25683           to be more self-contained and track it's own HandleData objects
25684         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
25685           HandleData to use new static methods
25686
25687 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
25688
25689         * Combobox.cs:
25690                 - Fixes default size and PreferredHeight
25691                 - Missing events
25692                 - ObjectCollection.Insert implementation
25693                 
25694         * ListControl.cs
25695                 - Fixes signature
25696         * ListBox.cs:
25697                 - Several fixes
25698                 - ObjectCollection.Insert implementation
25699                 - No selection after clean
25700                 - Small fixes
25701
25702 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
25703
25704         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
25705
25706 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
25707
25708         * Combobox.cs:
25709                 - Caches ItemHeight calculation for OwnerDrawVariable
25710                 - Handles dropdown properly
25711                 - Fixes several minor bugs
25712
25713 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
25714
25715         * ListBox.cs:
25716                 - Fixes 71946 and 71950
25717                 - Fixes changing Multicolumn on the fly
25718                 - Fixes keyboard navigation on Multicolumn listboxes
25719
25720 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
25721         
25722         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
25723         crash reporter log.
25724
25725 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
25726
25727         * XplatUIOSX.cs: Allow applications to actually exit.
25728
25729 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
25730
25731         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
25732         their parent at creation time rather than lazily later.  Fixes a major
25733         regression we were experiencing.
25734
25735 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
25736
25737         * ThemeWin32Classic.cs: more date time picker painting fixes
25738         * DateTimePicker.cs: more monthcalendar drop down fixes
25739         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
25740
25741 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
25742
25743         * ScrollBar.cs:
25744                 - When moving the thumb going outside the control should stop the moving
25745                 - Adds the firing of missing events
25746                 - Fixes no button show if Size is not specified
25747                 - End / Home keys for keyboard navigation
25748
25749 2005-01-30  Peter Bartok  <pbartok@novell.com>
25750
25751         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
25752           sanity check to prevent theoretical loop
25753         * XplatUIWin32.cs (SetVisible): Removed debug output
25754         * XplatUIX11.cs (SystrayChange): Added sanity check
25755         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
25756         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
25757           behaviour, valid until the X11 client window rewrite is done
25758         * TextBox.cs (ctor): Setting proper default foreground and background
25759           colors
25760
25761 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
25762
25763         * Theme: Added DrawDateTimePicker to interface
25764         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
25765         * DateTimePicker.cs: Created (still needs keys and painting code)
25766         * DateTimePickerFormat.cs: added
25767         * MonthCalendar.cs: fixed CreateParams for popup window mode
25768           
25769 2005-01-29  Peter Bartok  <pbartok@novell.com>
25770
25771         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
25772           this should also the calculations for ligher/darker
25773         * Theme.cs: Fixed defaults for ScrollBar widths/heights
25774
25775 2005-01-29  Peter Bartok  <pbartok@novell.com>
25776
25777         * ArrangeDirection.cs: Added
25778         * ArrangeStartingPositon.cs: Added
25779         * SystemInformation.cs: Implemented
25780         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
25781           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
25782           used by SystemInformation class
25783         * X11Strucs.cs: Added XSizeHints structure
25784         * MenuAPI.cs:
25785           - Fixed CreateParams to make sure the menu window is always visible
25786           - TrackPopupMenu: Added check to make sure we don't draw the
25787             menu offscreen
25788
25789 2005-01-29  Peter Bartok  <pbartok@novell.com>
25790
25791         * HandleData.cs: Added method for altering invalid area
25792         * TextBoxBase.cs: Implemented TextLength
25793
25794 2005-01-28  Peter Bartok  <pbartok@novell.com>
25795
25796         * XplatUIX11.cs: Improvement over last patch, not sending
25797           the WM_PAINT directly anymore, instead we scroll any pending
25798           exposed areas and let the system pick out the WM_PAINT later
25799
25800 2005-01-28  Peter Bartok  <pbartok@novell.com>
25801
25802         * SWF.csproj: Deleted, no longer used. Instead,
25803           Managed.Windows.Forms/SWF.csproj should be used
25804         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
25805           directly, to avoid a potential race condition with the next
25806           scroll
25807
25808 2005-01-28  Peter Bartok  <pbartok@novell.com>
25809
25810         * XplatUI.cs: Made class internal
25811
25812 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
25813
25814         * CheckedListBox.cs:
25815                 - Draw focus
25816                 - Fixed Drawing
25817                 - Missing methods and events
25818
25819 2005-01-27  Peter Bartok  <pbartok@novell.com>
25820
25821         * Application.cs (Run): Don't use form if we don't have one
25822
25823 2005-01-27  Peter Bartok  <pbartok@novell.com>
25824
25825         * TextBoxBase.cs (get_Lines): Fixed index off by one error
25826
25827 2005-01-27  Peter Bartok  <pbartok@novell.com>
25828
25829         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
25830         * GridItem.cs: Added; Patch by Jonathan S. Chambers
25831         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
25832         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
25833         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
25834         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
25835         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25836         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
25837         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25838         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25839         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25840         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
25841
25842 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
25843
25844         * Combobox.cs:
25845                 - Draw focus on Simple Combobox
25846                 - Fixes drawing issues
25847                 - fixes 71834
25848
25849 2005-01-27  Peter Bartok  <pbartok@novell.com>
25850
25851         * Form.cs:
25852           - Place window in default location, instead of hardcoded 0/0
25853           - Send initial LocationChanged event
25854         * Control.cs:
25855           - UpdateBounds after creation to find out where the WM placed us
25856           - Make sure that if the ParentForm changes location the Form
25857             is notified
25858         * XplatUIX11.cs: XGetGeometry will not return the coords relative
25859             to the root, but to whatever the WM placed around us.
25860             Translate to root coordinates before returning toplevel
25861             coordinates
25862         * XplatUIWin32.cs: Removed debug output
25863         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
25864           flag to GetWindowPos, to allow translation of coordinates on X11
25865
25866 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
25867
25868         * ListBox.cs: connect LostFocus Event
25869
25870 2005-01-27  Peter Bartok  <pbartok@novell.com>
25871
25872         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
25873           XplatUIX11.cs: Extended the Systray API
25874         * Form.cs: Removed debug output
25875         * Application.cs: Fixed focus assignment, always need to call
25876           XplatUI.Activate() since Form.Activate() has rules that may
25877           prevent activation
25878         * NotifyIcon.cs: Should be complete now
25879         * ToolTip.cs: Worked around possible timer bug
25880
25881 2005-01-27  Jackson Harper  <jackson@ximian.com>
25882
25883         * TabControl.cs:
25884         - Only invalidate the effected tabs when the
25885         selected index changes. This reduces drawing and gets rid of some
25886         flicker.
25887         - Only refresh if the tabs need to be shifted, otherwise only
25888         invalidate the slider button.
25889         - On windows the tabs are not filled to right if the slider is
25890         visible.
25891         
25892 2005-01-27  Jackson Harper  <jackson@ximian.com>
25893
25894         * TabControl.cs: Only refresh on mouseup if we are showing the
25895         slider. Also only invalidate the button whose state has changed.
25896
25897 2005-01-26  Peter Bartok  <pbartok@novell.com>
25898
25899         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
25900         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
25901           and SystrayRemove() methods
25902         * XplatUIOSX.cs: Stubbed Systray methods
25903         * XplatUIX11.cs:
25904           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
25905             methods
25906           - Fixed broken XChangeProperty calls (marshalling messed up things)
25907         * X11Structs.cs: Added enums and structs required for Size hinting
25908         * NotifyIcon.cs: Added & implemented
25909
25910 2005-01-26  Jackson Harper  <jackson@ximian.com>
25911
25912         * TabControl.cs: Space vertically layed out tabs properly.
25913
25914 2005-01-26  Peter Bartok  <pbartok@novell.com>
25915
25916         * Form.cs (CreateClientParams): Always set the location to 0,0
25917           since we're a child window.
25918
25919         * Control.cs (SetVisibleCore): Always explicitly setting the location
25920           of a toplevel window, apparently X11 doesn't like to move windows
25921           while they're not mapped.
25922
25923 2005-01-26  Jackson Harper  <jackson@ximian.com>
25924
25925         * TabControl.cs: Implement FillToRight size mode with vertically
25926         rendered tabs.
25927
25928 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
25929
25930         * ControlPaint.cs, ThemeWin32Classic.cs
25931                 - Fixes DrawFocusRectangle
25932
25933 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
25934
25935         * MenuAPI.cs:
25936                 - MenuBar tracking only starts when item is first clicked
25937                 - Fixes menu hidding for multiple subitems
25938                 - Unselect item in MenuBar when item Executed
25939                 - Fixes bug 71495
25940
25941 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
25942
25943         * ListControl.cs:
25944                 - IsInputKey for ListBox
25945         * ListBox.cs:
25946                 - Focus item
25947                 - Shift and Control item selection
25948                 - Implement SelectionMode.MultiExtended
25949                 - Fixes RightToLeft
25950         * ComboBox.cs:
25951                 - IsInputKey implemented
25952                 - Do not generate OnTextChangedEdit on internal txt changes
25953                 
25954 2005-01-23  Peter Bartok  <pbartok@novell.com>
25955
25956         * AccessibleObject.cs: Partially implemented Select()
25957         * MonthCalendar.cs: Added missing attributes and events
25958         * Form.cs: Fixed CreateParams behaviour, now controls derived from
25959           form can properly override CreateParams.
25960         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
25961           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
25962           Control performs Invalidate & Update
25963         * NativeWindow (CreateHandle): Added special handling for Form
25964           and Form.FormParent classes to allow overriding of From.CreateParams
25965         * Control.cs:
25966           - ControlNativeWindow: Renamed 'control' variable to more intuitive
25967             name 'owner'
25968           - ControlNativeWindow: Added Owner property
25969           - Removed usage of Refresh() on property changes, changed into
25970             Invalidate(), we need to wait until the queue is processed for
25971             updates, direct calls might cause problems if not all vars for
25972             Paint are initialized
25973           - Added call to UpdateStyles() when creating the window, to set any
25974             styles that CreateWindow might have ignored.
25975           - Added support for Form CreateParent overrides to UpdateStyles()
25976         * MessageBox.cs: Removed no longer needed FormParent override stuff,
25977           CreateParams are now properly overridable
25978         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
25979           CreateParams are now properly overridable
25980
25981 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
25982
25983         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
25984         OnTextBoxChanged.
25985
25986         Capture LostFocus and OnTextBoxChanged.  The later introduces a
25987         recursive invocation that I have not figured out yet.
25988
25989         Reset the timer when not using (it was accumulating).
25990
25991
25992         (OnTextBoxChanged): Set UserEdit to true here to track whether the
25993         user has made changes that require validation.
25994
25995         Reset changing to avoid loops.
25996
25997 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
25998
25999         * NumericUpDown.cs: Display value at startup.
26000
26001         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
26002         ValidateEditText.
26003
26004         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
26005         filled in.  Added some basic parsing of text.
26006
26007         Still missing the OnXXX method overrides, and figuring out the
26008         events that must be emitted.
26009
26010         * UpDownBase.cs: Handle UserEdit on the Text property.
26011         
26012 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
26013
26014         * ComboBox.cs:
26015           - Fixes IntegralHeight
26016           - ToString method
26017
26018 2005-01-21  Jackson Harper  <jackson@ximian.com>
26019
26020         * TabControl.cs: Set the SelectedIndex property when SelectedTab
26021         is set so that the page visibility is updated and the tabs are
26022         sized correctly.
26023
26024 2005-01-21  Jackson Harper  <jackson@ximian.com>
26025
26026         * TabControl.cs: Use cliping rectangle for blitting. Give the
26027         theme the clipping rect so we can do clipping while
26028         drawing. Remove some debug code.
26029
26030 2005-01-21  Jackson Harper  <jackson@ximian.com>
26031
26032         * TabPage.cs: Add a new method so tab pages can force the tab
26033         control to recalculate the tab page sizes.
26034         * TabControl.cs: UpdateOwner needs to make the tab control recalc
26035         sizes.
26036
26037 2005-01-20  Jackson Harper  <jackson@ximian.com>
26038
26039         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
26040
26041 2005-01-20  Jackson Harper  <jackson@ximian.com>
26042
26043         * TreeView.cs: Set the bounds for nodes properly. They were
26044         getting screwed up when checkboxes were not enabled, but images
26045         were.
26046
26047 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
26048
26049         * ListBox.cs:
26050                 - Owner draw support
26051                 - Fixes
26052                 
26053 2005-01-20  Jackson Harper  <jackson@ximian.com>
26054
26055         * XplatUIStructs.cs: More misc keys
26056         * X11Keyboard.cs: Ignore some control keys.
26057
26058 2005-01-20  Jackson Harper  <jackson@ximian.com>
26059
26060         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
26061         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
26062
26063 2005-01-19  Peter Bartok  <pbartok@novell.com>
26064
26065         * Control.cs: Un-selecting the control when it is loosing focus
26066
26067 2005-01-19  Jackson Harper  <jackson@ximian.com>
26068
26069         * TreeView.cs: Hook up to the text controls leave event so we can
26070         end editing when the users clicks outside the text box.
26071         
26072 2005-01-19  Jackson Harper  <jackson@ximian.com>
26073
26074         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
26075         get set in the conversion array.
26076
26077 2005-01-19  Peter Bartok  <pbartok@novell.com>
26078
26079         * Application.cs (ModalRun): Added a call to CreateControl to ensure
26080           focus is properly set
26081         * Button.cs:
26082           - Added missing attributes
26083           - removed styles, those are already set in the base class
26084         * ButtonBase.cs:
26085           - Added missing attributes
26086           - Added clip window styles
26087         * CheckBox.cs: Added missing attributes
26088         * CommonDialog.cs:
26089           - FormParentWindow.CreateParams: Added required clip styles
26090         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
26091           also filters modifier keys
26092         * MessageBox.cs:
26093           - Added assignment of Accept and Cancel button to enable Enter
26094             and Esc keys in MessageBox dialogs
26095           - FormParentWindow.CreateParams: Added required clip styles
26096         * RadioButton.cs: Added missing attributes
26097         * TextControl.cs: No longer draws selection if control does not
26098           have focus
26099         * TextBoxBase.cs:
26100           - Now draws simple rectangle around test area to make it obvious
26101             there's a control. This is a hack until we properly support borders
26102           - A few simple fixes to support selections better, now erases selected
26103             text when typing, and resets selection when using movement keys
26104
26105 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
26106
26107         * UpDownBase.cs: Added some new properties.
26108
26109         * DomainUpDown.cs: Implement a lot to get my test working.
26110
26111 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26112
26113         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
26114
26115 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26116
26117         * OSXStructs (WindowAttributes): Fixed csc complaints
26118
26119 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26120
26121         * XplayUIOSX.cs:
26122           OSXStructs.cs: Initial refactor to move enums and consts into
26123           OSXStructs and use them in the driver for greater readability.
26124
26125 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26126
26127         * XplatUIOSX.cs: Initial support for Standard Cursors.
26128         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
26129
26130 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
26131
26132         * ComboBox.cs: ability to change style when the ctrl is already
26133         created, missing methods and events, bug fixes, signature fixes
26134
26135 2005-01-19  Peter Bartok  <pbartok@novell.com>
26136
26137         * Cursors.cs (ctor): Added ctor to fix signature
26138
26139 2005-01-18  Peter Bartok  <pbartok@novell.com>
26140
26141         * Button.cs: Implemented DoubleClick event
26142         * ButtonBase.cs:
26143           - Fixed keyboard handling to behave like MS, where the press of
26144             Spacebar is equivalent to a mousedown, and the key release is
26145             equivalent to mouseup. Now a spacebar push will give the same
26146             visual feedback like a mouse click.
26147           - Added missing attributes
26148           - Added ImeModeChanged event
26149           - Added support for generating DoubleClick event for derived classes
26150         * CheckBox.cs:
26151           - Implemented DoubleClick event
26152           - Added missing attributes
26153         * CommonDialog.cs: Added missing attribute
26154         * ContextMenu.cs: Added missing attributes
26155         * RadioButton.cs:
26156           - AutoChecked buttons do not allow to be unselected when clicked
26157             (otherwise we might end up with no selected buttons in a group)
26158           - Added missing attributes
26159           - Implemented DoubleClickEvent
26160         * ThreadExceptionDialog.cs: Enabled TextBox code
26161
26162 2005-01-18  Peter Bartok  <pbartok@novell.com>
26163
26164         * Form.cs: Removed debug output
26165         * Button.cs: Added support for DoubleClick method
26166
26167 2005-01-18  Peter Bartok  <pbartok@novell.com>
26168
26169         * Form.cs:
26170           - Added method to parent window that allows triggering size
26171             calculations when a menu is added/removed
26172           - set_Menu: Cleaned up mess from early days of Form and Control,
26173             now properly triggers a recalc when a menu is added/removed
26174           - Added case to select form itself as focused form if no child
26175             controls exist
26176           - Added PerformLayout call when showing dialog, to ensure properly
26177             placed controls
26178         * Control.cs:
26179           - Select(): Made internal so Form can access it
26180           - Focus(): Only call Xplat layer if required (avoids loop), and sets
26181             status
26182         * Application.cs (Run): Removed hack and calls PerformLayout instead
26183           to trigger calculation when Form becomes visible
26184
26185 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
26186
26187         * ComboBox.cs: fixes for ownerdraw
26188
26189 2005-01-18  Peter Bartok  <pbartok@novell.com>
26190
26191         * TextControl.cs:
26192           - Sentinel is no longer static, each Document gets it's own, this
26193             avoids locking or alternatively overwrite problems when more
26194             than one text control is used simultaneously.
26195           - Switched to use Hilight and HilightText brushes for text selection
26196
26197         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
26198
26199 2005-01-18  Peter Bartok  <pbartok@novell.com>
26200
26201         * Control.cs:
26202           - Hooked up the following events:
26203                 o ControlAdded
26204                 o ControlRemoved
26205                 o HandleDestroyed
26206                 o ImeModeChanged
26207                 o ParentChanged
26208                 o TabStopChanged
26209                 o Invalidated
26210                 o SystemColorsChanged
26211                 o ParentFontChanged
26212                 o Move
26213           - Removed debug output
26214           - Added a call to the current theme's ResetDefaults when a color change
26215             is detected
26216         * Form.cs: Now setting the proper ImeMode
26217         * Theme.cs: Defined a method to force recreation of cached resources
26218           and rereading of system defaults (ResetDefaults())
26219         * ThemeWin32Classic.cs: Added ResetDefaults() stub
26220
26221 2005-01-17  Peter Bartok  <pbartok@novell.com>
26222
26223         * Control.cs: Added missing attributes
26224
26225 2005-01-17  Jackson Harper  <jackson@ximian.com>
26226
26227         * TreeNode.cs: Implement editing. Add missing properties selected
26228         and visible.
26229         * TreeView.cs: Implement node editing. Also some fixes to use
26230         Invalidate (invalid area) instead of Refresh when selecting.
26231
26232 2005-01-17  Peter Bartok  <pbartok@novell.com>
26233
26234         * Control.cs:
26235           - Implemented InvokeGotFocus() method
26236           - Implemented InvokeLostFocus() method
26237           - Implemented InvokePaint() method
26238           - Implemented InvokePaintBackground() method
26239           - Implemented InvokeClick() method
26240           - Implemented FindForm() method
26241           - Implemented RectangleToClient() method
26242           - Implemented ClientToRectangle() method
26243           - Implemented ResetBackColor() method
26244           - Implemented ResetCursor() method
26245           - Implemented ResetFont() method
26246           - Implemented ResteForeColor() method
26247           - Implemented ResetImeMode() method
26248           - Implemented ResetLeftToRight() method
26249           - Implemented ResetText() method
26250           - Implemented Scale() methods
26251           - Implemented ScaleCore() method
26252           - Implemented Update() method
26253           - Removed unused variables
26254           - Stubbed AccessibilityNotifyClients and
26255             ControlAccessibleObject.NotifyClients() methods (dunno what to do
26256             with those yet)
26257           - Now setting proper default for RightToLeft property
26258           - Fixed bug in SetClientSizeCore that would cause windows to get
26259             really big
26260           - Now sending Click/DoubleClick events
26261           - Now selecting controls when left mouse button is clicked on
26262             selectable control
26263         * AccessibleEvents.cs: Added
26264         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
26265         * XplatUIOSX.cs: Stubbed UpdateWindow() method
26266         * XplatUIWin32.cs: Implemented UpdateWindow() method
26267         * XplatUIX11.cs: Implemented UpdateWindow() method
26268         * Form.cs: Removed stray semicolon causing CS0162 warning
26269         * ThemeWin32Classic.cs: Fixed unused variable warnings
26270         * ScrollableControl.cs: Now calls base method for ScaleCore
26271         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
26272           style to avoid interference with internal click handler (which is
26273           different than standard Control click handling)
26274         * RadioButton.cs:
26275           - Now unchecks all sibling radio buttons when control is
26276             selected (Fixes #68756)
26277           - Removed internal tabstop variable, using the one inherited from
26278             Control
26279
26280 2005-01-17  Jackson Harper  <jackson@ximian.com>
26281
26282         * NavigateEventArgs.cs: Fix base type.
26283         * LinkLabel.cs: Sig fix
26284         
26285 2005-01-17  Jackson Harper  <jackson@ximian.com>
26286
26287         * TreeView.cs: Only invalidate the effected nodes bounds when
26288         selecting nodes.
26289
26290 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
26291
26292         * XplatUIWin32.cs: fixes Win32 marshaling
26293         * XplatUIX11.cs: fixes method signature
26294
26295 2005-01-17  Peter Bartok  <pbartok@novell.com>
26296
26297         * XplatUIX11.cs: Clean up resources when we no longer need them
26298
26299 2005-01-17  Peter Bartok  <pbartok@novell.com>
26300
26301         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
26302           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
26303           and DestroyCursor() methods.
26304         * Cursor.cs: Partially implemented, now supports standard cursors;
26305           still contains some debug code
26306         * Cursors.cs: Implemented class
26307         * Control.cs:
26308           - WndProc(): Added handling of WM_SETCURSOR message, setting the
26309             appropriate cursor
26310           - Implemented Cursor property
26311           - Replaced break; with return; more straightforwar and possibly
26312             faster
26313           - Now properly setting the result for WM_HELP
26314         * X11Structs.cs: Added CursorFontShape enum
26315         * XplatUIStructs.cs:
26316           - Added StdCursor enum (to support DefineStdCursor() method)
26317           - Added HitTest enum (to support sending WM_SETCURSOR message)
26318         * XplatUIX11.cs:
26319           - Now sends the WM_SETCURSOR message
26320           - Implemented new cursor methods
26321         * XplatUIOSX.cs: Stubbed new cursor methods
26322         * XplatUIWin32.cs:
26323           - Implemented new cursor methods
26324           - Added GetSystemMetrics function and associated enumeration
26325
26326 2005-01-15  Peter Bartok  <pbartok@novell.com>
26327
26328         * Control.cs:
26329           - WndProc(): Now handles EnableNotifyMessage
26330           - SelectNextControl(): Fixed bug where if no child or sibling
26331             controls exist we looped endlessly
26332
26333 2005-01-14  Jackson Harper  <jackson@ximian.com>
26334
26335         * TreeView.cs: Recalculate the tab pages when a new one is added
26336         so that the proper bounding rects are created.
26337
26338 2005-01-14  Jackson Harper  <jackson@ximian.com>
26339
26340         * TreeView.cs: Draw a gray box instead of a grip in the lower
26341         right hand corner when there are both horizontal and vertical
26342         scroll bars.
26343
26344 2005-01-14  Jackson Harper  <jackson@ximian.com>
26345
26346         * Control.cs: When erasing backgrounds use FromHwnd instead of
26347         FromHdc when there is a NULL wparam. This occurs on the X driver.
26348         * XplatUIX11.cs: Set the wparam to NULL.
26349
26350 2005-01-13  Jackson Harper  <jackson@ximian.com>
26351
26352         * PictureBox.cs: Implement missing methods (except ToString, need
26353         to test that on windows) and events. When visibility is changed we
26354         need to redraw the image because the buffers are killed. When size
26355         is changed refresh if the sizemode needs it.
26356
26357 2005-01-13  Peter Bartok  <pbartok@novell.com>
26358
26359         * Control.cs (SelectNextControl): Was using wrong method to select
26360           a control
26361
26362 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
26363
26364         * ComboBox.cs: fixes dropstyle
26365
26366 2005-01-13  Peter Bartok  <pbartok@novell.com>
26367
26368         * Form.cs:
26369           - Implemented Select() override
26370           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
26371           - Now sets keyboard focus on startup
26372         * Control.cs (SelectNextControl): Now properly handles directed=true
26373         * TextBoxBase.cs:
26374           - WndProc: Now passes tab key on to base if AcceptTabChar=false
26375           - Added (really bad) focus rectangle (mostly for testing)
26376         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
26377           to enforce redraw on focus changes
26378         * ContainerControl.cs:
26379           - Fixed detection of Shift-Tab key presses
26380           - Fixed traversal with arrow keys
26381         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
26382           gonna keep this or if it's complete yet
26383         
26384 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
26385
26386         * ComboBox.cs: missing properties, fixes
26387
26388 2005-01-13  Peter Bartok  <pbartok@novell.com>
26389
26390         * Panel.cs (ctor): Setting Selectable window style to off
26391         * Splitter.cs (ctor): Setting Selectable window style to off
26392         * GroupBox.cs (ctor): Setting Selectable window style to off
26393         * Label.cs (ctor): Setting Selectable window style to off
26394
26395 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
26396
26397         * UpDownBase.cs (InitTimer): If the timer has been already
26398         created, enable it.
26399
26400         Use a TextBox instead of a Label.
26401
26402 2005-01-12  Jackson Harper  <jackson@ximian.com>
26403
26404         * TreeView.cs: Refresh the tree after sorting the nodes. Always
26405         draw the connecting node lines (when ShowLines is true).
26406         * TreeNode.cs: The nodes index can now be updated. This is used
26407         when a node collection is sorted.
26408         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
26409         insert or an existing unsorted node collection can be sorted.
26410         
26411 2005-01-12  Peter Bartok  <pbartok@novell.com>
26412
26413         * ContainerControl.cs: Implemented ProcessDialogKeys()
26414
26415 2005-01-12  Peter Bartok  <pbartok@novell.com>
26416
26417         * Control.cs:
26418           - Implemented SelectNextControl() method
26419           - Several focus related bug fixes
26420           - Fixed Docking calculations to match MS documentation and
26421             behaviour
26422
26423 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
26424
26425         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
26426         bug fixes
26427
26428 2005-01-12  Peter Bartok  <pbartok@novell.com>
26429
26430         * Control.cs:
26431           - Fixed broken Contains() method
26432           - Implemented GetNextControl() method. Finally. This is the pre-
26433             requisite for focus handling.
26434
26435 2005-01-12  Peter Bartok  <pbartok@novell.com>
26436
26437         * OSXStrucs.cs: Added
26438
26439 2005-01-12  Peter Bartok  <pbartok@novell.com>
26440
26441         * XplatUIWin32.cs:
26442           - Removed PeekMessageFlags
26443           - Implemented SetWindowStyle() method
26444         * XplatUIStructs.cs: Added PeekMessageFlags
26445         * X11Structs: Added missing border_width field to XWindowChanges struct
26446         * XplatUIX11.cs:
26447           - PeekMessage: Now throws exception if flags which are not yet
26448             supported are passed
26449           - Implemented SetWindowStyle() method
26450           - Fixed SetZOrder to handle AfterHwnd properly
26451         * XplatUI.cs: Added SetWindowStyle() method
26452         * XplatUIDriver.cs: Added SetWindowStyle() abstract
26453         * Control.cs:
26454           - Implemented UpdateStyles() method
26455           - Implemented UpdateZOrder() method
26456         * XplatUIOSX.cs: Added SetWindowStyle() stub
26457
26458 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
26459
26460         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
26461         button mouse).
26462
26463
26464 2005-01-11  Jackson Harper  <jackson@ximian.com>
26465
26466         * TreeView.cs: Still need to draw lines to siblings even if out of
26467         the current node is out of the clip.
26468
26469 2005-01-11  Jackson Harper  <jackson@ximian.com>
26470
26471         * TreeView.cs: When setting the hbar/vbar/grip position use
26472         SetBounds so that perform layout is only called once. Also suspend
26473         and resume layout so layout is only done once for all controls.
26474         - Removed some debug fluff
26475         * SizeGrip.cs: Call base implmentation in overriding methods.
26476         - When visibility is changed the drawing buffers are killed so we
26477         need to redraw.
26478
26479 2005-01-11  Jackson Harper  <jackson@ximian.com>
26480
26481         * TreeView.cs: Calculate the open node count while drawing. This
26482         saves us an entire tree traversal for every paint operation. Use
26483         a member var for the open node count so less vars are passed around.
26484
26485 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
26486
26487         * MonthCalendar.cs:
26488         - fixed selection to use mousemove, not mouse polling on timer
26489         * ThemeWin32Classic.cs
26490         - removed redundant unused variable "no_more_content"
26491         
26492 2005-01-11  Peter Bartok  <pbartok@novell.com>
26493
26494         * XplatUIX11.cs (DoEvents): Needs to return when no more events
26495           are pending, so it now calls PeekMessage instead of GetMessage;
26496           implemented a incomplete version of PeekMessage
26497         
26498 2005-01-11  Peter Bartok  <pbartok@novell.com>
26499
26500         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
26501           I18n issues
26502         * TextBoxBase.cs: Added sending of TextChanged event
26503
26504 2005-01-10  Jackson Harper  <jackson@ximian.com>
26505
26506         * TreeView.cs: Try not to draw outside the clipping rectangle on
26507         each node element.
26508
26509 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
26510
26511         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
26512
26513 2005-01-10  Jackson Harper  <jackson@ximian.com>
26514
26515         * TreeView.cs:
26516         - Implement fast scrolling. Now only the newly
26517         exposed nodes are drawn and the old image is moved using the
26518         XplatUI::ScrollWindow method.
26519         - Factor in height of nodes when calculating whether or not the
26520         node is in the clipping rect.
26521
26522 2005-01-10  Jackson Harper  <jackson@ximian.com>
26523
26524         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
26525
26526 2005-01-10  Peter Bartok  <pbartok@novell.com>
26527
26528         * Application.cs: Added temporary hack to resolve all our resize
26529           required issues on startup. This will get fixed properly at
26530           some point in the future
26531
26532 2005-01-10  Jackson Harper  <jackson@ximian.com>
26533
26534         * SizeGrip.cs: New internal class that is used as a sizing
26535         grip control...hence the name.
26536
26537 2005-01-10  Peter Bartok  <pbartok@novell.com>
26538
26539         * Control.cs: Implemented proper TabIndex handling, now assigning
26540           a tabindex when a control is added to a container
26541         * GroupBox.cs (ctor): Now sets the Container style bit, required
26542           for Control.GetNextControl()
26543
26544 2005-01-09  Jackson Harper  <jackson@ximian.com>
26545
26546         * TextBoxBase.cs: Clear window when scrolling (fixes build).
26547
26548 2005-01-09  Peter Bartok <pbartok@novell.com>
26549
26550         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
26551           XplatUIX11.cs: Added ability to control ScrollWindow expose and
26552           an overload for ScrollWindow to allow only scrolling a rectangle
26553
26554 2005-01-09  Peter Bartok <pbartok@novell.com>
26555
26556         * Form.cs:
26557           - Implemented SetDesktopBounds method
26558           - Implemented SetDesktopLocation method
26559
26560 2005-01-08  Jackson Harper  <jackson@ximian.com>
26561
26562         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
26563         the node count has changed, this removes to VScroll::Refresh calls
26564         when drawing.
26565
26566 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
26567
26568         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
26569
26570 2005-01-07  Jackson Harper  <jackson@ximian.com>
26571
26572         * TreeNode.cs: Just update the single node when it is
26573         checked. Don't refresh after toggling, the Expand/Collapse already
26574         handles this.
26575         * TreeView.cs: Respect clipping a little more when drawing. Try
26576         not to redraw things that don't need to be redrawn. Just hide the
26577         scrollbars when they are no longer needed instead of removing
26578         them, so they don't have to be created again and again.
26579         
26580 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
26581
26582         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
26583         coordinates to window space to place the caret properly, FIXED.
26584         Implement GetWindowState & SetWindowState
26585
26586 2005-01-06  Peter Bartok <pbartok@novell.com>
26587
26588         * Form.cs:
26589           - Implemented ClientSize property
26590           - Implemented DesktopBounds property
26591           - Implemented DesktopLocation property
26592           - Implemented IsRestrictedWindow property
26593           - Implemented Size property
26594           - Implemented TopLevel property
26595           - Implemented FormWindowState property
26596         * Control.cs:
26597           - Implemented GetTopLevel() method
26598           - Implemented SetTopLevel() method
26599         * X11Structs.cs (Atom):
26600           - Added AnyPropertyType definition
26601           - Added MapState definiton and updated XWindowAttribute struct
26602         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
26603         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
26604         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
26605         * XplatUIWin32.cs:
26606           - Implemented GetWindowState() and SetWindowState() methods
26607           - Fixed Win32GetWindowLong return type
26608         * XplatUIX11.cs:
26609           - Introduced central function for sending NET_WM messages
26610           - Implemented GetWindowState() and SetWindowState() methods
26611         * TextBoxBase.cs (set_Lines):
26612           - Now uses Foreground color for text added via Text property (Duh!)
26613           - Added code to remember programmatically requested size (fixes
26614             behaviour when Multiline is set after Size)
26615           - Added AutoSize logic
26616
26617 2005-01-06  Jackson Harper  <jackson@ximian.com>
26618
26619         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
26620
26621 2005-01-06  Jackson Harper  <jackson@ximian.com>
26622
26623         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
26624         set to less then 0.
26625
26626 2005-01-06  Jackson Harper  <jackson@ximian.com>
26627
26628         * ScrollableControl.cs: Lazy init the scrollbars.
26629         
26630 2005-01-06  Jackson Harper  <jackson@ximian.com>
26631
26632         * Theme.cs: Speed up getting pens and solid brushes, by using
26633         their ARGB as a hash instead of tostring and not calling Contains.
26634
26635 2005-01-06  Peter Bartok <pbartok@novell.com>
26636
26637         * Form.cs:
26638           - Implemented OnActivated and OnDeactivate event trigger
26639           - Implemented Activate() method
26640           - Fixed ShowDialog() to activate the form that was active before
26641             the dialog was shown
26642         * XplatUIX11.cs:
26643           - Added global active_window var that tracks the currently active
26644             X11 window
26645           - Now always grabs Property changes from the root window to always
26646             catch changes on the active window property
26647           - Added code to PropertyNotify handler to send Active/Inactive
26648             messages when state changes. This puts X11 and Win32 en par on
26649             WM_ACTIVATE notifications (except for double notifications when
26650             the user clicks away from our modal window to another one of our
26651             windows)
26652
26653 2005-01-05  Jackson Harper  <jackson@ximian.com>
26654
26655         * ImageList.cs: Implment ctor
26656
26657 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
26658
26659         * XplatUIOSX.cs: Implement Activate/SetTopmost
26660
26661 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
26662
26663         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
26664
26665 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
26666
26667         * XplatUIOSX.cs: Implement GetActive/SetFocus.
26668
26669 2005-01-05  Peter Bartok <pbartok@novell.com>
26670
26671         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
26672           XplatUIOSX.cs: Added GetActive method to return the currently
26673           active window for the application (or null, if none is active)
26674         * Form.cs:
26675           - Implemented ActiveForm
26676           - Commented out owner assignment for modal dialogs (causes problems
26677             on Win32, since the owner will be disabled)
26678           - Reworked some Active/Focus handling (still incomplete)
26679         * CommonDialog.cs: Commented out owner assignment for modal dialogs
26680           (causes problems on Win32, since the owner will be disabled)
26681         * IWin32Window: Added ComVisible attribute
26682
26683 2005-01-05  Peter Bartok <pbartok@novell.com>
26684
26685         * ToolTip.cs (WndProc): Enable setting focus now that we have the
26686           required XplatUI functions.
26687
26688 2005-01-05  Peter Bartok <pbartok@novell.com>
26689
26690         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
26691           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
26692           to implement focus and activation handling; still incomplete and
26693           with debug output
26694
26695 2005-01-04  Peter Bartok <pbartok@novell.com>
26696
26697         * TextBoxBase.cs: Changed access level for Document property to
26698           match switch to internal for TextControl
26699
26700 2005-01-04  Peter Bartok <pbartok@novell.com>
26701
26702         * AccessibleObject: Added ComVisible attribute
26703
26704 2005-01-04  Jackson Harper  <jackson@ximian.com>
26705
26706         * X11Keyboard.cs: Remove unneeded var.
26707
26708 2005-01-04  Jackson Harper  <jackson@ximian.com>
26709
26710         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
26711         but PAINT.
26712         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
26713         ClientMessage. This makes apps exit cleanly (more often).
26714         
26715 2005-01-04  Jackson Harper  <jackson@ximian.com>
26716
26717         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
26718         handling focus, return correct colors and fonts,
26719         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
26720         handle selection, horizontal scrolling, and mouse interaction.
26721
26722 2005-01-04  Peter Bartok <pbartok@novell.com>
26723
26724         * ICommandExecutor.cs: Added
26725         * IDataGridColumnStyleEditingNotificationService.cs: Added
26726         * IFeatureSupport.cs: Added
26727         * IFileReaderService.cs: Added
26728         * IDataObject.cs: Added ComVisible attribute
26729         * AmbientProperties.cs: Added
26730         * BaseCollection.cs: Added missing attributes
26731         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
26732         * BaseCollection.cs: Added missing attributes
26733         * Binding.cs: Added TypeConverter attribute
26734         * BindingContext.cs: Added DefaultEvent attribute
26735         * BindingsCollection.cs: Added DefaultEvent attribute
26736         * Button.cs: Added DefaultValue attribute
26737         * DragEventArgs.cs: Added ComVisible attribute
26738         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
26739         * KeyEventArgs.cs: Added ComVisible attribute
26740         * KeyPressEventArgs.cs: Added ComVisible attribute
26741         * MouseEventArgs.cs: Added ComVisible attribute
26742         * NavigateEventArgs.cs: Added
26743         * NavigateEventHandler.cs: Added
26744         * FeatureSupport.cs: Added
26745         * OSFeature.cs: Added
26746         * Theme.cs: Added abstract Version property to support OSFeature
26747         * ThemeWin32Classic.cs: Added Version property to
26748           support OSFeature.Themes
26749         * ProgressBar.cs: Removed OnPaintBackground override, not required since
26750           the proper styles to avoid background drawing are set, also doesn't
26751           match MS signature
26752         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
26753         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
26754         * ScrollEventArgs.cs: Added ComVisible attribute
26755         * SplitterEventArgs.cs: Added ComVisible attribute
26756         * AccessibleSelection.cs: Added Flags attribute
26757         * Appearance.cs: Added ComVisible attribute
26758         * Border3DSide.cs: Added ComVisible attribute
26759         * Border3DStyle.cs: Added ComVisible attribute
26760         * BorderStyle.cs: Added ComVisible attribute
26761         * DragAction.cs: Added ComVisible attribute
26762         * ErrorBlinkStyle.cs: Added
26763         * ScrollEventType.cs: Added ComVisible attribute
26764         * AnchorStyles.cs: Added Editor attribute
26765         * DockStyle.cs: Added Editor attribute
26766         * HorizontalAlignment.cs: Added ComVisible attribute
26767         * HelpEventArgs.cs: Added ComVisible attribute
26768         * PaintEventArgs.cs: Added IDisposable
26769
26770 2005-01-04  Peter Bartok <pbartok@novell.com>
26771
26772         * TextControl.cs: Switched Line, LineTag and Document classes to
26773           internal
26774
26775 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
26776
26777         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
26778         Simple mode, fixes, IntegralHeight, etc.
26779
26780 2005-01-04  Peter Bartok <pbartok@novell.com>
26781
26782         * TextBoxBase.cs: Using proper font variable now
26783
26784 2005-01-04  Peter Bartok <pbartok@novell.com>
26785
26786         * Form.cs (ShowDialog): Set parent to owner, if provided
26787         * GroupBox.cs: Removed unused vars
26788         * TextControl.cs:
26789           - Added GetHashCode() for Document and LineTag classes
26790           - Removed unused variables
26791           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
26792             to allow translation between continuous char position and line/pos
26793         * CheckBox.cs: Removed vars that are provided by base class
26794         * RadioButton.cs: Removed vars that are provided by base class, added
26795           new keyword where required
26796         * LinkLabel.cs: Added new keyword where required
26797         * Control.cs (WndProc): Removed unused variable
26798         * TextBoxBase.cs:
26799           - Finished SelectionLength property
26800           - Implemented SelectionStart property
26801           - Implemented Text property
26802           - Removed unused vars
26803         * MessageBox.cs: Added new keyword where required
26804         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
26805           WndProc signature
26806         * MenuAPI.cs: Added new keyword where required
26807         * ButtonBase.cs: Removed vars that are provided by base class, added
26808           new keyword where required
26809         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
26810           argument to double, to allow compiling with csc 2.0 (Atsushi ran
26811           into this)
26812         * Application.cs (Run): Now triggers the ThreadExit event
26813         * CommonDialog.cs: Added new keyword where required; now properly sets
26814           parent (owner) for dialog
26815         * XplatUIX11.cs: Commented out unused vars
26816         * StatusBar.cs: Fixed signature for Text property
26817         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
26818
26819 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
26820
26821         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
26822         TrackBar.cs, MonthCalendar.cs: remove unused vars
26823
26824 2005-01-03  Jackson Harper  <jackson@ximian.com>
26825
26826         * ThemeWin32Classic.cs:
26827         * X11Keyboard.cs: Remove unused vars.
26828
26829 2005-01-03  Peter Bartok  <pbartok@novell.com>
26830
26831         * TextBox.cs:
26832           - set_Text: Tied into TextControl
26833           - set_TextAlignment: Tied into TextControl
26834         * TextControl.cs:
26835           - Added alignment properties and implemented alignment handling
26836             and drawing (still has a bug, not generating proper expose events)
26837           - Added new Line() constructor to allow passing the line alignment
26838           - Fixed selection setting, properly handling end<start now
26839           - Added aligment considerations to RecalculateDocument()
26840         * TextBoxBase.cs:
26841           - Now properly enforces control height for single line controls
26842           - Added support for CharacterCasing
26843           - Added IsInputKey override
26844           - Fixed Keys.Enter logic
26845           - Added SetBoundsCore override
26846           - Fixed mouse selection handling
26847
26848 2005-01-03  Jackson Harper  <jackson@ximian.com>
26849
26850         * TreeView.cs:
26851           - Collapse and uncheck all nodes when CheckBoxes is disabled.
26852           - Checkboxes are always aligned to the bottom of the node,
26853           regardless of item height.
26854           - Use the node bounds to draw the text so we can center it when
26855           the item height is greater then the font height.
26856           - Node::Bounds are only the text part of the node.
26857         * TreeNode.cs: New method to combine collapsing and unchecking all
26858           nodes recursively.
26859
26860 2005-01-02  Jackson Harper  <jackson@ximian.com>
26861
26862         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
26863         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
26864         tree when a check is changed. TODO: Only refresh the checked node.
26865
26866 2004-12-30  Jackson Harper  <jackson@ximian.com>
26867
26868         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
26869         * TreeNode.cs: When collapsing make sure to never collapse the
26870         root node.
26871
26872 2004-12-29  Jackson Harper  <jackson@ximian.com>
26873
26874         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
26875         
26876 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
26877
26878         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
26879
26880 2004-12-28  Peter Bartok  <pbartok@novell.com>
26881
26882         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
26883           not yet assigned
26884
26885 2004-12-28  Peter Bartok  <pbartok@novell.com>
26886
26887         * Control.cs (WndProc): Added WM_HELP handler, now generates
26888           HelpRequested event
26889         * Form.cs: Added HelpButton property and required support code
26890         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
26891
26892 2004-12-28  Peter Bartok  <pbartok@novell.com>
26893
26894         * CommonDialog.cs:
26895           - Made DialogForm.owner variable internal
26896           - Added check to ensure owner form is set before setting
26897             owner properties in CreateParams
26898
26899 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
26900
26901         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
26902           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
26903           GetCursorPos.  Fix major visibility issues.  Rework the windowing
26904           system to support borderless/titleless windows (implements menus).
26905           Fix GetWindowPos.  Implement initial background color support for
26906           views.
26907
26908 2004-12-28  Peter Bartok  <pbartok@novell.com>
26909
26910         * Form.cs (get_CreateParams): Make sure we have an owner before using
26911           the owner variable. Implement proper default if no owner exists
26912
26913 2004-12-28  Peter Bartok  <pbartok@novell.com>
26914
26915         * In preparation for making Managed.Windows.Forms the default build target
26916           for System.Windows.Forms, the following stubbed files were added.
26917           Dialogs are currently being implemented by contributors and are only
26918           short-term place holders.
26919         * ColorDialog.cs: Initial check-in (minmal stub)
26920         * DataGrid.cs: Initial check-in (minimal stub)
26921         * DataGridLineStyle.cs: Initial check-in (minimal stub)
26922         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
26923         * DataGridTableStyle.cs: Initial check-in (minimal stub)
26924         * FontDialog.cs: Initial check-in (minimal stub)
26925         * FileDialog.cs: Initial check-in (minimal stub)
26926         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
26927         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
26928         * OpenFileDialog: Initial check-in (minimal stub)
26929         * IComponentEditorPageSite.cs: Initial check-in
26930         * Splitter.cs: Initial check-in (for Jackson)
26931         * SplitterEventArgs.cs: Initial check-in (for Jackson)
26932         * SplitterEventHandler.cs: Initial check-in (for Jackson)
26933         * TextBox.cs: Initial check-in; still needs some wiring to
26934           TextControl backend
26935         * Form.cs: Implemented ControlBox property
26936         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
26937         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
26938         * TextControl.cs: Added selection functionality; added todo header
26939         * TextBoxBase.cs:
26940           - Implemented Lines property
26941           - Implemented TextHeight property
26942           - Implemented SelectedText property
26943           - Implemented SelectionLength property
26944           - Implemented SelectAll method
26945           - Implemented ToString method
26946           - Removed and cleaned up some debug code
26947           - Implemented (still buggy) mouse text selection
26948
26949 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
26950
26951         * ComboBox.cs: Complete DropDownList implementation, fixes.
26952
26953 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
26954
26955         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
26956         * ComboBoxStyle.cs: ComboBoxStyle enum
26957         * ComboBox.cs: Initial work on ComboBox control
26958
26959 2004-12-21  Peter Bartok  <pbartok@novell.com>
26960
26961         * Control.cs (ctor, CreateParams): Moved setting of is_visible
26962           forward so that anything that creates a window gets the default,
26963           also no longer uses Visible property in CreateParams to avoid
26964           walking up the parent chain and possibly get the wrong visible
26965           status. Fixed IsVisible to no longer walk up to the parent.
26966
26967 2004-12-21  Peter Bartok  <pbartok@novell.com>
26968
26969         * Form.cs (ShowDialog): Unset modality for the proper window
26970  
26971 2004-12-20  Peter Bartok  <pbartok@novell.com>
26972
26973         * CommonDialog.cs: Initial check-in
26974
26975 2004-12-20  Peter Bartok  <pbartok@novell.com>
26976
26977         * Control.cs (Visible): Now uses the parent window instead of the
26978           client area window for the property
26979
26980         * Form.cs
26981           - ShowDialog(): Now uses the proper window for modality
26982           - The default visibility state for the form parent is now false. This
26983             will prevent the user from seeing all the changes to the form and
26984             its controls before the application hits Application.Run()
26985           - Removed some stale commented out code
26986
26987         * NativeWindow.cs:
26988           - Added FindWindow() method to have a method to check for existence
26989             of a window handle
26990           - Added ability to override default exception handling (for example
26991             when debugging with VS.Net; to do this the ExternalExceptionHandler
26992             define must be set
26993           - Removed some useless debug output
26994
26995         * XplatUIX11.cs:
26996           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
26997             not working as expected
26998           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
26999             property to allow switching back to the modal window if focus is
27000             given to another one of our windows (Application Modal)
27001           - Now only sets override_redirect if we create a window
27002             without WS_CAPTION
27003           - Moved EventMask selection before mapping of newly created window
27004             so we can catch the map event as well
27005           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
27006           - Added various Atom related DllImports
27007           - Implemented Exit() method
27008           - .ctor() : No longer shows window if WS_VISIBLE is not defined
27009             in the CreateParams
27010
27011         * MessageBox.cs: Now properly deals with the FormParent window by
27012           providing an override the FormParent CreateParams property to
27013           set as POPUP instead of OVERLAPPED window.
27014
27015 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
27016
27017         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
27018         Minor code cleanup.
27019
27020 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
27021         
27022         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
27023
27024 2004-12-18  Peter Bartok  <pbartok@novell.com>
27025
27026         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
27027           implementing SetModal() method
27028
27029 2004-12-18  Peter Bartok  <pbartok@novell.com>
27030
27031         * X11Structs.cs (XGCValues): Fixed type of function element
27032         * XplatUI.cs: Added ScrollWindow() method
27033         * XplatUIDriver.cs: Added ScrollWindow() abstract
27034         * XplatUIWin32.cs: Implemented ScrollWindow() method
27035         * XplatUIX11.cs: Implemented ScrollWindow() method
27036         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
27037
27038 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
27039
27040         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
27041         Some more keyboard support (INCOMPLETE)
27042
27043 2004-12-17  Peter Bartok  <pbartok@novell.com>
27044
27045         * TextControl.cs:
27046         - Added color attribute to line tags.
27047         - Added color argument to all functions dealing with tags
27048         - Added color argument support to various functions
27049         - Fixed miss-calculation of baseline/shift in certain circumstances
27050
27051         * TextBoxBase.cs: Added new color option to test code
27052
27053 2004-12-17  Jackson Harper  <jackson@ximian.com>
27054
27055         * TreeNode.cs:
27056         * MonthCalendar.cs: Signature fixes
27057
27058 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
27059
27060         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
27061         keyboard event moved it.  Create a new graphics context for each paint resolves this
27062
27063 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
27064
27065         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
27066         Make caret exist and go blink blink.  Initial keyboard support.
27067         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
27068         works.
27069
27070 2004-12-17  Jackson Harper  <jackson@ximian.com>
27071
27072         * XplatUIStructs.cs: Updated set of virtual keycodes.
27073         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
27074
27075 2004-12-17  Jackson Harper  <jackson@ximian.com>
27076
27077         * XplatUIX11.cs: Prune old keyboard code.
27078
27079 2004-12-17  Jackson Harper  <jackson@ximian.com>
27080
27081         * XplatUIX11.cs: When generating mouse wparams get the modifier
27082         keys from the ModifierKeys property.
27083
27084 2004-12-17  Jackson Harper  <jackson@ximian.com>
27085
27086         * X11Keyboard.cs: Send up/down input when generating
27087         messages. Remove some unused vars.
27088
27089 2004-12-17  Jackson Harper  <jackson@ximian.com>
27090
27091         * TabControl.cs:
27092         * TreeView.cs: get rid of warnings.
27093
27094 2004-12-17  Jackson Harper  <jackson@ximian.com>
27095
27096         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
27097
27098 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
27099
27100         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
27101           CheckedListBox.cs: Implementation
27102
27103 2004-12-17  Peter Bartok  <pbartok@novell.com>
27104
27105         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
27106
27107 2004-12-16  Peter Bartok  <pbartok@novell.com>
27108
27109         * TextControl.cs:
27110           - InsertCharAtCaret(): Fixed start pos fixup
27111           - CaretLine_get: No longer derives the line from the tag, the tag
27112             could be stale if lines in the document have been added or deleted
27113           - RebalanceAfterDelete(): Fixed bug in balancing code
27114           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
27115           - Line.Streamline(): Now can also elminate leading empty tags
27116           - DumpTree(): Added a few more tests and prevented exception on
27117             uninitialized data
27118           - Added Debug section for Combining lines
27119           - Delete(): Now copies all remaining properties of a line
27120           
27121         * TextBoxBase.cs:
27122           - Left mousebutton now sets the caret (and middle button still acts
27123             as formatting tester, which must go away soon)
27124           - Added Debug section for Deleting/Combining lines
27125           - Fixed calculations for UpdateView after Combining lines
27126
27127 2004-12-16  Peter Bartok  <pbartok@novell.com>
27128
27129         * TextControl.cs: Now properly aligns text on a baseline, using the
27130           new XplatUI.GetFontMetrics() method. Simplified several calculations
27131         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
27132           defined
27133
27134 2004-12-16  Peter Bartok  <pbartok@novell.com>
27135
27136         * XplatUI.cs: Added GetFontMetrics() method
27137         * XplatUIDriver.cs: Added GetFontMetrics() abstract
27138         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
27139           into libgdiplus, our private GetFontMetrics function
27140         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
27141         * XplatUIWin32.cs: Implemented GetFontMetrics() method
27142
27143 2004-12-16  Jackson Harper  <jackson@ximain.com>
27144
27145         * XplatUIStruct.cs: Add enum for dead keys
27146         * X11Keyboard.cs: Map and unmap dead keys.
27147
27148 2004-12-16  Jackson Harper  <jackson@ximian.com>
27149
27150         * X11Keyboard.cs: Detect and use the num lock mask.
27151
27152 2004-12-16  Peter Bartok  <pbartok@novell.com>
27153
27154         * Control.cs (CreateGraphics): Added check to make sure the
27155           handle of the window exists before calling Graphics.FromHwnd()
27156
27157 2004-12-16  Peter Bartok  <pbartok@novell.com>
27158
27159         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
27160           contains a lot of code that's not supposed to be there for the
27161           real thing, but required for developing/testing the textbox
27162           backend.
27163
27164 2004-12-16  Peter Bartok  <pbartok@novell.com>
27165
27166         * TextControl.cs:
27167         - Fixed Streamline method
27168         - Added FindTag method to Line
27169         - Added DumpTree method for debugging
27170         - Added DecrementLines() method for deleting lines
27171         - Fixed UpdateView to update the cursor to end-of-line on single-line
27172           updates
27173         - Added PositionCaret() method
27174         - Fixed MoveCaret(LineDown) to move into the last line, too
27175         - Added InsertChar overload
27176         - Fixed InsertChar tag offset calculations
27177         - Added DeleteChar() method
27178         - Added Combine() method for folding lines
27179         - Fixed Delete() method, no longer allocates wasted Line object and
27180           now copies all properties when swapping nodes
27181         - Delete() method now updates document line counter
27182
27183 2004-12-15  Jackson Harper  <jackson@ximian.com>
27184
27185         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
27186         * X11Keyboard.cs: Expose the currently selected modifier keys
27187         through a property.
27188
27189 2004-12-15  Peter Bartok  <pbartok@novell.com>
27190
27191         * TextControl.cs: Initial check-in. Still incomplete
27192
27193 2004-12-15  Jackson Harper  <jackson@ximian.com>
27194
27195         * TreeNode.cs:
27196         * TreeView.cs: Fix build on csc (second time today ;-))
27197
27198 2004-12-15  Jackson Harper  <jackson@ximian.com>
27199
27200         * TreeView.cs: Store the treenodes plus/minus box bounds when it
27201         is calculated and use this for click testing.
27202         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
27203
27204 2004-12-15  Jackson Harper  <jackson@ximian.com>
27205
27206         * TreeView.cs: Pass the nodes image index to the image list when
27207         drawing that image.
27208
27209 2004-12-15  Jackson Harper  <jackson@ximian.com>
27210
27211         * X11Keyboard.cs: Set messages hwnd.
27212         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
27213         post_message calls.
27214
27215 2004-12-15  Jackson Harper  <jackson@ximian.com>
27216
27217         * X11Keyboard.cs: Fix to compile with csc.
27218         
27219 2004-12-15  Jackson Harper  <jackson@ximian.com>
27220
27221         * X11Structs.cs: Add key mask values
27222         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
27223         * X11Keyboard.cs: New file - Extrapolates and interpolates key
27224         down/up foo into WM_CHAR foo
27225         * KeyboardLayouts.cs: Common keyboard layouts
27226         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
27227         post messages into the main queue.
27228
27229 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
27230
27231         * Button.cs: implement ProcessMnemonic
27232         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
27233           brushes everytime
27234         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
27235         * ButtonBase.cs: Show HotkeyPrefix (not the &)
27236
27237 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
27238         
27239         * MonthCalendar.cs: Implemented click-hold for next/previous month
27240           and date selection
27241           
27242 2004-12-11  Peter Bartok  <pbartok@novell.com>
27243
27244         * X11Structs.cs:
27245           - Added XKeyboardState (moved from XplatUIX11.cs)
27246           - Added XCreateGC related enums and structures
27247           - Added GXFunction for XSetFunction
27248
27249         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
27250
27251         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
27252           CaretVisible() calls
27253
27254         * ToolTip.cs: Added code to prevent stealing focus from app windows
27255
27256         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
27257           DestroyCaret, SetCaretPos and CaretVisible)
27258
27259         * XplatUIX11.cs:
27260           - Added implementation for caret functions
27261           - Moved hover variables into a struct, to make it a bit easier
27262             on the eyes and to debug
27263           - Removed XKeyboardState (moved to XplatUIX11.cs)
27264           - Moved Keyboard properties into the properties region
27265
27266         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
27267           call to get a graphics context for our control
27268
27269         * XplatUIOSX.cs: Added empty overrides for the new caret functions
27270
27271         * TreeView.cs: Fixed bug. No matter what color was set it would always
27272           return SystemColors.Window
27273
27274         * XplatUIWin32.cs: Implemented caret overrides
27275
27276 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
27277
27278         * ListBox.cs: fire events, implement missing methods and properties,
27279         sorting.
27280
27281 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
27282
27283         * MonthCalendar.cs: invalidation bug fixing
27284         * ThemeWin32Classic.cs: paint fixing
27285
27286 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
27287
27288         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
27289         prepare the CGContextRef there now.
27290
27291 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
27292
27293         * MonthCalendar.cs:
27294           - optimisationL only invalidate areas that have changed
27295         * ThemeWin32Classic.cs:
27296           - only paint parts that intersect with clip_area
27297
27298 2004-12-09  Peter Bartok  <pbartok@novell.com>
27299
27300         * Application.cs: Undid changes from r37004 which cause problems
27301         on X11
27302
27303 2004-12-09  Ravindra  <rkumar@novell.com>
27304
27305         * ToolBar.cs: Added support for displaying ContextMenu
27306         attached to a button on ToolBar.
27307         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
27308         property.
27309
27310 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
27311
27312         * Label.cs: autosize works in text change and removes unnecessary
27313         invalidate
27314
27315 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
27316
27317         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
27318         remove warnings
27319
27320 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
27321
27322         * XplatUIOSX.cs: Added mouse move/click/grab support
27323         Remove some debugging WriteLines not needed anymore.
27324         Add window resizing/positioning.
27325         Fix visibility on reparenting.
27326
27327 2004-12-08  Peter Bartok  <pbartok@novell.com>
27328
27329         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
27330
27331 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
27332
27333         * XplatUIOSX.cs: Initial checkin
27334         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
27335
27336 2004-12-03  Ravindra <rkumar@novell.com>
27337
27338         * ListView.cs: Added some keybindings and fixed scrolling.
27339         ScrollBars listen to ValueChanged event instead of Scroll
27340         Event. This would let us take care of all changes being
27341         done in the scrollbars' values programmatically or manually.
27342         * ListView.cs (CanMultiselect): Added a check for shift key.
27343         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
27344         * ListViewItem.cs (Clone): Fixed. We need to make a copy
27345         of ListViewSubItemCollection as well.
27346
27347 2004-12-06  Peter Bartok <pbartok@novell.com>
27348
27349         * Control.cs (Parent): Added check and exception to prevent
27350         circular parenting
27351
27352 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
27353
27354         * ListBox.cs: implemented clipping, selection single and multiple,
27355         bug fixing
27356
27357 2004-12-03  Ravindra <rkumar@novell.com>
27358
27359         * ListView.cs (ListView_KeyDown):
27360         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
27361         when CTRL key is pressed.
27362         * ListViewItem.cs (Selected): Fixed setting the property.
27363
27364 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
27365
27366         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
27367
27368         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
27369         MinimizeBox, ShowInTaskbar, TopMost properties.
27370
27371         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
27372         will be implemented).
27373
27374 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
27375
27376         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
27377
27378         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
27379         tests.
27380         
27381         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
27382         
27383         * TreeView.cs: BackColor is Colors.Window.
27384
27385 2004-12-01  Jackson Harper  <jackson@ximian.com>
27386
27387         * TreeView.cs: When resizing the tree if the user is making it
27388         smaller we don't get expose events, so we need to handle adding
27389         the horizontal scrollbar in the size changed handler as well as
27390         the expose handler.
27391
27392 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
27393
27394         * DrawItemState.cs: fixes wrong enum values
27395
27396 2004-12-01  Jackson Harper  <jackson@ximian.com>
27397
27398         * TreeView.cs: Resize the hbar as well as the vbar on resize.
27399
27400 2004-12-01  Jackson Harper  <jackson@ximian.com>
27401
27402         * NodeLabelEditEventArgs.cs:
27403         * NodeLabelEditEventHandler.cs:
27404         * OpenTreeNodeEnumerator.cs:
27405         * TreeNode.cs:
27406         * TreeNodeCollection.cs:
27407         * TreeView.cs:
27408         * TreeViewAction.cs:
27409         * TreeViewCancelEventArgs.cs:
27410         * TreeViewCancelEventHandler.cs:
27411         * TreeViewEventArgs.cs:
27412         * TreeViewEventHandler.cs: Initial implementation.
27413
27414 2004-12-01  Ravindra <rkumar@novell.com>
27415
27416         * ListView.cs (CalculateListView): Fixed scrolling related
27417         calculations. Also, removed some debug statements from other
27418         places.
27419         * ListViewItem.cs: Changed access to 'selected' instance variable
27420         from private to internal.
27421         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
27422
27423 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
27424
27425         * ThemeWin32Classic.cs: remove cache of brush and pens for
27426         specific controls and use the global system, fixes scrollbutton
27427         bugs (for small sizes, disabled, etc)
27428         
27429         * ScrollBar.cs: does not show the thumb for very small controls
27430         (as MS) and allow smaller buttons that the regular size
27431
27432 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
27433
27434         * UpDownBase.cs: Add abstract methods for the interface.
27435         Add new virtual methods (need to be hooked up to TextEntry when it
27436         exists).
27437         Add override methods for most features.
27438         Computes the size, forces the height of the text entry.
27439
27440         * NumericUpDown.cs: Put here the current testing code.
27441
27442         * Set eol-style property on all files that do not have mixed line
27443         endings, to minimize the future problems.  There are still a few
27444         files with mixed endings, and someone should choose whether they
27445         want to move it or not.
27446
27447 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
27448
27449         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
27450         System.Colors
27451         
27452 2004-11-30  Ravindra <rkumar@novell.com>
27453
27454         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
27455         drawing and replaced use of SystemColors by theme colors.
27456         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
27457         * ListView.cs (ListViewItemCollection.Add): Throw exception when
27458         same ListViewItem is being added more than once.
27459
27460 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
27461
27462         * MonthCalendar.cs:
27463           - ControlStyles love to make the control not flicker
27464           
27465 2004-11-30  Peter Bartok  <pbartok@novell.com>
27466
27467         * CharacterCasing.cs: Added
27468
27469 2004-11-29  Peter Bartok  <pbartok@novell.com>
27470
27471         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
27472           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
27473           I am removing these files as they conflict with already completed
27474           work. While it is fantastic to get contributions to MWF, I
27475           respectfully ask that everyone please coordinate their contributions
27476           through mono-winforms-list or #mono-winforms at this time. We're
27477           explicitly avoiding stubbing and don't want controls that don't have
27478           their basic functionality implemented in svn. Please also see
27479           http://www.mono-project.com/contributing/winforms.html
27480
27481
27482 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
27483
27484         * Application.cs (ModalRun): Don't hang after exit.
27485
27486         * Theme.cs: New TreeViewDefaultSize property.
27487
27488         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
27489         with less hardcoded SystemColors constant.
27490         Implemented TreeViewDefaultSize.
27491
27492         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
27493         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
27494
27495
27496 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
27497
27498         * MonthCalendar.cs:
27499           - Fix NextMonthDate and PrevMonthDate click moving calendar
27500
27501 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
27502
27503         * MonthCalendar.cs:
27504           - Fix usage of ScrollChange Property when scrolling months
27505
27506 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
27507
27508         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
27509          - Fixes menu destroying
27510          - Support adding and removing items on already created menus
27511
27512 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
27513
27514         * MonthCalendar.cs:
27515           - Re-worked all bolded dates handling to match win32
27516         * ThemeWin32Classic.cs:
27517           - Fixed rendering with bolded dates
27518
27519 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
27520
27521         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
27522         - Horizontal scroolbar
27523         - Multicolumn
27524         - Fixes
27525
27526
27527 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
27528
27529         * MonthCalendar.cs:
27530           - Fix Usage of MaxSelectionCount from SelectionRange
27531           - Fixed Shift + Cursor Selection
27532           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
27533           - Fixed normal cursor selection to be compat with win32
27534           - Fixed Shift + Mouse Click selection
27535
27536 2004-11-24  Peter Bartok <pbartok@novell.com>
27537
27538         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
27539         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
27540         * XplatUIX11.cs:
27541           - CreatedKeyBoardMsg now updates keystate with Alt key
27542           - Added workaround for timer crash to CheckTimers, Jackson will
27543             develop a proper fix and check in later
27544           - Implemented DispatchMessage
27545           - Removed calling the native window proc from GetMessage (call
27546             now moved to DispatchMessage)
27547
27548         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
27549           the keydata (Fixes bug #69831)
27550
27551         * XplatUIWin32.cs:
27552           - (DispatchMessage): Switched to return IntPtr
27553           - Added DllImport for SetFocus
27554
27555 2004-11-24  Ravindra <rkumar@novell.com>
27556
27557         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
27558         background drawing.
27559         * ListViewItem.cs: Fixed various properties, calculations
27560         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
27561         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
27562         and some internal properties. Fixed MouseDown handler and Paint
27563         method.
27564
27565 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
27566
27567         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
27568
27569 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
27570
27571         * ContainerControl.cs: correct accidental check in of local changes
27572
27573 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
27574
27575         * ThemeWin32Classic.cs:
27576                 - Fixed Drawing Last month in grid (sometimes not showing)
27577         * MonthCalendar.cs:
27578                 - Fixed title width calculation bug (makeing title small)
27579
27580 2004-11-23  Peter Bartok <pbartok@novell.com>
27581
27582         * XplatUIX11.cs:
27583           - Added generation of WM_MOUSEHOVER event
27584           - Added missing assignment of async_method atom
27585           - Fixed WM_ERASEBKGND; now only redraws the exposed area
27586
27587 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
27588
27589         * ThemeWin32Classic.cs:
27590                 - Fixed Drawing of today circle when showtodaycircle not set
27591                 - fixed drawing of first and last month in the grid (gay dates)
27592         * MonthCalendar.cs:
27593                 - Fixed Drawing of today circle
27594                 - Fixed drawing of grady dates
27595                 - Fixed HitTest for today link when ShowToday set to false
27596                 - Fixed DefaultSize to obey ShowToday
27597
27598 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
27599
27600         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
27601         * System.Windows.Forms/Theme.cs
27602         * MonthCalendar.cs: added for MonthCalendar
27603         * SelectionRange.cs: added for MonthCalendar
27604         * Day.cs: added for MonthCalendar: added for MonthCalendar
27605         * DateRangeEventArgs.cs: added for MonthCalendar
27606         * DateRangeEventHandler.cs: added for MonthCalendar
27607
27608 2004-11-22  Ravindra <rkumar@novell.com>
27609
27610         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
27611         property.
27612
27613 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
27614
27615         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
27616         event handler.
27617         
27618         * NumericUpDown.cs: Added new implementation.
27619         * UpDownBase.cs: Added new implementation.
27620
27621         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
27622         implementations.
27623         
27624         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
27625         implementations.
27626
27627         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
27628         methods.
27629
27630 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
27631
27632         * Timer.cs  (Dispose): Should call the base dispose when
27633         overriding.
27634
27635 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
27636
27637         * ScrollBar.cs: updates thumb position when max, min or increment
27638         is changed
27639
27640 2004-11-21  Ravindra <rkumar@novell.com>
27641
27642         * ListView.cs: Implemented item selection, activation and
27643         column header style. Fixed properties to do a redraw, if
27644         required. Added support for MouseHover, DoubleClick, KeyDown
27645         and KeyUp event handling and some minor fixes.
27646         * ListViewItem.cs: Fixed constructor.
27647         * ThemeWin32Classic.cs: Improved drawing for ListView.
27648
27649 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
27650
27651         * ThemeWin32Classic.cs: initial listbox drawing code
27652         * DrawMode.cs: new enumerator
27653         * ListControl.cs: stubbed class
27654         * ListBox.cs: initial implementation
27655         * Theme.cs: new methods definitions
27656         * SelectionMode.cs: new enumerator
27657
27658 2004-11-17  Peter Bartok  <pbartok@novell.com>
27659
27660         * XplatUIWin32.cs: Added double-click events to the class style
27661         * Control.cs (WndProc):
27662           - Added handling of click-count to MouseDown/ MouseUp events.
27663           - Added handling of middle and right mouse buttons
27664           - Removed old debug code
27665
27666 2004-11-17  Jackson Harper  <jackson@ximian.com>
27667
27668         * XplatUIX11.cs: Use the new Mono.Unix namespace.
27669
27670 2004-11-17  Ravindra <rkumar@novell.com>
27671
27672         * ListView.cs: Added event handling for MouseMove/Up/Down.
27673         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
27674         * ThemeWin32Classic.cs: We need to clear the graphics context and
27675         draw column header in a proper state.
27676
27677
27678 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
27679
27680         *  Menu.cs: fixes signature
27681
27682 2004-11-16  Peter Bartok  <pbartok@novell.com>
27683
27684         * XplatUIX11.cs (GetMessage): Implemented generation of
27685           double click mouse messages
27686
27687 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
27688
27689         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
27690         not by menu
27691
27692 2004-11-11  Peter Bartok  <pbartok@novell.com>
27693
27694         * HandleData.cs: Added Visible property
27695         * XplatUIX11.cs (IsVisible): Now uses Visible property from
27696           HandleData
27697         * XplatUIX11.cs: Removed old debug leftovers
27698         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
27699         * Control.cs (WndProc): Removed old debug leftovers,
27700           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
27701           needed WM_SIZE handling
27702
27703 2004-11-11  Jackson Harper  <jackson@ximian.com>
27704
27705         * OwnerDrawPropertyBag.cs:
27706         * TreeViewImageIndexConverter.cs: Initial implementation
27707
27708 2004-11-10  Jackson Harper  <jackson@ximian.com>
27709
27710         * ThemeWin32Classic.cs:
27711         * TabControl.cs: instead of moving tabs by the slider pos just
27712         start drawing at the tab that is offset by the slider. This way
27713         scrolling always moves by exactly one tab.
27714
27715 2004-11-10  Jackson Harper  <jackson@ximian.com>
27716
27717         * TabControl.cs: You can only scroll left when the slider has
27718         already ben moved right.
27719         
27720 2004-11-10  Jackson Harper  <jackson@ximian.com>
27721
27722         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
27723         the clip area.
27724         
27725 2004-11-10  Jackson Harper  <jackson@ximian.com>
27726
27727         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
27728         clip area.
27729         
27730 2004-11-09  Jackson Harper  <jackson@ximian.com>
27731
27732         * TabControl.cs (CalcXPos): New helper method so we can determine
27733         the proper place to start drawing vertical tabs.
27734         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
27735         
27736 2004-11-09  Jackson Harper  <jackson@ximian.com>
27737
27738         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
27739         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
27740         and Bottom, left and right are illegal values for this and
27741         multiline is enabled when the alignment is set to left or right.
27742         (DrawTab): Each alignment block should draw the text itself now
27743         because Left requires special love. Also add rendering for Left
27744         aligned tabs.
27745         
27746 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
27747
27748         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
27749         does not destroy the windows, removes debugging messages
27750
27751 2004-11-09  jba  <jba-mono@optusnet.com.au>
27752
27753         * ThemeWin32Classic.cs
27754         (DrawButtonBase): Fix verticle text rect clipping in windows
27755         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
27756         rendering and incorrect text rect clipping
27757         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
27758         rendering and incorrect text rect clipping
27759         
27760 2004-11-08  Jackson Harper  <jackson@ximian.com>
27761
27762         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
27763         bottom when they are bottom aligned so the bottoms of the tabs get
27764         displayed.
27765         * TabControl.cs (DropRow): Move rows up instead of down when the
27766         tab control is bottom aligned.
27767
27768 2004-11-08 13:59  pbartok
27769
27770         * XplatUIX11.cs:
27771           - Added handling for various window styles
27772           - Added handling for popup windows
27773           - Added SetTopmost handling
27774
27775 2004-11-08 13:55  pbartok
27776
27777         * XplatUIWin32.cs:
27778           - Added argument to SetTopmost method
27779           - Fixed broken ClientToScreen function
27780
27781 2004-11-08 13:53  pbartok
27782
27783         * XplatUIStructs.cs:
27784           - Added missing WS_EX styles
27785
27786 2004-11-08 13:53  pbartok
27787
27788         * XplatUI.cs, XplatUIDriver.cs:
27789           - Added argument to SetTopmost
27790
27791 2004-11-08 13:52  pbartok
27792
27793         * X11Structs.cs:
27794           - Added XSetWindowAttributes structure
27795           - Improved XWindowAttributes structure
27796           - Added SetWindowValuemask enum
27797           - Added window creation arguments enum
27798           - Added gravity enum
27799           - Added Motif hints structure
27800           - Added various Motif flags and enums
27801           - Added PropertyMode enum for property functions
27802
27803 2004-11-08 13:50  pbartok
27804
27805         * Form.cs:
27806           - Fixed arguments for updated SetTopmost method
27807
27808 2004-11-08 13:49  pbartok
27809
27810         * ToolTip.cs:
27811           - Fixed arguments for updated SetTopmost function
27812           - Fixed usage of PointToClient
27813
27814 2004-11-08 13:44  pbartok
27815
27816         * MenuAPI.cs:
27817           - Added Clipping of children and siblings
27818
27819 2004-11-08 13:41  pbartok
27820
27821         * MainMenu.cs:
27822           - Removed SetMenuBarWindow call. We do this in Form.cs
27823
27824 2004-11-08 13:40  jackson
27825
27826         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
27827           scrolling jimmi in the correct location with bottom aligned tabs
27828
27829 2004-11-08 13:36  pbartok
27830
27831         * ContainerControl.cs:
27832           - Implemented BindingContext
27833           - Implemented ParentForm
27834
27835 2004-11-08 12:46  jackson
27836
27837         * TabControl.cs: Put bottom rendered tabs in the right location
27838
27839 2004-11-08 07:15  jordi
27840
27841         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
27842           removes dead code
27843
27844 2004-11-05 17:30  jackson
27845
27846         * TabControl.cs: When selected tabs are expanded make sure they
27847           don't go beyond the edges of the tab control
27848
27849 2004-11-05 14:57  jackson
27850
27851         * TabControl.cs: Reset show_slider so if the control is resized to
27852           a size where it is no longer needed it's not displayed anymore
27853
27854 2004-11-05 13:16  jackson
27855
27856         * TabControl.cs: Make tab pages non visible when added to the
27857           control
27858
27859 2004-11-05 12:42  jackson
27860
27861         * TabControl.cs: Implement SizeMode.FillToRight
27862
27863 2004-11-05 12:16  jackson
27864
27865         * Control.cs: Do not call CreateHandle if the handle is already
27866           created
27867
27868 2004-11-05 11:46  jackson
27869
27870         * TabControl.cs: Remove superflous call to CalcTabRows
27871
27872 2004-11-05 09:07  jackson
27873
27874         * XplatUIX11.cs: Update for Mono.Posix changes
27875
27876 2004-11-05 07:00  ravindra
27877
27878         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
27879           scrolling.
27880
27881 2004-11-04 22:47  jba
27882
27883         * ThemeWin32Classic.cs:
27884           - Fix Button rendering for FlatStyle = Flat or Popup
27885           - Fix RadioButton and CheckBox rendering when Appearance = Button
27886             (normal and flatstyle).
27887           - Correct outer rectangle color when drawing focus rectangle
27888           - Adjust button bounds to be 1 px smaller when focused
27889           - Make button not draw sunken 3d border when pushed (windows compat)
27890           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
27891           - Offset the text in RadioButton and Checkbox when being rendered as
27892           a button.
27893           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
27894           radiobuttons
27895           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
27896           - Fixed disabled text rendering for normally rendered radiobuttons
27897
27898 2004-11-04 10:26  jackson
27899
27900         * TabControl.cs: Recalculate tab rows when resizing
27901
27902 2004-11-04 07:47  jordi
27903
27904         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
27905           collection completion, drawing issues, missing features
27906
27907 2004-11-04 05:03  ravindra
27908
27909         * ScrollBar.cs:
27910                 - We need to recalculate the Thumb area when
27911                 LargeChange/maximum/minimum values are changed.
27912           - We set the 'pos' in UpdatePos() method to minimum, if it's less
27913                 than minimum. This is required to handle the case if large_change is
27914                 more than max, and use LargeChange property instead of large_change
27915                 variable.
27916           - We return max+1 when large_change is more than max, like MS does.
27917
27918 2004-11-04 04:29  ravindra
27919
27920         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
27921                 - Changed default value signatures (prefixed all with ListView).
27922                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
27923                 ListView.
27924           - Fixed calculations for ListViewItem and implemented Clone()
27925           method.
27926
27927 2004-11-04 04:26  ravindra
27928
27929         * Theme.cs, ThemeWin32Classic.cs:
27930                 - Changed default ListView values signatures (prefixed all with
27931                 ListView).
27932           - Fixed default size values for VScrollBar and HScrollBar.
27933                 - Fixed DrawListViewItem method.
27934
27935 2004-11-04 04:05  ravindra
27936
27937         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
27938
27939 2004-11-04 04:04  ravindra
27940
27941         * ImageList.cs: Implemented the missing overload for Draw method.
27942
27943 2004-11-03 19:29  jackson
27944
27945         * TabControl.cs: Handle dropping rows on selection properly
27946
27947 2004-11-03 11:59  jackson
27948
27949         * TabControl.cs: remove debug code
27950
27951 2004-11-03 11:52  jackson
27952
27953         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
27954           the scrolly widgerywoo
27955
27956 2004-11-02 13:52  jackson
27957
27958         * TabControl.cs: Resize the tab pages and tabs when the tab control
27959           is resized
27960
27961 2004-11-02 13:40  jackson
27962
27963         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
27964           selected tab to the bottom
27965
27966 2004-11-02 13:39  jackson
27967
27968         * TabPage.cs: Store the tab pages row
27969
27970 2004-11-02 12:33  jordi
27971
27972         * MenuItem.cs: fixes handle creation
27973
27974 2004-11-02 11:42  jackson
27975
27976         * TabControl.cs: signature fix
27977
27978 2004-11-02 08:56  jackson
27979
27980         * TabControl.cs: Calculate whether the tab is on an edge properly.
27981           Remove top secret debugging code
27982
27983 2004-11-01 19:57  jackson
27984
27985         * TabControl.cs: Add click handling, and proper sizing
27986
27987 2004-11-01 19:47  jackson
27988
27989         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
27990           tab controls
27991
27992 2004-11-01 19:39  jackson
27993
27994         * TabPage.cs: add internal property to store the bounds of a tab
27995           page
27996
27997 2004-10-30 04:23  ravindra
27998
27999         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
28000           values.
28001
28002 2004-10-30 04:21  ravindra
28003
28004         * ListView.cs, ListViewItem.cs: Added support for scrolling and
28005           fixed calculations.
28006
28007 2004-10-30 03:06  pbartok
28008
28009         * XplatUIX11.cs:
28010           - Removed extension of DllImported libs
28011
28012 2004-10-29 09:55  jordi
28013
28014         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
28015           navigation, itemcollection completion, menu fixes
28016
28017 2004-10-27 22:58  pbartok
28018
28019         * XplatUIX11.cs:
28020           - Now throws a nice error message when no X display could be opened
28021
28022 2004-10-26 13:51  jordi
28023
28024         * ListView.cs: removes warning
28025
28026 2004-10-26 03:55  ravindra
28027
28028         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
28029           ThemeWin32Classic.cs: Some formatting for my last checkins.
28030
28031 2004-10-26 03:36  ravindra
28032
28033         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
28034           control and default values.
28035
28036 2004-10-26 03:35  ravindra
28037
28038         * Theme.cs: Added some default values for ListView control.
28039
28040 2004-10-26 03:33  ravindra
28041
28042         * ToolBar.cs: ToolBar should use the user specified button size, if
28043           there is any. Added a size_specified flag for the same.
28044
28045 2004-10-26 03:33  ravindra
28046
28047         * ColumnHeader.cs: Added some internal members and calculations for
28048           ColumnHeader.
28049
28050 2004-10-26 03:32  ravindra
28051
28052         * ListViewItem.cs: Calculations for ListViewItem.
28053
28054 2004-10-26 03:31  ravindra
28055
28056         * ListView.cs: Added some internal members and calculations for
28057           ListView.
28058
28059 2004-10-22 13:31  jordi
28060
28061         * MenuAPI.cs: speedup menus drawing
28062
28063 2004-10-22 13:16  jackson
28064
28065         * XplatUIX11.cs: Make sure to update exposed regions when adding an
28066           expose event
28067
28068 2004-10-22 11:49  jackson
28069
28070         * Control.cs: oops
28071
28072 2004-10-22 11:41  jackson
28073
28074         * Control.cs: Check to see if the window should have its background
28075           repainted by X when drawing.
28076
28077 2004-10-22 11:31  jackson
28078
28079         * XplatUIX11.cs: When invalidating areas only use XClearArea if
28080           clear is true, this way we do not get flicker from X repainting the
28081           background
28082
28083 2004-10-22 11:28  jackson
28084
28085         * XEventQueue.cs: Queue properly
28086
28087 2004-10-21 09:38  jackson
28088
28089         * XEventQueue.cs: Fix access modifier
28090
28091 2004-10-21 09:36  jackson
28092
28093         * XEventQueue.cs: Don't loose messages
28094
28095 2004-10-21 09:22  jackson
28096
28097         * XEventQueue.cs: Don't loose messages
28098
28099 2004-10-20 04:15  jordi
28100
28101         * BootMode.cs: enum need it by SystemInfo
28102
28103 2004-10-19 21:58  pbartok
28104
28105         * XplatUIWin32.cs:
28106           - Small sanity check
28107
28108 2004-10-19 21:56  pbartok
28109
28110         * Form.cs:
28111           - Added private FormParentWindow class which acts as the container
28112             for our form and as the non-client area where menus are drawn
28113           - Added/Moved required tie-ins to Jordi's menus
28114           - Fixed/Implemented the FormStartPosition functionality
28115
28116 2004-10-19 21:52  pbartok
28117
28118         * Control.cs:
28119           - Removed unneeded locals
28120           - Added code to all size and location properties to understand and
28121             deal with the parent container of Form
28122
28123 2004-10-19 21:33  pbartok
28124
28125         * Application.cs:
28126           - Fixed to deal with new Form subclasses for menus
28127
28128 2004-10-19 17:48  jackson
28129
28130         * XEventQueue.cs: commit correct version of file
28131
28132 2004-10-19 16:50  jackson
28133
28134         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
28135
28136 2004-10-19 16:15  jordi
28137
28138         * MenuAPI.cs: MenuBarCalcSize returns the height
28139
28140 2004-10-19 08:31  pbartok
28141
28142         * Control.cs:
28143           - Added missing call to PreProcessMessage before calling OnXXXKey
28144           methods
28145
28146 2004-10-19 00:04  ravindra
28147
28148         * ToolTip.cs: Fixed constructor.
28149
28150 2004-10-18 09:31  jordi
28151
28152         * MenuAPI.cs: menuitems in menubars do not have shortcuts
28153
28154 2004-10-18 09:26  jordi
28155
28156         * MenuItem.cs: fixes MenuItem class signature
28157
28158 2004-10-18 08:56  jordi
28159
28160         * MenuAPI.cs: prevents windows from showing in the taskbar
28161
28162 2004-10-18 00:28  ravindra
28163
28164         * ToolTip.cs: Suppressed a warning message.
28165
28166 2004-10-18 00:27  ravindra
28167
28168         * Control.cs: Default value of visible property must be true.
28169
28170 2004-10-17 23:19  pbartok
28171
28172         * ToolTip.cs:
28173           - Complete implementation
28174
28175 2004-10-17 23:19  pbartok
28176
28177         * XplatUIX11.cs:
28178           - Added EnableWindow method
28179           - Added SetModal stub
28180           - Added generation of WM_ACTIVATE message (still needs testing)
28181           - Added SetTopMost stub
28182           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
28183
28184 2004-10-17 23:17  pbartok
28185
28186         * XplatUIWin32.cs:
28187           - Removed VirtualKeys to XplatUIStructs
28188           - Implemented SetTopMost method
28189           - Implemented EnableWindow method
28190           - Bugfix in ScreenToClient()
28191           - Bugfixes in ClientToScreen()
28192
28193 2004-10-17 22:51  pbartok
28194
28195         * XplatUIStructs.cs:
28196           - Added WS_EX styles to WindowStyles enumeration
28197
28198 2004-10-17 22:50  pbartok
28199
28200         * XplatUI.cs, XplatUIDriver.cs:
28201           - Added method for enabling/disabling windows
28202           - Added method for setting window modality
28203           - Added method for setting topmost window
28204
28205 2004-10-17 22:49  pbartok
28206
28207         * ThemeWin32Classic.cs:
28208           - Added ToolTip drawing code
28209
28210 2004-10-17 22:49  pbartok
28211
28212         * Theme.cs:
28213           - Added ToolTip abstracts
28214
28215 2004-10-17 22:47  pbartok
28216
28217         * Form.cs:
28218           - Fixed Form.ControlCollection to handle owner relations
28219           - Added Owner/OwnedForms handling
28220           - Implemented Z-Ordering for owned forms
28221           - Removed unneeded private overload of ShowDialog
28222           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
28223             so I hope)
28224           - Fixed Close(), had wrong default
28225           - Added firing of OnLoad event
28226           - Added some commented out debug code for Ownership handling
28227
28228 2004-10-17 22:16  pbartok
28229
28230         * Control.cs:
28231           - Fixed/implemented flat list of controls
28232
28233 2004-10-17 22:14  pbartok
28234
28235         * Application.cs:
28236           - Added code to simulate modal dialogs on Win32
28237
28238 2004-10-17 16:11  jordi
28239
28240         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
28241           mouse event
28242
28243 2004-10-17 13:39  jordi
28244
28245         * MenuAPI.cs: menu drawing fixes
28246
28247 2004-10-15 09:10  ravindra
28248
28249         * StructFormat.cs: General Enum.
28250
28251 2004-10-15 09:09  ravindra
28252
28253         * SizeGripStyle.cs: Enum for Form.
28254
28255 2004-10-15 09:08  ravindra
28256
28257         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
28258           in Theme for ListView.
28259
28260 2004-10-15 09:06  ravindra
28261
28262         * ColumnHeader.cs: Flushing some formatting changes.
28263
28264 2004-10-15 09:05  ravindra
28265
28266         * ListViewItem.cs: Implemented GetBounds method and fixed coding
28267           style.
28268
28269 2004-10-15 09:03  ravindra
28270
28271         * ListView.cs: Implemented Paint method and fixed coding style.
28272
28273 2004-10-15 07:34  jordi
28274
28275         * MenuAPI.cs: fix for X11
28276
28277 2004-10-15 07:32  ravindra
28278
28279         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
28280                 - Renamed Paint() method to Draw() for clarity. Also, moved
28281                 DrawImage() to OnPaint().
28282
28283 2004-10-15 07:25  ravindra
28284
28285         * CheckBox.cs, RadioButton.cs:
28286                 - Removed Redraw (), we get it from ButtonBase.
28287                 - Implemented Paint (), to do class specific painting.
28288
28289 2004-10-15 07:16  ravindra
28290
28291         * ButtonBase.cs:
28292                 - Redraw () is not virtual now.
28293                 - Added an internal virtual method Paint (), so that
28294                 derived classes can do their painting on their own.
28295                 - Modified OnPaint () to call Paint ().
28296
28297 2004-10-15 06:43  jordi
28298
28299         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
28300           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
28301
28302 2004-10-15 00:30  ravindra
28303
28304         * MessageBox.cs:
28305                 - MessageBox on windows does not have min/max buttons.
28306                 This change in CreateParams fixes this on Windows. We
28307                 still need to implement this windowstyle behavior in
28308                 our X11 driver.
28309
28310 2004-10-14 05:14  ravindra
28311
28312         * ToolBar.cs:
28313                 - Changed Redraw () to do a Refresh () always.
28314                 - Fixed the MouseMove event handling when mouse is pressed,
28315                 ie drag event handling.
28316                 - Replaced the usage of ToolBarButton.Pressed property to
28317                 ToolBarButton.pressed internal variable.
28318
28319 2004-10-14 05:10  ravindra
28320
28321         * ToolBarButton.cs:
28322                 - Added an internal member 'inside' to handle mouse move
28323                 with mouse pressed ie mouse drag event.
28324                 - Changed 'Pressed' property to return true only when
28325                 'inside' and 'pressed' are both true.
28326                 - Some coding style love.
28327
28328 2004-10-14 00:17  ravindra
28329
28330         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
28331           public method.
28332
28333 2004-10-14 00:15  ravindra
28334
28335         * ButtonBase.cs: Redraw () related improvements.
28336
28337 2004-10-14 00:14  ravindra
28338
28339         * MessageBox.cs: Moved InitFormSize () out of Paint method and
28340           removed unnecessary calls to Button.Show () method.
28341
28342 2004-10-13 17:50  pbartok
28343
28344         * XplatUIX11.cs:
28345           - Formatting fix
28346           - Removed destroying of window until we solve the problem of X
28347             destroying the window before us on shutdown
28348
28349 2004-10-13 16:32  pbartok
28350
28351         * ButtonBase.cs:
28352           - Now Redraws on MouseUp for FlatStyle Flat and Popup
28353
28354 2004-10-13 14:18  pbartok
28355
28356         * XplatUIX11.cs:
28357           - Added code to destroy the X window
28358
28359 2004-10-13 14:18  pbartok
28360
28361         * XplatUIWin32.cs:
28362           - Added code to destroy a window
28363
28364 2004-10-13 14:12  pbartok
28365
28366         * ButtonBase.cs:
28367           - Added the Redraw on Resize that got dropped in the last rev
28368
28369 2004-10-13 09:06  pbartok
28370
28371         * ThemeWin32Classic.cs:
28372           - Path from John BouAntoun:
28373             * Fix check rendering (centre correctly for normal style, offset
28374               correctly for FlatStyle).
28375             * Fix border color usage (use backcolor) for FlatStyle.Popup
28376             * Use checkbox.Capture instead of checkbox.is_pressed when
28377               rendering flatstyle states.
28378
28379 2004-10-12 21:48  pbartok
28380
28381         * ThemeWin32Classic.cs:
28382           - Removed all occurences of SystemColors and replaced them with the
28383             matching theme color
28384
28385 2004-10-12 21:41  pbartok
28386
28387         * ThemeWin32Classic.cs:
28388           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
28389             him using the function for flatstyle drawing
28390           - Changed functions to use the new version of CPDrawBorder3D
28391
28392 2004-10-12 21:15  pbartok
28393
28394         * ControlPaint.cs:
28395           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
28396             match MS documentation. They need to return defined colors if the
28397             passed color matches the configured control color. Thanks to John
28398             BouAntoun for pointing this out.
28399
28400 2004-10-12 20:57  pbartok
28401
28402         * Control.cs:
28403           - Fix from John BouAntoun: Raise ForeColorChanged event when text
28404             color is changed
28405
28406 2004-10-12 20:46  pbartok
28407
28408         * CheckBox.cs:
28409           - Fix from John BouAntoun: Now properly sets the Appearance property
28410
28411 2004-10-12 20:45  pbartok
28412
28413         * ThemeWin32Classic.cs:
28414           - Fixes from John BouAntoun: now handles forecolors and backcolors
28415             for flatstyle rendered controls much better; It also fixes normal
28416             checkbox rendering when pushed or disabled.
28417
28418 2004-10-08 02:50  jordi
28419
28420         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
28421           work
28422
28423 2004-10-07 08:56  jordi
28424
28425         * ThemeWin32Classic.cs: Removes deletion of cached brushes
28426
28427 2004-10-06 03:59  jordi
28428
28429         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
28430           XplatUIWin32.cs: removes warnings from compilation
28431
28432 2004-10-05 12:23  jackson
28433
28434         * RadioButton.cs: Fix ctor
28435
28436 2004-10-05 11:10  pbartok
28437
28438         * MessageBox.cs:
28439           - Partial implementation by Benjamin Dasnois
28440
28441 2004-10-05 10:15  jackson
28442
28443         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
28444           by John BouAntoun
28445
28446 2004-10-05 03:07  ravindra
28447
28448         * ToolBar.cs:
28449                 - Removed a private method, Draw ().
28450                 - Fixed the ButtonDropDown event handling.
28451                 - Fixed MouseMove event handling.
28452
28453 2004-10-05 03:04  ravindra
28454
28455         * ThemeWin32Classic.cs:
28456                 - Added DrawListView method and ListViewDefaultSize property.
28457                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
28458                 - Changed DOS style CRLF to Unix format (dos2unix).
28459
28460 2004-10-05 03:03  ravindra
28461
28462         * Theme.cs:
28463                 - Added DrawListView method and ListViewDefaultSize property.
28464
28465 2004-10-05 02:42  ravindra
28466
28467         * ToolBarButton.cs: Added an internal member dd_pressed to handle
28468           clicks on DropDown arrow.
28469
28470 2004-10-04 22:56  jackson
28471
28472         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
28473           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
28474           Control handle the buffers, derived classes should not have to
28475           CreateBuffers themselves.
28476
28477 2004-10-04 21:20  jackson
28478
28479         * StatusBar.cs: The control handles resizing the buffers now.
28480
28481 2004-10-04 21:18  jackson
28482
28483         * Control.cs: When resizing the buffers should be invalidated. This
28484           should be handled in Control not in derived classes.
28485
28486 2004-10-04 14:45  jackson
28487
28488         * TabPage.cs: oops
28489
28490 2004-10-04 02:14  pbartok
28491
28492         * LeftRightAlignment.cs:
28493           - Initial check-in
28494
28495 2004-10-04 01:09  jordi
28496
28497         * ThemeWin32Classic.cs: fixes right button position causing right
28498           button not showing on horizontal scrollbars
28499
28500 2004-10-02 13:12  pbartok
28501
28502         * XplatUIX11.cs:
28503           - Simplified the Invalidate method by using an X call instead of
28504             generating the expose ourselves
28505           - Added an expose when the window background is changed
28506           - Implemented ClientToScreen method
28507
28508 2004-10-02 13:08  pbartok
28509
28510         * XplatUIWin32.cs:
28511           - Added Win32EnableWindow method (test for implementing modal
28512           dialogs)
28513           - Added ClientToScreen method and imports
28514
28515 2004-10-02 13:07  pbartok
28516
28517         * XplatUI.cs, XplatUIDriver.cs:
28518           - Added ClientToScreen coordinate translation method
28519
28520 2004-10-02 13:06  pbartok
28521
28522         * KeyPressEventArgs.cs:
28523           - Fixed access level for constructor
28524
28525 2004-10-02 13:06  pbartok
28526
28527         * NativeWindow.cs:
28528           - Changed access level for the window_collection hash table
28529
28530 2004-10-02 13:05  pbartok
28531
28532         * Form.cs:
28533           - Added KeyPreview property
28534           - Added Menu property (still incomplete, pending Jordi's menu work)
28535           - Implemented ProcessCmdKey
28536           - Implemented ProcessDialogKey
28537           - Implemented ProcessKeyPreview
28538
28539 2004-10-02 13:02  pbartok
28540
28541         * Control.cs:
28542           - Added private method to get the Control object from the window
28543           handle
28544           - Implemented ContextMenu property
28545           - Implemented PointToScreen
28546           - Implemented PreProcessMessage
28547           - Implemented IsInputChar
28548           - Implemented IsInputKey
28549           - Implemented ProcessCmdKey
28550           - Completed ProcessKeyEventArgs
28551           - Fixed message loop to call the proper chain of functions on key
28552           events
28553           - Implemented ProcessDialogChar
28554           - Implemented ProcessDialogKey
28555           - Implemented ProcessKeyMessage
28556           - Implemented ProcessKeyPreview
28557           - Added RaiseDragEvent stub (MS internal method)
28558           - Added RaiseKeyEvent stub (MS internal method)
28559           - Added RaiseMouseEvent stub (MS Internal method)
28560           - Added RaisePaintEvent stub (MS Internal method)
28561           - Added ResetMouseEventArgs stub (MS Internal method)
28562           - Implemented RtlTranslateAlignment
28563           - Implemented RtlTranslateContent
28564           - Implemented RtlTranslateHorizontal
28565           - Implemented RtlTranslateLeftRight
28566           - Added generation of KeyPress event
28567
28568 2004-10-02 05:57  ravindra
28569
28570         * ListViewItem.cs: Added attributes.
28571
28572 2004-10-02 05:32  ravindra
28573
28574         * ListView.cs: Added attributes.
28575
28576 2004-10-01 11:53  jackson
28577
28578         * Form.cs: Implement the Close method so work on MessageBox can
28579           continue.
28580
28581 2004-09-30 14:06  pbartok
28582
28583         * XplatUIX11.cs:
28584           - Bug fixes
28585
28586 2004-09-30 11:34  jackson
28587
28588         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
28589
28590 2004-09-30 07:26  ravindra
28591
28592         * ListViewItemConverter.cs: Converter for ListViewItem.
28593
28594 2004-09-30 07:26  ravindra
28595
28596         * SortOrder.cs: Enum for ListView control.
28597
28598 2004-09-30 07:25  ravindra
28599
28600         * ColumnHeader.cs: Supporting class for ListView control.
28601
28602 2004-09-30 07:24  ravindra
28603
28604         * ListView.cs, ListViewItem.cs: Initial implementation.
28605
28606 2004-09-30 07:20  ravindra
28607
28608         * ItemActivation.cs: Enum for ListView Control.
28609
28610 2004-09-29 20:29  pbartok
28611
28612         * XplatUIX11.cs:
28613           - Added lookup of pixel value for background color; tries to get a
28614             color 'close' to the requested color, it avoids having to create a
28615             colormap.  Depending on the display this could mean the used color
28616             is slightly off the desired color. Might have to change it to a more
28617             resource intensive colormap approach, but it will work as a
28618           workaround to avoid red screens.
28619
28620 2004-09-29 14:27  jackson
28621
28622         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
28623
28624 2004-09-28 12:44  pbartok
28625
28626         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
28627           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
28628           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
28629           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
28630           TrackBar.cs, VScrollBar.cs:
28631           - Streamlined Theme interfaces:
28632             * Each DrawXXX method for a control now is passed the object for
28633               the control to be drawn in order to allow accessing any state the
28634               theme might require
28635
28636             * ControlPaint methods for the theme now have a CP prefix to avoid
28637               name clashes with the Draw methods for controls
28638
28639             * Every control now retrieves it's DefaultSize from the current
28640             theme
28641
28642 2004-09-28 12:17  jackson
28643
28644         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
28645           drawing
28646
28647 2004-09-24 14:57  jackson
28648
28649         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
28650           Gives us a nice little performance boost.
28651
28652 2004-09-24 12:02  jackson
28653
28654         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
28655           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
28656           Control and supporting classes. Initial checkin
28657
28658 2004-09-23 13:08  jackson
28659
28660         * Form.cs: Temp build fixage
28661
28662 2004-09-23 01:39  ravindra
28663
28664         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
28665           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
28666           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
28667           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
28668           EventHandlers needed by ListView Control.
28669
28670 2004-09-22 14:12  pbartok
28671
28672         * ScrollableControl.cs:
28673           - Implemented DockPadding property
28674           - Implemented AutoScroll property
28675           - Implemented AutoScrollMargin property
28676           - Implemented AutoScrollMinSize property
28677           - Implemented AutoScrollPosition property
28678           - Implemented DisplayRectangle property (still incomplete)
28679           - Implemented CreateParams property
28680           - Implemented HScroll property
28681           - Implemented VScroll property
28682           - Implemented OnVisibleChanged property
28683
28684 2004-09-22 14:09  pbartok
28685
28686         * Form.cs:
28687           - Added Form.ControllCollection class
28688           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
28689             RemoveOwnedForm (still incomplete, missing on-top and common
28690             minimize/maximize behaviour)
28691           - Added StartPosition property (still incomplete, does not use when
28692             creating the form)
28693           - Added ShowDialog() methods (still incomplete, missing forcing the
28694             dialog modal)
28695
28696 2004-09-22 14:05  pbartok
28697
28698         * Application.cs:
28699           - Added message loop for modal dialogs
28700
28701 2004-09-22 14:02  pbartok
28702
28703         * GroupBox.cs:
28704           - Fixed wrong types for events
28705
28706 2004-09-22 14:00  pbartok
28707
28708         * Shortcut.cs, FormWindowState.cs:
28709           - Fixed wrong values
28710
28711 2004-09-22 12:01  jackson
28712
28713         * Control.cs: Text is never null
28714
28715 2004-09-20 22:14  pbartok
28716
28717         * XplatUIWin32.cs:
28718           - Fixed accessibility level for Idle handler
28719
28720 2004-09-20 18:54  jackson
28721
28722         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28723           XplatUIX11.cs: New message loop that uses poll so we don't get a
28724           busy loop
28725
28726 2004-09-17 10:43  pbartok
28727
28728         * ScrollBar.cs:
28729           - Fixed behaviour of arrow buttons. Now properly behaves like
28730             Buttons (and like Microsoft's scrollbar arrow buttons)
28731
28732 2004-09-17 10:14  pbartok
28733
28734         * ScrollBar.cs:
28735           - Added missing release of keyboard/mouse capture
28736
28737 2004-09-17 06:18  jordi
28738
28739         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
28740           Theme.cs: Very early menu support
28741
28742 2004-09-16 17:45  pbartok
28743
28744         * XplatUIWin32.cs:
28745           - Fixed sending a window to the front
28746           - Added overload for SetWindowPos to avoid casting
28747
28748 2004-09-16 17:44  pbartok
28749
28750         * Control.cs:
28751           - Added SendToBack and BringToFront methods
28752
28753 2004-09-16 07:00  ravindra
28754
28755         * Copyright: Added Novell URL.
28756
28757 2004-09-16 07:00  ravindra
28758
28759         * ToolBar.cs: Invalidate should be done before redrawing.
28760
28761 2004-09-15 21:19  ravindra
28762
28763         * ColumnHeaderStyle.cs: Enum for ListView Control.
28764
28765 2004-09-15 21:18  ravindra
28766
28767         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
28768           ListView Control.
28769
28770 2004-09-13 18:26  jackson
28771
28772         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
28773           properly
28774
28775 2004-09-13 18:13  jackson
28776
28777         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
28778           a second thread and post messages into the main threads message
28779           queue. This makes timing much more consistent. Both win2K and XP
28780           have a minimum timer value of 15 milliseconds, so we now do this
28781           too.
28782
28783 2004-09-13 15:18  pbartok
28784
28785         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28786           XplatUIX11.cs:
28787           - Added Z-Ordering methods
28788
28789 2004-09-13 10:56  pbartok
28790
28791         * Form.cs:
28792           - Fixed #region names
28793           - Moved properties and methods into their proper #regions
28794
28795 2004-09-13 10:51  pbartok
28796
28797         * Form.cs:
28798           - Added Accept and CancelButton properties
28799           - Added ProcessDialogKey() method
28800
28801 2004-09-13 08:18  pbartok
28802
28803         * IWindowTarget.cs:
28804           - Initial check-in
28805
28806 2004-09-10 21:50  pbartok
28807
28808         * Control.cs:
28809           - Added DoDragDrop() [incomplete]
28810           - Properly implemented 'Visible' handling
28811           - Added SetVisibleCore()
28812           - Implemented FindChildAtPoint()
28813           - Implemented GetContainerControl()
28814           - Implemented Hide()
28815
28816 2004-09-10 19:28  pbartok
28817
28818         * Control.cs:
28819           - Moved methods into their appropriate #regions
28820           - Reordered methods within regions alphabetically
28821
28822 2004-09-10 18:57  pbartok
28823
28824         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
28825           - Added method to retrieve text from window
28826
28827 2004-09-10 18:56  pbartok
28828
28829         * Control.cs:
28830           - Moved some internal functions into the internal region
28831           - Implemented FontHeight
28832           - Implemented RenderRightToLeft
28833           - Implemented ResizeRedraw
28834           - Implemented ShowFocusCues
28835           - Implemented ShowKeyboardCues
28836           - Implemented FromChildHandle
28837           - Implemented FromHandle
28838           - Implemented IsMnemonic
28839           - Implemented ReflectMessage
28840           - All public and protected Static Methods are now complete
28841
28842 2004-09-10 16:54  pbartok
28843
28844         * Control.cs:
28845           - Implemented remaining missing public instance properties
28846           - Alphabetized some out of order properties
28847
28848 2004-09-10 05:51  ravindra
28849
28850         * PictureBox.cs: Added a check for null image.
28851
28852 2004-09-10 00:59  jordi
28853
28854         * GroupBox.cs: remove cvs tag
28855
28856 2004-09-09 05:25  ravindra
28857
28858         * ToolBar.cs: Make redraw accessible from ToolBarButton.
28859
28860 2004-09-09 05:23  ravindra
28861
28862         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
28863           parent redraw.
28864
28865 2004-09-09 02:28  pbartok
28866
28867         * ThemeWin32Classic.cs:
28868           - Improve disabled string look
28869
28870 2004-09-09 01:15  jordi
28871
28872         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
28873           args and handler
28874
28875 2004-09-08 23:56  ravindra
28876
28877         * ItemBoundsPortion.cs: It's enum, not a class!
28878
28879 2004-09-08 23:47  ravindra
28880
28881         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
28882           Enums for Form.
28883
28884 2004-09-08 21:13  ravindra
28885
28886         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
28887           ListView control.
28888
28889 2004-09-08 21:03  ravindra
28890
28891         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
28892           avoid crash.
28893
28894 2004-09-08 21:01  ravindra
28895
28896         * ScrollableControl.cs: Removed unreachable code.
28897
28898 2004-09-08 06:45  jordi
28899
28900         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
28901
28902 2004-09-08 01:00  jackson
28903
28904         * XplatUIX11.cs: Only run the timers when updating the message
28905           queue. This effectively gives X messages a higher priority then
28906           timer messages. Timers still need love though
28907
28908 2004-09-07 14:01  jackson
28909
28910         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
28911           this for us and the handle is no longer valid.
28912
28913 2004-09-07 13:59  jackson
28914
28915         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
28916           loop that manages to not crash. TODO: Add poll and cleanup timers
28917
28918 2004-09-07 11:12  jordi
28919
28920         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
28921
28922 2004-09-07 03:40  jordi
28923
28924         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
28925           fixes, methods, multiple links
28926
28927 2004-09-06 06:55  jordi
28928
28929         * Control.cs: Caches ClientRectangle rectangle value
28930
28931 2004-09-05 02:03  jordi
28932
28933         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
28934           certain situations
28935
28936 2004-09-04 11:10  jordi
28937
28938         * Label.cs: Refresh when font changed
28939
28940 2004-09-02 16:24  pbartok
28941
28942         * Control.cs:
28943           - Added sanity check to creation of double buffer bitmap
28944
28945 2004-09-02 16:24  pbartok
28946
28947         * ButtonBase.cs:
28948           - Fixed selection of text color
28949           - Fixed handling of resize event; now properly recreates double
28950             buffering bitmap
28951           - Added missing assignment of TextAlignment
28952           - Added proper default for TextAlignment
28953
28954 2004-09-02 14:26  pbartok
28955
28956         * RadioButton.cs:
28957           - Added missing RadioButton.RadioButtonAccessibleObject class
28958
28959 2004-09-02 14:26  pbartok
28960
28961         * Control.cs:
28962           - Added missing Control.ControlAccessibleObject class
28963           - Started to implement Select()ion mechanisms, still very incomplete
28964
28965 2004-09-02 14:25  pbartok
28966
28967         * AccessibleObject.cs:
28968           - Added missing methods
28969
28970 2004-09-02 14:23  pbartok
28971
28972         * AccessibleNavigation.cs, AccessibleSelection.cs:
28973           - Initial check-in
28974
28975 2004-09-02 10:32  jordi
28976
28977         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
28978           pool for pens, brushes, and hatchbruses
28979
28980 2004-09-01 15:30  jackson
28981
28982         * StatusBar.cs: Fix typo
28983
28984 2004-09-01 14:44  pbartok
28985
28986         * RadioButton.cs:
28987           - Fixed state
28988
28989 2004-09-01 14:39  pbartok
28990
28991         * Button.cs, RadioButton.cs:
28992           - Functional initial check-in
28993
28994 2004-09-01 14:01  pbartok
28995
28996         * CheckBox.cs:
28997           - Added missing default
28998           - Added missing region mark
28999
29000 2004-09-01 09:10  jordi
29001
29002         * Label.cs: fixes method signatures, new methods, events, fixes
29003           autosize
29004
29005 2004-09-01 07:19  jordi
29006
29007         * Control.cs: Init string variables with an empty object
29008
29009 2004-09-01 04:20  jordi
29010
29011         * Control.cs: fires OnFontChanged event
29012
29013 2004-08-31 20:07  pbartok
29014
29015         * ButtonBase.cs:
29016           - Enabled display of strings
29017
29018 2004-08-31 20:05  pbartok
29019
29020         * Form.cs:
29021           - Added (partial) implementation of DialogResult; rest needs to be
29022             implemented when the modal loop code is done
29023
29024 2004-08-31 19:55  pbartok
29025
29026         * CheckBox.cs:
29027           - Fixed to match the removal of the needs_redraw concept
29028
29029 2004-08-31 19:55  pbartok
29030
29031         * ButtonBase.cs:
29032           - Removed the rather odd split between 'needs redraw' and redrawing
29033           - Now handles the events that require regeneration (ambient
29034             properties and size)
29035
29036 2004-08-31 19:41  pbartok
29037
29038         * Control.cs:
29039           - Added firing of BackColorChanged event
29040           - Added TopLevelControl property
29041           - Fixed handling of WM_ERASEBKGRND message
29042
29043 2004-08-31 12:49  pbartok
29044
29045         * ButtonBase.cs:
29046           - Removed debug
29047           - Minor fixes
29048
29049 2004-08-31 12:48  pbartok
29050
29051         * CheckBox.cs:
29052           - Finished (famous last words)
29053
29054 2004-08-31 04:35  jordi
29055
29056         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
29057           scrolling bugs, adds new methods
29058
29059 2004-08-30 14:42  pbartok
29060
29061         * CheckBox.cs:
29062           - Implemented CheckBox drawing code
29063
29064 2004-08-30 14:42  pbartok
29065
29066         * ButtonBase.cs:
29067           - Made Redraw() and CheckRedraw() virtual
29068           - Improved mouse up/down/move logic to properly track buttons
29069
29070 2004-08-30 09:44  pbartok
29071
29072         * CheckBox.cs:
29073           - Updated to fix broken build. Not complete yet.
29074
29075 2004-08-30 09:28  pbartok
29076
29077         * CheckState.cs:
29078           - Initial checkin
29079
29080 2004-08-30 09:17  pbartok
29081
29082         * Appearance.cs:
29083           - Initial check-in
29084
29085 2004-08-27 16:12  ravindra
29086
29087         * ToolBarButton.cs: Added TypeConverter attribute.
29088
29089 2004-08-27 16:07  ravindra
29090
29091         * ImageIndexConverter.cs: Implemented.
29092
29093 2004-08-27 14:17  pbartok
29094
29095         * Control.cs:
29096           - Removed unneeded stack vars
29097           - First attempt to fix sizing issues when layout is suspended
29098
29099 2004-08-25 15:35  jordi
29100
29101         * ScrollBar.cs: more fixes to scrollbar
29102
29103 2004-08-25 14:04  ravindra
29104
29105         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
29106           Added the missing divider code and grip for ToolBar Control.
29107
29108 2004-08-25 13:20  pbartok
29109
29110         * Control.cs:
29111           - Control now properly passes the ambient background color to child
29112             controls
29113
29114 2004-08-25 13:20  jordi
29115
29116         * ScrollBar.cs: small bug fix regarding bar position
29117
29118 2004-08-25 12:33  pbartok
29119
29120         * Timer.cs:
29121           - Now only calls SetTimer or KillTimer if the enabled state has
29122           changed
29123
29124 2004-08-25 12:33  pbartok
29125
29126         * XplatUIWin32.cs:
29127           - Fixed timer handling, now seems to work
29128           - Improved error message for window creation
29129
29130 2004-08-25 12:32  pbartok
29131
29132         * Control.cs:
29133           - Fixed generation of MouseUp message
29134
29135 2004-08-25 12:29  jordi
29136
29137         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
29138           and fixes for progressbar
29139
29140 2004-08-24 18:43  ravindra
29141
29142         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
29143           in ToolBar control.
29144
29145 2004-08-24 17:15  pbartok
29146
29147         * Panel.cs:
29148           - Added #region
29149           - Added missing events
29150           - Alphabetized
29151
29152 2004-08-24 17:14  pbartok
29153
29154         * StatusBar.cs, PictureBox.cs:
29155           - Now uses Control's CreateParams
29156
29157 2004-08-24 16:36  pbartok
29158
29159         * XplatUIX11.cs:
29160           - Fixed background color handling
29161           - Fixed sending of enter/leave events on a grab
29162
29163 2004-08-24 16:35  pbartok
29164
29165         * X11Structs.cs:
29166           - Refined definitions for CrossingEvent
29167
29168 2004-08-24 12:37  jordi
29169
29170         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
29171           formmating, methods signature, and adds missing events
29172
29173 2004-08-24 12:24  jordi
29174
29175         * Control.cs: fire OnEnabledChanged event
29176
29177 2004-08-24 11:17  pbartok
29178
29179         * XplatUIWin32.cs:
29180           - Implemented SetTimer() and KillTimer()
29181
29182 2004-08-24 11:16  pbartok
29183
29184         * XplatUIX11.cs:
29185           - Now uses Remove instead of Add to kill the timer
29186
29187 2004-08-24 10:16  jackson
29188
29189         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
29190           picture boxes in the theme now. Draw picture box borders and obey
29191           sizing modes
29192
29193 2004-08-24 05:49  jackson
29194
29195         * Timer.cs: Remove top secret debugging code
29196
29197 2004-08-24 05:34  jackson
29198
29199         * PictureBox.cs: Temp hack to make picture boxes draw their full
29200           image
29201
29202 2004-08-24 05:29  jackson
29203
29204         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29205           XplatUIX11.cs: Move timers to the driver level. On X they are
29206           queued by the driver and checked on idle.
29207
29208 2004-08-24 01:07  jackson
29209
29210         * XplatUIX11.cs: Use a queue for async messages instead of passing
29211           them as ClientMessages since that was totally broken. Also simply
29212           check for events and return an idle message if none are found. This
29213           gives us an idle handler, and prevents deadlocking when no messages
29214           are in the queue.
29215
29216 2004-08-23 18:19  ravindra
29217
29218         * XplatUIWin32.cs: Removed the unwanted destructor.
29219
29220 2004-08-23 17:27  pbartok
29221
29222         * ButtonBase.cs:
29223           - Finishing touches. Works now, just needs some optimizations.
29224
29225 2004-08-23 16:53  jordi
29226
29227         * ScrollBar.cs: small fix
29228
29229 2004-08-23 16:45  pbartok
29230
29231         * Application.cs:
29232           - Removed debug output
29233           - Simplifications
29234
29235 2004-08-23 16:43  jordi
29236
29237         * ScrollBar.cs: [no log message]
29238
29239 2004-08-23 16:10  pbartok
29240
29241         * Form.cs:
29242           - Fixed handling of WM_CLOSE message
29243           - Removed debug output
29244
29245 2004-08-23 16:09  pbartok
29246
29247         * Application.cs:
29248           - Added handling of Idle event
29249           - Added handling of form closing
29250           - Fixed reporting of MessageLoop property
29251           - Removed some unneeded code, should provide a bit of a speedup
29252
29253 2004-08-23 15:22  pbartok
29254
29255         * Control.cs:
29256           - Added InitLayout() method
29257           - Added code to properly perform layout when Anchor or Dock property
29258             is changed
29259           - Changed 'interpretation' of ResumeLayout. MS seems to have a
29260             LAMESPEC, tried to do it in a way that makes sense
29261
29262 2004-08-23 14:10  jordi
29263
29264         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
29265           properties and methods
29266
29267 2004-08-23 13:55  pbartok
29268
29269         * Control.cs:
29270           - Properly fixed Jordi's last fix
29271           - Now uses Cursor's Position property instead of calling XplatUI
29272           directly
29273
29274 2004-08-23 13:44  jordi
29275
29276         * PaintEventHandler.cs: Adding missing attribute
29277
29278 2004-08-23 13:39  pbartok
29279
29280         * Cursor.cs:
29281           - Implemented Position property
29282
29283 2004-08-23 13:39  pbartok
29284
29285         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
29286           - Added method to move mouse cursor
29287
29288 2004-08-23 13:39  pbartok
29289
29290         * XplatUIX11.cs:
29291           - Fixed setting of background color
29292           - Added method to move mouse cursor
29293
29294 2004-08-23 13:16  jordi
29295
29296         * Control.cs: avoids null exception
29297
29298 2004-08-22 17:46  jackson
29299
29300         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
29301           PictureBox
29302
29303 2004-08-22 17:40  jackson
29304
29305         * XplatUIX11.cs: Add some missing locks
29306
29307 2004-08-22 15:10  pbartok
29308
29309         * Control.cs, Form.cs:
29310           - Removed OverlappedWindow style from Control, instead it's default
29311             now is child
29312           - Made form windows OverlappedWindow by default
29313
29314 2004-08-22 13:34  jackson
29315
29316         * ScrollBar.cs: Update the position through the Value property so
29317           the OnValueChanged event is raised.
29318
29319 2004-08-22 12:04  pbartok
29320
29321         * SWF.csproj:
29322           - Added Cursor.cs and UserControl.cs
29323
29324 2004-08-22 12:03  pbartok
29325
29326         * Cursor.cs:
29327           - Started implementation, not usable yet
29328
29329 2004-08-22 12:00  pbartok
29330
29331         * UserControl.cs:
29332           - Implemented UserControl (complete)
29333
29334 2004-08-21 19:20  ravindra
29335
29336         * ToolBar.cs: Correcting the formatting mess of VS.NET.
29337
29338 2004-08-21 18:49  ravindra
29339
29340         * ToolBar.cs: Probably this completes the missing attributes in
29341           toolbar control.
29342
29343 2004-08-21 18:03  ravindra
29344
29345         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
29346           Fixed toolbar control signatures.
29347
29348 2004-08-21 16:32  pbartok
29349
29350         * LinkLabel.cs:
29351           - Signature Fixes
29352
29353 2004-08-21 16:30  pbartok
29354
29355         * Label.cs:
29356           - Signature fixes
29357
29358 2004-08-21 16:19  pbartok
29359
29360         * Control.cs, Label.cs:
29361           - Signature fixes
29362
29363 2004-08-21 15:57  pbartok
29364
29365         * ButtonBase.cs:
29366           - Added loads of debug output for development
29367           - Fixed typo in method name
29368
29369 2004-08-21 15:52  pbartok
29370
29371         * ToolBarButtonClickEventArgs.cs:
29372           - Added missing base class
29373
29374 2004-08-21 14:53  pbartok
29375
29376         * Control.cs:
29377           - Updated to match new GrabWindow signature
29378
29379 2004-08-21 14:51  pbartok
29380
29381         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29382           - Added method to get default display size
29383
29384 2004-08-21 14:23  pbartok
29385
29386         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29387           - Added method to query current grab state
29388           - Added argument to allow confining a grab to a window
29389
29390 2004-08-21 14:22  pbartok
29391
29392         * Keys.cs:
29393           - Added [Flags] attribute so that modifiers can be used in bitwise
29394           ops
29395
29396 2004-08-21 14:21  pbartok
29397
29398         * TrackBar.cs, ScrollBar.cs:
29399           - Replaced direct XplatUI calls with their Control counterpart
29400
29401 2004-08-21 13:32  pbartok
29402
29403         * Control.cs:
29404           - Implemented Created property
29405
29406 2004-08-21 13:28  pbartok
29407
29408         * Control.cs:
29409           - Implemented ContainsFocus
29410
29411 2004-08-21 13:26  pbartok
29412
29413         * Control.cs:
29414           - Implemented CausesValidation
29415
29416 2004-08-21 13:21  pbartok
29417
29418         * Control.cs:
29419           - Implemented CanFocus
29420           - Implemented CanSelect
29421           - Implemented Capture
29422
29423 2004-08-21 12:35  pbartok
29424
29425         * XplatUIWin32.cs:
29426           - Fixed bug with Async message handling
29427           - Implemented getting the ModifierKeys
29428
29429 2004-08-21 12:32  jackson
29430
29431         * AsyncMethodResult.cs: Make sure we have the mutex before we
29432           release it. Fixes BeginInvoke on windows
29433
29434 2004-08-21 11:31  pbartok
29435
29436         * XplatUIWin32.cs, XplatUIX11.cs:
29437           - Drivers now return proper mouse state
29438
29439 2004-08-21 10:54  jackson
29440
29441         * Control.cs: Implement EndInvoke
29442
29443 2004-08-21 10:48  jackson
29444
29445         * Timer.cs: Remove unneeded finalizer
29446
29447 2004-08-20 19:52  ravindra
29448
29449         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
29450           in mouse event handling in the ToolBar control.
29451
29452 2004-08-20 19:50  ravindra
29453
29454         * ImageList.cs: Changed draw method to use the arguments passed in
29455           to draw the image.
29456
29457 2004-08-20 18:58  pbartok
29458
29459         * XplatUIStructs.cs:
29460           - Added private message for async communication
29461
29462 2004-08-20 17:38  ravindra
29463
29464         * Control.cs: Made RightToLeft property virtual and removed a
29465           Console.WriteLine.
29466
29467 2004-08-20 14:39  jordi
29468
29469         * ThemeGtk.cs: use style_attach
29470
29471 2004-08-20 14:39  pbartok
29472
29473         * XplatUIWin32.cs:
29474           - Added jackson's Async code from X11 to Win32
29475
29476 2004-08-20 14:09  pbartok
29477
29478         * SWF.csproj:
29479           - Added all new files
29480
29481 2004-08-20 14:09  pbartok
29482
29483         * Control.cs:
29484           - Added call to set window background color
29485
29486 2004-08-20 14:03  pbartok
29487
29488         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
29489           - Added method for setting the window background
29490
29491 2004-08-20 14:02  pbartok
29492
29493         * XplatUIWin32.cs:
29494           - Added method for setting the background color
29495           - Added handling for erasing the window background
29496
29497 2004-08-20 13:45  jordi
29498
29499         * TrackBar.cs: fixes timer, new properties and methods
29500
29501 2004-08-20 13:34  jackson
29502
29503         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
29504           correct thread
29505
29506 2004-08-20 13:22  jackson
29507
29508         * Timer.cs: Timer Tick events are now handed through Controls Async
29509           mechanism so the callbacks are executed in the same thread as X
29510
29511 2004-08-20 13:19  jackson
29512
29513         * XplatUIDriver.cs: Expose functionality to send async messages
29514           through the driver
29515
29516 2004-08-20 13:18  jackson
29517
29518         * Control.cs: Implement Begininvoke
29519
29520 2004-08-20 13:14  jackson
29521
29522         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
29523           messages through the driver
29524
29525 2004-08-20 13:12  jackson
29526
29527         * XplatUIX11.cs: Lock before all X operations. Also added Async
29528           method functionality through XSendEvent
29529
29530 2004-08-20 13:11  jackson
29531
29532         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
29533           This will screw up on 64 bit systems)
29534
29535 2004-08-20 13:10  jackson
29536
29537         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
29538           Async messages through X/Win32
29539
29540 2004-08-19 19:39  pbartok
29541
29542         * XplatUIX11.cs:
29543           - Updated code to match new HandleData.DeviceContext type
29544
29545 2004-08-19 19:38  pbartok
29546
29547         * HandleData.cs:
29548           - Made DeviceContext a generic object to allow usage from various
29549           drivers
29550           - Added support for queueing Windows messages
29551
29552 2004-08-19 19:37  pbartok
29553
29554         * XplatUIWin32.cs:
29555           - Added generation of MouseEnter, MouseLeave and MouseHover events
29556           - Added cleanup on EndPaint
29557
29558 2004-08-19 19:17  pbartok
29559
29560         * Control.cs:
29561           - Added handling of WM_MOUSEHOVER
29562           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
29563           code
29564
29565 2004-08-19 18:55  jordi
29566
29567         * ThemeGtk.cs: fixes button order
29568
29569 2004-08-19 18:12  jordi
29570
29571         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
29572
29573 2004-08-19 17:09  pbartok
29574
29575         * Control.cs:
29576           - Added Right property
29577           - Added RightToLeft property
29578
29579 2004-08-19 16:27  jordi
29580
29581         * ThemeGtk.cs: experimental GTK theme support
29582
29583 2004-08-19 16:26  jordi
29584
29585         * ITheme.cs, Theme.cs: move themes from an interface to a class
29586
29587 2004-08-19 16:25  jordi
29588
29589         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
29590           theme enhancaments
29591
29592 2004-08-19 16:04  pbartok
29593
29594         * XplatUIX11.cs:
29595           - Added colormap basics
29596           - Added a way to re-initialize with a different display handle
29597           - Fixed setting of the window background color
29598           - Added various X11 imports related to colors and colormaps
29599
29600 2004-08-19 15:51  pbartok
29601
29602         * X11Structs.cs:
29603           - Removed packing hints (Paolo suggested this a while back)
29604           - fixed colormap type
29605           - Added default Atom types
29606           - Added Screen and color structs and enums
29607
29608 2004-08-19 15:39  pbartok
29609
29610         * ImageList.cs:
29611           - Added missing Draw() method
29612           - Added missing RecreateHandle event
29613
29614 2004-08-19 15:30  pbartok
29615
29616         * Form.cs:
29617           - Added handling of WM_CLOSE
29618
29619 2004-08-18 13:16  jordi
29620
29621         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
29622           a table
29623
29624 2004-08-18 09:56  jordi
29625
29626         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
29627
29628 2004-08-17 15:31  ravindra
29629
29630         * SWF.csproj: Updated project.
29631
29632 2004-08-17 15:25  pbartok
29633
29634         * Control.cs:
29635           - Drawing improvement; don't call UpdateBounds if we are not visible
29636             (or have been minimized)
29637
29638 2004-08-17 15:24  pbartok
29639
29640         * XplatUIWin32.cs:
29641           - Finished IsVisible
29642           - Added Win32GetWindowPlacement
29643
29644 2004-08-17 15:08  jackson
29645
29646         * Panel.cs: Initial checkin of the Panel
29647
29648 2004-08-17 14:25  pbartok
29649
29650         * Control.cs:
29651           - Fixed broken handling of default window sizes
29652
29653 2004-08-17 13:29  jackson
29654
29655         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
29656           has a large startup time.
29657
29658 2004-08-17 10:25  jackson
29659
29660         * HandleData.cs: union areas properly
29661
29662 2004-08-17 10:12  jackson
29663
29664         * HandleData.cs: union areas properly
29665
29666 2004-08-16 20:00  ravindra
29667
29668         * ToolBar.cs, ToolBarButton.cs: Added attributes.
29669
29670 2004-08-16 18:48  ravindra
29671
29672         * ToolBar.cs: Added attributes.
29673
29674 2004-08-16 17:17  ravindra
29675
29676         * SWF.csproj: Updated project.
29677
29678 2004-08-16 17:16  jackson
29679
29680         * XplatUIX11.cs: Check for more expose events before sending a
29681           WM_PAINT so they can all be grouped together. This makes dragging a
29682           window across another window redraw in a sane way.
29683
29684 2004-08-16 15:47  pbartok
29685
29686         * Control.cs:
29687           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
29688             support OnMouseEnter/Leave()
29689           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
29690             exposure handling
29691
29692 2004-08-16 15:46  pbartok
29693
29694         * XplatUIStructs.cs, XplatUIX11.cs:
29695           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
29696           OnMouseEnter/Leave()
29697
29698 2004-08-16 15:34  jackson
29699
29700         * XplatUIX11.cs: Group multiple expose events in HandleData, make
29701           sure messages get the message field set to WM_NULL if they are not
29702           handled.
29703
29704 2004-08-16 15:24  jackson
29705
29706         * HandleData.cs: HandleData is used for storing message information
29707           for window handles
29708
29709 2004-08-15 17:23  ravindra
29710
29711         * ColorDepth.cs: Added attribute.
29712
29713 2004-08-15 17:23  ravindra
29714
29715         * SWF.csproj: Updated project for ToolBar Control.
29716
29717 2004-08-15 17:20  ravindra
29718
29719         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
29720           control and also dos2unix format.
29721
29722 2004-08-15 17:13  ravindra
29723
29724         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
29725           ToolBarButtonClickEventArgs.cs,
29726           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
29727           ToolBarTextAlign.cs: First Implementation of ToolBar control.
29728
29729 2004-08-15 15:31  pbartok
29730
29731         * ButtonBase.cs:
29732           - First (mostly) working version
29733
29734 2004-08-13 16:15  pbartok
29735
29736         * Control.cs:
29737           - Fixed Anchor default
29738
29739 2004-08-13 15:43  pbartok
29740
29741         * Control.cs:
29742           - Changed GetCursorPos signature
29743
29744 2004-08-13 15:42  pbartok
29745
29746         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
29747           - Changed signature for GetCursorPos
29748
29749 2004-08-13 15:25  pbartok
29750
29751         * XplatUIX11.cs:
29752           - Cleanup
29753           - Fixed resizing/exposure handling
29754
29755 2004-08-13 15:22  jordi
29756
29757         * ThemeWin32Classic.cs: removes redundant code and fixes issues
29758           with tickposition
29759
29760 2004-08-13 14:55  jordi
29761
29762         * TrackBar.cs: change from wndproc to events
29763
29764 2004-08-13 13:00  jordi
29765
29766         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29767           XplatUIX11.cs: implements PointToClient (ScreenToClient)
29768
29769 2004-08-13 12:53  pbartok
29770
29771         * XplatUIWin32.cs:
29772           - Changed GetWindowPos to also provide client area size
29773           - Fixed broken prototypes for several win32 functions
29774
29775 2004-08-13 12:53  pbartok
29776
29777         * XplatUI.cs, XplatUIDriver.cs:
29778           - Changed GetWindowPos to also provide client area size
29779
29780 2004-08-13 12:52  pbartok
29781
29782         * XplatUIX11.cs:
29783           - Added generation of WM_POSCHANGED
29784           - Changed GetWindowPos to also provide client area size
29785
29786 2004-08-13 12:52  pbartok
29787
29788         * Control.cs:
29789           - Added Dispose() and destructor
29790           - Fixed resizing and bounds calculation
29791           - Fixed Layout
29792           - Added memory savings for invisible windows
29793
29794 2004-08-13 12:46  jordi
29795
29796         * TrackBar.cs: adds timer and grap window
29797
29798 2004-08-13 10:25  jackson
29799
29800         * Timer.cs: SWF Timer
29801
29802 2004-08-12 16:59  pbartok
29803
29804         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29805           - Implemented method to get current mouse position
29806
29807 2004-08-12 14:29  jordi
29808
29809         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
29810           enhancement, fix mouse problems, highli thumb, etc
29811
29812 2004-08-12 13:31  pbartok
29813
29814         * Control.cs:
29815           - Fixed Anchoring bugs
29816
29817 2004-08-12 13:01  jackson
29818
29819         * StatusBar.cs: Don't forget things
29820
29821 2004-08-12 12:54  jackson
29822
29823         * ThemeWin32Classic.cs: Handle owner draw status bars
29824
29825 2004-08-12 12:54  jackson
29826
29827         * StatusBar.cs: Implement missing properties, events, and methods.
29828           Handle mouse clicking
29829
29830 2004-08-12 10:19  jackson
29831
29832         * StatusBarPanelClickEventArgs.cs,
29833           StatusBarPanelClickEventHandler.cs: Classes for handling status
29834           bar panel click events
29835
29836 2004-08-12 10:10  jackson
29837
29838         * Control.cs: Add missing properties
29839
29840 2004-08-12 09:46  pbartok
29841
29842         * BindingsManagerBase.cs:
29843           - Name changed to BindingManagerBase.cs
29844
29845 2004-08-12 09:25  jordi
29846
29847         * ScrollableControl.cs: calls ctrlbase instead of exeception
29848
29849 2004-08-11 16:28  pbartok
29850
29851         * InputLanguageChangingEventArgs.cs:
29852           - Never check in before compiling. Fixes the last check-in
29853
29854 2004-08-11 16:26  pbartok
29855
29856         * InputLanguageChangingEventArgs.cs:
29857           - More signature fixes
29858
29859 2004-08-11 16:20  pbartok
29860
29861         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
29862           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
29863           ImageListStreamer.cs, InputLanguage.cs,
29864           InputLanguageChangedEventArgs.cs,
29865           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
29866           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
29867           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
29868           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29869           - Signature fixes
29870
29871 2004-08-11 16:16  pbartok
29872
29873         * Application.cs:
29874           - Fixed Signature
29875           - Added .Net 1.1 method
29876
29877 2004-08-11 15:25  pbartok
29878
29879         * SWF.csproj:
29880           - Fixed BindingManagerBase.cs filename
29881
29882 2004-08-11 15:22  pbartok
29883
29884         * BindingManagerBase.cs:
29885           - Was checked in with wrong filename
29886
29887 2004-08-11 14:50  pbartok
29888
29889         * SWF.csproj:
29890           - Updated
29891
29892 2004-08-11 13:41  jordi
29893
29894         * XplatUIWin32.cs: Fixes ClientRect
29895
29896 2004-08-11 13:19  pbartok
29897
29898         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29899           XplatUIX11.cs:
29900           - We had SetWindowPos and MoveWindow to set window positions and
29901             size, removed MoveWindow. We have GetWindowPos, so it made sense to
29902             keep SetWindowPos as matching counterpart
29903           - Added some X11 sanity checking
29904
29905 2004-08-11 12:59  pbartok
29906
29907         * Control.cs:
29908           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
29909             (It seems that SetBounds is just a front for SetBoundsCore and
29910              SetBoundsCore updates the underlying window system and
29911              UpdateBounds is responsible for updating the variables associated
29912              with the Control and sending the events)
29913           - Major cleanup of Size handling; we now have two sizes, client_size
29914             and bounds. Bounds defines the window with decorations, client_size
29915             without them.
29916
29917 2004-08-11 12:55  pbartok
29918
29919         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29920           - Added method to calculate difference between decorated window and
29921             raw client area
29922
29923 2004-08-11 12:54  pbartok
29924
29925         * Label.cs:
29926           - Forcing redraw on resize
29927
29928 2004-08-11 11:43  pbartok
29929
29930         * ImageList.cs:
29931           - Removed disposing of the actual images when the list is disposed
29932
29933 2004-08-11 09:13  pbartok
29934
29935         * Control.cs:
29936           - Now properly reparents windows
29937
29938 2004-08-11 08:37  pbartok
29939
29940         * Control.cs:
29941           - Duh!
29942
29943 2004-08-11 07:47  pbartok
29944
29945         * Control.cs:
29946           - Rewrote the collection stuff. Might not be as fast now, not
29947             keeping the number of children around and accessible directly, but
29948             it's more straightforward
29949
29950 2004-08-11 07:44  pbartok
29951
29952         * AccessibleObject.cs:
29953           - Fixed to match ControlCollection rewrite
29954
29955 2004-08-11 07:43  pbartok
29956
29957         * ImageList.cs:
29958           - Added missing creation of the collection list
29959
29960 2004-08-10 20:08  jackson
29961
29962         * StatusBar.cs: Get the paint message from WndProc
29963
29964 2004-08-10 19:31  jackson
29965
29966         * ThemeWin32Classic.cs: Create Brushes as little as possible
29967
29968 2004-08-10 19:20  jackson
29969
29970         * UICues.cs: Add Flags attribute
29971
29972 2004-08-10 19:19  jackson
29973
29974         * StatusBarPanel.cs: Signature cleanup
29975
29976 2004-08-10 19:10  jackson
29977
29978         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
29979           Initial implementation of status bar item drawing
29980
29981 2004-08-10 17:27  jordi
29982
29983         * TrackBar.cs: add missing methods, properties, and restructure to
29984           hide extra ones
29985
29986 2004-08-10 16:24  jackson
29987
29988         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
29989           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
29990           attribute
29991
29992 2004-08-10 13:21  jordi
29993
29994         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
29995           enhancements and standarize on win colors defaults
29996
29997 2004-08-10 12:52  jackson
29998
29999         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
30000           ThemeWin32Classic.cs: Implement DrawItem functionality
30001
30002 2004-08-10 12:47  jordi
30003
30004         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
30005
30006 2004-08-10 12:32  jordi
30007
30008         * Control.cs: throw ontextchange event
30009
30010 2004-08-10 11:43  pbartok
30011
30012         * Control.cs:
30013           - Added more to the still unfinished Dock/Anchor layout code
30014
30015 2004-08-10 11:39  pbartok
30016
30017         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
30018           - Added GetWindowPos method
30019
30020 2004-08-10 11:36  pbartok
30021
30022         * XplatUIWin32.cs:
30023           - Implemented several methods
30024
30025 2004-08-10 09:47  jackson
30026
30027         * TrackBar.cs: Allow control to handle buffering
30028
30029 2004-08-10 09:41  jackson
30030
30031         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
30032
30033 2004-08-10 09:24  jackson
30034
30035         * Label.cs, LinkLabel.cs: Let Control handle buffering.
30036
30037 2004-08-10 09:09  jackson
30038
30039         * StatusBar.cs: Let Control handle all the buffering.
30040
30041 2004-08-10 09:08  jackson
30042
30043         * Control.cs: Control will now handle the buffering code, so each
30044           control does not have to implement this.
30045
30046 2004-08-10 08:34  jackson
30047
30048         * XplatUIDriver.cs: Use default colors from the theme
30049
30050 2004-08-09 17:12  pbartok
30051
30052         * ImageList.cs:
30053           - Fixed several bugs Ravindra pointed out
30054
30055 2004-08-09 16:11  pbartok
30056
30057         * Control.cs:
30058           - Added incomplete dock layout code
30059           - Added support for mouse wheel
30060
30061 2004-08-09 16:09  pbartok
30062
30063         * XplatUIX11.cs:
30064           - Added handling for middle and right mousebutton
30065           - Added handling for mouse wheel
30066           - Added handling for key state and mouse state and position
30067           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
30068           messages
30069
30070 2004-08-09 15:40  jackson
30071
30072         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
30073           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
30074           checkin
30075
30076 2004-08-09 15:37  jackson
30077
30078         * StatusBar.cs: Initial implementation of StatusBar
30079
30080 2004-08-09 15:36  jackson
30081
30082         * ITheme.cs: Add support for drawing status bar and getting status
30083           bar item sizes
30084
30085 2004-08-09 15:35  pbartok
30086
30087         * MouseButtons.cs:
30088           - Fixed values
30089
30090 2004-08-09 15:34  jackson
30091
30092         * ThemeWin32Classic.cs: Add support for drawing status bar and get
30093           status bar item sizes
30094
30095 2004-08-09 15:21  jackson
30096
30097         * ThemeWin32Classic.cs: Use known colors for default control
30098           colours
30099
30100 2004-08-09 15:12  jackson
30101
30102         * ThemeWin32Classic.cs: Make the default font static, it is static
30103           in control so this doesn't change functionality and creating fonts
30104           is sloooooow.
30105
30106 2004-08-09 14:56  pbartok
30107
30108         * X11Structs.cs:
30109           - Added GrabMode enum
30110
30111 2004-08-09 14:55  pbartok
30112
30113         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30114           - Removed Run method, was only required for initial development
30115
30116 2004-08-09 14:51  pbartok
30117
30118         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30119           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
30120           capture
30121
30122 2004-08-09 13:48  pbartok
30123
30124         * XplatUIX11.cs:
30125           - Fixed default sizing for child windows
30126
30127 2004-08-09 12:56  pbartok
30128
30129         * XplatUIX11.cs:
30130           - Added generation of WM_DESTROY message
30131           - Added handling of window manager induced shutdown
30132
30133 2004-08-09 11:31  jackson
30134
30135         * ThemeWin32Classic.cs: New names for control properties
30136
30137 2004-08-09 11:25  jackson
30138
30139         * Control.cs: Use new color names
30140
30141 2004-08-09 11:02  jackson
30142
30143         * XplatUI.cs: Get default window properties from the theme
30144
30145 2004-08-09 11:01  jackson
30146
30147         * ITheme.cs: The theme engine now controls default window
30148           properties
30149
30150 2004-08-09 11:00  jackson
30151
30152         * ThemeWin32Classic.cs: Add default window color properties
30153
30154 2004-08-09 10:17  jackson
30155
30156         * ThemeWin32Classic.cs: Use correct default back color
30157
30158 2004-08-09 10:05  jackson
30159
30160         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
30161           the theme now.
30162
30163 2004-08-09 09:56  jackson
30164
30165         * XplatUI.cs: Remove defaults, these are handled by the theme now.
30166
30167 2004-08-09 09:54  jackson
30168
30169         * Control.cs: Get default properties from the theme.
30170
30171 2004-08-09 09:53  jackson
30172
30173         * ITheme.cs: Themes now handle default control properties
30174
30175 2004-08-09 09:53  jackson
30176
30177         * ThemeWin32Classic.cs: Themes now handle default control
30178           properties so coloring will be consistent
30179
30180 2004-08-08 16:54  jordi
30181
30182         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
30183
30184 2004-08-08 15:08  jordi
30185
30186         * XplatUIX11.cs: fixes keyboard crash
30187
30188 2004-08-08 13:47  jordi
30189
30190         * Label.cs: add cvs header info
30191
30192 2004-08-08 12:09  jackson
30193
30194         * ThemeWin32Classic.cs: Add pen_buttonface
30195
30196 2004-08-08 11:52  jordi
30197
30198         * Label.cs, LinkLabel.cs: [no log message]
30199
30200 2004-08-08 11:34  jordi
30201
30202         * ThemeWin32Classic.cs: Use Windows Standard Colours
30203
30204 2004-08-07 17:32  jordi
30205
30206         * TrackBar.cs: throw exceptions of invalid enums values
30207
30208 2004-08-07 17:31  jordi
30209
30210         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
30211           draw method name
30212
30213 2004-08-07 16:56  jackson
30214
30215         * HorizontalAlignment.cs: Initial checkin
30216
30217 2004-08-07 13:16  jordi
30218
30219         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
30220           methods
30221
30222 2004-08-07 13:05  jordi
30223
30224         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
30225           GetSysColor defines
30226
30227 2004-08-06 18:01  pbartok
30228
30229         * ThemeWin32Classic.cs:
30230           - Fixed some rounding issues with float/int
30231
30232 2004-08-06 18:00  jackson
30233
30234         * DockStyle.cs, AnchorStyles.cs:
30235
30236                   Add flags and serializable attributes.
30237
30238 2004-08-06 17:46  pbartok
30239
30240         * XplatUIX11.cs:
30241           - Implemented GetParent
30242
30243 2004-08-06 17:18  pbartok
30244
30245         * TrackBar.cs:
30246           - Fixed some rounding issues with float/int
30247
30248 2004-08-06 17:17  pbartok
30249
30250         * X11Structs.cs, XplatUIX11.cs:
30251           - Fixed Refresh and Invalidate
30252
30253 2004-08-06 15:30  pbartok
30254
30255         * Control.cs, X11Structs.cs, XplatUIX11.cs:
30256           - Fixed recursive loop when resizing
30257           - Improved/fixed redrawing on expose messages
30258
30259 2004-08-06 09:53  jordi
30260
30261         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
30262           keyboard navigation
30263
30264 2004-08-06 08:02  pbartok
30265
30266         * X11Structs.cs, XplatUIX11.cs:
30267           - Fixed reparenting
30268           - Fixed window border creation
30269
30270 2004-08-05 15:38  pbartok
30271
30272         * XplatUIX11.cs:
30273           - Attempted fix for reparenting problems
30274
30275 2004-08-04 15:14  pbartok
30276
30277         * Control.cs:
30278           - Fixed Invalidation bug (calculated wrong client area)
30279           - Added ClientSize setter
30280
30281 2004-08-04 15:13  pbartok
30282
30283         * Form.cs:
30284           - Added AutoScale properties
30285
30286 2004-08-04 15:13  pbartok
30287
30288         * SWF.csproj:
30289           - Added latest files
30290
30291 2004-08-04 14:11  pbartok
30292
30293         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
30294           XplatUIX11.cs:
30295           - Added Invalidate handling
30296
30297 2004-08-03 17:09  jordi
30298
30299         * XplatUIDriver.cs: fixes spelling mistake
30300
30301 2004-07-27 09:53  jordi
30302
30303         * TrackBar.cs: fixes trackbar events, def classname, methods
30304           signature
30305
30306 2004-07-27 09:29  jordi
30307
30308         * ScrollBar.cs: fixes scrollbar events
30309
30310 2004-07-27 04:38  jordi
30311
30312         * Control.cs: changes to be able to run winforms samples
30313
30314 2004-07-26 11:42  jordi
30315
30316         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
30317           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
30318
30319 2004-07-26 05:41  jordi
30320
30321         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
30322           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
30323           implementation
30324
30325 2004-07-22 09:22  jordi
30326
30327         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
30328           check link overlapping, implement events, and fixes
30329
30330 2004-07-21 10:28  jordi
30331
30332         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
30333
30334 2004-07-21 10:19  jordi
30335
30336         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
30337           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
30338           LinkLabelLinkClickedEventArgs.cs,
30339           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
30340           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
30341           implementation
30342
30343 2004-07-19 13:09  jordi
30344
30345         * Control.cs, Label.cs: label control re-written: added missing
30346           functionlity, events, and properties
30347
30348 2004-07-19 10:49  jordi
30349
30350         * Control.cs: fixes SetBounds logic
30351
30352 2004-07-19 01:29  jordi
30353
30354         * Control.cs: Call RefreshWindow only if the window has created
30355
30356 2004-07-15 14:05  pbartok
30357
30358         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
30359           - Implemented ImageList and ImageList.ImageCollection classes
30360           - Added ColorDepth enumeration
30361           - Updated SWF VS.Net project
30362
30363 2004-07-15 11:06  jordi
30364
30365         * XplatUIStructs.cs: added MsgButons enum
30366
30367 2004-07-15 11:03  jordi
30368
30369         * Control.cs: added basic mouse handeling events
30370
30371 2004-07-15 03:38  jordi
30372
30373         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
30374           Vertical TrackBar control implementation
30375
30376 2004-07-13 09:33  jordi
30377
30378         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
30379
30380 2004-07-13 09:31  jordi
30381
30382         * Control.cs, Form.cs: commit: new properties and fixes form size
30383           problems
30384
30385 2004-07-09 14:13  miguel
30386
30387         * ProgressBar.cs: Spelling
30388
30389 2004-07-09 11:25  pbartok
30390
30391         * ProgressBar.cs:
30392           - Removed usage of Rectangle for drawing. Miguel pointed out it's
30393           faster
30394
30395 2004-07-09 11:17  miguel
30396
30397         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
30398
30399                 * ProgressBar.cs: Fixed spelling for `block'
30400
30401                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
30402                 style guidelines.
30403
30404                 Avoid using the += on rect.X, that exposed a bug in the compiler.
30405
30406 2004-07-08 23:21  pbartok
30407
30408         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
30409           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
30410           BaseCollection.cs, Binding.cs, BindingContext.cs,
30411           BindingMemberInfo.cs, BindingsCollection.cs,
30412           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
30413           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
30414           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
30415           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
30416           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
30417           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
30418           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
30419           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
30420           FrameStyle.cs, GiveFeedbackEventArgs.cs,
30421           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
30422           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
30423           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
30424           InputLanguageChangedEventArgs.cs,
30425           InputLanguageChangedEventHandler.cs,
30426           InputLanguageChangingEventArgs.cs,
30427           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
30428           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
30429           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
30430           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
30431           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
30432           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
30433           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
30434           QueryAccessibilityHelpEventArgs.cs,
30435           QueryAccessibilityHelpEventHandler.cs,
30436           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
30437           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
30438           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
30439           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
30440           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
30441           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
30442           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
30443           XplatUIX11.cs, lang.cs:
30444           - Initial check-in
30445
30446