* TextBoxBase.cs: Invalidate selection before changing SelectionLength
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
2
3         * TextBoxBase.cs: Invalidate selection before changing SelectionLength
4         or SelectionStart. Code formatting.
5
6 2007-10-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7
8         * TreeView.cs: drag_begin_x and drag_begin_y are now set to -1,
9         indicating that there was not a previous drag-and-drop operation going
10         on.
11         Fixes part of #325071.
12
13 2007-10-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14
15         * X11Dnd.cs: When DragEventArgs.Effect is set to a value not part of
16         AllowedEffect, don't let the drop operation happen. 
17         Fixes #32580.
18
19 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
20
21         * TextRenderer.cs: Use GDI on Windows in both the 1.1 and 2.0 profiles.
22
23 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
24
25         * Line.cs, LineTag.cs: Guard against an exception when Document.Clear
26         is called.
27
28 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
29
30         * Line.cs: Add a method that finds the tag that contains an x-coord.
31         * LineTag.cs: Add a method that finds the character at an x-coord using
32         a binary search, the old way was a linear search.
33         * TextControl.cs: Change FindCursor to use the above new methods.
34
35 2007-10-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
36
37         * DragEventArgs.cs: Allow Effect to have a non allowed value (a
38         value different than AllowedEffect). This should be possible to
39         indicate that dragging is not possible in some control/area.
40
41 2007-10-11  Jonathan Pobst  <monkey@jpobst.com>
42
43         * LineTag.cs: Encapsulate all variables with properties.  Calculate ascent/
44         descent internally when font changes instead of outside code being responsible
45         for setting it.
46         * Line.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs: Use Tag properties
47         instead of accessing internal variables.
48
49 2007-10-09  Everaldo Canuto  <ecanuto@novell.com>
50
51         * MdiClient.cs: Always call ArrangeIconicWindows before any arrangement and
52         remove special treatment for ArrangeIcons since it is already arranged.
53
54 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
55
56         * TextBoxTextRenderer.cs: Draw takes a Color now instead of a Brush, as
57         the Win32 backend uses Color.
58         * Line.cs, LineTag.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs:
59         Refactor to store a Color instead of a Brush for Color.
60
61 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
62
63         * Line.cs, LineTag.cs: Override GetHashCode to make a compiler warning go
64         away.  I didn't realize I needed this when I refactored these earlier.
65
66 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
67
68         * LineTag.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs: Refactor to
69         store a Color structure and use the ResPool for back color instead of
70         holding onto brushes.
71
72 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
73
74         * TextControl.cs: Fix how we calculate the end of the tag we are drawing.
75         [Fixes bug #325592]
76
77 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
78
79         * MonthCalendar.cs: When ShowWeekNumbers is changed, force the calendar
80         to recalculate its size.  Fixes a part of bug #331052.
81
82 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
83
84         * NotifyIcon.cs: Set the correct mouse button when handling right mouse
85         button.  Fixes a part of bug #331052.
86
87 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
88
89         * Form.cs: Trim NewLine before setting XPlatUI.SetText, and when setting
90         the CreateParams.
91         * ThemeWin32Classic.cs: Trim NewLine before drawing MDI children window
92         decorations.
93         [Fixes bug #330986]
94
95 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
96
97         * TextBoxTextRenderer.cs: Don't make this a static class, as static
98         doesn't exist in 1.1.  (Thanks jb!)
99
100 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
101
102         * TextBoxTextRenderer.cs: Abstract text measuring and drawing to this
103         class to allow us to use different backends on different platforms.
104         Linux uses the current [Draw|Measure]String backend.  Windows uses
105         the TextRenderer.[Draw|Measure]Text backend, which uses GDI instead
106         of GDI+.  This leads to better looking text and more accurate measurements
107         on Windows, fixing many of the reported issues.
108         * Line.cs, LineTag.cs: Update to use TextBoxTextRenderer.
109
110 2007-10-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
111
112         * FolderBrowserDialog.cs: When running on Windows,
113         try to detect paths such "C:" and add Path.DirectorySeparatorChar,
114         since we must match both "C:" and "C:\" forms. A little hackish, but
115         works.
116         Fixes #325247.
117
118 2007-10-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
119
120         * ListView.cs: When calling EndEdit (after editing an item),
121         create a new instance of LabelEditEventArgs to keep clean the fields
122         in case we get a new call to BeginEdit; also do Application.DoEvents
123         to have focus in synch. This is a fix similar to TreeView's #325244.
124
125 2007-10-07  Andreia Gaita <avidigal@novell.com>
126
127         * HtmlDocument.cs, HtmlElement.cs, WebBrowser.cs: Added dom support
128         * WebBrowserBase.cs: Added dialog support, calling the
129           WebBrowserDialogs classes for each specific dialog type.
130
131 2007-10-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
132
133         * ListView.cs: When the last item is focused and is removed,
134         move the focus to the previous item (in Items order). This is what MS
135         does.
136         Fixes #330415.
137
138 2007-10-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
139
140         * ListView.cs: In ListViewItemCollection, make Remove call RemoveAt,
141         instead of the opposite (RemoveAt call Remove). This is a better
142         approach since we don't need to to a pair of traversals when using
143         RemoveAt.
144
145 2006-10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
146
147         * TreeView.cs: When Keys.Left is pressed, before trying to Collapse
148         check that the node actually has nodes, and if not, move to the
149         parent node instead. 
150         Fixes #325265.
151
152 2006-10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
153
154         * TreeView.cs: Move the previous change to the general case (to
155         call Application.DoEvents in cases where the method was called by
156         different places).
157
158 2007_10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
159
160         * TreeView.cs: When calling EndEdit and we need to hide the textbox,
161         call Application.DoEvents. This is neccessary when we get a call to
162         BeginEdit from an AfterLabelEdit handler, because the focus always
163         goes to the TreeView, even if we try to give it to our
164         LabelEditTextBox. The call do Application.DoEvents seems to
165         synchronize the focus, basically.
166         Fixes #325244.
167
168 2007-10-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
169
170         * TreeView.cs: When AfterLabelEdit event is fired, TreeNode.IsEditing
171         should be false. This also removes some nasty recursive paths. Fixes
172         part of #325244.
173
174 2007-10-04  Everaldo Canuto  <ecanuto@novell.com>
175
176         * MdiClient.cs: When cascade (layout) mdi window that is maximized, set the
177         state to normal. Also resize window when cascading. Fixes #325433. 
178
179 2007-10-04  Jonathan Pobst  <monkey@jpobst.com>
180
181         * RichTextBox.cs: When SelectionColor is set to Color.Empty, use
182         DefaultForeColor, as drawing empty colored lines isn't very useful.
183         [Fixes the not drawn lines part of bug #324358]
184
185 2007-10-04  Jonathan Pobst  <monkey@jpobst.com>
186
187         * TextControl.cs: Move Line and LineTag classes into separate files to
188         make things easier to find.
189         * Line.cs, LineTag.cs: Bring coding standards up to Mono's guidelines.
190         * RichTextBox.cs: Capitalize LineTag.Length property access.
191         - This is purely an organizational/formatting change, no logic changed. -
192
193 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
194
195         * ThemeWin32Classic.cs: Do not show focus rectangle in radio buttons when
196         text is empty.
197
198 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
199
200         * ThemeWin32Classic.cs: Do not show focus rectangle in checkboxes when
201         text is empty.
202
203 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
204
205         * ComboBox.cs: On contructor use backgound_color instead of BackColor to
206         prevent calling of OnBackColorChanged. Fixes #325321.
207
208 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
209
210         * TextBox.cs: When check enabled uses Enabled property instead of is_enabled
211         because control can be disabled because owner is disabled.
212
213 2007-10-02  Jonathan Pobst  <monkey@jpobst.com>
214
215         * ComboBox.cs: For the 1.1 profile, the default SelectedText is
216         string.Empty, test failed from previous change.
217
218 2007-10-02  Jonathan Pobst  <monkey@jpobst.com>
219
220         * TextBoxBase.cs: For the 1.1 profile, the default SelectedText
221         is null, not String.Empty.  See bug #323038.
222
223 2007-10-01  Jonathan Pobst  <monkey@jpobst.com>
224
225         * TextControl.cs: Change the margins to match MS a little better.
226         Still not perfect for X11 due to some DrawString differences, but
227         is still an improvement over the old stuff.
228         Partially fixes #324467.
229
230 2007-09-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
231
232         * FolderBrowserDialog.cs: When using MyComputer as 
233         RootFolder, let absolute paths be considered as valid ones. Also, use
234         Path.DirectorySeparatorChar instead of Path.AltDirectorySeparatorChar,
235         for Windows compatibility.
236         Partially fixes #325247.
237
238 2007-09-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
239
240         * FolderBrowserDialog.cs: Fix the recursive FindPathInNodes method.
241         Also remove the stack.Count > 0 check in FBTreeView.SetSelectedNode
242         method, since it causes the dialog to not select folders directly
243         under the root path (when setting SelectedPath property).
244
245 2007-09-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
246
247         * TreeNode.cs: When calling Expand/Collapse and need to call 
248         ExpandBelow/CollapseBelow respectively, take into account
249         partially visible nodes (previously Expanding/Collapsing
250         a partially visible node in the bottom was not updating its +- sign).
251
252 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
253
254         * TreeView.cs: When calling Expand on a TreeNode, and we need to
255         expand nodes below (ExpandBelow), scroll the entire Viewport
256         area if the node is above it and not visible (instead of scrolling
257         the area from node's Bottom, which applies only when the node is
258         visible).
259         Fixes #325266.
260
261 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
262
263         * TreeView.cs: When calling ExpandAll, set SelectedNode to the top
264         node in the bottom area (as .Net does). This is done to preserve the
265         scroll position when ExpandAll is called before handle is created for
266         the 1.1 profile (bottom area, as opposed to top area in 2.0).
267         Fixes #324103.
268
269 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
270
271         * TreeView.cs: When calling ExpandAll, don't move the scroll to the 
272         bottom area if we are in fact not using the vertical scroll bar.
273         Fixes #324824.
274
275 2007-09-27  Jonathan Pobst  <monkey@jpobst.com>
276
277         * Control.cs: Comment out a double buffering optimization that doesn't
278         take into account invalidates created in OnPaint, causing the control
279         to never be redrawn.  It would take quite a bit of work to work around
280         this, but I left it commented with an explanation for later possible
281         optimization.
282         [Fixes bug #328681]
283
284 2007-09-27  Jonathan Pobst  <monkey@jpobst.com>
285
286         * Control.cs: Ask parent to perform a layout if control is AutoSize and
287         the text changes.
288         * RadioButton.cs: Implement GetPreferredSizeCore.
289         [Fixes bug #328672]
290
291 2007-09-26  Jonathan Pobst  <monkey@jpobst.com>
292
293         * RichTextBox.cs, TextBoxBase.cs, WindowsFormsSynchronizationContext.cs:
294         corcompare stuffs.
295
296 2007-09-26  Jonathan Pobst  <monkey@jpobst.com>
297
298         * Application.cs: Move the sync context stuff to Run instead of RunLoop
299         so that it doesn't get uninstalled on modal forms.
300         * Control.cs: Install a sync context when a control is created.
301         * WindowsFormsSyncronizationContext.cs: Create a private static control
302         to invoke on.  This is easier than trying to find a created control we
303         can use.
304         [Fixes bug #327608]
305
306 2007-09-25  Jonathan Pobst  <monkey@jpobst.com>
307
308         * Application.cs: Install a WindowsFormsSynchronizationContext in the
309         run loop, and uninstall it when done.
310         * WindowsFormsSynchronizationContext.cs: Implement.
311         [Fixes the common case in bug #327608]
312
313 2007-09-23  Gert Driesen  <drieseng@users.sourceforge.net>
314
315         * DataGridViewCellCollection.cs: Added argument checks for indexers.
316         Use case-insensitive lookup of column name in indexer. Code
317         formatting.
318
319 2007-09-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
320
321         * TreeNode.cs: When collapsing or expanding a node, check whether its
322         change will affect the visible area (we were previously doing a
323         IsVisible check, but that check is not enough since children nodes
324         could be still visible). Fixes part of #325266.
325
326 2007-09-21  Jonathan Pobst  <monkey@jpobst.com>
327
328         * TreeView.cs: Always select the first node when the TreeView gets
329         focus if there is no currently selected node.
330         [Fixes bug #324279]
331
332 2007-09-21  Jonathan Pobst  <monkey@jpobst.com>
333
334         * TreeView.cs: Do not raise BeforeSelect or AfterSelect when the
335         node being selected is null.
336         [Patch from Yves Bastide fixes bug #326858]
337
338 2007-09-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
339
340         * TreeNode.cs: Add an internal ArePreviousNodesExpanded, to know
341         whether all the parent nodes are expanded.
342         * TreeNodeCollection.cs: When adding a new node an calling SetupNode,
343         call RecalculateVisibleOrder if all previous nodes are expanded.
344         Before that we were doing a IsVisible check, but sometimes the node
345         is not in the visible area, but _should_already be ready, because of
346         all previous nodes are expanded. Fixes #325259.
347
348 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
349
350         * ToolStripSplitButton.cs: Call the ButtonClick event if the button
351         portion of the item is clicked.
352
353 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
354
355         * TextControl.cs: Do not tell the system to move the cursor if the
356         textbox isn't focused.  Fixes part of bug #322668.
357
358 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
359
360         * ComboBox.cs: When there are no items, do not show the dropdown if
361         the down arrow is clicked.  Fixes part of bug #322668.
362
363 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
364
365         * ToolStripComboBox.cs: Manually set the size of this control in the
366         constructor, as it doesn't seem to be the same as DefaultSize.
367         Fixes a failing monobuild test.
368
369 2007-09-19  Jonathan Pobst  <monkey@jpobst.com>
370
371         * DateTimePicker.cs: If the user sets MinDate to DateTime.MinValue,
372         change it to DateTimePicker.MinDateTime.  [Fixes bug #326609]
373
374 2007-09-19  Jonathan Pobst  <monkey@jpobst.com>
375
376         * Theme.cs: FileDialogs should be using DesktopDirectory instead of
377         Desktop.  This lets it work for people who have moved their desktops
378         from the default location on windows.  For people who have not, both
379         values are the same, so it shouldn't hurt anything.  [Fixes bug #325270]
380
381 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
382
383         * ToolStripControlHostTest.cs: DefaultSize is based off hosted control,
384         but when the base constructor sets this, the control is null.  Set it
385         again in the constructor.  Fixes a failing monobuild test.
386
387 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
388
389         * ToolStripDropDownItem.cs: Make sure Click and DropDownOpened events
390         get called.
391         * ToolStripSplitButton.cs: Make sure MouseDown and MouseUp events get
392         called.
393
394 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
395
396         * ToolStrip.cs: Don't show tooltips for ToolStripTextBoxes, they
397         will handle it themselves.
398         * ToolStripItem.cs: When deciding what the text of a tooltip should
399         be, use the Text property instead of the text field.
400         * ToolStripTextBox.cs: Handle tooltips.
401         [Fixes bugs #325417 and #325973]
402
403 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
404
405         * ToolStripDropDownButton.cs: Only drop down overflow menu with a
406         left click.  Fixes the easy part of bug #325969.
407
408 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
409
410         * ToolStrip.cs: Set AutoSizeMode back to GrowAndShrink to refix
411         bug #325406, but set a minimum for StatusStrip to 22 to keep
412         bug #325390 fixed.  I think this minimum would have been figured
413         up automatically if the grip was actually a ToolStripItem, but it
414         currently is not.
415
416 2007-09-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
417
418         * ListView.cs: max_label_wrapping is now 30 pixels instead of 38,
419         as this is apparently the actual value used by .Net. Also apply
420         ItemPadding in Details view only, and decrease the general width padding,
421         to have only the needed. This should fix #324340 in Windows too.
422
423 2007-09-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
424
425         * ListViewItem.cs: Don't Invalidate item if parent is inside
426         a BeginUpdate/EndUpdate block. This prevents to have differences
427         between the ListView and items state, as well as avoid some exceptions
428         there.
429         * ListView.cs: Make 'updating' field internal.
430
431 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
432
433         * ToolStripControlHost.cs: Realign control when ControlAlign changes.
434         * ToolStripItem.cs: Use ImageScalingSize when calculating preferred
435         size if appropriate.
436         Fixes reopened bug #325414.
437
438 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
439
440         * ToolStrip.cs: Set AutoSizeMode back to GrowOnly.
441         * ToolStripItem.cs: Invalidate before and after our new autosize when
442         text changes.
443         Fixes reopened bug #325390.
444
445 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
446
447         * ToolStripMenuItem.cs: Make sure we invalidate when clicked so
448         mnemonics can be drawn or undrawn correctly.  Fixes reopened bug 
449         #325044.
450
451 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
452
453         * Control.cs: Do WM_CONTEXTMENU before OnMouseUp.  [Fixes bug #325535]
454
455 2007-09-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
456
457         * ColumnHeader.cs: When drawing column text, use EllipsisCharacter
458         instead of EllipsisWord (by equistango at gmail.com). Fixes part of
459         #82734.
460
461 2007-09-14  Jonathan Pobst  <monkey@jpobst.com>
462
463         * ToolStrip.cs: Make ToolStrip selectable when TabStop = true.  Find an
464         item to select when the ToolStrip is selected.
465         * ToolStripControlHost: Realign the control when the bounds or visibility
466         change.
467         * ToolStripItem.cs: When selected, if it's a control host, focus the control.
468         * ToolStripOverflow.cs: When laying out the drop down, respect the item's
469         preferred height.
470         * ToolStripTextBox.cs: OnPaintInternal should call base.OnPaintInternal, not
471         base.OnPaint.  Was causing text not to be drawn.
472
473 2007-09-14  Jonathan Pobst  <monkey@jpobst.com>
474
475         * SplitterPanel.cs: Ignore attempts to set AutoSizeMode.
476
477 2007-09-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
478
479         * TreeView.cs: When creating the label edit text box,
480         set is initially to Visible = false. This is done to
481         prevent a confusion in the layout which makes it to lose
482         focus when shown the first time. Fixes part of #82592.
483
484 2007-09-13 Andreia Gaita <avidigal@novell.com>
485
486         * WebBrowserBase.cs: add FocusOption enumeration for finer focus control
487
488 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
489
490         * ToolStrip.cs: Take Margin into account when calculating preferred
491         size.  Also, allow preferred size to get smaller than the explicit
492         size.
493         * ToolStripTextBox.cs: Don't change the GetPreferredSize implementation.
494         First step towards fixing bug #82747.
495
496 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
497
498         * TreeView.cs: Applied patch from latency@gmx.de to not paint the
499         full row select background over the plus/minus glyph.  Also, turn
500         off the focus rectangle for full row select since MS doesn't seem
501         to ever paint it.  [Fixes bug #81839]
502
503 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
504
505         * ToolStrip.cs: Don't FocusInternal if there is no selected item.
506         This was causing keyboard opened dropdowns to lose focus.
507         [Fixes bug #82803]
508
509 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
510
511         * Control.cs: If Rectangle.Empty is passed to Invalidate, use
512         ClientRectangle instead.  [Fixes bug #82838]
513
514 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
515
516         * SplitContainer.cs: We can't reset Visible on every layout because
517         someone may have set Visible = false explicitly on a SplitterPanel.
518         Make sure when we switch orientation the SplitterDistance does not
519         change.  Fixes two failing tests.
520
521 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
522
523         * TreeView.cs: Use MeasureTextInternal instead of MeasureText in
524         TextRenderer, since the latter is only available in 2.0.
525
526 2007-09-13  Ivan N. Zlatev <contact@i-nz.net>
527
528         * Cursor.cs: Fix Cursor.Current to apply Cursor.Default.
529         * SplitContainer.cs: Implement FixedPanel layouting.
530
531 2007-09-12  Andreia Gaita  <avidigal@novell.com>
532
533         * WebBrowserBase.cs: setup shutdown routine
534
535 2007-09-12  Andreia Gaita  <avidigal@novell.com>
536
537         * Application.cs: Let keyboard events that are targetted 
538                 to non-mwf windows hosted inside mwf (as in, webbrowser),
539                 propagate properly. Fixes keyboard handling on the webbrowser.
540
541 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
542
543         * ListView.cs: When handling MouseUp event and we are 
544         highligting a node with the mouse right button, don't trigger
545         Before/AfterSelecting event, since we are not actually selecting
546         the node.
547
548 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
549
550         * TreeView.cs: When editing a node, modify the edit text box
551         depending on the text length (as you are typing), like MS does.
552
553 2007-09-12  Jonathan Pobst  <monkey@jpobst.com>
554
555         * ToolStrip.cs: Fixup preferred size calculations for vertical toolbars. 
556         Override GetPreferredSizeCore to perform calculations.  Remove custom
557         autosize logic.  [Fixes bug #82739]
558
559 2007-09-12  Jonathan Pobst  <monkey@jpobst.com>
560
561         * TextBoxBase.cs: Modified should default to false.
562
563 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
564
565         * Control.cs: Update the anchoring distances even when layout is supspended.
566         Patch provided by George fixes bug #82805.
567
568 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
569
570         * Control.cs: Provide a setter for ExplicitHeight.
571         * TextBoxBase.cs: Now that we have the implementation for explicit heights,
572         remove the hacks in here for requested_height.
573         [Fixes bug #82749]
574
575 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
576
577         * ScrollBar.cs: Fix an issue reported on the lists where setting a scrollbar's
578         Maximum to lower that its current Value caused an ArgumentException by setting
579         the Value to the new Maximum.
580
581 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
582
583         * ThemeWin32Classic.cs: Math is hard!  Fix some math so that the TrackBar
584         handle moves to the closest tick when it is being dragged.
585         [Fixes bug #82751]
586
587 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
588
589         * ToolStripManager.cs: When we have added MDI buttons onto a MenuStrip, we
590         can't let them count as real items when calculating where to merge in the
591         user's items.  [Fixed bug #82786]
592
593 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
594
595         * ToolStripMenuItem.cs: Add a parent type check so we don't crash on people
596         who want to add a menu item directly onto a toolstrip.
597         [Fixes bug #82775, part II]
598
599 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
600
601         * StatusStrip.cs: Synchronize SetDisplayedItems with the ToolStrip version.
602         * ToolStrip.cs: If a ToolStripItem set to not visible is added to a ToolStrip,
603         don't set it to available.
604         * ToolStripItem.cs: When Visible is changed, tell the owner to perform a layout.
605         [Fixes bug #82727, part II]
606
607 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
608
609         * StatusStrip.cs: Change item placement to None if not visible.
610         * ToolStripItem.cs: Invalidate when InternalVisible changes.
611         These should have been committed to fix 82723, but I missed them.
612
613 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
614
615         * ToolStrip.cs: Make sure ItemClicked is raised before the ToolStripItem's
616         Click, and that it is only called once.
617         * ToolStripMenuItem.cs: Call OnClick even when there are dropdown items.
618         * ToolStripDropDownItem.cs: Override HandleItemClick so dropdowns stay
619         dropped down.
620         [Fixes bug #82775]
621
622 2007-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
623
624         * ColumnHeaderSample.cs: Use 5 pixels as extra height instead of 8
625         to match .Net.
626         * ThemeWin32Classic.cs: For the columns text, use 5 pixels as left padding
627         instead of 8, just like above. Partially fixes #82734.
628
629 2007-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
630
631         Patch by Ernesto Carrea <equistango at gmail.com>. Partially 
632         fixes #82734.
633
634         * ListView.cs: Remove extra space between rows in Details view (match
635         .Net). 
636         * ThemeWin32Classic.cs: Header text should use ListView.Font, not
637         the DefaultFont.
638
639 2007-09-08  Gert Driesen  <drieseng@users.sourceforge.net>
640
641         * Application.cs: Modified ProductVersion to return value of
642         AssemblyInformationVersion if available, and fallback to assembly
643         version. Fixes bug #82746. Code formatting.
644         * BindingSource.cs: Remove NIE from Dispose, and mark it MonoTODO
645         instead.
646
647 2007-09-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
648
649         * Control.cs: When updating ZOrder for a child control,
650         take into account the implicit ones (we need it in our controls
651         using them). Fixes #82642.
652
653 2007-09-07  Jonathan Pobst  <monkey@jpobst.com>
654
655         * ToolStripItem.cs: Add support for animated images.
656         [Fixes bug #82726]
657
658 2007-09-07  Jonathan Pobst  <monkey@jpobst.com>
659
660         * ToolStrip.cs: Make sure we aren't drawing anything that isn't 
661         visible.  [Fixes bug #82727]
662
663 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
664
665         * ToolStripItem.cs: If AutoSize changes the size of our item, invalidate
666         so we repaint using the new size.  [Fixes bug #82723]
667
668 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
669
670         * TreeView.cs: If ShowLines is true, we should ignore the FullRowSelect
671         option.  [Fixes bug #81779]
672
673 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
674
675         * TreeView.cs: Override HandleClick because the StandardClick style is
676         set to false.  According to MSDN (and testing), the click events should
677         only be raised when the click occurs on a TreeNode.  [Fixes bug #81739]
678
679 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
680
681         * ToolStripTextBox.cs: Invalidate our textbox when it loses focus, so
682         the border will disappear.  Fixes reopened #82653.
683
684 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
685
686         * Control.cs: If the control is autosize, and its preferred size changes
687         when it lays out its children, tell its parent so it can be re-layed out.
688         Fixing some of the fallout from r85433.
689
690 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
691
692         * ThemeWin32Classic.cs: Fix a NRE caused by r85427 because RadioButton
693         and CheckBox share some code.
694
695 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
696
697         * TrackBar.cs: Only call OnScroll if we actually changed the Value of
698         the TrackBar, not every mouse move.  [Fixed bug #82718]
699
700 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
701
702         * ThemeWin32Classic.cs: Allow a CheckBox to be rendered like a Button
703         under 2.0 rendering.  [Fixes bug #82657]
704
705 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
706
707         * TreeView.cs: If we found a TreeNode to display a context menu, but
708         it doesn't have one to show, let the TreeView display its menu
709         instead.  [Fixes bug #82680]
710
711 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
712
713         * ToolStripTextBox.cs: TextBox no longer call OnPaint, we need to use
714         OnPaintInternal instead.  Give the internal TextBox a Border property
715         so it can draw itself more correctly.  [Fixes bug #82653]
716
717 2007-09-06  Zoltan Varga  <vargaz@gmail.com>
718
719         * HtmlHistory.cs HtmlWindow.cs HtmlWindowCollection.cs ListBindingHelper.cs WindowsFormsSection.cs WindowsFormsSynchronizationContext.cs: Stubs for missing 2.0 classes.
720
721 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
722
723         * ComboBox.cs: Adjust combobox button state to reflect current state when
724         back to enabled = true. Fixes first issue of #82654.
725
726 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
727
728         * Control.cs: Fix last patch regression, prevent forms to update zorder when
729         setting visible property.
730
731 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
732
733         * Control.cs: Update zorder after control creation in SetVisibleCore, it 
734         fix zorder for controls initially created as non visible. Fixes #82667.
735
736 2007-09-04  Everaldo Canuto  <everaldo@simios.org>
737
738         * ThemeWin32Classic.cs: Adjust checkbox light color to ControlLightLight to
739         mimic win32 look. Fixes #82656.
740
741 2007-09-01  Zoltan Varga  <vargaz@gmail.com>
742
743         * FileDialogCustomPlace.cs FileDialogCustomPlacesCollection.cs: 
744         Stubs for new net 3.5 classes.
745
746 2007-08-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
747
748         * ListViewItem.cs: In ListViewItemCollection operations calculate
749         Layout for owner as well as invalidate it. Fixes part of #82642.
750
751 2007-08-31  Jonathan Pobst  <monkey@jpobst.com>
752
753         * ToolStripItem.cs: Take Parent/Owner's Enabled state in to account
754         when returning Enabled.  [Fixes bug #82651]
755
756 2007-08-30  Everaldo Canuto  <everaldo@simios.org>
757
758         * ToolBar.cs: Fix button size for non flat toolbars. Fixes #82368.
759
760 2007-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
761
762         * ListView.cs: Put item padding info in a single place
763         (Theme.ListViewItemPaddingWidth) to have working AutoResize on
764         columns again.
765         * ThemeWin32Classic.cs:
766         * Theme.cs: Likewise.
767
768 2007-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
769
770         * ListView.cs: When a ListViewSubItem instance is invalidated,
771         invoke Invalidate on parent ListViewItem, not parent ListView.
772         Fixes #81570.
773
774 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
775
776         * ListView.cs, ListViewItem.cs: corcompare stuffs.
777
778 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
779
780         * BindingMemberInfo.cs: Implement == and != operators.
781
782 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
783
784         * HtmlElementEventArgs.cs: Implement properties.
785
786 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
787
788         * HtmlElementErrorEventArgs.cs, HtmlElementErrorEventHandler.cs: Added.
789
790 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
791
792         * TabControl.cs: I was looking into the MonoTODO on TabPageCollection.
793         Add (string,string,string) to implement the imagekey.  It turns out, we
794         use the requested imagekey whereas .Net does not.  So I broke ours to match
795         theirs.  :(
796
797 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
798
799         * Form.cs, UserControl.cs: Override ValidateChildren, AutoValidate.
800
801 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
802
803         * ContainerControl.cs: Implement ValidateChildren and new Validate overload.
804
805 2007-08-29  Gert Driesen  <drieseng@users.sourceforge.net>
806
807         * FolderBrowserDialog.cs: Set Tag of newly created node, and keep it
808         up-to-date. Fixes bug #82618.
809
810 2007-08-29  Everaldo Canuto  <everaldo@simios.org>
811
812         * TextBoxBase.cs: Call CalculateDocument after changes Lines property to
813         reflect document changes. Fixes #82367.
814
815 2007-08-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
816
817         * ListView.cs: Add/fix some override differences between 1.1 and 2.0,
818         as well as add new ones. This should make work the BackgroundImage
819         property for ListView again.
820
821 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
822
823         * DataGrid.cs, DataGridViewButtonColumn.cs, DataGridViewCheckBoxColumn.cs,
824         DataGridViewComboBoxColumn.cs, DataGridViewImageColumn.cs, DataGridViewLinkColumn.cs,
825         DataGridViewTextBoxColumn.cs, ToolTip.cs: corcompare stuffs.
826
827 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
828
829         * Control.cs, XPlatUI.cs, XPlatUIDriver.cs, XPlatUIWin32.cs: Implement
830         IsKeyLocked.
831
832 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
833
834         * Cursor.cs: Add HotSpot, hook into XPlatUI.GetCursorInfo.
835         * XPlatUIWin32.cs: Implement hotspot lookup in GetCursorInfo.
836
837 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
838
839         * RadioButton.cs: Use 2.0 rendering.  Use base implementation of TextAlign.
840         * Theme.cs, ThemeWin32Classic.cs: Implement 2.0 rendering for RadioButton.
841
842 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
843
844         * CursorConverter.cs: Implement conversion to InstanceDescriptor.
845
846 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
847
848         * GridEntry.cs: Implement GetService.
849
850 2007-08-27  Jonathan Pobst  <monkey@jpobst.com>
851
852         * LabelEditTextBox.cs, TreeView.cs: After hiding the textbox used
853         for label editting, make sure we focus back on the TreeView.
854         [Fixes bug #82590]
855
856 2007-08-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
857
858         * ListView.cs: Add some 2.0 overrides.
859
860 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
861
862         * Form.cs: Uses opacity var instead of Opacity property in CreateHandle
863         because getter dont returns right value before handle creation. Thanks 
864         to George. Fixes #82569.  
865
866 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
867
868         * Theme.cs: Revert last patch, it causes error under win32. 
869
870 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
871
872         * Theme.cs: Uses Environment.SpecialFolder.DesktopDirectory instead of 
873         Environment.SpecialFolder.Desktop in Places method, Desktop returns the 
874         logical Desktop rather than the physical file system location. Fixes #82603. 
875
876 2007-08-26  Everaldo Canuto  <ecanuto@novell.com>
877
878         * MessageBox.cs: Add clipboard copy (ctrl+c) to messagebox. Thanks Andy Hume
879         for the patch. Fixes #82568.
880
881 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
882
883         * ListView.cs: Add a pair of missing 2.0 ListViewItemCollection.Insert
884         methods.
885
886 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
887
888         * ListViewInsertionMark.cs: New stubbed class.
889
890 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
891
892         * FolderBrowserDialog.cs: When adding folder, immediately create the
893         directory with temporary name and rename the directory when editing
894         finishes. This matches MS. Ensure the node for the new folder is 
895         selected and LabelEdit is disabled, when editing is either finished
896         or cancelled.
897
898 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
899
900         * TreeView.cs: When editing label of node, ensure node is visible.
901
902 2007-08-25  Ivan N. Zlatev  <contact@i-nz.net>
903
904         * PropertyGridView.cs: Set the value only if it has changed.
905
906 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
907
908         * ListView.cs: Some more code refactoring to add support sorting
909         with groups (now for Details view). Remove unused code also.
910
911 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
912
913         * NodeLabelEditEventArgs.cs: EndEdit immediately when CancelEdit is called.
914         Not a big fan of reacting immediately to a field in an EventArg, but that's
915         the way it's done.  (This is part of the previous commit that got left out.)
916
917 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
918
919         * FolderBrowserDialog.cs: Removed need for separate description field.
920         Replaced "" with string.Empty. Fixed tabindex. Ensure OK button
921         has focus when dialog box is displayed again, regardless of what
922         button was pressed the previous time. Set RootFolder and SelectedPath
923         each time dialog box is displayed. This ensures the treeview is
924         refreshed, and fixes bug #82579. Do no hide selected node in TreeView
925         when it does not have focus. Added support for more special folders.
926
927 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
928
929         * TreeView.cs: Create a CancelEdit method.  Clone the edit_args in EndEdit
930         before calling AfterLabelEdit.  If the user calls BeginEdit in that event,
931         it resets the edit_args.
932         * TreeNode.cs: Call CancelEdit if the user passes cancel = true to EndEdit.
933         [Fixes bug #82577]
934
935 2007-08-24  Gert Driesen  <drieseng@users.sourceforge.net>
936
937         * FolderBrowserDialog.cs: Modifies form caption and text of new folder
938         button to match MS. Provide more meaningful exception message for
939         invalid RootFolder value. Use zero-length string when SelectedPath
940         is set to null. Allow non-rooted paths in SelectedPath, but ignore
941         them in FolderBrowserTreeView. Allow folders to be created in
942         RootFolder. Fixes bug #82576.
943
944 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
945
946         * ListView.cs: Correctly compute the layout_ht (height) when using groups,
947         since we need to take into account the group headers and the margin
948         between them.
949         * ListViewGroup.cs: Add a rows field to store the number of rows per
950         group.
951
952 2007-08-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
953
954         * DateTimePicker.cs: The MS' MTB has a really stupid year formatting.
955           Anyways, let's just follow the lead.
956
957 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
958
959         * CheckBox.cs: Set the AutoSizeMode to GrowAndShrink.
960         * Form.cs, GroupBox.cs: Don't skip Right or Bottom anchored 
961         controls in GetPreferredSizeCore.
962         * ThemeWin32Classic.cs: Tweak text drawing of CheckBoxes.
963         [Fixes bug #82488]
964
965 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
966
967         * PrintDialog.cs: Need to instantiate the form variable here too.
968
969 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
970
971         * ListView.cs: Do some reorganization to support sorting in groups,
972         by doing the layout sequentially in ListView.Items. Also add support
973         for the Default Group, which should be available for items with no
974         group assigned.
975         * ListViewGroup.cs: Add support for DefaultGroup. Include new members
976         for storing layout info also.
977         * ListViewGroupCollection.cs: Add a DefaultGroup as part of the
978         collection, as well as providing internal members to do a traversal
979         including the default group (needed when doing layout/drawing).
980         * ThemeWin32Classic.cs: When drawing group headers use internal
981         ListViewGroupCollection members to take into account the default
982         group.
983
984 2007-08-23  George Giolfan  <georgegiolfan@yahoo.com>
985
986         * FlowLayoutPanel.cs: Add GetPreferredSizeCore.  [Fixes bug #82537]
987
988 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
989
990         * TreeView.cs: IsInputKey: don't ask for any keys if the handle hasn't
991         been created.  If handle is created, we want arror keys.  If we are editing
992         a node, we want things like enter, esc, home, end, page up, page down.
993         Allows Esc to work for FolderBrowserDialog.
994
995 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
996
997         * ColorDialog.cs, FontDialog.cs: Set the form's CancelButton so that
998         they close when ESC is pressed.  Thanks Andy!
999
1000 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
1001
1002         * CommonDialog.cs: Do not instantiate form, leave that for derived classes.
1003         This way we can tell if this is a CommonDialog provided with mono, or one
1004         that is being implemented outside by a developer.  If it is an external one,
1005         the developer is responsible for showing their own form.  We were showing
1006         our blank form after the developer showed his.
1007         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs, FontDialog.cs,
1008         PageSetupDialog.cs: Instantiate form variable in our constructor.
1009         [Fixes bug #82531]
1010
1011 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
1012
1013         * ListBox.cs, ListView.cs, TreeView.cs: Override IsInputCharInternal
1014         and always return true.  [Fixes bug #81616]
1015
1016 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
1017
1018         * TextBoxBase.cs: Allow 2.0 AutoSize to change the height of the
1019         TextBox.  [Fixes bug #82549]
1020
1021 2007-08-23  Gert Driesen  <drieseng@users.sourceforge.net>
1022
1023         * FileDialog.cs: When Save/Open is clicked and no filename is selected
1024         or entered then do not close the dialog. Fixes bug #82539. Removed
1025         CWLs.
1026
1027 2007-08-22  Everaldo Canuto  <ecanuto@novell.com>
1028
1029         * FileDialog.cs: Create UpdateRecentFiles and move the recent files refresh
1030         code to this method. It is calling every time filter changes. This method
1031         will help to fix the bug #80887.
1032
1033 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
1034
1035         * CheckBox.cs: Implement AutoSize calculation.
1036
1037 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
1038
1039         * CheckBox.cs: Use new 2.0 rendering for 2.0.
1040         * Theme.cs: Method declarations for 2.0 rendering path.
1041         * ThemeWin32Classic.cs: 2.0 rendering implementation for CheckBox.
1042
1043 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1044
1045         * ListViewGroupCollection.cs: Fix a typo of the previous patch.
1046
1047 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1048
1049         * ListViewGroupCollection.cs: Implement AddRange the right way, to
1050         only call Redraw on the parent one time.
1051
1052 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1053
1054         * DataGridViewRowHeaderCell.cs, DataGridViewColumnHeaderCell.cs: Implemented
1055           GetClipboardContent.
1056         * DataGridViewCell.cs: Implemented GetClipboardContent,
1057           GetEditedFormattedValue, GetFormattedValue.
1058         * DataGridView.cs: Implemented GetClipboardContent, TopLeftHeaderCell.
1059
1060 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
1061
1062         * TableLayoutStyleCollection.cs: corcompare fix.
1063
1064 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1065
1066         * DataObject.cs: Implemented retrieval of convertible / not convertible
1067           objects.
1068
1069 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
1070
1071         * ToolStripItem.cs: When changing the item's text, invalidate before we resize
1072         ourselves.  This ensures the entire old bounds are repainted, in case our new
1073         size is smaller.  [Fixes bug #82518]
1074
1075 2007-08-20  Everaldo Canuto  <ecanuto@novell.com>
1076
1077         * XplatUIX11.cs: Apply patch from #81588, it makes use of PointerMotionHintMask
1078         flag to make fast handle of mouse events, without this the mouse move is
1079         handled in some manner, whether it is a mouse move or not. Fixes #81588.
1080
1081 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1082
1083         * ListView.cs: When doing layout calculations don't use a ref
1084         param to keep the current item; instead use its Index value (this 
1085         is specially important when doing the layout with Groups
1086         and Items being sparse). Also don't take into account items added to
1087         the Group but not yet added to the main ListView.Items collection.
1088
1089 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1090
1091         * ListViewGroupCollection.cs: Forgot to mimic an issue
1092         in the indexer (don't assign the ListView owner for new values).
1093
1094 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1095
1096         * ListViewGroupCollection.cs: Make the string indexer use
1097         the int based indexer to re-use code, instead of duplicate the code.
1098         Also Redraw as needed and take into account null values.
1099
1100 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
1101
1102         * StatusStrip.cs: Make sure the item's parent gets set in SetDisplayedItems.
1103         [Fixes bug #82481]
1104
1105 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
1106
1107         * ToolStrip.cs: Add some logic to un-focus controls in ToolStripControlHosts
1108         when other buttons are clicked or navigated to.
1109
1110 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1111
1112         * XplatUIX11.cs: Treat toolwindows as if they had no window manager, since
1113           it's XplatUIX11 that attaches them.
1114
1115 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1116
1117         * DataGridView.cs: If a column has been added, recreate the editing row.
1118           Fixes #82226.
1119
1120 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1121
1122         * TextControl.cs: Use Math.Max instead of Math.Min when deciding the length
1123           of the tag to draw. Makes disappearing text show up again.
1124
1125 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1126
1127         * StatusBar.cs: Take into account any icons when a panel has AutoSize =
1128           Contents. Fixes #82487.
1129
1130 2007-08-19  Andreia Gaita  <avidigal@novell.com>
1131
1132         * Added HtmlElement.cs, HtmlElementCollection.cs, 
1133           HtmlElementEventArgs.cs, HtmlElementEventHandler.cs
1134           
1135 2007-08-19  Andreia Gaita  <avidigal@novell.com>
1136
1137         * BindingSource.cs: Implement this, dispose and getenumerator.
1138         * DataGridViewRowCollection.cs: Move the InvalidOperationException
1139         out of AddInternal, throw it only on public Add calls. The 
1140         UsingWebBrowser sample was blowing up with this when setting the
1141         DataSource after adding DataBindings, so it's likely that .net
1142         only throws this exception when Add is called directly. 
1143         
1144         * ToolStripControlHost.cs: Return the hosted control's text
1145         property, and not the ToolStripItem one (it would always return
1146         the initial value).
1147         
1148         * HtmlDocument.cs: Implement GetElementById and All
1149         * WebBrowser.cs: Remove exception on set_DocumentStream.        
1150
1151 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1152
1153         * Form.cs: Fix the max and min value for opacity (0~1).
1154
1155 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1156
1157         [Fixes #80118]
1158         * DataGridTableStyle.cs: Default header font is now null, on getter it 
1159         returns datagrid font when is null. On setter permits null.
1160
1161         * DataGrid.cs:
1162         - When ResetHeaderFont set header font to null.
1163         - On EndInit set grid_style.DataGrid.
1164
1165 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1166
1167         * TabControl.cs: Fix regression in default padding x.
1168
1169 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1170
1171         * TabControl.cs: Fix tab page text area removing padding. Fixes #82471.
1172
1173 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1174
1175         * TabControl.cs: Fix first tab drawing, when selected it must have x = 0
1176         not 2. Fixes #82229.
1177
1178 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1179
1180         * TabControl.cs: Fix tab size when image height is less than text height.
1181         Partially fixes #81837.
1182
1183 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1184
1185         * Form.cs: Add WS_EX_CONTROLPARENT to forms to make it selectable using 
1186         "alt + tab". It works only for Win32, for X11 theres no way to remove window
1187         from taskbar and keep it on "alt_tab". Fixes #81722.
1188
1189 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1190
1191         * XplatUIX11.cs: Apply patch from Jurek Bartuszek to fix DrawReversibleFrame
1192         and DrawReversibleLine, also apply same behavior to FillReversibleRectangle. 
1193         Fixes #80877 and #79418.
1194
1195 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1196
1197         * MenuAPI.cs: Fix popup menu position when the size is larger than distance 
1198         between position and one of the screen borders. Fixes #82349.
1199
1200 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1201
1202         * MessageBox.cs: When there is no form that invoked the MessageBox, shows
1203         the MessageBox in the taskbar. Fixes #82457.
1204
1205 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1206
1207         * MessageBox.cs: Fix form size when icon is set and text height is bigger
1208         than icon. Fixes #82468.
1209
1210 2007-08-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1211
1212         * ThemeWin32Classic.cs: A FixedToolWindow has border size 3.
1213         * InternalWindowManager.cs: Change HandleCalcSize to return a boolean value
1214           if handled or not. Implement WM_NCCALCSIZE for WParam == 0 as well.
1215           Refactored HandleNCCalcSize somewhat to avoid code duplication.
1216         * Form.cs: Add is_clientsize_set, set in set_ClientSize, used by
1217           FormBorderStyle to decide if we're calculating a new size from the
1218           client size or not. CreateParams: Don't fake tool windows, only the X11
1219           backend manages toolwindows manually.
1220
1221 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1222
1223         * Form.cs: Only reset is_visible if !IsDisposed to prevent an
1224         ObjectDisposedException.
1225
1226 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1227
1228         * Form.cs: Reset is_visible back to true after OnLoad.  Setting this
1229         in OnLoad should not have any effect.  [Fixes bug #82470]
1230
1231 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1232
1233         * ToolTip.cs: Add a hack to ToolTipWindow so it will still size and
1234         paint for controls that create their own ToolTipWindow instead of
1235         going through ToolTip.
1236
1237 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1238
1239         * ToolTip.cs: Make Hide internal instead of public to match MS API.
1240
1241 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1242
1243         * ListViewGroupCollection.cs: Use generic List instead of an
1244         ArrayList, since this collection is 2.0 only.
1245
1246 2007-08-17  Jeffrey Stedfast  <fejj@novell.com>
1247
1248         * ToolTip.cs (Hide): Made public to make the build work (should
1249         this not be public?).
1250
1251 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1252
1253         * ToolBar.cs, ToolStrip.cs, TreeView.cs: Use a ToolTip instead of a
1254         ToolTipWindow.
1255         * ToolTip.cs: Add an internal Visible property to facilitate transition.
1256
1257 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1258
1259         * DrawToolTipEventArgs.cs, DrawToolTipEventHandler.cs, PopupEventArgs.cs,
1260         PopupEventHandler.cs: Make these internal for 1.1.
1261         * ThemeClearlooks.cs, ThemeWin32Classic.cs: Use TextRenderer, and modify to not
1262         use ToolTipWindow internals.
1263         * ToolTip.cs: Add 2.0 modal Show methods.  Had to move a lot of stuff around to
1264         support this.  A lot of stuff in the ToolTipWindow got moved to the ToolTip.
1265
1266 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1267
1268         * X11Dnd.cs: Add a null check.
1269
1270 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1271
1272         * X11Dnd.cs: MwfWindow: Try to load the control directly from the handle if
1273           nothing else succeeds. Fixes #82453.
1274
1275 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1276
1277         * XplatUIWin32.cs: PaintEventStart: validate the entire source client
1278           rectangle if we're painting to another window than the one the paint
1279           message was generated on. Simplify the code somewhat, which makes
1280           PaintEventEnd also simpler.
1281
1282 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1283
1284         * Control.cs: When changing parent of a form, let the form decide whether
1285           XplatUI.SetParent should be called or not.
1286         * Form.cs: ChangingParent: only call XplatUI.SetParent if we're not
1287           recreating the handle. If the new parent's handle isn't created, don't
1288           recreate our handle, just destroy it. CreateParams: Check if the
1289           parent's handle is created before fetching it.
1290
1291 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1292
1293         * Control.cs, Form.cs, InternalWindowManager.cs, MainMenu.cs, MdiClient.cs:
1294           Update calls to PaintEventStart/End to take a Message argument.
1295         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Update PaintEventStart/End to
1296           take a Message argument.
1297         * XplatUIWin32.cs, XplatUIX11.cs: Update PaintEventStart/End to take a
1298           Message argument, and handle the case where we don't paint to the window
1299           for which the paint message was generated.
1300
1301 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1302
1303         * XplatUIWin32.cs: Don't call Win32GetLastError directly, use
1304           Marshal.GetLastWin32Error. Plug nasty memory leak in
1305           PaintEventStart/End, we were creating a DC we weren't releasing.
1306
1307 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1308
1309         * ListView.cs: Add Groups support in Details view. Also have a small
1310         method to do the layout of the group header. Don't use a separate
1311         method to do the groups calculation in Icons view, since our methods
1312         are now a little simpler.
1313         * ListViewGroup.cs: Use the more accurate `HeaderBounds' name than
1314         `Bounds'.
1315         * ThemeWin32Classic.cs: Likewise.
1316
1317 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
1318
1319         * Application.cs: Add FilterMessage method and rework our message loop
1320         logic to use it.
1321
1322 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
1323
1324         * Application.cs: Add some methods and stub a few methods that are
1325         pretty much never used.
1326
1327 2007-08-15  Jonathan Pobst  <monkey@jpobst.com>
1328
1329         * TreeNode.cs: Add some serialization methods.
1330
1331 2007-08-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1332
1333         * ListView.cs: In ListViewItemCollection have a 
1334         'is_main_collection' field to not modify ListViewItem.ListView
1335         when using it as ListViewGroup.Items (and not ListView.Items)
1336         and also don't modify selection state (.Net behaviour). 
1337         Instead, set group for items contained in a ListViewGroup.Items collection.
1338         * ListViewItem.cs: Simplify some code in Group setter.
1339         * ListViewGroup.cs: use the new .ctor to pass the current instance
1340         to the ItemsCollection.
1341         * ListViewGroup.cs: Set the ListView property for ListViewGroup
1342         instances when adding/removing. Also make Remove use RemoveAt, which
1343         should perform better.
1344
1345 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
1346
1347         * Message.cs, TabControl.cs, TextBox.cs, TextBoxBase.cs: Hide some 2.0 API
1348         that crept into the 1.1 profile.
1349
1350 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
1351
1352         * ToolBarButton.cs: Implement ImageKey.
1353
1354 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
1355
1356         * ToolBar.cs: Implement ScaleControl/ScaleCore.
1357
1358 2007-08-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1359
1360         * PictureBox.cs: OnAnimateImage/UpdateAnimateImage: Check if handle is still
1361           created, it might have gotten destroyed since we last checked. Fixes
1362           #82405.
1363
1364 2007-08-11  Jonathan Pobst  <monkey@jpobst.com>
1365
1366         * ToolTip.cs: Remove mouse in control check from mouseleave handler so
1367         tooltip will hide when mouse is moved off the control.
1368         [Fixes bug #82407]
1369
1370 2007-08-11 Andreia Gaita <avidigal@novell.com>
1371
1372         * WebBrowserBase.cs, WebBrowser.cs: add implementation
1373         using Mono.Mozilla for loading and navigating webcontrol
1374         with xulrunner.
1375         The initial implementation was done on 
1376         /trunk/mozembed/tests/browser , and copied here.
1377
1378 2007-08-11  Gert Driesen  <drieseng@users.sourceforge.net>
1379
1380         * ThemeWin32Classic.cs: On 2.0 profile, use ForeColor and BackColor of
1381         ToolTipWindow for drawing the tooltip. Fixes bug #82408.
1382
1383 2007-08-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1384
1385         * DataGridView.cs: Add support for an editing row. Fixes #82226.
1386           RowTemplateFull: throw an exception if a column doesn't have a template.
1387         * DataGridViewRowCollection.cs: AddInternal: if there are any editing rows,
1388           add the row just before it.
1389         * DataGridViewTextBoxCell.cs: Don't paint cells which are in edit mode as
1390           selected.
1391         * DataGridViewSelectedRowCollection.cs: Don't return the editing row. Add a
1392           DataGridView field to be able to reach the grid's editing row.
1393
1394 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
1395
1396         * ToolTip.cs: If the control's handle hasn't been created when it has a
1397         tooltip set on it, don't check to see if we need to show the tooltip.  This
1398         check was causing the control's handle to be created.
1399         [Fixes bug #82399]
1400
1401 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
1402
1403         * TextBoxBase.cs: Fix SelectionLength when no text selected to match MS:
1404                                         1.1             2.0
1405         Handle Not Created      -1              0
1406         Handle Created          0               0
1407         [Fixes bug #82371]
1408
1409 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
1410
1411         * ToolTip.cs: Hide the tooltip if the control is clicked to match MS behavior.
1412         [Fixes bug #82348]
1413
1414 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
1415
1416         * DrawToolTipEventArgs.cs: Don't dispose a brush we got from the respool.
1417         * ToolTip.cs: Implement some properties and owner draw.
1418
1419 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1420
1421         * DataGridView.cs: OnPaint: don't set scrollbar visibility to false then
1422           show them again, since setting visibility causes a paint, causing an
1423           endless loop (instead use a temporary and set it all when it's known if
1424           they should be shown or not). Fixes #79265.
1425
1426 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1427
1428         * DataGridView.cs: Only do a full column/row selection if a header was
1429           clicked and we're in Column/RowHeader selection mode. If shift and ctrl
1430           isn't pressed, deselect everything before selecting something.
1431
1432 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1433
1434         * DataGridView.cs: Fix SelectedRows and SelectedColumns to match MS
1435           behaviour according to bug #81075 - they are returned in the order they
1436           are selected. Fix HitTest to check if the point is within any of the
1437           headers. Allow for row/column selection when in ColumnHeader or
1438           RowHeader selection mode. Add SetSelected[Column|Row]CoreInternal for
1439           the row and column to call when their selected state changes, and
1440           updated selected_[rows|columns] whenever SetSelected* is called.
1441         * DataGridViewBand.cs: Initialize isRow correctly. Call
1442           SetSelected[Row|Column]CoreInternal when the selected state changes, and
1443           add a SelectedInternal to avoid StackOverflows.
1444         * DataGridViewColumn.cs, DataGridViewRow.cs: If DGV is ReadOnly, we're also
1445           ReadOnly no matter what.
1446         * DataGridViewSelectedColumnCollection.cs,
1447           DataGridViewSelectedRowCollection.cs: Add an InternalAddRange that adds
1448           the items in reverse order (just as MS does...)
1449
1450 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
1451
1452         * Application.cs: Only release menustrips if Alt (MenuKey) is pressed by
1453         itself, not part of a mnemonic.  [Fixes bug #82378]
1454
1455 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1456
1457         * DataGridView.cs: BeginEdit: don't allow editing of readonly cells.
1458         * DataGridViewCell.cs: Implement ReadOnly better: the cell is ReadOnly if
1459           the DGV, the column, the row, or the cell itself is readonly.
1460
1461 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
1462
1463         * ThemeNice.cs: Use XplatUI.RunningOnUnix instead of checking
1464         OSVersion.Platform.
1465         * FileDialog.cs: Same.
1466         * TextRendered.cs: Same.
1467         * FolderBrowserDialog.cs: Same.
1468         * TextBoxBase.cs: Same.
1469         * Application.cs: Same.
1470         * Cursors.cs: Same.
1471         * ThemeClearLooks.cs: Same.
1472
1473 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
1474
1475         * XplatUI.cs: Added RunningOnUnix property to be used by controls
1476         instead of duplicating these checks everywhere.
1477         * FileDialog.cs: Use case-insensitive comparison for populating the
1478         DirComboBox when not running on unix. Fixes bug #82385.
1479         * OpenFileDialog.cs: to match MS, change label of DirComboBox to 
1480         "Look in".
1481
1482 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1483
1484         * DataGridView.cs: SelectedRows: we need to check if selectionMode is
1485           FullRowSelect (not FullColumnSelect). Fixes #81075. Implemented
1486           BeginEdit, EndEdit, SetSelected<Cell|Row|Column>Core. Implemented row,
1487           cell and column selection with ctrl and shift pressed. Call the correct
1488           BeginEdit/EndEdit whenever we start/end editing. Move painting code to
1489           the corresponding virtual method (PaintBackground to paint background,
1490           etc).
1491         * DataGridViewCell.cs: Implement Selected correctly, we're selected if
1492           either the column, row or the cell itself is selected.
1493         * DataGridViewRowCollection.cs: Use DGV.OnRowsAddedInternal instead of
1494           OnRowsAdded.
1495         * DataGridViewRow.cs: Moved some of the painting code from DataGridView
1496           here. When the row is selected, don't select all cells. Each cell now
1497           queries the row to see if the row is selected.
1498
1499 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1500
1501         * DataGridViewColumn.cs: Throw if the SortMode conflicts with DataGridView's
1502           SelectionMode.
1503
1504 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1505
1506         * ListView.cs: In ListViewItemsCollection check that owner is
1507         not null before trying to access it (this happens quite often
1508         using Groups). Also don't duplicate calls by calling CollectionChanged
1509         method.
1510
1511 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
1512
1513         * ToolStrip.cs: Record if we were activated by mouse or keyboard.  Redraw
1514         when we are dismissed to clear keyboard mnemonics.
1515         * MenuStrip.cs, ToolStripDropDown.cs, ToolStripItem.cs, 
1516         ToolStripMenuItem.cs: Record if we were activated by mouse or keyboard.
1517         * ToolStripItemTextRenderEventArgs.cs: Draw mnemonic underlines if menu
1518         was activated by keyboard or the OS tells us to always draw them.
1519         * ToolStripManager.cs: Setup storage for activated by mouse or keyboard.
1520         [Fixes bugs #82376, #82377]
1521
1522 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
1523
1524         * Control.cs: If no one accepts a mnemonic, let the MenuStrip have a 
1525         shot at having it because Alt was pressed.
1526         * MenuStrip.cs: When handling Alt, don't select a SystemMenuItem, select
1527         the first real menu item.
1528         * ToolStrip.cs: Don't crash when looking for a ToolStripItem to handle
1529         a mnemonic if Text is null.
1530         [Fixes bug #82374]
1531
1532 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1533
1534         * ListView.cs: In ListViewItemCollection.AddItem, don't do a linear
1535         search do check whether the item is already contained in the
1536         collection or not; instead check if the owner of the item is the same
1537         as ours. Also, remove a redundant check in the same method. 
1538
1539 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
1540
1541         * Control.cs: Allow the clip region to be set back to null.
1542         * XplatUIWin32.cs: If we are sent a null clip region, use IntPtr.Zero.
1543         [Fixes button still showing up in bug #82370 when Show Through is turned off]
1544
1545 2007-08-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1546
1547         * GridEntry.cs: Add a null check.
1548         * PropertyGrid.cs: When checking for existing grid entries, ignore category
1549           entries. Fixes #82297.
1550
1551 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
1552
1553         * OwnerDrawPropertyBag.cs: Make the serialization constructor protected
1554         for 2.0.
1555
1556 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
1557
1558         * ListBox.cs: Implement ScaleControl.
1559
1560 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1561
1562         * Form.cs: Add a few ActiveMenu null checks. ActiveMenu might be null if we
1563           have a menu strip.
1564         * MdiWindowManager.cs: Don't create a maximized menu if the child or it's
1565           parent has a menu strip. Fixes #81689.
1566
1567 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1568
1569         * ToolTip.cs: We don't get mouse events on all platforms in the exact same
1570           moments, so apply some fuzzy logic to determine if the mouse is still
1571           inside a control or not. Fixes #82288 (for the third time).
1572
1573 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1574
1575         * Control.cs: CreateControl: create implicit children as well. Fixes #82344.
1576           Don't create the child if it has been disposed already (may happen if
1577           the user closes the form the Load event).
1578
1579 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1580
1581         * ToolTip.cs: If ReshowDelay is 0, show the tooltip immediately. Fixes
1582           #82288.
1583
1584 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1585
1586         * Control.cs: Add a null check in OnParentBindingContextChanged. The parent
1587           might call us after we've been destroyed, in which case our own private
1588           parent field is null. Fixes #82326.
1589
1590 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
1591
1592         * ToolStripDropDown.cs: Fix a failing test on X11 by adding a null
1593         check for setting the dropdown's owner.
1594
1595 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
1596
1597         * MdiClient.cs: Fix some failing tests on X11 by adding a null check
1598         before removing system menu items.
1599
1600 2007-08-02  Jonathan Pobst  <monkey@jpobst.com>
1601
1602         * MdiClient.cs, MdiWindowManager.cs: Support 2.0 Mdi MenuStrip
1603         folding.
1604         * MdiControlStrip.cs: Added.  These are the menu items used in mdi
1605         folding.
1606         * ToolStrip.cs: Add a null check to mnemonics.
1607         * ToolStripDropDownMenu.cs: When using a SystemMenuItem, there is
1608         no ConnectedArea.
1609         [Fixes most of bug #81689]
1610
1611 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1612
1613         * PropertyGrid.cs: Add a null-check. Fixes #82289/SVGPad.
1614
1615 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1616
1617         Use InitialDelay if ReshowDelay is zero. Fixes #82288.
1618
1619 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1620
1621         * DataGridViewCell.cs: EditType: returns
1622           DataGridViewTextBoxEditingControl always.
1623
1624 2007-08-01  Jonathan Pobst  <monkey@jpobst.com>
1625
1626         * TextRenderer.cs: Remove the LineLimit string format flag from the
1627         DrawString fallback method so that things like buttons that aren't
1628         tall enough to draw a full line will still draw part of the text.
1629         [Fixes part of bug #82272]
1630
1631 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1632
1633         * DataGridView.cs: Implemented AutoResizeColumn(s).
1634         * DataGridViewCellStyle.cs: Added SetAlignment, fills in a StringFormat
1635           according to the Alignment.
1636         * DataGridViewColumnHeaderCell.cs, DataGridViewTextBoxCell.cs:
1637           Implement alignment and padding when painting.
1638         * DataGridViewRow.cs: SetValues: Don't create a cell if it already
1639           exists.
1640         * DataGridViewCell.cs: Implement BorderWidths in the most primitive
1641           way.
1642         * DataGridViewColumnCollection.cs: Raise OnColumnAdded on the DGV when
1643           a column is added.
1644
1645 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
1646
1647         * TextBoxBase.cs: Use Control.ExplicitBounds instead of explicit_bounds,
1648         which is internal.
1649
1650 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
1651
1652         * ToolStrip.cs: Stub out drag and drop methods, fix some corcompare stuff,
1653         hide GetPreferredSize from public API.
1654         * ToolStripDropDown.cs: Override AllowItemReorder, fix AccessibleObject.
1655         * ToolStripItem.cs: Stub out drag and drop methods and events.
1656         * ToolStripManager.cs: Stub out Save/LoadSettings.
1657         * ToolStripOverflow.cs: Use renamed ToolStrip.GetPreferredSize.
1658         * ToolStripPanel.cs: Fix corcompare error.
1659         * ToolStripPanelRow.cs: Use renamed ToolStrip.GetPreferredSize.
1660         * ToolStripSplitButton.cs: Fix AccessibleObject stuff.
1661         * ToolStripSplitStackLayout.cs: Use renamed ToolStrip.GetPreferredSize.
1662
1663 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
1664
1665         * TextBoxBase.cs: In our new GetPreferredSizeCore, return the explicit
1666         bounds height instead of PreferredHeight.  Puts things back the way 
1667         they were for height while still fixing the width.  Fixes broken unit
1668         tests.
1669
1670 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1671
1672         * Binding.cs: Implement 2.0 constructors and add a null check.
1673
1674 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1675
1676         * DataGridViewRowCollection.cs: Allow a null DGV in the constructor,
1677           and fix row index (off by one).
1678
1679 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1680
1681         * PropertyGridView.cs: Remove debug output.
1682
1683 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1684
1685         * Control.cs: We need to reset the is_created flags when the handle is
1686           destroyed. Fixes #82187.
1687         * XplatUIWin32.cs: In GetWindowRect don't offset screen coordinates to
1688           client coordinates if the window doesn't have a parent.
1689           Win32GetParent returns the parent or the owner, and for top-level
1690           windows with no parent (but with an owner) we were calculating the
1691           location from the location of the owner.
1692         * Form.cs: Remove incorrect fix for #82187. Don't raise OnLoad if the
1693           form has been disposed.
1694         * MdiClient.cs: Add a null-check.
1695
1696 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
1697
1698         * TextBoxBase.cs: TextBoxBase reports itself at AutoSize, but doesn't
1699         actually do auto-sizing.  Override the internal GetPreferredSizeCore 
1700         so we can provide an implementation that returns the current width
1701         and preferred height.  Allows anchor = right to work with TextBox 2.0.
1702         [Fixes bug #82233]
1703
1704 2007-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1705
1706         * ListView.cs: Add support for navigating items in Groups mode, by
1707         creating a big matrix containing all rows and cols of all groups. When
1708         are in other mode than Details, pressing Up should have a similar
1709         behaviour as that one of Down (moving to the next available column if
1710         current one doesn't have an item in the requested row). Also, don't
1711         proceed to use groups if ShowGroups is false.
1712         * ListViewGroup.cs: Add an internal int field to store the starting
1713         row of the group (used by the big matrix used for navigating the
1714         ListView).
1715         * ThemeWin32Classic.cs: Don't draw headers if ListView.ShowGroups is
1716         false.
1717
1718 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
1719
1720         * ToolStripDropDown.cs: When we do Show, start with the 
1721         DefaultDropDownDirection, but if our popup menu is going to off-screen,
1722         modify the direction to keep it on screen.  [Fixes bug #82210]
1723
1724 2007-07-29  Gert Driesen  <drieseng@users.sourceforge.net>
1725
1726         * FileDialog.cs: Accept any FilterIndex value, and store it
1727         unmodified. When FilterIndex is less than 1, or greater than number
1728         of filters, then default to first filter. Only add filter extension to
1729         file if user did not specifiy an extension. When type of dialog is
1730         OpenFileDialog and DefaultExt is set, then only use filter extension
1731         if: CheckFileExists is true and no file wih the default extension
1732         exists, or CheckFileExists is false, and user specified file does not
1733         exist. When CheckFileExists is true, then add first extension of 
1734         selected filter that matches existing file. Perform checks for
1735         existing file, overwrite and create after extension has been added to
1736         file name. When CheckFileExists is true and type is SaveFileDialog,
1737         then only consider first filter extension if DefaultExt is set.
1738         When CheckFileExists is true, then ignore DefaultExt if file with that
1739         extension does not exist. Also perform check for existing file when
1740         type is SaveFileDialog. Changed some field to constants.
1741
1742 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1743
1744         * ListView.cs: Take into account the region used by header
1745         control when doing the vertical scroll (this way we invalidate
1746         the precise area, and don't get any dirty one).
1747
1748 2007-07-27  Everaldo Canuto  <ecanuto@novell.com>
1749
1750         * FileDialog.cs: Check for valid filterIndex on button open/save. 
1751         Fixes #82184.
1752
1753 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1754
1755         * ListView.cs: Update some layout calculations in details view
1756         and clean the code in a pair of assignations.
1757
1758 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
1759
1760         * ComboBox.cs, ContainerControl.cs, DataGrid.cs, FontDialog.cs, Label.cs,
1761         LinkLabel.cs, ListBox.cs, ListView.cs, ListViewItem.cs, MessageBox.cs,
1762         MonthCalender.cs, StatusBar.cs, ThemeClearlooks.cs, ThemeWin32Class.cs,
1763         ToolBar.cs, TreeView.cs: First pass at using thread-safe string measuring.
1764
1765 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
1766
1767         * TextRenderer.cs: Use [ThreadStatic] instead of locks to improve
1768         performance of thread-safe Graphic methods.  (Thanks rolf!)
1769
1770 2007-07-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1771
1772         * ListView.cs: When doing the layout calculations, don't calculate
1773         scroll bars before handle is created. This is unnecessary and also
1774         calculating them before handle creation item causes a number of random
1775         bugs (which begin to appear after Chris' big patch for handle creation
1776         fixes). 
1777
1778 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
1779
1780         * TextRenderer.cs: Create thread-safe versions of Graphics.MeasureString
1781         for things that don't have a Graphics object.  Currently, things just use
1782         the static Hwnd.bmp_g which is not thread safe.
1783
1784 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1785
1786         * Form.cs: ShowDialog: don't destroy handles if the dialog is a common
1787           dialog. Fixes #82187.
1788
1789 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1790
1791         * DataGridViewElement.cs: Initialize state.
1792         * DataGridView.cs: Forward a few Mouse events to cells. Add
1793           GetRowInternal and GetCellInternal that doesn't unshare rows.
1794           Implement GetCellDisplayRectangle. HitTest: if the row is shared,
1795           don't use the index, but look it up. Add
1796           DataGridViewControlCollection.RemoveInternal to remove controls
1797           that Remove won't remove (scrollbars, edit control).
1798         * DataGridViewColumn.cs: Initialize State correctly.
1799         * DataGridViewColumnHeaderCell.cs, DataGridViewComboBoxCell.cs,
1800           DataGridViewHeaderCell.cs, DataGridViewRowHeaderCell.cs: Started
1801           implementing this.
1802         * DataGridViewRowCollection.cs: Implemented shared rows.
1803         * DataGridViewRow.cs: Throw exceptions as MS do.
1804         * DataGridViewCell.cs: A few properties are implemented by a
1805           Get<Property> method, so move implementation there and remove the
1806           NIEX in the method. Add a bunch of OnXInternal that DataGridView
1807           calls when necessary.
1808         * DataGridViewComboBoxEditingControl.cs: Remove a few NIEX'es that just
1809           complicates matters.
1810         * DataGridViewCellCollection.cs: Add a GetCellInternal that doesn't
1811           unshare any rows.
1812
1813 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
1814
1815         * UpDownBase.cs: We cannot override SetBoundsCore for 2.0, which was relayout-ing
1816         the children controls.  Instead, we will just set up the proper docking for the
1817         children controls so we don't have to worry about it.  [Fixes bug #82188]
1818
1819 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
1820
1821         * TreeView.cs, NodeLabelEditEventArgs.cs, LabelEditTextBox.cs: Support edit
1822         canceling and correct Before/AfterLabelEdit properties as layed out in bug
1823         81847.  [Fixes bug #81847]
1824
1825 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
1826
1827         * Label.cs: If AutoSize = true and a width or height is set, ignore it and
1828         redo the autosize.  VS2005 defaults to setting the AutoSize, and then setting
1829         an explicit size based on the design-time size of the text.  Since our fonts
1830         may not match this explicit size, we tend to cut off the ends of people's labels.
1831
1832 2007-07-24  Jonathan Pobst  <monkey@jpobst.com>
1833
1834         * Menu.cs: Add some missing methods to MenuItemCollection.
1835
1836 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1837
1838         * DataGridView.cs: Added RowTemplateFull, creates a row from the templates in the columns.
1839         * DataGridViewBand.cs: DefaultHeaderCellType: initialize correctly. Resizable: if not set, check DGV.
1840         * DataGridViewColumn.cs: InheritedAutoSizeMode: if not set, check DGV. Resizable: delegate to base class. ToolTipText: Never return null. Initialize a few other properties correctly.
1841         * DataGridViewColumnCollection.cs: Add: Default column is a TextBoxColumn.
1842         * DataGridViewComboBoxCell.cs: Started implementing this, lots left still.
1843         * DataGridViewElement.cs: State defaults to Visible.
1844         * DataGridViewRowCollection.cs: Add: creates the new row based on a template.
1845         * DataGridViewTextBoxColumn.cs: SortMode: delegate to base class, but initialize to Automatic. ToString: implement correctly.
1846
1847 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1848
1849         * Control.cs: Minor 1.1 corcompare fix.
1850
1851 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
1852
1853         * LinkLabel.cs, PrintPreviewDialog.cs, TabPage.cs, TextBox.cs,
1854         TextBoxBase.cs, ToolBar.cs: 2.0 corcompare work.
1855
1856 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1857
1858         * DataGridViewLinkColumn.cs, DataGridViewRowCollection.cs,
1859           DataGridViewImageColumn.cs, DataGridViewSelectedCellCollection.cs,
1860           DataGridViewComboBoxCell.cs, DataGridViewLinkCell.cs,
1861           DataGridViewSelectedColumnCollection.cs,
1862           DataGridViewSelectedRowCollection.cs: Corcompare work.
1863
1864 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
1865
1866         * PrintDialog.cs: Stub UseEXDialog.  I chose to stub this because
1867         it is autoset by VS2005 designer and the effect is barely noticeable.
1868
1869 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
1870
1871         * TreeView.cs: Implement HitTest.
1872
1873 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1874
1875         * DataGridViewTextBoxCell.cs: Use DGV.EditControlInternal instead of
1876           manually adding and removing the control from the Controls
1877           collecftion.
1878         * DataGridView.cs: Implement DataGridViewControlCollection. Add an
1879           EditingControlInternal property that tracks the editing control.
1880           Always keeping the scrollbars in the Controls collection, as MS
1881           testing confirms is the right behaviour.
1882
1883 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1884
1885         * ScrollableControl.cs: Fix implementation of AutoScrollPosition
1886           according to MSDN and new test.
1887
1888 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1889
1890         * TreeNode.cs: Implement ToolTipText.
1891         * TreeView.cs: Implement tooltips, NodeMouse* events.
1892
1893 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1894
1895         * TreeView.cs: Implement OnNodeMouseClick and OnNodeMouseDoubleClick.
1896
1897 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1898
1899         * TreeNode.cs: Implement ContextMenu, ContextMenuStrip, and Level.
1900         * TreeView.cs: Use the node's contextmenu[strip] if applicable.
1901
1902 2007-07-20  Ivan N. Zlatev  <contact@i-nz.net>
1903
1904         * Control.cs, Form.cs, ContainerControl.cs,
1905         ScrollableControl.cs, ButtonBase.cs:  Added ShouldSerialize
1906         for misc properties.
1907
1908 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1909
1910         * TreeNode.cs: Implement StateImageIndex and StateImageKey.
1911         * TreeView.cs: Implement StateImageList.
1912
1913 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1914
1915         * Form.cs: Don't check if the current form is the active form before
1916           activating it. Fixes #81904.
1917
1918 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1919
1920         * Form.cs: Don't check if the current form is the active form before
1921           activating it. Fixes #81904.
1922
1923 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1924
1925         * TreeView.cs: Apply patch from Tyron (tmm@aon.at). Fixes #81847.
1926
1927 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1928
1929         * Form.cs: Don't try to position the form after loading if the form was
1930           disposed. Fixes #81969.
1931
1932 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1933
1934         * PropertyGrid.cs, PropertyGridView.cs: Implemented 2.0 methods and
1935           properties. Had to change ToolBar into ToolStrip, which required a
1936           few #ifs.
1937
1938 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1939
1940         * PropertyGrid.cs: PropertyToolBar: Redraw the entire toolbar when it's
1941           resized, fixes part of #79829 (vertical lines in toolbar).
1942           PropertyGrid: Refactored Populate* to something that's easier to
1943           follow at least for me, as well as splitting it up into several new
1944           methods, required to update only subitems when something has
1945           changed by a popup editor or listbox. Don't use events to check
1946           when any values are changed, since the events are unreliable (we're
1947           changing the objects the events are registered with, and if the
1948           event handling requires the objects to be immutable (objects stored
1949           in hashtables for instance), the events will never be raised).
1950         * PropertyGridView.cs: Call PropertyGrid.PropertyValueChangedInternal
1951           everytime we change a value, since events are unreliable.
1952           DropDownButtonClicked: For the same reason don't compare objects to
1953           check if it has changed or not, it would require all objects to
1954           derive Equals. Fix dialog location on windows, MS is doing weird
1955           things when creating parented forms.
1956         * GridEntry.cs: Add a SelectedObject setter.
1957
1958 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
1959
1960         * TreeNode.cs: Add some corcompare attributes.
1961         * TreeNodeCollection.cs: Implement 2.0 stuffs.
1962         * TreeView.cs: Implement some 2.0 stuffs.
1963
1964 2007-07-18  Andreia Gaita  <avidigal@novell.com>
1965
1966         * WebBrowser.cs, WebBrowserBase.cs: add some more MonoTODOs now
1967         for moma.
1968
1969 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
1970
1971         * ListBox.cs: Implement custom tab offsets.
1972
1973 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1974
1975         * ToolStripContentPanel.cs: Support System renderer.
1976         * ToolStripControlHost.cs: Set RightToLeft to default to No.
1977
1978 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1979
1980         * ScrollableControl.cs: Don't mess up the user's explicit bounds.
1981
1982 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1983
1984         * CheckBox.cs: Chain TextAlign to base implementation instead of
1985         maintaining another one.
1986
1987 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1988
1989         * ButtonBase.cs: Fix an incorrect string constant.
1990
1991 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1992
1993         * TextRenderer.cs: Use the static Graphics context in Hwnd instead
1994         of creating one for measuring strings.
1995
1996 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1997
1998         * ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownMenu.cs: 
1999         Implement MaxItemSize.
2000
2001 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
2002
2003         * Control.cs: Remove per-control 1x1 Bitmap and Graphics context used
2004         for DeviceContext.  Instead, use the static one available in Hwnd.
2005         Informal tests show this saves about 500k on formtest.exe.
2006
2007 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
2008
2009         * ContainerControl.cs: Implement 2.0 AutoScaling.
2010
2011 2007-07-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2012
2013         * ComboBox.cs: Work around bug #82120 (bug in mcs).
2014
2015 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
2016
2017         * ThemeWin32Classic.cs: Allow a Flat button to be Focused and Entered.
2018         Darken the focus color.
2019
2020 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
2021
2022         * ListBox.cs: When measuring items, if it's a CheckedListBox, add room
2023         for the checkbox.
2024         * ThemeWin32Classic.cs: Make the checkbox bigger in a CheckedListBox and use
2025         X, Y instead of a rect for drawing text.
2026         - For ControlPaint.DrawCheckBox, center the check a little better when the
2027         checkbox is odd width.  When drawing a flat checkbox, use a white background
2028         when state != inactive.
2029         [Fixes bugs #82097, 82100]
2030
2031 2007-07-16  Gert Driesen  <drieseng@users.sourceforge.net>
2032
2033         * ListControl.cs: When changing CurrencyManager, disconnect event
2034         handlers from previous one. Fixes bug #81771. Code formatting.
2035
2036 2007-07-15  Andreia Gaita <avidigal@novell.com>
2037
2038         * PrintPreviewControl.cs: Remove extraneous Invalidate calls. Separate
2039         full preview invalidation from layout invalidation, and only invalidate
2040         the layout when setting zoom or other properties. Invalidation should
2041         always be done even when resetting properties with the same values as
2042         what is there. Fixes #81744 and #79830.
2043
2044 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2045
2046         * ListView.cs: Implement initial support for Groups. Split some of the
2047         LayoutIcons code to render a partial list of the items (needed by
2048         items contained in ListViewGroup instances). Let the
2049         ListViewItemsCollection.ListView property be modifiable (needed when
2050         using Groups, too).
2051         * ListViewGroup.cs: Use a Bounds property rather than a Location
2052         one. Also invalidate the bounds when they get changed.
2053         * ThemeWin32Classic.cs: When drawing items, also draw the group header
2054         if ListView.Groups.Count is bigger than 0. Add a DrawListViewGroupHeader
2055         method as well.
2056
2057 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2058
2059         * ListView.cs: When space gets pressed and CheckBoxes is true, 
2060         don't invoke the Begin and EndUpdate methods. We are generating 
2061         a redraw of the entire control without need to do so.
2062
2063 2007-07-13  William Holmes <billholmes54@gmail.com> 
2064
2065         * Control.cs: Changing logic in FindFlatForward and 
2066           FindFlatBackward to handle multiple Controls with 
2067           the same TabIndex.  
2068           This fixes bug 81687.
2069
2070 2007-07-13  Jonathan Pobst  <monkey@jpobst.com>
2071
2072         * OSFeature.cs: Enable IsPresent.
2073
2074 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2075
2076         * Control.cs: Don't do anything in WmShowWindow if the control has been
2077           disposed. We can get WM_SHOWWINDOW after a control is disposed: a
2078           control is created, put on a form, the control is disposed (the
2079           form is never shown), and then we get a MapNotify, triggering a
2080           WM_SHOWWINDOW.
2081         * Form.cs: Exclude the current form when sending Deactivate to all
2082           MdiChildren.
2083         * NativeWindow.cs: Set WindowCreating to null as soon as possible,
2084           there was a race condition because assigning the handle raises
2085           events, we can get more messages, therefore trying to assign the
2086           handle again, which would fail if any of those event handlers
2087           closed/disposed the control.
2088
2089 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2090
2091         * Form.cs: Make the fix for #80775 windows-only (fixes #81957).
2092
2093 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
2094
2095         * SystemInformation.cs, Theme.cs, XplatUI.cs, XplatUIDriver.cs,
2096         XplatUIWin32.cs: Implement SystemInformation 2.0 properties.
2097
2098 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2099
2100         * DateTimePicker.cs: If there's no part format specifier, return an
2101           empty string.
2102
2103 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
2104
2105         * FlatButtonAppearance.cs: Throw NotSupportedException for a
2106         Transparent BorderColor.
2107
2108 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2109
2110         * DataGridView.cs, TextControl.cs, ProgressBar.cs, PrintDialog.cs,
2111           MessageBox.cs, ButtonBase.cs, PageSetupDialog.cs, NumericUpDown.cs,
2112           X11Dnd.cs, Binding.cs, DataGrid.cs, AxHost.cs,
2113           LinkLabelLinkClickedEventArgs.cs, TextRenderer.cs, Label.cs,
2114           LinkLabel.cs, TreeNode.cs, BindingSource.cs, TabPage.cs,
2115           TextBoxBase.cs, BindingNavigator.cs, Application.cs,
2116           ToolStripPanel.cs, TabControl.cs, ThemeClearlooks.cs, TreeView.cs:
2117           Remove warnings.
2118         * X11Structs.cs: Remove warnings, add ToString implementations.
2119
2120 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2121
2122         * XplatUIX11.cs: Translate min/max size according to the actual min/max
2123           size, and not the current size. Fixes #81798.
2124
2125 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2126
2127         * XplatUIX11.cs: Fix #80822 again (DefWndProc can be reached before
2128           XplatUI.CreateWindow returns, in which case the hwnd isn't assigned
2129           to the control yet).
2130
2131 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2132
2133         * PropertyGridTextBox.cs: Add a method that sends any forwarded
2134           mousedowns to the contained textbox.
2135         * X11Structs.cs: More ToString implementation.
2136         * PropertyGridView.cs: Forward any mousedowns to the textbox, fixes
2137           #81791.
2138
2139 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2140
2141         * PropertyGridView.cs: Add a null-check, fixes a few tests.
2142
2143 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
2144
2145         * TableLayoutPanelCellPosition.cs: TypeConverter.
2146
2147 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2148
2149         [ Fixes #79761]
2150         
2151         * PropertyGridTextBox.cs: Propagate any color changes to all contained
2152           controls.
2153         * PropertyGridView.cs: A few color fixes.
2154
2155 2007-07-10  Jackson Harper  <jackson@ximian.com>
2156
2157         * TextControl.cs: Remove some old unused text formatting stuff.
2158
2159 2007-07-10  Jackson Harper  <jackson@ximian.com>
2160
2161         * TreeView.cs: Update full row select invalidation to match the
2162         newer DrawSelection... method.
2163         - Make sure to invalidate the entire width when selecting a new
2164         node, if we have full row selection enabled.
2165
2166 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2167
2168         * PropertyGridView.cs: Fix for #81800, makes text show up on initial
2169           display of properties again.
2170
2171 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
2172
2173         * ListBox.cs: Add IntegerCollection and Add, Clear, Remove
2174         to existing collections.
2175
2176 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2177
2178         * AccessibleObject.cs, RadioButton.cs: Fix some base classes
2179         that changed between 1.1 and 2.0.
2180
2181 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2182
2183         * PowerStatus.cs: Added.  This is just a data class, it is filled
2184         in by SystemInformation.
2185
2186 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2187
2188         * Message.cs: Add op_Equality and op_Inequality.
2189
2190 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2191
2192         * MenuStrip.cs: Finish corcompare work.
2193
2194 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2195
2196         * LinkArea.cs: Add op_Equality and op_Inequality.
2197
2198 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2199
2200         * Application.cs: Add MessageLoopCallback delegate.
2201
2202 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2203
2204         * ListBox.cs: First set of 2.0 stuffs.
2205
2206 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2207
2208         * Control.cs: Make an internal Height property we can override
2209         without messing up the public API.
2210         * ListBox.cs: Override HeightInternal to always return the size
2211         the user set.  [Fixes bug #80466]
2212
2213 2007-07-08  Jonathan Pobst  <monkey@jpobst.com>
2214
2215         * TableLayoutPanel.cs: Add a null check so we don't NRE trying to
2216         paint cell borders if we haven't calculated where they go yet.
2217         [Fixes bugs #82040 and #82041]
2218
2219 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2220
2221         * ListView.cs: In Details view, set the location of item_control
2222         in the (0,0) position (and the header_control is thus on the
2223         item_control). This way the Bounds of the Items are relative to the
2224         ListView control (before this, they had a Bounds value without the
2225         header_control offset, which wasn't matching .Net). Fixes #82004.
2226
2227 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2228
2229         * ListControl.cs: When DataSource is set to null, pass an empty
2230         array of object to SetItemsCore. This is done to clean the items
2231         in the ListContol children. Fixes #81788.
2232
2233 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2234
2235         * ListControl.cs: Add 2.0 stuffs.
2236
2237 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2238
2239         * Label.cs: Finish up 2.0 stuffs.  Replace calls to Refresh with Invalidate,
2240         Refresh is overkill for just about every repaint request.
2241
2242 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2243
2244         * ToolStripItem.cs: TextDirection getter handles looking up Inherit for us,
2245         so remove my custom Get method and fix the property getter.
2246
2247 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2248
2249         * Label.cs: DefaultMargin for 2.0.
2250
2251 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2252
2253         * ComboBox.cs: Override IsInputCharInternal and return true.  Fixes 
2254         reported issue where other controls with mnemonics would steal strokes
2255         from a selected ComboBox.
2256
2257 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2258
2259         * ScrollOrientation.cs: Make internal for 1.1.
2260         * ScrollEventArgs.cs: Add 2.0 stuffs.
2261
2262 2007-07-05  Jonathan Pobst  <monkey@jpobst.com>
2263
2264         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
2265         ToolStripItem.cs, ToolStripItem.cs, ToolStripItemTextRenderEventArgs.cs,
2266         ToolStripRenderer.cs, ToolStripSeparator.cs: Implement TextDirection.
2267
2268 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2269
2270         * ListViewItem.cs: Implement the small 2.0 GetSubItemAt method.
2271
2272 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2273
2274         * ListView.cs: Implement the so-incredibly broken 2.0 
2275         VirtualItemsSelectionRangeChanged event.
2276
2277 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2278
2279         * ListView.cs: When enter is pressed and selection is non empty,
2280         an OnItemActivate event must be fired.
2281
2282 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2283
2284         * ListView.cs: Store the FocusedItem information as an
2285         int instead of a ListViewItem (needed by VirtualMode).
2286         Update the calls to SetFocusedItem to pass an index instead of
2287         an item.
2288         * ListViewItem.cs: Likewise. Also, in VirtualMode retrieve
2289         the Focused state from the owner ListView. 
2290
2291 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2292
2293         * ListView.cs: Set ListView.focused_item from ListViewItem.Focused
2294         property. Also, invalidate previous focused item in the mentioned
2295         property (match .Net).
2296
2297 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2298
2299         * ListView.cs: Implement 2.0 FocusedItem property setter.
2300
2301 2007-07-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2302
2303         * ListView.cs: Implement 2.0 TopItem property setter.
2304
2305 2007-07-03  Jonathan Pobst  <monkey@jpobst.com>
2306
2307         * StatusStrip.cs: The default renderer is System.
2308         * ToolStrip.cs, ToolStripManager: Now that we have System renderer, use it 
2309         if the user specifies it.
2310         * ToolStripDropDown.cs: Don't reset our Renderer on changing OwnerItem
2311         if we are ManagerRenderMode.
2312         * ToolStripMenuItem.cs: Calculate our text color better.
2313         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Move some stuff
2314         from Professional to the base class based off working with the System renderer.
2315         * ToolStripSystemRenderer.cs: Added.
2316
2317 2007-07-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2318
2319         * ListView.cs: I'm so lame - the real name is HitTest, not HitInfo.
2320
2321 2007-07-02  Jonathan Pobst  <monkey@jpobst.com>
2322
2323         * ToolTip.cs: Implement 2.0 Tag property.
2324
2325 2007-06-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2326
2327         * ListView.cs: Implement 2.0 HitTest methods.
2328
2329 2007-06-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2330
2331         * ListViewItem.cs: Add a 2.0 bool Hot property, to tell whether the
2332         item is under the pointer or not (sugar). Also remove the TODO
2333         regarding to the cursor changes in OneClick activation.
2334         * ThemeWin32Classic.cs: When HotTracking is true and we are drawing
2335         the subitems use the parent's HotFont if UseItemStyleForSubItems is
2336         true; otherwise don't show the underline style.
2337
2338 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2339
2340         * ListView.cs: In ItemControl.ItemsMouseMove, refactor
2341         the code to retrieve the item at position only one time. Also
2342         change cursor when Activation is ItemActivation.OneClick as well
2343         as invalidate the item if HotTracking is true (to show/hide the
2344         underline style). Add an internal HotItemIndex property to retrieve
2345         the current hot item's index.
2346         * ListViewItem.cs: Add an internal HotFont property to cache the
2347         font used when HotTracking is true and the pointer moves within the
2348         item's borders.
2349         * ThemeWin32Classic.cs: When drawing the item's text, use Font or
2350         HotFont depending on the hot state of the item.
2351
2352 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2353
2354         * ListView.cs: Implement 2.0 HotTracking property.
2355
2356 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
2357
2358         * ToolStripControlHost.cs: If our hosted control never got created,
2359         don't try to dispose it.  [Fixes bug #81909]
2360
2361 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
2362
2363         * TableLayoutPanel.cs: Implement ScaleCore, ScaleControl.
2364
2365 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
2366
2367         * TableLayoutPanel.cs: Implement CellBorderStyle.  [Fixes bug #81884]
2368
2369 2007-06-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2370
2371         * ThemeWin32Classic.cs: In OwnerDraw mode draw subitems only for 
2372         Details view.
2373         * DrawListViewColumnHeaderEventArgs.cs:
2374         * DrawListViewSubItemEventArgs.cs: Add padding to the bounds when drawing text
2375         using the DrawText () methods.
2376
2377 2007-06-19  Jonathan Pobst  <monkey@jpobst.com>
2378
2379         * ToolStripProfessionalRenderer.cs: Put back clearing a ToolStripDropDown's
2380         background which got erased in my changes yesterday.
2381
2382 2007-06-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2383
2384         * ListViewItem.cs: Actually set bounds for subitems in Details view
2385         (2.0 feature).
2386         * ThemeWin32Classic.cs: Refactor the drawing code for subitems, so we
2387         can invoke from the owner draw routines if we need it. Also, add
2388         support for Owner draw in Details view.
2389
2390 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
2391
2392         * ToolStripDropDownMenu.cs, ToolStripItem.cs, ToolStripLabel.cs,
2393         ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs: Respect the
2394         ShowImageMargin setting, properly align text in a ToolStripLabel
2395         hosted on a ToolStripDropDown.
2396
2397 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
2398
2399         * ToolStrip.cs, ToolStripContentPanel.cs, ToolStripDropDownMenu.cs,
2400         ToolStripProfessionalRenderer.cs: Refactor and clean up some rendering code.
2401
2402 2007-06-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2403
2404         * DrawListViewSubItemEventArgs.cs: Actually implement its methods.
2405
2406 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
2407
2408         * ToolStripLabel.cs: If the label is on a dropdown, adjust the text
2409         location to match ToolStripMenuItems.
2410
2411 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2412
2413         * DrawListViewColumnHeaderEventArgs.cs:
2414         * ThemeWin32Classic.cs: Implement 2.0 OwnerDraw support for
2415         column headers in ListView. 
2416
2417 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
2418
2419         * UserControl.cs: Implement AutoSize.
2420
2421 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2422
2423         * DrawListViewItemEventArgs.cs:
2424         * ListView.cs:
2425         * ThemeWin32Classic.cs: Implement basic support for 2.0 OwnerDraw in
2426         ListView.
2427
2428 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
2429
2430         * ToolStripDropDownItemAccessibleObject.cs: Added.
2431         * ToolStripDropDownItem.cs, ToolStripItem.cs, ToolStripMenuItem.cs,
2432         ToolStripOverflow.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
2433         ToolStripProgressBar.cs, ToolStripSeparator.cs, ToolStripSplitButton.cs,
2434         ToolStripTextBox.cs: corcompare work.
2435
2436 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
2437
2438         * OSFeature.cs, StatusStrip.cs, TabControl.cs, TableLayoutSettings.cs,
2439         TableLayoutStyle.cs, TableLayoutCollection.cs, ToolStripContentPanel.cs,
2440         ToolStripControlHost.cs, ToolStripDropDown.cs, ToolStripDropDownButton.cs:
2441                 corcompare.
2442
2443 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
2444
2445         * OSFeature.cs: Add IsPresent.
2446         * PrintPreviewControl.cs: Add RightToLeft.
2447         * SplitContainer.cs: Add AutoScrollOffset, ScaleControl.
2448         * SplitterPanel.cs: Add AutoSizeMode.
2449
2450 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
2451
2452         * LayoutEventArgs.cs: Add 2.0 AffectedComponent.
2453         * MdiClient.cs: Add 2.0 ScaleControl.
2454         * NativeWindow.cs: Implement 2.0 interface IWin32Window.
2455         * NumericUpDownAccelerationCollection.cs: Add [ListBinding].
2456
2457 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
2458
2459         * Form.cs: Implement some scaling methods, stub some RTL methods,
2460         corcompare work.
2461
2462 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
2463
2464         * Control.cs: corcompare work.
2465         * FlatButtonAppearance.cs, FolderBrowserDialog.cs: Add TypeConverters.
2466
2467 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
2468
2469         * ControlPaint.cs, Theme.cs, ThemeWin32Classic.cs: Implement
2470         ControlPaint 2.0 stuffs.
2471
2472 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2473
2474         * ThreadExceptionDialog.cs: Add 2.0 stuffs.
2475
2476 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2477
2478         * UpDownBase.cs: Add 2.0 stuffs.
2479
2480 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2481
2482         * NumericUpDown.cs: Add 2.0 stuffs.
2483
2484 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2485
2486         * NotfiyIcon.cs: Add MouseDoubleClick event, hook up MouseClick event.
2487
2488 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2489
2490         * ErrorProvider.cs: Implement 2.0 stuffs.
2491
2492 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2493
2494         * DomainUpDown.cs: Implement 2.0 stuffs.
2495
2496 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2497
2498         * CheckedListBox.cs: Fix RefreshItems signature.
2499
2500 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2501
2502         * PictureBox.cs: Implement 2.0 stuffs.
2503
2504 2007-06-12  Andreia Gaita  <avidigal@novell.com>
2505         
2506         * TabControl.cs: Check if there are tabpages before checking
2507         the selected index - fix #81802 (font changes raise a ResizeTabs
2508         call on controls.add, which blew up nicely with no tabpages)
2509
2510 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2511
2512         * ListView.cs:
2513         * ListViewItem.cs: Implement 2.0 ItemSelectionChanged event.
2514
2515 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2516
2517         * ListView.cs:
2518         * ListViewItem.cs: In VirtualMode the selection information
2519         resides in the ListView, rather than in the Items. Also, throw
2520         InvalidOperationExceptions when VirtualMode is being used and
2521         CheckedItemCollection is accessed.
2522
2523 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
2524
2525         * ComboBox.cs: Add ScaleControl.
2526
2527 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
2528
2529         * ButtonBase.cs: ButtonBaseAccessibleObject.State should not be visible to 1.1.
2530
2531 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
2532
2533         * GroupBox.cs: Add 2.0 stuffs.
2534
2535 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
2536
2537         * Panel.cs: Add autosize properties/event.
2538
2539 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
2540
2541         * Control.cs:
2542         - When we remove a control, remove it from the collection before performing the layout.
2543         - Setup an internal property for explicit_bounds.
2544         - Don't let the UpdateBounds in CreateHandle overwrite our explicit bounds.
2545         - Perform a layout when we set a new AutoSizeMode.
2546
2547 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
2548
2549         * ScrollableControl.cs: Add 2.0 stuffs.
2550
2551 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
2552
2553         * ScrollBar.cs: Add 2.0 stuffs.
2554
2555 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
2556
2557         * Splitter.cs: Add 2.0 stuffs.
2558
2559 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
2560
2561         * SplitContainer.cs: Apply patch from Neil Cawse <neilcawse@geotab.com>
2562         to have BindingContext simply use base implementation.
2563
2564 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
2565
2566         * ColumnHeader.cs: corcompare fix.
2567
2568 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
2569
2570         * Button.cs: corcompare fixes.
2571         * ButtonBase.cs: corcompare fixes, add ButtonBaseAccessibleObject.State.
2572
2573 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
2574
2575         * Button.cs: Override GetPreferredSizeCore.
2576         * ButtonBase.cs: PerformLayout after changing properties that can affect
2577         AutoSize.  Simplify some mouse/keyboard code.
2578         * Control.cs: PerformLayout after changing Padding if AutoSize = true.
2579         * MouseEventArgs.cs: Make Location internal for 1.1.
2580         * TextRenderer.cs: Make MeasureTextInternal (string, Font, bool) internal for 1.1.
2581         * Theme.cs: Add CalculateButtonAutoSize.
2582         * ThemeWin32Classic.cs: Implement CalculateButtonAutoSize.
2583
2584 2007-06-05  Miguel de Icaza  <miguel@novell.com>
2585
2586         * TreeNodeCollection.cs: Applied patch from Neil Cawse <neilcawse@geotab.com>
2587
2588 2007-06-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2589
2590         * ListViewItem.cs: We can't cache Bounds in VirtualMode 
2591         since we can get different item instances every time we retrieve it.
2592
2593 2007-06-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2594
2595         * ListView.cs: Work around for #81602, since an unkown an pretty
2596         infrequent condition appears only in some systems (old linux boxes, it
2597         seems).
2598
2599 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
2600
2601         * Button.cs: Completely reformat and a little refactor to bring
2602         this closer to Mono circa 2007.
2603
2604 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
2605
2606         * CheckBox.cs, Form.cs, RadioButton.cs: Change call to ButtonBase.Redraw
2607         to be ButtonBase.Invalidate.
2608
2609 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
2610
2611         * ButtonBase.cs: GetPreferredSize is 2.0 only.  Fixes build.
2612
2613 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
2614
2615         * ButtonBase.cs: Completely reformat and a little refactor to bring
2616         this closer to Mono circa 2007.
2617
2618 2007-06-01  Everaldo Canuto  <ecanuto@novell.com>
2619
2620         * Label.cs: Fixes preferred sizes for 2.0 profile, also adjust some
2621         values for autosize. Fixes #80137.
2622
2623 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
2624
2625         * Control.cs: Don't perform layout when AutoSize changes.
2626         * Form.cs: Perform layout in AutoSize override.  Don't set ClientSize
2627         directly when autosizing, use SetBounds with BoundsSpecified.None.
2628         Fixes unit tests my last commit broke.
2629
2630 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
2631
2632         * Control.cs: Perform layout when AutoSize changes.
2633         * Form.cs: Implement AutoSizing.
2634
2635 2007-06-01  Chris Toshok  <toshok@ximian.com>
2636
2637         * DataGrid.cs: remove the XXX'ed check at the top of
2638         ProcessGridKey.  fixes #80464.
2639
2640 2007-06-01  Chris Toshok  <toshok@ximian.com>
2641
2642         * DataGridTextBoxColumn.cs: TextBox.TextChanged event handler
2643         adding idempotent (add/remove in Edit()), and also make sure we
2644         don't add it until after we set the text, so it's not tripped in
2645         Edit().  Fixes unit test regression.
2646
2647 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
2648
2649         * Control.cs: In UpdateBounds, only recalculate anchor distances if the
2650         change is user explicit, not when the layout engine moves stuff.  Fixes
2651         anchoring to bottom and right.  [Fixes bug #81790]
2652
2653 2007-06-01  Andreia Gaita  <avidigal@novell.com>
2654
2655         * PrintDialog.cs: Add collation preview thumbnails. Fixes #80726.
2656
2657 2007-06-01  Andreia Gaita  <avidigal@novell.com>
2658
2659         * ContainerControl.cs: 
2660         Fire enter event for common ancestor if it is not a ContainerControl.
2661         Send focus to the active_control and not the 'value', the active 
2662         control might have been changed in one of the events fired.     
2663         Definitely fixes #80159.
2664
2665 2007-06-01  Andreia Gaita  <avidigal@novell.com>
2666
2667         * DataGrid.cs: Finish editing when focus leave the datagrid. Fixes #80159.
2668
2669 2007-06-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2670
2671         * PropertyGrid.cs: Anchor the help description to the bottom of the
2672           help panel and refactor SelectGridItem into a
2673           SelectGridItemInternal that can be set to null (and update it to
2674           clear the help texts when it is set to null). Set root item to null
2675           when there's no SelectedObject. Fixes #80438.
2676         * ScrollableControl.cs: In Recalculate we need to ResumeLayout(true)
2677           when we're recalculating after a resize (only).
2678
2679 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2680
2681         * ListView.cs: Implement 2.0 RedrawItems method.
2682
2683 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2684
2685         * ListControl.cs: Disconnect PositionChanged and ItemChanged
2686         handlers from previous data manager when DataSource is set to
2687         null. Fixes #81771.
2688
2689 2007-05-31  Jackson Harper  <jackson@ximian.com>
2690
2691         * TextBoxBase.cs: These seem to be the correct values.
2692
2693 2007-05-31  Everaldo Canuto  <ecanuto@novell.com>
2694
2695         * FileDialog.cs: When close dialog with ok set filterindex using combobox
2696         value. Fixes #81784.
2697
2698 2007-05-31  Jonathan Pobst  <monkey@jpobst.com>
2699
2700         * Control.cs: Implement 2.0 scaling methods.
2701
2702 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2703
2704         * ProgressBar.cs, WebBrowserBase.cs, Control.cs, MaskedTextBox.cs,
2705           MessageBox.cs, PropertyGrid.cs, RichTextBox.cs: Fix warnings and
2706           corcompare issues.
2707
2708 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2709
2710         * ProgressBar.cs: Implemented missing 2.0 members.
2711
2712 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2713
2714         * Control.cs: Corcompare issues.
2715         * MessageBox.cs: Implemented missing 2.0 functions.
2716
2717 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2718
2719         * CheckedListBox.cs, ListBox.cs, ListControl.cs, ComboBox.cs:
2720           Implemented more 2.0 members.
2721
2722 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2723
2724         * Application.cs: Try to avoid NRE when Assembly.GetEntryAssembly is
2725           null (strange, but it seems to happen when running unit tests).
2726
2727 2007-05-30  Andreia Gaita  <avidigal@novell.com>
2728
2729         * ContainerControl.cs: Set active_control even earlier, before 
2730         firing any events, and undo it if validation returns false.
2731
2732 2007-05-30  Andreia Gaita  <avidigal@novell.com>
2733
2734         * ContainerControl.cs: Raise Validation and Enter/Leave events
2735         even if there is no Form and set active_control earlier, just
2736         before firing Enter events (toshok's patches). Fixes #80647.
2737
2738 2007-05-30  Jackson Harper  <jackson@ximian.com>
2739
2740         * TextControl.cs: Redid the pageup/pagedown a little to simplify
2741         things and fix bug #81311.
2742
2743 2007-05-30  Jackson Harper  <jackson@ximian.com>
2744
2745         * X11Dnd.cs: Now that we have our own event loop, we need to
2746         cancel when we get a mouseup but it won't be accepted.
2747
2748 2007-05-30  Chris Toshok  <toshok@ximian.com>
2749
2750         * DataGrid.cs (set_CurrentCell): guard against negative
2751         column/row.
2752
2753         * DataGridColumnStyle.cs (CheckValidDataSource): just use the
2754         array index syntax instead of looping over the property names.
2755
2756         * DataGridTextBoxColumn.cs: add a changed handler on the textbox,
2757         and set IsInEditOrNavigateMode to false there.
2758
2759 2007-05-30  Jackson Harper  <jackson@ximian.com>
2760
2761         * TreeView.cs: Make sure we don't get a bad visible order when
2762         setting to the top node.  Fixes some misc crashing in
2763         ControlInspector.
2764
2765 2007-05-30  Andreia Gaita  <avidigal@novell.com>
2766
2767         * UserControl.cs: Add 2.0 AutoSizeMode
2768
2769 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
2770
2771         * DataGridTextBoxColumn.cs: Fix textbox horizontal offset.
2772
2773 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
2774
2775         * DataGridTextBoxColumn.cs: Fix textbox position to prevent override grid
2776         lines. Fixes #80285. 
2777
2778 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
2779
2780         * DataGridColumnStyle.cs: Add char trimming column header text format. 
2781
2782 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
2783
2784         * DataGridColumnStyle.cs: Fix grid header arrow drawing over column name. 
2785         Fixes #80147.
2786
2787 2007-05-29  Jackson Harper  <jackson@ximian.com>
2788
2789         * TreeNode.cs: Fix off by one on calculating whether or not a node
2790         is visible.
2791
2792 2007-05-29  Jonathan Pobst  <monkey@jpobst.com>
2793
2794         * Control.cs: ResumeLayout(false) should recalculate anchor distances.
2795         * ScrollableControl.cs: Force an UpdateDistances when we move the
2796         scrollbars.
2797         [Fixes bug #80605]
2798
2799 2007-05-29  Andreia Gaita  <avidigal@novell.com>
2800
2801         * PageSetupDialog.cs: Fix #80728 - Changing the printer doesn't
2802         update the page setup screen.
2803
2804 2007-05-29  Andreia Gaita  <avidigal@novell.com>
2805
2806         * PageSetupDialog.cs: Fix landscape mode.
2807
2808 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2809
2810         * SystemInformation.cs: Add 2.0 IconSizeVerticalSpacing and
2811         IconSizeHorizontalSpacing.
2812
2813 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2814
2815         * ListView.cs: The declaration of prev_tooltip_item should be inside
2816         a NET_2_0 conditional (avoid a warning).
2817
2818 2007-05-28  Andreia Gaita  <avidigal@novell.com>
2819
2820         * PageSetupDialog.cs: Implement PrintPreview control to display
2821         the preview thumbnail. Change unit conversion to use 
2822         PrinterUnitConvert methods.
2823         
2824         Note: there is a huge bug in ms.net where the default margins are 
2825         interpreted as centimeters (?), when in fact they are set in inches. When 
2826         loading the page setup dialog initially (ms.net), the default margins 
2827         are set to 1 inch, and the dialog shows them with value 10, when in fact 
2828         it should be 25 (properly converted). Our dialog doesn't have this bug.
2829         
2830         * Theme.cs, ThemeWin32Classic.cs: Add a CPDrawBorder override for 
2831         RectangleF.
2832         * ControlPaint.cs: Add a DrawBorder internal method for RectangleF.
2833
2834 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2835
2836         * ListView.cs:
2837         * ListViewItem.cs: Implement 2.0 ToolTipText support for listview
2838         items.
2839
2840 2007-05-28  Andreia Gaita  <avidigal@novell.com>
2841
2842         * X11Dnd.cs: A direct cast to VirtualKeys is not allowed from
2843         an IntPtr on csc (it builds fine on mcs, could it be a compiler
2844         bug?), convert the ptr to Int32 first.
2845
2846 2007-05-28  Jackson Harper  <jackson@ximian.com>
2847
2848         * X11Dnd.cs: Add a timer, so after drop, if a finish is not
2849         recieved, we will exit the dnd tracking loop.
2850
2851 2007-05-28  Jackson Harper  <jackson@ximian.com>
2852
2853         * X11Dnd.cs: Keep tracking until the xdnd finished event is
2854         recieved. TODO: I should probably stick a timer on the dropped
2855         event, and finish the drag if the XDND Finished event never shows
2856         (because some apps don't seem to send it).
2857
2858 2007-05-28  Everaldo Canuto  <ecanuto@novell.com>
2859
2860         * ToolBar.cs: Fix toolbar default width for button with image. Fixes
2861         #81733.
2862
2863 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2864
2865         * MonthCalendar.cs: Only mark the keypresses we actually handle as
2866           handled.
2867
2868 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2869
2870         * MonthCalendar.cs: Set the size after initializing all the relevant
2871           variables. Fixes #81742.
2872
2873 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2874
2875         * KeyEventArgs.cs: Fix typo.
2876
2877 2007-05-28  Gert Driesen  <drieseng@users.sourceforge.net>
2878
2879         * DateTimePicker.cs: Changed exceptions thrown by MinDate and MaxDate
2880         to match MS. Fixed MinDate to only accept value less than or equal
2881         to MaxDate on 2.0 profile and less than MaxDate on 1.0 profile.
2882         Removed TODO's that are now verified by unit tests.
2883
2884 2007-05-27  Gert Driesen  <drieseng@users.sourceforge.net>
2885
2886         * TreeNodeCollection.cs: Minor corrections to exceptions to match
2887         MS.
2888
2889 2007-05-25  Jackson Harper  <jackson@ximian.com>
2890
2891         * X11Dnd.cs: Rework to make StartDrag a blocking call that runs
2892         it's own message loop.
2893         * XplatUIX11.cs: Remove some of the dnd hooks
2894
2895 2007-05-25  Gert Driesen  <drieseng@users.sourceforge.net>
2896
2897         * XplatUIX11.cs: Change MinimumWindowSize to {Width=0,Height=0}
2898         instead of MinimizedWindowSize.
2899
2900 2007-05-25  Jackson Harper  <jackson@ximian.com>
2901
2902         * TextBoxBase.cs: Raise textchanged when cutting and pasting text.
2903
2904 2007-05-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2905
2906         * KeyEventArgs.cs: Added SuppressKeyPress.
2907         * Control.cs: Added support for SuppressKeyPress.
2908
2909 2007-05-24  Andreia Gaita  <avidigal@novell.com>
2910
2911         * NumericUpDown.cs: Refactor code to fix regressions on #79950 and
2912         problems with PieChart. suppress_validation should not be a counter,
2913         if there are several BeginInit calls, the first EndInit will 
2914         activate validation. Fix exceptions thrown by set_Value.
2915         * UpDownBase.cs: ValidateText only if it's the user editing it.
2916
2917 2007-05-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2918
2919         * ListControl.cs: FilterItemOnProperty should return the filtered
2920         item proeprty even if DataSource is null. The same applies for
2921         GetItemText. Fixes #80427.
2922
2923 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
2924
2925         * Control.cs: If a control doesn't have a parent when it's Dock is
2926         set, but it has children, it needs to do a layout.  Fixes some nested
2927         controls issues.  [Fixes bug #81199]
2928
2929 2007-05-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2930
2931         * ComboBox.cs: If there are few items in the drop down list, make it
2932           the exact size the items need, no bigger. Fixes #81612.
2933
2934 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
2935
2936         * Application.cs: When we have captured the keyboard for a menu,
2937         check for mouse down events in case we need to close the menu.
2938         * Control.cs, Form.cs: Remove mouse down checks for menus.
2939
2940 2007-05-24  Jackson Harper  <jackson@ximian.com>
2941
2942         * TextControl.cs: Handle tabs in non multiline mode a little
2943         differently.
2944
2945 2007-05-24  Jackson Harper  <jackson@ximian.com>
2946
2947         * TextControl.cs: We need to manually break apart tabbed text and
2948         move the tabs, since the system.drawing tabbing mechanism relies
2949         on tab stops.
2950         * TextBoxBase.cs: Move the caret properly when the user enters a
2951         tab.
2952
2953 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
2954
2955         * ContainerControl.cs: Don't check CanSelect before calling
2956         ProcessMnemonic.
2957         * ToolStrip.cs: Only do implicit mnemonics on MenuStrips.  Don't
2958         release a KeyboardActive on click if it's not ours.
2959
2960 2007-05-23  Andreia Gaita  <avidigal@novell.com>
2961
2962         * ColumnHeader.cs: Add TypeConverter
2963
2964 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2965
2966         * LinkLabel.cs: Implement LinkCollection.Add with Link parameter (2.0).
2967
2968 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2969
2970         * LinkLabelLinkClickedEventArgs.cs, LinkLabel.cs: Implement Button property.
2971
2972 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2973
2974         * LinkLabel.cs: Implement public Padding property.
2975
2976 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2977
2978         * LinkLabel.cs: Implement public FlatStyle.
2979
2980 2007-05-23  Jonathan Pobst  <monkey@jpobst.com>
2981
2982         * Control.cs: Apply patch from George to call parent.PerformLayout
2983         when Visible is changed.  [Fixes bugs #81118, 81718]
2984
2985 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2986
2987         * MainMenu.cs, MenuAPI.cs: Implement Collapse event for MainMenu (2.0).
2988
2989 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2990
2991         * ContextMenu.cs: Implement ProcessCmdKey with control parameter.
2992
2993 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2994
2995         * ContextMenu.cs: Implement Collapse.
2996
2997 2007-05-23  Rolf Bjarne Kvinge <RKvinge@novell.com>
2998
2999         * ToolBarButton.cs: Implement Name.
3000
3001 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
3002
3003         * ToolBar.cs: Fix OnButtonDropDown to save item used in dropdown instead of
3004         use current_item, it prevents some NRE. Fixes #81675.  
3005
3006 2007-05-22  Andreia Gaita  <avidigal@novell.com>
3007
3008         * NumericUpDown.cs: Fix PieChart by not returning from UpdateEditText
3009         without updating the text.
3010
3011 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
3012
3013         * XplatUIWin32.cs: Plug a GDI leak caused by calling Font.ToHfont ()
3014         without calling DeleteObject.  [Should fix bug #81709]
3015
3016 2007-05-22  Jackson Harper  <jackson@ximian.com>
3017
3018         * RichTextBox.cs: Set the line endings correctly, when flushing
3019         RTF text.
3020
3021 2007-05-22  Gert Driesen  <drieseng@users.sourceforge.net>
3022
3023         * XplatUIX11.cs: MinimumWindowSize on X11 is actually
3024          {Width=0,Height=0}.
3025
3026 2007-05-22  Jackson Harper  <jackson@ximian.com>
3027
3028         * TreeView.cs: Setting top with a null node should set to the very
3029         top.
3030
3031 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3032
3033         * Form.cs: ShowDialog: destroy the handle when message loop is
3034           finished, matches MS behaviour. Refactor parts of WmClose into
3035           RaiseCloseEvents, that only raises events if they haven't already
3036           been raised. Fixes #81688 and #81521.
3037         * Application.cs: Don't call close on the form when exiting a modal
3038           loop, it will raise all the (Form)Closed/Closing events again if
3039           WM_CLOSE has been sent earlier on, instead call RaiseCloseEvent,
3040           which doesn'r raise any events it they have been raised before.
3041
3042 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
3043
3044         * Control.cs: Add OnPrint.
3045         * ToolStrip.cs: Add GetChildAtPoint.
3046         * ToolStripContainer.cs: Add OnRightToLeftChanged.
3047         * ToolStripRenderer.cs: Make CreateMirrorImage internal.
3048
3049 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
3050
3051         * MenuAPI.cs: Prevent context menu to be typed as MainMenu. Fixes #81509.  
3052
3053 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3054
3055         * InternalWindowManager.cs: ToolTipShow: Don't show tooltip if the form
3056           isn't visible anymore. Fixes #81651.
3057
3058 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3059
3060         * Control.cs: WmShowWindow: Update children's z-order after setting
3061           their parent. SetParent may show the window, thereby corrupting
3062           z-order, since the window will be shown on top.
3063         * XplatUIWin32.cs: SetParent: don't call SetVisible on forms. Prevents
3064           multiple (and redundant) WM_SHOWWINDOW messages.
3065         * MdiWindowManager.cs: RaiseDeactivate: only raise after an Activate
3066           event has already been raised.
3067         * Form.cs: Change is_changing_visible_state to a counter, since
3068           SetVisibleCore can be called recursively. CreateHandle: when
3069           creating mdi children, send (De)Activated events.
3070         * MdiClient.cs: Update use of is_changing_visible_state.
3071         * Application.cs: OnThreadException: Surround exception handling with
3072           try/finally to ensure we always reset the error-handling state
3073           before leaving.
3074
3075 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3076
3077         * ThemeWin32Classic.cs: DrawProgressBar: Avoid a DivideByZero exception
3078           (#81704).
3079
3080 2007-05-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3081
3082         * ListView.cs: Use Theme.ListViewHorizontalSpacing for List and
3083         SmallIcon views, now that we have a standarized horizontal spacing.
3084
3085         * ThemeWin32Classic.cs: ListViewHorizontalSpacing now has a value of
3086         4, just like the other views (Match .Net).
3087
3088 2007-05-21  Jonathan Pobst  <monkey@jpobst.com>
3089
3090         * Control.cs: Delay calculating anchor distances until we actually layout.
3091         Always query the WM for the actual size and location it put us at instead of
3092         only when we send negative values.
3093         [Fixes bugs #81694, 81695]
3094
3095 2007-05-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3096
3097         * Application.cs: Avoid a possible stack overflow when trying to exit
3098           the application.
3099
3100 2007-05-19  Marek Safar  <marek.safar@gmail.com>
3101
3102         * Theme.cs (GetHatchBrush): A key uses internal value instead of formated
3103         enum value.
3104
3105 2007-05-19  Andreia Gaita  <avidigal@novell.com>
3106
3107         * NumericUpDown.cs: Added 2.0 methods (spin acceleration)
3108         * NumericUpDownAcceleration.cs, 
3109           NumericUpDownAccelerationCollection.cs: Added 2.0
3110           implementation.
3111
3112 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
3113
3114         * RichTextBox.cs: Recalculate the document after the ScrollBars
3115         property is changed. Fixes bug #81681.
3116
3117 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
3118
3119         * DataObject.cs: Implement 2.0 methods.
3120
3121 2007-05-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3122
3123         * ThemeWin32Classic.cs: Draw the check marks in ListViewItems
3124         in the center of the checkbox, not in the left-top corner. 
3125         Fixes #80037.
3126
3127 2007-05-18  Jackson Harper  <jackson@ximian.com>
3128
3129         * RichTextBox.cs: Recalculate the document after the scrollbars
3130         property is changed.
3131         * TextBoxBase.cs: ScrollBars is not a flags enum...This fixes
3132         81486.
3133
3134 2007-05-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3135
3136         * CreateParams.cs: Make HasWindowManager marginally faster.
3137         * XplatUIX11.cs, Hwnd.cs: CreateWindow: Move the default location code
3138           into Hwnd so that other drivers can use it as well.
3139         * XplatUIWin32.cs: CreateWindow: If the window has a window manager get
3140           the default location from Hwnd. Fixes MDI client windows always
3141           showing up at (0,0) in Windows (Win32 won't set the default
3142           location since the window styles aren't correct).
3143
3144 2007-05-18  Gert Driesen  <drieseng@users.sourceforge.net>
3145
3146         * TreeView.cs: Modified DoubleBuffered to just use the base
3147         implementation.
3148
3149 2007-05-18  Jackson Harper  <jackson@ximian.com>
3150
3151         * TreeView.cs: Set the top node to the last child node when
3152         expanding all
3153         - When we get focus, if there is no selected node, use the top
3154         node.
3155
3156 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
3157
3158         * KeysConverter.cs: Add CanConvertTo.
3159         * LinkLabel.cs: Add some 2.0 constructors and properties to LinkLabel.Link.
3160         * LinkConverter.cs: Added.
3161
3162 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3163
3164         * Cursor.cs: Apply Sebastien patch from #81669 to open file in read mode,
3165         it prevents error when file dont have write access. Fixes #81669 and #81667.  
3166
3167 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3168
3169         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw toolbar 
3170         button text. Fixes #79640.  
3171
3172 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3173
3174         * Control.cs: According to MSDN controls created in the designer theres 
3175         keyboard accelerators visible by default. So included check for design
3176         in ShowKeyboardCuesInternal.  
3177
3178 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3179
3180         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw combobox 
3181         text. Fixes #81621.  
3182
3183 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3184
3185         * Control.cs: ShowKeyboardCuesInternal add to expose ShowKeyboardCues
3186         for 1.0, becuse ShowKeyboardCues is protected on 1.0.  
3187
3188 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
3189
3190         * Control.cs: Finish implementation of UI State using WmChangeUIState
3191         to send WM_UPDATEUISTATE to all child controls. Some hack will be needed
3192         in some controls to check for show_keyboard_cues to draw accell keys "_".  
3193
3194 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3195
3196         * ListBox.cs: When calculating the horizontal scrollbar
3197         in single column mode, don't use values less than 0 for
3198         Maximum. Fixes #81474.
3199
3200 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3201
3202         * ListBox.cs: Throw the some missing exceptions in
3203         ListBox.ObjectCollection methods.
3204
3205 2007-05-17  Jackson Harper  <jackson@ximian.com>
3206
3207         * TextBoxBase.cs: Recalculate the document when the word wrap
3208         value has changed. This fixes 81488.
3209
3210 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
3211
3212         * Clipboard.cs: Implement missing GetText overload.
3213
3214 2007-05-17  Chris Toshok  <toshok@ximian.com>
3215
3216         * Control.cs (CheckDataBindings): remove the binding_context arg
3217         to binding.Check.
3218
3219         * CurrencyManager.cs (OnItemChanged): fix this now that
3220         BindingManagerBase is fixed. also remove the comment telling where
3221         the fix should go.  We set transfering_data to true/false around
3222         the call to PushData to keep UpdateIsBinding from being called.
3223         (ListChangedHandler): remove the extra OnMetaDataChanged call for
3224         PropertyDescriptorAdded in the 1.1 case.  The extra call is
3225         actually generated by System.Data generating 2 metadata changed
3226         events of its own per column add.  The fix should go there.  Add a
3227         comment to that affect in our test's Assert.Ignore.
3228
3229         * BindingManagerBase.cs: Rework PullData and PushData slightly.
3230         we keep a boolean flag (transfering_data) that keeps us from
3231         calling UpdateIsBinding multiple times if we re-enter either of
3232         them.
3233
3234         * ControlBindingsCollection.cs (AddCore): remove the
3235         binding_context arg to binding.Check.
3236
3237         * Binding.cs (IsBinding): don't check if we're binding here, just
3238         return our cached value.  we update it in UpdateIsBinding.
3239         (Check): don't take the binding_context arg, we'll just use our
3240         control's.  Also, for some reason MS doesn't use the data member
3241         field when getting the bindingmanager for this binding.  it just
3242         uses the datasource.  Make this method callable multiple times,
3243         and only do the is_null_desc stuff if manager.Position != -1 (so
3244         we don't get an exception accessing manager.Current).
3245         (UpdateIsBinding): move the code from IsBinding here.
3246         (PositionChangedHandler): call Check here to we can initialize
3247         things that require a non- -1 position.
3248
3249 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
3250
3251         * Form.cs: When alt keys is pressed send WM_CHANGEUISTATE to top level
3252         control.
3253
3254 2007-05-17  Andreia Gaita  <avidigal@novell.com>
3255
3256         * TabControl.cs: Add 2.0 methods and events, including
3257         OnEnter / OnLeave and raises it for tabpages (fixes #79869)
3258         * TabPage.cs: Add 2.0 methods
3259
3260 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
3261
3262         * Control.cs: Implement WmUpdateUIState, show_focus_cues and
3263         keyboard_cues is properly handled by message method.  
3264
3265 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
3266
3267         * TreeViewImageIndexConverter.cs: Add 2.0 methods.
3268
3269 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
3270
3271         * ToolStripTextBox.cs: Wire up new 2.0 Textbox methods/properties.
3272
3273 2007-05-16  Everaldo Canuto  <ecanuto@novell.com>
3274
3275         * Control.cs: 
3276         - WmUpdateUIState added to handle state changes, it make call to
3277         OnChangeUICues event.
3278         - Fixed ShowKeyboardCues to check for MenuAccessKeysUnderlined in
3279         SystemInformation.
3280
3281 2007-05-16  Jonathan Pobst  <monkey@jpobst.com>
3282
3283         * ImageKeyConverter.cs: Added.
3284         * TreeViewImageKeyConverter.cs: Added.
3285
3286 2007-05-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3287         
3288         * ToolTips.cs: Update Text if SetToolTip is called for a control
3289         already showing the tooltip, as well as restarting its timer; show
3290         tooltip if we are inside the control bounds by the time of calling
3291         SetToolTip. Inside ShowTooltip remove the check to not show the 
3292         tooltip again for the active control (it is allowed by .Net to 
3293         show the tooltip on the same control multiple times).
3294
3295 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3296
3297         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
3298
3299 2007-05-16  Andreia Gaita <avidigal@novell.com> 
3300
3301         * ContainerControl.cs: only process tab key if there are no 
3302         modifier keys present, otherwise the control does the 
3303         tab processing, if it needs to. Fixes #81622
3304         * TabControl.cs: Fixes calculation for which tab to select on
3305         shift+ctrl+tab.
3306
3307 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3308
3309         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
3310
3311 2007-05-15  Jonathan Pobst  <monkey@jpobst.com>
3312
3313         * Control.cs: Make IsInputCharInternal to allow controls to
3314         override it and still match MS API.
3315         * TextBoxBase.cs: Override IsInputCharInternal and always
3316         return true.
3317         [Fixes bug #81616]
3318
3319 2007-05-15  Jackson Harper  <jackson@ximian.com>
3320
3321         * TextBox.cs: Disable some of the menu options when using a
3322         readonly textbox.
3323
3324 2007-05-15  Jackson Harper  <jackson@ximian.com>
3325
3326         * TextBox.cs:
3327         * TextBoxBase.cs:
3328         * RichTextBox.cs: Some new 2.0 methods
3329
3330 2007-05-15  Gert Driesen  <drieseng@users.sourceforge.net>
3331
3332         * FileDialog.cs: On 1.0 profile, do not support multidotted 
3333         extensions.
3334
3335 2007-05-14  Jackson Harper  <jackson@ximian.com>
3336
3337         * TextBoxBase.cs: Implement some of the new 2.0 methods.
3338         * RichTextBox.cs: We need to override these methods on 2.0.
3339         * MaskedTextBox.cs: These are implemented now
3340         * TextControl.cs: This was off by one.
3341
3342 2007-05-14  Jackson Harper  <jackson@ximian.com>
3343
3344         * TextControl.cs: Because the line endings are including in the
3345         text, we don't need to add them in anymore.
3346
3347 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3348
3349         * ToolBar.cs: Fix autosize and get it working only after hadle is created,
3350         also prevent redraw in set_autosize if handle is not created. Fixes #81523.
3351
3352 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3353
3354         * ToolBar.cs: Adjust size to default size when button theres no text and
3355         image, it fixes remaining issues from #81524.
3356
3357 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3358
3359         * ToolBar.cs: 
3360         - When not flat call redraw to recalculate sizes on creare handle to match
3361         win32 behavior.
3362         - Revert 77220 because it causes some regressions in toobar
3363         button.
3364
3365 2007-05-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3366
3367         * MaskedTextBox.cs: Update the base text whenever the text changes. MTB
3368           now actually enters a usable state.
3369
3370 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3371
3372         * ToolBar.cs: Check for handle created in redraw to prevent unneeded size
3373         calculations, it reduces the size cauculation from 7 to 3 on a toolbar with
3374         3 buttons.
3375
3376 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3377
3378         * ToolBar.cs: Save default_size on create handle to use later for buttons
3379         without text, needed to mimic win32 behavior.
3380
3381 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3382
3383         * ToolBar.cs: Fix button layour to best fit width or height according to
3384         vertical or not. Fixes #81524.
3385
3386 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
3387
3388         * ToolBarButton.cs: When change style call ToolBar.Redraw to update
3389         toolbar size info because different styles theres different sizes.
3390         Fixes #81522.
3391
3392 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3393
3394         * ThemeWinClassic.cs: For .Net 2.0 don't draw any image
3395         if we are using checkboxes, checked is true, and we have less
3396         than two images in StateImageList; for the 1.1 in the same scenario
3397         draw the first image if we have at least one image in StateImageList.
3398         Fixes part of #81191.
3399
3400 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
3401
3402         * ToolStrip.cs, ToolStripManager.cs: We need to remove items from
3403         the owner's Items collection on merge.
3404
3405 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
3406
3407         * ToolStrip.cs: Use new internal ToolStripItemCollection constructor.
3408         * ToolStripItemCollection.cs: Lots of fixes to when events get called
3409         and parent/owner gets changed based on gert's unit tests.
3410
3411 2007-05-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3412
3413         * MaskedTextBox.cs: Started implementing parts of it.
3414
3415 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3416
3417         * ListView.cs: When clicking the checkbox on the items
3418         take into account the double clicks even if we have only
3419         one image in StateImageList (only for 1.0/1.1). Also 
3420         generate an extra change of checked state when we receive
3421         the second click on checkbox (match .Net behaviour). 
3422         Fixes part of #81191.
3423
3424 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
3425
3426         * ThemeWin32Classic.cs: Fix text rectangles in Tooltips.
3427
3428 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
3429
3430         * Form.cs: Move some of OnLoad to OnLoadInternal so it gets called
3431         even if OnLoad is overriden and base.OnLoad is not called.
3432         [Fixes bug #81582]
3433
3434 2007-05-10  Andreia Gaita  <avidigal@novell.com>
3435
3436         * TableLayoutSettings.cs: A big doh! fix and bowing down of head in 
3437         shame. (I blame my ever-persisting and annoying cold)
3438
3439 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
3440
3441         * ListView.cs: Don't eat navigation keys.  Let them flow through to
3442         KeyDown/KeyPress routines.  [Fixes bug #81569]
3443
3444 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
3445
3446         * ListView.cs: When handling keys for selecting the item based off
3447         keyboard input, do not consider keys pressed with Alt or Control.  Also,
3448         correctly handle keys when the Shift key is down. [Fixes bug #81578]
3449
3450 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
3451
3452         * Control.cs: When using UseWaitCursor, we have to store the requested
3453         Cursor to use when UseWaitCursor is turned off.
3454
3455 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
3456
3457         * Control.cs: Implement PreProcessControlMessage.  Default IsInputChar
3458         to false.
3459         * Application.cs: Use PreProcessControlMessage instead of
3460         PreProcessMessage.
3461         * PreProcessControlMessage.cs: Make internal for 1.1.
3462
3463 2007-05-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3464
3465         * Control.cs: Add InternalContains focus property, which hast the same
3466         functionality of ContainsFocus, but also including implicit controls.
3467         * ListViewItem.cs: Use InternalContainsFocus instead of ContainsFocus,
3468         since we need to know if the focus is contained in our implicit
3469         ItemControl when calculating Layout. Fixes part of #80888.
3470
3471 2007-05-08  Everaldo Canuto  <everaldo@simios.org>
3472
3473         * ToolTip.cs: Remove center form string alignment as it must be align to
3474         left.
3475
3476 2007-05-08  Jonathan Pobst  <monkey@jpobst.com>
3477
3478         * ToolStripItemCollection.cs: Set the new item's parent and owner
3479         in Insert like we do in Add.  [Fixes bug #81568]
3480
3481 2007-05-08  Jackson Harper  <jackson@ximian.com>
3482
3483         * TreeView.cs: GotFocus differences between 1.1 and 2.0.
3484         - Off by one error in SetTop
3485         - Disable DoubeBuffering
3486         
3487 2007-05-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3488
3489         * ScrollableControl.cs: ScrollIControlntoView: we now only move the
3490           control as much as necessary in order to make it entirely visible,
3491           instead of centering the control in the container (matches MS
3492           behaviour). CalculateCanvasSize: we need to take the current scroll
3493           position into account when calculating the maximum canvas,
3494           otherwise the following scenario will fail: resize so that the
3495           scrollbars appear, use the scrollbars to scroll, resize again
3496           smaller, and now the canvas size is too small. Recalculate: when
3497           showing scrollbars make sure they start off at 0, and try to scroll
3498           the active control into view. Fixes #79540. HandleScrollBar: don't
3499           scroll anywhere if the scrollbar isn't visible.
3500
3501 2007-05-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3502
3503         * ListView.cs: When focus changed, call Layout/Invalidate
3504         in the focused item to update the selected state (should show
3505         entire label when ListView is focused, and a part of it if is not).
3506         * ListViewItem.cs: When doing layout for LargeIcon, take into account
3507         for displaying the entire label not only the Focused state of the
3508         item, but also the Focused state of the ListView (match .Net
3509         behaviour).
3510
3511 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
3512
3513         * Control.cs: Stub CanRaiseEvents, IsMirrored, and NotifyClients.
3514         Implement UseWaitCursor. 
3515
3516 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
3517         Applying contributed patch from Sergey Volk.
3518
3519         * Clipboard.cs: Implement SetDataObject retry logic and new overload
3520         of SetDataObject.
3521         * XplatUIWin32.cs: Throw an ExternalException if the clipboard set fails.
3522
3523 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
3524
3525         * Control.cs: Implement DrawToBitmap.
3526
3527 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
3528         Applying contributed patch from Stefan Noack.
3529         
3530         * Control.cs: Add [Get|Set]AutoSizeMode.
3531
3532 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
3533
3534         * MdiClient.cs: Unmerge menus when the last child is closed.
3535
3536 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
3537
3538         * ToolStrip.cs: Do not call BeginMerge on DropDowns.
3539         * ToolStripManager.cs: Call Merge on DropDowns.
3540         [Fixes bug #81477]
3541
3542 2007-05-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3543
3544         * XplatUIWin32.cs: Changed Win32CreateWindow to take enums instead of
3545           uints.
3546         * Form.cs: CreateParams: don't set WS_VISIBLE if we're changing
3547           visibility. We can't create forms visible, since we have to set the
3548           owner before making the form visible (otherwise Win32 will do
3549           strange things with task bar icons). The problem is that we set the
3550           internal is_visible to true before creating the control, so
3551           is_changing_visible_state is the only way of determining if we're
3552           in the process of creating the form due to setting Visible=true -
3553           this works because SetVisibleCore explicitly makes the form
3554           visibile afterwards anyways. Fixes #80775.
3555
3556 2007-05-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3557
3558         * ThemeWin32Classic.cs: When drawing ListViewItems,
3559         use StringTrimming.EllipsisCharacter if the view is Tile, Details,
3560         or LargeIcon _and_ item is not focused (match .Net behaviour).
3561
3562 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
3563
3564         * Control.cs, Form.cs: Fix some obsolete method warnings.
3565
3566 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
3567
3568         * Control.cs: Implement GetChildAtPoint and OnParentCursorChanged.
3569         * GetChildAtPointSkip.cs: Make internal for 1.1 profile.
3570
3571 2007-05-04  Andreia Gaita  <avidigal@novell.com>
3572
3573         * ContainerControl.cs: Fix active_control attribution when going
3574         up the parent chain so that the first parent container gets the control
3575         and the rest of the parent containers get the child containers (skips
3576         non-containers). Fixes #80729
3577
3578 2007-05-04  Randolph Chung  <tausq@debian.org>
3579
3580         * FileDialog.cs: Implement the SupportMultiDottedExtensions property.
3581         [Fixes bug #81499]
3582
3583 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3584
3585         * XplatUIX11.cs: Add a TranslateWindowSizeToXWindowSize overload that
3586           takes a size parameter, since the CreateParam's size isn't true for
3587           minimized forms. Fixes #81518,
3588
3589 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3590
3591         * Form.cs: Add OnDeactivateInternal.
3592         * MdiClient.cs: Raise Deactivate event. Fixes #81409.
3593
3594 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3595
3596         * DateTimePicker.cs: CalculateDropDownLocation: do a null check before
3597           accessing the parent. Fixes #81508.
3598
3599 2007-05-03  Chris Toshok  <toshok@ximian.com>
3600
3601         * CurrencyManager.cs (CurrencyManager.ListChangeHandler): in the
3602         2.0 block, pass listposition + 1 to ChangeRecordState when a row
3603         was added before the current listposition.  Fixes the
3604         TestInsertRowBeforeCurrent unit test.
3605
3606 2007-05-03  Jonathan Pobst  <monkey@jpobst.com>
3607
3608         * Application.cs: Add RaiseIdle.
3609         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
3610         XplatUIX11.cs: Implement RaiseIdle.
3611
3612 2007-05-02  Jonathan Pobst  <monkey@jpobst.com>
3613         corcompare work: N - Z
3614         * NotifyIcon.cs
3615         * ProgressBar.cs
3616         * RadionButton.cs
3617         * ScrollableControl.cs
3618         * SplitContainer.cs
3619         * SplitterPanel.cs
3620         * StatusBar.cs
3621         * SystemInformation.cs
3622         * TabControl.cs
3623         * TableLayoutControlCollection.cs
3624         * TableLayoutPanel.cs
3625         * TabPage.cs
3626         * ToolBar.cs
3627         * ToolBarButton.cs
3628         * ToolStrip.cs
3629         * ToolStripComboBox.cs
3630         * ToolStripContainer.cs
3631         * ToolStripContentPanel.cs
3632         * ToolStripDropDown.cs
3633         * ToolStripDropDownItem.cs
3634         * ToolStripDropDownMenu.cs
3635         * ToolStripItem.cs
3636         * ToolStripItemCollection.cs
3637         * ToolStripMenuItem.cs
3638         * ToolStripPanel.cs
3639         * ToolStripSplitButton.cs
3640         * ToolTip.cs
3641         * TreeNode.cs
3642         * TreeNodeCollection.cs
3643         * TreeNodeMouseHoverEventArgs.cs
3644         * TreeView.cs
3645
3646 2007-05-01  Everaldo Canuto  <everaldo@simios.org>
3647
3648         * ContextMenu.cs: Add public method Show with alignment property to 2.0
3649         stuff. Thanks aatdark for the patch. 
3650
3651 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
3652
3653         * GridItem.cs: Implement 2.0 Tag property.
3654
3655 2007-05-01  Frederik Carlier <frederik.carlier@carlier-online.be> 
3656
3657         * TreeNodeCollection.cs: Fix ContainsKey and IndexOfKey methods to use
3658         count instead of Nodes.Length.  [Fixes bug #81448]
3659
3660 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
3661
3662         * ComboBox.cs: Fix paramName sent to ArgumentOutOfRangeException's.
3663         [Fixes bug #81506]
3664
3665 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
3666         corcompare work: A - M
3667         * BindingNavigator.cs
3668         * Button.cs
3669         * ButtonBase.cs
3670         * CheckBox.cs
3671         * Control.cs
3672         * FlowLayoutPanel.cs
3673         * Form.cs
3674         * Label.cs
3675         * LinkLabel.cs
3676         * ListView.cs
3677
3678 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
3679
3680         * Application.cs: Give toolstrips a chance to process mnemonics.
3681         * ToolStrip.cs, ToolStripDropDownButton.cs, ToolStripItem.cs,
3682         ToolStripItemTextRenderEventArgs.cs, ToolStripLabel.cs,
3683         ToolStripMenuItem.cs, ToolStripSplitButton.cs: Implement keyboard mnemonics.
3684
3685 2007-05-01  Jackson Harper  <jackson@ximian.com>
3686
3687         * TextBoxBase.cs: Better preferred height, FixedSingle gets the
3688         wider area too.
3689         - Don't set the BoundsSpecified
3690
3691 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
3692
3693         * Application.cs: When using the toolstrip shortcut mechanism, allow the
3694         message to pass through to a regular control if it hosted by a toolstrip.
3695         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
3696         ToolStripManager.cs: Enable keyboard navigation for ToolStrips.
3697
3698 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
3699
3700         * TextRenderer.cs: Use the flags argument when using the MeasureString
3701         fallback algorithm.
3702
3703 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
3704
3705         * MenuStrip.cs: Don't let multiple ToolStripSeparators get added to
3706         the MDI menu item.  [Fixes bug #81483]
3707
3708 2007-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
3709
3710         * DataGridViewColumn.cs: Initialize value of headercell to zero-length
3711         string. When setting Name to null, use zero-length string instead.
3712
3713 2007-04-29  Andreia Gaita  <avidigal@novell.com>
3714
3715         * TabControl.cs: Implement missing 2.0 methods (SelectTab, 
3716         DeselectTab). Implement missing 2.0 TabPageCollection methods
3717         (Add, ContainsKey, RemoveByKey, IndexOfKey)
3718
3719 2007-04-29  Pedro Martínez Juliá  <pedromj@gmail.com>
3720
3721         * DataGridViewColumn.cs: Make HeaderText take preference over Name.
3722
3723 2007-04-29  Gert Driesen  <drieseng@users.sourceforge.net>
3724
3725         * RichTextBox.cs: In LoadFile, use StreamReader to read plain text.
3726         Fixes bug #81479. Include details of exception when LoadFile fails.
3727
3728 2007-04-28  Alan McGovern <alan.mcgovern@gmail.com>
3729
3730         * DrawListViewSubItemEventArgs.cs: Added missing setter
3731
3732 2007-04-27  Andreia Gaita  <avidigal@novell.com>
3733
3734         * ToolTip.cs: Add missing 2.0 properties. Implement 2.0 Show and 
3735         Hide methods (not complete). Implement missing 2.0 OnPopup event.
3736
3737 2007-04-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3738
3739         * ListView.cs: In ItemControl.OnMouseDown restore a pair of braces I
3740         removed in ly last commit (it was breaking the Label edit feature).
3741
3742         * ThemeWin32Classic.cs: When drawing a ListViewItem use
3743         StringAlignment.Near for LineAlignment (match .Net).
3744
3745 2007-04-27  Andreia Gaita  <avidigal@novell.com>
3746
3747         * TabControl.cs: Change SetTab so it adds the tabpage to the list
3748         of controls if it isn't already there - was blowing up when doing
3749         tabcontrol.TabPages[i]=new TabPage(). 
3750         SetTab now does a replace by removing the page at the index. 
3751         Add a new InsertTab method that inserts a page in a given index 
3752         instead of replacing. 
3753         Implements TabPageCollection.Insert(int, TabPage).
3754
3755 2007-04-27  Chris Toshok  <toshok@ximian.com>
3756
3757         * BindingManagerBase.cs: fill in CurrentItemChanged (and have an
3758         internal handler that can be invoked from our subclasses.)  Also,
3759         add a comment to PushData about how we need to fix it.
3760
3761         * CurrencyManager.cs: tons of changes here.  trying to get things
3762         matching the behavior of .net wrt event orders (ItemChanged,
3763         CurrentChanged, PositionChanged.)  I've implemented a private .net
3764         symbol (ChangeRecordState) that appears in stack traces because
3765         it's actually easier to do this than to effective inline all its
3766         various behaviors at every call site.
3767
3768         * RelatedPropertyManager.cs: guard against an exception here by
3769         not using parent.Current if the position is set to -1 (if the
3770         parent datasource is cleared, for instance).
3771
3772         * Binding.cs: don't parse data in PushData (this might be wrong,
3773         but it jives with MS's behavior.)  Also, don't call PushData when
3774         we get a CurrentChanged event.
3775
3776 2007-04-27  Andreia Gaita  <avidigal@novell.com>
3777
3778         * WebBrowser.cs,
3779           WebBrowserBase.cs,
3780           WebBrowserSiteBase.cs,
3781           HtmlDocument.cs: Added stubbed out classes, no real implementations 
3782           yet.
3783
3784 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
3785
3786         * MainMenu.cs: In draw method without parameters call draw method with 
3787         PaintEvent, another one (just rect) adjust rectangle and we dont need it
3788         as Rect property is already adjusted. Fixes #80694.
3789
3790 2007-04-27  Jonathan Pobst  <monkey@jpobst.com>
3791
3792         * Application.cs: Need to handle keyboard menu deselection here.
3793         * Control.cs: Use WM_SYSKEYUP instead of WM_SYSCOMMAND to start menu keyboard
3794         navigation, allowing keyboard to work on X11.
3795         * ToolStrip.cs: Don't worry about handling the Menu key here anymore.
3796
3797 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
3798
3799         * MenuAPI.cs: When deactivate menu verify if hotkey (_) is active and redraw
3800         menu bar. It fixes some drawing issues in menu bar.
3801
3802 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
3803
3804         * MenuAPI.cs: Remove unneeded "keynav_state = KeyNavState.Idle" before 
3805         Deactivate calls, Deactivate method already do it. Also ser ActiveTracker
3806         when <alt> key is pressed.
3807
3808 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
3809
3810         * XplatUIX11.cs: Simplify SystrayRemove to be like other libraries,     Gtk as 
3811         example just set visible to false and make this prevent from other problems.
3812         In SystrayAdd always remove pending expose. Fixes #81072.
3813
3814 2007-04-26  Marek Safar  <marek.safar@gmail.com>
3815
3816         * TextBoxBase.cs (CaretMoved): Consider scroll maximum when scroll
3817         value is set.
3818
3819 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
3820
3821         * ListView.cs: Added three missing 2.0 events and corresponding
3822         EventHandlers. Added the OwnerDraw property.
3823         * DrawListViewColumnHeaderEventHandler.cs: fixed typo
3824
3825 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
3826
3827         * DrawListViewItemEventArgs.cs
3828         * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
3829
3830 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
3831
3832         * TextControl.cs: Fixed typo in constructor
3833
3834 2007-04-26  Jonathan Pobst  <monkey@jpobst.com>
3835
3836         * Application.cs: Create a shortcut path so that currently selected
3837         MenuStrips can intercept keyboard events without having focus.
3838         * Control.cs: Handle WM_SYSCOMMAND message to activate MenuStrips.
3839         * MenuStrip.cs, ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownItem.cs,
3840         ToolStripItem.cs, ToolStripManager.cs, ToolStripMenuItem.cs: Support
3841         keyboard navigation (arrows, tab, enter, esc) on Windows.  Still need to
3842         generate WM_SYSCOMMAND message in X11 for other platforms.
3843         * ToolStripProfessionalRenderer.cs: ToolStripMenuItems need to be painted
3844         in OnRenderMenuItemBackground instead of OnRenderButtonBackground.
3845         * ToolStripSplitButton.cs: Add DefaultItem property.
3846         
3847 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
3848
3849         * MainMenu.cs: In OnMenuChanged pass PaintEventArgs to Draw method, it
3850         fixes some menu draw problem on Windows with border diferent from default
3851         it also fixes #81403.
3852
3853 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3854
3855         * Form.cs: Refactor WndProc into separate methods, just like Control is
3856           doing it.
3857
3858 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3859
3860         * Control.cs: set_Text: move the call to the driver into a seperate
3861           virtual method so that Form can override it.
3862         * MaskedTextBox.cs: Corcompare fixes.
3863         * Form.cs: Override UpdateWindowText and only update the styles if the
3864           form has been shown (fixes #81405).
3865
3866 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
3867
3868         * Control.cs, Form.cs: Use the better supported WM_?BUTTONDOWN and
3869         WM_ACTIVATE messages instead of WM_MOUSEACTIVATE and
3870         WM_ACTIVATEAPP.  This fixes menus not disappearing on X11 when
3871         the form lost focus or another control was clicked.
3872
3873 2007-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
3874
3875         * DataGrid.cs: Uncomment MakeTransparent calls since bug #80151 is
3876         fixed.
3877
3878 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3879
3880         * DrawListViewColumnHeaderEventHandler.cs, DrawToolTipEventArgs.cs,
3881           DrawListViewItemEventHandler.cs,
3882           DrawListViewSubItemEventHandler.cs, DrawToolTipEventHandler.cs:
3883           Added.
3884         * X11Structs.cs: More ToString implementation.
3885
3886 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
3887
3888         * ToolStripDropDownItem.cs: Don't lazy create a DropDown in Dispose.
3889         * ToolStripOverflowButton.cs: Don't lazy create a DropDown in HasDropDownItems.
3890
3891 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3892
3893         * Control.cs: Only raise OnVisibleChanged if we're not recreating the
3894           handle.
3895         * FormCollection.cs: Don't add a form if it's already in the
3896           collection.
3897         * Form.cs: Change ShowDialog () to call ShowDialog (owner) with a null
3898           according to behaviour and MSDN. The ownerWin32 is the active
3899           window at the moment when we call ShowDialog, not the context's
3900           main form (the context's main form may open another form that opens
3901           a form with ShowDialog, the win32 owner is the second form). Add
3902           and remove forms to the Application.OpenForms in other places to
3903           better match MS behaviour. Add an IsActive property that raises
3904           On(de)Activated only if the active state has changed (we were
3905           raising OnDeactivated before OnActivated while creating forms).
3906         * Application.cs: Refactor Enabling/Disabling of windows for modal
3907           dialog loops out to separate methods, and restore the thread
3908           context when we quit the method. Fixes #81407.
3909
3910 2007-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3911
3912         * ListView.cs: In ItemControl.HandleClicks, also fire 
3913         2.0 MouseClick or MouseDoubleClick events on the parent,
3914         not only the Click/DoubleClick events.
3915
3916 2007-04-24  Andreia Gaita  <avidigal@novell.com>
3917
3918         * TableLayoutSettings.cs: 
3919         - Added a GetControls method and a support structure to help the 
3920         TypeConverter to enumerate the controls for     serialization. 
3921         - Added a new serialization constructor. 
3922         - Added a isSerialized flag initialized to true on the 
3923         serialization constructor so that the TableLayoutPanel.LayoutSettings 
3924         setter does not throw the designed NotSupportedOperation exception
3925         when the object is built through deserialization.
3926         - Implemented GetObjectData
3927         
3928         * TableLayoutPanel.cs: Added check on LayoutSettings.
3929
3930 2007-04-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3931
3932         * ListView.cs: Report Click and DoubleClick events to the parent
3933         from ItemsMouseUp, instead of ItemsMouseDown. This prevents us
3934         from breaking the click count state when using dialog forms (Control
3935         reports the clicks in a similar fashion). In the previous behaviour
3936         the last WM_LBUTTONUP message in a  double click was sent to the
3937         ListView's form, instead of the ListView, which was breaking the click
3938         count for it. Fixes #80387.
3939
3940 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
3941
3942         * BindingNavigator.cs : fixed bugs revealed by new nunit tests
3943
3944 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
3945
3946         * ToolStripDropDownItem.cs: Lazy initialize the DropDown.  This prevents
3947         us from created dropdowns for menu items that do not have subitems.
3948         * ToolStripItem.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs:
3949         Check HasDropDownItems before calling DropDown so a dropdown will not be
3950         created if it isn't needed.
3951
3952 2007-04-24  Jackson Harper  <jackson@ximian.com>
3953
3954         * TreeView.cs: Set the first node to the selected node when we get
3955         focus if there is no selected node.
3956
3957 2007-04-24  Andreia Gaita  <avidigal@novell.com>
3958
3959         * MimeIcon.cs: remove using blocks so that image streams are
3960         not disposed of. Fixes #80151
3961
3962 2007-04-24  Jackson Harper  <jackson@ximian.com>
3963
3964         * TextBoxBase.cs: Fixup the height of textboxes when the control
3965         is created.
3966
3967 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
3968
3969         * ToolStrip.cs: Fully implement GetNextItem.  Call OnParentRightToLeftChanged
3970         for each ToolStripItem when the parent's RightToLeftChanged is called.
3971
3972 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3973
3974         * ComboBox.cs: Forward ContextMenu to the underlying textbox, if any.
3975           Fixes #80163.
3976         * Control.cs: Replace GetContextMenuInternal() with ContextMenuInternal
3977           property, so that the setter can be overriden too.
3978         * TextBox.cs: Change GetContextMenuInternal() to use
3979           ContextMenuInternal.
3980
3981 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3982
3983         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
3984           #81406.
3985
3986 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3987
3988         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
3989           #81406.
3990
3991 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3992
3993         * MaskedTextBox.cs: Commit this so nobody else starts working on it and
3994           avoid duplicate work. Mostily skeleton code, it's not working at
3995           all yet.
3996
3997 2007-04-20  Leszek Ciesielski <skolima@gmail.com>
3998
3999         * NotifyIcon.cs : stub for MouseClick event
4000         * Application.cs: stub for SetUnhandledExceptionMode
4001
4002 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
4003
4004         * BindingNavigator.cs : Initial (partial) implementation
4005
4006 2007-04-23  Jackson Harper  <jackson@ximian.com>
4007
4008         * TreeView.cs: Do not create the treeview's handle when setting
4009         the scroll position.
4010         - ExpandAll needs to compute the scrollbars so it knows which
4011         position to set the bar too.
4012         * TreeNode.cs: 
4013         * TreeNodeCollection.cs: Pass new flag to UpdateScrollBars
4014
4015 2007-04-23  Jackson Harper  <jackson@ximian.com>
4016
4017         * TextBoxBase.cs: Non multiline textboxes shouldn't take the enter
4018         key. Fixes #81408.
4019
4020 2007-04-23  Jonathan Pobst  <monkey@jpobst.com>
4021
4022         * ToolStripItem.cs: Make GetImageSize internal.
4023         * ToolStripMenuItem.cs: Use GetImageSize to determine the size we
4024         need to draw an item.  Fixes a reported issue where images on menus
4025         that were not 16x16 were drawing incorrectly.
4026
4027 2007-04-21  Miguel de Icaza  <miguel@novell.com>
4028
4029         * Padding.cs: Use the converter, fixes the resgen2 issue with
4030         XMLNotePad. 
4031
4032 2007-04-21  Jackson Harper  <jackson@ximian.com>
4033
4034         * TreeView.cs: Dont try to unhighlight the selected node if there
4035         isn't a selected node.
4036
4037 2007-04-21  Jackson Harper  <jackson@ximian.com>
4038
4039         * UpDownBase.cs:
4040         * TextBoxBase.cs:
4041         * ListView.cs:
4042         * ListBox.cs:
4043         * TreeView.cs: Use the InternalBorderStyle property to set the
4044         initial border style, this forces the client rectangle to be sized
4045         correctly.
4046
4047 2007-04-20  Jackson Harper  <jackson@ximian.com>
4048
4049         * TreeView.cs: Simplify scrolling to the last node after expanding
4050         all.
4051         - Fix some off by ones with setting the bottom.
4052
4053 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
4054
4055         * Control.cs: Use DefaultSize for Size, calculate ClientSize from
4056         that.  We were incorrectly doing it the other way around.  Also,
4057         update ClientSize if we change the BorderStyle before the control
4058         is created.
4059
4060 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
4061
4062         * XplatUI.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
4063         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
4064         XplatUIDriver.Caption to CaptionHeight. Spaces to tabs.
4065         * XplatUIDriver.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
4066         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
4067         Caption to CaptionHeight.
4068         * XplatUIX11.cs: Renamed Caption to CaptionHeight.
4069         * Theme.cs: Modified Border3DSize, BorderSize, CaptionButtonSize
4070         and FixedFrameBorderSize to return value from current XplatUI driver.
4071         * XplatUIWin32.cs: Implemented Border3DSize, BorderSize,
4072         CaptionButtonSize, DragFullWindows, DoubleClickSize, DoubleClickTime
4073         and FixedFrameBorderSize using win32 API. Renamed Caption to
4074         CaptionHeight.
4075         * XplatUIOSX.cs: Renamed Caption to CaptionHeight.
4076         * SystemInformation.cs: Fixed typo in BorderSize.
4077
4078 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
4079
4080         * XplatUI.cs: Added MenuAccessKeysUnderlined.
4081         * XplatUIDriver.cs: Added MenuAccessKeysUnderlined.
4082         * XplatUIX11.cs: Implemented MenuAccessKeysUnderlined by always
4083         returning false.
4084         * Theme.cs: Modified MenuAccessKeysUnderlined to return corresponding
4085         value from XplatUI driver.
4086         * XplatUIWin32.cs: Implemented MenuAccessKeysUnderlined using
4087         SystemParametersInfo.
4088         * ThemeWin32Classic.cs: Remove obsolete MenuAccessKeysUnderlined
4089         override.
4090         * XplatUIOSX.cs: Implemented MenuAccessKeysUnderlind by always
4091         returning false.
4092
4093 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4094
4095         * XplatUIX11.cs, Hwnd.cs: Remove warnings.
4096
4097 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4098
4099         * MessageBox.cs, XplatUIX11.cs, Hwnd.cs: Remove warnings.
4100
4101 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
4102
4103         * ToolStripManager.cs: Fix a reported InvalidCastException when unmerging
4104         MenuStrips that contain ToolStripSeparators.
4105
4106 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4107
4108         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Add
4109           DefineStdCursorBitmap.
4110         * Cursor.cs: Add an internal constructor so that the Cursor knows if it
4111           has been created off a standard cursor. This is used to get a
4112           bitmap of the standard cursor when Draw or DrawStretched is called
4113           in order to draw the cursor.
4114         * X11Structs.cs: Added XcursorImage and XcursorImages.
4115         * XplatUIX11.cs, XplatUIWin32.cs: Add and implement
4116           DefineStdCursorBitmap.
4117         * Cursors.cs: Update all relevant creations of Cursor to use the new
4118           internal constructor.
4119
4120 2007-04-19  Jackson Harper  <jackson@ximian.com>
4121
4122         * TextBox.cs: Move the has_been_focused into the base control, so
4123         some of the text adding methods can manipulate it (probably time
4124         for a better name for this flag too).
4125         - Call a new version of selectall that doesn't scroll
4126         * TextBoxBase.cs: When we append text, if the document is empty,
4127         don't scroll.  If the document has text already, we scroll to the
4128         end of the appended text.
4129         - When the text is changed, we reset the has_been_focused, so the
4130         next time the control gets focused, all the text is selected.
4131
4132 2007-04-19  Jackson Harper  <jackson@ximian.com>
4133
4134         * TextControl.cs: Move the margins to the document, add a method
4135         so the margin sizes can be updated.
4136         * TextBoxBase.cs: When the border style is changed, update the
4137         border sizes.
4138
4139 2007-04-19  Jonathan Pobst  <monkey@jpobst.com>
4140
4141         * Control.cs: Respect DefaultPadding.
4142         * GroupBox.cs: Implement DefaultPadding, DisplayRectangle takes
4143         padding into account.
4144         * ToolStrip.cs: Remove setting padding to DefaultPadding in constructor.        
4145
4146 2007-04-19  Jackson Harper  <jackson@ximian.com>
4147
4148         * TextControl.cs: Oops, we need to use the ClientRect not the
4149         bounds here.
4150
4151 2007-04-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4152
4153         * ListView.cs: In ItemControl.ItemsMouseDown, take into
4154         account the double clicks when CheckBoxes are used and
4155         the pointer is inside the checkbox. Fixes part of #81191.
4156
4157 2007-04-18  Jackson Harper  <jackson@ximian.com>
4158
4159         * TextControl.cs: Pressing the end key shouldn't move the caret
4160         past the line ending.
4161         * TextBoxBase.cs: We can still delete if we are in the line
4162         ending and the combine will just kill the existing line ending.
4163
4164 2007-04-18  Jackson Harper  <jackson@ximian.com>
4165
4166         * TextControl.cs: We can't move lines, then invalidate their
4167         bounds, we need to get the old bounds and combine that with the
4168         new bounds.
4169         * TextBoxBase.cs: Before combining two lines for a delete, we need
4170         to invalidate the area of the old line, since that will be moved
4171         in the combine operation.
4172
4173 2007-04-18  Everaldo Canuto  <everaldo@simios.org>
4174
4175         * LinkLabel.cs: In OnPaint invoke draw background to fix problems
4176         with transparent background. Fixes #80482.
4177
4178 2007-04-18  Jonathan Pobst  <monkey@jpobst.com>
4179
4180         * PictureBox.cs: Refresh on resize when SizeMode = Zoom.
4181         * ThemeWin32Classic.cs: Implement PictureBox.SizeMode = Zoom.
4182         [Fixes bug #81391]
4183
4184 2007-04-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4185
4186         * CreateParams.cs: Add a couple of helper methods and do a less string
4187           concatenation in ToString.
4188         * XplatUIX11.cs: Add an TranslateClientRectangleToXClientRectangle
4189           overload that takes a Control parameter, since this method may be
4190           called before a control is assigned to the hwnd (from
4191           CreateWindow), and update CreateWindow to use the new overload. In
4192           GetMenuOrigin subtract the title bar from the y position if the
4193           form has a window manager (since we're painting it and not X).
4194         * XplatUIWin32.cs: If we can get a form in GetMenuOrigin use the form's
4195           CreateParams to calculate the origin (since border sizes may vary).
4196           In ScreenToMenu only subtract the title height if we actually have
4197           a title.
4198         * MdiWindowManager.cs: Override MenuHeight to always return 0, since
4199           mdi children never have menus of themselves.
4200         * InternalWindowManager.cs: Implement menu handling like form does.
4201           Added GetMenuOrigin to calculate the menu origin, can't use the
4202           CreateParams from the form like normally since it's lying.
4203         * Hwnd.cs: Implement GetBorderSize better (in the sense more
4204           windows-like) and add Inflate and comparison operators to the
4205           Borders type. When calculating MenuOrigin and it's a form with a
4206           window manager, use the window manager to calculate it.
4207
4208 2007-04-17  Chris Toshok  <toshok@ximian.com>
4209
4210         * Control.cs (CreateControl): turns out in 2.0 we don't need this
4211         OnBindingContextChanged thing here.  It's only generated from
4212         ContainerControl.OnCreateControl.  Fixes a newly written unit test
4213         - BindingTest.BindingContextChangedTest4.
4214         
4215 2007-04-17  Jackson Harper  <jackson@ximian.com>
4216
4217         * ScrollBar.cs: When setting values, make sure the current
4218         position stays within the new values range.
4219
4220 2007-04-17  Chris Toshok  <toshok@ximian.com>
4221
4222         * Control.cs (CreateControl): talk about a bizarre corner case.
4223         Don't emit OnBindingContextChanged here if we're a parentless
4224         control (i.e. if we're a form.).  Fixes
4225         BindingTest.BindingContextChangedTest2.
4226
4227 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
4228
4229         * ButtonBase.cs: Remove TextFormatFlags.WordBreak to mimic same behavior 
4230         from win32. Fixes #81255.
4231
4232 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
4233
4234         * ThemeWin32Classic.cs: Remove text offset from DrawButtonText as it is
4235         already present in CalculateButtonTextAndImageLayout.
4236
4237 2007-04-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4238
4239         * XplatUIX11.cs: When setting min/max size for a window we need to
4240           translate the coordinates to x coordinates. Create an overload of
4241           SetWindowMinMax that takes a CreateParams handling this, and change
4242           SetWMStyles to call this function (can't use Control.FromHandle in
4243           the SetWindowMinMax to get the control/CreateParams from the handle
4244           because the handle might not have been assigned to the control
4245           yet). Fixes #81371.
4246
4247 2007-04-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4248
4249         * ListView.cs: In ItemControl.ItemMouseDown, don't change check state
4250         if StateImageList is non-null and it has less than two items (match MS
4251         behaviour). Also, in HandleNavKeys handle the Space key, calling
4252         the new ToggleItemsCheckState method, which tries to change the
4253         checked state of the selected items. Fixes part of #81191.
4254
4255 2007-04-16  Jackson Harper  <jackson@ximian.com>
4256
4257         * RichTextBox.cs: namespace cleanup.
4258
4259 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
4260
4261         * XplatUIWin32.cs: Back last parameter to true in SetClipRegion.
4262
4263 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
4264
4265         [Fixes #79447]
4266         * Control.cs: Call invalidate in set_Region.
4267
4268         * XplatUIX11.cs, XplatUIWin32.cs: Remove invalidate from SetClipRegion as
4269         it dont works here.
4270
4271 2007-04-16  Jackson Harper  <jackson@ximian.com>
4272
4273         * TextBoxBase.cs: When enter is pressed, we need to update all
4274         lines below the current.
4275
4276 2007-04-16  Jonathan Pobst  <jpobst@monkey.com>
4277
4278         * MdiClient.cs: Implement implicit menu merging for MDI
4279         children.  When a child form is active, if it has a menustrip
4280         and the parent form has a MainMenuStrip, automatically merge
4281         the menus.
4282
4283 2007-04-15  Andreia Gaita  <avidigal@novell.com>
4284
4285         * TabControl.cs: Refactored sizing methods to not repeat
4286         code all over the place. Tab bounds are now calculated
4287         as if alignment is top and single line, and only when 
4288         setting the bounds are the positions adjusted according
4289         to alignment. Replaced hardcoded positions, spacings and
4290         paddings by getting the values the ThemeEngine. 
4291         Fixes #79619.
4292         
4293         * Theme.cs: Change TabControl properties and methods so
4294         that all start with TabControl*. Added more properties
4295         to help remove hardcoded values on tabcontrol.
4296         Add CPDrawBorder3D declaration so the Theming classes
4297         can access it.
4298         
4299         * ThemeClearlooks.cs, ThemeNice.cs: Method signature changes from Theme.
4300
4301         * ThemeWin32Classic.cs: Rector TabControl out to the TabControlPainter
4302         on the Theming namespace, and call the appropriate methods here.
4303         Change CPDrawBorder3D to public.
4304
4305 2007-04-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4306
4307         * Control.cs: In WmRButtonUp, send the WM_CONTEXTMENU message to
4308         the control after firing the OnMouseUp event, instead of sending
4309         the message before the mentioned event. This is so we can match the
4310         MS behaviour. Fixes part of #80385.
4311
4312 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
4313
4314         * ToolStripItem.cs: Call the RightToLeftChanged event when setting the
4315         RightToLeft property.
4316
4317 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
4318
4319         * ToolStrip.cs: Add properties and internal methods to support merging.
4320         * ToolStripItem.cs: Add MergeAction and MergeIndex.
4321         * ToolStripItemCollection.cs: Add Insert and Remove methods that do
4322         not trigger reparenting or layouts.
4323         * ToolStripManager.cs: Add Merge and RevertMerge methods.
4324         * ToolStripOverflow.cs: Add a convenience method to find the ToolStrip that
4325         is hosting the overflow menu.
4326
4327 2007-04-13  Jackson Harper  <jackson@ximian.com>
4328
4329         * TextControl.cs: Set the line ending correctly for the first
4330         inserted line.
4331
4332 2007-04-13  Sebastien Pouliot  <sebastien@ximian.com>
4333
4334         * Theme.cs: Update GetMethod to get the new definition for 
4335         KnownColors.Update (and fix theme color updates).
4336
4337 2007-04-12  Everaldo Canuto  <everaldo@simios.org>
4338
4339         * MessageBox.cs: Fix some test and button position.
4340
4341 2007-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4342
4343         * Form.cs: Consider the implicit controls in
4344         GetRealChildAtPoint. We need it since this method
4345         is called on Form when handling the some messages in
4346         WndProc, and need to consider those implicit ones too.
4347         Fixes #80385.
4348
4349 2007-04-12  Jonathan Pobst  <monkey@jpobst.com>
4350
4351         * ToolStripMenuItem.cs: Display the ShortcutKeyDisplayString even
4352         if there are no ShortcutKeys set.
4353         * ToolStripProfessionalRenderer.cs: If an item has had its BackColor
4354         set, use it when painting.
4355
4356 2007-04-12  Jackson Harper  <jackson@ximian.com>
4357
4358         * TextControl.cs: Fix some off-by-one issues in line duplication
4359         and insertion in the undo manager. Also, overwrite the first tag
4360         of a line on insert, if it is just a zero lengthed tag. This
4361         prevents us from getting an extra stranded tag at the beginning of
4362         the first line.
4363
4364 2007-04-11  Everaldo Canuto  <everaldo@simios.org>
4365
4366         * Label.cs: Remove check for handle created in CalcAutoSize, we need 
4367         to calculated proper size including when handle was not created yet.
4368
4369 2007-04-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4370
4371         * MdiWindowManager.cs: When moving a form, allow the form to be moved
4372           when the mouse is outside of it's parent's client rectangle. Fixes
4373           #79982 (take 3, part 2).
4374
4375 2007-04-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4376
4377         * X11Structs.cs: Add a few ToString() overrides.
4378         * XplatUIX11.cs: Added GetTopLevelWindowLocation to try to calculate
4379           the window location in a window-manager independent way. Reworked
4380           FrameExtents, it now actually works. Reworked AddConfigureNotify
4381           and ReparentNotify handling to use GetTopLevelWindowLocation
4382           instead of the earlier, more hacky solution. Reworked SetWMStyles,
4383           hopefully for the better: we now set _NET_WM_WINDOW_TYPE* for all
4384           windows, DIALOG for modal windows, UTILITY for toolboxes and NORMAL
4385           for all other windows (fixes #81281 part 1), a toolwindow is hidden
4386           from the taskbar if it has a parent (fixes #81281 part 2 for kwin),
4387           and generally refactored to do as few calculations as possible
4388           inside the lock.
4389
4390 2007-04-09  Sebastien Pouliot  <sebastien@ximian.com>
4391
4392         * Theme.cs: Change "reflective-contract" between MWF and SD to 
4393         minimize # of calls, avoid Color serialization and avoid updating 
4394         every "known colors" each time a single one is updated.
4395
4396 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
4397
4398         * DataGridTextBoxColumn.cs: Only set IsInEditOrNavigateMode to false
4399         when not readonly and the text is explicitly set. Code style updates.
4400         * DataGridTableStyle.cs: Removed extra line.
4401         * DataGrid.cs: Code style updates. Removed extra whitespace.
4402         * DataGridColumnStyle.cs: Code style updates. Removed extra 
4403         whitespace.
4404
4405 2007-04-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4406
4407         * XplatUIX11.cs: Added comment that "fixes" #80021.
4408
4409 2007-04-09  Jackson Harper  <jackson@ximian.com>
4410
4411         * TextControl.cs: We don't need this -1 on the line count anymore.
4412
4413 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
4414
4415         * DataGridTextBoxColumn.cs: In Commit, use TypeConverter to convert
4416         entered value to underlying type, and convert it back to a string to
4417         apply formatting. Modified GetFormattedValue to use TypeConverter
4418         if available.
4419
4420 2007-04-08  Gert Driesen  <drieseng@users.sourceforge.net>
4421
4422         * ListViewItem.cs: Added null checks. Avoid duplicating code in ctors.
4423         Use SubItems property when we want to ensure there's at least one
4424         subitem. Modified SubItems property to ensure there's always at least
4425         one subitem. Avoid using ListViewSubItemCollection.AddRange to match
4426         the NRE's reported by MS.
4427
4428 2007-04-07  Gert Driesen  <drieseng@users.sourceforge.net>
4429
4430         * ProgressBar.cs: On 2.0 profile, default forecolor is Highlight. Added
4431         ResetForeColor override on 2.0. Fixed a few API compatibility issues.
4432         Spaces to tabs. Removed extra tabs.
4433
4434 2007-04-06  Jonathan Pobst  <monkey@jpobst.com>
4435
4436         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
4437         infinite loop.  (Forgot to copy to the horizontal toolstrip case.)
4438
4439 2007-04-06  Jackson Harper  <jackson@ximian.com>
4440
4441         * TextBoxBase.cs: When a delete removes a line, recalculate all
4442         lines below that line (they need to get offsets setup correctly)
4443         and invalidate.
4444
4445 2007-04-05  Jackson Harper  <jackson@ximian.com>
4446
4447         * TextControl.cs: We need to invalidate across the width of the
4448         document when we are invalidating multiple lines.
4449         * TextBoxBase.cs: Don't delete into the line ending.
4450
4451 2007-04-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4452
4453         * ListView.cs: Restore the check for the MouseHover event
4454         in ListView. It looks like the ListView fires more than one MouseHover
4455         event when HoverSelection is true  _only_ in weird-corner scenarios, but
4456         in most of the cases it only fires one. Also, add the 2.0 ItemMouseHover
4457         event.
4458
4459 2007-04-05  Mike Kestner  <mkestner@novell.com>
4460
4461         * ListView.cs : raise MouseDown before updating selection.
4462         [Fixes #80373 tab 1&3]
4463
4464 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
4465
4466         * ToolStripRenderer.cs: Add static method to mirror image.
4467         * ToolStripProfessionalRenderer.cs: Support ImageTransparentColor
4468         and RightToLeftAutoMirrorImage.
4469         * ToolStripItem.cs: Remove MonoTODO from ImageTransparentColor.
4470
4471 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
4472
4473         * ToolStripSplitStackLayout.cs: Support Alignment property.
4474         * ToolStripItem.cs: Remove MonoTODO from the Alignment property.
4475
4476 2007-04-05  Jackson Harper  <jackson@ximian.com>
4477
4478         * TextControl.cs: Move around the line endings when crossing line
4479         boundaries.
4480         - When combining lines, strip the ending text off the first line.
4481
4482 2007-04-05  Jackson Harper  <jackson@ximian.com>
4483
4484         * TextControl.cs:
4485         * TextBoxBase.cs: Try to never move the cursor into the line
4486         ending.
4487         
4488 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
4489
4490         * ToolStripItem.cs: Make sure we aren't firing mouse events when
4491         the item is disabled.  Also add a few missing methods.
4492
4493 2007-04-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4494
4495         * ListView.cs: We don't need the MouseEnter/MouseLeave check
4496         to fire just one MouseHover event when HoverSelection is true, since
4497         .Net does fire more than one MouseHover event in that scenario. Also,
4498         fix the selection in HoverSelection, by invoking UpdateMultiSelect
4499         if MultiSelect is true, instead of only setting ListViewItem.Selected.
4500         Finally, we need to reset the Hover logic in MouseMove, even when we
4501         don't have a selected item.
4502
4503 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
4504
4505         * ToolStrip.cs: Add several missing methods, properties, and events.
4506
4507 2007-04-04  Chris Toshok  <toshok@ximian.com>
4508
4509         * DataGridTextBoxColumn.cs: set the bounds of the text box to
4510         (0,0,0,0) in Commit, as MS does.
4511
4512         * DataGrid.cs: call EndEdit() from Select() as microsoft does, and
4513         make sure we set CurrentRow on a row header click *before* calling
4514         Select.  This moves the current cell (and the textbox) to the new
4515         row.  The call to Select then hides the textbox, giving us the
4516         correct behavior.  Fixes #80362.
4517
4518         * CurrencyManager.cs (UpdateIsBinding): raise ItemChanged (-1).
4519         (ListChangedHandler): reorder the position/current changed events,
4520         and call UpdateIsBinding in the ItemAdded case.
4521
4522         * GridColumnStylesCollection.cs: add some columns events, one of
4523         which raises the CollectionChanged event.
4524
4525 2007-04-04  Jackson Harper  <jackson@ximian.com>
4526
4527         * TextControl.cs: When we delete multiple selection lines
4528         invalidate the selection area, don't need to do that for single
4529         lines because the final update view will handle it.
4530
4531 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
4532
4533         * Control.cs: When we CreateControl, we need to also create all of the
4534         control's children.  The child's OnLoad must also fire before the parent's
4535         OnLoad.  Fixes the toolbox size in PDN.
4536
4537 2007-04-04  Jackson Harper  <jackson@ximian.com>
4538
4539         * TextBoxBase.cs: When the user presses enter, insert a line
4540         ending into the text. (Maybe this would be a good spot for
4541         Environment.NewLine).
4542         * TextControl.cs: Remove undo manager hack, line endings get
4543         inserted properly now.
4544         
4545 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
4546
4547         * MenuAPI.cs: 
4548         - Remove unneeded parameters in UpdateCursor.
4549         - Fix UpdateCursor to check if menu is active.
4550         - Call UpdateCursor when menu deactivate my click.
4551         [Fixes remaining issues from #80410]
4552
4553 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
4554
4555         * Control.cs: GetRealChildAtPoint method added, it make an
4556         recursive child control search for the point. 
4557
4558         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
4559         menu.
4560
4561         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
4562
4563 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
4564
4565         * Form.cs: Fix mouse position when send back mouse event after closes
4566         menu.
4567
4568 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
4569
4570         * Form.cs: Simplify the BUTTONDOWN for active tracker.
4571
4572 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
4573
4574         * Control.cs: Fix an issue where if a user resized a control inside
4575         a sizing method like OnResize, we would overwrite their explicit
4576         value.  Also, only call DefaultSize once in the constructor instead
4577         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
4578         nothing actually changed.
4579
4580 2007-04-03  Jackson Harper  <jackson@ximian.com>
4581
4582         * TextControl.cs: Don't attempt to copy text for lines with no
4583         text in them (technically this shouldn't happen, but we aren't
4584         always inserting line endings when we should be).
4585
4586 2007-04-03  Jackson Harper  <jackson@ximian.com>
4587
4588         * TextBoxBase.cs: Calculate the scrollbars before calculating the
4589         document, because this sets some of the document size properties
4590         that are needed.
4591
4592 2007-04-03  Jackson Harper  <jackson@ximian.com>
4593
4594         * TextBoxBase.cs: We need to calculate maximums even if this is
4595         not a multiline control, because the maxs are used for scrolling.
4596         - Display the caret after doing a page up/down, we need to
4597         manually display it because a proper CaretMoved event isn't
4598         triggered (this is because of the way the math is done to
4599         determine how far to scroll).
4600
4601 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
4602
4603         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
4604         (ToolBar was relying on SetBoundsCore to default the values sent 
4605         base off of BoundsSpecified.)
4606
4607 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4608
4609         * DateTimePicker.cs: Change Text so that when a null value or empty
4610           string is assigned to the test we always raise ValueChanged and
4611           TextChanged (earlier implementation would only raise ValueChanged
4612           if the current date value was different from DateTime.Now).
4613
4614 2007-04-03  Andreia Gaita <avidigal@novell.com> 
4615
4616         * ButtonBase: Call update after invalidation, fixes #80194
4617
4618 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4619
4620         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
4621           #79335.
4622
4623 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4624
4625         * XplatUIX11.cs: SetWMStyles: If the control is a form with
4626           FormBorderStyle = None, don't give the window any decorations.
4627           Fixes #81276.
4628
4629 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4630
4631         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
4632         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
4633           to check for is a mix of several styles (such as WS_CAPTION for
4634           instance).
4635         * Control.cs: Don't paint an area bigger than the client area when
4636           painting the background colour. Add an internal GetCreateParams.
4637           Update calls to XplatUI.CalculateWindowRect due to API change.
4638         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
4639           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
4640           the size if it hasn't been handled by any windows. When creating
4641           and moving windows, X wants the location of the entire window, but
4642           the size of the client window, so add
4643           TranslateClientRectangleToXClientRectangle,
4644           TranslateWindowSizeToXWindowSIze and
4645           TranslatedXWindowSizeToWindowSize to cope with this, and call them
4646           before every window creation and move. Update CalculateWIndowRect
4647           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
4648           In AddConfigureNotify don't do anything if the hwnd is a zombie
4649           (fixes the BadWindow we were getting while running the tests),
4650           always calculate the offsets when it's a parentless window, not
4651           only when reparented, and translate the window size, since we're
4652           getting the client size of the whole window, excluding entire
4653           window.
4654         * Theme.cs: Added BorderSizableSize.
4655         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
4656           anymore. Update calls to XplatUI.CalculateWindowRect due to API
4657           chang
4658         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
4659           change. Fake the window styles here instead of in XplatUIWin32 so
4660           that all back-ends get the same window styles (and it's Form that's
4661           deciding when to use wm, not the Win32 backend anyways)
4662         * Hwnd.cs: Completely reworked GetWindowRectangle and
4663           GetClientRectangle - they are now passed a CreateParams and they
4664           only use Style and ExStyle to determine the rectangles (they should
4665           now work just like Win32AdjustWindowRectEx - though quite a few
4666           special cases are probably missing). They should also be 100%
4667           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
4668           == rect), and all numbers (borders, menu sizes) are taken from the
4669           current theme. Added a GetBorders helper function that will return
4670           the borders for any given CreateParams (including captions and
4671           menus), and GetBorderSize that returns the given border size only.
4672         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
4673           Hwnd.GetClientRectangle.
4674
4675 2007-04-02  Chris Toshok  <toshok@ximian.com>
4676
4677         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
4678         logic between the values we present to the user and the values
4679         which are stored in the column's property.  Also, don't call
4680         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
4681
4682 2007-04-02  Jackson Harper  <jackson@ximian.com>
4683
4684         * TextBoxBase.cs: Scroll faster!
4685
4686 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
4687
4688         * StatusStrip.cs: Layout fixes for PDN.
4689         * ToolStrip.cs: Set item's available to true, and placement to main when
4690         added.
4691         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
4692         changing in setter before doing any work, add InternalVisible.
4693         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
4694         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
4695         infinite loop.
4696
4697 2007-04-02  Jackson Harper  <jackson@ximian.com>
4698
4699         * TextBox.cs: LBUTTON does not make the textbox select all of it's
4700         text on focus.
4701
4702 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4703
4704         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
4705           Makes ToolStripComboBoxes show up again.
4706
4707 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4708
4709         * ListView.cs: Add a hover_pending field in ListView
4710         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
4711         cycle (we are resetting the MouseHover logic in XplatUI
4712         to handle HoverSelection). Fixes #80429.
4713
4714 2007-04-02  Jackson Harper  <jackson@ximian.com>
4715
4716         * TextControl.cs: Make sure the attributes get set on the last
4717         tag.
4718         - Still have to do the end tag if we have stepped all the ways to
4719         the end.
4720
4721 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4722
4723         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
4724         on an internal libgdiplus call when the information is already 
4725         available via the public API.
4726
4727 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4728
4729         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
4730           control is removed from a control collecftion.
4731         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
4732           Fixes FormPropertyTest (failed on rare occasions).
4733         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
4734           of Win32SetParent (when changing from no parent to a parent it
4735           might add the new parent's location in screen coordinates to this
4736           window's location).
4737         * Form.cs: Rework ChangingParent once again, now the handle is
4738           recreated whenever a FormWindowManager is added or removed (that is
4739           whenever a normal form is parented or abandoned). Also change
4740           CreateParams so that all non-toplevel windows always get the
4741           specified sice (StartupPosition is never considered for
4742           non-TopLevel forms).
4743         * ContainerControl.cs: Add ChildControlRemoved, the container control
4744           needs to be notified when a control is removed from it's
4745           collection, in the case the removed control is the active control.
4746
4747 2007-04-02  Jackson Harper  <jackson@ximian.com>
4748
4749         * RichTextBox.cs: Use the new methods for setting the font and
4750         color, these methods set the specified attribute without
4751         overriding the other attributes.
4752
4753 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
4754
4755         * ToolStripPanel.cs: Fixes for better layouts in PDN.
4756
4757 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
4758
4759         * TextBox.cs: Added internal ChangeBackColor method to special-case
4760         Color.Empty. Added check for invalid ScrollBars value.
4761         * TextBoxBase.cs: Added internal ChangeBackColor method.
4762         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
4763         internal ChangeBackColor method to special-case Color.Empty. Added
4764         check for invalid ScrollBars value.
4765
4766 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
4767
4768         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
4769
4770 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
4771
4772         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
4773         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
4774         [Based on submitted patch from Olivier Duff.]
4775
4776 2007-03-30  Jackson Harper  <jackson@ximian.com>
4777
4778         * TextBox.cs: Only select all on initial focus if the user has not
4779         specified a selection area.
4780
4781 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
4782
4783         * UserControl.cs: Override CreateParams.
4784
4785 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4786
4787         [ Fixes #80995 ]
4788
4789         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
4790         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
4791           check for is a mix of several styles (such as WS_CAPTION for instance).
4792         * Control.cs: Don't paint an area bigger than the client area when painting
4793           the background colour. Add an internal GetCreateParams. Update calls to
4794           XplatUI.CalculateWindowRect due to API change.
4795         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
4796           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
4797           hasn't been handled by any windows. When creating and moving windows, X
4798           wants the location of the entire window, but the size of the client
4799           window, so add TranslateClientRectangleToXClientRectangle,
4800           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
4801           to cope with this, and call them before every window creation and move.
4802           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
4803           removing DeriveStyles). In AddConfigureNotify don't do anything if the
4804           hwnd is a zombie (fixes the BadWindow we were getting while running the
4805           tests), always calculate the offsets when it's a parentless window, not
4806           only when reparented, and translate the window size, since we're getting
4807           the client size of the whole window, excluding entire window.
4808         * Theme.cs: Added BorderSizableSize.
4809         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
4810           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
4811         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
4812           Fake the window styles here instead of in XplatUIWin32 so that all
4813           back-ends get the same window styles (and it's Form that's deciding when
4814           to use wm, not the Win32 backend anyways)
4815         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
4816           they are now passed a CreateParams and they only use Style and ExStyle
4817           to determine the rectangles (they should now work just like
4818           Win32AdjustWindowRectEx - though quite a few special cases are probably
4819           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
4820           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
4821           sizes) are taken from the current theme. Added a GetBorders helper
4822           function that will return the borders for any given CreateParams
4823           (including captions and menus), and GetBorderSize that returns the given
4824           border size only.
4825         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
4826           Hwnd.GetClientRectangle.
4827
4828 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4829
4830         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
4831           layout of the mdi children is handled by CreateParams. Fixes
4832           #79964,
4833
4834 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4835
4836         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
4837         processed.
4838
4839         * Form.cs: When active tracker mouse down is not processed, send event 
4840         back to control inside mouse position. [Fixes #81227]
4841
4842 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
4843
4844         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
4845         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
4846         stealing focus from the active form on Windows.  (Control will be made
4847         visible in ShowWindow.)
4848
4849 2007-03-29  Mike Kestner  <mkestner@novell.com>
4850
4851         * ImageList.cs : add internal Changed event.
4852         * ListView.cs : hook up to StateImageList.Changed to perform
4853         invalidations when the the state icon list changes. [Fixes #81191]
4854
4855 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
4856
4857         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
4858         to prevent tooltips from stealing focus from the active form on Windows.
4859
4860 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4861
4862         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
4863
4864         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
4865
4866 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4867
4868         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
4869         balloons.
4870
4871 2007-03-29  Jackson Harper  <jackson@ximian.com>
4872
4873         * TextControl.cs: When deleting text from non multiline textboxes,
4874         we need to update the entire document, because line offsets will
4875         be shifting.
4876
4877 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4878
4879         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
4880         added to theme, now we can create themes that uses diferent notify engines
4881         like notification-daemon from galago project or growl for Mac OS.
4882
4883 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
4884
4885         * NotifyIcon.cs: Prevent Balloon to show in task bar.
4886
4887 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
4888
4889         * XplatUIX11.cs: Prevent system to open more than one balloon.
4890
4891         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
4892         some compiler warning messages.
4893
4894 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
4895
4896         [Fixes #79149]
4897
4898         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
4899
4900         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
4901         implemented, this methods is used by NotifyIcon.BalloonWindow class.
4902
4903         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
4904         systems.
4905
4906 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4907
4908         * ListViewItem.cs: Forgot to make Invalidate internal.
4909
4910 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4911
4912         * ListView.cs: Add a InvalidateSelection method to
4913         invalidate methods which are currently selected, and call
4914         it when setting FullRowSelect and HideSelection, instead of
4915         calling Redraw.
4916
4917 2007-03-28  Chris Toshok  <toshok@ximian.com>
4918
4919         * XplatUIX11.cs (UnmapWindow): reindent this block.
4920
4921         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
4922         the selection_start if we're moving the selection (that is, not
4923         extending it). Fixes bug #80461.
4924
4925 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4926
4927         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
4928         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
4929         create private ControlCollection.
4930
4931 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4932
4933         * Control.cs: We need to call OnVisibleChanged for our implicit
4934         children as well as our normal children.  Fixes scrollbars in
4935         comboboxes not showing up.
4936
4937 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4938
4939         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
4940         the check for IsHandleCreated first.  The check in CreateHandle is not
4941         good enough because CreateHandle can be overriden, and the override 
4942         should not be called if the handle is already created.
4943
4944 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4945
4946         * ToolStrip.cs: Remove MonoTODO for tooltips.
4947         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
4948         * ToolStripContainer.cs: Add custom ControlCollection class.
4949         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
4950         * ToolStripDropDown.cs: Add some missing properties/methods.
4951         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
4952         * ToolStripItem.cs: Remove MonoTODO for tooltips.
4953         * ToolStripManager.cs: Add IsShortcutDefined.
4954         * ToolStripOverflow.cs: Override LayoutEngine.
4955         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
4956         * ToolStripSeparator.cs: Add ImageKey.
4957
4958 2007-03-28  Jackson Harper  <jackson@ximian.com>
4959
4960         * TextControl.cs: If a char delete removes a line ending, we need
4961         to update the ending style.
4962         - Make sure the line ending calcs get called.
4963
4964 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4965
4966         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
4967           it was making the new code not work. Fixed a typo in the new code
4968           as well. Fixes #79826.
4969
4970 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4971
4972         * XplatUIWin32.cs:
4973         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
4974         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
4975         - SystrayBalloon method implemented.
4976         [Add support for notifyicon balloon on win32, #79149]
4977
4978 2007-03-27  Mike Kestner  <mkestner@novell.com>
4979
4980         * ThemeWin32Classic.cs : update StateImageList selection to mirror
4981         the ms behavior when only one image is added to the list.
4982         [Fixes #81191]
4983
4984 2007-03-27  Jackson Harper  <jackson@ximian.com>
4985
4986         * TextControl.cs: Improvements to non multiline line ending
4987         drawing/measuing.
4988
4989 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4990
4991         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
4992
4993 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4994
4995         * NotifyIcon.cs: 
4996         - Balloon message handling added.
4997         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
4998
4999         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
5000         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
5001         to SystrayBalloon to me like other Systray method, also a
5002         handle parameter added.
5003
5004 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5005
5006         * ListView.cs: Show scrollbars even when items.Count == 0
5007         but the columns Width is bigger than the ListView.Width.
5008         Also, when columns.Count == 0 set layout_wd and layout_ht
5009         to the ClientRectangle values, so we don't show any scrollbar
5010         in that case.
5011
5012 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
5013
5014         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
5015
5016 2007-03-27  Jackson Harper  <jackson@ximian.com>
5017
5018         * RichTextBox.cs: The RTF library decodes the text properly for us
5019         now.
5020
5021 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5022
5023         * ListView.cs: Display HeaderControl even when columns.Count == 0.
5024         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
5025         ListView header (HeaderControl), instead of Control.BackColor.
5026
5027 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
5028
5029         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
5030         Fixes tab control issues where controls would not show up because they
5031         never received their OnVisibleChanged call.
5032
5033 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
5034
5035         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
5036         BalloonTipShown).
5037
5038 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
5039
5040         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
5041         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
5042         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
5043         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
5044         the handle.  Fix WindowState by using the internal variable until we are 
5045         sure that we've been shown.
5046         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
5047         max or min.
5048         [Fixes bug #81198]
5049
5050 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5051
5052         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
5053           (at least borders). Fixes #79386 on Linux (with a small difference
5054           in behaviour: when trying to resize a caption-less window metacity
5055           shows the sysmenu. Resizing is still possible though).
5056         * XplatUIWin32.cs: When setting window styles send request an extra
5057           WM_NCCALCSIZE when it's a form without title (due to no text and no
5058           caption), since Win32 seems to calculate it wrong the first time we
5059           get the message, though the second time things work as they should.
5060         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
5061           newly reparented window might show up unparented. Update
5062           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
5063           there's no title text. Fixes #79386.
5064
5065 2007-03-27  Mike Kestner  <mkestner@novell.com>
5066
5067         * ListBox.cs : don't perform invalidations if the handle hasn't been
5068         created.  [Fixes #80753]
5069
5070 2007-03-27  Mike Kestner  <mkestner@novell.com>
5071
5072         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
5073         [Fixes #80428]
5074
5075 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
5076
5077         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
5078         needed to implement Balloon.
5079
5080 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5081
5082         * ListViewItem.cs: In the constructors that take
5083         an array of strings, don't use ListViewSubItemCollection.AddRange
5084         method to add items, since we need to have a different behaviour (in
5085         the constructors we add an item for each null string, opposed to
5086         the behaviour of AddRange, which adds nothing).
5087
5088 2007-03-26  Andreia Gaita  <avidigal@novell.com>
5089
5090         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
5091
5092 2007-03-26  Jackson Harper  <jackson@ximian.com>
5093
5094         * TextControl.cs: Draw and measure line endings when in non
5095         multiline mode.
5096         - When searching the text, count the end of the last line as a
5097         word boundary.
5098
5099 2007-03-26  Jackson Harper  <jackson@ximian.com>
5100
5101         * RichTextBox.cs: The selection_start and selection_end don't
5102         really track the correct tags for the selection. So we'll manually
5103         compute the correct tag here.
5104
5105 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5106
5107         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
5108           and Continuous styles. Fixes #79469.
5109
5110 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
5111
5112         * ToolStrip.cs: Implement Tooltips.
5113         * ToolStripItem.cs: Create internal method for determining tooltip.
5114
5115 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
5116
5117         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
5118
5119 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
5120
5121         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
5122         it prevents a problem thak keeps icon visible after application 
5123         closes on win32.
5124
5125 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
5126
5127         * NotifyIcon.cs: Balloon properties and methods created.
5128
5129         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
5130         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
5131
5132 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
5133
5134         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
5135
5136 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
5137
5138         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
5139         parameter indicates which aspects were explicit/user-set.
5140         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
5141
5142 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
5143
5144         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
5145         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
5146         SmallChange, and Value (2.0).
5147         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
5148
5149 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5150
5151         * ListView.cs: Always set item_control.Width in LayoutDetails
5152         if View is Details. Setting it later in CalculateScrollBars
5153         in a not-so-corner scenario (the sum of columns width is
5154         not bigger than the ListView width when handle is created, and then
5155         that sum gets bigger by increasing the width of the columns)
5156         causes a very weird recursion path (which shouldn't be happening,
5157         since header_control sets it in CalculateScrollBars too). This bug
5158         appeared after Chris' fixes for handle created issues, so probably
5159         it's related to some handle-creation time.
5160
5161 2007-03-23  Chris Toshok  <toshok@ximian.com>
5162
5163         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
5164         case where there's an add row, just so we don't end up in a case
5165         where it's not displayed (this happens when the row is partially
5166         obscured).  Fixes bug #79574.
5167
5168 2007-03-23  Jackson Harper  <jackson@ximian.com>
5169
5170         * TextControl.cs:
5171         * TextBoxBase.cs:
5172         * RichTextBox.cs: Preserve line endings in the lines text buffer,
5173         also added an enum that represents the line ending type. 
5174
5175 2007-03-23  Andreia Gaita  <avidigal@novell.com>
5176
5177         * NumericUpDown.cs: Fix logic so Text and Value properties are not
5178         messed with in every method call, but only from DownButton, 
5179         UpButton, UpdateEditText() and ValidateText. Fixes #80346
5180
5181 2007-03-23  Chris Toshok  <toshok@ximian.com>
5182
5183         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
5184         format objects if the format spec is "".  Fixes bug #80889.
5185
5186 2007-03-22  Miguel de Icaza  <miguel@novell.com>
5187
5188         * ToolStripPanel.cs (Join): added stubs to build PDN3
5189
5190         * Control.cs (AutoScrollOffset): Add.
5191
5192         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
5193         property, its only implemented for Win32, on X11 it defaults to
5194         some hardcoded value.
5195
5196         * ToolStripItem.cs (AllowDrop): Add property
5197
5198 2007-03-22  Mike Kestner  <mkestner@novell.com>
5199
5200         * ListView.cs : in FullRowSelect Details mode, only enable box
5201         selection if the user clicks over the "item" column outside of the
5202         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
5203
5204 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5205
5206         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
5207           handle is not created yet.
5208         * Form.cs: Select: Don't call CreateHandle if the handle is already
5209           created, avoids a stack overflow on Windows when we are recreating
5210           controls.
5211         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
5212           they are made visible, and override AfterTopMostControl to keep
5213           them on top when other controls are brought to front.
5214           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
5215           or force_*scroll_visible is true (old implementation always shows
5216           scrollbars when needed, no matter what auto_scroll was set to).
5217         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
5218           IsHandleCreated check.
5219
5220 2007-03-22  Andreia Gaita  <avidigal@novell.com>
5221
5222         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
5223         row or col separator.
5224         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
5225
5226 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
5227
5228         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
5229
5230 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
5231
5232         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
5233         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
5234         every time. Fixes #80410.
5235
5236 2007-03-22  Chris Toshok  <toshok@ximian.com>
5237
5238         * BindingSource.cs (AddNew): partially implement.
5239
5240         remove a couple of NotImplementedException's
5241         to get bug #81148 closed.
5242
5243 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
5244
5245         [Fixes #80380]
5246         
5247         * Control.cs:
5248         - UpdateCursor method added to update the screen cursor.
5249         - GetAvailableCursor method added to return cursor for enabled tree,
5250         it searches for cursor on control and it's parent's for enabled control.
5251         - Call UpdateCursor method on setter of Cursor property.
5252         - On setter of Enabled call UpdateCursor when it is false, we need to
5253         change cursor to normal (or to this parent cursor) because cursor 
5254         setting theres no effect to disabled controls.
5255         - Some minor source changes to follow the coding style guidelines.
5256
5257         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
5258         controls.
5259
5260 2007-03-22  Chris Toshok  <toshok@ximian.com>
5261
5262         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
5263         generates.
5264
5265 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5266
5267         * XplatUIX11.cs: Implement default locations for forms.
5268         * Form.cs: Completely rework startup location for forms. Fixes #79964.
5269         * Hwnd.cs: Add previous_child_startup_location (to track the current
5270           startup location for any child forms of the current form) and
5271           previous_main_startup_location (to track the startup location for
5272           the current toplevel form).
5273
5274 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
5275
5276         * Control.cs: Don't trigger a layout if an implicit control is added
5277         that isn't visible.  Also, don't notify the owner when an implicit control
5278         is added.  (Owners shouldn't even know about their implicit controls.)
5279
5280 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
5281
5282         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
5283         to save some re-layouts.
5284
5285 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
5286
5287         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
5288         [Fixes #81203]
5289
5290 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
5291
5292         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
5293         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
5294
5295 2007-03-21  Mike Kestner  <mkestner@novell.com>
5296
5297         * ListView.cs : disable selection update for non-left button clicks
5298         with mods and over selected items.  [Fixes #80524]
5299
5300 2007-03-20  Jackson Harper  <jackson@ximian.com>
5301
5302         * TextControl.cs:
5303         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
5304         \r\r\n, \n.
5305
5306 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5307
5308         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
5309           very probably a more complicated calculation there. Update the
5310           textbox' ForeColor and BackColor when the ComboBox' colors are
5311           changed. Change the border change in LayoutComboBox to only affect
5312           the textbox, not all the calculations there. Seems to fix most of
5313           #79436.
5314
5315 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5316
5317         * ComboBox.cs: Handle Home and End keys as well as all combinations of
5318           modifiers + navigation keys as input keys, enables advanced text
5319           selection in the combobox (like Shift+Left Arrow for instance).
5320           ComboTextBox now overrides Focused and returns whatever
5321           ComboBox.Focused returns, since it really should be focused
5322           whenever the ComboBox is. Fixes #80795. Also make the border around
5323           the text box one pixel bigger, as mentioned in #79436.
5324
5325 2007-03-20  Jackson Harper  <jackson@ximian.com>
5326
5327         * TreeView.cs: Don't offset the images, this was causing some
5328         artifacts when expanding/collapsing with images that were the
5329         exact height of the treenode.
5330
5331 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5332
5333         * TrackBar.cs: Query the theme for the correct value when the mouse
5334           moves and the thumb is pressed. 
5335         * Theme.cs: Added TrackBarValueFromMousePosition
5336         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
5337           implementation was updating the trackbar value when drawing, now
5338           the drawing methods only draw. Fixes #80900. Refactored the
5339           calculations out to TrackBarValueFromMousePosition and
5340           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
5341           according to the mouse position whenever it wants to. Changed the
5342           light coloured pen when drawing the thumb from ControlLight to
5343           ControlLightLight, because the ControlLight is the same colour as
5344           the background so the 3D effect is lost. 
5345
5346 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5347
5348         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
5349         defined. Fixes #80784.
5350
5351 2007-03-20  Marek Habersack  <mhabersack@novell.com>
5352
5353         * ContextMenuStrip.cs: align with the change introduced in
5354         revision 74664.
5355
5356 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5357
5358         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
5359         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
5360         in SetTopmost.
5361
5362 2007-03-19  Chris Toshok  <toshok@ximian.com>
5363
5364         * Control.cs (WmPaint): don't make use of the Handle property
5365         after an event is emitted, as the user could have closed the
5366         form/destroyed the control.  Store the Handle in a local variable
5367         and make use of that.  Fixes bug #80768.
5368
5369 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5370
5371         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
5372         behavior in X11 environments.
5373
5374 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5375
5376         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
5377         because on setter of topmost we dont call SetTopmost when handle is not
5378         created.
5379
5380 2007-03-20  Jackson Harper  <jackson@ximian.com>
5381
5382         * TextControl.cs: Need to use SelectionLength () not
5383         selection_length, since that var is reset to -1.
5384         - Draw the caret when we don't have focus.
5385         * TextBox.cs: The selectall actually doesn't occur until the first
5386         focus.
5387         * TextBoxBase.cs: Need to update the caret position after a
5388         selectall.
5389         
5390 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5391
5392         * ListView.cs: Enable scrolling when using Tile view.
5393
5394 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5395
5396         [Fixes #80902]
5397
5398         * XplatUIDriver.cs: Abstract SetOwner method created.
5399
5400         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
5401         must be implemented and was masked as todo.
5402
5403         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
5404         GWL_HWNDPARENT.
5405
5406         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
5407         cheking for null owner to remove transient. The SetTopmost will be change
5408         on a decond step.
5409
5410         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
5411         SetTopmost. Now owned forms will work properly in win32 and X11.
5412
5413 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5414
5415         * MdiWindowManager.cs: Update function name.
5416         * Form.cs: After closing a form MdiParent is always null.
5417         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
5418           better what it should do: necessary book-keeping when the form is
5419           closed, it should not close the form itself.
5420
5421 2007-03-19  Andreia Gaita  <avidigal@novell.com>
5422
5423         * ListViewItem.cs: Fix back and fore color. The subitems only
5424         use their own colors if they are set, otherwise use the listview's
5425         colors. Don't set default colors on constructor for subitem.
5426         Fixes #79315.
5427
5428 2007-03-19  Mike Kestner  <mkestner@novell.com>
5429
5430         * ListView.cs : make box selection for Details views with 
5431         FullRowSelect conform to MS behavior when clicking in the "item" 
5432         column and clicking outside the defined columns.
5433         [Fixes case 5-6 of #80374]
5434
5435 2007-03-19  Chris Toshok  <toshok@ximian.com>
5436
5437         * ScrollableControl.cs: create the controls from within the ctor,
5438         but don't actually add them until our handle is created.  this
5439         fixes a NRE possibility jpobst found (if you override OnLayout in
5440         a subclass, it's called before your ctor).  Also, add a
5441         IsHandleCreated guard to UpdateSizeGripVisibility as well.
5442
5443 2007-03-19  Jackson Harper  <jackson@ximian.com>
5444
5445         * TextBox.cs: Reduce the amount of invalidation we do.
5446         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
5447         some of them are true by default on MS.
5448         - Add some functions to reduce the amount of invalidates we do.
5449         * TextControl.cs: Less invalidation.
5450
5451 2007-03-19  Chris Toshok  <toshok@ximian.com>
5452
5453         [ Fixes #81773, and *seems* to fix #81553 as well ]
5454
5455         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
5456         AccumulateDestroyedHandles.  We need to do it *after* we send
5457         WM_DESTROY, as the user's code can access Control.Handle in
5458         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
5459         move the WM_DESTROY/zombie handling to before the call to
5460         XDestroyWindow.  For some reason without this ordering
5461         FormTest.RecreateHandle hangs.  This ordering is semantically
5462         equivalent, however, as XDestroyWindow is async anyway.
5463
5464 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
5465
5466         * RichTextBox.cs: Reset backcolor_set after setting default.
5467
5468 2007-03-19  Chris Toshok  <toshok@ximian.com>
5469
5470         * ScrollableControl.cs: the scroll position should not effect the
5471         canvas size.  commit patch from georgegiolfan@yahoo.com, which
5472         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
5473         
5474 2007-03-19  Chris Toshok  <toshok@ximian.com>
5475
5476         * ScrollableControl.cs: clean this up a bit.  create the
5477         scrollbars in the ctor and just show/hide them as needed.  Also,
5478         make hscroll_visible/vscroll_visible internal to Recalculate, and
5479         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
5480         everywhere else.  This seems to fix the scrollbars appearing
5481         beneath the content for me (i have *no* idea why that is,
5482         however.)
5483
5484 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
5485
5486         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
5487         some redundacy for stuff in Anchor and Dock that base will take care of.
5488         [Fixes #80762]
5489
5490 2007-03-19  Mike Kestner  <mkestner@novell.com>
5491
5492         * ListView.cs : make box selection for Details views without 
5493         FullRowSelect dependent on the text bounds, not item bounds.
5494         * ListViewItem.cs : add an internal property to obtain the TextBounds
5495         in Details view.  [Fixes case 1-4 of #80374]
5496
5497 2007-03-19  Andreia Gaita  <avidigal@novell.com>
5498
5499         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
5500         we're < 2.0. #78448 && #80316
5501
5502 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
5503
5504         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
5505         have the same style available as the previously selected one.  Also,
5506         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
5507
5508 2007-03-19  Jackson Harper  <jackson@ximian.com>
5509
5510         * TextControl.cs: Add an alignment property that all new lines
5511         will be given.
5512         - Make sure to use the align shift when calculating the line's X
5513         position.
5514         * TextBox.cs: Set the alignment on the document as well as on all
5515         the document lines.
5516
5517 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5518
5519         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
5520           throw if setting the parent of an mdichild that already has an
5521           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
5522           AssemblyProductAttribute in the assembly, use the type's namespace (as
5523           MS seems to do). CreateControl: don't create the handle if the control
5524           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
5525           create handle if the control is not a form. Change FocusInternal to
5526           virtual so that it can be overriden by Form.
5527         * TextBox.cs: Update call to FocusInternal.
5528         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
5529           form is not a toplevel form when it's a mdi child, so update is_toplevel
5530           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
5531           hasn't been created. Show (IWin32Window): Don't allow this overload for
5532           toplevel windows. CenterToParent/CenterToScreen/Select: create the
5533           handle as MS does. SetVisibleCore: if called on a MdiChild and the
5534           parent isn't visible yet, save the visibility and restore it when the
5535           parent is made visible.
5536         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
5537           methods, since the visibility of the scrollbars can be changed from
5538           several places, not only from AutoScroll.
5539           [Fixes #81179]
5540
5541 2007-03-19  Jackson Harper  <jackson@ximian.com>
5542
5543         * RichTextBox.cs: Enable shortcuts by default.
5544         * TextBoxBase.cs: Add conditional shortcuts.  
5545
5546 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
5547
5548         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
5549
5550 2007-03-19  Chris Toshok  <toshok@ximian.com>
5551
5552         [ Fixes bug #80604]
5553         
5554         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
5555         swallow the message we're waiting on, instead of delivering it, as
5556         this is only used for the WM_SHOWWINDOW raised from
5557         MapWindow/UnmapWindow, and the message needs to be generated
5558         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
5559         before doing the Map/Unmap.  Also make sure that the Hwnd is still
5560         alive after the message has been handled.
5561
5562         *before* the window is shown.
5563
5564         * Control.cs (CreateControl): guard a few more things inside the
5565         if (!is_created) block, as we might end up being called again -
5566         yay .net.
5567         (WmShowWindow): call CreateControl if we're showing the control.
5568
5569 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5570
5571         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
5572           controls without a handle if they have any parent with a handle. In
5573           Dispose add a check whether the handle is created or not before
5574           calling BeginInvoke, this removes the need of the extra disposing
5575           parameter (which was bogus anyway since it didn't prevent the
5576           invoke from happening, it only skipped the check for an existing
5577           handle, meaning that the invoke would call on an inexistent
5578           handle).
5579
5580 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
5581
5582         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
5583         appears in taskbar.
5584
5585 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
5586
5587         * MessageBox.cs:
5588         - Fixed a problem that dont show help button for messages with 3 buttons.
5589         - Refactory button size and position calculations, now dont use fixed 
5590         values, also fixed button sizes (#80043) and form's border space.
5591         - AddButton method created, now all other AddButton methods call this one.
5592         - Some other source code cosmetic changes.
5593
5594 2007-03-18  Jackson Harper  <jackson@ximian.com>
5595
5596         * RichTextBox.cs: Don't do this all fonts must match check if
5597         there is only one char selected.
5598
5599 2007-03-18  Jackson Harper  <jackson@ximian.com>
5600
5601         * TreeView.cs: ScrollWindow works properly now, so we don't need
5602         to screw around with the scroll area.  This fixes some artifacts
5603         when expanding and collapsing.
5604
5605 2007-03-18  Jackson Harper  <jackson@ximian.com>
5606
5607         * TextBoxBase.cs: Allow updating the selection position when the
5608         cursor is outside the textarea, but we have a capture.
5609         * TextControl.cs: A special case for when the cursor is outside
5610         the bounds of the TB.
5611         
5612 2007-03-18  Jackson Harper  <jackson@ximian.com>
5613
5614         * TextBoxBase.cs: Remove image pasting code for now.  There is no
5615         way to get an image on the clipboard right now anyways.
5616         * TextControl.cs:
5617         * RichTextBox.cs: Use the new RTF Picture class for pictures.
5618
5619 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
5620
5621         * MessageBox.cs:
5622         - Set window properties in constructor intead of on CreateParams.
5623         - Remove topmost from Window ExStyle.
5624         - Set ShowInTaskbar to false.
5625         - Set form border to FixedDialog.
5626         - Some cosmetic changes and remove unneeded comments.
5627         - It fixes itens 2,3 and 4 of bug #80043.
5628
5629 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
5630
5631         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
5632         none was explicitly set. Fixes part of bug #79949.
5633
5634 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
5635
5636         * ToolStripComboBox.cs: Add AutoComplete*.
5637
5638 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
5639
5640         * ToolStripComboBox.cs: Add FlatStyle.
5641
5642 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
5643
5644         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
5645         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
5646
5647 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5648
5649         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
5650           CheckBox.cs, RadioButton.cs, BindingSource.cs,
5651           DataGridColumnStyle.cs: Remove warnings.
5652
5653 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5654
5655         * Menu.cs: MergeMenu: Check menu argument for null before looping over
5656           it.
5657         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
5658           visibility of mdi child forms. FormSizeChangedHandler: update the
5659           maximized size if size has changed while maximized.
5660         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
5661           creating the handle.
5662         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
5663           avoid creating the handle if not created.
5664         * XplatUI.cs: Update debug output.
5665         * XplatUIStructs.cs: Added ToString's for a couple of structs.
5666
5667 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
5668
5669         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
5670         ProcessCmdKey().
5671         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
5672         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
5673         Implement keyboard shortcuts.
5674
5675 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
5676
5677         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
5678         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
5679         ColorDialog and all derived classes.
5680
5681 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
5682
5683         [ Fixes bug #79828 ]
5684
5685         * ToolBar.cs:
5686         - Rename ToolBarButtonInfor to ToolBarItem.
5687         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
5688         - Maintain an array of ToolBarItem, used instead of ToolBarButton
5689         collection to be able add same button more than one time on a toolbar.
5690         - Refactory all properties and methods to use ToolBarItem. 
5691
5692         * ToolBarButton.cs: 
5693         - Remove all propeties and methods that is now in ToolBarItem.
5694         - Rectangle propery now gets the rectangle from first ToolBarItem to
5695         mimic win32 behavior.
5696         - Size calculation and layout methods also removed.
5697
5698         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
5699         ToolBarItem instead of ToolBarButton to right drawing buttons when
5700         same button/separator was added more than one time to ToolBar.
5701
5702         * ThemeNice.cs: Same as above. 
5703
5704 2007-03-15  Andreia Gaita  <avidigal@novell.com>
5705
5706         * XplatUIX11.cs: Fire extra MouseMove events right after
5707         MouseDown and MouseUp, emulating win32's <censored> behaviour
5708         for apps that rely on it.
5709
5710 2007-03-15  Jackson Harper  <jackson@ximian.com>
5711
5712         * TextControl.cs:
5713         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
5714         it is drawn on the controls client window and there is no NC
5715         area.
5716         - Set the background color to gray on 2.0 when we are readonly.
5717
5718 2007-03-15  Chris Toshok  <toshok@ximian.com>
5719
5720         [ Fixes bug #81144 ]
5721         
5722         * XplatUIX11.cs: implement VirtualScreen independently of
5723         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
5724         property.
5725
5726 2007-03-15  Chris Toshok  <toshok@ximian.com>
5727
5728         * Hwnd.cs: add an internal field for the cached_window_state.
5729
5730         * XplatUIX11.cs: cache the window state, invalidating the cache
5731         (and thus re-querying the X server) only when we see an update to
5732         the _NET_WM_STATE property.
5733
5734 2007-03-15  Chris Toshok  <toshok@ximian.com>
5735
5736         * BindingSource.cs: get a lot of the unit tests working.
5737
5738 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
5739
5740         * Control.cs: Modify UpdateStyles to store distances when bounds >=
5741         0 instead of just bounds > 0.  [Fixes bug #80912]
5742
5743 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
5744
5745         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
5746         and methods.
5747
5748 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
5749         
5750         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
5751         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
5752         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
5753         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
5754
5755 2007-03-15  Chris Toshok  <toshok@ximian.com>
5756
5757         [ Fixes #81101 ]
5758         
5759         * Control.cs: add Ivan's fix for 81101, with a slight modification
5760         - you can set control.Target to null.
5761
5762 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
5763
5764         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
5765         HideDropDown, use Hide instead to prevent an NRE.
5766         [Fixes bug #81147]
5767
5768 2007-03-14  Jackson Harper  <jackson@ximian.com>
5769
5770         * TextBoxBase.cs: Mess with the creation stuff a little. We need
5771         to calculate the document before the handle is created, in some
5772         cases. (Actually just one case).
5773
5774 2007-03-14  Jackson Harper  <jackson@ximian.com>
5775
5776         * TextBoxBase.cs: Need to display the caret after letting the base
5777         wndproc handle the focus methods, because the caret display
5778         methods check the focus state.
5779         - Try to display the caret after updating it's position with SelectWord.
5780         - Don't need to do an immediate update on this recalc, since there
5781         will be an invalidate anyways.
5782
5783 2007-03-14  Jackson Harper  <jackson@ximian.com>
5784
5785         * TreeView.cs: Some workarounds so that we can match event order a
5786         little better.
5787
5788 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
5789
5790         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
5791         #80803. Avoid NullReferenceException when Control does not have
5792         parent. Fixed different blinkstyle issues. Only subscribe to Tick
5793         event a single time. Only draw error icon when control is created and
5794         visible. Fixes failing unit tests.
5795
5796 2007-03-14  Andreia Gaita  <avidigal@novell.com>
5797
5798         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
5799         Selecting events. Fire Leave and Enter events when changing tabs.
5800
5801 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
5802
5803         * TreeView.cs: Add TreeViewNodeSorter.
5804         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
5805
5806 2007-03-14  Chris Toshok  <toshok@ximian.com>
5807
5808         * Form.cs: go ahead and remove the RecreateHandles that jpobst
5809         removed earlier and I had him add back it.  It turns out metacity
5810         *does* in fact handle the MOTIF_WM_HINTS property changing, it
5811         just doesn't redraw the window titlebar until you resize the
5812         window.  This also means we aren't recreating the entire window
5813         hierarchy on X when you change this property.  And it looks better
5814         on windows, too.
5815
5816 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5817
5818         * ListViewItem.cs:
5819         * ListView.cs: Collecting selection information
5820         is now done in SelectedIndexCollection rather than in
5821         SelectedListViewItemCollection. This is done so we can
5822         have the selection information code in one single place
5823         (virtual mode selection information entirely depends on
5824         SelectedIndexCollection).
5825
5826 2007-03-13  Miguel de Icaza  <miguel@novell.com>
5827
5828         * ErrorProvider.cs: Add stubs for ISupportInitialize
5829
5830 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5831
5832         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
5833         in the right order with the right values, from the Checked property, 
5834         just as MS does (instead of triggering them from ListView).
5835
5836         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
5837
5838 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5839
5840         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
5841         the correct handler in OnItemCheck method (ItemCheckEventHandler 
5842         instead of EventHandler). This used to throw an InvalidCastException.
5843
5844 2007-03-13  Jackson Harper  <jackson@ximian.com>
5845
5846         * TextBoxBase.cs: Calculate the document before the handle is
5847         created, so there isn't an extra invalidate called.
5848
5849 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
5850
5851         * Form.cs: Don't set owner in ShowDialog until we are sure
5852         that we aren't going to throw an exception.  [Fixes bug #80773]
5853
5854 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
5855
5856         * TreeView.cs: Make it compile.
5857
5858 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5859
5860         * Control.cs: Another place we don't call SizeFromClientSize.
5861         * Form.cs: Another place we don't call SizeFromClientSize.
5862         [Fixes bug #81125]
5863
5864 2007-03-12  Jackson Harper  <jackson@ximian.com>
5865
5866         * TreeView.cs: Basically emulating some strangness here with
5867         exanding nodes and setting node positions when windows aren't
5868         created.
5869         - Also attempting to walk the node tree less than previously, and
5870         just use visible order calculations for determining offsets.
5871         - oops made scrolling backwards.
5872         * TreeNode.cs: We need to start nodes with a zero visible order,
5873         because the order calcs are based on the first nodes order.
5874
5875 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5876
5877         * Form.cs: Don't exit the program if RecreateHandle is called on
5878         the main form.
5879
5880 2007-03-12  Chris Toshok  <toshok@ximian.com>
5881
5882         * XEventQueue.cs: remove the use of PostQuitState.
5883
5884         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
5885         WM_QUIT message in GetMessage, return false (and if we're in the
5886         nested WaitForHwndMessage, repost the WM_QUIT message).
5887
5888 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5889
5890         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
5891         or the MaximizeBox properties.  [Part of bug #80640]
5892
5893 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
5894
5895         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
5896         no links.
5897
5898 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5899
5900         * ToolStripItem.cs: Fix some tests I broke by checking Visible
5901         instead of visible.
5902
5903 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
5904
5905         * FileDialog.cs: Use text of File name combobox to determine what
5906         files the user selected. Added tokenizer to parse the file names.
5907         Fixes bug #81123.
5908
5909 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5910
5911         * Control.cs: We can't call SizeFromClientSize in the constructor,
5912         but we still need to do the same work, so make an internal version.
5913         [Fixes bug #80621]
5914
5915 2007-03-12  Jackson Harper  <jackson@ximian.com>
5916
5917         * TreeView.cs:
5918         * TreeNode.cs:
5919         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
5920         IsExpanded.
5921
5922 2007-03-12  Jackson Harper  <jackson@ximian.com>
5923
5924         * TextBoxBase.cs: Now that the handles are being created a little
5925         later, we need to make sure that the document is recalculated when
5926         the handle is created.
5927
5928 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
5929
5930         * Theme.cs: GetLinkFont abstract method added.
5931         
5932         * LinkLabel.cs: 
5933         - Remove CalcTrimRectangle, no longer needed.
5934         - Factor also remove, position issues must be fixed in libgdiplus.
5935         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
5936         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
5937         care about font used to draw links.
5938         - Set TabStop to true when control is "Selectable", control is selectable
5939         when have one or more links. Fixes #80501 (test case is also added).
5940         - Set the LinkArea values after links change, LinkArea values must be
5941         based in first link position and size, a test case was created.
5942         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
5943         the attribute must be true LinkArea.Length > 0. The same was applied to
5944         TabStop.
5945         
5946         * ThemeWin32Classic.cs: 
5947         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
5948         in draw method.
5949         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
5950         color change.
5951         - Draw focus rectangle for every parts focused, including parts that 
5952         is on another line, its because regions returns various rectangles
5953         and not only one. Needed to mimic W32 look.
5954         - Uses Graphics.Clip to delimite region painted, it mean that now 
5955         complete text is passed to DrawString, with this we solve layout
5956         issues without create another text renderer.
5957         - Uses Region.Intersect to fix some flickers problems, now only needed
5958         parts will redrawed.
5959         - This changes fixes #79614 and some other unreported issues, on Linux 
5960         some layout problems still remain, the problem is under 
5961         MeasureCharacterRanges but it is an libgdiplus bug.
5962
5963 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
5964
5965         * TextBox.cs: Set for foreground color.
5966         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
5967         this is already done in Control.
5968
5969 2007-03-10  Jackson Harper  <jackson@ximian.com>
5970
5971         * TextBox.cs: Set the background color, but reset the
5972         backcolor_set flag which is just for the user setting the
5973         background color.
5974
5975 2007-03-09  Chris Toshok  <toshok@ximian.com>
5976
5977         * Control.cs: really remove the call to XplatUI.SetVisible from
5978         CreateHandle(), like I said I did when I merged the branch.
5979
5980         * BindingSource.cs: implement some more of this stuff.
5981
5982 2007-03-09  Jackson Harper  <jackson@ximian.com>
5983
5984         * TextBox.cs: Don't explicitly set our background colors.
5985         * TextControl.cs:
5986         * TextBoxBase.cs: Draw readonly text.
5987         - Need to invalidate when backcolor or readonly are changed.
5988         
5989 2007-03-09  Jackson Harper  <jackson@ximian.com>
5990
5991         * TextBoxBase.cs: Don't set the forecolor until the handle is
5992         created.
5993         - Do not raise OnPaint, and removed some old debug code.
5994
5995 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
5996
5997         * ScrollableControl.cs: Fix mouse wheel scrolling.
5998
5999 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
6000
6001         * Control.cs: Wire up MouseDoubleClick event.
6002
6003 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
6004
6005         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
6006         top or bottom.
6007         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
6008         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
6009         item is added.  This logic was moved to ToolStrip.OnItemAdded.
6010         [Fixes bug #81090]
6011
6012 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6013
6014         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
6015
6016 2007-03-08  Jackson Harper  <jackson@ximian.com>
6017
6018         * TreeView.cs: Show the correct image for selected node (this used
6019         to work, not sure how the code got deleted). Also implemented 2.0 feature
6020         SelectedImageKey.
6021
6022 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6023
6024         * ListView.cs:
6025         * ListViewItem.cs: Cache index in items when retrieving them
6026         in VirtualMode.
6027
6028 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
6029
6030         * ToolStripItem.cs: Don't return the explicit_size if we are using 
6031         AutoSize.  Fixes invalidation issue when user has explicitly set a
6032         size and has AutoSize = true.
6033
6034 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
6035
6036         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
6037
6038 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6039
6040         * DataGridView.cs: Remove event handler from DataView when a
6041         DataTable is used as DataSource.
6042
6043 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
6044
6045         * Control.cs: Create internal setter for client_size to allow it to be
6046         set without triggering resizing code.
6047         * Form.cs: Calculate client_size in constructor, only change client_size
6048         in FormBorderStyle property if Handle has been created.
6049         [Fixes #80574, #80791]
6050
6051 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
6052
6053         * SystemInformation.cs: Add TerminalServerSession.
6054
6055 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
6056
6057         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
6058         TreeView code.
6059
6060 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
6061
6062         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
6063         Handle before we were supposed to.  Now checks ActivateOnShow property
6064         in Control.
6065         * Control.cs: Add internal ActivateOnShow property.
6066         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
6067         for ActivateOnShow.
6068         * Hwnd.cs Remove no longer needed no_activate field.
6069
6070 2007-03-07  Jackson Harper  <jackson@ximian.com>
6071
6072         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
6073         2.0 properties
6074         * DrawTreeNodeEventHandler.cs: Add
6075         * DrawTreeNodeEventArgs.cs: Correct default value.
6076         
6077 2007-03-07  Chris Toshok  <toshok@ximian.com>
6078
6079         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
6080         to be called before NativeWindow.WndProc.  Put the HwndCreating
6081         magic there to hook up our Hwnd's to handles.
6082
6083 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
6084
6085         * DataGridView.cs: Comment out debug code.
6086
6087 2007-03-07  Chris Toshok  <toshok@ximian.com>
6088
6089         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
6090         to make the rest of the world happy]
6091
6092         * Control.cs (CreateHandle): there's no need to call
6093         XplatUI.SetVisible here, it's effectively done by
6094         XplatUI.CreateWindow on X now, and always was on windows.
6095
6096         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
6097         shortcircuit out of the loop if we have a message loop running on
6098         this thread.
6099
6100         [Changelog from merge]
6101
6102         2007-03-05  Chris Toshok  <toshok@ximian.com>
6103
6104                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
6105                 causes handle creation.
6106
6107         2007-02-28  Chris Toshok  <toshok@ximian.com>
6108
6109                 * ApplicationContext.cs: Add a flag to make sure we only raise the
6110                 ThreadExit event once (ExitThreadCore can be indirectly called
6111                 from a few places.)  I don't like the additional flag, but it
6112                 makes the event ordering/count correct.
6113
6114                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
6115                 without locking the collection.  An enumerator doesn't give us any
6116                 protection from modification anyway.  Lock the thread hash and
6117                 replace the complicated enumerator loop with a foreach.
6118                 (Application.CloseForms): make internal so it can be called from
6119                 ApplicationContext.  This should probably be moved to MWFThread.
6120                 (Application.ExitThread): don't call MWFThread.Current.Exit()
6121                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
6122                 when the runloop exits (in response to WM_QUIT.)
6123                 (Application.RunLoop): add a comment (and check) for
6124                 context.MainForm being null after setting context.MainForm.Visible
6125                 = true.  This is because you're perfectly free to dispose of a
6126                 form in VisibilityChanged.  Chalk this up to another case where we
6127                 need to synchronously generate WM_ACTIVATE from Control.Show.
6128                 Also, add handling for WM_QUIT here so we'll exit the loop.
6129                 
6130                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
6131                 fact that we don't wait if we're only unmapping the whole_window
6132                 makes me a bit nervous, but it doesn't seem to cause any problems
6133                 yet.
6134
6135                 also, add a comment about the stupid, broken and wrong resetting
6136                 of PostQuitState to false in GetMessage().
6137
6138                 In PostQuitMessage, we need to add a WM_QUIT message to the
6139                 thread's queue.  We use the FosterParent to get the right
6140                 handle/hwnd/queue.
6141
6142                 Lastly, in SetVisible, we need to unmap both windows, since the
6143                 waiting only happens when we're unmapping the client window.  So
6144                 now, the *only* time we unmap just the whole_window is in the hack
6145                 for resizing a control to 0,0.
6146                 
6147         2007-02-21  Chris Toshok  <toshok@ximian.com>
6148
6149                 * Application.cs (CloseForms): rewrite this so that we don't
6150                 modify the list while we're traversing it.
6151
6152         2007-02-20  Chris Toshok  <toshok@ximian.com>
6153
6154                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
6155                 of OnHandleCreated.
6156                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
6157                 handle is created.  otherwise we'll create it here.
6158                 (VerticalScrollEvent): same here.
6159
6160                 * Application.cs (CloseForms): call Form.Dispose, don't post
6161                 WM_CLOSE_INTERNAL.
6162
6163                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
6164                 here. Application should Dispose() of the Form's.
6165
6166                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
6167                 WM_DESTROY as well.
6168                 (MapWindow,UnmapWindow): only actually do the waiting for
6169                 SHOWWINDOW if the control we're dealing with is a Form.
6170                 (CreateWindow): if the control isn't a form, SendMessage
6171                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
6172
6173                 * Control.cs (SetVisibleCore): always use is_visible here, not
6174                 value.  If we use value, we can end up re-setting something
6175                 visible if, for instance, you do Control.Hide() in a delegate
6176                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
6177
6178         2007-02-20  Chris Toshok  <toshok@ximian.com>
6179
6180                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
6181                 the message we need.  PeekMessage returning false should not be a
6182                 condition under which we exit the loop.
6183
6184         2007-02-15  Chris Toshok  <toshok@ximian.com>
6185
6186                 * Control.cs (Refresh): only refresh if we've got a handle and are
6187                 visible.
6188                 (CreateAccessibilityInstance): CreateControl() here.
6189                 (UpdateChildrenZOrder): complicate the code loop even more by
6190                 taking into account controls that haven't had their handle
6191                 created, and those that aren't visible.  But on the flip side,
6192                 simplify the code by splitting it into two loops.  one which
6193                 builds up the list of child controls we're interested in, and the
6194                 other that sets the z order of those children.
6195
6196         2007-02-14  Chris Toshok  <toshok@ximian.com>
6197
6198                 * Control.cs: Control.AccessibilityObject causes the control to be
6199                 created, not just the handle.
6200
6201         2007-02-14  Chris Toshok  <toshok@ximian.com>
6202
6203                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
6204                 problem on X where a window might have its handle created (and be
6205                 visible) while the window is unmapped.  calling XConfigureWindow
6206                 on an unmapped window is bad, and generates X errors.
6207
6208         2007-02-13  Chris Toshok  <toshok@ximian.com>
6209
6210                 * Control.cs (CreateHandle): don't loop over our children setting
6211                 their parent here.  do it when in WndProc when we're shown.
6212                 (UpdateChildrenZOrder): make this internal so we can call it from
6213                 ScrollableControl.
6214                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
6215                 creating its handle.  Also, remove the calls to PerformLayout from
6216                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
6217                 OnVisibleChanged only seems to be called directly here for the
6218                 toplevel control.  It's propagated down the window hierarchy by
6219                 calls to child.OnParentVisibleChanged.
6220                 (OnVisibleChanged): don't do layout here - it's done (oddly
6221                 enough, according to a glance at stack traces on ms.net..) in
6222                 ScrollableControl.
6223                 
6224                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
6225                 z order of our children before calling PerformLayout.
6226
6227         2007-02-12  Chris Toshok  <toshok@ximian.com>
6228
6229                 [big change, fixes #80020]
6230                 
6231                 * AccessibleObject.cs: we need to make owner internal again to fix
6232                 some of ControlAccessibleObject.
6233
6234                 * Control.cs: lots of changes here.  add support for WM_CREATE,
6235                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
6236                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
6237                 we create child controls.  leave the MonoTODO's for the
6238                 accessibility calls, but fix the exceptions so the tests pass.
6239
6240                 Add the InvalidOperationExceptions to Invoke methods, and remove a
6241                 couple of InvokeInternal methods we aren't using.
6242                 
6243                 Also, add a couple of CreateHandle calls in places where we know
6244                 the handles are being created but our code doesn't reference
6245                 .Handle.
6246
6247                 Make SetVisibleCore call OnVisibleChange if the handle isn't
6248                 created.  If the handle is created, we rely on XplatUI.SetVisible
6249                 generating the event synchronously.
6250                 
6251                 Lastly, make sure we don't use this.Handle inside CreateHandle,
6252                 because we can call back into client (and that code can dispose of
6253                 the control).
6254
6255                 * XplatUIStructs.cs: misc/cleanup.
6256
6257                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
6258                 although we don't populate the wParam properly.
6259                 (CreateWindow): generate WM_CREATE.
6260                 (MapWindow,UnmapWindow): make these calls synchronous, at great
6261                 performance expense (particularly in the unmap case), to match
6262                 win32 behavior.
6263
6264                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
6265                 to call it.
6266                 (set_MdiParent): don't recreate the handle unless it's been
6267                 created already.
6268                 
6269                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
6270                 it's created.
6271
6272                 * NativeWindow.cs: this is probably the weirdest part of the
6273                 patch.  We need a way to link up the window being created to the
6274                 WM_CREATE message.  Since we can only be creating one window at a
6275                 time on a given thread, we keep track of a per-thread reference so
6276                 we can dispatch it properly.  We also need to keep track of the
6277                 Hwnd currently being created so that the win32 backend doesn't
6278                 have problems.
6279                 
6280                 * XplatUIWin32.cs: a similar change to the one we made in
6281                 NativeWindow.cs.
6282
6283 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
6284
6285         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
6286         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
6287         to draw the menu shortcut string.
6288
6289 2007-03-07  Jackson Harper  <jackson@ximian.com>
6290
6291         * TreeNode.cs: Add the 2.0 collapse method.
6292
6293 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6294
6295         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
6296
6297 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6298
6299         * DataGridView.cs: Change DataSource will clear column and row
6300         lists. Call Invalidate() to reflect DataSource change.
6301
6302 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6303
6304         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
6305         and a new row is added to it.
6306
6307 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6308
6309         * DataGridView.cs: Add columns when DataSource is en empty list but
6310         is a System.Data.DataView (from a System.Data.DataTable).
6311
6312 2007-03-06  Andreia Gaita  <avidigal@novell.com>
6313
6314         * Label.cs: Implement AutoEllipsis (2.0)
6315
6316 2007-03-06  Jackson Harper  <jackson@ximian.com>
6317
6318         * TreeView.cs: Implement 2.0 TopNode setter property.
6319         - Use a local var instead of the skipped_nodes field for computing
6320         how many nodes to skip.  Otherwise we won't scroll because the
6321         valuechanged handler checks if skipped_nodes is equal to the new
6322         value.
6323         - Implement 2.0 Sort method.
6324         - Add useless 2.0 DoubleBuffer property
6325         - Implement 2.0 LineColors property.  Lets you change the color of
6326         the lines in the tree. Terribly useful for creating non cohesive
6327         desktops.
6328         - Implement 2.0 image key feature.
6329
6330 2007-03-06  Jackson Harper  <jackson@ximian.com>
6331
6332         * TreeView.cs: We can't get the bounds of the nodes before raising
6333         the AfterSelect event, because that event could change the node's
6334         bounds (scrolling, font change, etc).
6335
6336 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6337
6338         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
6339         * Form.cs: Don't recreate handle when creating FormWindowManager, just
6340           update window styles. In CreateParams us VisibleInternal instead of
6341           VIsible to get the actual visible flag set for this form.
6342         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
6343           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
6344           handle the case when the form is already maximized, in which case
6345           it should be restored. Fixes #81043.
6346
6347 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6348
6349         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
6350
6351 2007-03-05  Jackson Harper  <jackson@ximian.com>
6352
6353         * TreeViewHitTestInfo.cs: implement.
6354
6355 2007-03-05  Jackson Harper  <jackson@ximian.com>
6356
6357         * InternalWindowManager.cs: class status fix.
6358
6359 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6360
6361         * InternalWindowManager.cs: All windows that have a parent
6362         are confined to their parent when they're being moved.
6363         Fixes #80822.
6364
6365 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
6366
6367         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
6368         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
6369
6370 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6371
6372         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
6373           buttons invisible before deciding which ones should be visible
6374           (fixes minimize/maximize buttons showing up in toolwindows). Remove
6375           an unused variable.
6376         * InternalWindowManager.cs: Remove warning.
6377
6378 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6379
6380         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
6381         to throw an InvalidOperationException is virtual mode is being used.
6382
6383 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
6384
6385         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
6386         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
6387         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
6388         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
6389         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
6390         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
6391
6392 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6393
6394         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
6395           driver.KeyboardDelay from XplatUI.KeyboardDelay 
6396         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
6397           (patch by Sergey Volk)
6398
6399 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6400
6401         * ToolWindowManager.cs: Added, contains logic for
6402           tool windows.
6403         * CreateParams.cs: Add a few helper methods and an
6404           internal variable to know which control the CreateParams belongs
6405           to.
6406         * Control.cs: Call Form.ChangingParent when the
6407           parent is about to be changed.
6408         * XplatUIX11.cs: DeriveStyles (): Set
6409           caption_height for all windows that have captions and are children.
6410           Update to use ToolWindowManager instead of InternalWindowManager
6411           for ToolWindows.
6412         * XplatUIWin32.cs: Set fake window styles for all
6413           windows that have window managers.
6414         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
6415           now duplicated for mdi windows when they are
6416           maximized, first for the buttons the window itself has, then for
6417           the buttons that appear in the menu bar. Makes things a little
6418           easier). Updated UpdateWindowDecorations, SetWindowState and the
6419           mouse eventhandlers accordingly.
6420         * Form.cs: Add ChangingParent (), contains the
6421           logic of what should happen when the parent changes. In MdiParent
6422           don't set things that ChangingParent () is doing. When handling
6423           WM_CLOSE, we can close the form if there are any other modal forms
6424           and the current form is a descendent of the modal form.
6425         * InternalWindowManager.cs: A lot of refactoring,
6426           the title buttons are now extracted to a separate container class
6427           that takes care of all button code (clicks, tooltips, etc). Moved
6428           Iconic|Maximized|Normal Bounds properties to this class from
6429           MdiWindowManager, so that the window state logic can succeed for
6430           other than mdi wm's. Implemented general window state change logic.
6431           Moved CreateButtons to ThemeWin32Classic, since the theme might
6432           override which buttons are available when as well as the exact
6433           location.
6434         * FormWindowManager.cs: Added, contains logic for
6435           normal forms.
6436         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
6437           which buttons go where (and if they are at all visible). 
6438           Removed special handling of maximized windows, since they aren't special. 
6439           In DrawManagedWindowDecorations don't try to draw the text if it is
6440           empty.
6441         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
6442           use whatever the wm gives us.
6443
6444 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
6445
6446         * ButtonBase.cs: Add 2.0 properties.
6447         * Button.cs: Override Draw for 2.0.
6448         * Control.cs: Add Entered and Selected properties.
6449         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
6450         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
6451         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
6452         buttons.
6453         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
6454
6455 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
6456
6457         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
6458
6459 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
6460
6461         * XplatUIWin32.cs: Register a new class with Windows each time we get
6462         a new ClassStyle.  [Fixes bugs #79432, #80817]
6463         * Controls.cs: Set the correct ClassStyle in CreateParams.
6464         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
6465
6466 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
6467
6468         * ListView.cs: Add fireEvent argument to ReorderColumn since the
6469         ColumnReordered event must not be signaled when modifying DisplayIndex
6470         of a ColumnHeader. Added internal ReorderColumns method which takes
6471         care of drawing, and updating the internal DisplayIndex of the
6472         ColumnHeader. Added AddColumn method which is invoked from
6473         ColumnHeaderCollection when adding or inserting columns, and which
6474         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
6475         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
6476         Recalculated dispay indices after removing a ColumnHeader.
6477         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
6478         match MS. Allows last display index to be returned after ListView
6479         is disposed. Update actual location of ColumnHeader when DisplayIndex
6480         is modified.
6481
6482 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
6483
6484         * LinkLabel.cs: Improve CalcTrimRectangle.
6485         
6486         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
6487
6488 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
6489
6490         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
6491         get rectangle as a result value.
6492
6493 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
6494
6495         * LinkLabel.cs: Theres some diferences between rectangle return from 
6496         MeasureCharacterRanges and the area used for DrawString to fix this 
6497         CalcMeasurementFactor method was created, it calcules the diferences
6498         to be use later to adjust rectangle in draw operations. Fixes #80473.
6499         
6500         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
6501         to adjust draw rectangle.
6502
6503 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
6504
6505         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
6506         text and some other changes to reduce and optimize source code.
6507
6508 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
6509
6510         * RadioButton.cs: Implement 2.0 event.
6511         * RelatedImageListAttribute.cs: Implement new class.
6512
6513 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
6514
6515         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
6516
6517 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
6518
6519         * CheckBox.cs: Implement 2.0 functionality.
6520
6521 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6522
6523         * ListView.cs: Refactor Add and AddRange methods of
6524         ListViewItemCollection, to not update the ListView
6525         everytime an item is added in AddRange. Also move the update
6526         code to a new CollectionChanged method, and call it
6527         from other methods that need it as well (this should also fix some
6528         bugs when Sorting is used).
6529
6530 2007-02-27  Jackson Harper  <jackson@ximian.com>
6531
6532         * TextControl.cs: Try to never let the caret stay in a non-text
6533         tag.
6534         * TextBoxBase.cs: Update the caret.
6535
6536 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
6537
6538         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
6539         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
6540         delete POINT structure, duplicate of one in XplatUIStructs.
6541         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
6542
6543 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
6544
6545         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
6546         edit box since otherwise the Label would immediately be set (even if
6547         the user did not modify the label). In OnKeyDown set Handled to true
6548         if Return or Escape was pressed. In ColumnHeaderCollection unlink
6549         columns that are to be removed. In ListViewItemCollection unlink items
6550         that are to be removed.
6551
6552 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
6553
6554         * TextRenderer.cs: If we set a GDI clip region, we need to clear
6555         it when we are done.  [Fixes bug #80949]
6556
6557 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
6558
6559         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
6560
6561 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6562
6563         * ListView.cs: I forgot to commit the changes for ListView 
6564         in my previous patch.
6565
6566 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
6567
6568         * Clipboard.cs: Partially implement an overload of SetDataObject.
6569         * Form.cs: Implement ShowWithoutActivation.
6570         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
6571
6572 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6573
6574         This is a first set of changes to make the Virtual mode works,
6575         by avoiding the retrieval of ListViewItem instances until
6576         draw time.
6577
6578         * ListView.cs: Store item position in the ListView instead of the
6579         ListViewItem, this way we don't request the Bounds property of
6580         ListViewItem inside the ListView calculations, as well as cache the item
6581         size in item_size field. Store indexes instead of ListViewItem
6582         instances in the matrix used by icon view. Add a ItemMatrixLocation
6583         struct to hold the row and col info of the matrix info.
6584
6585         * ListViewItem.cs: Don't store the location anymore, and only cache
6586         the rectangles for GetBounds. Use the ListView.GetItemLocation
6587         method to retrieve the actual location.
6588
6589 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
6590
6591         * TextRenderer.cs: Add clipping support, thanks to George.
6592         [Fixes bug #80949]
6593
6594 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
6595
6596         * ListViewItem.cs: Cancel label edit when item is removed from 
6597         ListView.
6598         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
6599         event before the edit textbox is displayed.  Added CancelEdit method
6600         which is used end to editing while ignoring the value set by the
6601         user. In EndEdit, set focus to ListView to avoid losing focus to
6602         other controls. In ListViewItemCollection.Clear, cancel editing of
6603         any of the items.  In Remove, cancel editing of item being removed.
6604         Avoid udplicate code by modifing RemoveAt to invoke Remove.
6605
6606 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
6607
6608         * FileDialog.cs: Update FSEntry when move is successful. Fixes
6609         bug #80948.  
6610
6611 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
6612
6613         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
6614         compatible with non X11 systems. Fixes #80901.
6615
6616 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
6617
6618         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
6619         whether the item should be unselected and reselect. We do no want this
6620         when we're starting to edit the label. Do not fire the 
6621         SelectedIndexChanged event from ListView when its already been fired
6622         by modifying ListViewItem.Selected. Fixes bug #80943.
6623
6624 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
6625
6626         * TextRenderer.cs: Previos commit logic was backwards.
6627
6628 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
6629
6630         * TextRenderer.cs: Don't add padding on MeasureText if we were
6631         sent the NoPadding flag.
6632
6633 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
6634
6635         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
6636         after DrawButton. To prevent image overlaps button borders SetClip and 
6637         ResetClip added before and after draw image. Fixes #79129.
6638
6639 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
6640
6641         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
6642         window size, it fix problem when you run under win32 that theres
6643         Size diferent than ClientSize. Also fix controls size and positions
6644         to mimic Win32. Fixes #80837.
6645
6646 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
6647
6648         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
6649         menu area to fix some problems for non X11 systems. Fixes #80613.
6650
6651 2007-02-22  Jackson Harper  <jackson@ximian.com>
6652
6653         * TreeNode.cs: When a node is expanded, set its is_expanded flag
6654         even if it doesn't have any children.
6655
6656 2007-02-22  Jackson Harper  <jackson@ximian.com>
6657
6658         * TreeView.cs: Calculate the top node 'on the fly', this
6659         eliminates issues where you need to click on the tree before
6660         scrolling it to get the top node computed correctly.
6661         * TreeNodeCollection.cs: We don't need to mess with the top node
6662         anymore.
6663
6664 2007-02-22  Jackson Harper  <jackson@ximian.com>
6665
6666         * DataGridViewRow.cs: Fix typo so height can actually be set.
6667         Patch by Peter Grimm.
6668
6669 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
6670
6671         * FileDialog.cs: Fixed support for renaming files and directories.
6672         * ListView.cs: Do not lose focus when edit is canceled. Process
6673         Escape as regular key (to prevent closing of dialogs).
6674
6675 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
6676
6677         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
6678         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
6679
6680 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
6681
6682         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
6683         did not modify label.
6684         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
6685         modified the text. Reset Label when user presses Escape in edit mode.
6686         Move focus to ListView after having cancelled or finished editing the
6687         label.
6688
6689 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
6690
6691         * ComboBox.cs: Removed unnecessary initializations. Marked items field
6692         private. Clear textbox when Text is set to null and SelectedIndex is
6693         already -1.
6694         * FileDialog.cs: Removed unnecessary initializations. Removed 
6695         workarounds for ComboBox bugs that are now fixed. Modified
6696         DefaultExt, InitialDirectory and Title property to change null to
6697         zero-length string in getters. Avoid directly accessing fields.
6698
6699 2007-02-20  Jackson Harper  <jackson@ximian.com>
6700
6701         * TextControl.cs: Remove RecalAlignments call, that was some
6702         debugging leftovers.
6703         - Don't use the line indent when we shouldn't.
6704         * RichTextBox.cs: Add support for paragraph left indents.
6705
6706 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6707
6708         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
6709         Seems like the class status pages doesn't catch params differences.
6710
6711 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
6712
6713         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
6714
6715 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
6716
6717         * ComboBox.cs: Setting Text should have no effect if item text of
6718         selected item exactly matches value. First lookup text using
6719         case-sensitive comparison, and fallback to case-insensitive comparison.
6720         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
6721         allow startIndex to be last index. Changed ArgumentOutOfRangeException
6722         paramname to match MS. Restart from first item if string is not found
6723         after startIndex. Fixed paramname of ArgumentNullException that is
6724         thrown for null value in ObjectCollection.Contains.
6725
6726 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
6727
6728         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
6729
6730 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6731
6732         * ListControl.cs: In SelectedValue use value.Equals to compare for
6733         equality instead of ==, otherwise it will fail for strings.
6734         Fixes #80794.
6735
6736 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6737         
6738         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
6739         since the caret won't show up unless ShowSelection is true. 
6740         Fixes #80795.
6741
6742 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6743
6744         * Application.cs: When disabling all forms but the main form, do not
6745           disable any descendants of the main form (such as mdi children or
6746           other parented forms). Fixes #80822 on Windows.
6747         * Form.cs: If we have a parent, set the WS_CHILD style.
6748         * Control.cs: Update the window styles if the control whose parent has
6749           changed is a form (the WS_CHILD style has to be switched).
6750
6751 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
6752
6753         * XplatUIStructs.cs: MsgUIState structure added.
6754
6755 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
6756
6757         * FileDialog.cs: Removed need for separate fileName field. On 2.0
6758         profile, do not check filename(s) for illegal character if filename(s)
6759         were set non-interactively but always check on 1.0 profile. Fixed NRE
6760          in DefaultExt and only strip off first leading dot. Improve exception
6761         message when invalid Filter is set. Do not ignore InitialDirectory if
6762         it does no exist. Store specified Title, and if empty use default
6763         title (depending on type of dialog). Added an internal DialogTitle 
6764         property for retrieving dialog title. Fixed logic of displayed dir to
6765         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
6766         string as its buggy.
6767         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
6768         FileName is a zero-length string (it can never be null). Override 
6769         DialogTitle property to set default title of dialog box.
6770         * SaveFileDialog.cs: Override DialogTitle property to set default
6771         title of dialog box.
6772
6773 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
6774
6775         * FileDialog.cs: Modify default text of filename and filetype labels
6776         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
6777         after we've updated the SelectedIndex. Fixes part of bug #80887.
6778         * SaveFileDialog.cs: Set text of filetype label.
6779
6780 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6781
6782         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
6783         label field. Needed by latest Jackson's fixes for ListView.
6784
6785 2007-02-16  Andreia Gaita  <avidigal@novell.com>
6786
6787         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
6788         print preview images.
6789
6790 2007-02-16  Jackson Harper  <jackson@ximian.com>
6791
6792         * ListView.cs: Make AfterLabelEdit work correctly.
6793         * FileDialog.cs: After changing the name of the folder, we have to
6794         make sure that it is created, or that we pop up an error because
6795         it already exists.
6796
6797 2007-02-16  Jackson Harper  <jackson@ximian.com>
6798
6799         * X11Dnd.cs: Implement aliases on mime handlers, so things like
6800         System.String are mapped to text.
6801         - Handle dataobjects, getting all the possible formats out of them
6802         - We dont need the drag event args before we give feedback. This
6803         allows feedback cursors to be immediate before selections have
6804         been converted.
6805
6806 2007-02-16  Jackson Harper  <jackson@ximian.com>
6807
6808         * TextBoxBase.cs: Modified the method for inserting images to
6809         taking a line and position instead of tag and position.
6810         * RichTextBox.cs: Handle PngBlip data by inserting the png image
6811         into the RTF file.
6812         * TextControl.cs: Allow images to be inserted as the first tag of
6813         a line.
6814         - Fix some off by one issues when we assume the first tag is a
6815         text tag, not an image tag.
6816
6817 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6818
6819         * ListView.cs: Set focus to ListView when ItemControl gets a
6820         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
6821         Fixes part of #80467.
6822
6823 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6824
6825         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
6826           validate Text input (if null or empty string reset Value to default
6827           value). Fixes #80830.
6828
6829 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6830
6831         * ListView.cs: Set owner as null for columns and items when
6832         Dispose is invoked. Fixes #80607.
6833
6834 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
6835
6836         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
6837         showing DropDowns, don't show a Grip when doing Flow layout.
6838         [This fixes the toolbox in PDN 2.72.]
6839         * ToolStripItem.cs: Add Anchor property and some internal properties to
6840         reduces needed changes to FlowLayout.
6841         * ToolStripOverflow.cs: Remove unused variable.
6842         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
6843         use it in the layout calculations.
6844
6845 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6846
6847         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
6848         reported in #79640.
6849         
6850         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
6851         size calculation.
6852
6853 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6854
6855         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
6856         MeasureString format, it can make button very large in some cases, it is
6857         strange but is what win32 do.
6858
6859 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6860
6861         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
6862         size calculation.
6863
6864         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
6865         rendering, the value is based on MenuAccessKeysUnderlined.
6866
6867 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6868
6869         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
6870         for most themes.
6871         
6872         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
6873         
6874         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
6875         and use MenuAccessKeysUnderlined instead.
6876
6877 2007-02-13  Andreia Gaita  <avidigal@novell.com>
6878
6879         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
6880         A selected control would not get a Focus call if:
6881                 - the default active control of the container is the same as
6882                   the one that was selected
6883                 - we are switching from one container to another
6884         Under these conditions, the container being selected already has
6885         an active_control, which is the same as the one being activated, 
6886         so set_ActiveControl would always return and not send the Focus
6887         call. Fix to check if the currently active control of the container
6888         is actually focused.
6889
6890 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
6891
6892         * StatusStrip.cs: Implement the spring layout.
6893         * ToolStripControlHost.cs: Make sure the hosted control's visibility
6894         always matches the host.
6895         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
6896         and TextAfterImage.
6897
6898 2007-02-13  Andreia Gaita  <avidigal@novell.com>
6899
6900         * Control.cs: Code reorganization only.
6901           - Reorganize the WndProc cases so that each case has it's own handling method, 
6902           to help with the no-line-numbering stack traces.
6903           - Formatting changes (it's vstudio's fault, really :p)
6904
6905 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6906
6907         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
6908           Thread.CurrentUICulture to match DateTimePicker's (and MS)
6909           behaviour.
6910
6911 2007-02-12  Jackson Harper  <jackson@ximian.com>
6912
6913         * RichTextBox.cs:
6914         * TextBox.cs: By default we have a non multiline document
6915         - use the multiline property instead of the internal variable
6916         * TextBoxBase.cs: Treat multiline and non multiline the same in
6917         most places.
6918         - Use the documents multiline flag instead of tracking it ourself
6919         * TextControl.cs: Attempt at getting multiline to match MS
6920         behavior.  Lines now track an offset, which is either their X or Y
6921         offset depending on whether or not we are in multiline mode.
6922         - Update all the methods to understand that lines have an X value.
6923         - Fix crash in Undo::Duplicate when empty lines are deleted.
6924
6925 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
6926
6927         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
6928         code moved to properties PreferredHeight and PreferredWidth. It solve the
6929         all problems when preferred sizes must be recalculated. Fixes #80801.
6930
6931 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
6932
6933         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
6934         font height when compatible_text_rendering is false. Partially fix #80801.
6935
6936 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
6937
6938         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
6939
6940 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
6941
6942         * Form.cs: Improved exception messages in ShowDialog.
6943
6944 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
6945
6946         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
6947         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
6948         if not set. Fixes bug #80764. Avoid accessing current_settings field
6949         directly.
6950
6951 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
6952
6953         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
6954         false.
6955
6956         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
6957         public in 2.0 and for easy maintenance and dont break compatibility it is 
6958         internal in 1.1.
6959         
6960 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
6961
6962         * ToolStripItem.cs: Implement using images from ImageList.
6963
6964 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6965
6966         * DateTimePicker.cs: Change default date-formatting culture from
6967           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
6968           seems to be the way MS does it.
6969
6970 2007-02-08  Andreia Gaita  <avidigal@novell.com>
6971
6972         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
6973         (the 6 was cut off on the right side)
6974
6975 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
6976
6977         * Form.cs: Tell MenuStrips to close when the form is clicked.
6978         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
6979         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
6980         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
6981         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
6982         support for Overflow, where items that do not fit are automatically
6983         reparented to a drop down menu.
6984         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
6985         Also: fixes bug #80747.
6986
6987 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6988
6989         * ComboBox.cs: Remove warning (unused code).
6990         * ScrollableControl.cs: Remove warning for 1.1 profile.
6991
6992 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6993
6994         * Form.cs: Remove a warning.
6995
6996 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6997
6998         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
6999           'g' specifier, not documented anywhere, but seems to always show up
7000           as a single space (might have something to do with the DateTime 'g'
7001           specifier, which is the era format, but since DateTimePicker can't
7002           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
7003           won't crash if the format has an unmatched quote. Now shows
7004           single-character formats correctly. Fixes #80744.
7005
7006 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
7007
7008         * StatusStrip.cs: Stretch property needs to call base.Stretch,
7009         not this.Stretch to fix stack overflow. [Fixes bug #80760]
7010
7011 2007-02-07  Chris Toshok  <toshok@ximian.com>
7012
7013         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
7014         background color.  it overwrites the background image we've
7015         already painted.  Fixes #80599.
7016
7017 2007-02-07  Chris Toshok  <toshok@ximian.com>
7018
7019         * DataGrid.cs: return immediately from Edit() when there are no
7020         columns.  Fixes #80662.
7021
7022 2007-02-07  Chris Toshok  <toshok@ximian.com>
7023
7024         * MessageBox.cs: fix #80625.  don't always show the Help button in
7025         2.0.  use the displayHelpButton parameter to determine if we
7026         should show it. Also, make the internal show_help field private.
7027
7028 2007-02-07  Chris Toshok  <toshok@ximian.com>
7029
7030         * Control.cs (SetVisibleCore): check in the proposed patch for
7031         80604, and set is_visible before calling CreateControl.
7032
7033 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
7034
7035         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
7036         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
7037         on it.
7038
7039 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
7040
7041         * MenuAPI.cs: hotkey_active internal field added, it is required because
7042         we need to know when hotkeys must be draw, before this change a keystate
7043         Navigating was used but we can have menu in navigating state without
7044         hotkeys. Fixes #80694.
7045         
7046         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
7047
7048 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7049
7050         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
7051           corresponding events and methods to be internal for 1.1 profile and
7052           public for 2.0 profile (required by SizeGrip).
7053         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
7054           implicit control list). Don't set the size nor the location of the
7055           SizeGrip anymore as it's not needed.
7056         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
7057           draw directly on the captured control (fixes #80656). Removed
7058           ShowGrip (it wasn't used anywhere), redraw (always true), added
7059           GetDefaultSize and GetDefaultRectangle to calculate defaults.
7060         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
7061           be called from SizeGrip.
7062
7063 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7064
7065         * Timer.cs: Throw ArgumentException if Interval <= 0.
7066
7067 2007-02-05  Jackson Harper  <jackson@ximian.com>
7068
7069         * TreeView.cs: We need to check scrollbar visibility when window
7070         visibility is updated, because non visible trees don't ever add
7071         scrollbars.
7072         * Cursor.cs: We want the override cursor to be reset to NULL when
7073         we set current cursor to the default cursor.
7074
7075 2007-02-05  Jackson Harper  <jackson@ximian.com>
7076
7077         * TextControl.cs: Don't have crlfs when we are non multiline.
7078         - Consolidate the line position.
7079
7080 2007-02-05  Jackson Harper  <jackson@ximian.com>
7081
7082         * X11Keyboard.cs: BACK+CTRL gets a special char code.
7083
7084 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7085
7086         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
7087           handling LeaveNotify->NotifyUngrab in order to send
7088           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
7089           after calling XUngrabPointer, so we call WindowUngrabbed directly
7090           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
7091         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
7092           MouseCaptureChanged correctly. Also create handles if changing
7093           Capture (matches MS behaviour).
7094
7095 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7096
7097         * SizeGrip.cs: Make the last change 2.0 only.
7098
7099 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7100
7101         * SizeGrip.cs: If resizing and the capture is lost, revert any size
7102           changes to initial size (fixes #80597).
7103
7104 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7105
7106         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
7107
7108 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7109
7110         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
7111           background) and only allow dragging if enabled. This way the
7112           sizegrip can be used to fill the open square that otherwise would
7113           have been shown in the bottom right corner of ScrollableControl
7114           when ScrollableControl is not suppose to support sizing.
7115         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
7116           sizegrip is shown and enabled, and hook up with necessary events.
7117
7118 2007-02-01  Chris Toshok  <toshok@ximian.com>
7119
7120         * DataGridTextBoxColumn.cs: clean up the
7121         GetFormattedString/GetColumnValueAtRow combination of functions.
7122         Also fix UpdateUI, and the initial state of
7123         IsInEditOrNavigateMode.
7124
7125         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
7126         aren't supposed to scroll the textbox here, we're supposed to
7127         scroll the datagrid.
7128
7129 2007-02-01  Chris Toshok  <toshok@ximian.com>
7130
7131         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
7132         setting the position.
7133
7134 2007-02-01  Chris Toshok  <toshok@ximian.com>
7135
7136         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
7137         here, since the most recent focus fixes keep us from generating
7138         the Leave event when our textbox gets focus.
7139         (Edit): we should be passing null for the column style's
7140         instantText parameter.
7141         
7142 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
7143
7144         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
7145         raised.  Fixes menu text/icons not showing up in PDN.
7146
7147 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7148
7149         * Control.cs: Remove code in constructor that makes every
7150         control with WS_CHILD set have initial location -1, -1.
7151
7152 2007-01-31  Jackson Harper  <jackson@ximian.com>
7153
7154         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
7155         XplatUIX11.
7156         * XplatUIX11.cs: Give teh keyboard to teh dnd.
7157
7158 2007-01-31  Jackson Harper  <jackson@ximian.com>
7159
7160         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
7161         - Remove some debug code.
7162
7163 2007-01-31  Jackson Harper  <jackson@ximian.com>
7164
7165         * XplatUIX11.cs: If you set the override cursor during a grab, it
7166         should actually override the grab cursor.  This comes into play
7167         when you are setting custom cursors in a DND feedback method.
7168
7169 2007-01-31  Jackson Harper  <jackson@ximian.com>
7170
7171         * X11Dnd.cs: Add support for handling the QueryContinue and
7172         GiveFeedback events.
7173         - Cancel drag and drop actions when the escape key is clicked.
7174         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
7175         can handle the ESCAPE key.
7176         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
7177         done when dnd events are continued after the button is released.
7178         - Add a new helper method so that dnd can translate key events.
7179
7180 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
7181
7182         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
7183         make it more obvious what is happening.
7184
7185 2007-01-30  Jackson Harper  <jackson@ximian.com>
7186
7187         * XplatUIX11.cs: Don't break when handling button release in drag
7188         and drop operations. We need that BUTTONUP message to get through
7189         so capture is released.
7190         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
7191         this is handled automatically when the mouse is down.
7192
7193 2007-01-30  Jackson Harper  <jackson@ximian.com>
7194
7195         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
7196         is closed, so we need to make sure that we aren't changing the
7197         dialog result when the OK (Open or Save) button has been clicked
7198         and we are closing the window ourselves.  Note we don't need to
7199         worry about the cache being written in this case, because it was
7200         already done in the previous FilOk call.
7201
7202 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7203         
7204         * DateTimePicker.cs: Remove a warning.
7205         * ComboBox.cs: Remove a couple of warnings.
7206
7207 2007-01-29  Chris Toshok  <toshok@ximian.com>
7208
7209         * XplatUIX11.cs: don't crash, and remove the icon if the user has
7210         set one, if SetIcon is passed a null icon.
7211
7212 2007-01-29  Andreia Gaita  <avidigal@novell.com>
7213
7214         * TextBox.cs: Redraw when the password characters changes
7215         * TextControl.cs: Check if textbox has a password char and draw 
7216         a line of password chars instead of the text in the line. LineTag gets 
7217         an extra Draw() method which allows document.Draw to override the text 
7218         that will be drawn. Removes 1024 char limitation on length of passworded 
7219         lines.
7220
7221 2007-01-29  Jackson Harper  <jackson@ximian.com>
7222
7223         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
7224         single chars is not.
7225
7226 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
7227
7228         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
7229         one pixel.  Fix a StackOverflowException caused by an overload wrongly
7230         calling itself.
7231
7232 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
7233
7234         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
7235         also remove ProcessArrowKey and put the code inside ProcessKeys.
7236
7237 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
7238
7239         * PaddingConverter.cs: Added.
7240
7241 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7242         
7243         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
7244         ShowPanels is false (fixes #80600). Only draw up to 127 characters
7245         of text (fixes #80601). For panels clip the text to draw to the
7246         panel (fixes #80603).
7247
7248 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7249
7250         * ComboBox.cs: Fixed implementation of ResetText.
7251
7252 2007-01-25  Jackson Harper  <jackson@ximian.com>
7253
7254         * TextControl.cs: For the last char of a line we need to use the
7255         line size, not that chars width, since it won't actually be
7256         computed since the right side of a char is based on the start of
7257         the left side of the next char, and the next char does not exist.
7258
7259 2007-01-25  Chris Toshok  <toshok@ximian.com>
7260
7261         * Splitter.cs: fix the new unit tests, and reindent some switch
7262         statements.
7263
7264 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7265
7266         * ComboBox.cs: Implemented 2.0 methods and events.
7267         * TextBoxBase.cs: Added OnTextUpdate, so that
7268         ComboBox.ComboTextBox can inform ComboBox of it.
7269
7270 2007-01-25  Jackson Harper  <jackson@ximian.com>
7271
7272         * TextControl.cs: Respect ShowSelection when deciding whether or
7273         not to display the caret, this allows comboboxes to have carets
7274         when the combotextbox does not have focus.
7275
7276 2007-01-25  Jackson Harper  <jackson@ximian.com>
7277
7278         * TextControl.cs: Add a Suspend/Resume for updating, basically the
7279         same as the Suspend/Resume for recalc, except this will do actual
7280         Invalidates.
7281         - New Undo manager, works much like the MS version.
7282         - Implemented Redo
7283         * TextBoxBase.cs: The Cut operation is undoable.
7284
7285 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7286         
7287         * TextBoxBase.cs: Don't antialias text. Makes it look way better
7288         on Windows (no difference on Linux).    
7289
7290 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7291
7292         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
7293         we don't want to activate any windows. Fixes #79433.
7294
7295 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
7296
7297         - ButtonBase.cs: Fix capitalization of parameter: disposing.
7298         [Fixes bug #80609]
7299
7300 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
7301
7302         * FileDialog.cs:
7303         - Move to using System.ComponentModel.EventHandlerList
7304         - Replace Refresh with Invalidate
7305         - Clear the mime filecache on closing
7306         - Some other memory reducing work. After beeing closed FD now uses
7307           only about 300 KB for the fdo mime stuff plus the memory of the
7308           cached icons.
7309         * Mime.cs: Changed coding style and removed unnecessary commented
7310         code. Some more memory memory reducing work.
7311
7312 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7313
7314         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
7315         a few other missing 2.0 properties.
7316         * Theme.cs: Added DrawFlatStyleComboBox.
7317         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
7318
7319 2007-01-24  Chris Toshok  <toshok@ximian.com>
7320
7321         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
7322         wake_waiting flag, not just when there's data to be read.  if we
7323         don't, then future wakeup's won't reach us and we'll be doomed to
7324         wait for the entire 1 second timeout forever (unless there are X
7325         events to be had).
7326
7327 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
7328
7329         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
7330         until you pass Items.Count, not Items.Count - 1 like 1.1.
7331
7332 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
7333
7334         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
7335
7336 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
7337
7338         * ToolStripContainer.cs: The recent Dock fix exposed that I was
7339         adding the panels in the wrong order.
7340
7341 2007-01-24  Jackson Harper  <jackson@ximian.com>
7342
7343         * TextBoxBase.cs: When we move the caret we also need to move the
7344         selection, this fixes some random crashing after doing select
7345         text, unselect, delete a char, paste.
7346
7347 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7348
7349         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
7350
7351 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
7352
7353         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
7354         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
7355         * ToolBar.cs: Force redraw in BackgroundImageChanged.
7356
7357 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
7358
7359         * ToolBar.cs:
7360         - Implement support for vertical toolbars. Fixes #80539;
7361         - Call LayoutToolBar when resize, it fix some other problems in layout.
7362         - Rename requested_height to requested_size, as we can have width on it
7363         when toolbar is vertical.
7364         - Create a private property "Vertical" that uses Dock to verify when 
7365         toolbar is vertical or not.
7366         - Set ControlStyles when change Dock property.
7367         - Refactory in LayoutToolBar to have better variables names and to support
7368         vertical toolbars.
7369         - Fixes default value for ButtonSize when button count is equal zero, size
7370         must be (39, 36) test case writed.
7371
7372 2007-01-23  Chris Toshok  <toshok@ximian.com>
7373
7374         * Control.cs: fix the checks so that they work correctly for mdi
7375         parents/children.
7376
7377 2007-01-23  Chris Toshok  <toshok@ximian.com>
7378
7379         * Control.cs: ControlCollection seems to have super-secret
7380         abstraction breaking knowledge of Mdi containers.  allow MdiClient
7381         to add toplevel controls.
7382
7383 2007-01-23  Chris Toshok  <toshok@ximian.com>
7384
7385         * Control.cs: throw an ArgumentException if a toplevel control is
7386         added to our control collection from ControlCollection.Add, as
7387         well as from ControlCollection.IList.Add.  This fixes the
7388         ControlSetTopLevelTest.TestTopLevelAdd unit test.
7389
7390         Also, in ControlCollection.IList.Add, don't through an
7391         ArgumentNullException, throw an ArgumentException, when value ==
7392         null.  This matches MS.
7393
7394 2007-01-23  Chris Toshok  <toshok@ximian.com>
7395
7396         * BindingSource.cs: initial, incomplete, implementation of
7397         BindingSource.
7398
7399 2007-01-23  Jackson Harper  <jackson@ximian.com>
7400
7401         * TextControl.cs:
7402         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
7403         that I can fix a broken unit test (TextBoxTest::ClearUndo)
7404         
7405 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
7406
7407         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
7408
7409 2007-01-23  Andreia Gaita  <avidigal@novell.com>
7410
7411         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
7412         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
7413         IndexOfKey() for 2.0
7414
7415 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7416
7417         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
7418         to prevent it from changing z-order.
7419         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
7420         leave UI updates in MdiWindowManager.
7421         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
7422         1 sized (NC handling goes weird on Linux otherwise).
7423         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
7424         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
7425         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
7426         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
7427         and SetWindowState(s) to allow for changing the size of an activated child
7428         before activating it (reduces a lot of flicker).
7429
7430 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
7431
7432         * Form.cs: Changing FormBorderStyle has different semantics based
7433         on whether the Form is visible or not.  If not visible, don't change
7434         the Size.  But InvalidateNC needs to be called to force the window
7435         to pick up the changes and redraw itself.  [Fixes bug #80574]
7436
7437 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
7438
7439         [Moma work]
7440         * ContainerControl.cs: ProcessCmdKey.
7441         * ErrorProvider.cs: new constructor.
7442         * Form.cs: fix AutoValidateEvent compiler warning.
7443         * Label.cs: fix OnAutoSizeChanged compiler warning.
7444         * MenuStrip.cs: fix CanOverflow compiler warning.
7445         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
7446         * TextBox.cs: Dispose.
7447         * ToolStrip.cs: CanOverflow, re-enable double buffering.
7448         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
7449         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
7450         * ToolStripItem.cs: Overflow, RightToLeft properties.
7451
7452 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7453
7454         * Form.cs: Move the layout of the main form to MdiWindowManager.
7455         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
7456         do a layout of the main window to update MdiClient's client area to
7457         the right area. Fixes #80533. Remove the calculation of nc size, 
7458         it was just wrong and the correct one is the same as for 
7459         InternalWindowManager. 
7460
7461 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
7462
7463         * Control.cs: Setting Anchor or Dock needs to reset the other
7464         to its default.  [Fixes bug #80556]
7465
7466 2007-01-20  Chris Toshok  <toshok@ximian.com>
7467
7468         * CheckedListBox.cs: class status changes.
7469
7470         * ScrollableControl.cs: same.
7471
7472         * RichTextBox.cs: same.
7473
7474         * ContainerControl.cs: same.
7475
7476         * ListView.cs: same.
7477
7478         * NotifyIcon.cs: same.
7479
7480         * MenuStrip.cs: same.
7481
7482         * RadioButton.cs: same.
7483
7484         * CheckBox.cs: same.
7485
7486         * PrintPreviewDialog.cs: same.
7487
7488         * Form.cs: same.
7489
7490 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
7491
7492         * TreeNode.cs: Apply Alan's patch for Name property.
7493
7494 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7495         
7496         * Form.cs: Implemented SizeGripStyle.
7497         * SizeGrip.cs: Check for minimum and maximum size for the
7498         control being resized and only resize if size has actually
7499         changed.
7500
7501 2007-01-19  Chris Toshok  <toshok@ximian.com>
7502
7503         * DataGridColumnStyle.cs: stop setting _readonly in the
7504         PropertyDescriptor setter.  fixes a unit test failure.
7505
7506         also, rename ParentReadOnly to TableStyleReadOnly, and have it
7507         just consult our table style (if we have one).  We don't need to
7508         consult the datagrid readonly attribute because that's passed in
7509         as the _ro arg to Edit.  this simplifies things a little.
7510         
7511         * DataGrid.cs: use CurrentColumn instead of
7512         current_cell.ColumnNumber just to simplify some of the code.
7513
7514         switch the order of some things in the CurrentCell setter to keep
7515         the previous cell from getting a textbox again -
7516         EnsureCellVisibility causes scrolling to happen, which calls Edit.
7517         So we need to set the new cell before calling it.
7518         
7519         call Edit in OnEnter, as does Microsoft.
7520         
7521         also, make sure the current table style isn't the one we create
7522         initially when checking to see if it's different than the one
7523         we're setting it to in BindColumns (this fixes #80421).
7524
7525         * GridTableStylesCollection.cs: table styles can have "" for a
7526         mapping name.  part of the fix for #80421.
7527
7528         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
7529         Edit significantly.
7530
7531 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
7532
7533         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
7534         and less GDI object leaky-er.
7535
7536 2007-01-18  Andreia Gaita  <avidigal@novell.com>
7537
7538         * LinkLabel.cs: Add opaque control style
7539
7540 2007-01-18  Jackson Harper  <jackson@ximian.com>
7541
7542         * TextControl.cs: Calculate width properly.
7543         - Don't store the tag's X offset, this can be figured out very
7544         easily.
7545         - When getting the caret tag make sure to get the last empty tag.
7546
7547 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
7548
7549         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
7550         [Fixes bug #79959]
7551
7552         * Control.cs: Color.Empty shouldn't count for previous transparent
7553         redraw changes.
7554
7555 2007-01-18  Jackson Harper  <jackson@ximian.com>
7556
7557         * TextBox.cs:
7558         * RichTextBox.cs:
7559         * TextControl.cs: Starting to merge in some pieces of my older
7560         undo work.  Basically just some slight cleanup of the undo API.
7561
7562 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7563
7564         * TrackBar.cs: Fix signature of RightToLeftLayout.
7565         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
7566         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
7567         * Application.cs: Implemented UseWaitCursor.
7568
7569 2007-01-18  Jackson Harper  <jackson@ximian.com>
7570
7571         * TextControl.cs: We can't skip tags if any part of the tag is
7572         visible.
7573
7574 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
7575
7576         * ContainerControl.cs: Override OnLayout.
7577
7578 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
7579
7580         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
7581
7582         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
7583         everything else.
7584
7585 2007-01-18  Chris Toshok  <toshok@ximian.com>
7586
7587         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
7588         (leftover from the container_selected days, I'd wager).  fixes bug
7589         #80546.
7590
7591 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
7592
7593         * Control.cs: Apply patch from George to fix the new testcase on
7594         bug #80451.  We can't just check for Color.Transparent, we need 
7595         to check if the back color's alpha channel is < 255.
7596
7597 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
7598
7599         * Form.cs: Move setting show_icon = true to before the constructor
7600         so that the base constructor has that information when it calculates
7601         the form's size.  Was causing forms to be (6, 6) bigger than they
7602         were supposed to be.  Thanks for catching this Rolf!
7603
7604 2007-01-18  Jackson Harper  <jackson@ximian.com>
7605
7606         * TextControl.cs: When replacing a selection we need to invalidate
7607         from the initial selection start, because selection start is moved
7608         to the end of the replacement.
7609
7610 2007-01-18  Andreia Gaita  <avidigal@novell.com>
7611
7612         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
7613
7614 2007-01-18  Chris Toshok  <toshok@ximian.com>
7615
7616         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
7617         I just added.
7618
7619 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
7620
7621         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
7622         layout methods and properties from ToolBarButton must be available
7623         into ToolBarButtonInfo.
7624
7625 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
7626
7627         * Control.cs: If the control has a transparent background, we
7628         need to refresh it when it moves and when it's parent's background
7629         image changes.  [Fixes bug #80451]
7630
7631 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
7632
7633         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
7634
7635 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
7636
7637         * XplatUIWin32.cs: Implement proper double buffering for Windows.
7638         [Fixes bug #80447, and probably speeds up things as well]
7639
7640 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7641
7642         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
7643         * XplatUIWin32.cs: We need to recalculate NC size after changing 
7644         window style to toolwindow (otherwise the client rectangle will be
7645         3 pixels to small for some reason).
7646         * MdiWindowManager.cs: Revert NC size calculations to match how
7647         they are calculated only based on window styles (to match
7648         Win32AdjustWindowRectEx, since otherwise when setting size or 
7649         location, Control will call Win32AdjustWindowRectEx to update client 
7650         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
7651         calculate a different value of client size causing another paint 
7652         (and flickering))
7653         * InternalWindowManager.cs: When moving or resizing a window only
7654         update size or location if they actually changed.
7655         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
7656         (seems to match Windows behaviour better). Cleaned up 
7657         ManagedWindowDecorations to draw what's needed and nothing else
7658         (was drawing borders and lines where they shouldn't be)
7659         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
7660         (style = 0xFFFF) and takes into account caption height when 
7661         calculating window rectangle.   
7662
7663 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
7664
7665         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
7666         can be added to toolbar multiple times, we need to maintain a list of 
7667         button information for each positions.
7668
7669 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
7670
7671         * ToolBar.cs: Some small stetic changes.
7672
7673 2007-01-16  Jackson Harper  <jackson@ximian.com>
7674
7675         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
7676         that allow us to have nested recalc = false blocks.
7677         - Add paste support for images in the RichTextBox
7678         * RichTextBox.cs: flush the text after the color is changed, so
7679         the change takes effect.
7680         - Use SuspendRecalc
7681         - Some extra debugging info
7682         * TextControl.cs: Tags no longer track their length, it is just
7683         computed from the next tags length, this makes things a little
7684         simpler and reduces places that we have to track length changes.
7685         - Refactored the linetag class a little so we could make it
7686         a base class for different kinds of tags
7687         - Created a image tag, a tag that can have a single image inserted
7688         into it
7689         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
7690         that we can call suspend multiple times.
7691         - Add some debugging methods
7692
7693 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7694
7695         * MdiClient.cs: Add ActivatePreviousChild for 
7696         mdi child window navigation.
7697         * Form.cs: Use MdiClient.ActivateNextChild/
7698         ActivatePreviousChild instead of Form.SelectNextControl
7699         to select the next/previous child since 
7700         SelectNextControl doesn't do it in the same order
7701         as mdi children should do it.
7702
7703 2007-01-16  Chris Toshok  <toshok@ximian.com>
7704
7705         * Control.cs: remove container_selected field.
7706
7707 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7708
7709         * MdiClient.cs: Update main form's ActiveChild when
7710         updating keyboard focus for the mdi child.
7711
7712 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
7713
7714         * Control.cs: PreferredSize fix.
7715
7716         * Form.cs: Add several 2.0 events, properties, and methods.
7717
7718 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
7719
7720         * Form.cs: Provide meaningful message when MdiParent is assigned a
7721         Form that is not an MdiContainer.
7722
7723 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7724
7725         * MdiClient.cs: Update main form's ActiveChild when
7726         activating a mdi child.
7727
7728 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7729
7730         * MdiWindowManager.cs: Fix NRE when merging menus and main form
7731         doesn't have a menu.
7732
7733         * Form.cs: Request NCRecalc after creating a mdi child window.
7734         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
7735         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
7736         
7737         * MdiClient.cs: Add new method SendFocusToActiveChild that either
7738         sends keyboard focus to the active child, or to the MdiClient
7739         if there are no child forms.
7740         
7741 2007-01-15  Chris Toshok  <toshok@ximian.com>
7742
7743         * ListView.cs: drop the *Internal overrides, just do our work in
7744         ItemControl's WndProc instead.
7745
7746         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
7747         of the various controls, and forward the events properly (in the
7748         same manner as MS) from the textbox to the UpDown.  Also the
7749         ActiveControl of the UpDownBase gets set properly now.  Finally,
7750         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
7751
7752         * NumericUpDown.cs: set Text in the ctor.
7753
7754         * DomainUpDown.cs: call UpdateEditText in the ctor.
7755         
7756         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
7757         so even a Selectable = false textbox can be focused if you click
7758         in it.  Go figure.
7759
7760         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
7761         just add their handling in their respective WndProc's.  Also add
7762         an explicit FocusInternal method that doesn't consult CanFocus
7763         before calling Select(this).
7764
7765         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
7766         do our work in WndProc instead.
7767
7768         * TabControl.cs: same.
7769
7770         * ComboBox.cs: same.
7771
7772 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
7773
7774         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
7775         Fixes #80006.
7776
7777 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
7778
7779         * ListViewItem.cs:
7780         * ThemeWin32Classic.cs: Don't draw the item text outside
7781         item bounds in Details view, as well as use trimming.
7782         Fixes bug #80376.
7783
7784 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
7785
7786         * Form.cs: Implement Form.ShowIcon.
7787         
7788         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
7789         null, which when combined with the DlgModalFrame window style removes
7790         the icon from the title bar.
7791
7792 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
7793
7794         * Control.cs: Call OnMouseClick after OnClick. (2.0)
7795
7796 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
7797
7798         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
7799         menu when mdi child windows theres a menu, uses insert to get icon
7800         at first position. Partially fix #80006.
7801
7802 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
7803
7804         * Clipboard.cs: Implement 2.0 methods.
7805
7806 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
7807
7808         * Menu.cs: Implement Insert method of MenuItemCollection class
7809         to fix MenuMerge.
7810
7811 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7812
7813         * ListView.cs: Implement 2.0 FindItemWithText method.
7814
7815 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
7816
7817         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
7818         to calculate menu bar size. Fixes #80290.
7819
7820 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
7821
7822         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
7823
7824 2007-01-11  Chris Toshok  <toshok@ximian.com>
7825
7826         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
7827         initial form.
7828
7829 2007-01-11  Chris Toshok  <toshok@ximian.com>
7830
7831         * LinkLabel.cs: make sure to call base.Select in our Select method
7832         if it turns out we're going to be selected (i.e. if we have a link
7833         that is going to receive focus).  That way our container's
7834         ActiveControl is updated properly.
7835
7836 2007-01-11  Chris Toshok  <toshok@ximian.com>
7837
7838         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
7839         they have 1 or more links.  this fixes the crash gert reported.
7840
7841 2007-01-11  Andreia Gaita  <avidigal@novell.com>
7842
7843         * ContainerControl.cs: Remove ContainerSelected flag, not needed
7844         anymore.
7845
7846         * Control.cs (Controls.Add): Check if control to be added to the collection
7847         is a top level control, and throw an ArgumentException if it is.
7848         Remove ContainerSelectedFlag, not needed anymore.
7849
7850         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
7851         top most control doesn't activate the form. This fixes a problem in the
7852         MessageBox, where the default button wouldn't get focus because the form
7853         was activated before being Loaded - when the Owner is set, SetTopMost is
7854         called, and it would activate it.
7855
7856 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
7857
7858         * Button.cs: When clicked and setting the parent form's DialogResult,
7859         use FindForm instead of Parent, since parent could be a container
7860         control and not the Form.  Fixes bug #80495.
7861
7862 2007-01-10  Chris Toshok  <toshok@ximian.com>
7863
7864         * Form.cs: move the call to SendControlFocus into the same
7865         is_loaded check.
7866
7867 2007-01-10  Chris Toshok  <toshok@ximian.com>
7868
7869         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
7870         It breaks in the face of the new ActiveControl stuff, and should
7871         be unnecessary.
7872
7873         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
7874         activecontrol's focus if it's not already set, after we set
7875         ActiveControl, but before we call OnActivated.  Re-fixes #79667
7876         after the previous focus/active control fixes regressed it.
7877
7878         * Control.cs: reindent some code.
7879         
7880 2007-01-10  Chris Toshok  <toshok@ximian.com>
7881
7882         * Splitter.cs: clearing some outstanding changes from my tree.
7883         Replace all accesses (not writes) to the internal dock_style field
7884         with the Dock property.
7885
7886 2007-01-10  Chris Toshok  <toshok@ximian.com>
7887
7888         * Control.cs: make FireEnter, FireLeave, FireValidating, and
7889         FireValidated virtual.
7890
7891         * Form.cs: override and don't chain up calls to FireEnter and
7892         FireLeave.
7893
7894 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7895
7896         * ListView.cs: Add more text padding space when using
7897         auto resize for columns (the previous value didn't work fine).
7898
7899         * ThemeWin32Classic.cs: Update text position inside columns,
7900         to match the appeareance of .Net.
7901
7902         * ColumnHeader.cs: When using auto resize, only the Width should
7903         depend on the sub items, not the Height. Also, set width after
7904         auto resizing (the value of Width should never remain as -1 or -2).
7905
7906 2007-01-10  Chris Toshok  <toshok@ximian.com>
7907
7908         * Application.cs: fix compilation errors when debug is enabled.
7909
7910 2007-01-10  Chris Toshok  <toshok@ximian.com>
7911
7912         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
7913         add some nice ascii art pictures and explanation of the process).
7914         (GetMostDeeplyNestedActiveControl): new utility function we need
7915         because our ActiveControl can refer to a child container with its
7916         own ActiveControl.
7917
7918         * Form.cs (OnActivated): remove the call to SelectActiveControl
7919         from here, since you can override this method and not chain up,
7920         and winforms still sets the active control.
7921         (OnCreateControl): also remove the unnecessary SelectActiveControl
7922         call from here.
7923         (WndProc): it's actually called from the WM_ACTIVATE block, just
7924         before calling OnActivated.
7925
7926         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
7927         inside the else.  the ActiveControl setter will end up setting
7928         focus on @control.  This keeps us from setting it again (and
7929         generating an extra LostFocus/GotFocus pair).
7930         (Select (bool, bool)): reindent.
7931
7932 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
7933
7934         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
7935         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
7936         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
7937         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
7938         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
7939         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
7940         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
7941         ToolStripTextBox.cs: Another wave of corcompare work.
7942
7943 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7944
7945         * ColumnHeader.cs: Implement 2.0 AutoResize method using
7946         the Width property.
7947
7948         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
7949         methods by callling Column.AutoResize method on columns.
7950
7951 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
7952
7953         * Control.cs: Provide proper implementations of PreferredSize
7954         and GetPreferredSize (2.0).
7955
7956 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
7957
7958         * Form.cs: Remove one character (!) to make my previous OnClosing
7959         stuff work for modal windows like MessageBox.
7960
7961 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7962
7963         * ListView.cs:
7964         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
7965         ListView.Columns to get the last displayed column. Fixes #80452.
7966
7967 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
7968
7969         * Label.cs, LinkLabel.cs: Source code identation fixes.
7970
7971 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
7972
7973         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
7974         we dont need to invalidate only borders because when we invalidate four
7975         border lines the invalidate's generates a complete redraw of button, 
7976         because it now invalidate a complete rect some other redraws operations
7977         are fixed. Fixes #80196.
7978         
7979         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
7980         Remove ToolBarInvalidateEntireButton as it is not used.
7981
7982 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
7983         
7984         * Form.cs: Make sure that both OnClosing and OnFormClosing are
7985         called for 2.0 profile.
7986         * CloseReason.cs: Make class internal for 1.1.
7987
7988 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
7989
7990         * ToolStripManager.cs: Implement FindToolStrip functionality.
7991         * ToolStrip.cs: Register and unregister with ToolStripManager.
7992
7993 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
7994
7995         * Control.cs: This was messy.  2.0 moves much of ControlCollection
7996         to ArrangedElementCollection.  Implemented this with as few #if's as 
7997         possible (which is still too many).
7998
7999 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
8000
8001         * Control.cs: Implement SizeFromClientSize() [2.0].
8002
8003 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
8004
8005         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
8006         use Theme.BorderSize to calculate area instead of static value 1, 
8007         by the way use new BorderStaticSize instead     Border3DSize when 
8008         border_static is true. Fixes #79537.
8009         
8010         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
8011         
8012         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
8013         it is not needed.
8014
8015 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
8016
8017         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
8018
8019 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
8020
8021         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
8022         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
8023         
8024         * Hwnd.cs: 
8025         - border_static field added, it will used to define when a control 
8026         theres 3D border but it must be static (thin).
8027         - In GetWindowRectangle use Theme.BorderSize to calculate area 
8028         instead of static value 1, by the way use new BorderStaticSize instead
8029         Border3DSize when border_static is true.
8030
8031         * XplatUIX11.cs, XplatUIOSX.cs: 
8032         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
8033         
8034         * Theme.cs: BorderStaticSize field added.
8035
8036 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
8037
8038         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
8039
8040 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
8041
8042         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
8043         mimic same behavior than win32 that set border only in CreateParams,
8044         it fix problems under CreateParams overrides. Fix #79442 and partial
8045         fix #79537.
8046         
8047         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
8048         of thi control you must call recreate handle. 
8049         
8050         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
8051         need to do anything as RecreateHangle will take care about borders.
8052
8053 2007-01-05  Mike Kestner  <mkestner@novell.com>
8054
8055         * ListView.cs: hack to eliminate Lost/Got focus notifications on
8056         cycles between the ItemControl and parent.  Fixes #80388.
8057
8058 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
8059
8060         * Control.cs: Lazy init layout engine. Do not directly use 
8061         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
8062
8063 2007-01-05  Chris Toshok  <toshok@ximian.com>
8064
8065         * DataGrid.cs: don't forceably rebind columns in SetDataSource
8066         unless our list manager has changed (i.e. unless we have reason to
8067         believe our columns have changed).  Fixes #80422.
8068         
8069         also, disable the call do BindColumns in
8070         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
8071         1.1 the event isn't raised in response to a column addition on a
8072         table.)
8073
8074 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
8075
8076         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
8077         that inheritors can not call it if they choose.  Fixes bug #80456.
8078
8079 2007-01-05  Andreia Gaita  <avidigal@novell.com>
8080
8081         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
8082         doesn't blow up with a null exception on marshalling.
8083         
8084 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
8085
8086         * Control.cs: Implement several 2.0 protected properties and methods.
8087         Ensure that all necessary events are being called when properties
8088         are set.
8089
8090 2007-01-05  Mike Kestner  <mkestner@novell.com>
8091
8092         * ListView.cs: implement PgUp/PgDn for Details view.  Also
8093         fixes First/LastVisibleIndex to use the item_control.ClientRect 
8094         instead of the parent control.  Fixes #80378.
8095
8096 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
8097
8098         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
8099           determine whether to use yard-pound or not (bug #78399).
8100
8101 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
8102
8103         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
8104         problems. So it is time to bring back the old popupbutton colors.
8105
8106 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8107
8108         * ColumnHeader.cs:
8109         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
8110         property by using the internal information of the
8111         columns order in ListView.
8112
8113 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
8114
8115         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
8116         Add 2.0 Tag properties.
8117
8118         * LinkArea.cs: Add 2.0 ToString method.
8119
8120 2007-01-03  Chris Toshok  <toshok@ximian.com>
8121
8122         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
8123         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
8124         when we're editing, which fixes #80047.
8125
8126 2007-01-03  Chris Toshok  <toshok@ximian.com>
8127
8128         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
8129         #80404.
8130
8131 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
8132
8133         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
8134         property and implementation.
8135
8136         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
8137         for MdiWindowListItem property.
8138
8139         * ToolStripDropDown.cs: Don't consider hidden menu items while
8140         laying out the menu.
8141
8142 2007-01-03  Andreia Gaita  <avidigal@novell.com>
8143
8144         * SendKeys.cs: window handle is not needed in win32, so just
8145         get the active window for X after parsing keys and don't use
8146         it when building the message; it is passed by parameter to the 
8147         Xplat method and used there to build the message instead. Also,
8148         wait for events to be processed on SendWait, as opposed to Send,
8149         which doesn't wait :) Playing with threads and Send() completely 
8150         hangs on ms.net, only SendWait() works.
8151         
8152         XplatUIX11.cs
8153         X11Display.cs: Check for valid window handle.
8154
8155 2007-01-03  Jackson Harper  <jackson@ximian.com>
8156
8157         * TextControl.cs: Need to prevent wrap calculations when replacing
8158         text (this was there before i removed it accidently).
8159         - Don't update the cursor during the positioning, just set it to
8160         selection_start at the end of the operaion.
8161
8162 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8163
8164         * Control.cs:
8165         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
8166         
8167 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8168
8169         * MonthCalendar.cs: Added Click and DoubleClick events again,
8170         but this time they only hide Control's Click and DoubleClick.
8171         
8172 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
8173
8174         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
8175         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
8176
8177 2007-01-02  Jackson Harper  <jackson@ximian.com>
8178
8179         * TextBoxBase.cs: We move the caret with the split now, so we
8180         don't need to explicitly move the caret after splitting.  This
8181         fixes the caret bumping down an extra line on Enter.
8182
8183 2007-01-02  Miguel de Icaza  <miguel@novell.com>
8184
8185         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
8186         2.72). 
8187
8188         * ScrollableControl.cs: Add Scroll event.
8189
8190 2007-01-02  Mike Kestner  <mkestner@novell.com>
8191
8192         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
8193         to fix all hdr height padding codepaths.  Fixes #80207.
8194
8195 2007-01-02  Chris Toshok  <toshok@ximian.com>
8196
8197         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
8198         setting it to the Control defaults anyway, and it being after the
8199         Dock set was screwing up layout.
8200         (set_Dock): don't short circuit out of setting base.Dock.  Also,
8201         no need to call UpdateStatusBar here, as it'll be re-layed out if
8202         it needs to be.
8203
8204 2007-01-02  Mike Kestner  <mkestner@novell.com>
8205
8206         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
8207         to header height for width == -1. Fixes the rest of #80207.
8208
8209 2007-01-02  Mike Kestner  <mkestner@novell.com>
8210
8211         * ListView.cs: rework the mouse event forwarding everaldo added
8212         to translate the coordinates to the parent control not
8213         raise the parent events until after we've done our work. Hover
8214         needs more work, in the case where HoverSelection is on, because
8215         the item control receives more than one MouseHover per Enter
8216         event, so we need to ensure only the "first" hover gets forwarded.
8217         Opening a minor bug for that.
8218
8219 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
8220
8221         * CheckedListBox.cs: Fixed SelectionMode to match MS.
8222         * ListControl.cs: Implemented AllowSelection property. Removed extra
8223         tabs.
8224         * ListBox.cs: Implemented AllowSelection property.
8225
8226 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8227
8228         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
8229         SelectedItem, it prevent for errors when you must disable item
8230         before perform click. Fixes #80409.
8231
8232 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8233
8234         * MenuAPI.cs: Prevent second level and beyond submenus to close
8235         until first level when move out side of popup.
8236         
8237 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8238
8239         * MenuAPI.cs:
8240         - Down submenu positin in three pixels.
8241         - Closes sub menu when mouse leaves from menu. Fixes #80402.
8242
8243 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8244
8245         * ThemeWin32Classic.cs:
8246         - Fix popup menu size adding one pixel on the top.
8247         - Down menu item border from two to one to mimic Win32.
8248         - Some source identation fixes. 
8249
8250 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
8251
8252         * ThemeWin32Classic.cs: Use float numbers to calculate size and
8253         position of menu arrows, it fix wrong arrow size.
8254
8255 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
8256
8257         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
8258         instead of line, it simplify draw operation and fix it using 3D
8259         borders to mimic Win32.
8260
8261 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
8262
8263         * StatusStrip.cs: Add implementation of the sizing grip.
8264
8265         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
8266         StatusStrip rendering.
8267
8268 2006-12-31  Chris Toshok  <toshok@ximian.com>
8269
8270         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
8271         override the layout style (anchor/dock) of the control.  assign to
8272         Dock instead.  Fixes bug #80416.
8273
8274         * ToolStrip.cs: same.
8275
8276 2006-12-31  Andreia Gaita  <avidigal@novell.com>
8277
8278         * ContainerControl.cs: Use ContainerSelected flag to check if 
8279         a Container is directly selected, or if Select is called on a 
8280         non-container. If a container is directly selected, focus events 
8281         should not be raised.
8282         Apply #80411 patch to throw exception on set_ActiveControl if 
8283         control is the same as the current one.
8284         
8285         * Control.cs: Use ContainerSelected flag (see above).
8286         Add invalidation check to raise event but not invalidate if 
8287         dimensions are 0.       
8288         Apply #80411 patch.
8289         
8290
8291 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
8292
8293         * MenuAPI.cs: After click, dont close popup menu when menu is
8294         ContextMenu. Fixes #80399.
8295
8296 2006-12-30  Chris Toshok  <toshok@ximian.com>
8297
8298         * ContainerControl.cs: make sure we throw the exception if the
8299         container control doesn't contain the control we're setting
8300         ActiveControl to.
8301
8302 2006-12-30  Chris Toshok  <toshok@ximian.com>
8303
8304         * Control.cs (SetTopLevel): fix the exception raised by
8305         SetTopLevel for child controls.
8306         (set_Anchor): call UpdateDistances when setting the anchor type.
8307         This fixes bug #80336.
8308
8309 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
8310
8311         * Theme.cs: For now, revert back to 8pt font.
8312
8313 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
8314
8315         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
8316         Fixes #80395.
8317
8318 2006-12-29  Chris Toshok  <toshok@ximian.com>
8319
8320         * Control.cs: reorder the code in OnResize to give the same event
8321         ordering as MS.
8322
8323 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8324
8325         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
8326         TileHorizontally and TileVertically.
8327         
8328 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
8329
8330         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
8331         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
8332         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
8333         Corrected copyright and email adress.
8334
8335 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
8336
8337         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
8338         of Exception in FullPath property if no TreeView is associated with
8339         the TreeNode.
8340
8341 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
8342
8343         * Theme.cs: Marked default_font as private, and initialize it in ctor
8344         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
8345         on 2.0 profile.
8346         * ThemeGtk.cs: Removed default_font intialization.
8347         * ThemeWin32Classic.cs: Removed default_font initialization.
8348
8349 2006-12-28  Chris Toshok  <toshok@ximian.com>
8350
8351         * Control.cs: fix a couple of place where we were creating handles
8352         more aggressively than we should be.  Fixes ControlRefresh unit
8353         tests.
8354
8355 2006-12-28  Chris Toshok  <toshok@ximian.com>
8356
8357         * Control.cs: contrary to what the comment said, Control.Dock does
8358         not supercede Control.Anchor - the last one you assign to decides
8359         the layout behavior.  so we need to keep track of which was the
8360         last set.  Also, fix some of the affected property arguments in
8361         PerformLayout calls, and remove an redundant parent.PerformLayout
8362         call in OnResized.
8363
8364         Add a VisibleInternal property, which returns is_visible.  We
8365         can/should get rid of all the usage of this field elsewhere.
8366
8367 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8368         
8369         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
8370         control style, not DoubleBuffer. Added UseDoubleBuffering property
8371         that indicates whether doublebuffering is enabled and supported.
8372         (comment from and code based on Gert Driesen's patch in #80324).
8373         Fixes #80324.
8374
8375 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8376         
8377         * Control.cs: Fixed a NRE.
8378
8379 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8380
8381         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
8382         for 2.0.
8383
8384 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8385
8386         * Control.cs: Rewrote double buffering, now a seperate
8387         class handles all the buffering, no Graphics is disposed of
8388         until the painting is finished (earlier implementation 
8389         would crash if the control was resized in the OnPaint, 
8390         since it would cause the double buffer to be recreated
8391         and the old one disposed), a separate Graphics is 
8392         created for every paint (MS behaviour and anyways the state
8393         of the Graphics would have to be saved and restored otherwise)
8394         
8395         * XplatUIDriver.cs: 
8396         * XplatUIX11.cs:
8397         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
8398         so that we can get the graphics for the back buffer without
8399         having to create a new one and remove the offscreen_dc parameter
8400         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
8401         
8402 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8403
8404         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
8405         Also make virtual all the key-related methods.
8406
8407         * ListViewItem.cs: Make virtual the key related methods for
8408         ListViewSubItemCollection.
8409
8410 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8411
8412         * ListView.cs:
8413         * ListViewItem.cs:
8414         * ThemeWin32Classic.cs:
8415         * Theme.cs: Initial support for Tile view in ListView,
8416         as well as the implementation of the required bits for it (Item
8417         and Subitem).
8418
8419 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8420
8421         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
8422         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
8423         Provide useful exception messages.
8424
8425 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8426
8427         * TrackBar.cs: Remove a warning.
8428         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
8429         when used by DateTimePicker, fixes #80287. This also requires that 
8430         MonthCalendar implements it's own drawing for the yearly updown control,
8431         otherwise the Capture tracking would be too complicated. Removed the Click 
8432         and DoubleClick events (according to comments they were hiding the base class
8433         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
8434         raise these events, not that they cannot be raised. It is possible to raise 
8435         them by calling OnClick and OnDoubleClick). Added two internal fields in 
8436         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
8437         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
8438         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
8439         event, no longer needed.
8440         
8441 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8442
8443         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
8444         true if new value differs from current value.
8445
8446 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8447
8448         * Control.cs: ControlCollection.Count must be public. Fixed build of
8449         unit tests.
8450
8451 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8452
8453         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
8454
8455 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8456
8457         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
8458
8459 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
8460
8461         * Control.cs: Invalidates control including when Width and Height is 
8462         equal zero or is not visible, only Paint event must be care about 
8463         this. Fixes #79913.
8464
8465 2006-12-26  Chris Toshok  <toshok@ximian.com>
8466
8467         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
8468         more corcompare work.
8469
8470         * DataGridView.cs: fix compiler warning.
8471
8472         * ColumnHeader.cs: some corcompare work, and also take the
8473         opportunity to make the internal fields private.
8474
8475         * ListView.cs: fix the fallout from the above field change.
8476
8477 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
8478
8479         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
8480         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
8481         ToolStripTextBox.cs: Fixes to events and corcompare.
8482
8483 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
8484
8485         * ListView.cs: Call owner.OnMousexx event to propagate events from
8486         item to ListView. Fixes #80367.
8487
8488 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
8489
8490         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
8491         if value is less than one. ItemHeight should not be set to a value
8492         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
8493         Removed extra tabs.
8494
8495 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
8496
8497         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
8498         * ToolStripStatusLabel.cs: Add Spring for Moma.
8499
8500 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
8501
8502         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
8503         Fixed code formatting. Removed debug code.
8504         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
8505
8506 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
8507
8508         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
8509         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
8510         ArgumentOutOfRangeException if ColumnCount is negative. In 
8511         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
8512         less than 4 or higher than 32768.
8513         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
8514         Fixed FormatProvider to return CurrentCulture unless explicitly set.
8515         Fixed IsFormatProviderDefault to return true if FormatProvider has
8516         not been explicitly set.
8517
8518 2006-12-25  Chris Toshok  <toshok@ximian.com>
8519
8520         * Application.cs: add a couple of 2.0 events.
8521
8522 2006-12-25  Chris Toshok  <toshok@ximian.com>
8523
8524         * Control.cs: fix compiler warning.
8525
8526         * AxHost.cs: corcompare fixes.
8527
8528         * ApplicationContext.cs: corcompare fixes.
8529
8530 2006-12-25  Chris Toshok  <toshok@ximian.com>
8531
8532         * Control.cs: only update dist_right/dist_bottom if the
8533         width/height is > 0.  this fixes anchored controls being resized
8534         smaller until they disappear and then resized larger again.
8535
8536 2006-12-25  Chris Toshok  <toshok@ximian.com>
8537
8538         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
8539         since they're nothing more than X/Left and Y/Top, respectively.
8540
8541         Also, move back to a per-control Bitmap/Graphics for
8542         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
8543         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
8544         Height.
8545
8546 2006-12-25  Miguel de Icaza  <miguel@novell.com>
8547
8548         * MessageBox.cs: Implemented overload that takes a new "bool
8549         displayHelpButton" by adding a new internal field "show_help".
8550         When clicked this will raise the HelpRequested on the owner or the
8551         main form. 
8552
8553         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
8554         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
8555
8556         * ListView.cs: Add support ColumnWidthChanged and
8557         ColumnWidthChanging. 
8558
8559         Add support for ColumnReordered event.
8560         (ReorderColumn): Add NET_2_0 specific support for cancelling the
8561         reorder.
8562
8563         Very nice codebase!
8564
8565         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
8566
8567         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
8568
8569 2006-12-24  Chris Toshok  <toshok@ximian.com>
8570
8571         * GridTablesFactory.cs: 2.0 corcompare work.
8572
8573         * ToolStripContainer.cs: add "override" to
8574         ContextMenuStripChanged, and remove the local event object.
8575
8576         * ToolStripDropDown.cs: same with a couple properties.
8577
8578         * ToolStripPanel.cs: same with AutoSizeChanged event.
8579
8580         * TextBoxBase.cs: add "override" to AutoSizeChanged.
8581
8582         * Form.cs: add the remaining 2.0 events, and do some corcompare
8583         attribute work.
8584
8585         * DateTimePicker.cs: add "new" to padding.
8586
8587         * ButtonBase.cs: use Control's use_compatible_text_rendering.
8588
8589         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
8590
8591         * DataGridView.cs: PaddingChanged is overridden.
8592
8593 2006-12-24  Chris Toshok  <toshok@ximian.com>
8594
8595         * Control.cs: corecompare work here too.
8596
8597         * DataGridViewElement.cs, DataGridView.cs,
8598         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
8599         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
8600         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
8601         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
8602         work.
8603
8604 2006-12-24  Miguel de Icaza  <miguel@novell.com>
8605
8606         * Control.cs: Switched the error message on the console for a
8607         todo.  A review of the code will have to cope with this anyways
8608         (since its a large feature, it is in our radar) and it was
8609         producing too much output when running PDN.
8610
8611         * ToolStripComboBox.cs: Set the text when the SelectedIndex
8612         changes.  Applications depend on this (PDN 2.72)
8613
8614 2006-12-23  Chris Toshok  <toshok@ximian.com>
8615
8616         * TableLayoutSettings.cs: finish up the corcompare work for this
8617         class.
8618
8619 2006-12-23  Chris Toshok  <toshok@ximian.com>
8620
8621         * Control.cs: make SetImplicitBounds internal, do some futzing
8622         with LayoutEngine so that it's available in 1.1, and remove the
8623         entire duplicated code mess from PerformLayout.  Use
8624         System.Windows.Forms.Layout.DefaultLayout instead.
8625
8626         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
8627
8628 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
8629
8630         * Form.cs: Add MainMenuStrip property.
8631
8632 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
8633
8634         * Control.cs: Add ContextMenuStrip property and implementation.
8635         Fix ContextMenu implementation to show menu centered on control when
8636         activated using the keyboard instead of showing at screen (0,0).
8637
8638         * ToolStripDropDown.cs: Fix needed overload of Show ().
8639
8640 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
8641
8642         * Menu.cs: Name property added for 2.0 profile.
8643         
8644 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
8645
8646         * Menu.cs: Update information about FindMenuItem, method to be
8647         implemented soon.
8648
8649 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
8650
8651         * MenuAPI.cs: When deselect items deselect also selected subitems.
8652         
8653 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
8654
8655         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
8656         FindSubItemByCoord to found itens that is not active, also an
8657         cheking added to FindSubItemByCoord to search for items only 
8658         in visible popup windows. Fixes #80274.
8659
8660 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
8661
8662         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
8663         internal property, it be care about change ExStyle. 
8664
8665 2006-12-22  Andreia Gaita  <avidigal@novell.com>
8666
8667         * ContainerControl.cs: set activeControl for parent forms up the 
8668         tree when the new activecontrol is a container.
8669         When validating the active control, if it is a container, also
8670         raise up the validation for it's active control. Fixes #80280
8671         
8672         * Control.cs: Add internal property flag and check to prevent
8673         Focus events from getting raised when Select() is called for
8674         a ContainerControl. There are still too many focus events being
8675         raised at the moment though.
8676         Cleaned up the code a bit.
8677
8678 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8679
8680         * Control.cs: Added all missing 2.0 events.and
8681         fixed a couple of corcompare issues.
8682         * TrackBar.cs: Implemented missing 2.0 bits.
8683         * MonthCalendar.cs, 
8684         * DateTimePicker.cs, 
8685         * MdiClient.cs: Fixed some corcompare issues.
8686
8687 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
8688
8689         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
8690         SplitterPanel.cs: corecompare work.
8691
8692 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
8693
8694         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
8695         Clean up warnings for BackgroundImageChanged and PaddingChanged
8696         events now that they are implemented in Control.cs.
8697
8698 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
8699
8700         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
8701         
8702         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
8703         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
8704         of TableLayoutPanel and supporting cast.
8705
8706 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8707
8708         * XplatUIWin32.cs: 
8709         - GrabWindow now confines the mouse pointer to the confine window.
8710         - Added Win32ClipCursor and Win32GetClipCursor.
8711
8712         * Control.cs: 
8713         - Added CaptureWithConfine to be able to capture and confine 
8714         mouse pointer.
8715         
8716         * InternalWindowManager.cs: 
8717         - Call CaptureWithConfine instead of Capture if we're an
8718         MdiChild (fixes #79982).
8719
8720 2006-12-21  Chris Toshok  <toshok@ximian.com>
8721
8722         * DataGrid.cs: guard against the initial state of selection, where
8723         selection_start == -1.  make sure we only select from index >= 0.
8724         Fixes bug #80291.
8725
8726 2006-12-21  Chris Toshok  <toshok@ximian.com>
8727
8728         * Control.cs: we don't need to be so draconian with
8729         UpdateDistances, and we thusly don't need to call it before
8730         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
8731
8732 2006-12-21  Daniel Nauck  <dna@mono-project.de>
8733
8734         * ComboBox.cs,
8735         TextBox.cs: Implemented AutoComplete properties.
8736
8737 2006-12-20  Chris Toshok  <toshok@ximian.com>
8738
8739         * DataGridView*.cs: some corecompare work.
8740
8741 2006-12-20  Jackson Harper  <jackson@ximian.com>
8742
8743         * XplatUIX11.cs: We need to hide the caret when deleting it,
8744         otherwise you get carets left lying around everywhere.
8745         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
8746         prevents getting some weird half drawn caret tracers when
8747         scrolling.
8748         * TextControl.cs: Attempt to reduce the number of times we need to
8749         recreate the caret.
8750
8751 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
8752
8753         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
8754
8755 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8756
8757         * DateTimePicker.cs:
8758         - Implemented missing 2.0 bits.
8759         - Changed some default values to match MS.
8760         
8761 2006-12-20  Jackson Harper  <jackson@ximian.com>
8762
8763         * TextBoxBase.cs: When changing the font across the document we
8764         can't recalculate after changing each line, since that will cahnge
8765         the line count.
8766         - PreferredHeight is a little different than i thought.
8767         - When backspacing, move the caret before we do the actual char
8768         delete, because when that delete crosses a wrap boundary the
8769         positional information will change.
8770
8771 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8772
8773         * Control.cs: Added some missing 2.0 bits: 
8774         BackgroundImageLayout, BackgroundImageLayoutChanged, 
8775         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
8776         add IBindableComponent and IDropTarget implementation.
8777         
8778         * MonthCalendar.cs: 
8779         - Added all missing 2.0 features:
8780         BackgroundImageLayout, RightToLeftLayout, 
8781         OnHandleDestroyed, RightToLeftLayoutChanged, 
8782         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
8783         PaddingChanged.
8784         - Rewrote all the BoldDate code, it was completely broken.
8785         - Fixed all the tests (the tests can now be re-enabled, the
8786         problems were not with the tests, but with the control, it was
8787         mostly broken).
8788         
8789         * DateTimePicker.cs: Changed the location where the 
8790         MonthCalendar is shown.
8791         
8792 2006-12-19  Chris Toshok  <toshok@ximian.com>
8793
8794         * DataGridView.cs: add IDropTarget implementation.
8795
8796         * ToolStripPanel.cs: add IDropTarget implementation.
8797
8798 2006-12-19  Jackson Harper  <jackson@ximian.com>
8799
8800         * TextControl.cs: soft now means something different than what it
8801         used to mean, we want to move the caret regardless of whether or
8802         not this break was soft (would we really have wanted the caret
8803         to not move with the break in the old context?)
8804         * TreeView.cs: Make sure we factor in the vert scrollbar when
8805         calculating the horizontal scrollbar's maximum.
8806
8807 2006-12-19  Andreia Gaita  <avidigal@novell.org>
8808
8809         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
8810         check for keywords in alternate casing, close bug #80049.
8811
8812 2006-12-19  Chris Toshok  <toshok@ximian.com>
8813
8814         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
8815         methods (which all do nothing).
8816
8817         * IDropTarget.cs: add the 4 missing methods.
8818
8819 2006-12-19  Chris Toshok  <toshok@ximian.com>
8820
8821         * TableLayoutRowStyleCollection.cs: corcompare work.
8822         
8823         * TableLayoutSettings.cs: same.
8824
8825         * TableLayoutStyle.cs: same.
8826
8827         * TableLayoutColumnStyleCollection.cs: same.
8828
8829 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
8830
8831         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
8832         TableLayoutPanel I've had in my local tree for way too long.
8833
8834 2006-12-19  Miguel de Icaza  <miguel@novell.com>
8835
8836         * TableLayoutSettings.cs: Finish the public API (still needs all
8837         the logic to update on changes). 
8838
8839         * TableLayoutPanelCellPosition.cs: new file.
8840         
8841         * TableLayoutRowStyleCollection.cs,
8842         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
8843         TableLayoutSettings.cs: Track the final 2.0 table api.
8844
8845 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8846
8847         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
8848         and Image List 2.0 members for ColummnHeader.
8849         * ListView.cs: Add key-related 2.0 methods for
8850         ColumnHeaderCollection.
8851
8852 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
8853
8854         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
8855         ArgumentNullException if items argument is null. Ignore null item in
8856         arrays. Removed extra tabs.
8857
8858 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
8859
8860         * MonthCalendar.cs: Fixed InvalidCastException.
8861
8862 2006-12-19  Jackson Harper  <jackson@ximian.com>
8863
8864         * TextControl.cs: Don't increment the position here.
8865         - When calculating char positions only add in the line break size
8866         for hard line breaks.
8867
8868 2006-12-19  Andreia Gaita  <avidigal@novell.org>
8869
8870         * SendKeys.cs: Changed some things to match ms.net behaviour
8871         when parsing shifted capital letters.
8872         
8873         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
8874         Add window handle as parameter to SendInput. X11 needs the 
8875         window handle, and the handle being passed      to it in the keys 
8876         queue is the active control handle (which windows needs), not 
8877         the window handle.
8878         
8879         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
8880         to support SendKeys on X.       
8881         
8882         * X11Keyboard: Implement helper method to lookup a linux keycode
8883         given the virtual keycode. Added table of keycode-2-virtualkey
8884         values to support this.
8885
8886 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8887
8888         * ListView.cs: Add support for SelectedIndexCollection
8889         and SelectedItemCollection 2.0 methods. Implement support
8890         for ImageKey too.
8891         * ListViewItem.cs: Add support for ListViewSubItemCollection
8892         2.0 methods. Also, fix an incorrect behavior of AddRange method
8893         (it shouldn't call Clear).
8894         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
8895
8896 2006-12-19  Jackson Harper  <jackson@ximian.com>
8897
8898         * RichTextBox.cs: 
8899         * TextBoxBase.cs: New args for FormatText
8900         * TextControl.cs: Rewrote the main drawing method, this version
8901         feels a little easier to understand and debug to me.  Hopefully it
8902         does to others also
8903         - Fix FormatText to OR in the new formating values.  Added
8904         FormatSpecified param, basically this works in the same way as
8905         BoundsSpecified in Control.
8906         - Set the caret properties when the caret is positioned.
8907         - When wrapping text make sure that we calculate the width of the
8908         last character
8909         - when calculating alignments we might have wrapped down to the
8910         next line, so don't search for an individual tag, search for the
8911         end of the line
8912         - We need to invalidate the selection area when we replace the
8913         selection.
8914         
8915 2006-12-19  Daniel Nauck  <dna@mono-project.de>
8916
8917         * Application.cs: add Restart () 2.0 support
8918
8919 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8920
8921         * MenuItem.cs: Invalidate menu item rectangle after change Enable
8922         property. Fixes #80268.
8923         
8924 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8925
8926         * MenuAPI.cs: Dont trigger select event when closes top menu
8927         item. Fixes #80270.
8928
8929 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8930
8931         * MenuAPI.cs: When you click on menuitem only trigger onselect
8932         event for top menu itens. Fixes #80271.
8933         
8934 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8935
8936         * MdiWindowManager.cs: Make IconicBounds depend on
8937         the bottom of MdiClient, not the top (fixes #80267)
8938         
8939 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8940
8941         * MdiClient.cs: Added missing 2.0 attribute
8942
8943 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8944
8945         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
8946         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
8947
8948 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8949
8950         * MenuAPI.cs: Fix click when menuitem is not popup,
8951         this regression was caused by last commit (#80272).
8952
8953 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
8954
8955         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
8956         fire click event or close menu. Fixes #80272.
8957
8958 2006-12-17  Daniel Nauck  <dna@mono-project.de>
8959
8960         * ListViewHitTestInfo.cs: add
8961
8962 2006-12-17  Daniel Nauck  <dna@mono-project.de>
8963
8964         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
8965         * FlatButtonAppearance.cs: add
8966         * DockingAttribute.cs: add
8967
8968 2006-12-17  Chris Toshok  <toshok@ximian.com>
8969
8970         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
8971         and rebind our columns when it does - this way, if you make
8972         changes to the DataTable (or set the Table attribute on a DataView
8973         after setting it as the DataGrid's DataSource, the changes are
8974         made visible.)  Fixes bug #80107.
8975
8976 2006-12-17  Daniel Nauck  <dna@mono-project.de>
8977
8978         * ListViewGroup.cs: add internal Location property for layouting.
8979         * Theme.cs: add abstract ListViewGroupHeight function.
8980         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
8981
8982 2006-12-16  Andreia Gaita  <avidigal@novell.com>
8983
8984         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
8985         Added reset of selected index to 0 when adding first tab page.
8986         Fixes #80264
8987         
8988         * NumericUpDown.cs: Fix NET_2_0 check
8989
8990 2006-12-16  Daniel Nauck  <dna@mono-project.de>
8991
8992         * ListViewGroup.cs: fixed DefaultValueAttribute value
8993
8994 2006-12-16  Daniel Nauck  <dna@mono-project.de>
8995
8996         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
8997
8998 2006-12-15  Miguel de Icaza  <miguel@novell.com>
8999
9000         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
9001         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
9002         ScrollableControl.cs: Add a handful of methods that are
9003         overwritten in 2.0 
9004
9005 2006-12-15  Chris Toshok  <toshok@ximian.com>
9006
9007         * XplatUIWin32.cs: initial implementation of the Reversible
9008         drawing functions.  there are some problems.  DrawReversibleFrame
9009         doesn't seem to work at all for Dashed FrameStyle, and in the
9010         Thick case there are drawing errors at the corners (we probably
9011         need to bind Rectangle instead of doing moveto/lineto's.)
9012
9013 2006-12-16  Andreia Gaita  <avidigal@novell.com>
9014         
9015         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
9016         to send blocks of key messages. Send accumulates keys to send with Flush, 
9017         while SendWait sends all keys immediately.
9018                 
9019         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
9020         XplatUIX11.cs,  XplatUIX11-new.cs:
9021         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
9022         to Win32 SendInput.
9023         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
9024         
9025         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
9026         testing for ms.net on this class is very tricky, as the tests run too fast 
9027         to allow the hook to release, essentially freezing the keyboard and the 
9028         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
9029         category :p
9030
9031 2006-12-16  Daniel Nauck  <dna@mono-project.de>
9032
9033         * Padding.cs: fixed serialization compability to MS ("_var" field names),
9034                         added missing attributes.
9035  
9036 2006-12-15  Daniel Nauck  <dna@mono-project.de>
9037
9038         * ListViewGroup.cs: Added missing attributes.
9039         * ListViewGroupCollection.cs: Added missing attributes.
9040
9041 2006-12-15  Daniel Nauck  <dna@mono-project.de>
9042
9043         * ListViewItem.cs: fixed ListViewSubItem text property.
9044
9045 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9046         
9047         * Control.cs: Added missing 2.0 attributes
9048         
9049 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9050         
9051         * MdiClient.cs: Added missing 2.0 attribute.
9052         * MonthCalendar.cs: Added some missing 2.0 attributes 
9053         and properties.
9054         
9055 2006-12-15  Daniel Nauck  <dna@mono-project.de>
9056
9057         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
9058
9059 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
9060
9061         * MainMenu.cs: Add the new 2.0 constructor to help out people
9062         using the MainMenu in VS2005.
9063
9064 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9065         
9066         * MdiChildContext.cs: Removed it, no longer used.
9067         * MdiClient.cs: Added missing 2.0 attributes.
9068         
9069 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9070         
9071         * InternalWindowManager.cs: Fix a NullRef with previous 
9072         changes for toolwindows.
9073         
9074 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9075
9076         * Control.cs: 
9077         - Added AfterTopMostControl to allow for certain controls 
9078         to always stay on top when normal controls are brought to 
9079         front.
9080         
9081         * XplatUIWin32.cs: 
9082         - (DrawInversibleRectangle): Get window rectangle from Win32 
9083         in stead of from control, since Win32 doesn't calculate
9084         screen coords correctly from control's Location if it 
9085         have docked siblings.
9086         
9087         * MdiWindowManager.cs:
9088         - Correct the control menu popup location when clicked on
9089         the maximized form icon. (fixes #80223.1)
9090         - Don't show moving rectangle if mouse hasn't moved from
9091         the original clicked point.
9092         - Removed FormGotFocus handler (not used).
9093         - Calculate the control buttons location from the main
9094         window's size and not client size (fixes #79770).
9095         - Form is now closed when the form icon is double-clicked
9096         (fixes #79775). 
9097         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
9098         
9099         * InternalWindowManager.cs:
9100         - Moved some MDI-only methods to MdiWindowManager.
9101         - Removed unused properties and methods.
9102         - Unified method naming for methods handling wm messages.
9103         - Moved all message handling to seperate methods for
9104         each message.
9105         
9106         * ThemeWin32Classic.cs:
9107         - DrawManagedWindowDecorations now draws the title bar 
9108         with a gradient brush.
9109         - Add a CPDrawButtonInternal that allows us to specify
9110         light, normal and dark colors for the buttons (control 
9111         buttons for MDI children were drawn with the same light
9112         color as the background, therefore loosing the 3D effect).
9113         
9114         * SizeGrip.cs:
9115         - Add a CapturedControl property that is used to 
9116         determine the control to resize (defaults to parent). 
9117         Needed for MdiClient, since its SizeGrip's parent is
9118         MdiClient, but the control to resize is the main form.
9119         
9120         * MdiClient.cs:
9121         - Set SizeGrip's CapturedControl to the main form in order
9122         to resize the main form and not the MdiClient.
9123         - Override AfterTopMostControl to leave the scrollbars 
9124         always on top.
9125
9126 2006-12-15  Daniel Nauck  <dna@mono-project.de>
9127
9128         * ListView.cs: fixed ListViewItemCollection AddRange and
9129                         implemented ListViewItemCollection AddRange 2.0 support.
9130
9131 2006-12-15  Daniel Nauck  <dna@mono-project.de>
9132
9133         * ListViewGroup.cs: Add.
9134         * ListViewGroupCollection.cs: Add
9135         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
9136         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
9137                                 stub for ImageKey 2.0 support.
9138
9139 2006-12-14  Mike Kestner  <mkestner@novell.com>
9140
9141         * ListView.cs: add text padding to the autocalculation for columns
9142         of width -2.  Fixes #80207.
9143  
9144 2006-12-14  Mike Kestner  <mkestner@novell.com>
9145
9146         * ListView.cs: add some index guarding for partial row navigation 
9147         logic.  Fixes #80250.
9148
9149 2006-12-14  Mike Kestner  <mkestner@novell.com>
9150
9151         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
9152         are added or inserted to the collection.  Fixes #81099.
9153
9154 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
9155
9156         * MenuAPI.cs: Closes menu when right click out side of popup
9157         it fix problem in ContextMenu and MainMenu. Fixes #80252.
9158
9159 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9160
9161         * ListViewItem.cs: Fix dumb error.
9162
9163         * ListView.cs: Add Find and ContainsKey methods in 
9164         ListViewItemCollection, and also return true for IsReadOnly
9165         and IsFixedSize (changes for 2.0). 
9166
9167 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
9168
9169         * Control.cs: Allow Region to be set to null.
9170
9171 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9172
9173         * MdiWindowManager.cs: Remove unused (commented out) code.
9174         * Form.cs: When the MdiChild is maximized, the form needs 
9175         WM_NCMOUSELEAVE, so request it.
9176         * InternalWindowManager.cs: 
9177         - Added tooltips to control buttons.
9178         - Removed duplicated control button handling code.
9179         - Removed unused (commented out) code.
9180         
9181 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
9182
9183         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
9184         was used because we must set cursor without trigger ChangeCursor event
9185         and without change Cursor control property. Fixes #79963.
9186
9187 2006-12-12  Andreia Gaita  <avidigal@novell.com>
9188         
9189         * Control.cs: Check if Region setter value is null, and ignore
9190
9191 2006-12-12  Jackson Harper  <jackson@ximian.com>
9192
9193         * TextControl.cs: We were almost always drawing one more line then
9194         needed, since the GetLineByPixel will return the last line found
9195         at that pixel. In most cases though, we were invalidating up to
9196         the junction between two lines.
9197         - Improve debug code.
9198
9199 2006-12-12  Chris Toshok  <toshok@ximian.com>
9200
9201         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
9202         and FillReversibleRectangle.
9203
9204         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
9205         and FillReversibleRectangle.
9206
9207         * XplatUIWin32.cs: add stubs which do nothing for
9208         DrawReversibleFrame, DrawReversibleLine, and
9209         FillReversibleRectangle.
9210
9211         * XplatUIOSX.cs: add stubs which raise NIE for
9212         DrawReversibleFrame, DrawReversibleLine, and
9213         FillReversibleRectangle.
9214
9215         * XplatUIX11.cs: add working implementation for
9216         DrawReversibleFrame, DrawReversibleLine, and
9217         FillReversibleRectangle.
9218         
9219         * ControlPaint.cs: implement DrawReversibleFrame,
9220         DrawReversibleLine, and FillReversibleRectangle, by calling into
9221         the appropriate XplatUI method.
9222
9223 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9224
9225         * Form.cs: Make MdiClient have the focus even if it's
9226         not selectable, since it should receive WM_KEY* and WM_MOUSE 
9227         messages. Fixes #79907.
9228         
9229 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9230
9231         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
9232         queried after the window is created.
9233         
9234         * XplatUIX11.cs: Added SendParentNotify to implement 
9235         WM_PARENTNOTIFY logic. Fixes #79965.
9236         
9237         * Control.cs: Added MakeParam.
9238         
9239 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9240
9241         * MdiClient.cs: Resume Layout before setting window
9242         states (fixes #80201).
9243
9244 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9245
9246         * MenuAPI.cs: Deselect a menu item after performing
9247         the click (fixes #80197).
9248
9249 2006-12-11  Jackson Harper  <jackson@ximian.com>
9250
9251         * TextBoxBase.cs: We need to cap this value, since Maximum -
9252         ViewPortHeight can be less than zero.
9253         - Only do selection with the left mouse button.
9254         * TextBox.cs: Don't tell the world that we have a context menu.
9255         * Control.cs: New method so that we can control whether or not the
9256         context menu is visible outside MWF.
9257
9258 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
9259
9260         * ToolBarButton.cs: Fix text positon. 
9261
9262 2006-12-11  Miguel de Icaza  <miguel@novell.com>
9263
9264         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
9265
9266         * Control.cs (DoubleBuffered): Add implementation.
9267
9268         * Application.cs (OpenForms): Add.
9269
9270 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
9271
9272         * Form.cs: Use opacity instead of Opactiy to determine if we need
9273         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
9274
9275 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
9276
9277         * Control.cs: Fix NRE if Control.Site was set to null.
9278
9279 2006-12-11  Chris Toshok  <toshok@ximian.com>
9280
9281         * Control.cs: ControlCollection.Remove should return if the arg is
9282         null, and ControlCollection.SetChildIndex should raise a ANE.
9283
9284 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
9285
9286         * Control.cs: Verify value set for Dock property. Code formatting
9287         updates.
9288
9289 2006-12-11  Jackson Harper  <jackson@ximian.com>
9290
9291         * TextControl.cs: Draw the caret and the selection when a flag is
9292         set on the owner.
9293         * TextBoxBase.cs: We want to draw the caret and the selection for
9294         TextBox but not for TextBoxBase.
9295         - If the window is resized and scrolling is no longer needed (the
9296         whole doc is visible) set the scroll position to zero.
9297         - The default SelectWord (the one TextBox uses) should move the
9298         caret to the end of the word.
9299         - SelectAll moves the caret to the end of the selection.
9300         * TextBox.cs: We don't selectall on focus, we just do it when the
9301         control is created.
9302         
9303 2006-12-11  Mike Kestner  <mkestner@novell.com>
9304
9305         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
9306
9307 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9308
9309         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
9310         2.0 support.
9311         * ListViewItem.cs: Add Name 2.0 property.
9312
9313 2006-12-11  Andreia Gaita  <avidigal@novell.com>
9314
9315         * TabControl.cs: Set visibility on selected or default tab 
9316         when tabcontrol handle is created, so that it's contents
9317         actually show up (duh). Fixes #80193
9318         Don't redraw the control if there is no handle created, as
9319         the selected index might be completely invalid. Added some tests
9320         to check for this.
9321
9322 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
9323
9324         * ToolBar.cs: Uses maximun width and height of all buttons as 
9325         button rectangle when ButtonSize specified, it looks strange but
9326         is what happens in Win32. Fixes #80189.
9327
9328 2006-12-11  Jackson Harper  <jackson@ximian.com>
9329
9330         * TextControl.cs: Need to track undo levels ourself, since
9331         compound actions will mess them up.
9332
9333 2006-12-10  Andreia Gaita  <avidigal@novell.com>
9334
9335         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
9336         SelectedIndex value is changed (even if it's not valid).
9337         Reset SelectedIndex to 0 when the handle is created and if
9338         the current index is invalid.
9339         Fixes SelectdeIndex unit tests and #80128
9340
9341 2006-12-08  Chris Toshok  <toshok@ximian.com>
9342
9343         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
9344         calls EndEdit, it needs to be called before we set current_cell to
9345         its new value.  Otherwise, we end up committing the value in the
9346         textbox to the new cell as well.  Fixes bug #80160.
9347
9348 2006-12-08  Chris Toshok  <toshok@ximian.com>
9349
9350         * Form.cs (set_CancelButton): if the button's DialogResult is
9351         None, set it to Cancel.  Fixes bug 80180.
9352
9353 2006-12-08  Jackson Harper  <jackson@ximian.com>
9354
9355         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
9356         to watch ourselves when setting the canvas size and setting the
9357         scrollbar values.
9358
9359 2006-12-08  Chris Toshok  <toshok@ximian.com>
9360
9361         * DataGrid.cs: comment out the two MakeTransparent calls for the
9362         time being so people using trunk (and not 1.2.2) on windows can
9363         actually use the datagrid.  This deals with bug #80151.
9364
9365 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
9366
9367         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
9368         Graphics.DrawImage (image, int, int, int, int) overload instead
9369         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
9370         the dpi difference and was blurring images it drew.
9371         [Fixes bug #79960]
9372
9373 2006-12-08  Chris Toshok  <toshok@ximian.com>
9374
9375         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
9376         rowcnt is 0 (such as with an empty datasource), and make sure we
9377         initialize not_usedarea.Y to cells.Y, so we don't draw over the
9378         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
9379
9380 2006-12-08  Chris Toshok  <toshok@ximian.com>
9381
9382         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
9383         grid.
9384
9385 2006-12-08  Chris Toshok  <toshok@ximian.com>
9386
9387         [ Fixes bug #80167 ]
9388         
9389         * ThemeWin32Classic.cs: don't draw the image if the button's flat
9390         style is FlatStyle.System.
9391
9392         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
9393         ButtonBase.flat_style private, and switch uses of it to the public
9394         property.
9395         
9396 2006-12-08  Chris Toshok  <toshok@ximian.com>
9397
9398         [ Fixes bug #80121 ]
9399         
9400         * ThemeWin32Classic.cs: center the caption text in the datagrid
9401         when we draw it.
9402
9403         * DataGrid.cs: lessen the amount we add to the caption height from
9404         6 to 2.  6 was making it huge.
9405
9406 2006-12-08  Andreia Gaita  <avidigal@novell.com>
9407
9408         * UpDownBase: Handle MouseWheel call directly instead of capturing
9409         the inner textbox's OnMouseWheel. Fixes #80166
9410
9411 2006-12-08  Jackson Harper  <jackson@ximian.com>
9412
9413         * TextControl.cs: We need to invalidate the textbox when we empty
9414         it (how had this not been discovered before?)
9415
9416 2006-12-08  Jackson Harper  <jackson@ximian.com>
9417
9418         * TextBoxBase.cs: Reworked the mouse down code so I could get it
9419         to behave like MS, we now ignore the eventargs.Click and just
9420         track state ourself, which we were already doing anyways.
9421         - Constrain the double click handler to the double click size.
9422         
9423 2006-12-08  Chris Toshok  <toshok@ximian.com>
9424
9425         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
9426         direction if that scrollbar isn't shown.  fixes bug #80158.
9427
9428 2006-12-08  Andreia Gaita  <avidigal@novell.com>
9429
9430         * NumericUpDown.cs: Update value on getter. Fixes #79950
9431
9432 2006-12-08  Chris Toshok  <toshok@ximian.com>
9433
9434         * MenuItem.cs: add back in the event cloning code.  I didn't know
9435         how to do it in the face of the EventHandlerList work i'd done
9436         last week.  Fixes bug #80183.
9437
9438 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
9439
9440         * Control.cs: Add an invalidate to the BackgroundImage setter.
9441         [Fixes 80184]
9442
9443 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
9444
9445         * ToolStrip*: Add some small properties reported by MoMA, fix event
9446         firing and default properties based off of unit tests, and add some
9447         attributes based off of the class status page.
9448
9449 2006-12-07  Jackson Harper  <jackson@ximian.com>
9450
9451         * TextBoxBase.cs: Take HideSelection into account when determining
9452         whether or not to show the selection.
9453         * RichTextBox.cs: After inserting the RTF into the document move
9454         the cursor to the beginning of the document.
9455
9456 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
9457
9458         * Control.cs: Remove static ArrayList "controls" which maintained
9459         a reference to every control created.
9460         * Application.cs: Create a static FormCollection to maintain a reference
9461         to every form created.  Use it in places that formerly enumerated through
9462         the controls one looking for forms.
9463         * Form.cs: Add and remove self from above FormCollection.
9464
9465 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
9466
9467         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
9468           not libgdk (though it makes me wonder why I didn't have any
9469           problems)
9470
9471 2006-12-07  Chris Toshok  <toshok@ximian.com>
9472
9473         [ you had to know this was coming after that last commit...]
9474         
9475         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
9476         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
9477         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
9478         XCopyArea).
9479
9480 2006-12-07  Chris Toshok  <toshok@ximian.com>
9481
9482         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
9483         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
9484         all the behavior we need for double buffering.
9485
9486         * XplatUIDriver.cs: implement the 3 double buffer methods using a
9487         client side Bitmap, just like the old Control-based double buffer
9488         code did.  The methods are virtual, so each XplatUI driver
9489         subclass can replace the implementation to use a faster, platform
9490         specific approach.
9491
9492         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
9493         double buffer code, and clean things up a bit in the process.
9494
9495 2006-12-06  Chris Toshok  <toshok@ximian.com>
9496
9497         * Control.cs: reindent WndProc.
9498
9499 2006-12-06  Chris Toshok  <toshok@ximian.com>
9500
9501         [ I wanna be like BenM when I grow up ]
9502         
9503         * Hwnd.cs: create a single static Graphics object on the static
9504         Bitmap we create.  use this for our text measurements.
9505
9506         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
9507         This was causing us to allocate a backbuffer for every control,
9508         even when it wasn't flagged as double buffered.  Instead use the
9509         single graphics instance.  This might have implications for
9510         multithreaded applications.  If we run into problems we can switch
9511         to creating 1 Graphics per control, on the static Hwnd bitmap.
9512
9513         this change nets us a 7M savings in private dirty mappings when
9514         running FormsTest.exe.
9515
9516 2006-12-06  Chris Toshok  <toshok@ximian.com>
9517
9518         * ListView.cs: the BackgroundImage override is just to set
9519         attributes.  chain up to base.BackgroundImage.
9520
9521         * RichTextBox.cs: same.
9522
9523         * ToolBar.cs: same, but we need to also redraw the toolbar when it
9524         changes, so instead a handler for BackgroundImageChanged.
9525         
9526         * Control.cs: make background_image private.
9527
9528 2006-12-06  Chris Toshok  <toshok@ximian.com>
9529
9530         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
9531         sure we even need this assignment, but roll with it for now.
9532
9533         * Control.cs: make the cursor field private.
9534
9535 2006-12-06  Chris Toshok  <toshok@ximian.com>
9536
9537         * Form.cs: we don't need to explicitly set ImeMode to
9538         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
9539         behavior in the face of ImeMode.Inherit.
9540
9541         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
9542         change the ctor's assignment to use ImeMode instead of ime_mode.
9543
9544         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
9545         ImeModeInherit.  Only check for the parent's imemode (and return
9546         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
9547         This fixes the button unit test, which sets both ImeMode and
9548         DefaultImeMode to ImeMode.Disable.
9549
9550         also make the ime_mode field private.
9551
9552 2006-12-06  Chris Toshok  <toshok@ximian.com>
9553
9554         * Control.cs: make control_style private.
9555
9556         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
9557         setting the styles to true, then setting them to false instead of
9558         reverting to their previous values.
9559
9560         also, call SetStyle on the scrollbars instead of using
9561         control_style directly.
9562
9563 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
9564
9565         * FormCollection.cs: Implement. [2.0]
9566
9567 2006-12-06  Chris Toshok  <toshok@ximian.com>
9568
9569         * Control.cs: make tab_stop private.
9570
9571         * Label.cs: set TabStop, not tab_stop.  reformat some event
9572         add/remove methods to make them more compact.
9573
9574 2006-12-06  Chris Toshok  <toshok@ximian.com>
9575
9576         * RadioButton.cs: fix TabStop handling.
9577
9578 2006-12-06  Chris Toshok  <toshok@ximian.com>
9579
9580         * TextBox.cs: remove the explicit assignments to has_focus.
9581         Control does that.
9582
9583         * ButtonBase.cs: remove the assignment to has_focus.  Control will
9584         manage that.
9585         
9586 2006-12-06  Chris Toshok  <toshok@ximian.com>
9587
9588         * ButtonBase.cs: remove all uses of is_enabled from this code.
9589         it's always true when any of the code containing the checks is
9590         executed.
9591
9592 2006-12-06  Chris Toshok  <toshok@ximian.com>
9593
9594         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
9595         with different semantics (some are present in both 1.1 and 2.0
9596         profiles) so that we match MS's behavior in our unit tests.
9597
9598 2006-12-06  Jackson Harper  <jackson@ximian.com>
9599
9600         * TextControl.cs: Make this operation undoable.
9601         * TextBoxBase.cs: Factor the border width into the preferred
9602         height.
9603         - implement Modified as per the spec.
9604
9605 2006-12-06  Chris Toshok  <toshok@ximian.com>
9606
9607         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
9608
9609 2006-12-06  Chris Toshok  <toshok@ximian.com>
9610
9611         * Control.cs: make right_to_left and context_menu fields private.
9612
9613 2006-12-06  Chris Toshok  <toshok@ximian.com>
9614
9615         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
9616         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
9617         Control.child_controls private.  switch all uses over to
9618         Control.Controls.
9619
9620 2006-12-06  Chris Toshok  <toshok@ximian.com>
9621
9622         * System.Windows.Forms/GroupBox.cs,
9623         System.Windows.Forms/AccessibleObject.cs,
9624         System.Windows.Forms/ErrorProvider.cs,
9625         System.Windows.Forms/Control.cs,
9626         System.Windows.Forms/UpDownBase.cs,
9627         System.Windows.Forms/ScrollBar.cs,
9628         System.Windows.Forms/DateTimePicker.cs,
9629         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
9630         System.Windows.Forms/ToolTip.cs,
9631         System.Windows.Forms/RadioButton.cs,
9632         System.Windows.Forms/LinkLabel.cs,
9633         System.Windows.Forms/Splitter.cs,
9634         System.Windows.Forms/TextBoxBase.cs,
9635         System.Windows.Forms/ToolStripTextBox.cs,
9636         System.Windows.Forms/ContainerControl.cs,
9637         System.Windows.Forms/ThemeWin32Classic.cs,
9638         System.Windows.Forms/SizeGrip.cs,
9639         System.Windows.Forms/ToolStripDropDown.cs,
9640         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
9641         private.  switch all uses over to Control.Parent.
9642
9643 2006-12-06  Chris Toshok  <toshok@ximian.com>
9644
9645         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
9646         Control does this before calling emitting these events.
9647
9648         * TabControl.cs: same.
9649
9650         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
9651         Control.client_rect.
9652
9653         * ButtonBase.cs: use the ClientSize property instead of the
9654         client_size field.
9655
9656         * ScrollableControl.cs: same.
9657
9658         * Control.cs: another pass at making properties private.  also,
9659         move the initialization of tab_stop to the ctor.
9660
9661 2006-12-05  Andreia Gaita <avidigal@novell.com>
9662
9663         * TabControl.cs: Let the selected index be set freely if the 
9664         control handle is not yet created.
9665
9666 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
9667
9668         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
9669         internal until I can rewrite DefaultLayout.
9670         * ToolStrip.cs: Fix build error and some general cleaning.
9671         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
9672         Fix build errors caused by making some of Control's fields private.
9673
9674 2006-12-05  Jackson Harper  <jackson@ximian.com>
9675
9676         * TextControl.cs: Redo Insert a little so that it use IndexOf
9677         instead of Split, this prevents it from messing up on things like
9678         \n\n\n. Also more effecient since the split array doesn't need to
9679         be created.
9680         * TextBoxBase.cs: AppendText doesnt handle multiline and non
9681         multiline text differently, this is the first of many fixes that
9682         will make multiline/non-multiline the same thing as far as the
9683         TextBoxBase is concerned.
9684         - Don't split the text and insert lines, this can lose some line
9685         endings (like is the last line a soft or hard break). Instead use
9686         the new Insert.
9687         - Fix an off by one when combining all the lines in the Text
9688         getter.
9689         - Remove separate multiline handling from the Text getter/setter.
9690
9691 2006-12-05  Chris Toshok  <toshok@ximian.com>
9692
9693         * ButtonBase.cs: a few changes:
9694
9695         - don't reinitialize internal Control fields in the ctor when they
9696         have the same values as Control sets them.
9697
9698         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
9699         this before calling those methods.
9700
9701         - we don't need to call Refresh for anything.  use Invalidate
9702         instead.
9703
9704         - OnEnabledChanged doesn't need to redraw at all - Control.cs
9705         calls Refresh in its OnEnabledChanged.
9706         
9707         - several of the events we were registered for in the ctor to
9708         redraw ourselves already include calls to Invalidate in the
9709         property setters that raise the events.  remove the extra
9710         invalidation.
9711
9712         - reformat a switch statement that was 83274658 columns wide.
9713         
9714 2006-12-05  Mike Kestner  <mkestner@novell.com>
9715
9716         * ComboBox.cs: fix a unit test regression from a TextBox
9717         SelectionLength return of -1 when there's no selection.  
9718
9719 2006-12-05  Chris Toshok  <toshok@ximian.com>
9720
9721         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
9722         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
9723         cleaning up some of the internal Control fields being used by
9724         subclasses.
9725
9726 2006-12-05  Mike Kestner  <mkestner@novell.com>
9727
9728         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
9729         listbox after AddImplicit calls since it defaults to hidden. Add a 
9730         hack to preserve requested heights across DropDownStyle changes.
9731
9732 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
9733
9734         * PropertyGrid.cs: Hide FindFirstItem method from public API.
9735
9736 2006-12-05  Chris Toshok  <toshok@ximian.com>
9737
9738         * DataGridView.cs: fix compiler warnings.
9739
9740         * PrintControllerWithStatusDialog.cs: same.
9741
9742         * ToolBar.cs: same.
9743
9744         * FolderBrowserDialog.cs: same.
9745
9746         * Splitter.cs: same.
9747
9748         * DataGridViewComboBoxCell.cs: same.
9749
9750         * XplatUIWin32.cs: same.
9751
9752         * PictureBox.cs: same.
9753
9754         * Win32DnD.cs: same.
9755
9756         * PageSetupDialog.cs: same.
9757
9758         * FileDialog.cs: same.
9759
9760         * PrintDialog.cs: same.
9761
9762         * DataGridTextBoxColumn.cs: same.
9763
9764         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
9765
9766 2006-12-05  Chris Toshok  <toshok@ximian.com>
9767
9768         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
9769         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
9770         System.ComponentModel.EventHandlerList work.
9771
9772 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
9773
9774         * DrawTreeNodeEventArgs.cs: Added.
9775
9776 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9777         
9778         * InternalWindowManager.cs: Remove an unused field.
9779         
9780 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9781
9782         * InternalWindowManager.cs:
9783         - Save the point where the title bar is clicked.
9784         
9785         * MdiWindowManager.cs:
9786         - Only allow moving of the window as long as the 
9787         clicked point on the title bar does not get out of
9788         MdiClient's rectangle. Fixes #79982.
9789         
9790         * MdiClient.cs:
9791         - Added Horizontal/VerticalScrollbarVisible.
9792         - Simplified the scrollbar sizing algorithm.
9793         - Cache the difference in scrolled value in
9794         H/VBarValueChanged and move the calculation out
9795         of the for loop.
9796
9797 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9798
9799         * Control.cs: Make the Console.WriteLine in WndProc 
9800         write more info.
9801
9802 2006-12-05  Chris Toshok  <toshok@ximian.com>
9803
9804         * ToolStripManager.cs, ToolStripButton.cs,
9805         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
9806         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
9807         ToolStripSplitButton.cs, ToolStripSeparator.cs,
9808         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
9809         ToolStripProgressBar.cs, ToolStripContainer.cs,
9810         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
9811         to using System.ComponentModel.EventHandlerList.
9812
9813 2006-12-04  Chris Toshok  <toshok@ximian.com>
9814
9815         * LinkLabel.cs: fix up compiler warnings.
9816
9817         * TableLayoutSettings.cs: same.
9818
9819         * TreeView.cs: same.
9820
9821         * ToolBar.cs: same.
9822
9823         * TabControl.cs: same.
9824
9825         * RichTextBox.cs: same.
9826
9827         * ListViewItem.cs: same.
9828
9829         * PropertyGrid.cs: same.
9830
9831         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
9832
9833         * ToolTip.cs same.
9834
9835         * TextRenderer.cs: fix up compiler warnings.
9836
9837         * Label.cs: same.
9838
9839         * Form.cs: corcompare fixes.
9840
9841         * PictureBox.cs: fix up compiler warnings.
9842
9843         * ImageListStreamer.cs: same.
9844
9845         * TrackBar.cs: corcompare fix.
9846
9847         * Control.cs: fix up compiler warnings.
9848
9849         * SplitterPanel.cs: same.
9850
9851         * NumericTextBox.cs: same.
9852
9853         * ImageList.cs: same.
9854
9855         * StatusStrip.cs: same.
9856
9857         * ProgressBar.cs: corcompare fix.
9858
9859         * ToolStripButton.cs: fix up compiler warnings.
9860
9861         * ToolStripStatusLabel.cs: same.
9862
9863         * ToolStripSplitButton.cs: same.
9864
9865         * ToolStripSeparator.cs: same.
9866
9867         * ToolStripProgressBar.cs: same.
9868
9869         * ToolStripDropDownMenu.cs: same
9870
9871         * ToolStripDropDown.cs: same.
9872
9873         * ToolStripDropDownButton.cs: same.
9874
9875         * ToolStrip.cs: same.
9876
9877         * ToolStripControlHost.cs: same.
9878
9879         * ToolStripContentPanel.cs: same.
9880
9881         * ToolStripDropDown.cs: same.
9882
9883         * ToolStripContainer.cs: same.
9884
9885         * ToolStripPanel.cs: same, and add "new" where we need it to work
9886         with the new ArrangedElementCollection.
9887
9888         * ToolStripItemCollection.cs: add "new" where we need it to work
9889         with the new ArrangedElementCollection.
9890
9891 2006-12-04  Andreia Gaita <avidigal@novell.com>
9892
9893         * TabControl.cs: Fix default tab selection to after TabControl
9894         gets focus and not before. Fixes #80128
9895
9896 2006-12-04  Chris Toshok  <toshok@ximian.com>
9897
9898         * DataGridTableStyle.cs: remove the gross calling of
9899         datagrid.Refresh from here.  It's a broken idea and it doesn't
9900         work anyway.
9901
9902         * DataGrid.cs: instead, just register/unregister from the
9903         DataGridTableStyle events in CurrentTableStyle.  we play it
9904         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
9905         even though some would most likely not require it.  Fixes bug
9906         #80115 (and one portion of #80117 as a side effect).
9907
9908 2006-12-04  Chris Toshok  <toshok@ximian.com>
9909
9910         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
9911         so the textbox (if any) goes away.  Fixes bug #80117.
9912
9913 2006-12-04  Chris Toshok  <toshok@ximian.com>
9914
9915         * DataGridColumnStyle.cs: set the column's readonly property
9916         initially based on the property descriptor's IsReadOnly.  Fixes
9917         bug #80044.
9918
9919 2006-12-04  Chris Toshok  <toshok@ximian.com>
9920
9921         * ComboBox.cs: wrap the dropdown style changing work in
9922         SuspendLayout/ResumeLayout.  Fixes bug #79968.
9923
9924 2006-12-04  Jackson Harper  <jackson@ximian.com>
9925
9926         * TextBoxBase.cs: Fix off by one, since these are one-based.
9927         * TextBox.cs: Select all the text when we get focus.  The TextBox
9928         does this but the RTB does not.
9929
9930 2006-12-04  Chris Toshok  <toshok@ximian.com>
9931
9932         * DataGridTextBoxColumn.cs: remove some spew.
9933
9934         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
9935         but some part of me is saying "it shouldn't be here.."  At any
9936         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
9937         setting the value.
9938
9939 2006-12-04  Chris Toshok  <toshok@ximian.com>
9940
9941         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
9942         to reassign the propertydescriptor.
9943
9944 2006-12-04  Jackson Harper  <jackson@ximian.com>
9945
9946         * TextBoxBase.cs:
9947         * TextControl.cs: Remove some unused variables.  Maybe this will
9948         patch things up between mike and I.
9949         - don't split lines less then one char wide, if the viewport is
9950         that small text won't be visible anyways.
9951         
9952 2006-12-04  Jackson Harper  <jackson@ximian.com>
9953
9954         * TextBoxBase.cs: Default selection length is -1, need to do some
9955         more testing on windows to see when this is used for the property.
9956         - Redid the Lines [] property to that we properly remove soft line
9957         breaks
9958         - added support for preserving carriage returns
9959         -  CanUndo is not a variable like 'is undo enabled' it just returns
9960         true if there is undo operations available.
9961         - AppendText doesn't need to grab the last tag itself anymore,
9962         this happens automatically when we move the cursor.
9963         * TextControl.cs: Add CompoundActions to the undo class. This
9964         allows combining the other operations into one big option.  ie a
9965         paste will combine { delete old, insert new, move cursor }
9966         - Add InsertString undo operation
9967         - New method for deleting multiline text
9968         - Add carriage returns to lines. So we can preserve carriage
9969         returns when text is 'roundtripped'
9970
9971 2006-12-04  Chris Toshok  <toshok@ximian.com>
9972
9973         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
9974         minimum 0.  Fixes the scrollbar exception in bug #80136.
9975
9976 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9977
9978         * MdiClient.cs: 
9979         * MdiWindowManager: Removed unused fields and methods.
9980         
9981 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9982         
9983         * StatusBar.cs: Update all panels when a AutoSize=Contents
9984         panel needs updating.
9985         
9986         * StatusBarPanel.cs: Remove twidth and only use initialize.
9987         Fixes #80031.
9988                 
9989 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9990
9991         * Form.cs: When a form's MdiParent is set add it directly
9992         on top of the z-order in stead of relying on MdiClient's
9993         ActivateChild to do it. Fixes #80135.
9994         
9995         * MdiClient.cs: 
9996         - Remove original_order, mdi_child_list is already doing
9997         the same thing.
9998         - Create mdi_child_list on construction in
9999         stead of first use (avoids a few null checks).
10000
10001         * MenuItem.cs: Use an already existing list of mdi children
10002         to get the correct order of children and remove the other
10003         redundant list.
10004
10005 2006-12-04  Chris Toshok  <toshok@ximian.com>
10006
10007         * PropertyGridView.cs: cached_splitter_location is only used in
10008         !DOUBLEBUFFER code.
10009
10010         * PropertyGrid.cs: implement the ComComponentNameChanged event
10011         using Events, hoping that would fix the warning.  Looks like a
10012         compiler bug instead (#80144).
10013
10014         * PropertyManager.cs: remove unused method.
10015
10016 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
10017
10018         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
10019         include parentesis to fix expression evaluation. Fixes #79634.
10020
10021 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
10022         
10023         * MenuAPI.cs:
10024         - Changes to fix behavior in Menu control, some reported in #80097
10025         and other detected during behavior refactory like a select event
10026         problems.
10027         - Remove unneded "if's" conditions.
10028         - Created an internal to flag when popup is active in control, we need 
10029         it because in .NET you can have menu active but without popup active
10030         when you active menu using popup without visible items.
10031         - Mimic win32 behavior for Select and Popup events.  
10032         - Dont open popup menu when you dont have visible subitems.
10033         - Do nothing when click on disabled menu item.
10034         - Some small changes to follow the coding style guidelines.
10035         - Unselect menu only when another control gives focus. Fixes #80097.
10036         - Remove unused code.
10037         
10038         * MenuItem.cs: internal VisibleItems method to check if menu
10039         theres visible subitems, it will be usefull to fix some 
10040         behavior in Menu control.
10041         
10042 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
10043         
10044         * Timer.cs: Tag property for 2.0 profile.
10045         
10046 2006-12-01  Chris Toshok  <toshok@ximian.com>
10047
10048         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
10049         
10050         * Win32DnD.cs: comment out some unused fields.
10051
10052         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
10053         some unused properties/methods.
10054
10055         * XplatUIX11.cs: fix MousePosition so we override the base class's
10056         property instead of conflicting with it.
10057
10058         * PictureBox.cs: comment out some unused fields
10059
10060         * OSXStructs.cs: make some struct fields public.
10061
10062         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
10063         MousePosition so we override the base class's property instead of
10064         conflicting with it.
10065
10066         * X11Dnd.cs: comment out some unused fields
10067
10068         * X11DesktopColors.cs: fix some struct field visibility to quiet
10069         the compiler.
10070
10071         * X11Dnd.cs: remove some debug code.
10072
10073         * ThemeClearlooks.cs: comment out unused field.
10074
10075         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
10076
10077         * ThemeGtk.cs: comment out some unused pinvokes.
10078
10079         * Timer.cs: remove some unused fields.
10080
10081         * ThemeClearlooks.cs: comment out unused field.
10082
10083         * UpDownBase.cs: comment out unused field.
10084
10085         * DataObject.cs: comment out unused field.
10086
10087         * DataGridBoolColumn.cs: reomve unused field.
10088
10089         * DataGrid.cs: remove unused field.
10090
10091         * Cursor.cs: remove old ToBitmap code.
10092
10093         * ControlPaint.cs: remove unused method.
10094
10095         * ScrollBar.cs: remove unused fields.
10096
10097         * ComboBox.cs: remove unused field, and chain up to
10098         AccessibleObject ctor.
10099
10100         * ListBox.cs: remove unused field.
10101
10102         * ButtonBase.cs: wrap a couple fields in NET_2_0.
10103
10104         * GridEntry.cs: remove unused fields.
10105
10106         * Binding.cs: remove unused fields.
10107
10108         * AxHost.cs: remove unused method.
10109
10110         * ContainerControl.cs: remove unused field.
10111
10112         * ScrollableControl.cs: remove unused fields.
10113
10114 2006-12-01  Chris Toshok  <toshok@ximian.com>
10115
10116         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
10117         the Where/WhereString stuff.  it's easy enough to CWL
10118         Environment.StackTrace.
10119
10120         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
10121         unused private fields.
10122
10123 2006-12-01  Jackson Harper  <jackson@ximian.com>
10124
10125         * TextControl.cs: Do not update the view while inserting multiline
10126         text. If we update the view we might wrap lines, before entering
10127         the new lines, which causes the new line insertion calculations to
10128         be totally fubared.
10129         - Remove an old TODO
10130         - Make debug output a little nicer
10131         
10132 2006-12-01  Chris Toshok  <toshok@ximian.com>
10133
10134         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
10135
10136 2006-12-01  Chris Toshok  <toshok@ximian.com>
10137
10138         [ fix the majority of the CS0108 warnings we've been suppressing ]
10139         
10140         * TreeView.cs: mark BackgroundImageChanged as 'new'.
10141
10142         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
10143         to "LayoutToolBar" to quiet mcs.
10144         
10145         * TabControl.cs: mark our ControlCollection class as 'new'.
10146
10147         * TextBoxBase.cs: mark some events as 'new'.
10148
10149         * Splitter.cs: TabStop is 'new'.
10150
10151         * ControlBindingsCollection.cs: mark a few methods as new since
10152         they change the visibility from protected to public.
10153
10154         * RadioButton.cs: DoubleClick -> base class, and remove unused
10155         HaveDoubleClick.
10156
10157         * MonthCalendar.cs: ImeMode property -> base class, and mark many
10158         events as new.
10159
10160         * NumericUpDown.cs: TextChanged -> base class.
10161
10162         * CheckedListBox.cs: mark our ObjectCollection class as new to
10163         quiet mcs.
10164
10165         * FolderBrowserDialog.cs: make HelpRequest event new and have it
10166         muck with the base class.
10167
10168         * StatusBar.cs: fix some mcs warnings about Update being the same
10169         name as a base class method.
10170
10171         * RichTextBox.cs: mark some events as new, and make them do things
10172         to the base class impl.
10173
10174         * UserControl.cs: mark TextChanged as new, and have it manipulate
10175         base.TextChanged.
10176
10177         * UpDownBase.cs: mark some things new.
10178
10179         * CheckBox.cs: mark DoubleClick "new", and add some text about
10180         what we need to look at.
10181
10182         * Panel.cs: make the events "new", and manipulate the base
10183         version.  these are just here for attributes.
10184
10185         * AccessibleObject.cs: make owner private.
10186
10187         * Control.cs: deal with AccessibleObject.owner being private.
10188         cache our own copy if we need it.
10189
10190         * Button.cs: add "new" to the DoubleClickEvent.
10191
10192         * ListBox.cs: no need to track our own has_focus here.  let
10193         Control.has_focus do it for us.  Also some other work to clear up
10194         warnings about not overriding base class methods of the same name.
10195         
10196         * ComboBox.cs: clear up some warnings about not override base
10197         class methods of the same name.
10198
10199 2006-12-01  Chris Toshok  <toshok@ximian.com>
10200
10201         * Form.cs: flag a few things as "new" to quiet some of the mcs
10202         warnings.
10203
10204         * AxHost.cs: same.
10205
10206         * PrintPreviewDialog.cs: same.
10207
10208         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
10209         now DGV isn't so horrible on the class status page.  also, move
10210         all events to using System.ComponentModel.EventHandlerList.  my
10211         wrists hurt.
10212
10213 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10214
10215         * MdiWindowManager.cs:
10216         - Set form to active mdi child if shown,
10217         and update the active mdi child to the next 
10218         remaining child in the z-order if the form is hidden.
10219
10220         * Form.cs: 
10221         - Track if the form has been visible and if its 
10222         visibility is beeing changed, so that the MdiClient
10223         can properly decide the ActiveMdiChild. The MdiClient 
10224         cannot track this since the form can change visibility 
10225         before MdiClient is created.
10226
10227         * MdiClient.cs:
10228         - Don't activate anything of the parent form is changing
10229         its visibility.
10230         - Rework ActiveMdiChild to only return visible mdi 
10231         children and take into account several other corner 
10232         cases.
10233
10234 2006-12-01  Chris Toshok  <toshok@ximian.com>
10235
10236         * IBindableComponent.cs: new 2.0 interface.
10237
10238 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
10239
10240         * DataGrid.cs: Font for caption area is bold by default.
10241
10242 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
10243
10244         * Menu.cs: Tag property for 2.0.
10245         
10246 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
10247
10248         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
10249         
10250 2006-12-01  Chris Toshok  <toshok@ximian.com>
10251
10252         * TreeView.cs: doh, the Begin* events should be
10253         TreeViewCancelEventHandler.
10254
10255 2006-12-01  Chris Toshok  <toshok@ximian.com>
10256
10257         * Form.cs: Form.ControlCollection already stores off the
10258         form_owner field.  don't access the base class's internal "owner"
10259         field.
10260
10261         * Control.cs: make all the fields in Control.ControlCollection
10262         private.  there's no need for any internal fields here.
10263
10264 2006-12-01  Chris Toshok  <toshok@ximian.com>
10265
10266         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
10267         OnHandleCreated.  Fixes bug #80109.
10268
10269 2006-12-01  Chris Toshok  <toshok@ximian.com>
10270
10271         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
10272         SplitContainer.cs, Control.cs, StatusStrip.cs,
10273         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
10274         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
10275         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
10276         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
10277         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
10278         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
10279         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
10280         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
10281         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
10282         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
10283
10284         do most of the work to convert our code over to use
10285         System.ComponentModel.Component.Events for
10286         adding/removing/dispatching events.
10287
10288
10289 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
10290
10291         * DataGridView.cs: Fix an ArgumentNullException reported 
10292         twice today in IRC.
10293
10294 2006-11-30  Mike Kestner  <mkestner@novell.com>
10295
10296         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
10297         grabbed listbox.  Fixes #80036 and #80101.
10298
10299 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
10300
10301         * Message.cs: Changed ToString() to match MS.
10302         
10303 2006-11-30  Jackson Harper  <jackson@ximian.com>
10304
10305         * TextBoxBase.cs: You can still change the selected text on a read
10306         only textbox.
10307         * TextControl.cs: Lower magic number for wrap calculations. This
10308         lets text get closer to the right (far) edge.
10309
10310 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
10311
10312         * Control.cs: Tweak 2.0 layout properties.
10313         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
10314         * TextRenderer.cs: Add a new overload.
10315         * ToolStrip*: Huge amount of changes and new features.
10316
10317 2006-11-30  Mike Kestner  <mkestner@novell.com>
10318
10319         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
10320         scroll range correct.  Fixes #79994.
10321
10322 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
10323
10324         * MdiWindowManager.cs: Update main form's text when
10325         a form is closed. (fixes #80038)
10326         
10327 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
10328
10329         * ToolBar.cs:
10330         - Fix an regression in ButtonSize.
10331         - Get ImeMode default value change to "Disable".
10332         - Get ShowTooltips default value change to true, default value is 
10333         "false" but after make a test in .NET we get "true" result as default.
10334         
10335 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
10336
10337         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
10338
10339 2006-11-29  Chris Toshok  <toshok@ximian.com>
10340
10341         * XplatUIWin32.cs (GetWindowTransparency): check return value of
10342         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
10343         SetWindowTransparency hasn't been called.
10344
10345 2006-11-29  Chris Toshok  <toshok@ximian.com>
10346
10347         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
10348         if it's supported.
10349         (set_AllowTransparency): reorder things a little so that the
10350         WS_EX_LAYERED style is removed properly.
10351
10352 2006-11-29  Chris Toshok  <toshok@ximian.com>
10353
10354         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
10355         
10356         * Form.cs: only call the XplatUI transparency method (get/set) if
10357         SupportsTransparency says it's supported. Otherwise fallback to
10358         doing nothing (in the set case) or returning the instance field we
10359         cache (in the get case).
10360
10361         * XplatUIStructs.cs: add TransparencySupport flag enum.
10362         
10363         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
10364         change to SupportsTransparency.
10365
10366         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
10367         TransparencySupport.None from SupportsTransparency.
10368
10369         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
10370         TransparencySupport.Set from SupportsTransparency.
10371
10372         * XplatUIWin32.cs: implement GetWindowTransparency calling
10373         GetLayeredWindowAttributes, and implement SupportsTransparency by
10374         checking whether or not both
10375         GetWindowTransparency/SetWindowTransparency are available
10376         entrypoints.  We need to do this since SetWindowTransparency is
10377         available as of win2k, but GetWindowTransparency requires winxp.
10378         yay win32 api.
10379
10380         * XplatUI.cs: Add GetWindowTransparency, and change
10381         SupportsTransparency to allow for either/both Get/Set.
10382
10383 2006-11-29  Chris Toshok  <toshok@ximian.com>
10384
10385         * DataGrid.cs: keep from going into an infinite loop redrawing a
10386         datagrid that has no datasource.  Fixes bug #80033.
10387
10388 2006-11-29  Chris Toshok  <toshok@ximian.com>
10389
10390         * MenuItem.cs: fix the NRE when we assign text (and therefore call
10391         Invalidate) before the mainmenu has been assigned to a control.
10392
10393 2006-11-29  Chris Toshok  <toshok@ximian.com>
10394
10395         * DataGrid.cs: detect when we should be double the double click
10396         row/column autosize stuff, although that codepath has yet to be
10397         written.  part of the work for bug #79891.
10398
10399 2006-11-29  Chris Toshok  <toshok@ximian.com>
10400
10401         * Binding.cs (SetControl): fix unit test.
10402
10403 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10404
10405         * PageSetupDialog.cs: Validate the margins and set them in
10406         PageSettings. 
10407         * NumericTextBox.cs: New class to mimic the behavior of the
10408         textboxes used in the printing dialogs.
10409
10410 2006-11-29  Andreia Gaita  <avidigal@novell.com>
10411         
10412         * Form.cs: Revert previous change (remove call UpdateBounds
10413         from form constructor), because it messes with the handle creation
10414         order, and that one needs lots and lots of love.
10415         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
10416         for valid printer and throw InvalidPrinterException if document
10417         is set but printer not valid), adding a MonoTODO. Once 
10418         handle creation is done properly, we can put this back in.
10419
10420 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
10421
10422         * MenuItem.cs: Create a invalidate method for menu item, to be
10423         calling from set text, it make text changes to imadiate update
10424         on screen. Fixes #80013. 
10425         
10426 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
10427
10428         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
10429         fixes bug #80070 and some other problem on toolbar buttons
10430         layout.
10431
10432 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
10433
10434         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
10435         with dotted brush.      Fixes #79564
10436         
10437 2006-11-28  Andreia Gaita  <avidigal@novell.com>
10438
10439         * Form.cs: Removed call to UpdateBounds on Form
10440         constructor, it was causing a call to CreateHandle
10441         before it was supposed to.
10442         * PrintControllerWithStatusDialog: Applied patch
10443         by Chris Toshok to hide controller when there are
10444         no printers available.
10445         PrintDialog.cs: initialize printer settings to 
10446         null - correct DefaultValues test #5
10447         * PrintPreviewControl.cs: Move PrintController
10448         initialization to GeneratePreview
10449         * PrintPreviewDialog.cs: 
10450         - Remove Preview generation     from Document_set(). It is 
10451         called on OnPaint
10452         - Throw InvalidPrinterException on CreateHandle if
10453         a Document is set but there are no printers or 
10454         printer is not valid.
10455         * ThemeWin32Classic: don't paint PrintPreviewControl
10456         if there is nothing to paint    
10457
10458 2006-11-28  Miguel de Icaza  <miguel@novell.com>
10459
10460         * Form.cs: Add another popular method.
10461
10462         * TabPage.cs: ditto.
10463
10464 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10465
10466         * MenuItem.cs: Fixed a warning.
10467         * InternalWindowManager: Fixed a warning.
10468
10469 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10470
10471         * MenuItem.cs:
10472         - When cloning a menu also clone MdiList and clone the 
10473           window menu items properly (as the forms and menuitems
10474           are kept in an internal hashtable, these need updating 
10475           as well)
10476         - Rewrote the window menu code, menu items are added in the
10477           order the forms were added to their parent, and they are
10478           updated every time the window menu is shown (before the
10479           list was only generated once, in the current order of the
10480           forms, and would never be updated). A checkmark is shown
10481           next to the item corresponding to the active mdi child.
10482
10483 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10484
10485         * XplatUIStructs.cs: 
10486         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
10487         
10488         * XplatUIWin32.cs: 
10489         - Added TME_NONCLIENT to TMEFlags.
10490         - Handles WM_NCMOUSEMOVE in GetMessage to 
10491           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
10492
10493         * MdiWindowManager:
10494         - Now merges mdi child menu to parent menu when maximized.
10495         - Recalculate NC areas of both mdi child and mdi parent. 
10496           Fixes #79757 (4).
10497           on window state and size changes.Fixes #79844 (3).
10498         - Handle WM_NCCALCSIZE to properly calculate borders.
10499
10500         * Form.cs:
10501         - Add/remove to the mdi containers list of mdi children 
10502           in the order they are added.
10503         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
10504           to the maximized mdi child.
10505         
10506         * InternalWindowManager.cs:
10507         - Only execute a click on the control buttons on the mouse up,
10508           not on the mouse down. Show the state of the button 
10509           (was only showing Normal state, never Pressed state). The
10510           pressed button now follows the mouse (if you click the Close 
10511           button and move the mouse over the Maximize button, the 
10512           Maximize button will be shown as pressed). Since Win32 does
10513           not generate WM_NCLBUTTONUP if you release the button outside
10514           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
10515           it as a mouse up.
10516         
10517         * ThemeWin32Classic.cs:
10518         - Draw a missing border around mdi child forms. Fixes #79844 (2).
10519
10520         * MdiClient.cs:
10521         - Added a list of forms which contains the order the forms are
10522           added to the mdi parent.
10523         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
10524         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
10525         - If the active form changes set the scrollbars to the top
10526           of the Z order, otherwise the form could hide them.
10527         - Scrollbars are now sized according to ClientSize, not 
10528           to Size, and they take into account the other scrollbar
10529           to determine maximum.
10530         
10531 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
10532         
10533         * XplatUI.cs:
10534         * XplatUIDriver.cs:
10535         * XplatUIX11.cs:
10536         * XplatUIWin32.cs:
10537         * XplatUIOSX.cs:
10538         - Added RequestAdditionalWM_NCMessages for windows to 
10539           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
10540           Currently only implemented in XplatUIWin32.
10541
10542 2006-11-27  Chris Toshok  <toshok@ximian.com>
10543
10544         * Hwnd.cs: only add the hwnd to the windows hash in
10545         set_WholeWindow and set_ClientWindow if whole_window/client_window
10546         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
10547
10548 2006-11-27  Mike Kestner  <mkestner@novell.com>
10549
10550         * ComboBox.cs: remove redundant OnDropDown call.  It is called
10551         from the ComboListBox.ShowWindow code. Fixes #79969.
10552
10553 2006-11-27  Chris Toshok  <toshok@ximian.com>
10554
10555         * Hwnd.cs: remove the setters for ExposePending and
10556         NCExposePending - noone uses them.
10557
10558 2006-11-27  Jackson Harper  <jackson@ximian.com>
10559
10560         * TextControl.cs: new param for ReplaceSelection which determines
10561         whether we select the new selection, or set the cursor to the end
10562         of the new selection.
10563         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
10564         pasting, select the new text.
10565         * RichTextBox.cs: Use new param for ReplaceSelection.
10566
10567 2006-11-27  Jackson Harper  <jackson@ximian.com>
10568
10569         * TextBoxBase.cs: Set the selection to the caret after the caret
10570         is moved, otherwise they get out of sync.
10571
10572 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
10573
10574         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
10575         it fixes #80015
10576
10577 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
10578
10579         * ThemeWin32Classic.cs: 
10580         - Fix toolbar drop down arrow position.
10581         - Fix drop down appearance when ToolBar.Appearance is normal,
10582         it fixes #80018.
10583         
10584 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
10585
10586         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
10587         * Control.cs: Same.
10588         * UpDownBase.cs: Same.
10589         * ButtonBase.cs: Same.
10590         * ScrollBar.cs: Same.
10591         * TrackBar.cs: Same.
10592         * PictureBox.cs: Same.
10593         * UserControl.cs: Same.
10594         * Label.cs: Same.
10595         * ListControl.cs: Same.
10596         * TextBoxBase.cs: Same.
10597         * ListView.cs: Same.
10598         * RichTextBox.cs: Same.
10599         * TreeView.cs: Same.
10600
10601 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
10602
10603         * PrintDialog.cs:
10604         - Text label for where 
10605         - Text label comment was not shown
10606
10607 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
10608
10609         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
10610
10611 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
10612
10613         * InternalWindowManager.cs: 
10614         - Handle WM_PARENTNOTIFY to activate the form
10615         if any child control is clicked.
10616         - The form is only sizable if not minimized.
10617
10618         * MdiWindowManager.cs:
10619         - Save the IconicBounds if the form is moved.
10620         - Rework SetWindowState, now the window bounds 
10621         are stored only if the old window state is Normal.
10622         
10623         * MdiClient.cs:
10624         - In SetWindowStates store the old window state if 
10625         the window is maximized and restore window state if
10626         the window looses focus.
10627         - Don't handle any scrollbar value changes if 
10628         initializing the scroll bars. Fixes #79771.
10629         - Reworked ArrangeIconicWindows. Current algorithm
10630         tests bounds agains all other minimized windows, if
10631         any intersections create new bounds (going left to 
10632         right, bottom to top) and then test again. When 
10633         successful the bounds are saved and never computed
10634         again. Fixes #79774.
10635
10636 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
10637
10638         * InternalWindowManager.cs: Added HandleTitleBarUp.
10639
10640 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
10641
10642         * NumericUpDown.cs: In .NET 1.1, user entered text is still
10643         hexadecimal in ParseUserEdit.
10644
10645         
10646 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
10647
10648         * MdiWindowManager.cs: 
10649         - Handle a click on the form's icon to show the 
10650         system menu (when maximized). Fixes #79775.
10651         - Change the existing click handler for the form's
10652         icon when not maximized to show on MouseUp.
10653         Fixes #79776.
10654
10655         * Form.cs: In OnResize only layout the mdi child's
10656         parent if it actually has a parent. Might not if
10657         the window is closing.
10658
10659
10660 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
10661
10662         * MdiClient.cs: Ignore active MDI client for text of parent, if
10663         child has no text set.
10664
10665 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
10666
10667         * ToolBar.cs: Fixed ToString to match MS.
10668
10669 2006-11-22  Andreia Gaita  <avidigal@novell.com>
10670
10671         * NumericUpDown: 
10672         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
10673         update inner values on set. Fixes #79966.
10674         - Override OnLostFocus to update value on NET 2. Fixes #79950.
10675         - Fix hexadecimal parsing.
10676         
10677         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
10678         parent. Fixes #79957
10679
10680 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10681
10682         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
10683         the actual size has to be queried, since if height /
10684         width is negative Win32 changes it to 0. 
10685         Fixes #79999 on Windows.
10686         
10687         * XplatUIX11.cs: Set height / width to 0 if negative
10688         in SetWindowPos. Fixes #79999 on Linux.
10689         
10690 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
10691
10692         * ThemeWin32Classic.cs: Fix text redenring when button is
10693         pressed.
10694
10695 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
10696
10697         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
10698         and later navigate by mouse. Fixes #79528.
10699
10700 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
10701
10702         * ToolBar.cs: Set default value for TabStop to false in
10703         constructor, it fixes remaining behavior of bug #79863.
10704
10705 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10706
10707         * MdiWindowManager.cs:
10708         * InternalWindowManager.cs:
10709         - Moved a few methods specific to Mdi from 
10710         InternalWindowManager to MdiWindowManager.
10711         Fixes #79996.
10712         
10713 2006-11-21  Chris Toshok  <toshok@ximian.com>
10714
10715         * XplatUIOSX.cs: stub out InvalidateNC.
10716
10717         * XplatUIWin32.cs: implement InvalidateNC using the call I found
10718         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
10719
10720         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
10721
10722         * XplatUIDriver.cs: add InvalidateNC abstract method.
10723
10724         * XplatUI.cs: add InvalidateNC.
10725
10726 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
10727
10728         * ToolBar.cs: Invalidate complete button area when pressed status 
10729         was changed.
10730         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
10731         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
10732         by 1 when button is pressed.
10733
10734 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
10735
10736         * ToolButton.cs: Invalidate middle of DropDown button when
10737         ToolBar theres DropDownArrows.
10738         * ThemeWin32Classic.cs: Change position of DropDown arrow and
10739         fix DropDown drawing operations.
10740
10741 2006-11-20  Chris Toshok  <toshok@ximian.com>
10742
10743         * NativeWindow.cs: fix the formatting of functions ('{' on the
10744         following line), and enable the thread exception dialog.
10745
10746         * Application.cs: remove the duplicate exception catching from
10747         here.
10748
10749 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
10750
10751         * Toolbar.cs: Triggers button click event when click on icon
10752         of dropdown ToolBarButton. Fixes #79912.
10753         
10754 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10755
10756         * Theme.cs:
10757         * ThemeWin32Classic.cs:
10758         - Added a property WindowBorderFont to enable themeing
10759           of mdi child windows' Text.
10760           
10761 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10762
10763         * InternalWindowManager.cs:
10764         * Form.cs:
10765         * MdiClient.cs:
10766         * MdiWindowManager.cs: 
10767         - If mdi child is maximized, set mdi parent's
10768           text to "Parent - [Child]". Fixes #79770.
10769         - If there is any maximized mdi child windows, only the active 
10770           window (and any new windows) is maximized, the rest are normal.
10771         - On a WindowState change only save mdi child's window bounds 
10772           if the old window state was normal. Fixes #79774.
10773         - The scroll bars are now calculated on hopefully all
10774           necessary events. Fixed #79771 / #79844->6 / #79906.
10775         - MdiClient.SizeScrollBars() now takes into account docked 
10776           controls in the parent when calculating available space.
10777         - InternalWindowManager now always repaints the entire title
10778           area. Fixes #79844->1/4/5.
10779         - Added RequestNCRecalc on mdi child windowstate changes.
10780           Fixes #79772.
10781
10782 2006-11-20  Mike Kestner  <mkestner@novell.com>
10783
10784         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
10785         in the MouseUp handler of the listbox and move the return handling
10786         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
10787
10788 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
10789
10790         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
10791
10792 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
10793
10794         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
10795           working in 1.2.x anymore. So, updated.
10796
10797 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
10798
10799         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
10800         NumberGroupSeparator of current culture instead of assuming en-US.
10801         Fixed bug #79967.
10802
10803 2006-11-17  Mike Kestner  <mkestner@novell.com>
10804
10805         * Control.cs: Add the concept of implicit bounds setting so that
10806         dock/undock round trips preserve explicitly set size/locations.
10807         Fixes #79313.
10808
10809 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
10810
10811         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
10812           can't handle those filters. (Fixes bug #79961)
10813
10814 2006-11-17  Chris Toshok  <toshok@ximian.com>
10815
10816         [ fixes the exit/crashes associated with #79835.  it's clearly
10817         suboptimal though, we need to figure out a better way to solve
10818         this. ]
10819         
10820         * PrintPreviewControl.cs: deal with the new invalid printer
10821         exceptions.
10822
10823         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
10824         and return false (so CommonDialog.ShowDialog doesn't actually show
10825         the form.)
10826
10827         * PrintDialog.cs: enable/disable the Ok button depending on
10828         whether or not the printer is valid.
10829
10830         * CommonDialog.cs (ShowDialog): only actually show the form if
10831         RunDialog returns true.
10832
10833 2006-11-17  Jackson Harper  <jackson@ximian.com>
10834
10835         * TextControl.cs: When soft splitting a line, mark it as a soft
10836         split line. Also carry over the current line break to the next
10837         line.
10838
10839 2006-11-17  Chris Toshok  <toshok@ximian.com>
10840
10841         * XplatUIX11.cs: when scrolling a window with an invalid area, we
10842         only want to shift the part of the invalid area that overlaps the
10843         area we're scrolling.  we also don't want to clear the invalid
10844         area unless the invalid area was entirely contained within the
10845         scrolling area.
10846
10847 2006-11-16  Chris Toshok  <toshok@ximian.com>
10848
10849         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
10850         also make sure to free the memory returned by XGetWindowProperty
10851         in GetText().
10852
10853         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
10854
10855 2006-11-16  Chris Toshok  <toshok@ximian.com>
10856
10857         * XplatUI.cs: add a new super secret way to get at the totally
10858         unsupported X11 backend.
10859
10860 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
10861
10862         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
10863
10864 2006-11-16  Jackson Harper  <jackson@ximian.com>
10865
10866         * TreeView.cs: Allow more explicit setting of top node position
10867         for scrollbars. Slower algo, but more accurate.
10868         - CollapseAll should maintain the current top node.
10869         * TextBoxBase.cs: When positioning the caret, use the line, pos
10870         method, since the x, y method does not grab the correct tag, and
10871         the caret height never gets set correctly. (Maybe I should just do
10872         away with the caret having its own height, and always use the
10873         carets current tag for height).
10874
10875 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
10876
10877         [Fixes 79778, 79923]
10878
10879         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
10880         Parent to the FosterParent instead.
10881
10882 2006-11-16  Jackson Harper  <jackson@ximian.com>
10883
10884         * TreeView.cs: Need to recalc the topnode when we expand or
10885         collapse. The scrolling methods can't handle this on their own,
10886         since they use differences between the last scroll position, and
10887         those difference get completely messed up since we are expanding
10888         nodes.  This problem should probably be fixed in the scrolling
10889         methods, so they can figure out exactly where they are, but this
10890         will slow things down a little.
10891         * ThemeWin32Classic.cs: Special case for groupboxes with empty
10892         strings, makes nunit-gui look a lot nicer.
10893
10894 2006-11-16  Chris Toshok  <toshok@ximian.com>
10895
10896         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
10897         the broken multithreaded event handling we have in here.  File
10898         this entry under "Why we should move to the new X11 backend".
10899
10900         Any thread can make it into UpdateMessageQueue, which gets events
10901         from the X socket - some of which could belong to hwnds being
10902         managed by a different thread.  We can also have multiple threads
10903         in UpdateMessageQueue at the same time, with each one reading from
10904         the X socket.  This leads to many problems, with the following
10905         solutions:
10906
10907         We can't use hwnd.Queue.Enqueue anywhere in here and must use
10908         EnqueueLocked.
10909
10910         The MotionNotify compression we do can't work across threads
10911         (without locking the entire queue, perhaps) since we call
10912         hwnd.Queue.Peek, so we just punt and don't compress motion events
10913         unless the owning thread is the one which got the X event.
10914
10915         ConfigureNotify is another fun one, since it modifies the hwnd's
10916         bounds and then enqueues the event.  We add a lock to Hwnd which
10917         is held when setting configure_pending to true (and enqueuing the
10918         event).
10919
10920         There is a race wrt the wake socket.  we need to make sure that
10921         only 1 thread is waiting on that socket, or else a thread could
10922         sleep waiting for data that never comes.  It's difficult (but not
10923         impossible) to make happen, because it seems to require something
10924         like the following:
10925
10926             1. Thread 1 polls on wake_receive
10927         
10928             2. poll returns saying there's data to be read on
10929                wake_receive.
10930         
10931             3. Thread 2 polls on wake_receive and immediately returns
10932                saying there's data to be read.
10933
10934             4. Thread 2 reads the wakeup byte from wake_receive
10935
10936             5. Thread 1 attempts to read the wakeup byte from
10937                wake_receive.
10938
10939             6. Thread 2 exits (due to a form closing, perhaps).
10940
10941             7. Thread 1 blocks forever.
10942         
10943         Fun, eh?
10944
10945         Fixing the Expose handling isn't done yet, and the races inherent
10946         in that piece of code are responsible for the drawing mistakes you
10947         see when generating expose events in a MT app (like NPlot).  This
10948         one is the likely to be the hardest to bandaid, and it doesn't
10949         appear to cause anything but drawing problems.  The other issues
10950         caused apps to exit or hang.
10951
10952         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
10953         called from a different thread than the one that should be calling
10954         these functions.
10955
10956         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
10957
10958 2006-11-15  Chris Toshok  <toshok@ximian.com>
10959
10960         * Application.cs: null out the context's MainForm when we exit
10961         RunLoop.  Fixes a newly checked in unit test as well as the last
10962         ODE from bug #79933.
10963
10964 2006-11-15  Chris Toshok  <toshok@ximian.com>
10965
10966         * Form.cs (set_Owner): allow a null value so we can clear the
10967         form's owner.
10968         (Dispose): set all our owned_form's Owner properties to null, and
10969         clear the owned_forms collection.
10970         (WM_CLOSE): clean up this a little bit.. still not right though.
10971
10972         * ApplicationContext.cs: OnMainFormClosed should only call
10973         ExitThreadCore if the main form isn't recreating.  Fixes unit
10974         test.
10975
10976 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
10977
10978         [Fixes 78346]
10979
10980         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
10981
10982 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
10983
10984         [Fixes 79433]
10985
10986         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
10987         keep popup window types from stealing focus from the main form
10988         on Windows.
10989
10990         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
10991
10992         * MenuAPI.cs: Set above flag to true.
10993
10994 2006-11-15  Chris Toshok  <toshok@ximian.com>
10995
10996         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
10997         the button being released is not in wParam.
10998
10999 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
11000
11001         * Form.cs: Add the released button to MouseEventArgs.Button
11002         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
11003         on Win32.
11004
11005 2006-11-15  Chris Toshok  <toshok@ximian.com>
11006
11007         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
11008         GetText().  untested because it's unused in our implementation.
11009         Control.Text always caches the text, even if
11010         ControlStyles.CacheText is not set.
11011
11012         fixes bug #79939.
11013
11014 2006-11-15  Chris Toshok  <toshok@ximian.com>
11015
11016         [ fixes #79933 ]
11017         
11018         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
11019         message.  no hiding, no disposing.
11020
11021         in the WM_CLOSE handler, hide the form if it's modal.
11022
11023 2006-11-15  Chris Toshok  <toshok@ximian.com>
11024
11025         * XplatUIX11.cs: use AddExpose instead of sending a message.
11026         fixes textbox border drawing.
11027
11028 2006-11-15  Chris Toshok  <toshok@ximian.com>
11029
11030         * PropertyGridView.cs: keep from crashing on mouse move/down when
11031         the property grid is empty.
11032
11033 2006-11-14  Jackson Harper  <jackson@ximian.com>
11034
11035         * TextControl.cs: Make PageUp and PageDown more like the MS
11036         versions.
11037         * TextBoxBase.cs: When we set the text property position the
11038         cursor at the beginning of the document.
11039
11040 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11041
11042         * Form.cs: if a mdi child's WindowState has changed
11043         before it's creation, it would display wrong control
11044         buttons.
11045         
11046 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
11047
11048         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
11049           (Fixes bug #79927)
11050
11051 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
11052
11053         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
11054         the window gets to paint its borders even if the window is
11055         getting smaller.
11056         
11057         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
11058         otherwise the old control buttons would still be painted 
11059         if the window gets bigger.
11060         
11061         * PaintEventArgs.cs: add an internal method so that the clip 
11062         rectangle can be changed.
11063         
11064 2006-11-13  Chris Toshok  <toshok@ximian.com>
11065
11066         [ fixes bug #79745 ]
11067         
11068         * NotifyIcon.cs: lots of cleanup.
11069
11070         * X11Structs.cs: add an enum for XEMBED messages.
11071
11072         * XplatUIX11.cs: reindent one of the giant switch statements, it
11073         was taking up an additional tab stop, and this file is already way
11074         too wide for my laptop's screen.
11075
11076         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
11077         we get it, resize the hwnd to the WMNormalHints max_width/height.
11078
11079 2006-11-13  Jackson Harper  <jackson@ximian.com>
11080
11081         * TextBoxBase.cs: Compute the value changes for the mouse wheel
11082         teh simple way.
11083
11084 2006-11-13  Chris Toshok  <toshok@ximian.com>
11085
11086         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
11087         #79898.  force a reference to the Region to stick around so the
11088         unmanaged object isn't collected (rendering our handle in the MSG
11089         stale).
11090
11091 2006-11-13  Chris Toshok  <toshok@ximian.com>
11092
11093         * XplatUIX11.cs: fix #79917 for window managers which support
11094
11095         using XStoreName on the raw utf8, and we need to convert to
11096         COMPOUND_TEXT if it's non-latin1.
11097
11098 2006-11-13  Chris Toshok  <toshok@ximian.com>
11099
11100         * Form.cs (set_DialogResult): we need to set closing to false if
11101         we're setting our result to None.  fixes bug #79908.
11102
11103 2006-11-13  Jackson Harper  <jackson@ximian.com>
11104
11105         * TextControl.cs: When formatting text, compute the adjusted tag
11106         lengths correctly, using FindTag for the end tag instead of trying
11107         to figure it out outselves.
11108         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
11109         the item, ItemHeight doesn't work, because trees with large
11110         imagelists use those for their height
11111         * TreeView.cs: ActualItemHeight factors in the image height
11112         - compute left edge of checkboxes correctly
11113         - when expanding/collapsing move the bottom down one pixel, so we
11114         aren't moving part of the node
11115
11116 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11117
11118         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
11119         stack in PaintEventStart so that it won't get disposed by the gc
11120         before reaching PaintEventEnd.
11121
11122 2006-11-13  Jackson Harper  <jackson@ximian.com>
11123
11124         * TextBoxBase.cs: Don't select the word if we are on a line with
11125         no text.
11126         - We don't need to position the caret on mouse up, since the mouse
11127         move handler should be doing this
11128         - When double clicking a blank line, the caret is advanced to the
11129         next line.
11130
11131 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
11132
11133         * TreeNodeCollection.cs: Avoid duplicating indexer code.
11134
11135 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
11136
11137         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
11138         Fixes part of bug #79910.
11139
11140 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
11141
11142         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
11143           (bug #79903). Some minor string updates to match ms.
11144
11145 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
11146
11147         * FileDialog.cs: Don't add an extension if the filename
11148           already ends with that extension.
11149
11150 2006-11-10  Jackson Harper  <jackson@ximian.com>
11151
11152         * TreeView.cs: Use the currently highlighted node for the
11153         BeforeSelect event.
11154         * TextBoxBase.cs: There is no need to expand selection on
11155         MouseMove.
11156         - CanUndo means 'is there any undo operations', not 'is undo
11157         allowed on this textcontrol. Fixed ClearUndo unit test.
11158
11159 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
11160
11161         * Button.cs: only perform click when button is Selectable (so as 
11162         not to activate default buttons when they're disabled)
11163         
11164         * Control.cs: Rewrite of the SelectNextControl and related 
11165         methods. HandleClick now selects next control if the current one
11166         is being disabled.
11167         
11168         * Form.cs: OnActivated selects next active control only if Load 
11169         has already occurred. If Load hasn't run, there's no point in 
11170         selecting here, Load might change the state of controls.
11171         
11172         * FocusTest.cs: Tests marked as working again for these fixes
11173
11174 2006-11-10  Chris Toshok  <toshok@ximian.com>
11175
11176         * XplatUIX11.cs: a couple of fixes.
11177
11178         - use XInternAtoms with almost all the atoms we need to register,
11179         instead of many, many calls to XInternAtom.  should help a bit on
11180         startup time, at the expense of making the code look a little
11181         worse.
11182
11183         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
11184         isn't reparented (which seems to be a clue that we're running fon
11185         compiz) and they have an Owner form.  This fixes the tool windows
11186         in paint.net when running under compiz.
11187
11188         - when setting the opacity of a window, support both the case
11189         where the window has been reparented and also when it hasn't been.
11190         Since compiz/beryl doesn't seem to reparent windows, and these are
11191         the only window managers which support translucency, I'm not sure
11192         why we need the hwnd.reparented case at all.. but leave it in.
11193         now we get translucent windows in paint.net under compiz/beryl.
11194
11195 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
11196
11197         * FileDialog.cs: Always return the value for FilterIndex that
11198           was set. Internally convert it to values that make sense.
11199
11200 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
11201         
11202         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
11203
11204 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
11205
11206         * Toolbar.cs: Change default value of DropDownArrows to true, the 
11207         signature still using false to make it compatible with MS but the 
11208         initial value is true. Fixes #79855.
11209
11210 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
11211
11212         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
11213           only available on Linux.
11214
11215 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
11216
11217         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
11218         reduce number of calls to redraw method during toolbar creation.
11219
11220 2006-11-09  Mike Kestner  <mkestner@novell.com>
11221
11222         * ListView.cs : raise SelectedIndexChanged when an item is selected
11223         programmatically via the Item.Selected property.  Gert's nice 
11224         ListViewSelectedIndexChanged test fixture now runs clean.
11225
11226 2006-11-09  Mike Kestner  <mkestner@novell.com>
11227
11228         * ListView.cs : raise SelectedIndexChanged when a selected item is
11229         removed from the item collection using Remove or RemoveAt.
11230
11231 2006-11-09  Mike Kestner  <mkestner@novell.com>
11232
11233         * ListView.cs : raise SelectedIndexChanged once per selected item
11234         for compat with MS.  Fixes #79849+.
11235
11236 2006-11-09  Chris Toshok  <toshok@ximian.com>
11237
11238         * TabControl.cs: initialize row_count to 0, and set it to 1 when
11239         we need to (if we have any tab pages).  Fixes unit test.
11240
11241 2006-11-09  Chris Toshok  <toshok@ximian.com>
11242
11243         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
11244         width is 0, not 3.  Fixes a unit test.
11245
11246 2006-11-09  Mike Kestner  <mkestner@novell.com>
11247
11248         * ListView.cs : use Implicit scrollbars so that focus isn't 
11249         stolen from the listview when they are clicked. Fixes #79850.
11250
11251 2006-11-09  Chris Toshok  <toshok@ximian.com>
11252
11253         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
11254         have a root item.  Fixes #79879.
11255
11256 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
11257
11258         * FileDialog.cs:
11259           - Fix ToString ()
11260           - An ArgumentException is now thrown if a wrong filter
11261             is applied (matches ms). The previous filter doesn't change
11262             anymore if an exception is thrown.
11263           - Changing the FileName property also affects FileNames
11264         * ColorDialog.cs: The length of the CustomColors array is always
11265           16. It doesn't matter if we use a smaller array or null to update
11266           or change the custom colors property.
11267         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
11268           for RootFolder if we get a undefined value.
11269
11270 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11271
11272         * StatusBarPanel.cs: 
11273         - Width is set to MinWidth if Width is smaller than
11274         MinWidth. Fixes #79842.
11275         - MinWidth now always overrides Width (MSDN says MinWidth
11276         is set to Width when AutoSize = None, but they do not 
11277         behave like that).
11278         - Style has now the the correct default value.
11279         
11280 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11281  
11282         * TrackBar.cs: 
11283         - The control is completely invalidated on 
11284         Got/LostFocus to draw the focus rectangle correctly.
11285         - When AutoSize then height is always 45 (width for 
11286         vertical controls).
11287         
11288         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
11289         on the mouse when moved and it doesn't move when grabbed
11290         until the mouse moves as well. Also fixed some wrong 
11291         calculations when clicking on the thumb (control thought
11292         click was outside of thumb and didn't grab it).
11293         Fixes some of the issues in #79718.
11294
11295 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
11296
11297         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
11298
11299 2006-11-08  Chris Toshok  <toshok@ximian.com>
11300
11301         * PropertyGridView.cs: only call ToggleValue if the item is not
11302         readonly.
11303
11304 2006-11-08  Jackson Harper  <jackson@ximian.com>
11305
11306         * TextBoxBase.cs: The RichTextBox and textbox have very different
11307         word selection methods.  Implement the textbox's simple word
11308         selection here, and let the RichTextBox override and provide it's
11309         own.
11310         - Don't do extra selection on mouseup
11311         * RichTextBox.cs: Use the documents word selection algorithm, I
11312         think ideally, this function will be pulled into the
11313         RichTextBox.cs code someday.
11314
11315 2006-11-08  Chris Toshok  <toshok@ximian.com>
11316
11317         * RootGridEntry.cs: new class to represent GridItemType.Root.
11318
11319         * CategoryGridEntry.cs: reformat, and add boilerplate.
11320         
11321         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
11322         returns the UI parent anyway, and we need special handling to
11323         implement the GetTarget method in the face of it.  Also, implement
11324         Select().
11325
11326         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
11327         a root grid item, and use that instead of PropertyGrid.grid_items.
11328         Also, make use of TypeConverters (and add limitted support for
11329         ICustomTypeDescriptors) when initially populating the grid.
11330         Arrays now show up more or less properly.
11331
11332 2006-11-08  Chris Toshok  <toshok@ximian.com>
11333
11334         * Application.cs: set the modal dialog to non modal after we close
11335         it.  Fixes bug #79866.
11336
11337 2006-11-08  Jackson Harper  <jackson@ximian.com>
11338
11339         * TextControl.cs: When combining lines carry over the line end
11340         style from the end line.
11341         - Invalidate the selected area when setting it, if it is visible.
11342         * TextBoxBase.cs: Only rich text box can do full line selects.
11343         - Make sure to set the cursor position when there is a click,
11344         otherwise two clicks in separate areas could cause a large chunk
11345         to be selected.
11346
11347 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11348
11349         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
11350         Fixes #79863.
11351
11352 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11353
11354         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
11355         time. Remove tooltips when ToolButton click events.  Fixes #79856.
11356
11357 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11358
11359         * MenuAPI.cs: Ignore right click for menu actions and fixes
11360         menu border when clicked.  Fixes #79846.
11361
11362 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11363
11364         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
11365         MouseState after create wParam for message, this fixes mouse button 
11366         equal none in mouse up events.
11367         
11368 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
11369
11370         * Control.cs : Focus() now calls Select to set the Container's
11371         Active Control and to give it focus. To avoid infinite recursion
11372         (because ActiveControl also calls Focus at one point), a check 
11373         is made in Focus with the help of a new internal variable
11374         is_focusing.
11375
11376 2006-11-07  Mike Kestner  <mkestner@novell.com>
11377
11378         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
11379         if there's a selection.  Fixes #79849.
11380
11381 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
11382
11383         * PropertyGrid.cs: Avoid fixed height of help description label.
11384         Fixes part of bug #79829.
11385
11386 2006-11-07  Chris Toshok  <toshok@ximian.com>
11387
11388         * XplatUIX11.cs: fix #79790 again, by using the
11389         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
11390
11391 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11392
11393         * ToolBar.cs: Fix left click checking.
11394
11395 2006-11-07  Chris Toshok  <toshok@ximian.com>
11396
11397         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
11398
11399 2006-11-07  Chris Toshok  <toshok@ximian.com>
11400
11401         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
11402         PropertyManager unit tests.
11403
11404         * PropertyManager.cs: make property_name internal.
11405
11406 2006-11-07  Chris Toshok  <toshok@ximian.com>
11407
11408         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
11409         pass a unit test.  Also, don't set image_index to anything in
11410         response to setting the ImageList property.
11411
11412 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11413
11414         * ToolBar.cs: Ignore click events when mouse button is not a
11415         left button, only accepts other button for dropdown menus.  
11416         Fixes #79854.
11417
11418 2006-11-07  Chris Toshok  <toshok@ximian.com>
11419
11420         * DataGrid.cs: make the back and parent row buttons a little less
11421         ugly.
11422
11423 2006-11-07  Jackson Harper  <jackson@ximian.com>
11424
11425         * TextBoxBase.cs: When converting to Text don't put line breaks in
11426         for soft line breaks.
11427         * TextControl.cs: There is an initial "fake" line in the document,
11428         this is now a soft break line, so that an extra line feed doesn't
11429         get added to the end of documents.
11430
11431 2006-11-07  Chris Toshok  <toshok@ximian.com>
11432
11433         [ fix bug #79778 ]
11434         
11435         * CurrencyManager.cs: if the list is readonly, don't bother
11436         checking if IBindingList.AllowNew is true.
11437
11438         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
11439         for non-DataRowView datasources..  or rather, make it not crash.
11440         (DataGridPaintRelationRow): make sure we limit the row painting to
11441         the area not covered by the row header, and make our cell width at
11442         least large enough to cover the relation area.  This allows grids
11443         that have relations but no rows to render correctly.
11444         (DataGridPaintRowContents): same type of changes here.
11445         (SetDataSource): move back to always calling
11446         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
11447         navigating back through relations.
11448         (HitTest): handle the case where we have no cells but have
11449         relations.  Right now we generate a hit in cell 0 of whatever the
11450         row is, not sure if this is strictly correct, but it works for our
11451         purposes.
11452         
11453         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
11454         bother doing anything.
11455
11456 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
11457
11458         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
11459         early version of StatusStrip.  Not responsible for eaten
11460         application or firstborn children.
11461
11462 2006-11-06  Chris Toshok  <toshok@ximian.com>
11463
11464         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
11465         call GetTabRect with a -1 index.  Fixes #79847.
11466
11467 2006-11-06  Jackson Harper  <jackson@ximian.com>
11468
11469         * TreeNodeCollection.cs: Update scrollbars after clearing.
11470
11471 2006-11-06  Chris Toshok  <toshok@ximian.com>
11472
11473         * NumericUpDown.cs: fix the ToString method for some unit test
11474         love.
11475
11476 2006-11-06  Chris Toshok  <toshok@ximian.com>
11477
11478         * PropertyGrid.cs:
11479         - set the initial SelectedGridItem if we can.
11480
11481         - Exclude non-mergable properties only if we're merging > 1
11482         object.  Merging 1 object isn't really merging, obviously.
11483
11484         - Handle PropertySort.NoSort just like Alphabetical, which is
11485         wrong of course, but at least gets things on the screen.
11486         
11487         * PropertyGridView.cs:
11488         - Add method "FindFirstItem" which finds the first property grid
11489         item, so we can select it by default.
11490
11491         - make use of GridEntry.CanResetValue.
11492
11493         - Don't call RedrawBelowItemOnExpansion here anymore, the
11494         individual GridEntry's will do that.
11495
11496         - Remove the ITypeDescriptorContextImpl internal class.
11497         
11498         * GridEntry.cs:
11499         - this class needs to implement ITypeDescriptorContext, as it's
11500         what MS's PropertyDescriptorGridEntry does, which means we can
11501         remove the ITypeDescriptorContextImpl internal class from
11502         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
11503
11504         - keep a reference to our PropertyGridView, and move the call to
11505         RedrawBelowItemOnExpansion here from PGV.  This means
11506         programmaticly setting Expanded actually does something visible.
11507
11508         - add a CanResetValue() function which takes into account our
11509         possibly multiple "selected_objects" in the merged case.  Shifting
11510         PropertyGridView to use this method fixes another unreported
11511         crasher found running the test for #79829.
11512
11513         - when Top or Bounds is updated, make sure the PropertyGridTextBox
11514         is updated to reflect this.
11515
11516         * CategoryGridEntry.cs: the ctor takes the PGV now.
11517         
11518 2006-11-06  Jackson Harper  <jackson@ximian.com>
11519
11520         * TextControl.cs: These are 1 based.
11521         * TextBoxBase.cs: When setting the selected text, don't change the
11522         selected text tags, this is done by ReplaceText, just position the
11523         cursor at the end of the new text.
11524
11525 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
11526
11527         * ListView.cs: Allow label edit only when, when LabelEdit is
11528           set to true.
11529
11530 2006-11-06  Jackson Harper  <jackson@ximian.com>
11531
11532         * TextControl.cs: If a suitable wrapping position isn't found,
11533         just wrap right in the middle of a word.
11534
11535 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
11536
11537         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
11538           bug #79820.
11539
11540 2006-11-06  Jackson Harper  <jackson@ximian.com>
11541
11542         * TreeView.cs: Can't use the VisibleCount property when setting
11543         scrollbar heights, because this doesn't take into account whether
11544         or not the horz scrollbar just came visible.
11545
11546 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
11547
11548         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
11549         activated.  Fixes #79369, #79832.
11550
11551 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
11552
11553         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
11554           had to remove support for links that point to a directory. FileInfo
11555           returns no usefull information (means, the directory they point to)
11556           for such links. Replaced some empty string ("") with String.Empty.
11557
11558 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
11559
11560         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
11561         NullReferenceException when attempting to remove node that is not in
11562         collection. Throw NullReferenceException when null is passed to 
11563         Remove. Allow first element of the collection to be removed. Fixes
11564         bug #79831.  In GetEnumerator ().Current return null if positioned 
11565         before the first element of the collection. In GetEnumerator ().Reset,
11566         position before first element of the collection.
11567
11568 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
11569
11570         * PropertyGrid.cs: To match MS, remove default title and description
11571         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
11572         buttons.
11573
11574 2006-11-04  Chris Toshok  <toshok@ximian.com>
11575
11576         * Theme.cs: add a Clamp method, just for kicks.
11577
11578         * ThemeWin32Classic.cs: clamp all color components to [0..255].
11579
11580 2006-11-04  Chris Toshok  <toshok@ximian.com>
11581
11582         * Form.cs: if the form isn't visible, Close() does nothing.
11583
11584 2006-11-03  Chris Toshok  <toshok@ximian.com>
11585
11586         * Form.cs (Close): if the form is modal, don't Dispose of it, only
11587         Hide it.
11588         (WndProc): don't Dispose after handling the WM_CLOSE message.
11589
11590         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
11591         them as such, instead of using casts from Control to Form.  Also,
11592         don't Dispose of the modal dialog when we fall out of the loop -
11593         Close() it instead.
11594
11595         fixes bug #79813.
11596
11597 2006-11-03  Chris Toshok  <toshok@ximian.com>
11598
11599         * Control.cs (Dispose): only go through the dispose thing if we're
11600         @disposing, and we haven't already been disposed.  Fixes bug
11601         #79814.
11602
11603         * Form.cs: no reason to call "base.Dispose()" here instead of
11604         "Dispose()".
11605
11606 2006-11-03  Mike Kestner  <mkestner@novell.com>
11607
11608         * ComboBox.cs : use ToString instead of casts in AddItem for
11609         sorting functionality.  Fixes #79812.
11610
11611 2006-11-03  Chris Toshok  <toshok@ximian.com>
11612
11613         * Application.cs: pave the way for actually using the thread
11614         exception dialog.  it's ifdefed out at the moment.
11615
11616 2006-11-03  Chris Toshok  <toshok@ximian.com>
11617
11618         * ThreadExceptionDialog.cs: until we get a better layout, actually
11619         hide the details textbox and label when we shouldn't see them.
11620
11621 2006-11-03  Jackson Harper  <jackson@ximian.com>
11622
11623         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
11624         multiline textboxes anymore.  This method also determines the
11625         width/height of a textboxes canvas area.
11626         - Sorta a revert of the last patch.  For multiline just position
11627         the controls, then bail.  This way the scrollbar width won't be
11628         altered.
11629
11630 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
11631
11632         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
11633         it dont need.  Fixes #79537.
11634
11635 2006-11-02  Jackson Harper  <jackson@ximian.com>
11636
11637         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
11638         send the status after firing the DndOver event.
11639
11640 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11641
11642         * TrackBar.cs: Now orientation only switches height / width if
11643         the control's handle is created (Win32 does it like this). Also 
11644         fixed a typo in ToString() for a test to pass, changed the 
11645         exception thrown in set_LargeChange and set_SmallChange to 
11646         match Win32 behaviour, and added TrackBar tests to the unit 
11647         tests.
11648
11649 2006-11-02  Chris Toshok  <toshok@ximian.com>
11650
11651         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
11652         not _NET_WM_STATE_NO_TASKBAR.
11653
11654 2006-11-02  Jackson Harper  <jackson@ximian.com>
11655
11656         * TextControl.cs: Increment count by one, since in the update view
11657         count - 1 is used.
11658
11659 2006-11-02  Jackson Harper  <jackson@ximian.com>
11660
11661         * TextBoxBase.cs: Use client rectangle not bounds for checking if
11662         the mouse is in the client rectangle (duh).
11663
11664 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11665         
11666         * TrackBar.cs: Fixed trackbar jumping around when clicking
11667         on it - the trackbar was not detecting correctly at which
11668         side of the thumb the click was done. (fixes #79718)
11669
11670 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
11671
11672         * ListBox.cs: scroll visible area when change SelectedIndex to
11673         a non visible area.  Fixes #79481.
11674
11675 2006-11-01  Jackson Harper  <jackson@ximian.com>
11676
11677         * TextControl.cs: When replacing the selection move the selection
11678         start/end/anchor to the end of the new text.
11679
11680 2006-11-01  Jackson Harper  <jackson@ximian.com>
11681
11682         * XplatUIWin32.cs: When setting the parent change the controls
11683         visibility to it's visibility flag, not to it's old parents
11684         visibility (.Visible walks the parent chain).
11685
11686 2006-11-01  Chris Toshok  <toshok@ximian.com>
11687
11688         * XplatUIX11.cs: revert the #79790 fix, as the simple.
11689         XSetTransientForHint fix breaks paint .net's tool windows.  more
11690         work needed for that one.
11691
11692 2006-11-01  Chris Toshok  <toshok@ximian.com>
11693
11694         * ScrollBar.cs: throw ArgumentException instead of Exception in
11695         LargeChange/SmallChange setters.  fixes unit tests.
11696
11697 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
11698
11699         * ContainerControl.cs: reverted rev.67183 (which was itself
11700         a reversion of rev.66853... eh).
11701         
11702         * Control.cs: Fixes Reflector hang by changing Focus() call
11703         to what it was before rev.66643 (calling Select() here sets 
11704         ActiveControl, which in some situations calls back Focus and 
11705         eventually does a stack overflow). Temp fix.    
11706         Changes to GetNextControl() to not look for children to select when
11707         parent cannot be selectable (so it looks for siblings instead)  
11708         
11709 2006-10-31  Mike Kestner  <mkestner@novell.com>
11710
11711         * CheckedListBox.cs : off by one error in returned index from
11712         ObjectCollection.Add.  Fixes #79758.
11713
11714 2006-10-31  Chris Toshok  <toshok@ximian.com>
11715
11716         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
11717         calls for the textbox/spinner, to keep from recursing to the point
11718         where we crash.  Fixes #79760.
11719
11720 2006-10-31  Chris Toshok  <toshok@ximian.com>
11721
11722         * ListControl.cs (set_SelectedValue): don't throw exceptions on
11723         null/"" value, just return.  matches ms's behavior and fixes some
11724         failing tests.
11725
11726 2006-10-31  Chris Toshok  <toshok@ximian.com>
11727
11728         * Control.cs (set_Capture): make a logic a little easier to
11729         follow.
11730
11731         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
11732         if it's being destroyed.  A necessary fix surely, but a bandaid
11733         also, to fix the stuck capture problem in bug #78413.
11734
11735 2006-10-31  Chris Toshok  <toshok@ximian.com>
11736
11737         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
11738         convention of clearing hwnd.ClientRect when we set the
11739         width/height (so it'll be recalculated by Hwnd).
11740
11741 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
11742
11743         * ContainerControl.cs: reversed Contains check from
11744         ActiveControl due to hanging problems. This fix
11745         partly regresses #79667 (button does not have
11746         initial focus), so this might be a symptom for 
11747         a larger parenting problem (set_ActiveControl
11748         is being called but the child control does
11749         not have the parent set yet?)   
11750         
11751 2006-10-31  Mike Kestner  <mkestner@novell.com>
11752
11753         * MenuAPI.cs : fix keynav when menu is click activated.
11754
11755 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
11756
11757         * ToolStrip*: Version 0.2.
11758
11759         * MenuStrip.cs: Version 0.1.
11760
11761         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
11762
11763 2006-10-30  Chris Toshok  <toshok@ximian.com>
11764
11765         [ fixes the oversized notify icon issue in bug #79745 ]
11766         
11767         * NotifyIcon.cs: scale the icon down to the size we're given by
11768         the XplatUI layer (this would be faster if we did it once instead
11769         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
11770         since it's never invoked.
11771
11772         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
11773         pixels high by default, so let's hardcode our systray icon to that
11774         size.  The SYSTEM_TRAY protocol should really have a way for
11775         client apps to query for the correct icon size.. but oh well.  A
11776         couple of patches to deal with the screwy client_window ==
11777         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
11778         instance, and also make sure we don't XSelectInput twice).
11779
11780 2006-10-30  Chris Toshok  <toshok@ximian.com>
11781
11782         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
11783         recreating forms.  Control recreation is the bane of my existence.
11784         Fix it in a way that keeps everyone happy.
11785
11786 2006-10-30  Chris Toshok  <toshok@ximian.com>
11787
11788         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
11789         just non-CHILD ones.  otherwise sometimes scrollbars end up with
11790         client_windows not being resized to the proper size (ReportBuilder
11791         shows this extremely well).
11792
11793 2006-10-30  Chris Toshok  <toshok@ximian.com>
11794
11795         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
11796         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
11797         showing up in the gnome taskbar.  Fixes bug #79790.
11798
11799 2006-10-30  Chris Toshok  <toshok@ximian.com>
11800
11801         * ApplicationContext.cs: guard against a NRE.
11802
11803         * Application.cs: null out the old MainForm for the context, so we
11804         don't try to use it again once it's disposed.  Fixes bug #79783.
11805
11806 2006-10-30  Chris Toshok  <toshok@ximian.com>
11807
11808         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
11809         BindingContext, set the data source directly, otherwise do the
11810         lazy approach - the actual ListManager will be created when we get
11811         a BindingContext. Fixes bug #79700.
11812
11813 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
11814
11815         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
11816           XplatUIX11.cs: Remove old 2 parameter SetVisible.
11817
11818         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
11819
11820 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
11821
11822         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
11823         of SetVisible that allows a window to be shown, but not activated.
11824         This is needed on Windows for MenuStrip, and can probably be used
11825         with MainMenu and ComboBox to fix the focus stealing issues on
11826         Windows.
11827
11828         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
11829
11830 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
11831
11832         * PictureBox.cs: Fix the output of the ToString method.
11833
11834 2006-10-29  Chris Toshok  <toshok@ximian.com>
11835
11836         * Control.cs (get_TopLevelControl): fix bug #79781.
11837
11838 2006-10-29  Chris Toshok  <toshok@ximian.com>
11839
11840         * ListControl.cs (set_DataSource): throw Exception here, not
11841         ArgumentException, to match MS behavior.
11842
11843 2006-10-29  Chris Toshok  <toshok@ximian.com>
11844
11845         * Form.cs: remove the try-catch's around calls to GetWindowState.
11846         We can just check the return value.
11847
11848         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
11849         Instead return -1.
11850
11851         * XplatUI.cs: Add note about additional return value for
11852         GetWindowState.
11853
11854 2006-10-29  Chris Toshok  <toshok@ximian.com>
11855
11856         * Control.cs (CreateHandle): when we create our handle, we also
11857         create the handles of our child controls.  Fixes one of the
11858         Control unit tests (CH11).
11859
11860 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
11861
11862         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
11863
11864 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
11865
11866         * ThemeClearlooks.cs: A little speedup.
11867
11868 2006-10-27  Chris Toshok  <toshok@ximian.com>
11869
11870         * Control.cs: implement Control.FromChildHandle in a way that
11871         matches the docs (and fixes the failed test.)
11872
11873 2006-10-27  Chris Toshok  <toshok@ximian.com>
11874
11875         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
11876         comments).
11877
11878         * DataGrid.cs: implement ResetForeColor such that the tests
11879         succeed.
11880         
11881 2006-10-27  Chris Toshok  <toshok@ximian.com>
11882
11883         * ToolBarButton.cs: setting text/tooltiptext to null results in it
11884         being set to "".  Fixes bug #79759.
11885
11886 2006-10-27  Jackson Harper  <jackson@ximian.com>
11887
11888         * TextControl.cs: We need to clear the entire selection area when
11889         setting the start, otherwise multiline selections are still
11890         visible.
11891
11892 2006-10-26  Chris Toshok  <toshok@ximian.com>
11893
11894         * PropertyGridView.cs: 
11895
11896         - ifdef all the code specific to the double
11897         buffer case, and provide some alternatives in the non-doublebuffer
11898         code, which makes heavy use of XplatUI.ScrollWindow to move things
11899         around without having to invalidate (and cause flicker).  There
11900         are still some drawing problems in the non-doublebuffered case, so
11901         DOUBLEBUFFER is defined by default.
11902
11903         - Fix the way dropdowns are handled.  now we explicitly watch for
11904         the events which might cause the dropdown to close, and break out
11905         of the nested event loop there.  This gets rid of all Capture
11906         code, at the expense of the Msg special casing.  Seems to work,
11907         though, and fixes bug #79743.
11908
11909 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
11910         * Control.cs: SetIsRecreating now recreates implicitly added
11911         child controls as well. Finally fixes #79629. The flag passed to 
11912         SetIsRecreating has also been removed since it wasn't used.
11913         
11914 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11915
11916         * PageSetupDialog.cs: Clean some code, fix some bits, 
11917         add some checks, and add a printer sub-dialog.
11918
11919 2006-10-26  Chris Toshok  <toshok@ximian.com>
11920
11921         * PropertyGrid.cs: make set_SelectedObject call
11922         set_SelectedObjects, and move the duplicate logic to the
11923         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
11924
11925         * PropertyGridView.cs: hide the textbox when we get a
11926         SelectedObjectsChanged event.
11927
11928         Fixes bug #79748.
11929
11930 2006-10-26  Chris Toshok  <toshok@ximian.com>
11931
11932         * PropertyGridView.cs: deal with the type converter not supporting
11933         GetStandardValues() or GetStandardValues() returning null, which
11934         is does in the default case.  Fixes #79742.
11935
11936 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
11937
11938         * CheckedListBox.cs: nunit no longer crashes when selecting 
11939         Project/Edit menu option
11940         
11941 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
11942
11943         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
11944         is no menu selected. fixes #79739
11945
11946 2006-10-25  Chris Toshok  <toshok@ximian.com>
11947
11948         * PropertyGridView.cs: factor out the splitter invalidation code
11949         into the SplitterPercent setter, and for kicks implement the
11950         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
11951         amount in either direction.
11952
11953 2006-10-25  Chris Toshok  <toshok@ximian.com>
11954
11955         * PropertyGridView.cs: do some cleanup of the brush used to draw
11956         text - read only fields should be grayed out.  not sure how to do
11957         this with the textbox, though.  but the textbox's should also be
11958         readonly now at least.  Also, hide/show the textbox when resizing
11959         the control.
11960         
11961         * CursorConverter.cs: use System.Reflection when getting the
11962         properties of Cursors, as TypeDescriptor.GetProperties isn't
11963         returning static properties.
11964
11965 2006-10-25  Chris Toshok  <toshok@ximian.com>
11966
11967         * PropertyGridView.cs: factor out the up/down handling, and reuse
11968         it for page up/down.  also add End/Home support.
11969
11970 2006-10-25  Chris Toshok  <toshok@ximian.com>
11971
11972         * PropertyGridView.cs:
11973
11974         - ensure the selected grid item is visible in the scrolled area,
11975         fixes bug #79572.
11976
11977         - fix Keys.Down handling when you're on the last item in the
11978         propertygrid.
11979
11980 2006-10-25  Mike Kestner  <mkestner@novell.com>
11981
11982         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
11983         clicks too.  Fixes #79725.
11984
11985 2006-10-24  Chris Toshok  <toshok@ximian.com>
11986
11987         * PropertyGrid.cs: use property.Converter instead of
11988         TypeDescriptor.GetConverter(property.PropertyType), so we catch
11989         TypeConverters declared on the property as well as on the
11990         PropertyType.  Fixes bug #79678.
11991
11992 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
11993
11994         * MimeIcon.cs, Mime.cs:
11995           Fallback to the default platform handler if no shared mime info
11996           stuff exists (fixes #79693).
11997
11998 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
11999         * ContainerControl.cs: Incorrect contains check in ActiveControl 
12000         from previous fix (duh).
12001
12002 2006-10-20  Chris Toshok  <toshok@ximian.com>
12003
12004         * PropertyGridView.cs: the dropdown should be MIN(number of items
12005         in list, 15).  Fixes #79551.
12006
12007 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
12008         Fixes #79384, #79394, #79652, #79667
12009         * Application.cs: 
12010         
12011         - Modal windows are now destroyed in the proper order for windows
12012         
12013         * ContainerControl.cs:
12014         
12015         - ActiveControl setter has more conditions on when to return:
12016                 - if we're reselecting the active control, but it actually
12017                 didn't have focus (window hidden or some such), it runs
12018                 - if the active control being selected doesn't actually 
12019                 exist in the container, it returns
12020         
12021         * Form.cs
12022         
12023         - The ShowDialog now gets the current form as the owner when
12024         invoking without parameters, and correctly activates the owner 
12025         when returning
12026         
12027         * MessageBox.cs
12028         
12029         - MessageBox now catches the Escape key to exit
12030
12031 2006-10-20  Chris Toshok  <toshok@ximian.com>
12032
12033         * PropertyGridView.cs: fix a number of issues (bug #78565, and
12034         most of bug #79676):
12035
12036         - you can navigate around the property grid with the arrow keys.
12037
12038         - the dropdown is sized properly when the pg has a vertical
12039         scrollbar.
12040
12041         - fix the indentation for subentries, and properly select the
12042         entire label rect.
12043
12044         - fix the gray bar's drawing (only draw it to the last element,
12045         not for the height of the control.  Also make sure we draw that
12046         last horizontal grid line.
12047
12048         - use the same mechanism the datagrid uses wrt the editing textbox
12049         when scrolling/resizing/etc.  Namely, we hide it first, do the
12050         operation, then show it again (if it's still visible).
12051         
12052         - aggressively remove a lot of unnecessary refreshes (and also
12053         calls to Invalidate(). call more limited variants, and only redraw
12054         what we need.)
12055         
12056         * PropertyGrid.cs:
12057
12058         - when we're populating the merged collection, fill in the UI
12059         parent with either the passed in item, or the category item we
12060         create.
12061
12062         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
12063
12064         * GridItem.cs: drop some fully qualified names.
12065         
12066         * GridEntry.cs: add a "UIParent", which is basically the parent
12067         treenode.
12068
12069         * GridItemCollection.cs: add an IndexOf method.
12070
12071 2006-10-20  Mike Kestner  <mkestner@novell.com>
12072
12073         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
12074         a working win32 NC invalidation mechanism, we can't invalidate
12075         menus.  [Fixes #79705]
12076
12077 2006-10-20  Mike Kestner  <mkestner@novell.com>
12078
12079         * ListBox.cs : don't update the VScrollbar if the list is empty,
12080         just hide it.  [Fixes #79692]
12081
12082 2006-10-20  Jackson Harper  <jackson@ximian.com>
12083
12084         * RichTextBox.cs: Handle some special chars better, and don't skip
12085         the entire group when we encounter a special char that we don't
12086         handle correctly.
12087
12088 2006-10-18  Chris Toshok  <toshok@ximian.com>
12089
12090         * PropertyGridView.cs: address a number of issues from bug #79676,
12091         mostly of the cosmetic variety.
12092
12093         - The highlight rectangle for indented items not extends all the
12094         way to the left.
12095
12096         - Indented items aren't indented so much.
12097
12098         - the dropdown is properly sized width-wise if the pg has a
12099         vertical scrollbar.
12100
12101 2006-10-18  Chris Toshok  <toshok@ximian.com>
12102
12103         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
12104         systray stuff is rather convoluted to begin with.
12105
12106         systray icons are a single window for some reason (that I haven't
12107         figured out yet), and for them, client_window == whole_window.
12108         Given the way the tests are structured elsewhere to determine
12109         which paints are pending (client vs. nc), that situation will
12110         always yield PAINT, not NCPAINT.  So, if we have a pending
12111         nc_expose and no pending expose, remove the hwnd from the paint
12112         queue, and also set nc_expose_pending to false, to keep us from
12113         blocking further expose's adding the hwnd to the paint queue.
12114
12115         phew.  like i said, a rather convoluted change.  Fixes the
12116         notifyicon repaint issues in bug #79645.
12117
12118 2006-10-18  Chris Toshok  <toshok@ximian.com>
12119
12120         * Form.cs: when getting the backcolor of the form, don't get
12121         base.BackColor, as this allows parents to influence the background
12122         color.  This breaks mdi forms.  Instead, if the background_color
12123         is empty, return the default.
12124
12125 2006-10-18  Chris Toshok  <toshok@ximian.com>
12126
12127         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
12128         to being private instead of internal static.
12129
12130         * Control.cs: remove all the stupid ParentWaitingOnRecreation
12131         crap, it wasn't working for more deeply nested controls anyway,
12132         and we already have the is_recreating flag - use that instead.
12133         Before calling DestroyHandle in RecreateHandle, recurse through
12134         the control tree setting it to true.  this returns the recreate
12135         code to much of its original simplicity, while now guaranteeing we
12136         actually recreate everything we're supposed to.  This change gets
12137         fyireporting actually showing mdi children.
12138
12139 2006-10-17  Chris Toshok  <toshok@ximian.com>
12140
12141         * Form.cs: remove some debug spew, and collapse some duplicate
12142         code at the end of SetClientSizeCore.
12143
12144         * XplatUIX11.cs: 
12145         - add some more debug spew here too wrt Destroy handling.
12146         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
12147         in Control's handling of WM_DESTROY.
12148         - Remove the handling of zombie window DestroyNotifies from the
12149         event loop - we don't need it.  Now the only DestroyNotifies we
12150         actually handle are ones generated by X.
12151         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
12152         match gtk's (functioning) handling of this. This keep metacity
12153         from leaving droppings in the form of wm borders with no window
12154         contents all over the place.
12155
12156         * Control.cs:
12157         - add a bunch of debug spew wrt control recreation.
12158         - fix a bug where we weren't tracking Visible properly on
12159         recreated hwnds.
12160         - fixed the WM_PAINT double buffer handling to support re-entrant
12161         calls (yes, i know it's gross, but it's happening to us).
12162
12163 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12164         * ThemeWin32Classic.cs: changed drawing of selected days
12165         to make them look better.
12166
12167 2006-10-16  Chris Toshok  <toshok@ximian.com>
12168
12169         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
12170         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
12171
12172         * XplatUIX11.cs: move away from using hwnd.client_dc and
12173         hwnd.non_client_dc and on to a stack of dc's (and in window's
12174         case, PAINTSTRUCT's), so we can deal with nested Paint calls
12175         without puking or not disposing of Graphics objects.
12176
12177         * XplatUIOSX.cs: same.
12178
12179         * XplatUIWin32.cs: same.
12180
12181 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
12182
12183         * FileDialog.cs: Don't call on_directory_changed inside
12184           OnSelectedIndexChanged (it changes the SelectedIndex too).
12185           Instead move it to OnSelectionChangeCommitted.
12186
12187 2006-10-13  Chris Toshok  <toshok@ximian.com>
12188
12189         * XplatUIX11.cs: more Destroy work.  the current code does the
12190         following things, in order:
12191
12192         1. Enumerates all handles of all controls at or below the one
12193         being destroyed, in pre-order.  As it is doing this, it marks the
12194         handles as zombie and clears all references to them.
12195         
12196         2. calls XDestroyWindow on the window passed in.
12197
12198         3. SendMessage's WM_DESTROY to all he handles in the accumulated
12199         list.
12200
12201 2006-10-13  Chris Toshok  <toshok@ximian.com>
12202
12203         * XplatUIX11.cs: set hwnd.zombie to true before calling
12204         SendMessage (WM_DESTROY).  this keeps us from marking the new
12205         window a zombie, and also keeps us from calling sendmessage at
12206         all.
12207
12208 2006-10-13  Jackson Harper  <jackson@ximian.com>
12209
12210         * TextControl.cs: Do not show the caret and selection at the same
12211         time.  Reduces ugliness by 35%.
12212
12213 2006-10-13  Chris Toshok  <toshok@ximian.com>
12214
12215         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
12216         zombie after we do the recursive call, so we actually do call
12217         SendMessage on the children controls.
12218         (GetMessage): if we find a pending paint event for a zombie hwnd,
12219         remove the hwnd from the paint queue, or else it will always be
12220         there (and we'll effectively loop infinitely)
12221
12222 2006-10-13  Mike Kestner  <mkestner@novell.com>
12223
12224         * MenuItem.cs : add Selected format under keynav too.
12225         Fixes #79528.
12226
12227 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
12228
12229         * PropertyGrid.cs: Fixed some NRE's and small difference between our
12230         implementation and that of MS.
12231
12232 2006-10-13  Chris Toshok  <toshok@ximian.com>
12233
12234         * Control.cs (OnInvalidated) only futz with the invalid_region if
12235         the control is double buffered.  this fixes the apparent hang in
12236         the ListView unit tests.  Someone needs to make the
12237         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
12238
12239 2006-10-13  Chris Toshok  <toshok@ximian.com>
12240
12241         * PropertyGridView.cs:
12242
12243         - do a little refactoring so that only one place calls
12244         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
12245         else call that.  Also make it Refresh, since there are redraw bugs
12246         otherwise (we should take a look at that...)
12247
12248         - do a little more refactoring work to share the body of code
12249         involved with the drop down.  it was duplicated in the code
12250         dealing with the listbox handling and in the code dealing with the
12251         UITypeEditors.
12252
12253         - add a Capture to the dropdown form's control once it's
12254         displayed, and add a MouseDown handler that checks to make sure
12255         the position is inside the control.  If it's not, close the
12256         dropdown.  This fixes #78190.
12257
12258         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
12259         if the value is different than the initial value.
12260         
12261 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
12262
12263         * Control.cs: see #78650
12264         - Fixed GetNextControl for several cases:
12265                 - Changed FindFlatForward to return 
12266                 correct sibling control when more than one
12267                 control has same TabIndex as the currently 
12268                 focused one.
12269                 - Changed FindFlatBackward to loop children
12270                 from last to first and apply same logic as in
12271                 FindFlatForward
12272                 - Changed FindControlForward to search for
12273                 children when control is not a container
12274                 but has children, or search for siblings if
12275                 control is a container...
12276                 - Changed FindControlBackward   to continue
12277                 searching for child controls when hitting 
12278                 Panel-like parents
12279                 
12280         - Fixed Focus method to update ActiveControl
12281         (FocusTest.FocusSetsActive failure)
12282         
12283         * TabControl.cs:
12284         - Focus rectangle now refreshes when gaining
12285         or losing focus
12286         - Removed grab for Tab key on IsInputKey that 
12287         was keeping tab navigation from working (#78650)
12288
12289 2006-10-13  Chris Toshok  <toshok@ximian.com>
12290
12291         * PropertyGridView.cs:
12292         - Rewrite SetPropertyValue to loop over SelectedGridItem's
12293         SelectedObjects.
12294
12295         - Deal with GridItem.Value == null a few places.
12296
12297         * PropertyGrid.cs: 
12298         - replace the PopulateGridItemCollection with a pair of methods
12299         which compute the intersection of all the properties in the
12300         SelectedObjects array.  Fixes #79615.
12301
12302         - Throw ArgumentException from set_SelectedObjects if there's a
12303         null in the array.
12304
12305         - Add GetTarget method which can be used to traverse up the
12306         GridItem.Parent chain.  It depends on the assumption that
12307         selected_objects for different GridEntries are always in the same
12308         order (a safe assumption).  Use this method and loop over all the
12309         selected objects in the entry when calling RemoveValueChanged and
12310         AddValueChanged.
12311         
12312         * GridEntry.cs: Make this handle multiple selected objects.
12313         .Value returns null if not all the selected objects share the same
12314         value.
12315
12316 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
12317         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
12318           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
12319           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
12320           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
12321           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
12322         add additional functionality.
12323
12324 2006-10-12  Mike Kestner  <mkestner@novell.com>
12325
12326         * ErrorProvider.cs : new ToolTipWindow ctor sig.
12327         * HelpProvider.cs : new ToolTipWindow ctor sig.
12328         * ToolTip.cs : remove ToolTip param from Window sig since it is
12329         not used.
12330         * ToolBar.cs : add tooltip support.  Fixes #79565.
12331
12332 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12333
12334         * ComboBox.cs: move the events in set_SelectedIndex to 
12335         after the call to HighlightIndex in order to avoid 
12336         possible recursion and subsequent problems with the call
12337         to HighlightIndex and include a range check in 
12338         set_HighlightIndex. Fixes #79588
12339         
12340 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12341
12342         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
12343         to ui thread's settings instead of sunday. 
12344         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
12345
12346 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12347
12348         * DateTimePicker.cs
12349         * MonthCalendar.cs
12350         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
12351         and implement missing functionality (selecting different parts 
12352         of the date and edit them individually with the keyboard).
12353         
12354 2006-10-11  Chris Toshok  <toshok@ximian.com>
12355
12356         * Control.cs (OnInvalidated): fix NRE relating to last change.
12357
12358 2006-10-11  Chris Toshok  <toshok@ximian.com>
12359
12360         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
12361         atoms in _NET_WM_STATE here if the window is maximized.  We need
12362         to do this because we're *replacing* the existing _NET_WM_STATE
12363         property, so those atoms will be lost otherwise, and any further
12364         call to GetWindowState will return Normal for a window which is
12365         actually maximized.  Fixes #79338.
12366
12367 2006-10-11  Jackson Harper  <jackson@ximian.com>
12368
12369         * TextControl.cs: Special case for setting selection end to
12370         selection start, we basically kill the anchor.
12371         - some todo comments.
12372
12373 2006-10-11  Chris Toshok  <toshok@ximian.com>
12374
12375         * Control.cs: switch to using an "invalid_region" to track which
12376         parts of the image buffer need updating.  This is more code than
12377         the simple fix from r66532.  That version just attempted to always
12378         fill the entire buffer on redraw, which turns out to be
12379         inefficient when invalidating small rectangles.  This version
12380         simply adds the invalid rectangle to the invalid region.  When we
12381         get any WM_PAINT message we see if it can be filled using the
12382         image buffer, and if it can't (if the paint event's clip rectangle
12383         is visible in the invalid region) we first fill the image buffer.
12384         So, the image buffer is still a cache, we just fill it lazily.
12385
12386         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
12387         need it any longer.
12388
12389 2006-10-11  Chris Toshok  <toshok@ximian.com>
12390
12391         * XplatUIX11.cs (SetWindowPos): we need to update both position as
12392         well as size after calling XMoveResizeWindow.  This keeps us from
12393         ignoring future SetWindowPos calls.  Fixes the disappearing
12394         DateTimePicker in the ToolBarDockExample from bug #72499.
12395
12396 2006-10-11  Chris Toshok  <toshok@ximian.com>
12397
12398         * TextBoxBase.cs: reorder things a bit when it comes to
12399         resizing-causing-recalculation.  we were recalculating the
12400         document when our position was changed, which shouldn't happen.
12401         We only care about size changes.  Clear up some more redundant
12402         recalculation calls while I'm at it.  This makes the toolbar dock
12403         example snappy when you're just dragging toolbars around (since it
12404         causes a relayout whenever you move one.)
12405
12406 2006-10-11  Chris Toshok  <toshok@ximian.com>
12407
12408         * ToolBarButton.cs (get_Rectangle): this only returns
12409         Rectangle.Empty if Visible == false, or Parent == null.
12410         Parent.Visible doesn't matter.
12411
12412 2006-10-10  Chris Toshok  <toshok@ximian.com>
12413
12414         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
12415         by .net 1.1, so switch to an internal method instead.
12416
12417 2006-10-10  Chris Toshok  <toshok@ximian.com>
12418
12419         * Control.cs (WM_PAINT): when a control is double buffered we draw
12420         initially to the ImageBuffer and then copy from there.  But when a
12421         parent control which has child controls is double buffered, the
12422         initial drawing doesn't encompass the entire ClientRectangle of
12423         the parent control, so we end up with uninitialized bits (this is
12424         easily seen by dragging the top toolbar in
12425         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
12426         manually set the ClipRectangle of the paint_event (only the one we
12427         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
12428         of the nastiness in bug #72499.
12429
12430         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
12431         which we use in Control.cs's WM_PAINT handling.
12432
12433 2006-10-10  Jackson Harper  <jackson@ximian.com>
12434
12435         * TextBoxBase.cs: Finish off the autoscrolling stuff.
12436
12437 2006-10-10  Chris Toshok  <toshok@ximian.com>
12438
12439         * Cursor.cs: Apply a slightly different patch to the one suggested
12440         in #79609.
12441
12442 2006-10-10  Jackson Harper  <jackson@ximian.com>
12443
12444         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
12445         not the parent form.
12446         * TextControl.cs: use difference in old line count vs new count to
12447         calculate how many lines were added, this takes into account soft
12448         line breaks properly.
12449
12450 2006-10-10  Chris Toshok  <toshok@ximian.com>
12451
12452         * LinkLabel.cs: don't call MeasureCharacterRanges against a
12453         rectangle located at 0,0 and the size of the text.  Use
12454         ClientRectangle instead.  This fixes rendering of non-left aligned
12455         link labels.
12456
12457 2006-10-10  Jackson Harper  <jackson@ximian.com>
12458
12459         * TextBoxBase.cs: When we set the selection start position the
12460         caret.
12461         * TextControl.cs: Need to update the caret when we decrement it to
12462         zero.
12463         - Make sure that the selection_visible flag gets reset to false if
12464         the selection isn't visible.  Before this you could get it set to
12465         visible by changing the selection start, then changing the end to
12466         equal the start.
12467
12468 2006-10-09  Jackson Harper  <jackson@ximian.com>
12469
12470         * TreeView.cs: Don't update scrollbars when we aren't visible.
12471         * TreeNodeCollection.cs: Only need to update scrollbars if being
12472         added to an expanded visible node or the root node.
12473
12474 2006-10-09  Chris Toshok  <toshok@ximian.com>
12475
12476         * XplatUIX11.cs (SendMessage): fix NRE.
12477
12478 2006-10-09  Jackson Harper  <jackson@ximian.com>
12479
12480         * TextBoxBase.cs: Implement horizontal autoscrolling.
12481         * TextControl.cs: Add a movement types that allows moving forward
12482         and backwards without wrapping.
12483
12484 2006-10-09  Mike Kestner  <mkestner@novell.com>
12485
12486         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
12487         with focus "expansion" of labels.  Fixes #79532 and then some.
12488         * ThemeWin32Classic.cs : add LineLimit to ListView label format
12489         when wrapping.
12490
12491 2006-10-09  Jackson Harper  <jackson@ximian.com>
12492
12493         * TextBoxBase.cs: Set the default max values to MaxValue since
12494         we use the scrollbar for autoscrolling and the default value is
12495         100.  If we don't do this the caret won't keep up with typing
12496         after about 18 characters.
12497         * TextControl.cs: Make sure the selection is offset by the
12498         viewport x.  This fixes selection when using auto scrolling.
12499
12500 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
12501         
12502         * Form.cs: The active control should be selected after the 
12503         OnLoad so that any child control initialization that affects
12504         the selection is done. Fixes #79406
12505
12506 2006-10-06  Chris Toshok  <toshok@ximian.com>
12507
12508         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
12509         to have no evil effects.
12510
12511         - Stop selecting StructureNotifyMask on non-toplevel windows.
12512
12513           The only way children should be resized is by using the SWF api,
12514           and we already send WM_WINDOWPOSCHANGED messages in those cases.
12515           Toplevel windows can be interacted with via the window manager,
12516           and so we keep the input mask there.
12517
12518           The other event StructureNotifyMask gives us (that we care
12519           about) is DestroyNotify.  The code is already structured such
12520           that it assumes we won't be getting a DestroyNotify event for
12521           the window we pass to XDestroyWindow (which is what
12522           StructureNotifyMask is supposed to guarantee.)  So, that code
12523           shouldn't be affected by this either.
12524
12525         - Stop selecting VisibilityChangeMask altogether.
12526
12527           We weren't doing anything with the resulting events anyway.
12528         
12529         This vastly reduces the number of X requests and events we see
12530         when resizing/laying out a large ui.
12531
12532 2006-10-06  Chris Toshok  <toshok@ximian.com>
12533
12534         * ScrollableControl.cs (DisplayRectangle): we need to take into
12535         account the DockPadding regardless of whether or not auto_scroll
12536         == true.  rework this slightly to this effect, and fix bug #79606,
12537         and part of #72499 (you can now see the drag handles and drag
12538         toolbars around).
12539
12540 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
12541
12542         * ListViewItem.cs: Collections of selected and checked items are now
12543         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
12544         we mark the collection "dirty".
12545         * ListView.cs: Marked collections readonly. Modified UpdateSelection
12546         to only clear SelectedItems when a new item is selected and MultiSelect
12547         is enabled. CheckedItems and SelectedItems now subscribe to Changed
12548         event of ListViewItemCollection, and mark its list dirty whenever
12549         that event is fire. This allows us to return selected/checked items 
12550         in the same order as they are in the Items collection. This matches
12551         the MS behavior.
12552
12553 2006-10-06  Chris Toshok  <toshok@ximian.com>
12554
12555         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
12556         right mouse clicks.  Fixes bug #79593.
12557
12558 2006-10-06  Chris Toshok  <toshok@ximian.com>
12559
12560         * Splitter.cs: doh, fix splitters that don't want to cancel the
12561         movement when you drag them.  Also, impose the limits on the
12562         values we send to the SplitterMovingEvent.  Fixes #79598.
12563
12564 2006-10-06  Jackson Harper  <jackson@ximian.com>
12565
12566         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
12567         since we use this for auto scrolling also.
12568
12569 2006-10-05  Chris Toshok  <toshok@ximian.com>
12570
12571         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
12572         beginning to think that most datagrid column types don't need this
12573         method.  Fixes bug #79392.
12574
12575 2006-10-05  Chris Toshok  <toshok@ximian.com>
12576
12577         * DataGrid.cs: move back to a more lazy scheme for creating the
12578         CurrencyManager, so we aren't updating it every time you set
12579         either DataSource or DataMember.  Also, don't call
12580         RecreateDataGridRows if the currency manager hasn't changed.
12581
12582 2006-10-05  Chris Toshok  <toshok@ximian.com>
12583
12584         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
12585         emitted, SelectedIndex should already be updated.  Fixes bug
12586         #78929.
12587
12588 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
12589
12590         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
12591           ToolStripTextBox.cs: Initial commit.
12592         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
12593
12594 2006-10-05  Jackson Harper  <jackson@ximian.com>
12595
12596         * TabControl.cs: We need to invalidate the tab control area when
12597         new ones are added (duh).
12598
12599 2006-10-03  Chris Toshok  <toshok@ximian.com>
12600
12601         * Form.cs (ProcessDialogKey): if the focused control is in this
12602         form and is a button, call its PerformClick method here.  Fixes
12603         #79534.
12604
12605 2006-10-04  Jackson Harper  <jackson@ximian.com>
12606
12607         * TabPage.cs: Ignore setting of Visible, and add an internal
12608         method for setting the controls visibility.  TabPage's Visible
12609         property is a little strange on MS, this seems to make us
12610         compatible, and fixes cases where people set all the tab pages to
12611         visible.
12612         * TabControl.cs: Use the new internal setting on tab pages
12613         visibility.
12614
12615 2006-10-03  Mike Kestner  <mkestner@novell.com>
12616
12617         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
12618
12619 2006-10-03  Mike Kestner  <mkestner@novell.com>
12620
12621         * ListView.cs : use is_visible instead of Visible to check if 
12622         scrollbars should be placed/sized.  Also some max_wrap_width
12623         love for LargeIcon view.  [Fixes #79533]
12624
12625 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
12626
12627         * TextControl.cs :
12628           Make set_TextAlign() do actually update the align. Fixed #78403.
12629
12630 2006-10-03  Chris Toshok  <toshok@ximian.com>
12631
12632         * DataGrid.cs: fix a crash when switching datasources if the
12633         vertical scrollbar is at someplace other than Value = 0.  Also,
12634         reduce the number of recalculation passes we do in SetDataSource
12635         from 2 to 1.
12636
12637 2006-10-03  Jackson Harper  <jackson@ximian.com>
12638
12639         * TextBoxBase.cs: Move the if value the same bail check up, we
12640         don't want to empty the document if it is already empty, this
12641         seems to severly mess up the caret.  TODO: I should probably fix
12642         the empty statement to update teh caret somehow.
12643
12644 2006-10-03  Chris Toshok  <toshok@ximian.com>
12645
12646         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
12647         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
12648         reflection, an internal row type, properties on said type, etc.)
12649         will work with our datagrid.  Fixes #79531.
12650
12651 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
12652
12653         * FileDialog.cs: Don't crash if a path is not accessible
12654           (System.UnauthorizedAccessException). Fixes #79569.
12655         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
12656           a ':' too. Return unknown icon for those paths/files.
12657
12658 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
12659
12660         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
12661         GetContainerControl returns null.
12662
12663 2006-10-02  Chris Toshok  <toshok@ximian.com>
12664
12665         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
12666         call to XGetWindowAttributes instead of "handle".  fixes an X
12667         error using notifyicon after the NotifyIconWindow to Form base
12668         class switch.
12669
12670 2006-10-02  Chris Toshok  <toshok@ximian.com>
12671
12672         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
12673         server grab and looping we need to do to get down to the most
12674         deeply nested child window.
12675         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
12676         QueryPointer again after the WarpPointer so we can generate a
12677         proper (fake) MotionNotify event to be enqueued in the destination
12678         window's queue.
12679         (GetCursorPos): call QueryPointer.
12680
12681         Fixes #79556.
12682
12683 2006-10-02  Jackson Harper  <jackson@ximian.com>
12684
12685         * NotifyIcon.cs: Derive the notify icon from a form, so things
12686         like FindForm work on it.
12687         - Swallow the WM_CONTEXTMENU message, since that is generated on
12688         mouse down, and context menu is a mouse up kinda guy.  I believe
12689         the correct fix here is probably to make the notify icon entirely
12690         NC area, but this seems to work fine for anyone not manipulating
12691         WndProc.
12692
12693 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
12694
12695         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
12696           ToolStripItemCollection.cs, ToolStripLabel.cs,
12697           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
12698           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
12699           Initial implementation.
12700         * TextRenderer.cs: Provide padding to MeasureText.
12701
12702 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
12703
12704         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
12705         of ButtonBaseAccessibleObject. Fix bug #79552.
12706
12707 2006-10-02  Jackson Harper  <jackson@ximian.com>
12708
12709         * MdiWindowManager.cs: When maximizing use the containers client
12710         rect, not it's bounds, so nc area is accounted correctly.
12711         - Use the parent form's size for the menu position, since the
12712         client isn't always the full form size.
12713
12714 2006-10-01  Chris Toshok  <toshok@ximian.com>
12715
12716         * ScrollableControl.cs: make sure neither right_edge or
12717         bottom_edge are < 0, since they're used as LargeChange for the
12718         horiz/vert scrollbars respectively.  Fixes #79539.
12719
12720 2006-10-01  Chris Toshok  <toshok@ximian.com>
12721
12722         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
12723         the xplatuix11 code can cause us to destroy/recreate our handle.
12724
12725         * XplatUIX11.cs
12726         (SystrayAdd):
12727         - this code can be invoked many times for the same Hwnd.  Make
12728           sure we only destroy the client window once (the first time this
12729           method is called).  This fixes bug #79544.
12730         - Remove the call to the improperly bound XSync.  why we had two
12731           bindings to this, I will never know, but this call resulted in
12732           events being discarded from the queue(!).
12733         - correct a misunderstanding of _XEMBED_INFO - the second atom is
12734           not our current state but the state we wish to be in.  So, 0 if
12735           we don't want to be mapped.  Change it to 1.
12736         (SystrayRemove): The XEMBED spec makes mention of the fact that
12737         gtk doesn't support the reparent of client windows away from the
12738         embedder.  Looking at gtksocket-x11.c seems to agree with this.
12739         The only avenue we have for removing systray icons is to destroy
12740         them.  We don't want the handle to go away for good, though, so
12741         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
12742         #79545.
12743         
12744 2006-10-01  Chris Toshok  <toshok@ximian.com>
12745
12746         * Form.cs (WndProc): inline the native_enabled variable usage into
12747         the cases in which it's used.  Fixes #79536.
12748
12749 2006-09-29  Mike Kestner  <mkestner@novell.com>
12750
12751         * ListView.cs : toggle the selection state for ctrl clicks in 
12752         multiselect mode. [Fixes #79417]
12753
12754 2006-09-29  Mike Kestner  <mkestner@novell.com>
12755
12756         * ListView.cs : kill CanMultiSelect and refactor the selection
12757         code to support multiselection in the absence of mod keys. Steal
12758         arrow/home/end keys by overriding InternalPreProcessMessage to
12759         restore regressed keynav behavior.
12760         [Fixes #79416]
12761
12762 2006-09-29  Jackson Harper  <jackson@ximian.com>
12763
12764         * MdiClient.cs: Repaint the titlebars when the active window is
12765         changed.
12766
12767 2006-09-29  Chris Toshok  <toshok@ximian.com>
12768
12769         * Application.cs: when entering a runloop with a modal, make sure
12770         the hwnd is enabled.  Fixes #79480.
12771
12772 2006-09-29  Chris Toshok  <toshok@ximian.com>
12773
12774         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
12775         when ListManager.CanAddRows == false, bump us back one.
12776
12777         * DataGridColumnStyle.cs (ParentReadOnly): remove the
12778         listmanager.CanAddRows check.  This makes ArrayLists uneditable
12779         using a datagrid, which is not right.
12780         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
12781         is an IEditable, but call property_descriptor.SetValue regardless.
12782         fixes #79435.
12783
12784 2006-09-29  Chris Toshok  <toshok@ximian.com>
12785
12786         * DataGridBoolColumn.cs: we need to test equality in the face of
12787         possible null values (as is the case with the default NullValue).
12788         This patch keeps us from crashing in that case.
12789
12790 2006-09-29  Jackson Harper  <jackson@ximian.com>
12791
12792         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
12793         here, since it will get called for every node collection in the
12794         tree. This is now done in the treeview once the sorting is
12795         finished.
12796         * TreeView.cs: Recalculate the visible order, and update the
12797         scrollbars after sorting, set the top nope to the root so that the
12798         recalc actually works.
12799
12800 2006-09-29  Chris Toshok  <toshok@ximian.com>
12801
12802         * LinkLabel.cs: more handling of the default link collection in
12803         the face of LinkArea manipulation.  The default link collection
12804         contains 1 element (start=0,length=-1).  If the user sets LinkArea
12805         to anything and the links collection is the default, clear it.
12806         Then only add the link if its nonempty.  Fixes #79518.
12807
12808 2006-09-29  Chris Toshok  <toshok@ximian.com>
12809
12810         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
12811         piece correctly when we hit a '\n'.  Fixes #79517.
12812
12813 2006-09-29  Chris Toshok  <toshok@ximian.com>
12814
12815         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
12816         change the binding of gdk_init_check to take two IntPtr's, and
12817         pass IntPtr.Zero for both of them.  Fixes #79520.
12818
12819 2006-09-29  Mike Kestner  <mkestner@novell.com>
12820
12821         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
12822         [Fixes #78779]
12823
12824 2006-09-28  Jackson Harper  <jackson@ximian.com>
12825
12826         * XplatUIX11.cs: When translating NC messages make sure we go from
12827         whole window to screen, not client window to screen.
12828         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
12829         method doesn't exist
12830         - Skip over controls that aren't forms when arranging.
12831
12832 2006-09-28  Jackson Harper  <jackson@ximian.com>
12833
12834         * XplatUIWin32.cs: Clip the rect to the parent window.
12835         * XplatUIStructs.cs: Add clipping modes struct.
12836         * InternalWindowManager.cs: New private method that factors title
12837         bar heights in when calculating the pos of an NC mouse message.
12838         - Use SendMessage to force a paint when the form's size is changed
12839         instead of painting the decorations immediately.
12840         - Don't let the NC button click messages get to DefWndProc,
12841         because they will attempt to handle windowing themself, and this
12842         messes up z-order (it will put them in front of the scrollbars).
12843         * XplatUIX11.cs: Make sure that we don't reset window managers if
12844         we already have one (ie the window is an MDI window).
12845
12846 2006-09-28  Chris Toshok  <toshok@ximian.com>
12847
12848         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
12849         menu code really needs going over.
12850
12851 2006-09-27  Chris Toshok  <toshok@ximian.com>
12852
12853         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
12854         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
12855         window is maximizable.  So, we need to make sure that even if we
12856         clear the border/wm frame of those functions, they're still
12857         available (basically, we remove the decoration without removing
12858         the function).  Half the fix for #79338.
12859
12860 2006-09-27  Chris Toshok  <toshok@ximian.com>
12861
12862         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
12863         Fixes bug #79515.
12864
12865 2006-09-27  Chris Toshok  <toshok@ximian.com>
12866
12867         * Splitter.cs: reorder things a bit so that we don't actually
12868         draw/move the splitter until after calling OnSplitterMoving.  This
12869         lets users cancel/disallow the movement by explicitly setting
12870         event.SplitX/SplitY.  Fixes #79372.
12871
12872 2006-09-27  Jackson Harper  <jackson@ximian.com>
12873
12874         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
12875         because it is most likely on a window being destroyed, and that
12876         will give us an X11 error.
12877
12878 2006-09-27  Chris Toshok  <toshok@ximian.com>
12879
12880         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
12881         the dropdown button now toggles between showing and hiding the
12882         dropdown.  Also, get rid of dropdown_form_showing and just use
12883         dropdown_form.Visible.  We still don't do a grab, but I'll leave
12884         that part to someone who has handled Capture-fu before.
12885
12886 2006-09-27  Chris Toshok  <toshok@ximian.com>
12887
12888         * DataGrid.cs: return false if alt isn't pressed when '0' is
12889         pressed.  this keeps the '0' key from being swallowed, and fixes
12890         bug #79350.
12891
12892 2006-09-27  Chris Toshok  <toshok@ximian.com>
12893
12894         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
12895         Calling Refresh (in response to a scrollbar event) screws up the
12896         scrollbar painting.  Fixes bug #78923.
12897
12898 2006-09-27  Chris Toshok  <toshok@ximian.com>
12899
12900         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
12901         then insert into hashtable" blocks threadsafe.
12902
12903 2006-09-27  Chris Toshok  <toshok@ximian.com>
12904
12905         * MessageBox.cs (CreateParams): the styles should be |'ed with our
12906         baseclass's, since otherwise the
12907         ControlBox/MinimizeBox/MaximizeBox assignments above have no
12908         effect.  This gets the close button back in messageboxes.
12909
12910 2006-09-27  Chris Toshok  <toshok@ximian.com>
12911
12912         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
12913         flag, not just != 0.  this makes flags that are actually multiple
12914         bits (like WS_CAPTION) work.  fixes bug #79508.
12915
12916 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
12917
12918         * PageSetupDialog.cs: add support for getting and settings the 
12919         paper size, source and orientation.
12920
12921 2006-09-26  Chris Toshok  <toshok@ximian.com>
12922
12923         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
12924         and caption == "", we need to remove the resize handles as well as
12925         the title bar.
12926
12927         * Control.cs (set_Text): turns out that setting Text on a form
12928         should change the WM styles on the window, since if ControlBox ==
12929         false, the only way to get a window border is to have a non-""
12930         Text property.  check winforms/forms/text.cs for an example.  so,
12931         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
12932         update both window styles and title.  This fixes a lot of dialogs
12933         (including the preferences dialog in MonoCalendar.)
12934
12935 2006-09-26  Chris Toshok  <toshok@ximian.com>
12936
12937         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
12938         control isn't a Form), call Win32ShowWindow to hide the window,
12939         but don't update the control Visible property.  When we reparent
12940         back to a parent control, call SetVisible in order for the
12941         window's visibility to be reinstated.
12942
12943         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
12944         the FosterParent.
12945
12946         * Control.cs (ControlCollection.Remove): remove that value.Hide()
12947         call for good, since it breaks MonoCalendar (and other things I'm
12948         sure.) Also, set all_controls to null *after* the owner calls,
12949         which end up regenerating it.
12950         (ChangeParent): allow new_parent to be == null, passing
12951         IntPtr.Zero down to XplatUI.
12952
12953         this fixes #79294 the right way.
12954
12955 2006-09-26  Mike Kestner  <mkestner@novell.com>
12956
12957         * GridEntry.cs : internal SetParent method.
12958         * PropertyGrid.cs : attach to property changed on the proper
12959         target if we have a hierarchical grid with subobjects. Setup
12960         GridItem.Parent for hierarchical items.
12961         * PropertyGridView.cs : Set value on the correct target for
12962         hierarchical grids. [Fixes #78903]
12963
12964 2006-09-26  Chris Toshok  <toshok@ximian.com>
12965
12966         * Control.cs (ChildNeedsRecreating): this should return true if
12967         either we're being recreated and the child is in our list, or our
12968         parent is waiting for our recreation.
12969
12970 2006-09-26  Chris Toshok  <toshok@ximian.com>
12971
12972         * Control.cs (ControlCollection.Remove): reinstate the
12973         value.Hide() call as suggested in bug #79294.
12974
12975 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
12976
12977         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
12978         coordinates (versus a relative move).
12979
12980 2006-09-26  Chris Toshok  <toshok@ximian.com>
12981
12982         * Control.cs: rework child recreation a little bit.  It turns out
12983         that we race between the DestroyNotify the WM_DESTROY message.  If
12984         the parent gets its DestroyNotify before the child gets the
12985         WM_DESTROY message, the child ends up not recreating (since the
12986         parent finishes its recreation on DestroyNotify, and the child
12987         checks ParentIsRecreating.)
12988
12989         So, instead we store off a list of all the child controls which
12990         need to be recreated when the parent control starts to recreate
12991         itself.  Then, when child controls get their WM_DESTROY message we
12992         check to see if they're in the parent's pending recreation list,
12993         and if so, we recreate.  This removes all dependency on ordering
12994         from the code and fixes the initial MonoCalendar upgrade dialog.
12995         
12996 2006-09-26  Jackson Harper  <jackson@ximian.com>
12997
12998         * TextControl.cs: Use the Line to get the length of the line,
12999         since soft line breaks can change the end line.
13000
13001 2006-09-26  Chris Toshok  <toshok@ximian.com>
13002
13003         * Control.cs (ControlCollection.AddImplicit): don't add the
13004         control again if it's already in one of our lists.  This keeps us
13005         from adding controls over and over again for comboboxes when their
13006         handle gets recreated (as the combobox adds implicit controls in
13007         OnHandleCreated).  Fixes the X11 errors in bug #79480.
13008
13009 2006-09-26  Jackson Harper  <jackson@ximian.com>
13010
13011         * TextControl.cs: When deleting characters make sure that any
13012         orphaned zero lengthed tags get deleted.
13013         - Fix ToString for zero lengthed tags.
13014
13015 2006-09-25  Jackson Harper  <jackson@ximian.com>
13016
13017         * TextControl.cs: When getting a tag at the location there can be
13018         multiple tags at the same spot, these are 0-lengthed tags that
13019         appear when extra formatting has been stuck in a location.  We
13020         need to pull out the last of these 0 lengthed tags.
13021
13022 2006-09-25  Jackson Harper  <jackson@ximian.com>
13023
13024         * TextControl.cs: Fix print out in debug method.
13025         * TextBoxBase.cs: When text is set bail if we are setting to the
13026         previous value.
13027         
13028 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
13029
13030         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
13031           It is now possible to change the selected index in a FontXXXListBox
13032           with the up and down arrow keys from the FontXXXTextBoxes.
13033           Also, send the FontXXXTextBox mouse wheel event to the corresponding
13034           FontXXXListBoxes to match ms.
13035
13036 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
13037
13038         * SystemInformation.cs: Return a clone of the theme's MenuFont because
13039         anyone can dispose it, anytime. All other properties returns enums, 
13040         structs or basic types so they don't need such tricks.
13041
13042 2006-09-22  Jackson Harper  <jackson@ximian.com>
13043
13044         * XplatUI.cs:
13045         * XplatUIWin32.cs:
13046         * Clipboard.cs:
13047         * DataFormats.cs:
13048         * XplatUIOSX.cs:
13049         * XplatUIDriver.cs: Update interface to add a primary selection
13050         flag, so the driver can use the primary selection buffer if
13051         needed.
13052         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
13053
13054         * RichTextBox.cs: We need to supply the data object to paste now
13055         (so we can choose to supply CLIPBOARD or PRIMARY).
13056         * TextBoxBase.cs: Supply data object to paste (see above).
13057         - Middle click uses the primary selection data object.
13058         
13059 2006-09-21  Chris Toshok  <toshok@ximian.com>
13060
13061         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
13062         of SetWMStyles.  It's still a rat's nest and is largely
13063         order-dependent which I dislike immensely.  This also fixes the X
13064         button disappearing from toplevel forms.
13065
13066 2006-09-21  Mike Kestner <mkestner@novell.com>
13067
13068         * ListBox.cs: move Jordi's click/dblclick raising code to the
13069         mouse up handler.
13070
13071 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
13072
13073         * ListBox.cs: Fixes 79450
13074
13075 2006-09-21  Mike Kestner <mkestner@novell.com>
13076
13077         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
13078         to deal with people updating the TreeNodeCollection after the tree
13079         is disposed.  "Fixes" 79330.
13080
13081 2006-09-20  Jackson Harper <jackson@ximian.com>
13082
13083         * TextControl.cs: Push the cursor record onto the undo stack
13084         before the delete action. This fixes 78651.
13085
13086 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
13087
13088         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
13089         CreateParams. Fixes 79329.
13090
13091 2006-09-19  Chris Toshok  <toshok@ximian.com>
13092
13093         * XplatUIX11.cs: a couple of blanket code massage passes to clean
13094         things up a bit.  First, get rid of the NetAtoms array (and the NA
13095         enum), and just embed the atoms as static fields.  Also, add a
13096         couple of functions (StyleSet and ExStyleSet) to clean up all the
13097         bitmask testing of styles.
13098
13099         * X11Structs.cs: remove the NA enum, not needed anymore.
13100         
13101 2006-09-19  Chris Toshok  <toshok@ximian.com>
13102
13103         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
13104         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
13105         added cleanup to get MessageBox titles appearing again, which were
13106         broken by my earlier fix for caption-less/ControlBox-less windows.
13107
13108 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
13109
13110         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
13111           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
13112           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
13113           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
13114           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
13115           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
13116           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
13117           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
13118           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
13119           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
13120           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
13121             Inital import.
13122         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
13123           ToolStripButton.cs: Stubs needed for above.
13124         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
13125
13126 2006-09-15  Chris Toshok  <toshok@ximian.com>
13127
13128         * XplatUIX11.cs:
13129         - make the MessageQueues hashtable Synchronized.
13130         
13131         - SendMessage: if the Hwnd is owned by a different thread, use the
13132         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
13133         thread.  Fixes bug #79201.
13134
13135 2006-09-15  Chris Toshok  <toshok@ximian.com>
13136
13137         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
13138         ControlBox == false, we disallow maximize/minimize/close.  If the
13139         form Caption is "" we also disallow move (and get rid of the Title
13140         decoration).  Unfortunately, regardless of how things are set,
13141         we're stuck with the Title and WM menu.
13142
13143 2006-09-15  Chris Toshok  <toshok@ximian.com>
13144
13145         * Application.cs: add locking around the static message_filters
13146         ArrayList, part of #79196.
13147
13148 2006-09-15  Chris Toshok  <toshok@ximian.com>
13149
13150         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
13151         Form.ControlBox == false, the window has no titlebar nor resize
13152         handles.  fixes bug #79368.
13153
13154 2006-09-15  Chris Toshok  <toshok@ximian.com>
13155
13156         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
13157         >= 0.  Fixes bug #79370.
13158
13159 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
13160         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
13161         * Control.cs:
13162             Add properties: LayoutEngine, Margin, DefaultMargin.
13163             Add method: GetPreferredSize.
13164             Move layout logic from PerformLayout to layout engines. 
13165
13166 2006-09-13  Chris Toshok  <toshok@ximian.com>
13167
13168         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
13169         fix for #79326 broke #78718, so this change addresses that.
13170
13171         - in SendWMDestroyMessages remove the call to
13172         CleanupCachedWindows, since we might be recreating the control and
13173         need to maintain the references to right Hwnd handles.  Also, set
13174         the zombie flag to true for each of the children in the hierarchy
13175         instead of calling hwnd.Dispose.  This will cause GetMessage to
13176         ignore all events for the window except for DestroyNotify.
13177
13178         - In GetMessage, ignore messages except for DestroyNotify for
13179         zombie hwnds.
13180         
13181         * Control.cs: revert the is_recreating fix from the last
13182         ChangeLog.  It's definitely "right", but it breaks switching from
13183         an MDI form to a non-MDI form.  Will need to revisit that.
13184
13185         * Hwnd.cs: add a zombie flag, which means "the
13186         client_window/whole_window handles are invalid, but we're waiting
13187         for the DestroyNotify event to come in for them".  Set the flag to
13188         false explicitly if setting WholeWindow/ClientWindow, and also
13189         when Disposing.
13190         
13191 2006-09-13  Chris Toshok  <toshok@ximian.com>
13192
13193         * XplatUIX11.cs: rework window destruction slightly.
13194
13195         - when destroying the windows associated with a control, we don't
13196         need 2 separate XDestroyWindow calls.  Just the one for the
13197         whole_window (or for client_window if whole_window is somehow
13198         IntPtr.Zero -- can this happen?) is enough.
13199
13200         - reworked SendWMDestroyMessages slightly, so we always dispose
13201         the child control hwnd's after sending the messages.
13202         
13203         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
13204         the two places it was used (one was even using hwnd.Handle and the
13205         other hwnd.client_window.  ugh), adding another call in
13206         SendWMDestroyMessages.  We need this new call because now the
13207         DestroyNotify events in the queue will be ignored for the child
13208         controls (as their hwnd's were disposed, and the window id's
13209         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
13210
13211         - this fixes bug #79326.
13212
13213 2006-09-13  Chris Toshok  <toshok@ximian.com>
13214
13215         * Control.cs: don't always set is_recreating to false at the end
13216         of RecreateHandle, since sometimes we're not done (and won't be
13217         until WndProc handles the WM_DESTROY message).  Also, set
13218         is_recreating to false in the WM_DESTROY handling code.  Part of
13219         the fix for bug #79326.
13220
13221 2006-09-13  Miguel de Icaza  <miguel@novell.com>
13222
13223         * X11DesktopColors.cs: Start the droppage of debugging messages.
13224
13225         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
13226
13227 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
13228
13229         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
13230
13231 2006-09-12  Chris Toshok  <toshok@ximian.com>
13232
13233         * DataGrid.cs (get_ListManager): if the list_manager is null, try
13234         to create it using SetDataSource.  Fixes bug #79151.
13235
13236 2006-09-11  Chris Toshok  <toshok@ximian.com>
13237
13238         * XEventQueue.cs: add a DispatchIdle property.
13239
13240         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
13241         either the queue is null, or the queue has DispatchIdle set to
13242         true.
13243         (DoEvents): set queue.DispatchIdle to false around the
13244         peek/translate/dispatch message loop in this method.  This keeps
13245         Application.Doevents from emitting idle events.  Part of the fix
13246         for #78823.
13247
13248 2006-09-11  Chris Toshok  <toshok@ximian.com>
13249
13250         * DataGrid.cs (set_DataSource): make this work for both the
13251         winforms/datagrid test and ReportBuilder.  It seems as though when
13252         we've created a ListManager (or maybe it's if we have a
13253         BindingContext?), when we set the DataSource it clears the
13254         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
13255         #79333.
13256
13257 2006-09-11  Chris Toshok  <toshok@ximian.com>
13258
13259         * XplatUIX11.cs: deal with queue being null, which happens in all
13260         the Clipboard functions.  Fixes one of the two problems mentioned
13261         in #78612.
13262
13263 2006-09-11  Chris Toshok  <toshok@ximian.com>
13264
13265         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
13266         button on various spots (including outside the menu) works closer
13267         to MS, and doesn't crash.  Fixes #79343.
13268
13269 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
13270
13271         * ListView.cs: Do not initialize item_sorter in init. To match MS,
13272         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
13273         and the internal comparer is set. When a new ListViewItemSorter is set,
13274         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
13275         was specified. No further processing is necessary if SortOrder is set
13276         to it's current value. If Sorting is modified to None, and View is
13277         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
13278         (either custom or our internal ItemComparer) to null, on 1.0 profile
13279         only set item_sorter to null if its our internal IComparer. If Sorting
13280         is modified to Ascending or Descending, then use our internal IComparer
13281         if none is set, and if the current IComparer is our internal one then:
13282         on 2.0 profile always replace it with one for new Sorting, and on 1.0
13283         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
13284         Enum.IsDefined to verify whether a valid View value is specified in
13285         its setter. Automatically sort listview items when listview is
13286         created. In Sort, do nothing if ListView is not yet created, or if
13287         no item_sorter is set (no Sorting was set, Sorting was explicitly set
13288         to None or ListViewItemSorter was set to null). Added Sort overload
13289         taking a bool to indicate whether the ListView should be redrawn when
13290         items are sorted (we use this in ListViewItemCollection to avoid double
13291         redraws). Modified our internal IComparer to take the sort order into
13292         account. In Add and AddRange methods of ListViewItemCollection, also
13293         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
13294         view), but use overload with noredraw option to avoid double redraw.
13295         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
13296         true when View is Tile, and do the same when attempting to set View to
13297         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
13298         for selected/checked indices, as it involves overhead when sorting is
13299         done while these collections are not used all that often. Instead
13300         we'll build the indices on demand. Modified IList implementation of
13301         CheckedIndexCollection to use public methods if object is int.
13302         Modified CheckedListViewItemCollection to hide checked items if
13303         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
13304         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
13305         IList implementation in SelectedIndexCollection to use public methods
13306         if object is int. Modified SelectedListViewItemCollection to hide
13307         selected items if listview is not yet created.
13308         * ListViewItem.cs: CheckedIndices list no longer needs to be
13309         maintained separately (see ListView changes). Also clone font, fixes
13310         test failure.
13311
13312 2006-09-11  Mike Kestner  <mkestner@novell.com>
13313
13314         * ComboBox.cs: if we are updating the contents of the currently
13315         selected index, refresh the control or the textbox selection.
13316         [Fixes #79066]
13317
13318 2006-09-11  Mike Kestner  <mkestner@novell.com>
13319
13320         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
13321         the 'specified' logic has been moved there.  This seems like a bug 
13322         in Control.cs, since our current SetBoundsCore completely ignores 
13323         the specified parameter.  Peter's commit seems to indicate that is 
13324         the way the MS control implementation works.  [Fixes #79325]
13325
13326 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
13327
13328         * XplatUI.cs: Set default_class_name to be composed
13329         of current domain id. This allows MWF to be loaded in multiple
13330         domains on Win32.
13331
13332 2006-09-09  Miguel de Icaza  <miguel@novell.com>
13333
13334         * X11Keyboard.cs: If we are unable to obtain the input method, do
13335         not call CreateXic to create the input context.   Should fix
13336         #78944/79276.
13337
13338 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
13339
13340         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
13341           Simplified gnome support by adding more pinvokes to get the
13342           icon for a file or mime type.
13343
13344 2006-09-08  Jackson Harper  <jackson@ximian.com>
13345
13346         * MenuAPI.cs: Deslect popup context menu items before closing the
13347         window, so that you don't see the previously selected item
13348         selected when you reopen the menu.
13349         * TextControl.cs: Update the cursor position even if we don't have
13350         focus.  This fixes typing in things like the ComboBox.  I'm not
13351         totally sure we should always set the visibility if we don't have
13352         focus, but couldn't find any corner cases where the cursor showed
13353         up when it shouldn't.
13354
13355 2006-09-08  Chris Toshok  <toshok@ximian.com>
13356
13357         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
13358         our arrays are length 256.  & 0xff before indexing.  Fixes the
13359         crash in bug #78077.
13360         
13361 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13362
13363         * ThemeWin32Classic.cs: 
13364         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
13365         is true. Handle that check box too.
13366
13367 2006-09-07  Chris Toshok  <toshok@ximian.com>
13368
13369         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
13370         79244.
13371
13372 2006-09-07  Chris Toshok  <toshok@ximian.com>
13373
13374         * Control.cs: in set_BackColor only do the work if
13375         background_color != value.
13376
13377         * XplatUIX11.cs: move the clearing of invalid areas (both client
13378         and nc) to the same block of code where we set (nc_)expose_pending
13379         to false.  That is, move it from PaintEventEnd to PaintEventStart,
13380         so things that cause invalidates from within OnPaint will trigger
13381         another call to OnPaint.  Fixes bug #79262.
13382
13383 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
13384
13385         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
13386         * FileDialog.cs: Fix typo
13387
13388 2006-09-07  Jackson Harper  <jackson@ximian.com>
13389
13390         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
13391         for tab pages if they have any.
13392
13393 2006-09-06  Mike Kestner  <mkestner@novell.com>
13394
13395         * Splitter.cs: use the "current" rect when finishing drag handle
13396         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
13397
13398 2006-09-06  Mike Kestner  <mkestner@novell.com>
13399
13400         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
13401         support offset splitters. [Fixes #79298]
13402
13403 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
13404
13405         * Mime.cs: Fixed a bug that could override the global mime type
13406           result.
13407
13408 2006-09-05  Jackson Harper  <jackson@ximian.com>
13409
13410         * TabControl.cs: Better calculation method for setting the slider
13411         pos. Prevents crashes on really wide tabs.
13412         - Draw Image on tab pages if an image list is used.
13413
13414 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13415
13416         * MonthCalendar.cs: When Font changes, the Size should be
13417         updated to fit the new font's space requirements.
13418
13419 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
13420
13421         * ListBox.cs: If the items are cleared with Items.Clear set
13422           top_index to 0.
13423
13424 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13425
13426         * MonthCalendar.cs: Handle arrow keys as input keys. Also
13427         fire DateChanged event instead of DateSelected event when
13428         the date was changed by keyboard interaction.
13429
13430 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13431
13432         * DateTimePicker.cs: Handle DateChanged for the associated
13433         month_calendar control, and set month_calendar.Font from 
13434         OnFontChanged method, as well as resize the height of the
13435         control when needed. Make PreferredHeight proportional.
13436
13437 2006-09-01  Chris Toshok  <toshok@ximian.com>
13438
13439         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
13440         properties.
13441
13442         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
13443
13444 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
13445
13446         * FileDialog.cs: Set ClientSize instead of window size, to allow space
13447           for decorations (Fixes #79219)
13448
13449 2006-09-01  Mike Kestner  <mkestner@novell.com>
13450
13451         * ComboBox.cs: first stab at sorting plus some selection handling
13452         fixes to bring us more in line with MS behavior.  Also switches back
13453         to index based selection.  Alternative patches for index-based 
13454         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
13455         and latency@gmx.de on bug 78848.  I assume they were similar to this
13456         code I've had simmering in my tree forever.
13457         [Fixes #78848]
13458
13459 2006-09-01  Chris Toshok  <toshok@ximian.com>
13460
13461         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
13462         when setting list position guard against ending up with a -1 index
13463         (the other part of the fix for #78812).  Should probably make sure
13464         we don't need the analogous fix in the ItemDeleted case.
13465
13466         * DataGrid.cs:
13467         - in SetDataSource, work around the fact that the way
13468         OnBindingContextChanged is invoked will cause us to re-enter this
13469         method.  I'll remove the hack once I investigate
13470         OnBindingContextChanged.
13471
13472         - fix the logic in set_DataSource and set_DataMember (basically
13473         what to do if the other of the two is null.)
13474         
13475         - in OnListManagerItemChanged, we need to take into account the
13476         edit row when deciding whether or not to call RecreateDataGridRows
13477         (part of the fix for #78812).
13478
13479 2006-09-01  Jackson Harper  <jackson@ximian.com>
13480
13481         * Splitter.cs: Don't do anything if there is no control to affect
13482         (prevents us from crashing in weird tet cases).
13483         * TreeView.cs: Bounding box for the mouse movement reverting
13484         focus/selection back to previously selected node.  This matches
13485         MS, and makes the tree a lot more useable.
13486         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
13487         use clipping so they are not drawn.  This fixes when the control
13488         is set to have a transparent background, or if it was over an
13489         image.
13490
13491 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
13492
13493         * MimeIcon.cs: Improved handling for reading default icons when
13494           using gnome (2.16 made it necessary). Check and read svg icons
13495           first, then 48x48 and then 32x32 icons.
13496
13497 2006-08-31  Chris Toshok  <toshok@ximian.com>
13498
13499         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
13500         visible.
13501
13502         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
13503         ProcessKeyPreview.  Fixes part of #77806.
13504
13505         * DataGrid.cs: big patch.
13506
13507         - revert the queueing up of DataSource/DataMember if inside
13508         BeginInit/EndInit calls.  That's not the way the datagrid achieves
13509         its delayed databinding.  Instead, call SetDataSource in
13510         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
13511         #78811.
13512
13513         - Also, it wasn't mentioned in #78811, but the test case exhibits
13514         behavior that was lacking in our datagrid implementation - Columns
13515         that have mapping names that don't exist in the datasource's
13516         properties aren't shown.  Yuck.  To fix this I added the bound
13517         field to the column style, and basically any calculation to figure
13518         out anything about columns uses a loop to find the bound columns.
13519         still need to investigate if I can cache an array of the bound
13520         columns or if the indices must be the same.
13521
13522         - When setting CurrentCell, we no longer abort if the cell being
13523         edited was in the add row.  This fixes the other part of #77806.
13524
13525         - The new code also fixes #78807.
13526         
13527         * ThemeWin32Classic.cs: perpetrate the same disgusting
13528         column.bound field hack, and only render bound fields.
13529
13530 2006-08-31  Chris Toshok  <toshok@ximian.com>
13531
13532         * DataGridColumnStyle.cs: add bound field.  this field is true if
13533         the datasource has a property corresponding to the mapping name.
13534
13535         * DataGridTableStyle.cs: set the bound field on the column styles
13536         depending on whether or not we have a column for that property.
13537
13538 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
13539
13540         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
13541           splitter control (fixes #79228)
13542
13543 2006-08-31  Chris Toshok  <toshok@ximian.com>
13544
13545         * DataGridColumnStyle.cs: we need to delay the assignment of
13546         property descriptor until the last possible moment due to the lazy
13547         databinding stuff in the datagrid.  Also, fix the exceptions
13548         thrown by CheckValidDataSource to match MS.
13549
13550 2006-08-31  Jackson Harper  <jackson@ximian.com>
13551
13552         * Form.cs: When activated select the active control, if there is
13553         no active control, we select the first control.
13554         * XplatUIX11.cs: If there is no focus control when we get a
13555         FocusIn event, find the toplevel form and activate it.  This
13556         occurs when you popup a window, it becomes the focus window, then
13557         you close that window, giving focus back to the main window.
13558
13559 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13560
13561         * MonthCalendar.cs: 
13562         * ThemeWin32Classic.cs: Cache Font in bold style, as well
13563         as StringFormat with Center alignments in MonthCalendar,
13564         instead of creating new ones when drawing the control. 
13565         Also, draw the month name in bold style.
13566
13567 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13568
13569         * Control.cs:
13570           - PerformLayout(): It would seem MS performs the fill even if the 
13571             control is not visible (part of #79218 fix)
13572           - ResetBackColor(): Use the setter to reset the color, to allow
13573             overriders to catch the change.
13574         * Form.cs:
13575           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
13576           - CreateHandle(): dito (part of $79218 fix)
13577           - Don't set an icon if we have a dialog
13578         * ScrollableControl.cs:
13579           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
13580           - ScrollIntoView(): No need to scroll if control is already visible
13581             (resolves fixme and fixes #79218)
13582
13583 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13584
13585         * MonthCalendar.cs: Change proportions in SingleMonthSize
13586         to match the aspect of the original control.
13587
13588 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
13589
13590         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
13591           get updated when they get maximized.
13592
13593 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
13594
13595         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
13596
13597 2006-08-29  Chris Toshok  <toshok@ximian.com>
13598
13599         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
13600
13601 2006-08-29  Jackson Harper  <jackson@ximian.com>
13602
13603         * TreeView.cs: Need to track selected node and highlighted node,
13604         they aren't always the same thing, when the mouse is down on a
13605         node it is hilighted, but not selected yet.
13606         - Do the HideSelection stuff right
13607         - Need to focus on rbutton mouse down. And redraw selection when
13608         right click is mouse upped.
13609
13610 2006-08-29  Mike Kestner  <mkestner@novell.com>
13611
13612         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
13613         when SubItems.Count < Columns.Count.  [Fixes #79167]
13614
13615 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
13616
13617         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
13618
13619 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
13620
13621         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
13622           from X. Only send based on ConfigureNotify if we don't have the
13623           correct location in hwnd (if the window manager moved us)
13624
13625 2006-08-28  Mike Kestner  <mkestner@novell.com>
13626
13627         * ListView.cs: remove a TODO. 
13628         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
13629         [Fixes ListView part of #79166]
13630
13631 2006-08-28  Mike Kestner  <mkestner@novell.com>
13632
13633         * ListView.cs: move wheel handler to parent since it is focused
13634         instead of the item_control now.  [Fixes #79177]
13635
13636 2006-08-28  Mike Kestner  <mkestner@novell.com>
13637
13638         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
13639         when the control is focused. [Fixes #79171]
13640
13641 2006-08-28  Mike Kestner  <mkestner@novell.com>
13642
13643         * ListView.cs: size the item and header controls for empty and
13644         unscrollable views.
13645         * ThemeWin32Classic.cs: draw disabled backgrounds.
13646         [Fixes #79187]
13647
13648 2006-08-28  Chris Toshok  <toshok@ximian.com>
13649
13650         * Form.cs: remove unused "active_form" static field.
13651
13652         * Hwnd.cs: lock around accesses to static windows collection.
13653
13654         * Application.cs: lock threads in Exit ().
13655
13656 2006-08-28  Chris Toshok  <toshok@ximian.com>
13657
13658         * NativeWindow.cs: lock around accesses to window_collection.
13659         
13660 2006-08-28  Chris Toshok  <toshok@ximian.com>
13661
13662         * Control.cs: err, fix this the right way, by locking on controls
13663         when using it.  not by making it synchronized.
13664
13665 2006-08-28  Chris Toshok  <toshok@ximian.com>
13666
13667         * Control.cs: make the static "controls" field synchronized, as it
13668         gets updated from multiple threads.
13669
13670 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
13671
13672         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
13673           Prevent other threads from exiting when calling thread sets quit state.
13674         * XEventQueue.cs: Added PostQuitState property
13675
13676 2006-08-27  Chris Toshok  <toshok@ximian.com>
13677
13678         * AsyncMethodData.cs: add a slot for the window handle.
13679
13680         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
13681         window (the destination control's window, not the foster window).
13682
13683         * Control.cs (BeginInvokeInternal): store the window's handle in
13684         the AsyncMethodData.
13685         
13686
13687 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
13688
13689         * XplatUIX11.cs:
13690           - PostQuitMessage: Removed resetting S.D display handle, we might have
13691             another loop started after calling PostQuitMessage (Fixes #79119)
13692           - Created destructor to reset S.D handle
13693
13694 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
13695
13696         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
13697
13698 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
13699
13700         * TextControl.cs (Insert): Update the caret position even if we don't
13701           have a handle yet, just don't call the driver in that case.
13702         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
13703           to the end of the new selection text (Fixes #79184)
13704
13705 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13706
13707         * Form.cs (Activate): Only activate if the handle is created)
13708         * Control.c:
13709           - Mark window as invisible when it's disposed
13710           - Check if window handle is created when setting window visible, 
13711             instead of relying just on the is_created variable
13712           - Check if object is disposed when creating the control (Fixes #79155)
13713
13714 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
13715
13716         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
13717           when allowing layout again. Otherwise we re-generate the anchoring 
13718           distance to the border again and actually alter what the user wanted
13719           This is ugly, it'd be better if we used DisplayRectangle instead of
13720           ClientRectangle for Control.UpdateDistances, but that causes us to
13721           have other problems (initial anchoring positons would be wrong)
13722           (Fixes #78835)
13723
13724 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13725
13726         * Control.cs:
13727           - The size and location setters shouldn't go directly to 
13728             SetBoundsCore, but to SetBounds, which triggers layout on the
13729             parent, then calls SetBoundsCore. (Related to fix for #78835)
13730           - SetBounds: Moved actual location update code into this function
13731             from SetBoundsCore, to match MS. Added call to PerformLayout if
13732             we have a parent (to trigger resizing of anchored parents if the 
13733             child size has changed (see testcase for #78835) 
13734         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
13735           new control code
13736         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
13737
13738 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
13739
13740         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
13741           System.Drawing when a toplevel window gets closed; there might
13742           be other toplevel windows belonging to the same app (Fixes #78052)
13743
13744 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
13745
13746         * FileDialog.cs: After reading FileDialog settings from mwf_config
13747           use Desktop prefix only if a real folder doesn't exist anymore.
13748         * FontDialog.cs: Added char sets.
13749           It is now possible to select the font, size or style with the
13750           textboxes.
13751
13752 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
13753
13754         * PrintPreviewDialog.cs: Use assembly name constants.
13755
13756 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
13757
13758         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
13759           scrollbar from whacking it's buttons)
13760
13761 2006-08-24  Chris Toshok  <toshok@ximian.com>
13762
13763         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
13764         in this patch (aggregating setting Left/Top/Width/Height to
13765         setting Bounds on the scrollbars), but the crux of the fix is in
13766         Recalculate, where we scroll by the remaining scroll_position if
13767         we're hiding a scrollbar.  The 2*$5 reward in the comment is
13768         serious.
13769
13770 2006-08-24  Jackson Harper  <jackson@ximian.com>
13771
13772         * MdiClient.cs:
13773         * MdiWindowManager.cs: If the form is made a non-mdi window we
13774         need to remove the form closed event so that closing forms works
13775         correctly.
13776
13777 2006-08-24  Jackson Harper  <jackson@ximian.com>
13778
13779         * Control.cs: Make IsRecreating internal so that the driver can
13780         check it
13781         - Temporarily remove the Hide when controls are removed, its
13782         making a whole bunch of things not work because visibility isn't
13783         getting reset elsewhere correctly
13784         * Form.cs: Need to do a full handle recreation when the mdi parent
13785         is set.
13786         * XplatUIX11.cs: If we are recreating handles don't dispose the
13787         HWNDs.  What was happening is the handles were being recreated in
13788         SendWMDestroyMessages, but then flow continued on in that method
13789         and destroyed the new handles.
13790
13791 2006-08-23  Jackson Harper  <jackson@ximian.com>
13792
13793         * Form.cs: MdiClient is always at the back of the bus
13794         * Control.cs: When the order of items in the collection is changed
13795         we need to reset the all_controls array
13796         - do the same sorta setup thats done when adding a control when a
13797         control is set on the collection.
13798
13799 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
13800
13801         * TextBoxBase.cs (get_Text): Return an empty array if our document
13802           is empty (fixes #79052)
13803
13804 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13805
13806         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
13807           on WM_SYSCHAR messages (fixes #79053)
13808
13809 2006-08-23  Chris Toshok  <toshok@ximian.com>
13810
13811         * DataGrid.cs: fix flickering when scrolling vertically.
13812
13813 2006-08-23  Chris Toshok  <toshok@ximian.com>
13814
13815         * DataGrid.cs (EndEdit): only invalidate the row header when we
13816         need to.
13817
13818 2006-08-23  Chris Toshok  <toshok@ximian.com>
13819
13820         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
13821         methods.  fixes the flicker when scrolling around.
13822
13823 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13824
13825         * FileDialog.cs: Making sure the control is created before we get a 
13826           chance to use it with BeginInvoke (Fixes #79096)
13827
13828 2006-08-23  Chris Toshok  <toshok@ximian.com>
13829
13830         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
13831         width to use when painting the rows.
13832
13833 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13834
13835         * TextBoxBase.cs:
13836           - Throw ArgumentException if a negative value is passed to SelectionLength
13837           - Update the selection end if start is moved. end needs to be always
13838             after start. (Fixes #79095)
13839           - Track selection length; MS keeps the selection length even if start
13840             is changed; reset on all other operations affection selection
13841
13842 2006-08-22  Jackson Harper  <jackson@ximian.com>
13843
13844         * TreeView.cs: Make sure both scrollbars get displayed and sized
13845         correctly when the other bar is visible.
13846         - Use the original clip rectangle for checking if the area between
13847         the two scrollbars is visible, not the viewport adjusted clipping
13848         rectangle.
13849
13850 2006-08-22  Jackson Harper  <jackson@ximian.com>
13851
13852         * Binding.cs: We don't use IsBinding because it requires the
13853         control to be created, which really shouldn't be necessary just to
13854         set a property on the control.
13855
13856 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13857
13858         * ComboBox.cs: Some CB.ObjectCollection methods must throw
13859         ArgumentNullReferenceException when the argument is null.
13860
13861 2006-08-21  Jackson Harper  <jackson@ximian.com>
13862
13863         * Timer.cs: Track the thread that the timer is started in (NOT
13864         CREATED), this way messages for it will only be triggered on its
13865         queue.
13866         * XEventQueue.cs: Track the timers here, this makes timers per
13867         thread, like MS.
13868         * XplatUIX11.cs: The timers are moved to the XEventQueue.
13869
13870 2006-08-19  Chris Toshok  <toshok@ximian.com>
13871
13872         * XplatUIX11.cs: after further communication with pdb, we get the
13873         best of both worlds.  SetZOrder working for un-Mapped windows, and
13874         no X errors for un-mapped windows.
13875
13876 2006-08-19  Chris Toshok  <toshok@ximian.com>
13877
13878         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
13879         as it was causing pdn toolbars to not have the correct stacking.
13880
13881 2006-08-18  Mike Kestner  <mkestner@novell.com> 
13882
13883         * ListView.cs : guard against negative ClientArea.Width in scrollbar
13884         calculation.  Not sure why control should ever be setting a negative
13885         width though.  Fixes #78931.
13886
13887 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13888
13889         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
13890         null items in ObjectCollection class.
13891         * ListBox.cs.: Likewise.
13892
13893 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
13894
13895         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
13896           as the base method in ThemeWin32Classic should work fine.
13897           Fixed bug #78607.
13898
13899 2006-08-18  Jackson Harper  <jackson@ximian.com>
13900
13901         * Binding.cs: When validating if the value entered doesn't convert
13902         properly reset to the old value.
13903         * RadioButton.cs: Don't fire click when we get focus.
13904
13905 2006-08-18  Jackson Harper  <jackson@ximian.com>
13906
13907         * FileDialog.cs: Paint the selection on the directory combobox the
13908         same way as on MS. 
13909
13910 2006-08-17  Jackson Harper  <jackson@ximian.com>
13911
13912         * ErrorProvider.cs: Don't allow the error control to be selected.
13913         * Control.cs: Don't send the SetFocus messages, the control
13914         activation will do this, and if we do it blindly here validation
13915         does not work.
13916
13917 2006-08-17  Jackson Harper  <jackson@ximian.com>
13918
13919         * Control.cs:
13920         * ContainerControl.cs: Make validation events fire in the correct
13921         order.  TODO: For some reason the first validation event is not
13922         getting fired.
13923
13924 2006-08-17  Mike Kestner  <mkestner@novell.com> 
13925
13926         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
13927
13928 2006-08-17  Mike Kestner  <mkestner@novell.com> 
13929
13930         * ComboBox.cs : implement scroll wheel support for popped-down
13931         state. Fixes #78945. 
13932
13933 2006-08-17  Jackson Harper  <jackson@ximian.com>
13934
13935         * TreeView.cs: Specify treeview actions (old patch that didn't get
13936         committed for some reason).
13937         - Don't let the mouse wheel scroll us too far.  Just want to make
13938         the bottom node visible, not scroll it all the ways to the top.
13939
13940 2006-08-17  Jackson Harper  <jackson@ximian.com>
13941
13942         * XplatUIX11.cs: Mouse wheel events go to the focused window.
13943
13944 2006-08-17  Mike Kestner  <mkestner@novell.com> 
13945
13946         * ComboBox.cs : don't do mouseover selection in simple mode.
13947
13948 2006-08-16  Jackson Harper  <jackson@ximian.com>
13949
13950         * Form.cs: Fire the closing events for all the mdi child windows
13951         when a window is closed.  If the cancel args are set to true, the
13952         main window still gets the event fired, but it doesn't not close.
13953         * MdiWindowManager.cs: Do this closing cleanup in a Closed
13954         handler, instead of when the button is clicked, so cancelling the
13955         close works correctly.
13956         * ComboBox.cs: Send the mouse down to the scrollbar.
13957
13958 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13959
13960         * ListBox.cs: When passing 'null' to SelectedItem,
13961         set SelectedIndex to -1, to unselect items. This is the
13962         observed behaviour in .Net.
13963
13964 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
13965
13966         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
13967           MS flags saying there won't be any. (fixes #78800)
13968         * Control.cs (HandleClick): Made virtual
13969
13970 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
13971
13972         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
13973           cultures. Fixed bug #78399.
13974
13975 2006-08-16  Jackson Harper  <jackson@ximian.com>
13976
13977         * Form.cs: Use the MdiClients MdiChildren property to access
13978         MdiChildren instead of creating the array from the child controls.
13979         * MdiClient.cs: Maintain a separate array of the mdi children, so
13980         that insertion order is maintained when the Z-order is changed.
13981
13982 2006-08-16  Mike Kestner  <mkestner@novell.com> 
13983
13984         * ListView.cs : add an ItemComparer and default to it for sorting.
13985         Fixes #79076, but sorting needs a complete overhaul to be compat with
13986         MS.
13987
13988 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
13989
13990         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
13991
13992 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13993
13994         * Hwnd.cs (Mapped): Properly traverse the tree
13995
13996 2006-08-15  Chris Toshok  <toshok@ximian.com>
13997
13998         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
13999         pass manager.Current.GetType() to ParseData.  It has to be the
14000         property type.  So, hold off doing the ParseData until we're in
14001         SetPropertyValue where we know the type.  This fixes the crash in
14002         #78821 but the textbox is still empty.
14003
14004 2006-08-15  Chris Toshok  <toshok@ximian.com>
14005
14006         * DataGrid.cs:
14007         - when we're scrolling, only call Edit() again if the
14008         current cell is still unobscured. Fixes bug #78927.
14009         - when handling mousedown on a cell, ensure the cell is visible
14010         before calling Edit.
14011         - remove the properties from DataGridRow, and remove the
14012         DataGridParentRow class altogether.
14013         
14014
14015 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
14016
14017         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
14018           fire OnTextChanged by ourselves. There's no point calling base,
14019           we don't set the base value anywhere else. Fixes #78773.
14020
14021 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14022
14023         * ListBox.cs: Call CollectionChanged when modifying
14024         an item from Items indexer, to update the actual items
14025         in the list box.
14026
14027 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14028
14029         * PrintDialog.cs: Small fixes for focus and a pair of checks,
14030         to match .Net behaviour.
14031
14032 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
14033
14034         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
14035
14036 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
14037
14038         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
14039
14040 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
14041
14042         * MessageBox.cs: Prevent potential NRE exception.
14043         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
14044
14045 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
14046
14047         * MessageBox.cs: Calculate the owner of a messagebox, also make
14048           it topmost. Fixes #78753
14049
14050 2006-08-14  Chris Toshok  <toshok@ximian.com>
14051
14052         * XplatUIX11.cs: A couple of fixes so that metacity will let us
14053         programmatically move windows.  first, set the PPosition hint as
14054         well as the USPosition hint.  Second include some code from pdb
14055         that sets the window type to NORMAL when we set the transient for
14056         hint.  This is because, in the absence of a window type, metacity
14057         thinks any window with TransientFor set is a dialog, and refuses
14058         to let us move it programmatically.  fascists.
14059
14060 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
14061
14062         * XplatUIX11.cs: When setting normal hints, take into consideration
14063           an different hints previously set so we don't delete them (fixes #78866)
14064
14065 2006-08-12  Chris Toshok  <toshok@ximian.com>
14066
14067         * ToolBarButton.cs: make Layout return a boolean, if something to
14068         do with the button's layout changed.
14069
14070         * ToolBar.cs:
14071         - add another parameter to Redraw, @force, which all existing
14072           calls set to true.
14073         - make the Layout function return a boolean which is true if the
14074           layout has actually changed.  Redraw now uses this (and @force)
14075           to determine when to invalidate.  At present the only place
14076           where @force can be false is the call from OnResize, when
14077           background_image == null.  So, resizing a toolbar when the
14078           layout doesn't change results in no drawing.
14079
14080 2006-08-12  Chris Toshok  <toshok@ximian.com>
14081
14082         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
14083         the VScrollBar and HScrollbar reversed.  oops.
14084
14085         * DataGrid.cs: fix the logic that assigns sizes to the implicit
14086         scrollbars.  we were assigning them twice (once in
14087         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
14088         therefore causing two scrollbar resizes (and redraws?) to happen
14089         per grid resize.
14090
14091 2006-08-12  Chris Toshok  <toshok@ximian.com>
14092
14093         * ToolBarButton.cs: redraw the entire button if the theme tells us
14094         to.
14095
14096         * Theme.cs: add ToolBarInvalidateEntireButton.
14097
14098         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
14099         buttons, just the border.
14100
14101         * ThemeNice.cs: redraw the entire toolbar button since we need to
14102         draw the highlight image.
14103
14104         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
14105         we need to redraw the entire button (not just the border).
14106
14107 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
14108
14109         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
14110           for vertical bars. Fixes the mismatches shown by #78513
14111
14112 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
14113
14114         * FileDialog.cs: If a saved/remembered path doesn't exist
14115           anymore, fall back to "Desktop".
14116
14117 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
14118
14119         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
14120           parent. It's apparently legal to not have one
14121         * XplatUIX11.cs:
14122           - SetZOrder: Don't try to set Z-Order on an unmapped window
14123           - CreateWindow: 0,0 are legal coordinates for a window. don't move
14124             it unless the coordinates are negative
14125
14126 2006-08-10  Mike Kestner  <mkestner@novell.com>
14127
14128         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
14129         when setting to null per msdn docs.  Fixes #78854.
14130
14131 2006-08-10  Chris Toshok  <toshok@ximian.com>
14132
14133         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
14134         flickering by setting a clip rectangle on the Graphics when we
14135         need to redraw just a particular menuitem.  Also, rename "OnClick"
14136         to "OnMouseDown" to reflect what it actually is.
14137         
14138         * Form.cs: track the OnMouseDown change.
14139
14140 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
14141
14142         * CommonDialog.cs: Properly inherit the CreateParams from the form
14143           and only change what we need. Fixes #78865
14144
14145 2006-08-10  Chris Toshok  <toshok@ximian.com>
14146
14147         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
14148         flickering in flat mode (and most of the flickering in general) by
14149         only invalidating the button border (and not the entire rectangle)
14150         when the state changes.  A couple of cases still flicker:
14151         ToggleButtons, and the dropdown arrow case when the user mouse
14152         ups.
14153
14154 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
14155
14156         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
14157           for german keyboards. Numlock state shouldn't affect the behaviour
14158           of the Del key. Fixes bug #78291.
14159
14160 2006-08-10  Chris Toshok  <toshok@ximian.com>
14161
14162         * ListControl.cs: remove the items.Clear line from BindDataItems,
14163         as this is the first thing done by both subclasses in their
14164         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
14165         passed -1, refresh the list.  This gets databinding working when
14166         the datasource is set on the list before the datasource is
14167         populated (as in wf-apps/ReportBuilder.)
14168
14169         * ComboBox.cs: remove the argument to BindDataItems.  This call
14170         should really go away, and be initiated by the ListControl code.
14171
14172         * ListBox.cs: same.
14173
14174 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
14175
14176         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
14177           if no data is in the document when the control is displayed
14178
14179 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
14180
14181         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
14182           yes (fixes #78806)
14183         * TextControl.cs: 
14184           - PositionCaret: Allow positioning of caret but don't call methods 
14185             requiring a handle if the window isn't created yet
14186           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
14187           - owner_HandleCreated: Don't position the caret, just update it's 
14188             location. User might have already set a different position
14189
14190 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
14191
14192         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
14193           windows. Screws up the returned coordinates for child windows. 
14194           Fixes #78825. I'm hoping this doesn't break something, since the
14195           code was explicitly put in 8 months ago, but no bug was attached.
14196           Menus still seem to work properly.
14197
14198 2006-08-08  Chris Toshok  <toshok@ximian.com>
14199
14200         * DataGrid.cs: make BeginInit/EndInit actually do what they're
14201         supposed to do - delay data binding until the EndInit call.  Also,
14202         make the table style collection's CollectionChangeAction.Refresh
14203         work properly.
14204
14205         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
14206         (with action = Refresh) when a consituent table's MappingName is
14207         changed.
14208
14209 2006-08-08  Chris Toshok  <toshok@ximian.com>
14210
14211         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
14212         Invalidate, since changing the text can change the size of the all
14213         toolbar buttons.
14214
14215 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
14216
14217         * Form.cs (AddOwnedForm): Still need to add the form to our listif
14218           we don't have it yet
14219
14220 2006-08-08  Chris Toshok  <toshok@ximian.com>
14221
14222         * PrintControllerWithStatusDialog.cs: don't .Close() the status
14223         dialog, as this causes X errors later on, since we actually
14224         destroy the window.  Instead, .Hide() it.
14225
14226 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
14227
14228         * ComboBox.cs: Added focus reflection for popup window
14229         * XplatUIX11.cs: 
14230           - Removed transient setting for non-app windows for now, not sure it
14231             was needed
14232           - Fixed logic checking if we have captions when deciding 
14233             override_redirect, WS_CAPTION is two bits and a 0 check was not
14234             sufficient
14235           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
14236             complicated
14237         * Form.cs: 
14238           - AddOwnedForm: Don't just add the form to the list, call the property
14239             to ensure the driver is informed about the ownership as well
14240           - CreateHandle: Set the TopMost status in the driver if we have an owner
14241         * XplatUI.cs: Fixed debug statement
14242
14243 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
14244         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
14245           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
14246           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
14247           TrackBarRenderer.cs: Make constructor private.
14248         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
14249         * ProfessionalColorTable.cs: Make properties virtual.
14250
14251 2006-08-06  Duncan Mak  <duncan@novell.com>
14252
14253         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
14254         is not changing.
14255
14256 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
14257         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
14258           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
14259           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
14260           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
14261           Initial import of new 2.0 classes.
14262
14263 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
14264         * Application.cs: Add 2.0 VisualStyles properties.
14265
14266 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
14267         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
14268           XplatUIX11.cs: Create property to allow access to existing private
14269           variable "themes_enabled"
14270
14271 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14272
14273         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
14274         file size, as otherwise our class libraries fail using windows. Fixes
14275         bug #78759.
14276
14277 2006-08-04  Jackson Harper  <jackson@ximian.com>
14278
14279         * Form.cs:
14280         * XplatUIX11.cs: Move the toolwindow window manager creation into
14281         the X11 driver, this way on win32 we can let windows create/handle
14282         the toolwindows.
14283
14284 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14285
14286         * PrintDialog.cs: Remove some redundant checks, add some others,
14287         clean some code, and move the focus to the text boxes when the
14288         values are incorrect.
14289
14290 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
14291
14292         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
14293
14294 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
14295
14296         * NumericUpDown.cs: Setting the Minimum and Maximum is now
14297           handled correctly. Fixes bug #79001.
14298
14299 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14300
14301         * PrintDialog.cs: The "Copies" numeric up down must have
14302         set the Minimum property to 1; only if the value is bigger
14303         than 1, activate "Collate" check box. This is the behaviour of .Net.
14304         Also modify the Document elements only if it is not null.
14305
14306 2006-08-03  Jackson Harper  <jackson@ximian.com>
14307
14308         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
14309         length. (We have a larger array then actual node count).
14310                 
14311 2006-08-03  Jackson Harper  <jackson@ximian.com>
14312
14313         * ComboBox.cs: Don't show selection by default.
14314         - The SelectAll isn't needed here, since the focus code should do
14315         that
14316         - DDL style lists to manual selection drawing, so when they
14317         get/lose focus they have to invalidate.
14318
14319 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
14320
14321         * TextBoxBase.cs: Don't always show all selections by default.
14322
14323 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
14324         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
14325           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
14326           Fixed various typos.
14327
14328 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
14329
14330         * Control.cs: Removing the controls in a ControlCollection with
14331           Clear now hides the controls as expected. Fixes bug #78804. 
14332
14333 2006-08-03  Jackson Harper  <jackson@ximian.com>
14334
14335         * Control.cs: Revert previous focus patch, it breaks reflector.
14336
14337 2006-08-03  Jackson Harper  <jackson@ximian.com>
14338
14339         * ComboBox.cs: Cleanup selection and focus with the combobox.
14340         This also eliminates some duplicated keyboard code, since now
14341         everything is handled by the main class.
14342         - Make list selection work on mouse up instead of down, to match
14343         MS.
14344
14345 2006-08-02  Jackson Harper  <jackson@ximian.com>
14346
14347         * Control.cs: Setting focus needs to go through the whole
14348         selection mechanism.
14349
14350 2006-08-02  Chris Toshok  <toshok@ximian.com>
14351
14352         * PrintPreviewDialog.cs: change MinimumSize to use
14353         base.MinimumSize so it works.
14354
14355 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
14356
14357         * TextControl.cs:
14358           - UpdateCaret: Added sanity check in case caret isn't defined yet
14359           - Line.Delete: Now updating selection and caret markers if we're
14360             transfering a node (Properly fixes #78323)
14361           - SetSelectionEnd: Added sanity check
14362         * TextBoxBase.cs: Removed broken attempt to fix #78323
14363
14364 2006-08-01  Chris Toshok  <toshok@ximian.com>
14365
14366         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
14367         Close() call is handled in Form, not here.
14368
14369 2006-08-01  Chris Toshok  <toshok@ximian.com>
14370
14371         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
14372         layout/rendering.
14373
14374         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
14375         for sizes < 100% zoom.  The code now aggressively attempts to keep
14376         from calling document.Print (), and tries not to use the scaling
14377         g.DrawImage whenever possible (it still does if you scale to >
14378         100%, since usually that involves huge images).
14379
14380         * PrintPreviewControl.cs: hook up the close button.
14381
14382 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
14383         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
14384           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
14385           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
14386           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
14387           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
14388           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
14389           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
14390           Removed [Serializable] for 2.0 Event Handlers.
14391
14392 2006-07-31  Jackson Harper  <jackson@ximian.com>
14393
14394         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
14395         * TextControl.cs: Uncomment out the body of this method.
14396
14397 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
14398
14399         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
14400           standard cursors.
14401
14402 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
14403
14404         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
14405           that embed TextBox and need selections visible even if textbox is not
14406           focused to enforce that behaviour.
14407         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
14408           selection drawing
14409
14410 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
14411
14412         * TextControl.cs:
14413           - Added new SetSelectionStart/SetSelectionEnd overloads
14414           - Fixed viewport width assignment to be accurate
14415           - Adjusted alignment line shift calculations to allow cursor on right
14416             aligned lines to be always visible at the right border (like MS)
14417         * TextBoxBase.cs:
14418           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
14419           - TextBoxBase_SizeChanged: recalculating canvas on size changes
14420           - CalculateScrollBars: Use ViewPort size instead of window size, to
14421             properly consider space occupied by the border and scrollbars 
14422             (Fixes #78661)
14423           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
14424             calculations; no longer leaves artifacts
14425           - CaretMoved: Adjusted window scrolling to match MS and fixed several
14426             calculation bugs (Still missing right/center align calculations)
14427
14428 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
14429
14430         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
14431           use of both scroll rect and clip rect, as they do the same.
14432
14433 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
14434
14435         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
14436           in the event handler (fixes #78912)
14437
14438 2006-07-31  Chris Toshok  <toshok@ximian.com>
14439
14440         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
14441         grid.ListManager.Count, since grid.ListManager might be null.
14442         This of course begs the question "why are we drawing rows for a
14443         grid with no list manager (and therefor no rows)?"  Fixes the
14444         crash in bug #78929.
14445
14446 2006-07-31  Chris Toshok  <toshok@ximian.com>
14447
14448         * RelatedPropertyManager.cs: Don't always chain up to the parent
14449         ctor.  instead, call SetDataSource if the parent's position is !=
14450         -1.  Fixes the crash in #78822.
14451
14452 2006-07-31  Chris Toshok  <toshok@ximian.com>
14453
14454         * DataGrid.cs (get_ListManager): use field instead of property
14455         accessors for datasource and datamember.
14456         (RowsCount): make internal again.
14457         (OnMouseDown): end edits before resizing columns/rows.
14458         (OnMouseUp): restart edits after resizing columns/rows.
14459
14460 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
14461
14462         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
14463           This fixes the situation where the last set cursor is displayed
14464           whenever the mouse is over scrollbars.
14465
14466 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14467
14468         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
14469         Document properties, as well as initial values.
14470
14471 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
14472
14473         * XplatUIWin32.cs (SetBorderStyle): Setting both border
14474           and ClientEdge results in a 3-pixel border, which is
14475           wrong.
14476
14477 2006-07-28  Jackson Harper  <jackson@ximian.com>
14478
14479         * TreeNodeCollection.cs: Fix the clear method.
14480         - Fix the Shrink also
14481
14482 2006-07-27  Jackson Harper  <jackson@ximian.com>
14483
14484         * TreeView.cs: Make sure the visible order is computed when we
14485         attempt to size the scrollbars (for trees that mess with the
14486         scrolling when they shouldn't.
14487         - Make sure to give the scrollbars valid values.
14488
14489 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
14490
14491         * XplatUIX11.cs: Move motion compression code to where it
14492           has less performance impact
14493
14494 2006-07-26  Jackson Harper  <jackson@ximian.com>
14495
14496         * UpDownBase.cs: When the control is selected make the child
14497         controls non selectable, so that a click on them won't do a
14498         focus/unfocus cycle.
14499         - Don't give focus to the text box when the spinner is selected.
14500         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
14501
14502 2006-07-26  Chris Toshok  <toshok@ximian.com>
14503
14504         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
14505         satisfied with this solution.  If the bitmaps are small, we should
14506         just cache them in the PrintPreviewDialog and draw them here.
14507         Also, the layout is broken for the 2-up and 3-up cases.
14508
14509         * Theme.cs: add PrintPReviewControlPaint.
14510
14511         * PrintPreviewDialog.cs: first pass implementation.
14512
14513         * PrintPreviewControl.cs: first pass implementation.  No
14514         scrollbars yet.
14515
14516         * PrintDialog.cs: only validate fields if that particular portion
14517         of the UI is enabled.  Also, set the document's controller to a
14518         PrintControllerWithStatusDialog wrapping the document's print
14519         controller.
14520
14521         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
14522         bring up a SaveFileDialog (i hope we don't want to match the
14523         behavior of the crappy windows file entry) and set the
14524         PrinterSettings.PrintFileName accordingly.
14525
14526 2006-07-26  Jackson Harper  <jackson@ximian.com>
14527
14528         * ContainerControl.cs: Add a field that disables auto selecting
14529         the next control in a container when the container is activated.
14530         * UpDownBase.cs: Don't select the text box when the up down is
14531         selected.
14532
14533 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
14534
14535         * XEventQueue.cs: Added methods for peeking (used for compression
14536           of successive events)
14537         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
14538           mouse move events (fixes #78732)
14539
14540 2006-07-25  Jackson Harper  <jackson@ximian.com>
14541
14542         * UpDownBase.cs: Use an internal class for the textbox so that we
14543         can control focus.  the updown control should always have focus,
14544         if either the text area or the buttons are clicked.
14545         - Send the key messages to the textbox, since it never actually
14546         has focus
14547         - Activate and decativate the textbox caret.
14548
14549 2006-07-24  Jackson Harper  <jackson@ximian.com>
14550
14551         * Control.cs: Use the directed select when selecting a control,
14552         this way the container controls override will get called and the
14553         whole ActiveControl chain will get triggered.  TODO: probably need
14554         to make sure this gets done everywhere instead of the old
14555         Select(Control).
14556         * ContainerControl.cs: Implement the directed Select method to
14557         find and activate the correct child control.    
14558         
14559 2006-07-22  Mike Kestner  <mkestner@novell.com>
14560
14561         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
14562         menu handling code so that clicks without a grab work too.
14563         [Fixes #78914]
14564
14565 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
14566
14567         * FileDialog.cs: Enable the BackButton when dirstack has one element.
14568           Added some small optimizations.
14569
14570 2006-07-21  Matt Hargett  <matt@use.net>
14571
14572         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
14573
14574 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
14575
14576         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
14577           tests pass and match MS in some strange border cases.
14578
14579 2006-07-21  Chris Toshok  <toshok@ximian.com>
14580
14581         * ThemeWin32Classic.cs: handle drawing of the relation links and
14582         parent row buttons.
14583
14584         * Theme.cs: change args to DataGridPaintParentRow.
14585
14586         * DataGrid.cs: Don't use controls for the relation links and
14587         parent buttons, so we have to handle all their interactions in
14588         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
14589         when we're navigating through child tables, so we can reinstate
14590         selection, expanded state, current cell, etc.
14591
14592 2006-07-20  Chris Toshok  <toshok@ximian.com>
14593
14594         * ToolBar.cs: When we redraw a button, for whatever reason,
14595         there's no reason to redraw the entire toolbar.  Also, don't call
14596         Control.Refresh from within Redraw, as it's much heavier than
14597         Invalidate (which is really what we want).
14598
14599 2006-07-20  Chris Toshok  <toshok@ximian.com>
14600
14601         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
14602         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
14603         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
14604         traces from within a debug IBindingList datasource
14605         (in mono/winforms/datagrid) for *days*, I've finally gotten things
14606         to work in a similar fashion.
14607
14608 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14609
14610         * ListBox.cs: Don't call Sort () when setting 
14611         the Sorted property to false (avoid an unnecessary sort).
14612
14613 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14614
14615         * ListControl.cs: DataSource should throw an ArgumentException
14616         instead of a normal exception when the argument is not of the 
14617         correct type.
14618
14619 2006-07-20  Mike Kestner  <mkestner@novell.com>
14620
14621         * Control.cs: add InternalPreProcessMessage to allow us to steal
14622         key events before MWF gets its paws on them.  Adapted from a
14623         suggestion by eno.
14624         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
14625         up/down/left/right navigation. Override the new internal control
14626         method to steal the events since they never make it to WndProc.
14627         * ToolBarButton.cs: don't worry about pushed when setting hilight
14628         since the drawing code prefers pushed to hilight. Invalidate on 
14629         Hilight changes. Fixes #78547 and #78525.
14630
14631 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
14632
14633         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
14634           the canvas size. Fixes #78868
14635
14636 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
14637
14638         * Splitter.cs: Track requested split position until first layout
14639           is performed. Fixes #78871
14640
14641 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
14642
14643         * Application.cs: Removed code that forces 1.x for the version
14644           number if the version started with 0. Not sure why that code was
14645           there and I couldn't find any bugs that indicated we needed it.
14646           Fixes #78869
14647
14648 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
14649
14650         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
14651           ResetDefaults(), just write some output to the console until it's
14652           implemented. Fixes bug #78907 for now. Eliminated two warnings.
14653
14654 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
14655
14656         * PropertyGridView.cs: set StartPosition of drop down forms
14657         so they appear in correct initial spot.  Fixes #78190.
14658
14659 2006-07-19  Mike Kestner  <mkestner@novell.com>
14660
14661         * ThemeWin32Classic.cs: use parent background color when drawing
14662         flat toolbars.  Restructure the conditionals to make sure non-flat
14663         non-Divider toolbars are filled too.  Fixes #78837.
14664
14665 2006-07-19  Mike Kestner  <mkestner@novell.com>
14666
14667         * ListBox.cs: Sort on collection changes even if the handle
14668         isn't created yet.  Fixes #78813.
14669
14670 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14671
14672         * ListControl.cs: DisplayMember should never be null,
14673         and now we assign String.Empty when null is passed to it (this
14674         is the .Net way).
14675
14676 2006-07-17  Mike Kestner  <mkestner@novell.com>
14677
14678         * ListViewItem.cs: restructure Font and subitem Font handling 
14679         to hold a specific font and refer back to owner on null.
14680         Fixes #78761.
14681
14682 2006-07-17  Mike Kestner  <mkestner@novell.com>
14683
14684         * ToolBar.cs: bandaid for side-effect of previous patch which was
14685         discarding explicit heights for non-AutoSize toolbars.  Need to
14686         extend my format tester to deal with AutoSize=false. Fixes #78864.
14687
14688 2006-07-15  Jackson Harper  <jackson@ximian.com>
14689
14690         * LabelEditTextBox.cs:
14691         * TreeView.cs: Use a new LabelEdit class for node editing, this
14692         class automatically 'closes' itself when it gets the enter key or
14693         loses focus.
14694         - Use the client rectangle when setting the trees scrollbars, so
14695         border style is taken into account.
14696         
14697 2006-07-14  Jackson Harper  <jackson@ximian.com>
14698
14699         * TreeNode.cs:
14700         * TreeView.cs: Make the editing work similar to MSs, firing the
14701         events correctly and ending edits correctly.
14702
14703 2006-07-14  Mike Kestner  <mkestner@novell.com>
14704
14705         * ToolBarButton.cs:
14706         * ToolBar.cs: layout restructuring and redraw enhancements to support
14707         formatting changes gracefully, like setting TextAlign, ImageList, 
14708         ButtonSize, and Appearance.  Handles explicit button sizing quirks
14709         of the MS controls.  Things like flat toolbars ignoring button size
14710         but becoming constant sized at the largest button's size.  Normal
14711         toolbars with an image set cannot be shrunk smaller than the image,
14712         but text can be clipped/ignored.
14713         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
14714         is zero.  Seems like DrawString should be smart enough to not put
14715         anything on screen though. Also trim labels and ellipsize at the char
14716         boundary, not word.
14717         Fixes #78711 and #78483.
14718
14719 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
14720
14721         * FolderBrowserDialog.cs: Disable "New Folder" button and
14722           "New Folder" contextmenu menuitem if a folder like "My Computer"
14723           is selected.
14724
14725 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
14726
14727         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
14728         * FolderBrowserDialog.cs:
14729           - Use MWFConfig to store and read size and position settings
14730           - Added code to create a new folder (button or context menu).
14731             Use TreeView labeledit to change the name of the new folder.
14732
14733 2006-07-14  Jackson Harper  <jackson@ximian.com>
14734
14735         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
14736         when the tree is scrolled we end editing.
14737
14738 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
14739
14740         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
14741           Down arrows
14742
14743 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
14744
14745         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
14746         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
14747         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
14748         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
14749         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
14750         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
14751         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
14752         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
14753         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
14754         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
14755         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
14756         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
14757         ListViewItemSelectionChangedEventHandler.cs,
14758         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
14759         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
14760         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
14761         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
14762         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
14763         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
14764         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
14765         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
14766         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
14767         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
14768         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
14769         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
14770         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
14771         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
14772         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
14773         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
14774         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
14775         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
14776         WebBrowserNavigatingEventHandler.cs, 
14777         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
14778
14779 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
14780
14781         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
14782         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
14783         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
14784         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
14785         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
14786         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
14787         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
14788         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
14789         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
14790         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
14791         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
14792         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
14793         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
14794         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
14795         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
14796         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
14797         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
14798         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
14799         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
14800         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
14801         ListViewItemStates.cs, MaskFormat.cs: Added
14802
14803 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
14804
14805         * PropertyGridView.cs: Fix keyboard navigation of drop down.
14806         Patch from eno for bug 78558.
14807         
14808 2006-07-13  Jackson Harper  <jackson@ximian.com>
14809
14810         * TreeView.cs: When an edit is finished make sure that the
14811         selected node is visible.
14812         - When setting the top/bottom use the scrollbars is_visible, so
14813         everything will be set correctly even if the tree isn't visible
14814         yet.
14815
14816 2006-07-13  Jackson Harper  <jackson@ximian.com>
14817
14818         * ComboBox.cs: Revert the item->index part of my previous patch.
14819         * TreeView.cs: Use LostFocus instead of Leave for detecting when
14820         the edit box has lost focus (duh).
14821         - Just make the edit box not visible when we get return, that will
14822         take the focus, which will call EndEdit
14823         * TreeNode.cs When we start editing, notify the treeview.
14824
14825 2006-07-12  Jackson Harper  <jackson@ximian.com>
14826
14827         * ComboBox.cs: Clear out old items before setting the item list.
14828         This prevents databound controls from having their items added
14829         twice.
14830         - Switch the combobox to use indices whereever possible instead of
14831         using Item's.  This allows usto navigate through lists that have
14832         more then one item with the same string value (ie a, b, b, a).
14833         - Scroll the listboxes scrollbar when a non visible item is
14834         highlighted
14835         - Allow keypress to cycle through all the possible values. For
14836         example if you have b1, b2, b3 and hold down the B key all the
14837         values will be cycled through.
14838         
14839 2006-07-12  Jackson Harper  <jackson@ximian.com>
14840
14841         * TextBoxBase.cs:
14842         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
14843         this using the internal methods.
14844         * Control.cs: Add OnGotFocusInternal.  A new method that allows
14845         controls to "override" OnGotFocus and change focus behavior if
14846         needed.
14847         - Same thing for LostFocus
14848         * ComboBox.cs: Pass off focus to the text control properly.
14849
14850 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
14851
14852         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
14853         * FolderBrowserDialog.cs: Almost a complete rewrite.
14854           - Better support for Environment.Specialfolders
14855           - Added support for MWFVFS
14856           - Made setting SelectedPath work
14857
14858 2006-07-12  Jackson Harper  <jackson@ximian.com>
14859
14860         * Control.cs: Optimze getting all the controls.
14861
14862 2006-07-11  Jackson Harper  <jackson@ximian.com>
14863
14864         * ContainerControl.cs: Override SETFOCUS in the container control,
14865         so that it is not selected on mouse click.
14866
14867 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
14868
14869         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
14870           Hopefully we will have a better way once all of focus is complete.
14871
14872 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
14873
14874         * ThemeWin32Classic.cs: Commented out some debug code and fixed
14875           a compile error with csc.
14876
14877 2006-07-11  Jackson Harper  <jackson@ximian.com>
14878
14879         * Control.cs: When hiding a control only select the next control
14880         if the current control was focused.
14881         - Don't handle enter/leave when setting/killing focus, this is
14882         done by the container control.
14883         - Remove is_selected, it's not needed anymore.
14884         - Add utility methods for selecting a child control, and for
14885         firing the Enter/Leave events.
14886         * ContainerControl.cs: When a control is activated fire the
14887         enter/leave events.
14888         - Don't wrap when processing the tab key, so that focus can be
14889         moved outside of the container.
14890         - Use the correct active control
14891
14892 2006-07-11  Jackson Harper  <jackson@ximian.com>
14893
14894         * ComboBox.cs: Remove some debug code that was blinding me.
14895         * UpDownBase.cs: These controls actually aren't implicit, they are
14896         visible to the user.
14897
14898 2006-07-10  Chris Toshok  <toshok@ximian.com>
14899
14900         * DataGrid.cs: move back to the is_adding boolean field.  god i
14901         hate this is_editing/is_adding/is_changing stuff.
14902
14903 2006-07-10  Chris Toshok  <toshok@ximian.com>
14904
14905         * DataGridTableStyle.cs: just check if the property type is bool.
14906         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
14907         Don't use CanRenderType.
14908
14909         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
14910         if our text == NullText.  Remove CanRenderType.
14911
14912         * DataGridBoolColumn.cs: nuke CanRenderType.
14913
14914         * DataGrid.cs: reenable some code to end the current edit inside
14915         of set_CurrentCell.  This fixes the other 1.1.16 regression.
14916         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
14917         Also, remove the visible_row_count arg from CalcRowHeaders, since
14918         we don't need to worry about the actual height of the area.
14919
14920 2006-07-10  Chris Toshok  <toshok@ximian.com>
14921
14922         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
14923         mode, just return.
14924
14925         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
14926         the real sense of the IsInEditOrNavigateMode property (true =
14927         navigate, false = edit).  Also, update OnKeyPress to reflect this.
14928
14929         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
14930         column style exists, we still need to set its property descriptor
14931         to match up with our list manager.
14932
14933 2006-07-10  Chris Toshok  <toshok@ximian.com>
14934
14935         * ThemeWin32Classic.cs: implement the new row/header painting
14936         approach.  The parent row painting will likely go away and
14937         replaced with label controls, but the rest seems to work ok (and
14938         efficiently).
14939
14940         * Theme.cs: change the way we draw datagrid rows.  we don't draw
14941         the row headers as a block now.  Instead we draw them in the
14942         normal draw-row loop.  Add some calls for drawing parent rows and
14943         relation rows.
14944
14945         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
14946         a default table style.  Set the defaults from ThemeEngine.Current,
14947         not SystemColors.  Fix lots of misc issues with property setters.
14948
14949         * DataGrid.cs: move loads of style information out of this class
14950         as it's being duplicated with DataGridTableStyle.  keep track of a
14951         special DataGridTableStyle for the properties we used to mirror
14952         here.  Switch all the style properties to access this table style
14953         instead of instance fields of this class.  Also add a internal
14954         class to represent parent rows (more needs to be stored here, like
14955         the selection state from the parent table, as well as the
14956         expansion state.)  Also, for datasources with relations, do the
14957         right thing for collapse/expand, and add support for the
14958         navigation/parent row buttons.
14959
14960         Lastly, fix the crash in the 1.1.16 build.
14961
14962         * GridTableStylesCollection.cs: make the explicit interface
14963         implementations call the class's methods as opposed to duplicating
14964         them.
14965
14966         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
14967         0 so the text doesn't jump around when we move the cursor.
14968
14969 2006-07-10  Jackson Harper  <jackson@ximian.com>
14970
14971         * TextBoxBase.cs:
14972         * ListBox.cs: Match MS's ToString (this makes debugging focus
14973         stuff infinitely easier).
14974
14975 2006-07-10  Jackson Harper  <jackson@ximian.com>
14976
14977         * Control.cs (SelectNextControl): When checking the control's
14978         parent use this instead of ctrl.parent so that null can be passed
14979         to SelectNextControl. (I have unit tests for this).
14980         - Remove unused var.
14981
14982 2006-07-10  Chris Toshok  <toshok@ximian.com>
14983
14984         * CurrencyManager.cs: correct one regression, the removal of the
14985         finalType field.  Also, add a MonoTODO on CanAddRows, implement
14986         Refresh() correctly, and fix some event emission in
14987         ListChangedHandler.
14988
14989 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
14990
14991         * FileDialog.cs: Don't use brackets for new folders if they exist
14992           under *nix. Instead use -(number of existing folders +1).
14993
14994 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
14995
14996         * FileDialog.cs:
14997           - Fixed really nasty bug #78771
14998           - Don't block the whole GUI when reading directories with a lot of
14999             entries. Use an other thread instead and call BeginInvoke to
15000             update the ListView in MWFFileView
15001
15002 2006-07-07  Chris Toshok  <toshok@ximian.com>
15003
15004         * Control.cs (Dispose): release any Capture when disposing.
15005
15006 2006-07-07  Chris Toshok  <toshok@ximian.com>
15007
15008         * LinkLabel.cs (Select): if we chain up to the parent, set
15009         focused_index to -1 so we'll search for the first available link
15010         the next time the user tabs into us.  Also, if the direction is
15011         backward and focused_index == -1, start the search from the last
15012         element.
15013
15014 2006-07-07  Chris Toshok  <toshok@ximian.com>
15015
15016         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
15017         is beyond the end of the text, don't do anything.
15018         (CreateLinkPieces): set our ControlStyles.Selectable based on
15019         whether or not we have any links.
15020         (Link.Invalidate): use a loop instead of foreach.
15021         (Link.set_Start): null out owner.sorted_links so it'll be
15022         recreated by CreateLinkPieces.
15023
15024 2006-07-06  Chris Toshok  <toshok@ximian.com>
15025
15026         * LinkLabel.cs: revert the SetStyle change.
15027
15028 2006-07-06  Chris Toshok  <toshok@ximian.com>
15029
15030         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
15031         (OnEnableChanged): s/Refresh/Invalidate
15032         (OnGotFocus): if we have a focused index already, refocus it (so
15033         if we mouse out/in to the window it'll focus the right link).
15034         (OnKeyDown): move the tab handling out of here.
15035         (OnLostFocus): don't set focused_index to -1, so we can refocus it
15036         when we lose focus.
15037         (OnMouseDown): don't Capture here - Control handles it.  Also,
15038         focus the active link.
15039         (OnMouseUp): don't deal with Capture.
15040         (OnPaintBackgroundInternal): remove.
15041         (OnTextAlignChanged): CreateLinkPieces before calling the
15042         superclass's method.
15043         (OnTextChanged): call CreateLinkPieces before calling superclass's
15044         method.
15045         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
15046         move around.
15047         (Select): implement this, moving the selection between different
15048         links, and call parent.SelectNextControl if we don't have another
15049         link to focus in the given direction.
15050         (CreateLinkPieces): call Invalidate instead of Refresh.
15051         
15052 2006-07-06  Chris Toshok  <toshok@ximian.com>
15053
15054         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
15055         new LinkLabel internals.
15056
15057         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
15058         over pieces looking for active/focused/etc links.  also, deal with
15059         runs of text (and links) with embedded \n's in them, and use
15060         MeasureCharacterRanges instead of MeasureString to figure out the
15061         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
15062         two-step.
15063
15064 2006-07-04  Jackson Harper  <jackson@ximian.com>
15065
15066         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
15067         XKB or key auto repeat, do it manually.  Without key auto repeat,
15068         when a key is held down we get key press, key release, key press,
15069         key release, ... with auto repeat we get key press, key press, key
15070         press ..., and then a release when the key is actually released.
15071
15072 2006-07-03  Jackson Harper  <jackson@ximian.com>
15073
15074         * TabControl.cs:
15075         * ThemeWin32Classic.cs: Tabs do not obey normal background color
15076         rules, they are always control color regardless of the background
15077         color.
15078
15079 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
15080
15081         * FileDialog.cs: Added internal class MWFConfig.
15082           Removed Registry support and replaced it with support for the new
15083           MWFConfig class. See MWFConfig comments for more information.
15084
15085 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
15086
15087         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
15088           rectangle. Added some patches from eno from bug #78490 and fixed
15089           the arrow position for small up and down CPDrawScrollButtons.
15090
15091 2006-06-30  Jackson Harper  <jackson@ximian.com>
15092
15093         * InternalWindowManager.cs: Remove some debug code.
15094         * Form.cs: When an MdiParent is set to null, the window is
15095         "detatched" and becomes a normal window.
15096         * MdiClient.cs: Don't bring the new child form to the front until
15097         it is activated (setting it as active does this), this makes the
15098         previously active forms titlebar get redrawn as inactive.
15099
15100 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
15101
15102         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
15103           with later controls
15104
15105 2006-06-29  Mike Kestner  <mkestner@novell.com>
15106
15107         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
15108         arrow in keynav state.  Fixes #78682.
15109
15110 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
15111
15112         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
15113           order (fixes #78393)
15114
15115 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
15116
15117         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
15118           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
15119           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
15120           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
15121           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
15122           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
15123           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
15124           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
15125           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
15126           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
15127           enumerations (FlagsAttribute, SerializableAttribute, added/removed
15128           values)
15129
15130 2006-06-28  Mike Kestner  <mkestner@novell.com>
15131
15132         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
15133
15134 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
15135
15136         * PropertyGrid.cs,
15137           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
15138           item lines from other area (It also makes BackColor consistent and
15139           compatible with .NET). Fixed bug #78564.
15140
15141 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
15142
15143         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
15144         Patch from Eno for #78555.
15145
15146 2006-06-27  Chris Toshok  <toshok@ximian.com>
15147
15148         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
15149
15150         * DataGridColumnStyle.cs: same.
15151
15152         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
15153         
15154         * DataGridDrawingLogic.cs: nuke.
15155
15156 2006-06-27  Chris Toshok  <toshok@ximian.com>
15157
15158         * DataGridTableStyle.cs: clean up the constructors, and build the
15159         list of child relations for this table.  I have no idea if this is
15160         where we should be doing it (it probably isn't), but since we're
15161         already iterating over the properties..
15162
15163         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
15164         struct and array for keeping track of row information, similar to
15165         what's shown in a hack on
15166         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
15167
15168         * Theme.cs: be consistent about the naming of DataGrid methods,
15169         prefering ColumnWidths and RowHeights over columnsWidths and
15170         RowsHeights.
15171
15172         * ThemeWin32Classic.cs: same, and also add support for variable
15173         sized rows (and the +/- expansion icons for related rows).
15174
15175 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
15176
15177         * TextBoxBase.cs: Applied Eno's patch from #78660
15178
15179 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
15180
15181         * Form.cs (ScaleCore): We don't want to scale our form if it's
15182           state is minimized or maximized, but we still need to scale our
15183           child windows. Also, added try/finally block to ensure layout
15184           gets reset (Fixes #78697)
15185
15186 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
15187
15188         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
15189
15190 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
15191
15192         * Form.cs: Fixed c+p error and added check to resize form if minimum
15193           size is bigger than current size (Fixes #78709)
15194
15195 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
15196
15197         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
15198
15199 2006-06-26  Mike Kestner  <mkestner@novell.com>
15200
15201         * ComboBox.cs: only do Keypress handling in the combo when there  
15202         are items in the collection. Fixes #78710.
15203
15204 2006-06-26  Chris Toshok  <toshok@ximian.com>
15205
15206         * Binding.cs: make this work bi-directionally.  also, clear up
15207         other mixups between Push/Pull Data (e.g. we're supposed to pull
15208         data when validating).
15209
15210         * BindingManagerBase.cs: trim some fully qualified collection
15211         types.
15212
15213         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
15214
15215 2006-06-23  Chris Toshok  <toshok@ximian.com>
15216
15217         * PropertyManager.cs: It appears (according to the unit tests)
15218         that PropertyManager doesn't use
15219         PropertyDescriptor.AddValueChanged to track propery value changes
15220         in its datasource, but uses the same scheme as Binding, where it
15221         looks for a <Property>Changed event and binds to it.
15222
15223         Also, according to the docs, IsSuspended always returns false for
15224         a property manager with a non-null datasource.
15225
15226 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
15227
15228         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
15229           need to update the actual DialogResult. (Fixes #78613)
15230
15231 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
15232
15233         * Form.cs (ShowDialog): Release any captures before running the
15234           new message pump (fixes #78680)
15235
15236 2006-06-22  Mike Kestner  <mkestner@novell.com>
15237
15238         * ListView.cs: Layout column widths properly in details mode even 
15239         if HeaderStyle.None is set.  Fixes #78691.
15240
15241 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
15242
15243         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
15244
15245 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
15246
15247         * Control.cs (ContainsFocus): Using new driver method to get focused
15248           window, instead of trying to use internal tracking var, which can
15249           recursion issues (Fixes #78685)
15250         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
15251           XplatUIWin32.cs: Added GetFocus method to return focused window
15252
15253 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15254
15255         * ColorDialog.cs: when the mouse button is pressed inside the color
15256         matrix, don't let the cursor move out of it until the button is
15257         released, which is the behavior on windows. Changed 'colours' by
15258         'colors' to use the same word consistently.
15259
15260 2006-06-21  Chris Toshok  <toshok@ximian.com>
15261
15262         * DataGrid.cs: add in some basic navigation stuff (navigating to a
15263         child relation and back, using a stack).  Also, remove
15264         GetDataSource and the code that calls it - it's not needed.  Also,
15265         track CurrencyManager.ListName's removal.
15266
15267 2006-06-21  Chris Toshok  <toshok@ximian.com>
15268
15269         * CurrencyManager.cs: push some of the original type checking from
15270         BindingContext.CreateBindingManager to here, and remove some of
15271         the finalType stuff.  Need more tests to make sure I've got the
15272         ListName part right, and we might need more in SetDataSource.
15273
15274         * PropertyManager.cs: add a ctor that takes just the datasource,
15275         and no property name.  Make SetDataSource work with a null
15276         property_name, and make Current return the data_source if the
15277         property descriptor is null.  this makes 'string foo = "hi";
15278         BindingContext[foo].Current' return "hi" as it should.
15279
15280         * RelatedCurrencyManager.cs: make this code more generic - there's
15281         no reason the parent manager has to be CurrencyManager, and
15282         there's no reason to pass the DataRelation.  It suffices to use a
15283         BindingManagerBase and PropetyDescriptor.
15284
15285         * RelatedPropertyManager.cs: make a similar change here.
15286         
15287         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
15288         flower I knew it could be.
15289
15290 2006-06-20  Chris Toshok  <toshok@ximian.com>
15291
15292         * PropertyManager.cs: the PropertyChangedHandler is invoked when
15293         data in the source has changed and we need to update the control,
15294         so s/PullData/PushData.
15295
15296         * CurrencyManager.cs: Refresh is meant to update the control from
15297         data in the datasource.  So, s/PullData/PushData.
15298
15299         * BindingContext.cs: add more ugliness (we weren't handling the
15300         case where data_source = DataTable and data_member = column_name).
15301
15302         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
15303         from the perspective of the datasource.  PullData pulls from the
15304         control, PushData pushes to the control.
15305
15306 2006-06-20  Chris Toshok  <toshok@ximian.com>
15307
15308         * BindingContext.cs: rewrite the CreateBindingManager code to
15309         handle navigation paths more or less properly.  This could
15310         definitely stand some more work, in particular to push the
15311         recursion up to the toplevel.  But that relies on fixes in other
15312         places (System.Data comes to mind).
15313
15314         Also, move to a flat hashtable (and encode the twolevel nature of
15315         the dictionary into the hash key).  This lets us implement the
15316         IEnumerable.GetEnumerator method.
15317
15318         * RelatedCurrencyManager.cs: new class.  Update our view based on
15319         our relation and our parent CurrencyManager's position.
15320
15321         * CurrencyManager.cs: split out some logic from the ctor into
15322         SetView, so it can be called from the new RelatedCurrencyManager
15323         subclass.
15324
15325         * RelatedPropertyManager.cs: new class.  Update our datasource
15326         based on the position of our parent CurrencyManager.
15327
15328         * PropertyManager.cs: split out some logic from the ctor into
15329         SetDataSource, so it can be called from the new RelatedDataSource
15330         subclass.  Also, make the Current getter return the value
15331         of the PropertyDescriptor, not the data_source.
15332
15333         * Binding.cs: no need to duplicate the string splitting code here.
15334
15335 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
15336
15337         * Control.cs:
15338           - set_Enabled: OnEnabledChanged is not called if the inherited state 
15339             of the control is not altered, even though  we might be changing the
15340             internal state of the control (#78458)
15341           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
15342             OnEnabledChanged, to allow easy altering of any child window state
15343           - OnEnabledChanged: Added code to enable/disable driver window state
15344           - OnParentEnabledChanged: Instead of firing the event, call 
15345             OnEnabledChanged, which will fire the event and also a) set driver
15346             window state and pass the enabled state to any grandchildren (#78458)
15347
15348 2006-06-19  Jackson Harper  <jackson@ximian.com>
15349
15350         * InternalWindowManager.cs: We don't set the cursor explicitly
15351         thats done via the response to NCHITTESTs.
15352         - Don't need to adjust for titlebar heights anymore, the
15353         coordinates are coming in the correct coordinates now (see peters
15354         last patch).
15355
15356
15357 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
15358
15359         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
15360           being translated relative to whole window, instead of client window.
15361           That caused broken offsets on mouseclick (and caused gas for our
15362           InternalWindowManager)
15363
15364 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
15365
15366         * TextControl.cs:
15367           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
15368           - Undo(): Added replay of cursor move on DeleteChars action; added
15369             calling Undo() again if a recorded cursor move is invalid (to
15370             ensure that some action is performed on Undo)
15371         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
15372
15373 2006-06-16  Jackson Harper  <jackson@ximian.com>
15374
15375         * MdiClient.cs: Instead of just sizing maximized windows when
15376         there is a resize we also have to adjust the Y of minimized
15377         windows, so they stay pinned to the bottom of the mdi container.
15378         - Eliminate separate tracking of the active control, we can just
15379         get this from the controls collection.
15380         - Paint the decorations for the newly activated titlebar so we get
15381         a pretty blue bar.
15382         * InternalWindowManager.cs:
15383         * ThemeWin32Classic.cs: Minimized windows get all three buttons
15384         even if they are a tool window.
15385         
15386 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
15387
15388         * TextControl.cs (Undo): Handle non-existent cursor locations in the
15389           undo buffer, these can happen when text was deleted and the cursor
15390           was recorded first. Since we will also have a recorded cursor
15391           after the delete this is not an issue. (Fixes #78651)
15392
15393 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
15394
15395         * AccessibleObject.cs: Remove dependence on Control.is_selected;
15396           instead properly track control states internally (allows us to
15397           remove is_selected from Control)
15398
15399 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15400
15401         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
15402         whose width is not a multiple of 8.
15403
15404 2006-06-13  Jackson Harper  <jackson@ximian.com>
15405
15406         * MdiClient.cs:  Only maximize the next child if the current one
15407         is maximized.
15408
15409 2006-06-13  Chris Toshok  <toshok@ximian.com>
15410
15411         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
15412         modified.  Also, guard against grid or grid_drawing being null in
15413         Invalidate.
15414
15415         * DataGrid.cs: Reformat tons of getters/setters.  In the
15416         DataMember setter, just call SetNewDataSource instead of
15417         duplicating some of its functionality.  In SetNewDataSource, don't
15418         check ListManager for null, since the property getter creates the
15419         object if needed.
15420
15421         * DataGridTableStyle.cs: don't set TableStyle or call
15422         SetDataGridInternal on the column here, it's done in
15423         GridColumnStylesCollection.Add.
15424
15425         * GridColumnStylesCollection.cs: fix all the explicit interface
15426         implementations to just call our methods.  Nuke AddInternal() and
15427         move the body of it to Add().  Also, add a call to
15428         column.SetDataGridInternal to Add().
15429
15430         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
15431         base()+duplicate code.  Also, use the Format property instead of
15432         format to generate an Invalidate ala MS.  Lastly, create the
15433         textbox here, unconditionally.
15434         (set_Format): call Invalidate.
15435         (get_TextBox): no need to call EnsureTextBox.
15436         (Commit): remove the message box.
15437         (Edit) remove the call to EnsureTextBox.
15438         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
15439         (EnterNullValue): no need to check textbox for null.
15440         (HideEditBox): no need to check textbox for null.
15441         (SetDataGridInColumn): add the textbox to the grid's controls.
15442         (EnsureTextBox): nuke.
15443         
15444 2006-06-13  Jackson Harper  <jackson@ximian.com>
15445
15446         * MdiWindowManager.cs: Hook up to the maximized menus paint event
15447         and redraw the buttons when needed. Unhook when the window is
15448         unmaximized.
15449         * MainMenu.cs: Add an internal Paint event, the mdi window manager
15450         needs this so that it can redraw its buttons when the menu is
15451         repainted.
15452         * InternalWindowManager.cs:
15453         * Form.cs: The method order has changed for DrawMaximizedButtons,
15454         so that it can be a PaintEventHandler.
15455         
15456 2006-06-13  Jackson Harper  <jackson@ximian.com>
15457
15458         * MdiClient.cs: When we close a maximized mdi window, the next mdi
15459         window is activated and maximized, even if it wasn't before.
15460         - When  a new window is activated repaint the decorations of the
15461         old one, so that it no longer has the Active "look" (the blue
15462         titlebar).
15463         * InternalWindowManager.cs: Open up CreateButtons to base classes
15464         so they can recreate the buttons on state changes.
15465         - If a window is maximized give it all three buttons
15466         * MdiWindowManager.cs: Create the titlebar buttons when the state
15467         is changed, this is needed because a toolwindow will not have all
15468         three buttons until it is maximized.
15469
15470 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
15471
15472         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
15473           Fixed bug #78609.
15474
15475 2006-06-12  Jackson Harper  <jackson@ximian.com>
15476
15477         * KeysConverter.cs: Make sure we handle the Ctrl special case
15478         if its the only key.
15479         
15480 2006-06-12  Jackson Harper  <jackson@ximian.com>
15481
15482         * Theme.cs: Add a method to get the size of a managed window
15483         toolbar button.
15484         * InternalWindowManager.cs: Remove the ButtonSize property, this
15485         should be retrieved from the theme.
15486         * MdiWindowManager.cs: Get the button size from the theme
15487         * ThemeWin32Classic.cs: Make the method to get the managed window
15488         titlebar button size public.
15489         - Handle the different button sizes of maximized toolwindows
15490         (should match any maximized window).
15491         - Get the titlebar height from the theme, not the WM (which gets
15492         it from the theme).
15493
15494 2006-06-12  Jackson Harper  <jackson@ximian.com>
15495
15496         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
15497         event down to the mdi window manager.
15498         - Expose some extra stuff to base classes
15499         - Make sure to end the Capture on an NC Mouse up, so that we can
15500         get double clicks properly, and the sizing doens't stick.
15501         - When doing PointToClient contain it in the workable desktop
15502         area, this prevents windows from changing size when the cursor is
15503         pulled outside of the working area while sizing.
15504         * MdiWindowManager.cs: When we get a double click maximize the
15505         window.
15506         - Reset the cursor after handling mode changes.
15507
15508 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
15509
15510         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
15511           current desktop, instead of just assuming a 0, 0 origin. This
15512           is needed for our internal window manager, to know the top
15513           margin of the desktop
15514
15515 2006-06-12  Chris Toshok  <toshok@ximian.com>
15516
15517         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
15518         we need this to get rid of the selected background in the bool
15519         column.
15520         (CancelEditing): move the ConcedeFocus call to above the Abort
15521         call.  Also, set is_changing to false and invalidate the row
15522         header if we were changing before.
15523         (ProcessKeyPreviewInternal): remove, since noone outside this
15524         class calls it anymore.  Roll the code into ProcessKeyPreview.
15525         (EndEdit): remove the internal version.
15526         (InvalidateCurrentRowHeader): make private.
15527
15528         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
15529         Keys.Escape handling (and with it the last call to
15530         DataGrid.EndEdit from outside the class.)
15531
15532
15533 2006-06-12  Chris Toshok  <toshok@ximian.com>
15534
15535         * DataGridTextBox.cs (.ctor): isedit defaults to false.
15536         (OnKeyPress): set isedit to true.
15537         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
15538         already handled by the grid.
15539
15540         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
15541         right.  ugh.
15542         (set_DataSource): SetDataSource always returns true, so stop
15543         putting it in an if statement.
15544         (EndEdit): get rid of some {}'s
15545         (ProcessGridKey): return true in case Keys.Escape.
15546         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
15547         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
15548         PositionChanged, stopped connecting to CurrentChanged.
15549         (GetDataSource): simplify this a bunch.
15550         (SetDataSource): change return type from bool to void.
15551         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
15552         to this, and make sure we don't set ListManager.Position inside
15553         set_CurrentCell.
15554         (OnListManagerItemChanged): if we're passed an actual index,
15555         redraw that row.
15556
15557         * CurrencyManager.cs (set_Position): don't call PullData here.
15558
15559 2006-06-09  Jackson Harper  <jackson@ximian.com>
15560
15561         * TreeNode.cs:  Recalculate the visible order before doing the
15562         Expand/Collapse Below calls, because those calls generate an
15563         expose.
15564         - Reduce calls to the TreeView property, which is mildly expensive
15565         by using a local var.
15566         * Form.cs: Layout the MDI child windows when creating the parent
15567         form.
15568         - Don't use the internal constructor anymore
15569         * MdiClient.cs: use the parent form width/height (if available)
15570         when laying out the child windows, we do this because the
15571         mdiclient isn't docked yet when the initial layout is done.
15572         - Don't need an internal constructor anymore.
15573
15574 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15575
15576         * FileDialog.cs: handle access errors when trying to create a folder
15577         or changing to a directory. No need to initialize out parameters.
15578
15579 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
15580
15581         * FileDialog.cs: Append a number when creating a new folder if the
15582           folder already exists (use parenthesis instead of square brackets)
15583
15584 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
15585
15586         * FileDialog.cs:
15587           - Disabled registry support for windows and added better registry
15588             error checking for other systems (need to investigate why it
15589             works perfectly on my system)
15590           - If a folder already exist show an error MessageBox instead of
15591             trying to create an indexed name.
15592           - Fixed a non intentional typo.
15593
15594 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15595
15596         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
15597
15598 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
15599
15600         * FileDialog.cs: When creating a new folder don't crash if the
15601           folder already exists.
15602
15603 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
15604
15605         * FileDialog.cs: Allmost a complete rewrite.
15606           - added a "virtual" file system that handles the differences
15607             between unix and windows file systems (especially the directory
15608             structure). Moved most of the directory and file handling code
15609             into the vfs.
15610             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
15611             UnixFileSystem and FSEntry.
15612           - Recently used folder/directory, size, location and used file names
15613             (file name ComboBox) are now stored in the registry and get read
15614             before the dialog shows up (fixes part 6 of bug #78446).
15615           - Creation of new folders/directories is now possible (context menu
15616             or ToolBar). Added TextEntryDialog for this that fills in the gap
15617             until ListView.LabelEdit works.
15618           - Fixed cursor handling (bug #78527) and focus handling for
15619             PopupButtonPanel
15620           - Various "Search in" ComboBox enhancements. The content of the
15621             dropdown listbox now almost matches ms.
15622           - Changed the behaviour when the user switches to SpecialFolder
15623             Recent to show the ListView in View.Details.
15624           - Beside using the ToolBar to change the View property of the
15625             file ListView it is now possible to use the context menu too.
15626
15627 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
15628
15629         * ComboBox.cs: Don't create a new ObjectCollection when an item
15630           gets inserted. Just insert the item in the existing object_items
15631           ArrayList.
15632
15633 2006-06-08  Jackson Harper  <jackson@ximian.com>
15634
15635         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
15636         that the treeview and root node checks are done also, this fixes a
15637         regression i caused in the unit tests.
15638
15639 2006-06-07  Wade Berrier <wberrier@novell.com> 
15640
15641         * RichTextBox.cs: More ISO8859-1 -> unicode
15642
15643 2006-06-07  Mike Kestner  <mkestner@novell.com>
15644
15645         * ComboBox.cs : use items to hold highlight/selection so that
15646         collection insertions don't require synchronization.
15647
15648 2006-06-07  Jackson Harper  <jackson@ximian.com>
15649
15650         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
15651         routine.  We now always keep the sized edge at the cursor instead
15652         of computing movement and adjusting rects.  There is one buglet
15653         with this method though when the cursor is moved over area that
15654         the window can not expand too (such as the toolbars on the desktop).
15655
15656 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15657
15658         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
15659         here. Fixes crash on startup in AlbumSurfer.
15660
15661 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
15662
15663         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
15664           values
15665
15666 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15667
15668         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
15669         statement to avoid calling XNextEvent which will block if another thread
15670         took the event that we were expecting. Fixes bug #78605.
15671
15672 2006-06-07  Mike Kestner  <mkestner@novell.com>
15673
15674         * ListView.cs : isolated checkbox clicking from the selection logic.
15675         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
15676
15677 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15678
15679         * Form.cs: Check that the value passed to Form.DialogResult
15680         is a valid enum value.
15681
15682 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15683
15684         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
15685         Computer'. Clicking it in the network view goes to 'My Computer'.
15686         Added CIFS filesystem type. Display the mount point of filesystems.
15687         Avoid duplicate mount points (happens for me with CIFS);
15688
15689 2006-06-06  Jackson Harper  <jackson@ximian.com>
15690
15691         * InternalWindowManager.cs: Draw the maximized windows buttons
15692         when resizing.
15693
15694 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15695
15696         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
15697         all other dialogs. Fixes bug #78585.
15698
15699 2006-06-06  Mike Kestner  <mkestner@novell.com>
15700
15701         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
15702         Only invalidate checkbox on checkstate changes to avoid flicker.
15703         * ListBox.cs : avoid unselect/select when clicking selected item.
15704         avoid reselection flicker for already multiselected items.
15705         Fixes #78382.
15706
15707 2006-06-06  Jackson Harper  <jackson@ximian.com>
15708
15709         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
15710         the parent form so that the menu is removed if needed.
15711
15712 2006-06-06  Mike Kestner  <mkestner@novell.com>
15713
15714         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
15715         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
15716
15717 2006-06-06  Mike Kestner  <mkestner@novell.com>
15718
15719         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
15720
15721
15722 2006-06-06  Jackson Harper  <jackson@ximian.com>
15723
15724         * Control.cs: Use the property (instead of the field) to get the
15725         default cursor so it is instantiated correctly.
15726         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
15727         resizes so we need to manually repaint the window decorations here.
15728         - Set the titlebar button locations as soon as they are created,
15729         otherwise they are not set correctly on win32.
15730         
15731 2006-06-06  Chris Toshok  <toshok@ximian.com>
15732
15733         * CurrencyManager.cs (set_Position): call PullData before
15734         OnCurrentChanged.
15735         (AddNew): after calling IBindingList.AddNew, update our
15736         listposition, and call OnCurrentChanged/OnPositionChanged (without
15737         calling PullData).
15738         (OnCurrentChanged): remove the call to PullData from here.
15739         (OnItemChanged): remove the call to PushData from here.
15740         (OnPositionChanged): change the test from == null to != null to
15741         match the other methods.
15742         (ListChangedHandler): the grossest part of the patch.  Implement
15743         this such that it passes the unit tests in CurrencyManagerTest and
15744         the output more or less matches that of MS's implementation.
15745  
15746 2006-06-06  Mike Kestner  <mkestner@novell.com>
15747
15748         * ListView.cs : only update check state on single click.
15749         * ThemeWin32Classic.cs : fix focus drawing for details view without
15750         fullrowselect.  Fixes #78454.
15751         * XplatUIX11.cs : fix for double click emission.
15752
15753 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
15754
15755         * PropertyGridView.cs : Applied Atsushi's patch to fix
15756         font dialog bug  (#78197).
15757
15758 2006-06-05  Jackson Harper  <jackson@ximian.com>
15759
15760         * TreeNode.cs: Compute the next node for expanding/collapsing
15761         correctly. We now factor in nodes without a NextNode
15762         correctly. (Fixes somes cases in nunit-gui).
15763         * InternalWindowManager.cs: Set the bounds when updating the
15764         virtual position of a tool window.
15765         
15766 2006-06-05  Chris Toshok  <toshok@ximian.com>
15767
15768         * DataGrid.cs: rename cached_currencymgr to list_manager.
15769         (set_CurrentCell): move SetCurrentCell code here, and clean it up
15770         some.
15771         (CurrentRow, CurrentColumn): single accessors so we can make the
15772         cursor movement code a lot easier to understand.
15773         (CurrentRowIndex): implement this in terms of CurrentRow.
15774         (BeginEdit): clean this up a bit.
15775         (CancelEditing): sort out the is_editing/is_changing/is_adding
15776         stuff a little.
15777         (EndEdit): minor changes.
15778         (OnKeyDown): add a comment about a (most likely) unnecessary
15779         check.
15780         (OnMouseDown): cancel editing when we click on a row header.  And
15781         use the CurrentRow setter, not CurrentCell.
15782         (ProcessDialogKey): directly call ProcessGridKey.
15783         (UpdateSelectionAfterCursorMove): factor out this common block of
15784         code (it's used everywhere that we move the cursor by updating row
15785         or column).
15786         (ProcessGridKey): pretty substantial overhaul.  Use the
15787         CurrentRow/CurrentColumn properties to make the code a lot more
15788         readable.  Only use the CurrentCell property when we have to
15789         modify both row and column at once.  Tab behavior is still broken,
15790         and Delete is untested.
15791         (Select): if we have no selected rows, set selection_start to
15792         @row.
15793         (EditCurrentCell): rename EditCell this.  It was only ever invoked
15794         with CurrentCell as the arg, so drop the arg and rename it.
15795
15796         * DataGridColumnStyle.cs: clean up the constructors a little, and
15797         drop CommonConstructor().
15798
15799         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
15800         actually get notified when the user hits it.
15801         (ProcessKeyMessage): *substantially* simplify this method.
15802         There's no reason (that I can see) for the textbox to be making
15803         calls into the datagrid at all.  Remove all of them but the ones
15804         for Enter handling.  those will take some more work.
15805
15806         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
15807         calling HideEditBox.
15808         (HideEditBox): if we have an active textbox, render it invisible
15809         without causing a re-layout of the datagrid.
15810
15811 2006-06-05  Mike Kestner  <mkestner@novell.com>
15812
15813         * ListView.cs : fix NRE crasher when focuseditem is cleared by
15814         collection changes by resetting it to Items[0].  Fixes #78587.
15815
15816 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15817
15818         * MessageBox.cs: if the height of the text is larger than the icon_size,
15819         use that. Fixes bug #78575.
15820
15821 2006-06-05  Jackson Harper  <jackson@ximian.com>
15822
15823         * TreeView.cs: Fix line drawing when scrolling.  To do this each
15824         node is basically responsible for drawing its entire horizontal
15825         area.  When drawing a node it draws its parent node lines if
15826         needed.
15827         - Adjust the clip area to the viewport rectangle
15828         - Fix Left/Right key handling to match MS. (It expand/collapses
15829         and moves to parents/first child but does not move selection to
15830         sibling nodes).
15831         - Fix SetTop to work with new bound calculation code
15832         - When scrollbars are no longer needed we need to reset scrolling
15833         vars and recalculate the visible order so the redraw is correct
15834         * TreeNode.cs: We can't expand/collapse nodes with no children.
15835
15836 2006-06-03  John Luke  <john.luke@gmail.com> 
15837
15838         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
15839         so the colors work without dev packages
15840         
15841 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
15842
15843         * Control.cs 
15844           - Select: Implemented to just use activate. Seems to match MS 
15845             behaviour closest. Documented to only do actual control walking 
15846             based on it's parameters if in a container control so I moved 
15847             the code there.
15848           - Removed selection check logic from our internal Select() method
15849         * ContainerControl.cs:
15850           - Select: Moved selection logic from Control here, since MS documents
15851             that containers obey the bool arguments. No longer calling base
15852
15853 2006-06-02  Jackson Harper  <jackson@ximian.com>
15854
15855         * TreeView.cs: If the selected node isn't changed when we get
15856         focus update the previously selected node so that we see the
15857         selection box.
15858
15859 2006-06-02  Mike Kestner  <mkestner@novell.com>
15860
15861         * ComboBox.cs: restructure grab and general mouse event handling.
15862         Make the composite control raise mouse events like it was a single
15863         control for leaves/enters/motion/up/down events.  fix dropdown list
15864         coordinate mangling and refactor it into the scrollbar subclass to
15865         reduce code duplication.  Fixes #78282 #78361 and #78457.
15866
15867 2006-06-02  Mike Kestner  <mkestner@novell.com>
15868
15869         * ScrollBar.cs: remove Capture setting/clearing, as it happens
15870         automatically in the Control.WndProc.
15871
15872 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15873
15874         * FileDialog.cs: fix crash when running SharpChess, which sets the
15875         FilterIndex to 2 with only one Filter.
15876
15877 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15878
15879         * ToolBar.cs: add SizeSpecified property.
15880         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
15881         try to figure out our real size, otherwise fallback to what the
15882         container says.
15883
15884 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
15885
15886         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
15887         * Control.cs (WndProc): MS always calls the DefWndProc to pass
15888           up the event
15889
15890 2006-06-01  Mike Kestner  <mkestner@novell.com>
15891
15892         * ListView.cs: revamp the focus management in ListView.  It still
15893         causes churn of LostFocus/GotFocus emissions on clicks, but it's
15894         better than not handling focus at all.  Will revisit when pdb feels
15895         the general focus handling is solid.  Fixes #78526.
15896
15897 2006-06-01  Jackson Harper  <jackson@ximian.com>
15898
15899         * TreeView.cs: Set the default border style in the constructor.
15900         - Move painting to use OnPaintInternal instead of capturing
15901         WM_PAINT, this is the correct way of doing things
15902         - UpdateBelow shouldn't invalidate the scrollbar area
15903         - Cap the top on update below in case the node was above the top
15904         of the viewport rectangle.
15905         - ExpandBelow and Collapse below need to obey Begin/End Update.
15906         * TreeNode.cs: Make is_expanded internal so the treenode
15907         collection can change it without firing the whole event chain.
15908         * TreeNodeCollection.cs: When clearing all the child nodes make
15909         sure to recalc the visible order.
15910         - Improve algo for remove the top node
15911
15912 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
15913
15914         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
15915           SendMessage directly calling window procedures, which in turn might
15916           call SetFocus()
15917
15918 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
15919
15920         * Control.cs: Don't handle WM_SETFOCUS if the same window already
15921           has focus (works around X11 sending a FocusIn after our SetFocus)
15922         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
15923
15924 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
15925
15926         * Mime.cs: Fix for the NET_2_0 build.
15927           NameValueCollection needs StringComparer now.
15928
15929 2006-05-31  Chris Toshok  <toshok@ximian.com>
15930
15931         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
15932         return (via an out parameter) the starting X of the column.
15933         (UpdateVisibleColumn): track change to FromPixelToColumn.
15934         (HitTest): add a ColumnResize case here.
15935         (DrawResizeLine): new function, probably poorly named.
15936
15937         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
15938         only need to keep one reference.
15939         (set_ListManager): same.
15940         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
15941         Also, add support for HitTestType.ColumnResize.
15942         (OnMouseMove): add column resize behavior here, and change the
15943         cursor to the correct one as we move around the datagrid.
15944         (OnMouseUp): terminate the column resize if we're resizing.
15945         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
15946         for the current cell.
15947         (ConnectListManagerEvents): use cached_currencymgr.
15948         (DisconnectListManagerEvents): fill this in, using
15949         cached_currencymgr.
15950         (SetCurrentCell): remove cached_currencymgr_events handling.
15951         (SetDataMember): only call DisconnectListManagerEvents if
15952         cached_currencymgr is != null.
15953         (SetDataSource): same.
15954         (OnListManagerCurrentChanged): cached_currencymgr_events ->
15955         cached_currencymgr.
15956
15957 2006-05-31  Jackson Harper  <jackson@ximian.com>
15958
15959         * BindingManagerBase.cs: Remove somedebug code that creeped into
15960         SVN.
15961         * TreeNode.cs: We get the indent level dynamically right now, so
15962         don't track it as a member.
15963         * TreeNodeCollection.cs: Make sure all nodes added to the list
15964         have parents, treeviews/topnodes setup properly.
15965         - Don't attempt to track indent level.
15966
15967 2006-05-30  Jackson Harper  <jackson@ximian.com>
15968
15969         * BindingContext.cs: Create the currency manager tables here.
15970         This allows us to more easily create null tables (when bad data
15971         members are used), and more easily create related currency
15972         managers.
15973         * CurrencyManager.cs: All the table creation stuff is done by the
15974         binding context now.
15975         - Current should throw an exception if listposition is -1.
15976         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
15977         been bound yet.
15978
15979 2006-05-30  Mike Kestner  <mkestner@novell.com>
15980
15981         * ListView.cs: allow reexpansion of zero-width column headers.
15982         Fixes #78528.
15983
15984 2006-05-28  Chris Toshok  <toshok@ximian.com>
15985
15986         * CurrencyManager.cs (get_Current): after the late binding
15987         listposition = -1 fix, we need to guard against it here and return
15988         null, otherwise we raise an exception (which is swallowed
15989         elsewhere, and breaks datagrid databinding.)
15990
15991 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
15992
15993         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
15994           than WM_SYSKEY, don't throw if get something unexpected (#78507)
15995
15996 2006-05-26  Jackson Harper  <jackson@ximian.com>
15997
15998         * ControlPaint.cs:
15999         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
16000         values, it's faster and it's all we care about (we don't care if
16001         the names aren't equal).
16002         * KeyboardLayouts.cs: Eliminate some dead code.
16003         - Lazy init things
16004         * X11Keyboard.cs: Lazy init keyboard detection.
16005         - Cleanup access modifiers a little.
16006
16007 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
16008
16009         * XplatUIX11.cs: Once again, attempting to get layout just right.
16010
16011 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
16012
16013         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
16014           the sizes of each link section, that will result in sizes that
16015           match DrawString's layout (Fixes #78391)
16016
16017 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
16018
16019         * FileDialog.cs: If AddExtension property is true autocomplete the
16020           extensions in SaveFileDialog correctly. Fixes bug #78453.
16021           Set MyNetwork and MyComputer to "C:\" for windows. This should
16022           fix part 8 of bug #78446 for now.
16023
16024 2006-05-26  Chris Toshok  <toshok@ximian.com>
16025
16026         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
16027         invalidate the current row header if we need to, but presumably
16028         we'll invalidate the row corrsponding to the bounds or
16029         editingControl.
16030         (GridHScrolled): switch back to this method, as it's part of the
16031         public api.  *sigh*.
16032         (GridVScrolled): same.
16033         (OnMouseWheel): hack up something that more or less works.  Call
16034         GridHScrolled/GridVScrolled directly, instead of duplicating much
16035         of their code here.
16036         (EnsureCellVisibility): reinstate a bunch of this code, since we
16037         can't just set the scrollbar Value and expect to do all the work
16038         in the ValueChanged handler.  Also, Call Update() after scrolling
16039         in one direction so the other XplatX11.ScrollWindow call has the
16040         proper stuff in the proper places.
16041         (EditCell): set is_editing to true before calling .Edit.
16042
16043         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
16044         don't bother comparing first.
16045         (OnKeyPress): call grid.ColumnStartedEditing before calling
16046         base.OnKeyPress.  this will set is_changing and invalidate the row
16047         header if necessary.
16048         (ProcessKeyMessage): for WM_CHAR messages, call
16049         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
16050         and WM_KEYDOWN.
16051         
16052         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
16053         it's done in the DataGrid.
16054         (NextState): call grid.ColumnStartedEditing, which takes care of
16055         invalidating the row header (and setting is_changing).
16056
16057         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
16058         here.  it's done in the DataGrid.
16059
16060 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16061
16062         * Control.cs: allow changing the cursor when the mouse position is
16063         out of bounds but Capture is set.
16064         * LinkLabel.cs: handle the case when the mouse button is pressed on the
16065         linklabel but released somewhere else.
16066
16067 2006-05-25  Jackson Harper  <jackson@ximian.com>
16068
16069         * TreeView.cs: When we get focus if there is no selected node make
16070         it the top node
16071         - Remove some uneeded setup code from Draw.
16072         * TreeNodeCollection.cs: If the tree doesn't have a top node when
16073         a new node is inserted make the new node the top.
16074         * XplatUIX11.cs:
16075         * Timer.cs: Use Utc time so that no local time zone stuff needs to
16076         be used (should be faster).
16077         
16078 2006-05-25  Chris Toshok  <toshok@ximian.com>
16079
16080         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
16081         problem with the last commit.
16082
16083 2006-05-25  Chris Toshok  <toshok@ximian.com>
16084
16085         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
16086         need the invalidate call here, while scrolling right-to-left via
16087         the left arrow key (i.e. moving the editing cell while scrolling).
16088
16089         * DataGrid.cs (.ctor): remove the initialization of
16090         ctrl_pressed/shift_pressed.  We no longer track them using key
16091         up/down handlers, but by using Control.ModifierKeys.  Also, switch
16092         to using ValueChanged handlers on the scrollbars instead of
16093         Scrolled event handlers.  This simplifies a bunch of the scrolling
16094         code.
16095         (GridHValueChanged): rename from GridHScrolled, and change it to
16096         work with the new event args.
16097         (GridVValueChanged): same.
16098         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
16099         (OnMouseWheel): actually scroll the datagrid.  Don't change the
16100         selected cell.
16101         (ProcessGridKey): correct all the keyboard navigation stuff I
16102         could find.  Ctrl up/down/left/right/home/end work now.
16103         (EnsureCellVisibility): correct method name spelling.  Also,
16104         simplify this a touch by not explicitly calling the
16105         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
16106         scrollbar value.
16107         (OnKeyUpDG): no need for this method now.
16108         
16109 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16110
16111         * LinkLabel.cs: display the OverrideCursor when hovering the label.
16112         Fixes bug #78392.
16113
16114 2006-05-25  Chris Toshok  <toshok@ximian.com>
16115
16116         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
16117         r61019.
16118
16119 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
16120
16121         * Application.cs: Moved setting of is_modal and closing to before
16122           we create the control, to allow the event handlers called as a
16123           result of creation affect closing. Also removed Gonzalo's previous
16124           change to setting DialogResult, the behaviour has been moved to 
16125           Form.ShowDialog()
16126         * Form.cs: 
16127           - ShowDialog(): Removed explicit creation of the form, let RunLoop
16128             handle it instead
16129           - ShowDialog(): If no dialog result is set, we need to return Cancel
16130           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
16131             the close is cancelled
16132
16133 2006-05-25  Jackson Harper  <jackson@ximian.com>
16134
16135         * StatusBar.cs: We only need to update the sizes of the other
16136         panels when we have auto size contents.  Also we are only updating
16137         the contents of the panel, not the borders, so compensate for the
16138         border width (TODO: get this width from the theme somehow).
16139         * TreeView.cs: Scrollable is true by default
16140         - Use invalidate instead of refresh where needed
16141         - Factor the scrollable value into scrollbar updating
16142         - Update the scrollbars if the Scrollable property is altered
16143         - Update the selected node if its ImageIndex is changed
16144         - Handle null nodes in UpdateNode (mainly so we don't have to
16145         check if selected is null when updating it
16146         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
16147         are factored into the visible count
16148         - Use VisibleCount for clarity in the code
16149         - When the font is changed we need to recurse through all the
16150         nodes and invalidate their sizes
16151         
16152 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16153
16154         * Application.cs: set the DialogResult to fixed when the main form is
16155         hidden or destroyed while being modal.
16156
16157 2006-05-25  Miguel de Icaza  <miguel@novell.com>
16158
16159         * Theme.cs: Use Tangoified messagebox icons. 
16160
16161         (GetSizedResourceImage): Also cope with width = 0 and do not
16162         trigger a warning in that case (0 means "give me your icon from
16163         the resouce, no special size needed).
16164
16165 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
16166
16167         * Application.cs: Leave runloop if the the main modal form is 
16168           hidden (fixes #78484)
16169
16170 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
16171
16172         * BindingContext.cs : reject null datasource in Contains() and
16173           Item[].
16174         * CurrencyManager.cs : check data_member validity when data_source
16175           is dataset. When it is late binding, the initial position is -1.
16176
16177 2006-05-24  Jackson Harper  <jackson@ximian.com>
16178
16179         * TreeNodeCollection.cs: Dont't recalculate the visible order on
16180         inserted nodes that aren't visible.  This changes the
16181         max_visible_order which confuses scrollbar settings.
16182         - Use the enumerator to get the prev node instead of duplicating
16183         code.
16184         * TreeView.cs: Use new method for setting scrollbar values
16185         - Don't set the bounds every time the scrollbar is updated
16186         - When updating below the root node use an invalidate instead of a
16187         refresh to prevent the child controls (scrollbars) from being
16188         refreshed. (UpdateBelow still needs to be reworked anyways).
16189         - Reenable SetBottom now that visible orders are set correctly,
16190         added some debug code incase we ever get bad values there again.
16191         - Set the scrollbar max to 2 less then the max value, this
16192         compensates for the max value being one above the node count, and
16193         for scrollbars adding one extra "notch".
16194         - When drawing image nodes if there is an imagelist we draw the
16195         first image in the list if the supplied image index is out of the
16196         image list's bounds.
16197         
16198 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
16199
16200         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
16201           we receive a size change from the WM (Fixes #78503)
16202
16203 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
16204
16205         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
16206           rectangle (Fixes #78501)
16207
16208 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
16209
16210         * ButtonBase.cs: 
16211           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
16212             as a bitfield.
16213           - Fixed MouseMove to no longer switch pressed state unless the left
16214             mouse button is pressed. Atsushi provided the original patch (#78485)
16215           
16216 2006-05-24  Jackson Harper  <jackson@ximian.com>
16217
16218         * ScrollBar.cs: New internal methods that allow us to change a
16219         couple values on the scrollbar (the most common case is maximum
16220         and large change) without getting multiple invalidates.
16221
16222 2006-05-24  Chris Toshok  <toshok@ximian.com>
16223
16224         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
16225         (Edit): save off the original state in oldState, and set
16226         grid.is_editing to true.
16227         (OnKeyDown): abort editing if escape is pressed.  also, call
16228         NextState if space is pressed.
16229         (OnMouseDown): call NextState.
16230         (NextState): factor out shared code from OnKeyDown and OnMouseDown
16231         here.  Also, only invalidate the row header once (on the initial
16232         is_changing switch) to save on redraws.
16233
16234 2006-05-24  Chris Toshok  <toshok@ximian.com>
16235
16236         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
16237         if the value in the cell is different than it was before.  This
16238         keeps us from triggering a layout when we move around a datarid
16239         with a highlighted cell.
16240         (Edit): suspend layout when creating/positining the text box, and
16241         resume passing false so we don't ever actually re-layout.
16242         (ReleaseHostedControl): same.
16243         (EnsureTextBox): reformat slightly, and set WordWrap to false.
16244
16245         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
16246         control-key sequences should go to the datagrid - remove that
16247         lock.  Also, modify the conditions under which we move between
16248         cells when moving the cursor within a cell, and remove the "this"
16249         and "base" from field accesses.  We weren't even consistent, given
16250         they all were in the base class.
16251
16252 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
16253
16254         * Binding.cs : (.ctor)
16255           An obvious NRE fix for BindingTest.CtorNullTest().
16256
16257 2006-05-23  Chris Toshok  <toshok@ximian.com>
16258
16259         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
16260         them between lines.  This fixes some quirks editing cells in the
16261         datagrid.
16262
16263 2006-05-23  Jackson Harper  <jackson@ximian.com>
16264
16265         * TreeView.cs: Use begin/end update when doing expand/collapse all
16266         so that we don't get flicker on the scrollbar.
16267
16268 2006-05-23  Jackson Harper  <jackson@ximian.com>
16269
16270         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
16271         treenode calculations to be independant of the painting code. To
16272         do this nodes track a visible order which is calculated by the
16273         treeview.
16274         - Call new methods for expanding/collapsing nodes.  These methods
16275         use scrollwindow so we don't have to update everything below the
16276         node.
16277         * TreeView.cs: Refactored drawing and scrolling code.  We don't
16278         need to update nodes when drawing anymore or calculate scrollbar
16279         stuff.
16280         - Added new methods for expanding/collapsing nodes. These methods
16281         use ScrollWindow so as to not have to redraw all the nodes below.
16282         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
16283         we add/remove nodes or sort.
16284         - Handle removing the selected and the top node properly.
16285
16286 2006-05-23  Chris Toshok  <toshok@ximian.com>
16287
16288         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
16289         maybe this should actually happen in the datagrid code?
16290         (EndEdit): no need to invalidate anything, given that
16291         ReleaseHostedControl causes the datagrid to relayout, which
16292         invalidates everything anyway.
16293
16294         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
16295         in SetCurrentCell).
16296         (set_SelectionBackColor): call InvalidateSelection instead of
16297         Refresh.
16298         (set_SelectionForeColor): same.
16299         (BeginEdit): Flesh this out a bit.
16300         (CancelEditing): only do any of this if we're editing/adding.
16301         (EndEdit): same.
16302         (OnMouseDown): there's no need to cancel editing here, it's done
16303         in SetCurrentCell.
16304         (SetCurrentCell): only invalidate the current row header if it's a
16305         different row than the new one.
16306         (ShiftSelection): fix this to work like MS does.
16307         (ResetSelection): factor out the invalidation of selected_rows to
16308         InvalidateSelection.
16309         (SetDataSource): cancel any editing that's going on.
16310
16311         * DataGridColumnStyle.cs
16312         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
16313         call the non-interface version.
16314
16315         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
16316         header rectangle with the clip rectangle so we don't redraw the
16317         entire header for just a small area.  Gets rid of the last flicker
16318         when horizontally scrolling.
16319         (DataGridPaintRow): same.
16320
16321 2006-05-23  Mike Kestner  <mkestner@novell.com>
16322
16323         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
16324         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
16325         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
16326         Critical bug report.
16327
16328 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
16329
16330         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
16331           and this fixes #78493
16332
16333 2006-05-23  Miguel de Icaza  <miguel@novell.com>
16334
16335         * Theme.cs (GetSizedResourceImage): Scale images if the proper
16336         size is not found.  
16337         
16338         * FileDialog.cs: Do not change the background for the side bar as
16339         it wont work nicely with the theme, and also reduces the artifacts
16340         in rendering the icons (which I want to fix too).
16341
16342         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
16343         resources, not resgen resources. 
16344
16345         (PlatformDefaultHandler): Pull images using the new API.
16346
16347 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
16348
16349         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
16350           a reference to the hwnd and will not remove it unless there are
16351           no pending exposures (fixes #78341)
16352         * XplatUI.cs: Improved debug
16353
16354 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
16355
16356         * MenuAPI.cs : don't handle OnClick event when it was not the left
16357           button. Fixed bug #78487.
16358
16359 2006-05-23  Mike Kestner  <mkestner@novell.com>
16360
16361         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
16362         prefer submenus to the top menu for item lookup, to avoid popping down
16363         top-row items.
16364
16365 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
16366
16367         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
16368           Graphics.FillRectangle as the visual results are really bad (even
16369           on win). We now draw perfect arrows (and perfect shadows when the
16370           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
16371           Pen.DashPattern to draw the dots of each line.
16372
16373 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
16374
16375         * FileDialog.cs: Update the filename combobox when navigating through
16376           the ListView with the cursor keys. Fixes part 7 of bug #78446.
16377
16378 2006-05-22  Mike Kestner  <mkestner@novell.com>
16379
16380         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
16381         Fixes #78463.
16382
16383 2006-05-22  Mike Kestner  <mkestner@novell.com>
16384
16385         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
16386         requests. Fix a misspelled parameter and a copy paste exception error
16387         in Select.
16388
16389 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
16390
16391         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
16392           to get the same width/height (5/13) on X11 as the default font has on
16393           win32. This means that our DefaultFont emSize is smaller than the 
16394           the MS SWF equivalent (even thought the width/height stays the same)
16395
16396 2006-05-20  Jackson Harper  <jackson@ximian.com>
16397
16398         * MdiClient.cs:
16399         * MdiWindowManager.cs:
16400         * InternalWindowManager.cs: Make sure to use the border width from
16401         the theme.
16402
16403 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
16404
16405         * PrintDialog.cs: Implements printer details
16406
16407 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
16408
16409         * FileDialog.cs: Added focus handling for PopupButtonPanel.
16410           Fixes part 1 and 2 of bug #78446
16411
16412 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
16413
16414         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
16415           instead of sticking to the first ever calculated value
16416
16417 2006-05-19  Mike Kestner  <mkestner@novell.com>
16418
16419         * ComboBox.cs: fix mouse motion selection to use MousePosition and
16420         PointToClient, since Capture is set. Fixes #78344.
16421
16422 2006-05-19  Mike Kestner  <mkestner@novell.com>
16423
16424         * ListView.cs: match MS behavior in Details view where items are not
16425         drawn if Columns.Count == 0. 
16426         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
16427         Use a separate pen to draw the check, since changing the width affects
16428         the box as well.  Fixes #78454.
16429
16430 2006-05-18  Miguel de Icaza  <miguel@novell.com>
16431
16432         * ListView.cs: ArgumentOutOfRangeException, single versions of the
16433         exception should throw the name of the invalid argument.
16434
16435         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
16436         there are no files listed. 
16437
16438 2006-05-18  Jackson Harper  <jackson@ximian.com>
16439
16440         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
16441         up.
16442
16443 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
16444
16445         * Control.cs: Brought back our old UpdateZOrder method as a private
16446           function and switched our calls from UpdateZOrder to the new one.
16447           This fixes the Paint.Net canvas disappearing bug.
16448
16449 2006-05-18  Jackson Harper  <jackson@ximian.com>
16450
16451         * Theme.cs:
16452         * ThemeWin32Classic.cs:
16453         * InternalWindowManager.cs: Move the drawing into the theme,
16454         expose everything the theme should need from the window manager.
16455
16456 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
16457
16458         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
16459           from the call to NativeWindow to avoid walking up the parent chain
16460           further than needed (speeds up setting cursors and avoids setting
16461           the wrong cursor if a parent has another cursor defined)
16462         * Cursor.cs: When loading an icon as cursor, MS uses the center of
16463           the icon as hotspot, not what's contained as hotspot in the icon
16464           file. This fixes the perceived drawing offset seen with Paint.Net
16465         
16466 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
16467
16468         * XplatUIX11.cs: 
16469           - Store the calculated rectangle in Hwnd object and use it when 
16470             setting the client size
16471           - Force Toolwindows to always be type Dock, to ensure they're on top
16472
16473 2006-05-18  Mike Kestner  <mkestner@novell.com>
16474
16475         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
16476         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
16477         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
16478         Substantial refactoring to remove confusing nested classes. Coding
16479         standard and Get+Set->property refactorings.  Shift to index based
16480         highlighting in ComboListBox instead of constantly using IndexOf and
16481         Items[]. Add invalidations on resize for DropDownList to fix ugliness
16482         in FileDialog growth.  Draw borders manually since Simple mode needs
16483         to look like two independent controls.  Make listbox border
16484         conditional to DropDownStyle.  Improved OwnerDraw support.
16485
16486 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
16487
16488         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
16489         Don't set the disposed graphics to null, so we can throw the "right"
16490         exception if the graphics is reused later (added a flag to avoid 
16491         double disposing). Some behaviours are different under 2.0 and are
16492         filled under bug #78448.
16493
16494 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
16495
16496         * Control.cs: When double-buffering is enabled, we need to reset
16497           our graphics context between paint calls. Otherwise, any 
16498           transformations and other alterations on the context will 
16499           become cumulative (#77734)
16500
16501 2006-05-18  Mike Kestner  <mkestner@novell.com>
16502
16503         * ListView.cs: do focused item selection like MS on clicks. 
16504         Rework focus handling for ItemControl so LostFocus invalidates as
16505         well.
16506         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
16507         the ListView ItemControl has focus.
16508
16509 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
16510
16511         * XplatUIX11.cs: If client_window ends up being width or height zero
16512           due to border settings, move it off window inside whole_window (#78433)
16513
16514 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
16515
16516         * Mime.cs: Shrink the mime file cache correctly.
16517
16518 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
16519
16520         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
16521
16522 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
16523
16524         * XplatUIX11.cs (AddExpose): More sanity checks
16525
16526 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
16527
16528         * XplatUIX11.cs:
16529           - AddExpose: Don't add expose ranges outside the size of our
16530             window
16531           - Cast opacity values to Int32 to avoid crashes with certain
16532             values
16533           - Added disabled code paths that protect against illegal cross-
16534             thread painting (Developers.exe)
16535
16536 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
16537
16538         * ProgressBar.cs: Invalidate the control when it's resized
16539           since block size is based on control size. (#78388)
16540
16541 2006-05-16  Miguel de Icaza  <miguel@novell.com>
16542
16543         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
16544         of setting the incoming argument to the "reset" value, we set the
16545         this.datamember to string.empty (before we were invalidating the
16546         incoming data).   
16547
16548         Fixes 78420
16549
16550 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
16551
16552         * Form.cs: Only apply transparency settings after the form
16553           is created. (Fixes #77800)
16554
16555 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
16556
16557         * ApplicationContext.cs: Grab the HandleDestroyed event so
16558           we know when to fire OnMainFormClosed 
16559
16560 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
16561
16562         * Application.cs: Introduced sub-class to allow tracking of
16563           threads and centralized triggering of the event mess for
16564           ThreadExit, AppExit, etc..  (#76156)
16565
16566 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
16567
16568         * MimeIcon.cs:
16569           - Do not return a null icon index value for a mime subclass.
16570             Instead try the main mime type class too.
16571           - Seems that some newer distributions don't have a link to some
16572             gnome default icons anymore. So check the default gnome dir too.
16573           
16574
16575 2006-05-16  Jackson Harper  <jackson@ximian.com>
16576
16577         * MdiClient.cs: Don't paint the parent background image if we have
16578         our own background image.
16579
16580 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
16581
16582         * Control.cs:
16583           - PerformLayout: Do not shrink space filled by DockStyle.Fill
16584             controls, all filled controls are supposed to overlap (#78080)
16585           - UpdateZOrder is supposed to update the control's z-order in the
16586             parent's z-order chain. Fixed to behave like that
16587           - BringToFront: Removed obsolete code
16588           - SendToBack: Simplyfied
16589           - SetChildIndex: Trigger layout calculations when Z-order changes
16590             since layout is done by z-order
16591
16592 2006-05-16  Chris Toshok  <toshok@ximian.com>
16593
16594         [ fixes bug #78410 ]
16595         * DataGrid.cs (set_AlternatingBackColor): use
16596         grid_drawing.InvalidateCells instead of Refresh().
16597         (set_BackColor): call grid_drawing.InvalidateCells.
16598         (set_BackgroundColor): use Invalidate instead of Refresh.
16599
16600         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
16601         invalidate the cell area.
16602
16603 2006-05-15  Chris Toshok  <toshok@ximian.com>
16604
16605         [ fixes bug #78011 ]
16606         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
16607         on to DataGridPaintRow.
16608         (DataGridPaintRow): take a clip argument, and only draw the cells
16609         which intersect it.  same with the not_usedarea.
16610
16611         * Theme.cs (DataGridPaintRow) add @clip parameter.
16612
16613         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
16614         XplatUI.ScrollWindow.
16615         (ScrollToRow): same.
16616
16617         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
16618         with last column which was causing a gray swath to appear with the
16619         XplatUI.ScrollWindow code.
16620
16621 2006-05-15  Chris Toshok  <toshok@ximian.com>
16622
16623         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
16624         use XplatUI.ScrollWindow.
16625         (VerticalScrollEvent): use XplatUI.ScrollWindow.
16626
16627 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
16628
16629         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
16630
16631 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
16632
16633         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
16634           file since there are no equivalent X11 cursors
16635
16636 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
16637
16638         * MonthCalendar.cs : DateTimePicker should reflect selected date
16639           on mouse*up*, not mouse*down*. Fixed originally reported part of
16640           bug #76474.
16641
16642 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
16643
16644         * TabControl.cs : When argument index is equal or more than tab
16645           count, just ignore. Fixed bug #78395.
16646
16647 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
16648
16649         * Control.cs: Dispose all child controls when control is diposed (#78394)
16650
16651 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
16652
16653         * ColorDialog.cs: Finally it is possible to select the color with
16654           the text boxes
16655
16656 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
16657
16658         * PrintDialog.cs: Fix typo
16659
16660 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
16661
16662         * PrintDialog.cs: PrintDialog is not resizable
16663         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
16664           color. Made some ToolBar drawing methods protected virtual.
16665
16666 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
16667
16668         * PrintDialog.cs: Implementation of the PrintDialog
16669
16670 2006-05-12  Chris Toshok  <toshok@ximian.com>
16671
16672         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
16673         thumb, instead use MoveThumb.  This has the side effect of making
16674         most of the other thumb moving machinery use MoveThumb as well.
16675         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
16676         need to actually invalidate the rectangle where the new thumb will
16677         go.
16678         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
16679         We force an Update() after, so it's not as fast as it could be,
16680         but at least there's zero flicker and no droppings.
16681         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
16682         (UpdateThumbPos): add another argument (dirty), which says whether
16683         or not to calculate/add dirty regions which we later invalidate.
16684         For cases where we know we're going to use MoveThumb, we pass
16685         false for this.  Otherwise, pass true.
16686
16687 2006-05-12  Jackson Harper  <jackson@ximian.com>
16688
16689         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
16690         the status bar.
16691         
16692 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
16693
16694         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
16695           and GetClipRegion methods and UserClipWontExposeParent property.
16696         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
16697           overriding UserClipWontExposeParent property, setting to false, since
16698           Win32 handles the required expose messages to draw our clipped parent
16699           areas internally
16700         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
16701           PaintEventStart to set the user clip region if set.
16702         * Control.cs: 
16703           - Now internally tracking the Region for the control since we need to
16704             store it if the handle is not yet created and only set it when it
16705             becomes created. Before setting the region forced handle creation
16706           - Added code to draw the parents underneath a user-clipped region
16707         * Hwnd.cs: Added UserClip property
16708
16709 2006-05-12  Chris Toshok  <toshok@ximian.com>
16710
16711         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
16712         (set_Maximum): same.
16713         (set_Minimum): same.
16714         (set_SmallChange): same.
16715         (OnMouseUpSB): remove the call to refresh when releasing the
16716         thumb.  We shouldn't need it.
16717         
16718 2006-05-12  Miguel de Icaza  <miguel@novell.com>
16719
16720         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
16721         AutoSize set to None, we do not need to relayout everything, we
16722         just need to invalidate the current region.
16723
16724         (Draw): Do not draw the entire ClientArea, just redraw the
16725         clip area being passed.
16726
16727         * MdiClient.cs: Make MdiClient constructor with the Form argument
16728         internal. 
16729
16730 2006-05-12  Jackson Harper  <jackson@ximian.com>
16731
16732         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
16733         parents background image,  but strangely not their own.
16734         - (DrawStatusBarPanel): Take into account horizontal alignment
16735         when drawing the strings and icons.
16736
16737 2006-05-12  Mike Kestner  <mkestner@novell.com>
16738
16739         * ListBox.cs: avoid invalidations for focus when the collection is
16740         empty. 
16741
16742 2006-05-12  Chris Toshok  <toshok@ximian.com>
16743
16744         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
16745         invalidate the entire thumb area.  Call InvalidateDirty which
16746         limits the redraw to the thumb itself and surrounding pixels.
16747
16748         * XplatUIX11.cs (ScrollWindow): optimize copying.
16749         
16750 2006-05-12  Chris Toshok  <toshok@ximian.com>
16751
16752         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
16753         Figure out the positioning/layout in a single pass instead of
16754         multiple recursive invocations.  Speeds up the initial display of
16755         the data grid.  Also, make many things private that were
16756         originally public but unused outside this class.
16757
16758 2006-05-11  Jackson Harper  <jackson@ximian.com>
16759
16760         * MdiClient.cs: Improved layout code.
16761
16762 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
16763
16764         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
16765           not SelectedObject.
16766
16767 2006-05-11  Chris Toshok  <toshok@ximian.com>
16768
16769         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
16770         union of that will always be {0,0,width,height}.
16771
16772 2006-05-11  Jackson Harper  <jackson@ximian.com>
16773
16774         * Form.cs: Match MS's DefaultSize for forms (they must have
16775         changed the size in sp2).
16776
16777 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
16778
16779         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
16780
16781 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
16782
16783         * TextControl.cs : Fixed bug #78109. This incorrect position
16784           comparison caused crash on automatic line split.
16785         * TextBoxBase.cs : reduce duplicate code.
16786
16787 2006-05-10  Jackson Harper  <jackson@ximian.com>
16788
16789         * MdiClient.cs: Active form is only sent to the back when using
16790         the Next form functionality, when a form is clicked the current
16791         active shouldn't be sent to the back.
16792         - Layout the mdi windows when the container is first made visible.
16793         * Form.cs: Give the MdiClient a ref to the containing form when we
16794         create it.
16795         
16796 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
16797
16798         * LinkLabel.cs : link_font could be uninitialized, so populate one
16799           before actual use. Fixed bug #78340.
16800
16801 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
16802
16803         * XplatUIX11.cs : clipboard format native value is IntPtr.
16804           Fixed bug #78283.
16805
16806 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
16807
16808         * Control.cs: 
16809           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
16810             which is passed up the parent chain by DefWndProc
16811           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
16812             to DefWndProc (#77956)
16813         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
16814
16815 2006-05-10  Jackson Harper  <jackson@ximian.com>
16816
16817         * MdiClient.cs: We need to remove the controls from the mdi
16818         collection, when we close the window.
16819         * MdiWindowManager.cs: Special handling of closing mdi windows.
16820         * InternalWindowManager.cs: Make the close method virtual so the
16821         mdi window manager can handle it specially.
16822
16823 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
16824
16825         * DataGrid.cs:
16826           - Recalculate grid when the data source has changed
16827           - Matches styles provided by user from all data sources types
16828         * DataGridTableStyle.cs: For columns that provided by the user set the
16829         with the preferred value is there was unassigned.
16830         * CurrencyManager.cs: throw OnItemChanged event
16831
16832 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
16833
16834         * PictureBox.cs: Don't animate until handle is created. Start animation
16835           when handle is created.
16836
16837 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
16838
16839         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
16840           current codebase.
16841         * XEventQueue.cs: We don't need to provide the extra info
16842
16843 2006-05-10  Jackson Harper  <jackson@ximian.com>
16844
16845         * MdiClient.cs: If the mdi clients parent form has a background
16846         image set, we draw that background image for the mdi area's
16847         background.
16848
16849 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
16850
16851         * TextBoxBase.cs: Set IBeam cursor (#78347)
16852
16853 2006-05-10  Mike Kestner  <mkestner@novell.com>
16854
16855         * ToolBar.cs: fix some text padding issues with ButtonSize
16856         calculation. Update the default size to match MS documentation.
16857         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
16858         button size. Fixes #78296.
16859
16860 2006-05-10  Mike Kestner  <mkestner@novell.com>
16861
16862         * ListBox.cs: use is_visible for scrollbar positioning in case the
16863         control isn't on screen yet.  Fix off by one with Right vs Width
16864         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
16865         
16866 2006-05-10  Jackson Harper  <jackson@ximian.com>
16867
16868         * X11Dnd.cs: Drop to a control with another control on top of it.
16869         * ToolBar.cs: Work on a copy of the buttons list, so that it can
16870         be modified in click handlers. TODO: Look for similar problems in
16871         other controls.
16872
16873 2006-05-09  Jackson Harper  <jackson@ximian.com>
16874
16875         * Form.cs: Window managers need the old window state when setting
16876         window state now.
16877         * InternalWindowManager.cs: Allow the base mdi window manager to
16878         handle more of the MDI only stuff (like maximize buttons).
16879         * MdiWindowManager.cs: Fix some snafus in changing the window
16880         state.  Add all the menu functionality, for both popup and
16881         maximized menus.
16882         * MdiClient.cs: When a new form is selected the currently
16883         activated form is sent to the back, this matches MS.
16884         - Implement a new method to activate the next mdi child window.
16885
16886 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
16887
16888         * Control.cs: 
16889           - Added new InternalCapture method to allow controls to prevent
16890             the capture behaviour on the click handlers
16891           - Switched to use InternalCapture
16892         * ComboBox.cs:
16893           - Using InternalCapture to prevent mouse captures from being released
16894             on mouse button release (Fixes #78100)
16895         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
16896           returns Form borders if a caption is present. (Fixes #78310)
16897
16898 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
16899
16900         * TreeNode.cs: Changed serialization .ctor to not require every field
16901           to be present. (#78265)
16902         * OwnerDrawPropertyBag.cs: Added serialization .ctor
16903
16904 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
16905
16906         * MimeIcon.cs: for is faster than foreach for strings.
16907
16908 2006-05-05  Mike Kestner  <mkestner@novell.com>
16909
16910         * CheckedListBox.cs: update check handling code to not use selected.
16911         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
16912         behavior for visual feedback, motion response, shift/ctrl handling,
16913         and properly deal with all 4 selection modes. Updates to bounds
16914         handling logic.  Add scroll wheel support. [Fixes #77842]
16915
16916 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
16917
16918         * ListView.cs:
16919           - Moved adding of Implicit controls into .ctor. That way, subsequent
16920             creation of the controls will not cause them to think they are 
16921             toplevel windows (fixes #78200 header problem)
16922           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
16923           - Switched visibility setting of header control to use internal field
16924             to avoid triggering handle creation
16925           - Now checking if handle is created before causing a refresh when items
16926             are added (This makes us now match handle creation time with MS)
16927         * Splitter.cs: Removed loading of private splitter cursor, switched to
16928           Cursors version now that that is loading the right ones
16929         * Cursors.cs: Load proper splitter cursors from resources
16930         * Cursor.cs: Added second method of loading resource cursors for the 
16931           VS.Net users amongst us
16932
16933 2006-05-05  Mike Kestner  <mkestner@novell.com>
16934
16935         * ListView.cs: give header_control a minimum size based on the
16936         ListView size.
16937
16938 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
16939
16940         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
16941           window seems to do that with metacity, so set that type. (#78120)
16942
16943 2006-05-05  Mike Kestner  <mkestner@novell.com>
16944
16945         * ListViewItem.cs: fix Details mode checkbox layout bug.
16946         * ThemeWin32Classic.cs: draw a ListView column header for unused space
16947         at the end of the header, if it exists. [Fixes for #78200]
16948
16949 2006-05-04  Jackson Harper  <jackson@ximian.com>
16950
16951         * MdiClient.cs: Add a helper property to get the container form.
16952         * MdiWindowManager.cs: We have to make sure to use the menu origin
16953         when drawing the icons and buttons, this fixes maximized window
16954         icons/buttons on win32.
16955         * InternalWindowManager.cs: Reset the restore captions when a
16956         window goes from Maximized to Minimized and vice versa. Move the
16957         DrawMaximizedButtons into the MdiWindowManager source, tool
16958         windows can't be maximized. NOTE: This could use a little
16959         refactoring if time ever permits.
16960         
16961 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
16962
16963         * TextBox.cs: Add MWFCategoryAttributes
16964         * TextBoxBase.cs: Add MWFCategoryAttributes
16965         * Form.cs: Add MWFCategoryAttributes
16966
16967 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
16968
16969         * Control.cs: Add MWFCategoryAttributes
16970         * ScrollableControl.cs: Add MWFCategoryAttributes
16971
16972 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
16973
16974         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
16975           Divider is true. Fix a little glitch in PropertyToolBar
16976           drawing code
16977
16978 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
16979
16980         * Control.cs:
16981           - Dispose: Call base.Dispose, this causes the disposed event
16982             to be fired (and probably other, more important stuff)
16983           - SetVisibleCore: Set is_visible to true after creating the
16984             window so that the window still gets created invisible (if
16985             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
16986             to generate a WM_ACTIVE message
16987         * Form.cs: Call Dispose when we want to destroy the window, instead of
16988           just destroying the handle (Dispose will do that for us)
16989         * XplatUIX11.cs:
16990           - RootWindow also needs a queue, so we can properly process the
16991             property change events from RootWindow (like Activate)
16992           - Generatic synthetic WM_ACTIVE message when the active window is
16993             being destroyed
16994
16995 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
16996
16997         * LinkLabel.cs: Trigger a recalc of our label dimensions when
16998           bounds are changed
16999
17000 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
17001
17002         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
17003           for determining width and height (image might not be assigned if
17004           we're drawing an imagelist)
17005
17006 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
17007
17008         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
17009         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
17010           height from system
17011         * Theme.cs: No longer returns hardcoded menu height, instead calls
17012           new driver method
17013         * Form.cs (OnLoad): Scaling happens before triggering Load events 
17014           on MS (# 78257)
17015
17016 2006-05-01  Mike Kestner  <mkestner@novell.com>
17017
17018         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
17019
17020 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
17021
17022         * TextBoxBase.cs: Removed Fixme
17023         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
17024
17025 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
17026
17027         * XplatUIX11.cs:
17028           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
17029             the rectangle relative to the parent, considering borders. We
17030             don't really want that.
17031           - ScrollWindow: Fixed warning to be more understandable
17032         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
17033           scrollbars and scroll only the visible area
17034         * RichTextBox.cs: Removed debug output
17035
17036 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
17037
17038         * NumericUpDown.cs (Text): Just use base
17039         * UpDownBase.cs: Ensure txtView is created before using it
17040
17041 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
17042
17043         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
17044           casting to IntPtr to avoid 64bit overflow errors
17045
17046 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
17047
17048         * Control.cs:
17049           - AllowDrop: Don't force handle creation.
17050           - CreateHandle: Added call to tell driver if we're allowed to drop
17051
17052 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
17053
17054         * FileDialog.cs: Remember the last directory not only for the
17055           current instance but also for new FileDialog instances.
17056
17057 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
17058         
17059         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
17060           broke sending async messages
17061
17062 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
17063
17064         * XplatUIX11.cs:
17065           - ScrollWindow: Fixed method. We finally generate expose events again
17066             for scrolled areas. This was causing 'garbage' when scrolling
17067             textbox and other controls that used ScrollWindow
17068           - Switched from using the regular queue for paint events to the MS 
17069             model of 'generating' paint events when the queue is empty.
17070             We use the new XQueueEvent.Paint subclass to store which windows
17071             need painting.
17072           - AddExpose now takes the x/y/width/height of the exposed area
17073             and inserts the window into the paint queue if not already there
17074           - InvalidateWholeWindow: Switched to use new AddExpose method
17075           - UpdateMessageQueue: Added which queue to monitor for paint events
17076           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
17077             the unlikely case nothing above handles it. We reset the expose
17078             pending states to get them off the queue.
17079           - GetMessage: Now pulls a paint event if no other events are in the
17080             queue
17081           - Invalidate: Switched to new AddExpose method
17082           - PeekMessage: Updated to understand pending paint events
17083           - UpdateWindow: Fixed logic bug. We were only updating if the window
17084             didn't need updating. Also switched to sending WM_PAINT directly,
17085             like MS does.
17086         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
17087           and random access Remove(). The random access is needed to handle
17088           UpdateWindow() where a WM_PAINT is sent directly without accessing
17089           the queue.
17090         * ScrollBar.cs: Added Update() calls to cause immediate updates to
17091           allow for better feedback when scrolling. Scrollbars are small and
17092           the immediate update should make it 'feel' more responsive without
17093           slowing things down. ScrollBar still needs it's invaliate logic
17094           updated to not always invalidate the whole bar on certain changes.
17095
17096 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17097
17098         * Control.cs:
17099         (BackColor): if the control does not support a transparent background,
17100         return the default backcolor when the parent backcolor is transparent.
17101
17102 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
17103
17104         * Application.cs: Updated to new StartLoop/GetMessage API
17105         * RichTextBox.cs: Provide some output on RTF parsing errors
17106         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
17107           new queue_id argument to GetMessage and PeekMessage to allow faster
17108           handling of per-thread queues in drivers.
17109         * Hwnd.cs: Added Queue tracking and property
17110         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
17111         * XEventQueue.cs: Added thread trackingA
17112         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
17113         * XplatUIX11.cs:
17114           - Implemented new per-thread queue
17115           - GetMessage: Fixed return/break behaviour on several cases. We were
17116             returning stale messages in some cases, instead of just processing
17117             the next message
17118
17119 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
17120
17121         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
17122
17123 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
17124
17125         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
17126           fixed off-by-one comparisons between Width/Height and Right/Bottom.
17127
17128 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
17129
17130         * PropertyGridView.cs: Fix drop down width.
17131
17132 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
17133
17134         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
17135           a mess in DrawToolBar, so I removed one of them.
17136
17137 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
17138
17139         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
17140           needed (clip). Otherwise we get artifacts.
17141
17142 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
17143
17144         * FixedSizeTextBox.cs: Added constructor to allow specifying which
17145           dimension is fixed
17146         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
17147           and switched FixedSizeTextBox to only be fixed vertical (#78116)
17148         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
17149           if it matches the scale base font (avoids unneeded scaling)
17150
17151 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
17152
17153         * X11DesktopColors.cs: One gtk_init_check should be enough
17154
17155 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
17156
17157         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
17158           match MS behaviour
17159
17160 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
17161
17162         * TextBoxBase.cs: 
17163           - Generate OnTextChanged for Backspace even if we're only deleting
17164             the current selection
17165           - When setting the Text property, only select all text if the
17166             control does not have focus when it is being set. Otherwise
17167             just place the cursor at the beginning of the control
17168
17169 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
17170
17171         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
17172           Added a little helper to draw PropertyGrid ToolBar with a different
17173           border and a different BackColor.
17174         * PropertyGrid.cs: Some background parts didn't get painted with the
17175           correct background color. Added a class that helps us to draw the
17176           correct border for PropertyGridView and a class that helps us to
17177           draw ToolBars with a different backcolor
17178         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
17179
17180 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
17181
17182         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
17183         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
17184
17185 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
17186
17187         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
17188           into the palette entries. Also, since we're working on a copy
17189           we needed to copy the palette back onto the bitmap.
17190         * Cursor.cs: Same fix as XplatUIWin32.cs.
17191
17192 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
17193
17194         * ImageListStreamer.cs: Need to read the var (or we're off)
17195
17196 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
17197
17198         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
17199           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
17200           TextBoxBase.cs: Unused var fixes
17201         * AxHost.cs: Small 2.0 fix
17202         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
17203           as it seems that is what at least Metacity expects. This will make
17204           icons show up on 64bit platforms. We still have some 64bit size
17205           issues, though, since the startup app window size still won't match.
17206
17207 2006-04-25  Mike Kestner  <mkestner@novell.com>
17208
17209         * *.cs: cleanup newly reported exception var unused warnings.
17210
17211 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
17212
17213         * ThemeWin32Classic.cs: Button image alignment now matches exactly
17214           ms
17215
17216 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
17217
17218         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
17219           image. The image position is always the same, no matter if the
17220           button is pressed or not.
17221
17222 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
17223
17224         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
17225           selection and set the correct filename for SaveFileDialog.
17226           Patch by Emery Conrad.
17227
17228 2006-04-24  Mike Kestner  <mkestner@novell.com>
17229
17230         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
17231         check for item.X outside the ClientRect instead of item.Y. Fixes
17232         #78151.
17233
17234 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17235
17236         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
17237         trust that value blindly and do some sanity check. Fixes bug #77814.
17238
17239 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17240
17241         * ImageListStreamer.cs: save the mask as a 1bpp image.
17242
17243 2006-04-21  Mike Kestner  <mkestner@novell.com>
17244
17245         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
17246         pass Checked and Indeterminate to the Theme Engine. Improve
17247         encapsulation with ListBox.
17248         * ListBox.cs: Keep a StringFormat instead of calculating it every item
17249         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
17250         nested types.  Move all CheckState functionality to CheckedListBox.
17251         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
17252         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
17253         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
17254         single base list. Fix scrollbar sizing and placement to mirror MS.
17255         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
17256         used.
17257         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
17258         for CheckedListBox by using new DrawItemState info.  Center the
17259         checkboxes on the items. Use new StringFormat property.
17260
17261 2006-04-18  Jackson Harper  <jackson@ximian.com>
17262
17263         * Form.cs: MdiChildren don't do default locations the same way as
17264         regular forms.  This prevents a crash when trying to position the
17265         mdi windows.
17266
17267 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
17268
17269         * PropertyGridTextBox.cs: Formatting, copyright
17270         * PropertiesTab.cs: Formatting
17271         * PropertyGrid.cs: Formatting
17272         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
17273           click toggling of values
17274           
17275 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
17276
17277         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
17278         * Control.cs (.ctor): verify_thread_handle is static, don't reset
17279           every time a control is created
17280         * Application.cs: Removed obsolete EnableRTLMirroring method
17281
17282 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
17283
17284         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
17285         SelectedIndex to -1. Fixes bug #78121.
17286
17287 2006-04-17  Jackson Harper  <jackson@ximian.com>
17288
17289         * Binding.cs: Handle null values for Current and BindingContext.
17290         This occurs when binding is a little delayed.
17291         * CurrencyManager.cs: return null for Current when there are no
17292         items in the list.
17293         - Hookup to the listchanged event on the DataView and update
17294         bindings when the list is changed.  This fixes late binding of
17295         controls.
17296
17297 2006-04-17  Jackson Harper  <jackson@ximian.com>
17298
17299         * X11Dnd.cs:
17300         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
17301         Ringenbach.
17302
17303 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
17304
17305         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
17306           place
17307         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
17308           with the correct ButtonState
17309
17310 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
17311
17312         * XplatUIX11.cs: Improved distinguishing between window types to
17313           tell the WM a type closer to what the app wants (Fixes #78107)
17314
17315 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
17316
17317         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
17318           GrabHandle
17319
17320 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
17321
17322         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
17323           drawing code to reflect the size grip changes
17324
17325 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17326
17327         * ImageListStreamer.cs: fix handling of the mask that follows the main
17328         bitmap when deserializing and serialize it properly. The generated mask
17329         should better be a 1bpp image, but I'll do that later.
17330
17331 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
17332
17333         * FileDialog.cs: Show something in the DirComboBox on *nix if the
17334           path doesn't fit into some of our Current.Places
17335
17336 2006-04-13  Jackson Harper  <jackson@ximian.com>
17337
17338         * ComboBox.cs: Use borders instead of drawing our own decorations,
17339         try to obey correct rules for heights.
17340         * Theme.cs:
17341         * ThemeNice.cs:
17342         * ThemeClearLooks.cs:
17343         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
17344         this is now handled by borders.
17345         - Remove unused DrawListBoxDecorationSize method.
17346         
17347 2006-04-13  Mike Kestner  <mkestner@novell.com>
17348
17349         * MenuAPI.cs: null guarding for the disbled click check fixes crash
17350         reported by Alex.
17351
17352 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
17353
17354         * ThemeWin32Classic.cs: 
17355           - Fixed CPDrawStringDisabled
17356           - Corrected drawing of disabled menu items
17357           - Fixed drawing of disabled radio buttons (bug #78095)
17358           - Draw check in a disabled CheckBox with color ControlDark 
17359
17360 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
17361
17362         * Form.cs: Use the provided width when calculating the menu size;
17363           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
17364           and ClientSize.Width won't be updated yet
17365         * Application.cs: Use Visible instead of Show() to make form visible,
17366           this way we create the handle later and menusize is considered
17367
17368 2006-04-12  Mike Kestner  <mkestner@novell.com>
17369
17370         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
17371         reporting.
17372
17373 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
17374
17375         * TextBox.cs: Implemented context menu
17376
17377 2006-04-12  Mike Kestner  <mkestner@novell.com>
17378
17379         * ListView.cs: implement box selection. fixes #77838.
17380         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
17381
17382 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
17383
17384         * XplatUIX11.cs: Added setting of window type when transient window
17385           is created (metacity would move it otherwise)
17386         * X11Structs.cs: Added WINDOW_TYPE atoms
17387         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
17388           background (the control is Opaque but still wants transparent
17389           backgrounds)
17390
17391 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
17392
17393         * Control.cs: Added OnPaintBackgroundInternal to allow controls
17394           that set Opaque but don't mean it (like all ButtonBase-derived
17395           controls) to still draw their background
17396         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
17397           the background
17398
17399 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
17400
17401         * Control.cs (PaintControlBackground): Set the graphics object
17402           on our PaintEvent to null to prevent it from being disposed
17403           when the PaintEvent gets disposed
17404
17405 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
17406
17407         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
17408         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
17409
17410 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
17411
17412         * Control.cs: 
17413           - Added transparency check to BackColor property. Transparent
17414             backgrounds are only allowed if the control styles permit it
17415           - Added recursive painting of parent control background and
17416             foreground if a control with a transparent backcolor is drawn
17417             (Thanks to Tim Ringenback for providing his 'hack' as a base
17418              for this patch) Fixes #77985 and #78026.
17419           - Added Opaque style check before calling OnPaintBackground, no
17420             need to draw the background if the control is opaque
17421           - Removed ControlAccessibleObject owner variable (inherited from
17422             base, no need to define again)
17423           - Added some documentation links explaining the drawing events
17424             and styles
17425
17426 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
17427
17428         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
17429           that the affected control is the located at the left border of our
17430           parent (Fixes #77936)
17431
17432 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
17433
17434         * TextBoxBase.cs: When rendering disabled or readonly controls,
17435           draw the background with 'Control' instead of 'Window' color as
17436           long as the user hasn't specifically set a color
17437
17438 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
17439
17440         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
17441           since that won't be updated if the user types text (only if it's
17442           programatically set)
17443
17444 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
17445
17446         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
17447           layout changes do to app-triggered resizes will have the proper
17448           display rectangle for layout
17449
17450 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
17451
17452         * ThemeWin32Classic.cs:
17453           - Make use of the SystemBrushes and SystemPens wherever possible
17454           - Corrected some highlight colors
17455           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
17456             drawing
17457         * Theme.cs: Added Empty field to CPColor struct
17458
17459 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
17460
17461         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
17462           is displayed when calculating the display rectangle. Thanks to Mike
17463           for teaching me the err of my ways.
17464
17465 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
17466
17467         * ScrollableControl.cs:
17468           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
17469             (instead of 0,0) and we now return the real width/height instead of
17470             just the clientrectangle, adjusted for padding. The rectangle is
17471             now cached and created by the new CalculateDisplayRectangle method.
17472           - Created new CalculateDisplayRectange method, which basically does
17473             what get_DisplayRectangle() did originally, but now using the 
17474             right edge instead of DisplayRectangle to determine the size of
17475             our scrollbars
17476           - get_Canvas(): Fixed it to properly calculate canvas for 
17477             right/bottom controls which seem to be placed to the right/bottom
17478             of any controls that have a fixed location
17479           - Removed TODO that's taken care of
17480           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
17481             and SetDisplayRectLocation according to new MSDN2 docs
17482           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
17483             event when that is called, this is added for compatibility
17484           - ScrollControlIntoView(): Implemented.
17485           - Switched scrollbars to be implicit, they shouldn't be selectable
17486         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
17487           call it when the active control is set/changed
17488         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
17489         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
17490           implicit_control variable (used for native Win32 message generation)
17491         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
17492           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
17493         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
17494         * XplatUIStructs.cs: Added ScrollBarCommands enum
17495
17496 2006-04-10  Jackson Harper  <jackson@ximian.com>
17497
17498         * ButtonBase.cs:
17499         * CheckedListBox.cs:
17500         * ComboBox.cs:
17501         * DataGrid.cs:
17502         * DataGridView.cs:
17503         * Form.cs:
17504         * GroupBox.cs:
17505         * ListBox.cs:
17506         * PrintPreviewControl.cs:
17507         * ProgressBar.cs:
17508         * PropertyGrid.cs:
17509         * Splitter.cs:
17510         * StatusBar.cs:
17511         * TrackBar.cs:
17512         * UpDownBase.cs: Fixup base event overrides.
17513         
17514 2006-04-06  Mike Kestner  <mkestner@novell.com>
17515
17516         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
17517         all user-initiated value changes to min <= value <= max-thumbsz+1.
17518         (set_Value): check for vert/horiz when calculating new thumb position.
17519         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
17520         like MS does.
17521         (OnMouseMoveSB): refactor the thumb dragging code and refine
17522         invalidation logic to reduce flicker.
17523         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
17524         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
17525         (UpdateThumbPosition): small code readability cleanup
17526
17527 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
17528
17529         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
17530           different
17531
17532 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
17533
17534         * ThemeNice.cs: Use a better graphics effect when a button is pressed
17535
17536 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
17537
17538         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
17539         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
17540           This dramatically reduces the number of Pen.Dispose calls. 
17541           Where possible call ResPool methods only once instead of calling it
17542           over and over again (for example for the same color).
17543
17544 2006-04-06  Mike Kestner  <mkestner@novell.com>
17545
17546         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
17547         Also remove an unused private field on the collection. Fixes #77972.
17548
17549 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
17550
17551         * ThemeNice.cs: Added ToolBar drawing code
17552
17553 2006-04-06  Mike Kestner  <mkestner@novell.com>
17554
17555         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
17556         I'm assuming that means we need to look up the toplevel for the
17557         provided control. Fixes the crash trace in #77911 but exposes another
17558         crash in some strange reflection usage in NDocGui.
17559
17560 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
17561
17562         * ThemeNice.cs: Gave it a little silver touch and added Images
17563           method
17564         * FontDialog.cs: FontDialog is not resizable
17565         * FileDialg.cs: Added SizeGripStyle.Show
17566
17567 2006-04-05  Jackson Harper  <jackson@ximian.com>
17568
17569         * KeyboardLayouts.cs: Remove warning.
17570
17571 2006-04-05  Jackson Harper  <jackson@ximian.com>
17572
17573         * Control.cs: Enable OnPaintInternal so we can use it for drawing
17574         all of our controls instead of Paint +=.
17575         * ListBox.cs:
17576         * ListView.cs:
17577         * MenuAPI.cs:
17578         * MessageBox.cs:
17579         * NotifyIcon.cs:
17580         * ProgressBar.cs:
17581         * ScrollBar.cs:
17582         * Splitter.cs:
17583         * StatusBar.cs:
17584         * TabControl.cs:
17585         * TextBoxBase.cs:
17586         * ToolBar.cs:
17587         * TrackBar.cs:
17588         * UpDownBase.cs:
17589         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
17590         use OnPaintInternal. Remove Width/Height and Visible checks in
17591         paint handler, this is done at a higher level now.
17592         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
17593         * PaintEventArgs.cs: Add a handled flag so controls that don't
17594         want anymore painting after OnPaintInternal can make sure OnPaint
17595         isn't called.
17596
17597 2006-04-05  Mike Kestner  <mkestner@novell.com>
17598
17599         * Form.cs: fix the menu WndProc hacks to respect the native enabled
17600         state of the form, so that we don't process events when Modal dialogs
17601         are up. Fixes #77922.
17602
17603 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
17604
17605         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
17606           checking is done.
17607
17608 2006-04-05  Mike Kestner  <mkestner@novell.com>
17609
17610         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
17611
17612 2006-04-05  Mike Kestner  <mkestner@novell.com>
17613
17614         * ListView.cs (HeaderMouseMove): null guarding for the over column
17615         when setting up the drag_to_index.  Fixes #78015.
17616
17617 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
17618
17619         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
17620           in the taskbar. Transient windows seem to accomplish that.
17621
17622 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
17623
17624         * Form.cs:
17625           - Re-enabled CreateParams.X/Y code for FormStartPosition
17626           - Added code for manual placement when creating the Control
17627           - Incomplete patch to treat MDI forms differently when
17628             setting the ClientSizeCore. (Still need to figure out handling
17629             x/y coords there)
17630         * XplatUIX11.cs:
17631           - When we're explicitly setting the X/Y position of a non-Child
17632             window, let the WM know. Metacity really wants this.
17633
17634 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
17635
17636         * ThemeNice.cs: Added CPDrawButton
17637
17638 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
17639
17640         * ThemeNice.cs: Changed the color for focused buttons and activated
17641           the arrows for small scroll buttons.
17642
17643 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
17644
17645         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
17646           anymore. Changed some method modifiers to protected (virtual)
17647         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
17648           changes
17649         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
17650           Updated drawing of menus, buttons and progressbars; added
17651           CPDrawBorder3D 
17652
17653 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17654
17655         * ImageListStreamer.cs: implemented serialization/deserialization
17656         of the images.
17657
17658 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
17659
17660         * ThemeWin32Classic.cs:
17661           - Removed all the DrawFrameControl stuff; CPDrawButton,
17662             CPDrawCheckBox and CPDrawRadioButton are now handled directly
17663             inside the methods
17664           - Updated and corrected the drawing code of CPDrawButton,
17665             CPDrawCheckBox and CPDrawRadioButton to better match ms
17666           - Updated theme checkbox and radiobutton code to use the CP*
17667             methods
17668
17669 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
17670
17671         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
17672           bug is fixed
17673
17674 2006-03-31  Jackson Harper  <jackson@ximian.com>
17675
17676         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
17677         sometimes.
17678         * UpDownBase.cs: Don't CreateGraphics manually, use a
17679         Refresh. Ideally we would invalidate the correct areas here.
17680
17681 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
17682
17683         * XplatUIX11.cs: 
17684           - We now track the mapping state of windows. If a window (or 
17685             one of it's parents) is not mapped we no longer permit
17686             WM_PAINT messages to be generated since we'd otherwise get 
17687             lots of BadMatch X errors. Jackson did all the work figuring
17688             out the problem.
17689           - Destroying the caret if the window it's contained in is 
17690             destroyed. Can't use regular DestroyCaret method since it
17691             might fall into a drawing function (trying to remove the
17692             caret) and with that generate new BadMatch errors. Again,
17693             Jackson tracked this down.
17694           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
17695             make sure we send the messages to all windows. (The old code
17696             would send the WM_DESTROY to the window, and then all child
17697             windows would be 'gone' because the WM_DESTROY handle lookup
17698             would no longer find the destroyed window)
17699         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
17700         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
17701
17702 2006-03-31  Jackson Harper  <jackson@ximian.com>
17703
17704         * ScrollableControl.cs: Dont recalc if we are not visible.
17705
17706 2006-03-31  Mike Kestner  <mkestner@novell.com>
17707
17708         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
17709         the visibility branch.
17710
17711 2006-03-31  Jackson Harper  <jackson@ximian.com>
17712
17713         * ScrollBar.cs: Cap values when incrementing/decrementing.
17714
17715 2006-03-31  Mike Kestner  <mkestner@novell.com>
17716
17717         * MenuAPI.cs: setup menu.tracker for popup/context menus.
17718         * ToolTip.cs: guard against timer expirations with no active control.
17719         Not sure why it happened.
17720
17721 2006-03-31  Mike Kestner  <mkestner@novell.com>
17722
17723         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
17724         text.
17725         * ToolTip.cs: Position the tooltip based on where the cursor is at
17726         popup time, not at MouseEnter time.  Add a Down state so that we don't
17727         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
17728         positioning offset. Lookup DisplaySize at positioning time, since it
17729         can theoretically change during invocation.
17730         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
17731         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
17732
17733 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
17734
17735         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
17736           Fixes behaviour when the Text property of the box is String.Empty
17737
17738 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
17739
17740         * XplatUIX11.cs: Only send mouseleave for our client windows, not
17741           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
17742           a window)
17743
17744 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
17745
17746         * FileDialog.cs: Visual enhancement for the popup buttons in 
17747           PopupButtonPanel
17748
17749 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
17750
17751         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
17752           code
17753
17754 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
17755
17756         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
17757           highlighted menu items to match ms
17758
17759 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
17760
17761         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
17762
17763 2006-03-30  Mike Kestner  <mkestner@novell.com>
17764
17765         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
17766         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
17767         go active to account for HotLight to Selected transition.
17768         * MenuItem.cs: add internal Selected prop. Fill out the Status
17769         property by calculating it from item info. Add HotLight,
17770         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
17771
17772 2006-03-30  Mike Kestner  <mkestner@novell.com>
17773
17774         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
17775
17776 2006-03-29  Jackson Harper  <jackson@ximian.com>
17777
17778         * Form.cs: Implement TODO.
17779
17780 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
17781
17782         * PrintPreviewDialog.cs: Implemented missing methods and events; still
17783           missing proper dialog setup in the constructor
17784
17785 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
17786
17787         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
17788         * Control.cs:
17789           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
17790           - Fixed ResetBindings and removed TODO
17791           - Added check for cross-thread calls to get_Handle()
17792           - Added Marshaller attribute for set_Font to satisfy class status
17793         * FontDialog.cs: Removed TODOs that seemed implemented
17794         * UpDownBase.cs: Removed unneeded TODO and Fixme
17795         * MessageBox.cs: Implemented support for Default button and removed TODO
17796         * FileDialog.cs: Removed obsolete TODO
17797         * DomainUpDown.cs: Removed obsolete TODO
17798         * ButtonBase.cs: Removed obsolete TODO
17799         * XplatUIWin32.cs: Removed obsolete TODO
17800         * Form.cs:
17801           - Removed obsolete TODO
17802           - Calling CheckAcceptButton when the acceptbutton is changed to allow
17803             internal status updates
17804           - Making sure the active control is selected when the control is created
17805         * CurrencyManager.cs: Removed obsolete TODO
17806
17807 2006-03-29  Mike Kestner  <mkestner@novell.com>
17808
17809         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
17810         of PrintPreviewDialog and RichTextBox.
17811
17812 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
17813
17814         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
17815           DarkDark, Light and LightLight colors for a specific color
17816         * ThemeWin32Classic.cs:
17817           - Use Button drawing code to draw RadioButtons and CheckBoxes with
17818             Appearance = Button 
17819           - Make use of the new ResPool helper CPColor
17820           - Draw ProgressBar and StatusBar with correct 3D borders
17821
17822 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
17823
17824         * ColorDialog.cs: Return selected color. Fixes bug #77940.
17825
17826 2006-03-28  Mike Kestner  <mkestner@novell.com>
17827
17828         * ListView.cs: fix Icon layout to plan for scrollbar widths when
17829         calculating col/row counts.
17830
17831 2006-03-28  Mike Kestner  <mkestner@novell.com>
17832
17833         * ColumnHeader.cs:
17834         * ListView.cs:
17835         * ListViewItem.cs:
17836         * Menu.cs: 
17837         switch to explicit interface method implementation for some methods
17838         corcompare identifies as inconsistent with MS.
17839
17840 2006-03-28  Mike Kestner  <mkestner@novell.com>
17841
17842         * MainMenu.cs: 
17843         * Menu.cs:
17844         add a few missing methods from the class status output.
17845
17846 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
17847
17848         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
17849           correct.
17850
17851 2006-03-28  Mike Kestner  <mkestner@novell.com>
17852
17853         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
17854
17855 2006-03-27  Mike Kestner  <mkestner@novell.com>
17856
17857         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
17858         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
17859
17860 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
17861
17862         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
17863
17864 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17865
17866         * ThemeWin32Classic.cs:
17867           - GroupBox: Inserted a little gap between the text and the lines
17868             on the right side
17869           - Made the code in CPDrawBorder3D more readable
17870           - Corrected the drawing location of the up and down arrows in 
17871             CPDrawScrollButton
17872
17873 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17874
17875         * ControlPaint.cs: Corrected line widths in DrawBorder for
17876           ButtonBorderStyle Inset and Outset
17877
17878 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17879
17880         * ThemeWin32Classic.cs:
17881           - Rewrote the totally broken CPDrawBorder3D method. That was
17882             one of the main problems for the terrific ThemeWin32Classic
17883             look
17884           - Updated and corrected Button drawing
17885           - Correct the dimensions of the SizeGrip to match ms ones
17886           - Removed a small drawing glitch in DrawComboBoxEditDecorations
17887         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
17888           Border3DStyle.Sunken to match ms.
17889
17890 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17891
17892         * ThemeWin32Classic.cs: First small part of the "de-uglify
17893           ThemeWin32Classic" effort, SizeGrip
17894
17895 2006-03-24  Jackson Harper  <jackson@ximian.com>
17896
17897         * XplatUIX11.cs: Give a max idle time of one second, this matches
17898         MS and forces an Idle event every second when there are no other
17899         events in the queue.
17900
17901 2006-03-24  Mike Kestner  <mkestner@novell.com>
17902
17903         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
17904         * ListView.Item.cs: fix layout issues with null image lists and images
17905         smaller than checkbox size.
17906         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
17907         mode like MS does.  It's weird, but consistent.  ;-)
17908         Fixes #77890.
17909
17910 2006-03-24  Mike Kestner  <mkestner@novell.com>
17911
17912         * ListView.cs: Scroll wheel support for the item control.  Fixes
17913         #77839.
17914
17915 2006-03-23  Jackson Harper  <jackson@ximian.com>
17916
17917         * ScrollableControl.cs: Special case negative sized areas, not
17918         zero.
17919         * MonthCalendar.cs: Save the rect of the clicked date so we can
17920         use it for invalidation.
17921         - Try to cut down on the number of invalidates
17922         - Invalidate the rect the mouse is over and was over when moving
17923         the mouse, so we get the focus box following the cursor.
17924
17925 2006-03-23  Mike Kestner  <mkestner@novell.com>
17926
17927         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
17928         focus rectangle drawing. Fixes #77835.
17929
17930 2006-03-23  Mike Kestner  <mkestner@novell.com>
17931
17932         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
17933         the if and else if and reverting back to the original == check on the
17934         None conditional.
17935
17936 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
17937
17938         * FontDialog.cs: Update the example panel if the selected index of
17939           the fontListBox changes.
17940
17941 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
17942
17943         * FileDialog.cs: Make FileDialog remember which directory it was in
17944           last in the same execution.
17945
17946 2006-03-22  Mike Kestner  <mkestner@novell.com>
17947
17948         * FileDialog.cs: make the DropDownMenu on the toolbar display
17949         RadioChecks since they are mutually exclusive and that's what MS does.
17950
17951 2006-03-22  Mike Kestner  <mkestner@novell.com>
17952
17953         * Theme.cs: add Color param to CPDrawMenuGlyph.
17954         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
17955         checks and radio marks and arrows are visible on highlighted items.
17956         * ControlPaint.cs: update to use new Theme signature.
17957
17958 2006-03-22  Mike Kestner  <mkestner@novell.com>
17959
17960         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
17961         is active. Fixes #77870.
17962
17963 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
17964
17965         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
17966           to be focused/selected after startup
17967
17968 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
17969
17970         * ColorDialog.cs: 
17971           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
17972             CustomColors and ShowHelp properties
17973           - Some internal rewrites to get better results when using the
17974             ColorMatrix
17975
17976 2006-03-22  Mike Kestner  <mkestner@novell.com>
17977
17978         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
17979         HoverSelection.  Fixes #77836.
17980
17981 2006-03-22  Mike Kestner  <mkestner@novell.com>
17982
17983         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
17984         ToggleButtons.  (De)Sensitize the Back button around a stack count of
17985         1, not 0.  Update ButtonSize based on a pixel count of the win32
17986         control.  Adjust the toolbar size/location for new button size.
17987
17988 2006-03-22  Jackson Harper  <jackson@ximian.com>
17989
17990         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
17991         true.
17992         * ScrollBar.cs: When doing increments and decrements we need to
17993         set the Value property so that ValueChanged gets raised. A
17994         possible optimization here would be to make an internal SetValue
17995         that doesn't invalidate immediately.
17996         * ToolTip.cs: Tooltips get added to their container (when
17997         supplied) so they get disposed when the container is disposed.
17998         - Don't create tooltips for String.Empty. This prevents all these
17999         little 2-3 pixel windows from showing up when running nunit-gui
18000         and driving me mad.
18001         * Form.cs: Don't set topmost when setting the owner if the handles
18002         haven't been created yet.  The topmost set will happen when the
18003         handles are created.
18004
18005 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
18006
18007         * XplatUIX11.cs:
18008           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
18009           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
18010             visible (to allow them to recalculate their sizes)
18011
18012 2006-03-21  Mike Kestner  <mkestner@novell.com>
18013
18014         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
18015         methods. Removed a ton of redundant code.  Still not really happy with
18016         the border rendering, but I think that's mainly because of the
18017         ControlDarkDark being black instead of a dark grey. Depending on how 
18018         close we want to be, we might want to revisit those color choices.
18019         Among the new features added during the refactor were DropDownArrow
18020         pressed rendering, Disabled image rendering.  Proper flat appearance
18021         boundary rendering.  Removed the Divider and Wrapping dividers since I
18022         can't figure out any combination of themes and conditions to make the
18023         MS control draw a horizontal line on a toolbar despite what the
18024         Divider property docs indicate.
18025         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
18026         conditions and incorrect layout.  Updated to coding standard.
18027         * ToolBarButton.cs: refactored layout and positioning code from
18028         ToolBar to here.  Invalidate wherever possible instead of forcing
18029         redraws of the whole toolbar. 
18030         (Known remaining issues: explicit ButtonSize smaller than provided
18031         images.)
18032
18033 2006-03-21  Mike Kestner  <mkestner@novell.com>
18034
18035         * ContextMenu.cs (Show): use the position parameter instead of just
18036         showing at the MousePosition.
18037
18038 2006-03-21  Jackson Harper  <jackson@ximian.com>
18039
18040         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
18041         control handle this.
18042         * TreeNodeCollection.cs: If we are clearing the root node we need
18043         to reset top_node so calcs can still happen.
18044         * ThemeWin32Classic.cs: This is a Flags so we need to check
18045         properly.
18046         
18047 2006-03-21  Jackson Harper  <jackson@ximian.com>
18048
18049         * DataGrid.cs: Create columns when the binding context has been
18050         changed.
18051         * X11Structs.cs: Keysyms are uints.
18052         - Add size to fix build.
18053
18054 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
18055
18056         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
18057           XplatUIOSX.cs: 
18058           - Added ResetMouseHover method to allow controls to retrigger
18059             hovering if they need it more than once
18060           - Implemented MouseHoverTime and MouseHoverSize properties
18061         * Timer.cs: Start() must reset the interval
18062         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
18063           properties
18064
18065 2006-03-21  Jackson Harper  <jackson@ximian.com>
18066
18067         * X11Keyboard.cs: improved layout detection. Move the nonchar
18068         tables into this file.
18069         * KeyboardLayouts.cs: Move the tables into resource files.
18070
18071 2006-03-21  Mike Kestner  <mkestner@novell.com>
18072
18073         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
18074
18075 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
18076
18077         * Mime.cs: Various speed optimizations. Looking up mime types
18078           is now 2 times faster than before
18079
18080 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
18081
18082         * CreateParams.cs: Added internal menu field
18083         * Control.cs: 
18084           - Switched call order for UpdateBounds; now we always call
18085             the one that also takes ClientSize, and we're calculating the 
18086             client size via driver method in the others. The previous
18087             method of tracking client size by difference wasn't working
18088             for forms where even the starting client size wouldn't match
18089             the overall form size (due to borders) (Part of fix for #77729)
18090           - CreateParams(): Do not use parent.Handle unless the handle is
18091             already created. Causes havoc with Nexxia and throws off our
18092             creation of controls
18093         * XplatUIX11.cs:
18094           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
18095           - Switched handling of ConfigureNotify over to new PerformNCCalc 
18096             method (consolidates code)
18097           - Changed RequestNCRecalc to use new PerformNCCalc method
18098           - Added calls to RequestNCRecalc when menus and borders are changed
18099             to allow app to set NC size. (Part of fix for #77729) This matches
18100             when MS send a WM_NCRECALC on Win32 windows.
18101           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
18102             (Part of fix for #77729). This matches what MS does, they also
18103             send that message when the form is made visible.
18104           - XException.GetMessage: Improved usability of X errors by including
18105             a translation of the window into Hwnd and Control class
18106           - Improved debug info for window creation, reparenting and destruction
18107           - Created helper method WindowIsMapped() [Currently not used]
18108         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
18109         * Form.cs:
18110           - CreateParams: Now setting our menu on the new internal menu field
18111           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
18112             avoid calculating the same property twice
18113         * Hwnd.cs:
18114           - Improved usability of ToString() for debugging purposes
18115           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
18116             determine the height of the menu, instead of just the font. This
18117             required to also create a graphics context and to keep a bmp 
18118             around (for performance reasons)
18119
18120 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
18121
18122         * MenuAPI.cs: Added OnMouseUp method
18123         * Form.cs:
18124           - Now remembering the requested client size, avoids size errors
18125           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
18126             instead of base if the menu is active. This is required due to
18127             control now capturing and releasing on down/up and it would
18128             prematurely release our menu capture
18129
18130 2006-03-17  Jackson Harper  <jackson@ximian.com>
18131
18132         * KeyboardLayouts.cs: Add the czech layouts.
18133
18134 2006-03-16  Jackson Harper  <jackson@ximian.com>
18135
18136         * Control.cs: Use the viewport space when sizing not the controls
18137         client size, so things like ScrollableControl that effect the
18138         viewport size (when scrollbars are added) are computed correctly.
18139         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
18140         of ManagerEntrys.
18141         - Handle creating BindingManagers for null data sources.
18142         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
18143         source, otherwise when rows are added they are added to the 'fake'
18144         datasource and we will crash when trying to set the position in
18145         those rows.
18146         - Use Implicit scrollbars on the datagrid so they arent
18147         selectable.
18148         
18149 2006-03-16  Jackson Harper  <jackson@ximian.com>
18150
18151         * Binding.cs:
18152         * InternalWindowManager.cs:
18153         * MdiWindowManager.cs:
18154         * X11Keyboard.cs: I really want Mike to love me again (fix
18155         compiler warnings).
18156
18157 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
18158
18159         * DataGrid.cs:
18160           - OnMouseDown: Switch to editing mode when clicking on the cell
18161                          even if we're clicking on the cell that's currently 
18162                          selected
18163           - ProcessGridKey: Left/Right now wrap like MS.Net does
18164           - ProcessGridKey: Tab now knows to add a new row when tab is
18165                             pressed in the cell of the last column of the 
18166                             last row
18167           - ProcessGridKey: Enter now adds another row  if pressed in the last
18168                             row and selectes the new row, same column cell
18169           - ProcessGridKey: Home/End navigate columns, not rows, like 
18170                             originally implemented
18171           - Broke ProcessKeyPreview code out into an extra Internal method
18172             so it can be called from the edit code
18173         * DataGridTextBox.cs (ProcessKeyMessage):
18174           - Switched to accept Tab keypresses
18175           - Added F2 handling to allow jumping to the end of the edited cell
18176           - Added logic to allow moving caret left/right inside edited cell
18177             and making the edited cell jump when the caret hits cell borders
18178           - Tab and Enter are now passed to the datagrid after being handled
18179         * TextBoxBase.cs:
18180           - Removed capture code now that Control handles it
18181           - set_SelectionStart now ensures caret is visible
18182
18183 2006-03-16  Jackson Harper  <jackson@ximian.com>
18184
18185         * TrackBar.cs: Debackwards the increment/decrement for handling
18186         mouse clicks on the bar with vertical trackbars.
18187         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
18188         bottom to match MS.
18189
18190 2006-03-16  Mike Kestner  <mkestner@novell.com>
18191
18192         * ListView.cs: make shift/ctrl keyboard and mouse selection 
18193         consistent with the MS control. Fix a bug in
18194         SelectedListViewItemCollection.Clear that was pissing me off for the
18195         better part of a day because the collection was being altered
18196         underneath us as we walked the list.
18197
18198 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
18199
18200         * Control.cs: Not sure how we could miss this so long, but it seems
18201           that MS.Net has Capture set all the way from before calling 
18202           OnMouseDown through sending the mouse events until after
18203           OnMouseUp. This will fix DataGrid's selection being set to end
18204           at the location of the MouseUp.
18205
18206 2006-03-15  Jackson Harper  <jackson@ximian.com>
18207
18208         * BindingContext.cs: Check the binding after its added so that it
18209           can initialize the binding managers and hookup to events.
18210         * Binding.cs: Data members seem to sometimes include rows/cols in
18211           the format Row.Column we now take this into account.
18212           - Hookup to the position changed event so we can update the
18213           control when the position has changed in the data set.
18214         * CurrencyManager.cs: Take into account the row/col naming
18215           convention when creating dataset tables.
18216         * BindingContext.cs: Using a newer better way of storing
18217           datasource/datamember pairs.  Hopefully this better matches MS for
18218           looking up binding managers.
18219
18220
18221 2006-03-15  Jackson Harper  <jackson@ximian.com>
18222
18223         * BindingContext.cs: The currency manager needs the data member
18224         name, if the member is a data set we use the name to find the
18225         correct table.
18226         * CurrencyManager.cs: When creating the list prefer an IList over
18227         an IListSource.
18228         - Attempt to create a DataTable from a DataSet (TODO: might need
18229         some better error checking here, although MS doesn't seem to have much)
18230         - If we have a DataTable create a view and use it as our list.
18231
18232 2006-03-15  Mike Kestner  <mkestner@novell.com>
18233
18234         * ListView.cs: keep a matrix of the icon mode layout to facilitate
18235         keyboard navigation. Support Up/Down/Left/Right selection correctly
18236         for all 4 View modes.
18237         * ListViewItem.cs: add internal row/col fields for icon layouts.
18238
18239 2006-03-15  Jackson Harper  <jackson@ximian.com>
18240
18241         * TabControl.cs: Redraw the tabs when we resize so their newly
18242         calculated sizes are drawn on screen.
18243         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
18244         composite characters.
18245         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
18246         - filter events so that composite characters can be created
18247         patches by peter
18248         * X11Structs.cs: Add XIMProperties enum.
18249
18250 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
18251
18252         * Control.cs (BringToFront, SendToBack): Don't use window or handle
18253           unless it's created
18254
18255 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
18256
18257         * Control.cs (PerformLayout): We don't need to consider visiblity
18258           for anchoring, only for docking. This fixes 'whacky' alignment
18259           in listbox and other controls that use implicit scrollbars after
18260           the previous PerformLayout patch
18261         * ListBox.cs: Switched to use implicit scrollbars
18262           
18263 2006-03-14  Mike Kestner  <mkestner@novell.com>
18264
18265         * ToolBar.cs: 
18266         * VScrollBar.cs:
18267         - chain up the "new event" overrides to base and use
18268         OnEvent to raise them.  Part of fix for bug #76509.
18269
18270 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
18271
18272         * FileDialog.cs: Do not select an item in the parent directory
18273           on backspace
18274
18275 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
18276
18277         * Control.cs (PerformLayout): It would seem that we considered
18278           invisible windows for our layout. Not quite the right thing
18279           to do. Now we don't any longer, thereby fixing bug #76889.
18280
18281 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
18282
18283         * Control.cs (CanFocus): I goofed. A control can have focus 
18284           even though it's not selectable. Made it match MS docs.
18285
18286 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
18287
18288         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
18289           center by default (fixes #76895)
18290         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
18291           all uses of Border3DSides.All with the explicit ORd together
18292           Left|Right|Top|Bottom because I assume that nobody was aware 
18293           that All also implies a center fill. Most places I checked had
18294           a fill right above.
18295         * ProgressBarStyle.cs: Added
18296
18297 2006-03-13  Mike Kestner  <mkestner@novell.com>
18298
18299         * ListView.cs: fix breakage in drag shadow header positioning 
18300         from Peter's csc compilation fix.
18301
18302 2006-03-13  Mike Kestner  <mkestner@novell.com>
18303
18304         * ListView.cs: fix NRE produced by backspacing twice in a focused
18305         FileDialog.
18306
18307 2006-03-13  Mike Kestner  <mkestner@novell.com>
18308
18309         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
18310
18311 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
18312
18313         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
18314           be changed
18315         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
18316           the allowed size before making programmatic size changes
18317
18318 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
18319
18320         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
18321           set, metacity is broken and will still use the emty sizes in 
18322           the struct. (Fix for #77089)
18323
18324 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
18325
18326         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
18327           WindowExStyles and marked both enums as Flags
18328         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
18329           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
18330           to match WindowStyles split
18331         * XplatUIX11.cs:
18332           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
18333           - Updated to match WindowStyles split
18334         * XplatUIWin32.cs:
18335           - Fixed FosterParent creation, was using ExStyle on the Style field
18336             (This should help with Popup focus issues)
18337           - Updated to match WindowStyles split
18338
18339 2006-03-13  Jackson Harper  <jackson@ximian.com>
18340
18341         * MdiWindowManager.cs: Use the system menu height. Fixes some
18342         strange sizing issues.
18343
18344 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
18345
18346         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
18347         * TextBoxBase.cs:
18348           - Scroll to caret after inserting text (#77672)
18349           - Make scroll range one pixel higher, fixes off-by-one error (and
18350             makes underlines visible on the last line)
18351
18352 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
18353
18354         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
18355           the keyboard state from being stuck with keys in 'pressed' state when
18356           focus is switched away via keyboard
18357         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
18358           reset the keyboard if no X11 KeyUp events are expected to come
18359         * X11Structs.cs: Switched type of Visible to bool to match driver
18360
18361 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
18362
18363         * TextControl.cs:
18364           - Switched caret to be just 1 pixel wide, matches MS and looks less
18365             clunky
18366           - Moved caret display 1 pixel down from the top of the control
18367             to improve view
18368           - InsertCharAtCharet: Update the selection start if moving the caret
18369             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
18370           - No longer always creating the caret when the caret methods are
18371             called. Only the actual ShowCaret/HideCaret will do that now
18372           - Only setting caret visible if the owner control has focus
18373           - UpdateView: Added invalidation-shortcut logic for center and right 
18374             aligned text. Previously we'd update all according to the left
18375             logic which caused drawing errors. Also fixed height of invalidated
18376             areas, now properly invalidating the whole area (was off-by-one)
18377           - owner_HandleCreated: Always generate the document when the
18378             handle is created; this ensures that 
18379         * TextBoxBase.cs:
18380           - Fixed situation where caret would disappear under the right
18381             window border, also improved scrolling behaviour on left-
18382             aligned textboxes
18383           - Fixed right-aligned textboxes to have a border to the
18384             right instead of the caret being under the right border
18385         * XplatUIX11.cs:
18386           - Switched from 'nested' to simple visible/not visible tracking 
18387             for caret (part of fix for #77671)
18388           - No longer passing through translated FocusIn/FocusOut messages
18389             since we were notifying too often and the wrong windows. Instead
18390             we just notify our focussed window of receiving or loosing focus
18391         * XplatUIWin32.cs: Switched from 'nested' show/hide 
18392           counting for caret to simple visible yes/no behaviour (part of 
18393           fix for #77671)
18394
18395 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
18396
18397         * Mime.cs: Remove debug code...
18398
18399 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
18400
18401         * MimeGenerated.cs: Removed
18402         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
18403           and subclasses) from /usr/(local/)share/mime and
18404           $HOME/.local/share/mime.
18405
18406 2006-03-10  Jackson Harper  <jackson@ximian.com>
18407
18408         * MdiWindowManager.cs: Recalc the NC area when a window is
18409         maximized/restored so that the menu area is drawn on forms that
18410         don't have a menu.
18411
18412 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
18413
18414         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
18415           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
18416           us to force a WM_NCCALCRESIZE message being sent. This is needed
18417           for MDI maximizing.
18418
18419 2006-03-10  Jackson Harper  <jackson@ximian.com>
18420
18421         * Form.cs: We need to use the ActiveMenu when calculating menu
18422         height.
18423         - Fix nullref when the window manager hasn't been created yet.
18424         * Control.cs: Fix nullref when we try to bring a control to the
18425         front that has no parent.
18426         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
18427         height.
18428         - Add a dummy item to the maximized menu so it always has the
18429         correct height. Otherwise when there are no menus we don't get our
18430         icon and buttons.
18431         
18432
18433 2006-03-10  Jackson Harper  <jackson@ximian.com>
18434
18435         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
18436         stuff.
18437         * Form.cs: Make the window_state internal so the window managers
18438         can track it.
18439         - When an MDI child is maximized let its window manager create the
18440         main menu (so it can add its icon).
18441         - Notify the window managers of state changes
18442         - Let the window manager paint its buttons and handle button
18443         clicks on the menu when it is maximized.
18444         * InternalWindowManager.cs: Move the prev_bounds into the mdi
18445         window manager, since tool windows don't use it, only mdi windows.
18446         - Tell the main form that we don't want it to handle NCPAINT
18447         itself to avoid extra painting.
18448         - Handle clicks on a maximized windows menu.
18449         - Handle window state changes
18450         - Handle minimize/maximize clicks correctly by setting the window state.
18451         * MdiWindowManager.cs: Add an icon menu that (the menu you get
18452         when clicking on the forms icon).
18453         - New method to create a forms maximized menu. This is its normal
18454         menu + an icon.
18455         - Handle window state changes.
18456         - Handle sizing of maximized windows.  Maximized windows are just
18457         drawn bigger then the parent visible area. All controls are still
18458         there, they are just outside the visible area (this matches windows).
18459         * MdiClient.cs: No scrollbars when a child window is maximized.
18460         - Let the children windows figure out how big they should be when
18461         sizing maximized windows.
18462         - Implement a version of ArrangeIconicWindows somewhat similar to
18463         Windows version.  There are some little differences, but I don't
18464         think any app will rely on the layout of minimized mdi windows.
18465
18466 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
18467
18468         * Padding.cs: Several fixes to allow compiling with csc 2.0
18469
18470 2006-03-09  Jackson Harper  <jackson@ximian.com>
18471
18472         * Menu.cs:
18473         * MenuItem.cs: Cheap hack so we can add items to the list without
18474         the events being raised.  This allows adding mdi items during
18475         drawing. TODO: Should probably find a better time to add the items.
18476
18477 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
18478
18479         * ThemeWin32Classic.cs:
18480           - CheckBox_DrawText: Added logic to not wrap if not enough space
18481             is available (Fix for bug #77727)
18482           - RadioButton_DrawText: Added logic not to wrap if not enough
18483             space is available (Fix for bug #77727). Also removed some
18484             duplicate code, DrawString always drawing the regular text
18485             before hitting the if statement.
18486
18487 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
18488
18489         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
18490
18491 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
18492
18493         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
18494         * ContainerControl.cs: Partial implementation of some 2.0 scaling
18495           methods. Moved the new 2.0 properties into alphabetical order with
18496           other properties and added MonoTODO tags
18497
18498 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
18499
18500         * AutoScaleMode.cs: Added. Fix build.
18501
18502 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
18503
18504         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
18505           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
18506           and was requiring premature handle creation for calls from above
18507         * Form.cs, Control.cs: Removed handle arguments from calls to
18508           CalculateClientRect()
18509
18510 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
18511
18512         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
18513           drag_column.column_rect is MarshalByRef and can't be used that way
18514
18515 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
18516
18517         * AxHost.cs: Added deserialization constructor for 
18518           AxHost+State (fixes 77743)
18519
18520 2006-03-09  Mike Kestner  <mkestner@novell.com>
18521
18522         * ListView.cs: 
18523         - Added column drag reordering for details view.
18524         - fixed behavior when mouse is dragged off column and
18525         AllowColumnReorder is false.
18526         * ColumnHeader.cs: clone the format too in Clone.
18527         * Theme.cs: add DrawListViewHeaderDragDetails method.
18528         * ThemeWin32Classic.cs:
18529         - impl new method for drawing drag column shadows and targets.
18530         - support column offset for details mode in DrawListViewItem.
18531
18532 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
18533
18534         * TextControl.cs: Reset the char_count when the document is cleared
18535           (Fixes bug reported on mono-winforms mailing list)
18536
18537 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
18538
18539         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
18540           of calling base we simply process the key ourselves, since both
18541           DefWindowProc and the handled method would set m.Result. 
18542           (Fixes #77732)
18543
18544 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
18545
18546         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
18547           method also moves the window; instead implemented a copy of
18548           Control.ScaleCore (Part of fix for #77456)
18549         * TextBoxBase.cs: 
18550           - Created new CreateGraphicsInternal method to allow providing
18551             a graphics context when no handle is created without triggering
18552             handle creation. (Part of fix for #77456)
18553           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
18554         * TextControl.cs: 
18555           - Switched Constructor to require TextBoxBase instead of Control (to
18556             allow uncast access to CreateGraphicsInternal)
18557           - Safeguarded use of owner.Handle property. No longer accessing it
18558             unless the handle is already created.
18559           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
18560           - Now triggering a recalc when owning control becomes visible
18561         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
18562           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
18563           premature handle creation (Part of fix for #77456)
18564         * Control.cs:
18565           - We now only destroy our double-buffering buffers when the
18566             control is resized or disposed, but not when visibility
18567             changes. (The code even re-created them twice every time)
18568           - Now requiring a redraw of the buffer on visibility changes
18569             (fixes bug 77654 part 2)
18570           - Not passing OnParentVisibleChanged up unless the control
18571             is visible
18572           - CanFocus: Fixed to match MS documentation
18573           - Focus: Fixed to return actual focus state and to check if
18574             setting focus is legal before setting it
18575
18576 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
18577
18578         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
18579           when to draw focus rectangle by looking at parent focus and
18580           selected state instead. This fixes TabPages on Linux sometimes
18581           having none or multiple focus rectangles.
18582         * XplatUIX11.cs (SetFocus): 
18583           - Don't set the focus if the same window already has focus
18584           - Use SendMessage instead of PostMessage (like it's Win32
18585             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
18586             to match MS behaviour
18587         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
18588           are not selectable.
18589
18590 2006-03-07  Jackson Harper  <jackson@ximian.com>
18591
18592         * PictureBox.cs: Revert line I accidently committed last week.
18593
18594 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
18595
18596         * Control.cs: 
18597           - Added new IsRecreating and ParentIsRecreating properties to
18598             allow testing if RecreateHandle has been called on ourselves
18599             or one of our parents
18600           - WndProc(WM_DESTROY): If our control handle is being recreated
18601             we immediately need to create the handle when receiving the
18602             destroy, that way our child windows find a valid parent handle
18603             when they themselves are being recreated upon WM_DESTROY receipt
18604             (fix for bug #77654 part 1)
18605         * XplatUIX11.cs:
18606           - DestroyWindow: WM_DESTROY must be sent to our own window before
18607             notifying any child windows. MS documents that child windows
18608             are still valid when WM_DESTROY is received. (Control now relies on
18609             this behaviour)
18610           - Added some fine-grain debug options
18611
18612 2006-03-06  Jackson Harper  <jackson@ximian.com>
18613
18614         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
18615         box and base calculations off this.
18616         * MdiChildContext.cs:
18617         * MdiWindowManager.cs: Don't need to ensure scrollbars here
18618         anymore.
18619         
18620 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
18621
18622         * Splitter.cs: In situations where the affected control is added
18623           to the parent's control list after the splitter, we would not
18624           populate affected. Now we try populating it on mousedown, if
18625           it's not already set, and force it to be re-set whenever our
18626           parent changes.
18627
18628 2006-03-03  Matt Hargett  <matt@use.net>
18629
18630         * Control.cs: implement Control.Padding
18631         * Padding.cs: -Padding.All returns -1 when constructing with the
18632         implicit default ctor
18633         -Padding.ToString() matches MS.NET
18634         * ContainerControl.cs: implement
18635         ContainerControl.AutoScaleDimensions
18636         * ListControl.cs: implement ListControl.FormattingEnabled
18637         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
18638         * ButtonBase.cs:
18639         * TabPage.cs: Implement UseVisualStyleBackColor.
18640         * PictureBox.cs: Implement PictureBox.InitialImage.
18641
18642 2006-03-03  Mike Kestner  <mkestner@novell.com>
18643
18644         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
18645         event declarations to proxy to base event.
18646         * ListViewItem.cs: update to use ItemControl.
18647         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
18648         * ThemeWin32Classic.cs: update to new ListView theme API and fix
18649         column header label rendering for 0 width columns.
18650
18651 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
18652
18653         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
18654           that causes the control to be created. Fixes #77476.
18655
18656 2006-03-02  Jackson Harper  <jackson@ximian.com>
18657
18658         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
18659         expose_pending.
18660
18661 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
18662
18663         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
18664           passed in for the EventArgs (fixes #77690)
18665
18666 2006-03-01  Jackson Harper  <jackson@ximian.com>
18667
18668         * ScrollBar.cs: Refresh afterbeing resized.
18669
18670 2006-02-28  Mike Kestner  <mkestner@novell.com>
18671
18672         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
18673         Clean up a tracker compile warning.
18674         * MenuItem.cs: add internal PerformPopup method.
18675         [Fixes #77457]
18676
18677 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
18678
18679         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
18680           implicit expose) when the text is set to null
18681
18682 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
18683
18684         * RichTextBox.cs (FlushText): When newline is true, we always
18685           need to split the line, even if no text is on it and we may
18686           never eat newlines. (Fixes #77669)
18687
18688 2006-02-28  Mike Kestner  <mkestner@novell.com>
18689
18690         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
18691         and set Selected instead.
18692         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
18693         collections.
18694
18695 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
18696
18697         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
18698
18699 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
18700
18701         * FontDialog.cs:
18702           - Got rid of the panel. All controls are now directly added to
18703             the dialog form
18704           - It is now possible to set a font with the Font property
18705           - MinSize and MaxSize property do now what they should
18706           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
18707           - Searching and selecting a font with the font textbox works now,
18708             the same applies to the style and size textbox
18709           - Draw the correct 3D border in the example panel
18710           - Fixed a little mem leak (unused fonts didn't get disposed)
18711           - Many other internal updates/rewrites...
18712           - Fix typo
18713
18714 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
18715
18716         * TextControl.cs: 
18717           - InsertRTFFromStream: Added 'number of characters inserted' argument
18718           - set_SelectedRTF: Now using the number of characters to calculate
18719             the new location for the selection and cursor (x/y cannot be used
18720             due to potentially already wrapped text)
18721
18722 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
18723
18724         * TextControl.cs: Added property and implemented means to allow 
18725           disabling recalculation of a document (can be used to speed up
18726           multiple inserts and is needed to make RTF inserts predictable, see
18727           bug #77659)
18728         * RichTextBox.cs: Using the new NoRecalc property of Document to
18729           keep x/y insert locations predictable. Also makes it faster inserting
18730           large chunks of RTF
18731
18732 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
18733
18734         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
18735           it's easier for a child control to handle the other messages without
18736           having to duplicate the special functionality
18737         * TextBoxBase.cs
18738           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
18739             code to handle processing the key ourselves, in order to get 
18740             access to the result of KeyEventArgs.Handled. We now only call 
18741             ProcessKey if they key hasn't been handled already. Fixes #77526.
18742           - set_Text: If null or empty string is given, just clear the 
18743             document. Fixes part of #77526
18744
18745 2006-02-27  Jackson Harper  <jackson@ximian.com>
18746
18747         * SizeGrip.cs: Paint the background color before painting the grip
18748         so things look right.
18749         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
18750
18751 2006-02-27  Mike Kestner  <mkestner@novell.com>
18752
18753         * ListView.cs:
18754           - Restructure layout and invalidation model to remove a ton of
18755           flicker from the control and speed up performance in general.
18756           - Add manual column resize, flickers like crazy, but I already have
18757           some ideas on how I'll fix that. (#76822)
18758           - Merge the three Icon-based views into a single layout method.
18759           - Move item selection interaction logic from the item since 
18760           interaction with the collections is more appropriate to the view.
18761           - Deselection on non-item clicks.
18762         * ListViewItem.cs:
18763           - Encapsulate most of the layout. Add some internal props to trigger
18764           layout.  Move to a model where Items invalidate themselves instead
18765           of just invalidating the whole control every time something changes.
18766           - Invalidate on Text/Caption changes.
18767           - switch to an offset based layout model to avoid having to absolute
18768           position every element on item moves.
18769           - correct checkbox layout to conform to MS layout.
18770         * ThemeWin32Classic.cs:
18771           - refactor some column header drawing code.
18772           - fix string justification for column headers (#76821)
18773           - make SmallIcon labels top justified for compat with MS impl.
18774         * ThemeClearlooks.cs:
18775           - adjust to new ListViewItem internal checkbox bounds api.
18776
18777 2006-02-27  Jackson Harper  <jackson@ximian.com>
18778
18779         * Control.cs:  Change where implicit controls fall in the zorder.
18780         They are now on top of all children.
18781         - Synced AddImplicit code with Add
18782         - Removed unused enumerator.
18783         * SizeGrip.cs: Remove the TODO as its been TODONE.
18784
18785 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
18786
18787         * TextControl.cs(Insert): Combine the last lines unless the insertion
18788           string ends with \n\n, otherwise we leave one line too many (Fixes
18789           something I noticed with the testapp for #77526; the bug itself was
18790           already fixed in the previous checkin)
18791
18792 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
18793
18794         * RichTextBox.cs:
18795           - SelectionColor and SelectionFont methods no longer set absolute
18796             styles. Instead, the keep font or color respectively (This 
18797             resolves a long-standing FIXME in the code)
18798           - When flushing RTF text, the insert code now considers text trailing
18799             behind the insertion point (Fixes the bug where when replacing
18800             the selected text via SelectedRTF the remainder of the line behind 
18801             the selection would stay on the first insertion line)
18802         * TextBoxBase.cs:
18803           - AppendText now updates the selection points after inserting text
18804           - AppendText now ensures that the last tag (sometimes 0-length) of
18805             the document is used for the style information (Fixes part of 
18806             bug #77220)
18807         * TextControl.cs:
18808           - Created new FontDefiniton class to allow describing partial style
18809             changes
18810           - StreamLine() now takes a lines argument, to allow it to decide
18811             whether an encountered zero-length tag is the last in the document
18812             (which must be kept to not loose the font/color contained in it,
18813             for later appends)
18814           - Created Combine() and Split() methods for Marker structs, to 
18815             support marker updates due to reformatted documents (soft line
18816             wraps)
18817           - Implemented Document.CaretTag setter
18818           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
18819             of the last line (Not the cause, but also exposed by bug #77220)
18820           - Added LineTag argument to InsertString method, to allow callers
18821             to force a certain tag to be used (required to force use of the
18822             trailing zero-length tag of a document)
18823           - Now updating markers in Combine(), to avoid stale tag markers
18824           - Added some method descriptions to aid maintenance
18825           - Implemented new FormatText concept, allowing additive/subtractive
18826             formatting by only specifying the components that are to be 
18827             changed. This was needed for resolving the RTB.SelectedColor/
18828             RTB.SelectedFont fixmes
18829           - Added Break() support method to allow breaking up linetags (used
18830             for partial formatting)
18831           - Added GenerateTextFormat() method. It is used for partial 
18832             formatting and allows to generate a full font/color from given
18833             attributes and an existing tag.
18834
18835 2006-02-26  Jackson Harper  <jackson@ximian.com>
18836
18837         * XplatUIX11.cs:  Use the correct caption height.
18838         - Translate hittest coordinates to screen coords to match MS.
18839         * XplatUIWin32.cs: When we create MDI windows we need to reset
18840         some of the style flags, so we get a nice blank window, and can
18841         draw all the decorations ourselves.
18842         - Set a clipping rectangle on the non client paint event, the
18843         window manager drawing code needs one.
18844         * Form.cs: The window manager needs to know when the window state
18845         has been updated.
18846         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
18847         don't need to factor in border and title sizes in these
18848         methods. TODO: Remove the args and fix the call points.
18849         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
18850         properly.
18851         - Let the driver set the cursors.
18852         - Improve active window handling
18853         - Correct sizes for title bars and buttons.
18854         - Match MS drawing better
18855         * MdiWindowManager.cs: We don't need to handle border style
18856         updates specially anymore.
18857         - Check for scrollbars when windows are done moving
18858         - Handle Active properly.
18859         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
18860         correctly. I am spewing the exception though, so we don't hide the
18861         bugs.
18862         
18863 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
18864
18865         * DataGridViewRowPostPaintEventArgs.cs,
18866           DataGridViewCellPaintingEventArgs.cs,
18867           DataGridViewRowCollection.cs,
18868           DataGridViewRowPrePaintEventArgs.cs,
18869           DataGridViewCell.cs: Clear a few warnings and implement a few
18870           exceptions that should be thrown.
18871
18872 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
18873
18874         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
18875           'inheriting' our parent's (non-default) cursor. (Part of
18876            the fix for #77479)
18877
18878 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
18879
18880         * XplatUIX11.cs: Fixed cast to make csc happy
18881
18882 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
18883
18884         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
18885           it's for the client area (part of fix for #77479 and needed
18886           for MDI window cursor handling)
18887         * XplatUIX11.cs
18888           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
18889             the appropriate default cursors and also passing the message
18890             up the parent chain 
18891           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
18892             for non-client areas
18893
18894 2006-02-15  Jackson Harper  <jackson@ximian.com>
18895
18896         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
18897         is a real MDI window
18898
18899 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
18900
18901         * X11DesktopColors.cs: Instead of checking the desktop session
18902           string for "KDE" check if it starts with "KDE"
18903
18904 2006-02-10  Jackson Harper  <jackson@ximian.com>
18905
18906         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
18907         systems).
18908
18909 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
18910
18911         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
18912           errors
18913         * ColorDialog.cs:
18914           - Got rid of the panel. All controls are now directly added to
18915             the dialog form
18916           - Changed to mono coding style
18917
18918 2006-02-10  Jackson Harper  <jackson@ximian.com>
18919
18920         * InternalWindowManager.cs: We don't need the set visibility to
18921         false hack anymore now that peter has written beautiful shutdown
18922         code.
18923
18924 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
18925
18926         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
18927           where already explicitly destroyed
18928
18929 2006-02-10  Jackson Harper  <jackson@ximian.com>
18930
18931         * MdiClient.cs: Handle the case where windows are too high or to
18932         the left and we need scrollbars.
18933
18934 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
18935
18936         * MimeIcon.cs: Added some icons
18937         * FileDialog.cs:
18938           - Fixed bug #77477
18939           - Got rid of the panel. All controls are now directly added to
18940             the dialog form
18941           - Changed to mono coding style
18942           - On Linux "My Computer" and "My Network" will now show some
18943             more usefull information. A new class, MasterMount, gathers
18944             this information from /proc/mount. Updated MWFFileView to make
18945             use of this information
18946           - Fixed a bug that caused FileDialog to crash when
18947             ".recently_used" file had a zero size
18948           - FilterIndex does now what it should
18949           - Some Refactoring
18950         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
18951             FileDialog changes
18952
18953 2006-02-09  Jackson Harper  <jackson@ximian.com>
18954
18955         * ComboBox.cs: Don't touch if null.
18956
18957 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
18958
18959         * Cursor.cs: 64bit safeness fix
18960         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
18961
18962 2006-02-09  Jackson Harper  <jackson@ximian.com>
18963
18964         * Form.cs: If a form is made into an MDI form update the styles so
18965         all the props can get set correctly.
18966         - Kill the mdi_container when we dont need it anymore.
18967         * InternalWindowManager.cs: Add missing NOT
18968
18969 2006-02-08  Jackson Harper  <jackson@ximian.com>
18970
18971         * InternalWindowManager.cs: Respek clipping when drawing MDi
18972         decorations.
18973
18974 2006-02-08  Jackson Harper  <jackson@ximian.com>
18975
18976         * Hwnd.cs: Add bits to track non client expose events.
18977         * XplatUIX11.cs: Track non client expose events on the hwnd. This
18978         gives us a proper invalid rect and will allow for some nice
18979         optimizations with NC client drawing
18980         - MDI windows are children windows, so move their style handling
18981         into the child window block.
18982         * InternalWindowManager.cs: Remove a state reset that was
18983         getting invoked at the wrong time. Fixes managed windows getting
18984         into a 'stuck' captured state.
18985
18986 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
18987
18988         * TextControl.cs (Document.ctor): Now initializing 
18989           selection_anchor. Fixes #77493
18990
18991 2006-02-07  Jackson Harper  <jackson@ximian.com>
18992
18993         * TrackBar.cs: The increment/decrements were backwards.
18994
18995 2006-02-07  Mike Kestner  <mkestner@novell.com>
18996
18997         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
18998         to the instance itself.
18999
19000 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
19001
19002         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
19003           on ulongs and pointers, the size differs between 32bit and 64bit
19004           systems. 
19005
19006 2006-02-07  Mike Kestner  <mkestner@novell.com>
19007
19008         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
19009         for 64 bit platforms to work around a metacity bug. 
19010
19011 2006-02-07  Jackson Harper  <jackson@ximian.com>
19012
19013         * TrackBar.cs: Process the input keys we need, and hookup to
19014         KeyDown instead of using WndProc, so we get key messages.
19015
19016 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
19017
19018         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
19019           machine we're on. 
19020         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
19021           we need to translate the XdndVersion atoms array before sending it
19022
19023 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
19024
19025         * XplatUIX11.cs: 
19026           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
19027             number of bits for the property, not the number of bytes. The
19028             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
19029             but would not crash since it specified 8 bits instead of 4 bits)
19030           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
19031             defined as XID -> long in the C headers)
19032           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
19033             references since those are now IntPtr to begin with
19034           - Switched all Atom.XXX 'int' casts to IntPtr casts
19035           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
19036           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
19037           - Added XChangeActivePointerGrab DllImport (for X11DnD)
19038         * X11Structs.cs:
19039           - Changed 'int' type for Atoms in XEvent structures to IntPtr
19040           - Changed atom in HoverStruct to be IntPtr
19041         * X11DnD.cs:
19042           - Removed local DllImports, switched code to use those from XplatUIX11
19043           - Removed/fixed casts related to the switch of Atom to be a IntPtr
19044
19045 2006-02-06  Mike Kestner  <mkestner@novell.com>
19046
19047         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
19048         method signatures in the import region.  There may still be some
19049         lingering struct marshaling issues, as I didn't drill down into those.
19050         Yet.
19051
19052 2006-02-06  Jackson Harper  <jackson@ximian.com>
19053
19054         * ComboBox.cs: Dont manually set the top_item, this is computed
19055         when the scrollbar position is set.
19056
19057 2006-02-06  Mike Kestner  <mkestner@novell.com>
19058
19059         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
19060         startup crashes on amd64.  There's other fixes needed.  All pinvoke
19061         usage of Atom needs to be mapped to IntPtr for example.  And there are
19062         likely other int/long issues to be addressed.
19063
19064 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
19065
19066         * FileDialog.cs: One more...
19067
19068 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
19069
19070         * FileDialog.cs: Next try
19071
19072 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
19073
19074         * FileDialog.cs: First part of fix for #77464
19075
19076 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
19077
19078         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
19079           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
19080           AcceptButton border drawing.
19081
19082 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
19083
19084         * Form.cs: Moved positioning of form after auto scaling is applied,
19085           otherwise it would possibly use wrong form size.
19086
19087 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
19088
19089         * Control.cs (RecreateHandle): No need to re-create any child
19090           controls, the child windows will get destroyed automatically by
19091           the windowing system or driver, and re-created when the handle
19092           is being accessed the first time. Fixes #77456
19093         * Form.cs: No longer setting the form to closing if the handle is 
19094           being recreated. This seems like the right thing to do, don't
19095           have a bug or testcase for this, though.
19096
19097 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
19098
19099         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
19100           controls to avoid unwanted side effects
19101
19102 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
19103
19104         * Control.cs: 
19105           - ScaleCore needs to scale the bounds, not the ClientSize of the 
19106             control. Fixes #77416.
19107           - DefaultSize is 0,0 for control
19108         * TextBoxBase.cs: 
19109           - DefaultSize is 100, 20
19110           - SetBoundsCore: Now enforcing the height, no matter if the provided
19111             height is more or less than the preferred one, as long as AutoSize
19112             is on
19113         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
19114
19115 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
19116
19117         * Control.cs:
19118           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
19119             call unless both performLayout is true *and* we have a pending
19120             layout change
19121           - ResumeLayout: MS does not completely nest Suspend and Resume,
19122             they bottom out at 0, fixed our code to match that.
19123           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
19124             SetBoundsCore, we were updating even when we shouldn't. This fixes
19125             swf-anchors mis-anchoring when resizing the app fast and lots.
19126           - UpdateDistances: Now only setting the left and top distance if 
19127             we have a parent and are not suspended, this is based on
19128             a suggestion by Don Edvaldson in bug #77355.
19129           - OnVisibleChanged: Fixed logic when to create the control. We may
19130             not create the control if we have no parent or if it's not visible;
19131             switched to using Visible property instead of is_visible field 
19132             since the property also considers parent states. This fixes a bug
19133             when starting Paint.Net
19134
19135 2006-02-02  Jackson Harper  <jackson@ximian.com>
19136
19137         * Form.cs: If the forms handle hasn't been created yet don't call
19138         into xplatui to make it top most, just set the topmost flag on the
19139         form in CreateParams
19140         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
19141
19142 2006-02-01  Jackson Harper  <jackson@ximian.com>
19143
19144         * ScrollableControl.cs: Refactored the Recalculate method a
19145         little, this wasn't handling all the variants of bottom and right
19146         bars needed to be added and added/removed based on their
19147         counterparts being added/removed (which changes the drawable
19148         size). Also we special case client widths and heights of 0 and
19149         don't add the scrollbar for those.
19150
19151 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
19152
19153         * XplatUIX11.cs: 
19154           - Added method to get AbsoluteGeometry(); currently unused, but might
19155             be used in the future, if we try again to figure out toplevel
19156             coordinates with some more crappy window managers
19157           - Added FrameExtents() method to retrieve the WM set decoration size
19158           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
19159             to deal with at least KDE, FVWM and metacity (Fixes #77092)
19160         * Hwnd.cs: 
19161           - Added whacky_wm tracking var for metacity
19162           - Added logic to have default menu height if the actual menu height
19163             has not yet been calculated (part of fix for #77426)
19164         * Form.cs: Keep track whether client size has been set and re-set 
19165           it if a menu is added/removed afterwards (Fixes #77426)
19166
19167 2006-01-31  Jackson Harper  <jackson@ximian.com>
19168
19169         * Control.cs: When a new Site is set on the component attempt to
19170         pull the AmbientProperties from it.
19171
19172 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
19173
19174         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
19175           in the background of the owning form. Fixes #77332
19176
19177 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
19178
19179         * MimeIcon.cs: Fix for #77409
19180
19181 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
19182
19183         * XplatUIX11GTK.cs: Initial import
19184
19185 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
19186
19187         * FixedSizeTextBox: fixes class signature
19188
19189 2006-01-30  Jackson Harper  <jackson@ximian.com>
19190
19191         * FixedSizeTextBox.cs: New internal class that represents a
19192         textBox that will not be scaled.
19193         * TreeView.cs:
19194         * ComboBox.cs:
19195         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
19196         standard TextBox.
19197                 
19198 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
19199
19200         * XplatUIX11.cs: Retrieve default screen number instead of
19201           assuming 0. Attempted fix for #77318
19202
19203 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
19204
19205         * XplatUIWin32.cs: 
19206           - GetWindowPos: When a window is parented by FosterParent, use 
19207             the desktop instead of FosterParent as the base to get coordinates
19208           - CreateWindow: Don't make FosterParent the parent window for Popups
19209             if we don't want a taskbar entry, Popups automatically don't get one
19210         * Hwnd.cs: Need to call remove to actually remove the key from the
19211           hash table
19212
19213 2006-01-30  Mike Kestner  <mkestner@novell.com>
19214
19215         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
19216
19217 2006-01-30  Jackson Harper  <jackson@ximian.com>
19218
19219         * TreeView.cs:
19220         * TreeNode.cs: Raise events no matter how the treenode is
19221         checked. Patch by Don Edvalson.
19222
19223 2006-01-30  Jackson Harper  <jackson@ximian.com>
19224
19225         * TreeNode.cs: Signature fix.
19226
19227 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
19228
19229         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
19230
19231 2006-01-20  Mike Kestner  <mkestner@novell.com>
19232
19233         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
19234         event forwarding when menus are active.
19235         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
19236         Most of the patch is pdb's with a little rework.
19237
19238 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
19239
19240         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
19241           Removed GetMenuDC and ReleaseMenuDC methods; replaced
19242           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
19243         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
19244         * InternalWindowManager.cs: Added use of PaintEventStart/End to
19245           handling of WM_NCPAINT message, now passing the PaintEventArgs to
19246           the PaintWindowDecorations method
19247         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
19248         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
19249         * MenuAPI.cs: Made tracker window invisible
19250         * XplatUIWin32.cs:
19251           - Removed GetMenuDC and ReleaseMenuDC methods
19252           - Implemented the client=false path for PaintEventStart and
19253             PaintEventEnd
19254
19255 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
19256
19257         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
19258         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
19259           styles
19260         * Form.cs: 
19261           - MaximizeBox, MinimizeBox: Recreate the handle when setting
19262             the style
19263           - CreateParams: Reworked the styles to match MS look'n'feel,
19264             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
19265             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
19266
19267 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
19268
19269         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
19270           window is not mapped, since otherwise every form that's being 
19271           created is considered minimized, which is wrong.
19272         * Form.cs: Catching the exception and returning our internal value
19273           instead
19274
19275 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
19276
19277         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
19278           SetWindowMinMax() to have means to tell the driver about the minimum,
19279           maximum and maximized state window sizes. (Part of the fix for #76485)
19280         * Form.cs:
19281           - Implemented tracking of minimum and maximum window size, now calling
19282             new SetWindowMinMax() driver method to tell the driver (Part of the
19283             fix for #76485)
19284           - Finished handling of WM_GETMINMAXINFO method, now setting all values
19285             (Completes fix for #76485)
19286           - Calling new SetWindowMinMax driver method when the handle for a 
19287             form is created, to make sure the driver knows about it even if
19288             the values have been set before the window was created
19289           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
19290             to avoid messing up our anchoring calculations (partial fix
19291             for #77355)
19292         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
19293         * XplatUIX11.cs:
19294           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
19295           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
19296             (and presumably other freedesktop.org compliant WMs). Left the
19297             assumption unmapped=minimized, needed for SetVisible to work.
19298           - Now setting the window state when creating windows
19299           - Fixed SetVisible to consider/set the window state when mapping
19300             a Form. We cannot set the state before it's mapped, and we cannot
19301             use Form.WindowState once it's mapped (since it would ask the
19302             driver and get 'normal'. Therefore, we grab the state before
19303             mapping, map, and then set state.
19304           - Implmemented SetWindowMinMax method; Metacity does not seem to
19305             honor the ZoomHints, though.
19306         * XplatUIWin32.cs:
19307           - Removed MINMAXINFO (moved to XplatUIStructs)
19308           - Added SetWindowMinMax stub (on Win32 the only way to set that
19309             information is in response to the WM_GETMINMAXINFO message, which
19310             is handled in Form.cs)
19311           - Added logic to SetVisible to set the proper window state when a 
19312             form is made visible (fixes #75720)
19313
19314 2006-01-26  Jackson Harper  <jackson@ximian.com>
19315
19316         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
19317         same way we handle them with Invoke.
19318
19319 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
19320
19321         * Form.cs:
19322           - Added tracking of window state so CreateParams can return
19323             the appropriate style
19324           - Moved setting of WS_CAPTION style in CreateParams to allow
19325             styles without caption
19326         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
19327           control if the TextBox property is accessed. Fixes #77345
19328         * Control.cs:
19329           - get_Created: now uses is_disposed and is_created to determine
19330             return value (suggested by Jackson)
19331           - CreateHandle: No longer exits if the handle is being recreated
19332           - RecreateHandle: If the handle is not yet created call the 
19333             appropriate method to create either control or handle. If the
19334             control is already created CreateHandle will simply exit instead
19335             of just creating the handle
19336         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
19337           now SendMessage WM_DESTROY directly to the control when DestroyWindow
19338           is called.
19339         * XplatUIX11.cs: 
19340           - When DestroyWindow is called, instead of waiting for the 
19341             DestroyNotification from X11, we directly post it to the WndProc
19342             and immediately dispose the hwnd object.
19343             Same applies to DestroyChildWindows, and this obsoletes the
19344             expose_pending tracking. Contrary to Win32 behaviour we destroy our
19345             child windows before our own, to avoid X11 errors.
19346           - Removed the direct sending of WM_PAINT on UpdateWindow
19347         * XplatUIWin32.cs:
19348           - Reworked DoEvents and GetMessage to allow access to internal queue
19349             even when trying non-blocking access to the queue.  Fixes #77335. 
19350             Based on a patch suggestion by Don Edvalson. The new private
19351             GetMessage can now also be used as a backend for a PeekMessage
19352             frontend version.
19353         * XplatUI.cs: Improved debug output for CreateWindow
19354
19355 2006-01-25  Jackson Harper  <jackson@ximian.com>
19356
19357         * Help.cs: Allow param to be null. Patch by Don Edvalson.
19358
19359 2006-01-24  Jackson Harper  <jackson@ximian.com>
19360
19361         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
19362         when we have a MaxDropItems lower then the selected index.
19363
19364 2006-01-24  Jackson Harper  <jackson@ximian.com>
19365
19366         * Control.cs: Don't allow selection of non visible controls, allow
19367         selection of controls without parents.
19368
19369 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
19370
19371         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
19372         * DataGridDrawingLogic.cs: Add editing row only when is necessary
19373
19374 2006-01-23  Jackson Harper  <jackson@ximian.com>
19375
19376         * UpDownBase.cs: Make the textbox handle all the selection and
19377         tabbing. This fixes tabing to updown controls.
19378
19379 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
19380
19381         * TextBoxBase.cs: fixes exception thown the object was null
19382
19383 2006-01-23  Jackson Harper  <jackson@ximian.com>
19384
19385         * ButtonBase.cs: Just use the base CreateParams. They set
19386         visibility and enabled correctly.
19387         * ComboBox.cs:
19388         * TrackBar.cs:
19389         * MonthCalendar.cs: Lets let the base set as much of the
19390         createparams as possible so we don't have duplicate code all over
19391         the place.
19392
19393 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
19394
19395         * ThemeGtk.cs: Added TrackBar and some experimental code to
19396           get double buffering back
19397
19398 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
19399
19400         * DataGrid.cs: Allows row number set internally higher than the last
19401         when creating a new row. Restores the editing functionality.
19402
19403 2006-01-20  Mike Kestner  <mkestner@novell.com>
19404
19405         * MimeIcon.cs: delay Image creation until the icons are accessed
19406         instead of creating 190 scaled images on GnomeHandler startup.
19407
19408 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
19409
19410         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
19411           first call base before processing the event. Fixes #77279
19412
19413 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
19414
19415         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
19416           that the stride for the GDI bitmap would match the stride of
19417           a DIB or a Cursor.
19418
19419 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
19420
19421         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
19422
19423 2006-01-19  Jackson Harper  <jackson@ximian.com>
19424
19425         * ComboBox.cs: Hookup the text controls keydown event so we get
19426         those when the text control has the focus.
19427
19428 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
19429
19430         * Label.cs: Now using the base events instead of defining new ones;
19431           this allows us to just call the base properties without having to
19432           duplicate all base property logic 
19433
19434 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
19435
19436         * Label.cs: A label by default is not a tabstop (Fixes one of our
19437           failing nunit tests)
19438
19439 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
19440
19441         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
19442         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
19443
19444 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
19445
19446         * Cursor.cs: Reimplemented creating cursor bitmaps without using
19447           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
19448           This fixes #77218
19449         * XplatUIWin32.cs: 
19450           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
19451             constructor creates images that can't be saved. Part of the fix
19452             for #76103
19453           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
19454           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
19455             bug fix for handling window state in forms properly)
19456
19457 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
19458
19459         * ThemeGtk.cs: Simplify ScrollBar drawing
19460
19461 2006-01-18  Jackson Harper  <jackson@ximian.com>
19462
19463         * Splitter.cs: Set the default dock style for the splitter control
19464         in the constructor.
19465
19466 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
19467
19468         * ThemeGtk.cs: Corrected StateType and ShadowType for
19469           gtk_paint_box
19470
19471 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
19472
19473         * Control.cs: Make use of Theme.DoubleBufferingSupported
19474         * ThemeGtk.cs:
19475           - Added drawing for flat style buttons
19476           - Added ScrollBar drawing
19477
19478 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
19479
19480         * ThemeClearlooks.cs: Removed some unneeded code.
19481         * ThemeGtk.cs: First part of ThemeGtk enhancements.
19482
19483 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
19484
19485         * LinkLabel.cs: We need to update the hover drawing when
19486           leaving the control as well.
19487
19488 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
19489
19490         * DataGrid.cs: Clicking on non empty areas in the columns
19491            area was giving an exception
19492
19493 2006-01-17  Jackson Harper  <jackson@ximian.com>
19494
19495         * ThemeWin32Classic.cs:
19496         * ListView.cs: Do not draw/clip the headers when the header style
19497         is None.
19498
19499 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
19500
19501         * DataGrid.cs: Fixes 77260
19502         
19503 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
19504
19505         * DataGrid.cs: Clicking on a column on a empty grid was giving
19506           an exception
19507
19508 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
19509
19510         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
19511           or any keypress will crash the grid.
19512
19513 2006-01-17  Mike Kestner  <mkestner@novell.com>
19514
19515         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
19516         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
19517         invisible/previously-visible items.
19518         [Fixes #76909]
19519
19520 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
19521
19522         * ThemeClearlooks.cs:
19523         - Added CL_Draw_Button method; now other theme controls that are 
19524           not derived from button or do not have a button can draw buttons
19525           too
19526         - Updated ComboBox drawing
19527         - Beautified RadioButton drawing
19528         - Corrected drawing of bottom and left tabs
19529         - Beautified DateTimePicker and MonthCalendar
19530         - Added CPDrawButton and CPDrawRadioButton
19531
19532 2006-01-16  Jackson Harper  <jackson@ximian.com>
19533
19534         * ComboBox.cs: Set the initial value of the scrollbar to the
19535         current index. Reduce the numbers of refreshs and IndexOfs called.
19536
19537 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
19538
19539         * FileDialog.cs: When the file listview is focused hitting the
19540           backspace key moves the fileview to the parent directory
19541
19542 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
19543
19544         * Form.cs: 
19545           - Added RecreateHandle call when changing taskbar visibility to 
19546             trigger reparenting in Win32 driver (Fixes #75719)
19547           - If a window has minimize or maximize buttons, it cannot have
19548             a help button
19549         * XplatUIWin32.cs:
19550           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
19551             the toplevel form with FosterParent (A toolwindow not on the
19552             taskbar) (Fixes #75719)
19553           - Made FosterParent a toolwindow
19554
19555 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
19556
19557         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
19558
19559 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
19560
19561         * ToolTip.cs: If SetToolTip is called from a control and the mouse
19562           is currently over that control, make sure that tooltip_window.Text
19563           gets updated
19564
19565 2006-01-13  Mike Kestner  <mkestner@novell.com>
19566
19567         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
19568
19569 2006-01-13  Jackson Harper  <jackson@ximian.com>
19570
19571         * TreeView.cs: On MS GetNodeAt never actually factors in the X
19572         value passed.  Also redraw the selected node when we recieve
19573         focus, so tabbing between trees works correctly.
19574
19575 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
19576
19577         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
19578           ~/.gconf/%gconf-tree.xml, so use
19579           .gconf/desktop/gnome/interface/%gconf.xml
19580
19581 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
19582
19583         * TextControl.cs: Draw text in gray if control is disabled
19584
19585 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
19586
19587         * TreeView.cs: Draw the focus rectangle outside the highlight, to
19588           make sure it's always visible. Fixes #76680.
19589
19590 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
19591
19592         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
19593
19594 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
19595
19596         * PageSetupDialog.cs: Added.
19597         * PrintDialog.cs: Attributes.
19598         * PrintPreviewControl.cs: Updates.
19599         * PrintPreviewDialog.cs: Updates.
19600         
19601 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
19602
19603         * Control.cs: Undid my selection check fix, since it's not needed
19604         * TextBoxBase.cs:
19605           - Now considering the presence of hscroll/vscroll when sizing
19606             vscroll/hscroll respectively. Fixed bug #77077
19607           - Added Left/Up/Down/Right to IsInputKey list to prevent
19608             ContainerControl from stealing them. This fixes what I broke
19609             with my last checkin.
19610
19611 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
19612
19613         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
19614           I finally understand how the property can be set without a setter :-)
19615
19616 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
19617
19618         * Application.cs:
19619           - Switched RunLoop to use static Message.Create to create a 
19620             Message object
19621           - Added PreProcessMessage call in runloop for keyboard events; this
19622             is part of the fix for #77219, I overlooked this originally in the
19623             MSDN doc for PreProcessMessage
19624         * Control.cs:
19625           - Removed call to PreProcessMessage from handling of keyboard 
19626             messages; it's supposed to be done in the message pump
19627           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
19628             per MSDN documentation.
19629           - IsInputChar: All chars are input chars by default; removed the 
19630             parent calling chain, MS does not document that
19631           - PreProcessMessage: If IsInputChar is true, we want to return false
19632             to allow dispatching of the message
19633           - When selecting the next control, now also check that we're not
19634             selecting ourselves again and therefore return a false positive.
19635         * TextBoxBase.cs:
19636           - Tried to match return values for IsInputKey and ProcessDialogKey
19637             to what MS returns; moved processing of our special keys outside
19638             ProcessDialogKey since MS does not seem to return true on those.
19639           - Moved code that previously was in ProcessDialogKey into new private
19640             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
19641           - Reworked handling of WM_CHAR to not have to duplicate code from
19642             Control.cs anymore, instead we simply call down to base.
19643            
19644 2006-01-12  Jackson Harper  <jackson@ximian.com>
19645
19646         * ComboBox.cs: We always need to refresh the text area when
19647         EndUpdate is called. Fixes the combobox in the file dialog.
19648         * Control.cs: Don't create the creator_thread until the controls
19649         handle is created.  Also in InvokeRequired we check if the
19650         creator_thread is null. This gives the effect of InvokeRequired
19651         returning true if the controls handle is not created yet, and
19652         matches MS.
19653
19654 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
19655
19656         * XplatUI.cs:
19657           - Added StartLoop() driver method. This is used to allow drivers to
19658             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
19659             loop for a particular thread
19660           - Added EndLoop() driver method. This is called once the message
19661             pump for the thread is shut down
19662           - Added SupportsTransparency method to allow the driver to indicate
19663             opacity support for windows
19664         * Form.cs:
19665           - Removed TODO attribute, completed AllowTransparency property
19666           - Added documented logic to Opacity
19667         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
19668           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
19669           versions of CompatibleTextRendering
19670         * X11Structs.cs: Added opacity atom to our atom enumeration
19671         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
19672           of a form might be set before it's reparented by the WM, and we need
19673           the opacity value without calling up to Form)
19674         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
19675           SupportsTransparency() driver methods
19676         * Application.cs: Now calling StartLoop and EndLoop driver methods
19677         * XplatUIX11.cs:
19678           - Added opacity atom registration
19679           - Added StartLoop()/EndLoop() methods. They're empty right now but
19680             will need to get implemented when we switch to a per-thread queue
19681           - Implemented SupportsTransparency() method
19682           - Implemented SetWindowTransparency() method
19683           - Added support for setting the opacity value when a window is
19684             reparented (since the opacity needs to be set on the WM frame)
19685         * XplatUIOSX.cs, XplatUIWin32.cs:
19686           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
19687
19688 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
19689
19690         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
19691
19692 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
19693
19694         * FileDialog.cs: Added ToolTip for MWFFileView
19695         * MimeIcon.cs: Rewrote GnomeHandler.
19696           - Get currently used gnome icon theme from
19697             ($HOME)/.gconf/%gconf-tree.xml
19698           - Make use of inherited icon themes
19699           - Support SVG icon themes like Tango via librsvg
19700
19701 2006-01-12  Miguel de Icaza  <miguel@novell.com>
19702
19703         Revert's Jackson's revert which broke 2.0 builds.   Fix both
19704         builds. 
19705         
19706         * Application.cs: Move the use_compatible_text_rendering outside
19707         the NET_2_0 define.  If we ever need to use the
19708         use_compatible_text_rendering on the individual controls they will
19709         access the variable from the common shared code paths.
19710
19711 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
19712
19713         * XplatUI.cs:
19714           - Added more granular debug options
19715           - Added method to print both window text and id
19716           - Switched debug output to use new Window() debug method
19717           - Added IsEnabled() driver method
19718           - Added EnableWindow() driver method
19719         * Form.cs:
19720           - Removed end_modal; no longer needed, new loop handles termination
19721             via 'closing' variable
19722           - If form is modal, setting DialogResult will now initiate loop
19723             termination via 'closing' variable
19724           - Added support for is_enabled/WS_DISABLED to CreateParams
19725           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
19726             does all the work
19727           - Removed code that's now in RunLoop from ShowDialog()
19728           - Added various documented sanity checks to ShowDialog()
19729           - Added handling of WM_DESTROY message; we set 'closing' on getting
19730             the message to indicate the message pump to terminate
19731           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
19732             send by the Application.ExitThread method. (We send the message
19733             to destroy the window after all other events have been
19734             processed through the queue, instead of destroying the handle 
19735             directly)
19736           - Moved code from Close() method to WM_CLOSE handler; added logic
19737             to only send close-related events if the form is not displayed
19738             modal
19739         * Splitter.cs (..ctor): Fixed typo in resource name
19740         * Control.cs:
19741           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
19742             brush now
19743           - set_Cursor: Now only setting calling into XplatUI if the handle for
19744             the control is already created; this avoids implict handle creation
19745             or crashes if it's not created
19746           - set_Enabled: Now setting the enabled state via the new driver method
19747             instead of just tracking it
19748           - CreateParams: Added logic to set WS_DISABLED based on enabled state
19749           - CreateControl: Reordered event firing and method calls to more
19750             closely fire events in the order MS does. Now setting the
19751             enabled state in the driver when creating the control.
19752           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
19753             match MS order
19754         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
19755           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
19756         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
19757         * Hwnd.cs:
19758           - Added tracking of window enabled state (get_Enabled/set_Enabled)
19759           - Added EnabledHwnd property to easily allow a driver to find the
19760             handle of the first enabled window in the parent chain (this is
19761             used by drivers to pass up input events of disabled windows)
19762         * XplatUIDriver.cs: Added IsEnabled() method
19763         * Application.cs:
19764           - Removed crude and obsolete exiting tracking variable
19765           - Removed internal ModalRun(); replaced by RunLoop()
19766           - Implemented private CloseForms() method to allow closing all 
19767             windows owned by a particular (or all) threads
19768           - Exit() now properly closes all windows without forcing the message
19769             pump to quit
19770           - Removed obsolete InternalExit() method
19771           - Changed Run() methods to use new RunLoop() message pump
19772           - Implemented new RunLoop() method for both modal and non-modal forms
19773         * CommonDialog.cs:
19774           - get_CreateParams: Added setting of WS_DISABLED
19775           - Simplified ShowDialog(); now all the work is done in RunLoop(),
19776             invoked via Form.ShowDialog()
19777         * NativeWindow.cs: We don't remove the window from the collection when
19778           the handle is destroyed; there might still be messages for it in the
19779           queue (mainly the resulting WM_DESTROY); instead it will be removed
19780           when Control calls InvalidateHandle in the WM_DESTROY handler
19781         * XplatUIX11.cs:
19782           - CreateWindow: Added logic to handle the WS_DISABLED window style
19783           - EnableWindow: Implemented based on Hwnd.Enabled
19784           - GetMessage: Reset PostQuitState so the method can be called again
19785           - Implemented support for disabled windows (passing messages to the
19786             first enabled parent) in handling all input messages
19787           - Added optimizations for handling Expose events
19788           - Implemeted new driver method IsEnabled()
19789           - Now always resetting paint pending tracking vars when we start paint
19790           - Re-implemented UpdateWindow via just sending a WM_PAINT message
19791         * XplatUIOSX.cs: Added IsEnabled method stub
19792         * XplatUIWin32.cs: Implemented new IsEnabled() method
19793
19794 2006-01-11  Jackson Harper  <jackson@ximian.com>
19795
19796         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
19797         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
19798         variables a little.
19799         * ColorDialog.cs: Clear out the old form before adding the new
19800         panel.  
19801
19802 2006-01-11  Jackson Harper  <jackson@ximian.com>
19803
19804         * X11Dnd.cs: Make sure to add all the text formats when adding
19805         strings to the data object.
19806         * TreeNodeCollection.cs: When adding to a sorted tree we need to
19807         do some redrawing too.  Also change the UpdateNode to an
19808         UpdateBelow so the newly added node gets painted.
19809         
19810 2006-01-11  Miguel de Icaza  <miguel@novell.com>
19811
19812         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
19813         LinkLabel.cs, PropertyGrid.cs: Implement the
19814         UseCompatibleTextRendering property for 2.x
19815
19816         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
19817
19818 2006-01-11  Jackson Harper  <jackson@ximian.com>
19819
19820         * TreeView.cs: Use the property for setting the selected node so
19821         the correct events get raised.
19822         * TreeNode.cs: Update the tree when the fore/back colours of a
19823         node are set.
19824
19825 2006-01-10  Jackson Harper  <jackson@ximian.com>
19826
19827         * TreeView.cs: Allow setting SelectedNode to null.
19828
19829 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19830
19831         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
19832
19833 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19834
19835         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
19836
19837 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19838
19839         * PrintDialog.cs: Added attributes and set default property values.
19840
19841 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19842
19843         * PrintControllerWithStatusDialog.cs: 
19844         Added PrintControllerWithStatusDialog.
19845
19846 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19847
19848         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
19849         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
19850
19851 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19852
19853         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
19854
19855 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
19856
19857         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
19858         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
19859
19860 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
19861
19862         * MimeIcon.cs: Added internal class SVGUtil.
19863
19864 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
19865
19866         * FileDialog.cs: Don't crash if there are two files with the
19867           same name but different locations.
19868
19869 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
19870
19871         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
19872         dates across multiple month grids. Used to not highlight entire 
19873         month, but does now.
19874         
19875 2006-01-06  Jackson Harper  <jackson@ximian.com>
19876
19877         * MonthCalendar.cs: Removed DoEvents call to prevent a running
19878         message loop. Change timer intervals to numbers that seem more
19879         natural.
19880
19881 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
19882
19883         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
19884           object for location info since screen object is now implemented.
19885
19886 2006-01-05  Jackson Harper  <jackson@ximian.com>
19887
19888         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
19889         * AsyncMethodResult.cs: We no longer use a WeakReference for the
19890         AsyncMethodResult, this is because we ALWAYS want the
19891         ManualResetEvent to get set.
19892         * Control.cs: When disposing use an async invoke to call shutdown
19893         code, so that thigns don't block on the finalizer thread.  Also
19894         check if we even have a message loop before trying to send
19895         messages, if we don't then don't bother sending messages.
19896         - No more weak references for async methods
19897         * XplatUIDriver.cs: No more weak references for async methods.
19898
19899 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
19900
19901         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
19902           returns two FontFamily with the same name
19903
19904 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
19905
19906         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
19907           drawing disabled text. Instead using the ColorGrayText color
19908
19909 2006-01-04  Jackson Harper  <jackson@ximian.com>
19910
19911         * TreeNode.cs: redraw the node when its image index is changed.
19912
19913 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
19914
19915         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
19916           time I checked there are no others like it.
19917
19918 2006-01-04  Jackson Harper  <jackson@ximian.com>
19919
19920         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
19921         this gives the behavoir I was looking for.
19922         * Control.cs: Special case Invoking EventHandlers, this matches MS
19923         and fixes part of bug #76326.
19924
19925 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
19926
19927         * ThemeClearlooks.cs, FileDialog.cs:
19928           - Reflect the latest Theme class changes
19929           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
19930             with DateTime
19931             
19932 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
19933
19934         * Theme.cs: Cache UI resource images and resize them if needed
19935
19936 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
19937
19938         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
19939           is called. This fixes the crash in Nexxia when setting the font
19940           attributes in the chat. [However, RTF needs a look-over to make sure
19941           that all SelectionXXX methods handle the special case that selection
19942           is empty and therefore the change must be applied to all text starting
19943           at the cursor/selection start]
19944
19945 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
19946
19947         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
19948           XplatUIOSX.cs: Added SendMessage and PostMessage methods
19949         * X11Keyboard.cs: Switched to new way of calling PostMessage
19950
19951 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
19952
19953         * Theme.cs: Added theme interface for images to allow the theme to
19954           control what images are used for things like FileDialog, MessageBox
19955           icons, etc.
19956         * MessageBox.cs: Now uses the new Theme icon/image interfaces
19957
19958 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
19959
19960         * FileDialog.cs:
19961           - Removed some dead code
19962           - Opening a recently used file does work now
19963           - Small UI enhancements
19964           - Refactoring
19965
19966 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
19967
19968         * FileDialog.cs: Forgot too add __MonoCS__
19969
19970 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
19971
19972         * FileDialog.cs: We are able to read recently used files now let's
19973           go on and write them.
19974
19975 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
19976
19977         * FileDialog.cs: Breathe some life into "last open"/"recently used"
19978           button
19979         * MimeIcon.cs: Do a check for the top level media type also
19980
19981 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
19982
19983         * ThemeClearlooks.cs:
19984           - Added CPDrawStringDisabled
19985           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
19986             some chars if the text doesn't fit into text_rect
19987           - DrawListViewItem: If View = View.LargeIcon center the image;
19988             rewrote the drawing of ListViewItem.Text if View = 
19989             View.LargeIcon
19990
19991 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
19992
19993         * MimeIcon.cs: Use default KDE icon theme if there is no
19994           "48x48" directory for the current icon theme, fixes #77114
19995         * Mime.cs: Disable not working and actually not used code. 
19996         * ThemeWin32Classic.cs:
19997           - Replace "new SolidBrush" in GetControlBackBrush and
19998             GetControlForeBrush with ResPool.GetSolidBrush
19999           - Changed DrawListViewItem from private to protected virtual
20000         * FileDialog.cs:
20001           - Added form.MaximizeBox = true
20002           - Don't throw an exception if there is a broken symbolic link
20003
20004 2005-12-23  Jackson Harper  <jackson@ximian.com>
20005
20006         * TabControl.cs: Give the panels focus, keyboard navigation is
20007         fixed so this works correctly now.
20008         - We need these key events also.
20009         * ToolBar.cs: Remove some of the poor mans double buffering.
20010         
20011 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
20012
20013         * ComboBox.cs: The internal TextBox now returns the focus.
20014
20015 2005-12-23  Jackson Harper  <jackson@ximian.com>
20016
20017         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
20018
20019 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
20020
20021         * Control.cs: Removed debug code
20022         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
20023           implicit children
20024
20025 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
20026
20027         * Control.cs: When creating the control, update the Z-order after
20028           all it's children are created, too. (Fixes nexxia not showing
20029           picturebox bug)
20030
20031 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
20032
20033         * Control.cs: Do not update the anchoring distances if layout is
20034           suspended, instead do it once layout is resumed
20035
20036 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
20037
20038         * Control.cs: 
20039           - After many hours of debugging, for both Jackson and
20040             myself, it turns out that it helps to set the parent of a control
20041             if you want to actually see it onscreen. In the spirit of that
20042             discovery, we're now setting the parent of the control and
20043             it's children when the control's handle is created. This fix
20044             will make Lutz Roeder's Reflector run happily. 
20045           - now just creating the handle instead of the whole control when
20046             getting a graphics context for the control.
20047
20048 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
20049
20050         * ScrollableControl.cs: When calculating the canvas, don't consider
20051           the scrollbar widths. Instead, predict if horizontal scrollbar
20052           will affect canvas when deciding on vertical display and vice versa.
20053
20054 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
20055
20056         * RichTextBox.cs: Set default RTF font for documents that don't
20057           have a font table (Fixes #77076)
20058
20059 2005-12-22  Jackson Harper  <jackson@ximian.com>
20060
20061         * TextBoxBase.cs: It's difficult to do, but you can have an empty
20062         clipboard. This prevents a NullRef in that case.
20063         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
20064         clipboard. PRIMARY is for the currently selected text only. (We
20065         should implement PRIMARY at some point.
20066
20067 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
20068
20069         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
20070           a Unicode function with a structure that was defined in Ansi way.
20071           This fixes #76942.
20072
20073 2005-12-21  Jackson Harper  <jackson@ximian.com>
20074
20075         * StatusBar.cs: Statusbar handles its fore/back colours on it's
20076         on. Because thats how it rolls. (and this avoids it using ambient
20077         colours).
20078         * ThemeWin32Classic.cs: Use the proper back color for filling.
20079         * Menu.cs: Use the system menu bar color for drawing menu
20080         bars. Using the window back color will bring ambient colours into
20081         the picture.
20082
20083 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
20084
20085         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
20086           Bitmaps were created and not disposed.
20087
20088 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
20089
20090         * Control.cs (CreateControl): Don't do anything if the control is
20091           already created, otherwise we'd fire the OnCreated event more than
20092           once
20093
20094 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
20095
20096         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
20097           will always match. Instead return -1. Fixes #76464.
20098
20099 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
20100
20101         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
20102           neither the beginning nor the end of the line (Fixes bug #76479)
20103
20104 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
20105
20106         * Control.cs:
20107           - ControlNativeWindow.ControlFromHandle(): Now handling situation
20108             where handle is invalid
20109           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
20110             instead of slower linear search
20111         * NativeWindow.cs: Don't remove the window from the hashtable until
20112           after the driver has destroyed it (since the driver might use
20113           Control.FromHandle to lookup the control object
20114         * Hwnd.cs: Added DestroyPending property to track if a window is 
20115           already destroyed as far as the driver is concerned and only hasn't
20116           yet notified the control
20117         * XplatUIX11.cs:
20118           - Activate(): Check if the window is still valid before using the 
20119             handle
20120           - Implemented DestroyChildWindow() method to mark child windows as
20121             destroyed when a window is destroyed. This prevents situations 
20122             where we might call an X method based on queued events for a
20123             window that already has been destroyed but we haven't yet pulled
20124             the destroy method from the queue.
20125           - Added a call to the new DestroyChildWindow() method to the drivers
20126             DestroyWindow code. Also now marking the destroyed window itself
20127             as pending
20128
20129 2005-12-20  Jackson Harper  <jackson@ximian.com>
20130
20131         * StatusBar.cs:
20132         * StatusBarPanel.cs: Don't calculate panel sizes on draw
20133         anymore. Just do them when needed, also track the rects of panels
20134         so that we can optimize refreshing more in the future.
20135
20136 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
20137
20138         * ColorDialog.cs: Fixed focus drawing in small color controls
20139
20140 2005-12-19  Jackson Harper  <jackson@ximian.com>
20141
20142         * InternalWindowManager.cs:
20143         * MdiWindowManager.cs: Cleanup some coordinate system changes so
20144         moving windows works properly.
20145
20146 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
20147
20148         * Control.cs: 
20149           - Removed call to InitLayout() from SetBoundsCore(); doc says
20150             it's only called when a control is added to a container
20151           - Split InitLayout logic, moved to separate UpdateDistances() method
20152             since we need to perform those calculations more often than just
20153             when adding the control to a container. (Needed to fix #77022)
20154           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
20155           - Reduced the OnBindingContextChanged events count, don't send them
20156             unless the control is created, we still aren't totally matching
20157             MS, but I can't quite figure out some of their rules
20158
20159 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
20160
20161         * ThemeClearlooks.cs: Corrected distance between ProgressBar
20162           stripes
20163
20164 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
20165
20166         * ThemeClearlooks.cs:
20167           - Updated ProgressBar drawing
20168           - Corrected drawing of ScrollBars and scroll buttons
20169           - Some temporary fixes for minor pixel artefacts
20170
20171 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
20172
20173         * Control.cs:
20174           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
20175             cause events to be sent in the same order as MS does.
20176           - Added ChangeParent() method to trigger various OnXXXChanged events
20177             that need to be fired when a parent changes (This is a reworking
20178             of the patch from r54254, with the X11 errors fixed)
20179           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
20180             since on MS we get OnLayoutChanged events when calling Clear()
20181           - Changed Enabled property to consider parent state as well, if a
20182             parent is not enabled, the control will not be either
20183           - Changed Parent property to simply call Controls.Add() since that
20184             now does all the work required, this way we avoid code duplication
20185           - Threw in a few OnBindingsContextChanged calls to try and match
20186             when MS sends them. We seem to send a few too many, though.
20187           - Added call to CreateControl when adding the control to a parent.
20188             We were never calling CreateControl. Still needs some work, in
20189             some places we treat HandleCreated and ControlCreated as equal, 
20190             which is wrong
20191           - Removed obsolete commented out code from UpdateZOrder()
20192
20193 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
20194
20195         * ThemeClearlooks.cs: Updated TrackBar drawing.
20196
20197 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
20198
20199         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
20200
20201 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
20202
20203         * FileDialog.cs: Add the Help button and the open readonly
20204           checkbox only if needed
20205
20206 2005-12-16  Jackson Harper  <jackson@ximian.com>
20207
20208         * Control.cs: Make sure we have an active menu before trying to
20209         process commands on it. Prevents menu-less forms from crashing
20210         when Alt is pressed.
20211         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
20212         Dieter Bremes.
20213         * RichTextBox.cs: Expand statement to help out gmcs and fix the
20214         2.0 build.
20215
20216 2005-12-16  Jackson Harper  <jackson@ximian.com>
20217
20218         * InternalWindowManager.cs: Don't translate tool windows screen
20219         coordinates. This fixes windows 'bouncing' around when being moved.
20220
20221 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
20222
20223         * TextBoxBase.cs:
20224           - MaxLength now treats 2^31-1 equal to unlimited length (this is
20225             not quite MS compatible, MS uses that number only for single line
20226             and 2^32-1 for multi-line, but I figure it won't hurt keeping
20227             the limit at 2GB)
20228           - Now enforcing the MaxLength limit when entering characters
20229           - Added argument to internal Paste() method to track if it's called
20230             from programatically or via keyboard, since keyboard driven pastes
20231             need to enforce max-length
20232           - Added logic to Paste to only paste as many chars as MaxLength 
20233             allows
20234         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
20235         * TextControl.cs:
20236           - Added Length property to return number of characters in document
20237           - Added private CharCount property which only tracks actual chars
20238             in the document (no linefeeds) and fires event when CharCount
20239             changes
20240           - Added tracking of character count to all methods that alter it
20241           - Added LengthChanged event to allow applications to subscribe
20242             to any changes to the document
20243
20244 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
20245
20246         * TextBox.cs: 
20247           - Removed local password_char field (moved to TextBoxBase)
20248           - Now setting the document's password var when password is
20249             set
20250         * TextBoxBase.cs:
20251           - Added password_char field (needed here so MultiLine can
20252             access it)
20253           - Added logic to MultiLine property setter to set the document's
20254             variable when password display is allowed
20255           - Removed debug code and made some debug code conditional
20256         * TextControl.cs:
20257           - Added RecalculatePasswordLine() method to handle special password
20258             char only lines
20259           - Added PasswordChar property, also added related tracking vars
20260           - Draw() method now uses local text var for grabbing text to draw,
20261             this var is set to line.text unless we're doing password display,
20262             then it is set to the pre-generated all-password-chars line
20263           - Added calling RecalculatePasswordLine() method for password lines
20264
20265 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
20266
20267         * Hwnd.cs: 
20268           - Added Reparented property to allow tracking of Window Manager
20269             reparenting actions (which affect X/Y calculations of toplevel 
20270             windows)
20271           - Made ToString() print window handles in hex
20272         * XplatUIX11.cs:
20273           - AddConfigureNotify(): Now uses reparented state off Hwnd to
20274             determine if X/Y needs offsetting
20275           - AddConfigureNotify(): Fixed offset calculations
20276           - Now adds ReparentNotify messages into the queue
20277           - Now processes ReparentNotify messages and causes a 
20278             WM_WINDOWPOSCHANGED message to be sent upstream if a window
20279             is reparented (as most likely it's X/Y coordinates are changed
20280             due to that)
20281
20282 2005-12-14  Jackson Harper  <jackson@ximian.com>
20283
20284         * XplatUIX11.cs: Tool windows still need to respek focus.
20285
20286 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
20287
20288         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
20289           have a working release
20290
20291 2005-12-13  Jackson Harper  <jackson@ximian.com>
20292
20293         * Form.cs: Update styles after setting the border style regardless
20294         of whether or not the window is using a window manager.
20295
20296 2005-12-13  Jackson Harper  <jackson@ximian.com>
20297
20298         * Form.cs: We now hook into an internal window manager instead of just an
20299         MDI subsystem, this is so we can have properly behaving tool windows.
20300         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
20301         * InternalWindowManager.cs: New internal class that acts as a
20302         window manager for tool windows and as a base for mdi windows.
20303         * MdiWindowManager.cs: New class that acts as a window manager for
20304         mdi windows.
20305
20306 2005-12-12  Jackson Harper  <jackson@ximian.com>
20307
20308         * Control.cs: Updates so we match behavoir for for implicit
20309         controls. Fixes explosions in MDI.
20310
20311 2005-12-12  Jackson Harper  <jackson@ximian.com>
20312
20313         * Control.cs: Implement Invalidate (Region).
20314
20315 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
20316
20317         * Control.cs: 
20318           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
20319             the same events as MS does. MS fires events for each property 
20320             except, for unknown reasons, Cursor, when the control is reparented. 
20321             I can't seem to totally match add/remove since MS also fires some 
20322             VisibleChanged events, which makes no sense. Consolidated the
20323             parenting code into a separate method so it can be called from
20324             both Add and Remove. set_Parent no longer needs any special logic
20325             as it calls the parent's add method which implicitly fires
20326             all events
20327           - Removed some obsolete code and debug output
20328           - Enabled state is inherited from parents, if this is enabled
20329
20330 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
20331
20332         * Form.cs: Removed commented out code
20333
20334 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
20335
20336         * Control.cs:
20337           - Added internal version of Invoke, with additional argument 
20338             indicating if we're calling it from a Dispose() handler. That
20339             way we can avoid BeginInvoke throwing an exception if we're
20340             calling for an already destroyed window.
20341           - Added a dispose argument to BeginInvokeInternal, and made the
20342             check if a valid window handle chain exists conditional on
20343             it not being a dispose call
20344           - Removed code in DestroyHandle to destroy our children. Since we
20345             now handle the WM_DESTROY message we will catch all our children
20346             being destroyed.
20347           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
20348         * Form.cs:
20349           - Added a field to track the application context of the form.
20350           - No need to set closing variable as response to WM_CLOSE, instead
20351             we destroy the window. We also call PostQuitMessage if the form
20352             has an application context (which makes it the main app form,
20353             which, when closed terminates the app)
20354         * XplatUI.cs:
20355           - Dropped Exit() method, it's naming was confusing
20356           - Added PostQuitMessage() which causes GetMessage to return false
20357             once the message queue is empty
20358         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
20359           PostQuitMessage()
20360         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
20361           no longer a valid XplatUI method, but left it in since it's used
20362           internally. Added empty PostQuitMessage() method.
20363         * MenuAPI.cs: Replaced call to Exit() with call to
20364           PostQuitMessage, even though this is probably no longer needed.
20365         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
20366         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
20367         * Application.cs:
20368           - Replaced call to XplatUI.Exit() with PostQuitMessage()
20369           - Removed old debug code that would call XplatUI for exception
20370             display, enabled standard exception handling (Still not enabled
20371             though, until NativeWindow's ExternalExceptionHandler define
20372             is removed
20373         * NativeWindow.cs:
20374           - Added internal method to allow control to update NativeWindow
20375             after a window has been destroyed
20376           - Added handling of already destroyed windows when calling i
20377             DestroyWindow
20378           - Added removal of handle from list on ReleaseHandle
20379         * XplatUIX11.cs:
20380           - Dropped GetMessageResult var and related code
20381           - Added PostQuitState to field to track if PostQuitMessage has been
20382             called
20383           - Dropped Exit() method
20384           - Added PostQuitMessage() method
20385           - GetMessage now will return false if PostQuitState is set and no
20386             more messages are in the queue.
20387           - Expose handler will no longer generate WM_PAINT messages if we are
20388             in PostQuitState since it's very likely any windows have already
20389             been destroyed, and since Hwnd won't get updated until we have
20390             processed the DestroyNotify we'd be causing X errors.
20391         
20392 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20393
20394         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
20395           Thanks to Mike for pointing out the err of my ways.
20396
20397 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20398
20399         * Control.cs(PreProcessMessage): Moved menu handling back, but
20400           after all other key handling, to match MS (who handles Menu in
20401           DefWndProc)
20402         * Menu.cs (WndProc): Removed my brainfart
20403
20404 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20405
20406         * Control.cs(PreProcessMessage): Removed special menu handling 
20407         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
20408
20409 2005-12-07  Mike Kestner  <mkestner@novell.com>
20410
20411         * Control.cs : special case SYSKEYUP so that we can adjust keynav
20412         state according in tracker.
20413         * Menu.cs : promote tracker field to base class and provide a tracker
20414         lookup capability.  Add/Remove shortcuts dynamically if the top menu
20415         has a tracker. Unparent items that are removed from the collection.
20416         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
20417         * Theme*.cs: add always_show_hotkeys field to support configurability
20418         of mnemonic display.  win32 doesn't show mnemonics until Alt is
20419         pressed.
20420
20421 2005-12-07  Jackson Harper  <jackson@ximian.com>
20422
20423         * MdiChildContext.cs: Use Control.ResetCursor.
20424         * Control.cs: ResetCursor needs to set the property so that the
20425         correct XplatUI call gets made.
20426
20427 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20428
20429         * Control.cs: More fixes to make our key events match MS. We
20430           were not setting the modifier state on KeyData, and we were
20431           not generating any events when Alt was pressed with a key
20432           since handling of WM_SYSxxx was missing for the OnKey methods.
20433
20434 2005-12-07  Jackson Harper  <jackson@ximian.com>
20435
20436         * MdiChildContext.cs: reenable the sizing code.
20437         - When the mouse leaves a window reset its cursor.
20438
20439 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
20440
20441         * ThemeClearlooks.cs: Reflect latest Hwnd changes
20442
20443 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20444
20445         * Hwnd.cs: Now using the theme 3d bordersize to calculate
20446           widths of Fixed3D borders
20447
20448 2005-12-07  Jackson Harper  <jackson@ximian.com>
20449
20450         * MdiClient.cs: Fix warnings. Earn Mike's love.
20451
20452 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
20453
20454         * ThemeClearlooks.cs:
20455           - Adjusted mouse over button color
20456           - Added first parts of CheckBox drawing
20457           - Added correct color for selected text background
20458           - Fixed ComboBox drawing
20459           - Added CPDrawBorder3D and CPDrawBorder
20460
20461 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
20462
20463         * XplatUIX11.cs: Added call to XBell for AudibleAlert
20464
20465 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
20466
20467         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
20468           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
20469           alert users via sound. We could add an enum arg with different
20470           types of alerts in the future
20471
20472 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
20473
20474         * Control.cs: Fix behaviour problems pointed out by Mike
20475
20476 2005-12-05  Mike Kestner  <mkestner@novell.com>
20477
20478         * StatusBarPanel.cs: add Invalidate method and hook it into all the
20479         prop setters.  Calls parent.Refresh for now, but could be maybe be
20480         optimized with an internal method on StatusBar at some point.
20481         [Fixes #76513]
20482
20483 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
20484
20485         * RichTextBox.cs: Implemented get_SelectionColor
20486
20487 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
20488
20489         * ThemeClearlooks.cs:
20490           - Removed dead code
20491           - Draw black button border only if button is Form.AcceptButton
20492           - Draw correct button color for pressed RadioButton if the mouse 
20493             has entered the button
20494           - Updated ProgressBar drawing!
20495           - Updated CPDrawSizeGrip drawing
20496           - Updated StatusBarPanel drawing
20497
20498 2005-12-05  Mike Kestner  <mkestner@novell.com>
20499
20500         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
20501         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
20502
20503 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
20504
20505         * ThemeClearlooks.cs: Initial check-in, activate with
20506           export MONO_THEME=clearlooks
20507         * ThemeEngine.cs: Added ThemeClearlooks
20508
20509 2005-12-03  Mike Kestner  <mkestner@novell.com>
20510
20511         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
20512         [Fixes #76897]
20513
20514 2005-12-02  Jackson Harper  <jackson@ximian.com>
20515
20516         * Form.cs: If the child form has no menu the default main menu is
20517         used as the active menu.
20518
20519 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
20520
20521         * ListBox.cs: Check if any items exist before trying to resolve 
20522           coordinates into items
20523
20524 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
20525
20526         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
20527           as the second color for the background hatch
20528
20529 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
20530
20531         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
20532         * RichTextBox.cs: FormatText position arguments are 1-based, now making
20533           sure that what we pass to FormatText is always 1-based. Fixes #76885
20534
20535 2005-11-29  Miguel de Icaza  <miguel@novell.com>
20536
20537         * NumericUpDown.cs (EndInit): When we are done initializing,
20538         reflect any updates on the UI.
20539
20540 2005-12-02  Jackson Harper  <jackson@ximian.com>
20541
20542         * ImplicitHScrollBar.cs:
20543         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
20544         their container controls.
20545         * TreeView.cs: Use the new implicit scrollbars.
20546
20547 2005-12-02  Jackson Harper  <jackson@ximian.com>
20548
20549         * TreeView.cs: Make top_node internal so the TreeNodeCollections
20550         can play with it.
20551         * TreeNodeCollection.cs: If we remove the topnode we need to
20552         update topnode to the next node in line.
20553         - When clearing nodes go through the same process as removing
20554         them, so they get depareneted and checked if they are top node.
20555
20556 2005-12-01  Jackson Harper  <jackson@ximian.com>
20557
20558         * TreeView.cs: When imagelists are used the image area is
20559         selectable as well as the text.
20560         - If there are no selected nodes select the first one.
20561         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
20562         so don't do it more then we need to.
20563
20564 2005-12-01  Jackson Harper  <jackson@ximian.com>
20565
20566         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
20567         that arrows can be scaled.
20568
20569 2005-12-01  Jackson Harper  <jackson@ximian.com>
20570
20571         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
20572         fail. Patch by Dieter Bremes
20573
20574 2005-11-30  Jackson Harper  <jackson@ximian.com>
20575
20576         * Form.cs: Property is 2.0 only
20577         * PrintDialog.cs: Signature fix.
20578
20579 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
20580
20581         * TextControl.cs: 
20582           - No longer artificially moves text 2 pixels down (now that we have
20583             borders this is no longer needed)
20584           - Added calcs for left, hanging and right indent
20585
20586 2005-11-23  Mike Kestner  <mkestner@novell.com>
20587
20588         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
20589
20590 2005-11-30  Jackson Harper  <jackson@ximian.com>
20591
20592         * MdiChildContext.cs: Set the cloned menus forms, as these don't
20593         get cloned as part of CloneMenu ().
20594         * Menu.cs: Make sure the parent of the items get set correctly
20595         when they are added.  And the owners are notified of the changes.
20596         * Form.cs: Create an ActiveMenu property, so that when MDI is used
20597         we can change the menu being displayed/handled by the form without
20598         changing the menu assosciated with the form.
20599         - Don't let Mdi children draw/handle menus.
20600         
20601 2005-11-30  Jackson Harper  <jackson@ximian.com>
20602
20603         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
20604         a MenuChanged event. Just to make the API a little more
20605         consistent.
20606         * MainMenu.cs:
20607         * MenuItem.cs: Use the new OnMenuChanged
20608         * MdiChildContext.cs: Handle menu merging.
20609         * Form.cs: Implement MergedMenu.
20610         
20611 2005-11-30  Jackson Harper  <jackson@ximian.com>
20612
20613         * Menu.cs: We were misusing Add. Add goes behind the specified
20614         index according to the docs, and does not replace the specified
20615         index. So I added an Insert method.
20616
20617 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
20618
20619         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
20620           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
20621           is for Jackson
20622         * RichTextBox.cs: Added calls to base for DnD events
20623
20624 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
20625
20626         * TextControl.cs:
20627           - Fixed drag-selection related crash; style fixes
20628           - Implemented undo class
20629             o Implemented method to capture document state for specified
20630               range in document tree
20631             o Implemented method to restore captured document state
20632             o Implemented cursor tracking
20633             o Implemented basic undo stack
20634           - Added undo cursor tracking to methods altering cursor location
20635           - Added undo tracking to selection deletion (still missing
20636             other text-altering hookups)
20637         * RichTextBox.cs:
20638           - Added SelectionLength property
20639           - Implemented CanPaste()
20640           - Implemented Paste()
20641           - Added missing protected methods
20642           - Fixed RTF->Document conversion; now uses font index 0 and color 
20643             index 0 as the default font for the parsed text
20644           - Fixed RTF<->Document font size translation
20645           - Fixed RTF generation, now properly handles cross-tag boundaries
20646             for single line selection
20647           - No longer always appends blank line to generated RTF
20648           - Removed TODOs
20649           - Added missing attributes
20650           - Hooked up undo-related methods
20651         * TextBoxBase.cs:
20652           - Implemented Copy()
20653           - Implemented Paste()
20654           - Implemented Cut()
20655           - Fixed caret mis-behaviour on backspace across line-boundaries
20656
20657 2005-11-29  Jackson Harper  <jackson@ximian.com>
20658
20659         * MdiClient.cs: Add a method for activating mdi children. Very
20660         basic right now. I imagine someday it might need more girth.
20661         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
20662         children windows names are added to the menu item.
20663         * ThemeWin32Classic.cs: Draw the arrow if the item is an
20664         mdilist. This happens regardless of whether or not there are any
20665         mdi windows to see in the list, and according to my tests happens
20666         before the items are even added. Also happens if there isn't even
20667         an mdi client to get windows from.
20668
20669 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
20670
20671         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
20672         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
20673
20674 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
20675
20676         * DataGridTableStyle.cs:
20677           - Create always the styles for the missing columns even if they are
20678             provided by the user (not default table style)
20679         * DataGrid.cs:
20680           - Fixes bug 76770
20681           - Fixes SetDataBinding (always re-attach source)
20682           - Fixes SetNewDataSource (only clear styles if they are not for 
20683             this source)
20684          -  Expands OnTableStylesCollectionChanged to handle style refresh 
20685             and remove properly
20686
20687 2005-11-29  Jackson Harper  <jackson@ximian.com>
20688
20689         * FileDialog.cs: Implement missing bits, remove some dead
20690         code.
20691         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
20692         creation of the panel so that the options set on the dialog are
20693         seen when the panel is created.
20694         * TreeView.cs: raise a click when items are clicked.
20695         
20696 2005-11-29  Jackson Harper  <jackson@ximian.com>
20697
20698         * MdiClient.cs: Pass some signature methods through to base.
20699
20700 2005-11-28  Jackson Harper  <jackson@ximian.com>
20701
20702         * ListView.cs: Raise the click event when items are clicked.
20703
20704 2005-11-28  Jackson Harper  <jackson@ximian.com>
20705
20706         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
20707         a nullref.
20708
20709 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
20710
20711         * ThemeNice.cs: - Removed 1 pixel bitmaps
20712           - Use SmoothingMode.AntiAlias where it makes sense
20713             (ScrollButton arrow for example)
20714           - Enhanced Button focus drawing
20715           - Fixed ComboBox drawing (no artefacts anymore, focus
20716             rectangle is back again, reduced size of ComboButton, etc.)
20717           - Fixed RadioButton focus drawing for Appearence.Button
20718           - Slight ScrollButton redesign
20719           - Some LinearGradientBrush size fixes
20720           - GroupBoxes have now rounded edges
20721           - Fixed StatusBar drawing
20722
20723 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
20724
20725         * ThemeNice.cs: - Remove dead code
20726           - use correct background colors for menus, etc.
20727           - Fake pixel drawing with 1 pixel bitmaps
20728
20729 2005-11-24  Jackson Harper  <jackson@ximian.com>
20730
20731         * MdiClient.cs: Size the scrollbars when resizing the window.
20732         - Resize the maximized windows when the client is resized
20733         * Form.cs: Make the child context available
20734         
20735 2005-11-23  Jackson Harper  <jackson@ximian.com>
20736
20737         * MdiChildContext.cs: Don't size windows if they are maximized.
20738
20739 2005-11-23  Mike Kestner  <mkestner@novell.com>
20740
20741         * ContextMenu.cs: use MenuTracker.
20742         * Control.cs: remove menu handle usage.
20743         * Form.cs: remove menu handle usage.
20744         * Hwnd.cs: remove menu handle usage.
20745         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
20746         motion and clicks to the new Tracker handlers.
20747         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
20748         and handle usage.
20749         * MenuAPI.cs: refactored to combine popup and menubar event handling.
20750         Killed the MENU and MENUITEM data types and associated collections
20751         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
20752         MenuTracker class that exposes the leftovers from the old MenuAPI
20753         static methods. Restructured Capture handling so that only one grab is
20754         done for the entire menu hierarchy instead of handing off grabs to
20755         submenus. Tracker now has an invisible control to Capture when active.
20756         * MenuItem.cs: add sizing accessors, kill Create
20757         and handle usage.
20758         * Theme.cs: remove menu handle and MENU(ITEM) usage.
20759         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
20760         MENU(ITEM). remove menu handle usage, use Menu directly.
20761         * XplatUIDriver.cs: remove menu handle usage.
20762         * XplatUIOSX.cs: remove menu handle usage.
20763         * XplatUIWin32.cs: remove menu handle usage.
20764         * XplatUIX11.cs: remove menu handle usage.
20765
20766 2005-11-22  Jackson Harper  <jackson@ximian.com>
20767
20768         * Hwnd.cs: Don't compute the menu size for
20769         DefaultClientRectangle.
20770         - Reenable menu sizes being computed for GetClienRectangle.
20771         * Form.cs: Remove comment of trechery
20772         
20773 2005-11-22  Jackson Harper  <jackson@ximian.com>
20774
20775         * Hwnd.cs: The adjustments for the menu bar are made when it is
20776         attached to the form.
20777
20778 2005-11-19  Jackson Harper  <jackson@ximian.com>
20779
20780         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
20781         (just like on windows).
20782
20783 2005-11-19  Jackson Harper  <jackson@ximian.com>
20784
20785         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
20786         use real buttons anymore because they are in non client area. The
20787         one TODO here is that I need to somehow invalidate a section of
20788         the non client area.
20789
20790 2005-11-18  Jackson Harper  <jackson@ximian.com>
20791
20792         * Control.cs: Put the enum check back in now that MDI doesnt have
20793         to use this to set border styles.
20794         * Form.cs: Only set mdi child windows borders if the handle has
20795         been created.
20796         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
20797         this directly on to the driver.
20798         - Get the move start position before adjusting for the titlebar
20799         height, this fixes the windows "skipping" when they are first
20800         moved.
20801
20802 2005-11-18  Jackson Harper  <jackson@ximian.com>
20803
20804         * XplatUIX11.cs: Just compute the mdi borders separately as they
20805         don't totally match up with normal form borders.
20806
20807 2005-11-18  Jackson Harper  <jackson@ximian.com>
20808
20809         * Control.cs: Set WS_ styles for borders, so that the driver does
20810         not have to retrieve the control instance to figure out what kind
20811         of borders it should have.
20812         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
20813         driver can know its an mdi child easily.
20814         * XplatUIX11.cs: Get the border styles and whether the window is
20815         MDI from the Styles and ExStyles params instead of having to get a
20816         control. This prevents a chicken and egg problem.       
20817
20818 2005-11-18  Jackson Harper  <jackson@ximian.com>
20819
20820         * MdiClient.cs: Fix typo so scrollbars show up correctly.
20821
20822 2005-11-18  Jackson Harper  <jackson@ximian.com>
20823
20824         * MdiClient.cs: Calculate when to add and remove scrollbars
20825         correctly.
20826         * MdiChildContext.cs: Adjust the y position to take the titlebar
20827         into account.
20828         - No height for FormBorderStyle.None
20829
20830 2005-11-18  Jackson Harper  <jackson@ximian.com>
20831
20832         * Control.cs: Allow non enum values to be used for
20833         InternalBorderStyle.  MDI does this to set a special border style.
20834         - New utility methods for converting points to/from client coords
20835         - Add the newly created control to the Controls collection before
20836         updating its style. This way UpdateStyle can walk the control
20837         heirarchy to find the control if needed.
20838         so I don't need to create a new Point object all the time.
20839         * Form.cs: Let MDI windows handle their border styles.
20840         - Set styles on MDI windows so the correct title style is derived.
20841         * MdiChildContext.cs: Move all the painting and window handling
20842         into the non client area.
20843         - Use correct sizing and put correct buttons on frames based on
20844         the FormBorderStyle.
20845         - Notify the mdi client about scrolling
20846         - Need to handle the buttons ourselves now, because they are all
20847         in non client areas and we can't add controls there.
20848         * MdiClient.cs: Halfway to scrolling, this implementation is
20849         somewhat broken though, we need to check to make sure other
20850         windows aren't causing scrolling before removing the bars. Also
20851         the bars need to be drawn on top, maybe I can switch implicit
20852         controls to be on top.
20853         * Hwnd.cs: caption_height and tool_caption_height are now
20854         properties of an hwnd, this way they can be set by the driver
20855         based on the type of window they are.  In X11 the window manager
20856         handles the decorations so caption_height is zero unless its an
20857         MDI window.
20858         - Add 3 pixel borders for MDI windows (0xFFFF).
20859         - Get rid of some code duplication, have DefaultClientRectanle
20860         just call GetClientRectangle.
20861         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
20862         Hwnd now.
20863         - Set border styles differently for mdi windows.
20864         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
20865         Hwnd now.
20866         
20867 2005-11-15  Mike Kestner  <mkestner@novell.com>
20868
20869         * Menu.cs: when adding an item to the collection, if item is already 
20870         parented, remove it from the parent.
20871
20872 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
20873
20874         * X11DesktopColors.cs: Added KDE support
20875
20876 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
20877
20878         * XplatUIWin32.cs: 
20879           - Clipboard methods now can translate Rtf format
20880           - No longer removes clipboard contents whenever a new format is added
20881             to allow placing multiple formats on the clipboard
20882         * Clipboard.cs: Clipboard now supports getting a IDataObject and
20883           will place all formats contained in it onto the clipboard. Also
20884           now cleans the clipboard before placing a new object onto it
20885         * RichTextBox.cs:
20886           - Implemented set_Rtf
20887           - Implemented set_SelectedRtf
20888           - Created InsertRTFFromStream() method to allow single code base
20889             for all properties and methods that insert RTF into document
20890           - Removed debug output
20891         * TextControl.cs:
20892           - Fixed Delete(int) to fix up line numbers
20893           - Fixed ReplaceSelection to combine start and end line
20894           - Fixed serious DeleteChars bug that would leave the document tree
20895             broken
20896           - Improved DumpTree with several logic checks to detect broken
20897             document trees
20898           - Removed debug lines
20899           - Fixed Caret.WordForward/WordBack moving code, now always also 
20900             updates caret.tag (fixes crash when word-selecting across tag
20901             boundaries via keyboard)
20902           - Added Insert() method for inserting multiline text into documents
20903           - Fixed DeleteChars() calculation errors that would cause a broken
20904             tag chain with multiple tag lines
20905           - DeleteChars() no longer crashes on multi-tag lines if not all tags
20906           - Split() no longer moves caret if split is at caret location
20907           - ReplaceSelection() now updates the cursor and re-displays it
20908           - ReplaceSelection() now uses new Insert() method to avoid code
20909             duplication
20910           - FormatText() can now handle formatting partial lines
20911         * TextBoxBase.cs:
20912           - Append now uses new TextControl.Insert() method (this avoids 
20913             duplicate code)
20914           - Implemented Ctrl-X (Cut) (
20915           - Implemented Ctrl-C (Copy)
20916           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
20917             regeneration when pasting text; roundtripping Copy&Paste within
20918             edit control still fails due to some calculation bugs in GenerateRTF)
20919           - The Delete key will now remove the current selection if it is visible
20920         * TextBox.cs: Removed debug lines
20921         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
20922           driver to be initialized and can't therefore be done via a static ctor)
20923
20924 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
20925
20926         * TextControl.cs: Added backend code for finding char arrays and strings
20927         * TextBoxBase.cs:
20928           - Added mouse wheel scroll support
20929           - Added support for VScroll and HScroll events
20930         * RichTextBox.cs:
20931           - Implemented all seven Find() variants
20932           - Implemented GetCharFromPosition()
20933           - Implemented GetCharIndexFromPosition()
20934           - Implemented GetLineFromIndex()
20935           - Implemented GetPositionFromCharIndex();
20936           - Implemented SaveFile for PlainText and UnicodeText
20937           - Fixed set_Font, now setting a new font applies that font to
20938             the whole document
20939           - Implemented generic Document to RTF converter
20940           - Implemented SaveFile for RichText format (still missing unicode
20941             conversion for non-ansi chars)
20942           - Implemented get_Rtf
20943           - Implemented get_SelectedRtf
20944
20945 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
20946
20947         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
20948           to allow any captures to be released before triggering OnClick. This
20949           way a click handler may capture the mouse without interference.
20950         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
20951           This way we send them even though X may not allow a grab (if the window
20952           isn't visible, for example)
20953
20954 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
20955
20956         * DataGridViewRowEventArgs.cs: DataGridView implementation
20957         * DataGridViewElement.cs: DataGridView implementation
20958         * DataGridViewComboBoxCell.cs: DataGridView implementation
20959         * DataGridViewDataErrorContexts.cs: DataGridView implementation
20960         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
20961         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
20962         * ImageLayout.cs: DataGridView implementation
20963         * DataGridViewComboBoxColumn.cs: DataGridView implementation
20964         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
20965         * DataGridViewSelectionMode.cs: DataGridView implementation
20966         * IDataGridViewEditingControl.cs: DataGridView implementation
20967         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
20968         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
20969         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
20970         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
20971         * DataGridViewColumnSortMode.cs: DataGridView implementation
20972         * DataGridView.cs: DataGridView implementation
20973         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
20974         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
20975         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
20976         * Padding.cs: DataGridView implementation
20977         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
20978         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
20979         * DataGridViewRowEventHandler.cs: DataGridView implementation
20980         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
20981         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
20982         * DataGridViewButtonCell.cs: DataGridView implementation
20983         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
20984         * DataGridViewEditMode.cs: DataGridView implementation
20985         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
20986         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
20987         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
20988         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
20989         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
20990         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
20991         * DataGridViewCellEventHandler.cs: DataGridView implementation
20992         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
20993         * DataGridViewCellStyleConverter.cs: DataGridView implementation
20994         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
20995         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
20996         * DataGridViewColumnEventArgs.cs: DataGridView implementation
20997         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
20998         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
20999         * QuestionEventArgs.cs: DataGridView implementation
21000         * IDataGridViewEditingCell.cs: DataGridView implementation
21001         * DataGridViewTriState.cs: DataGridView implementation
21002         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
21003         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
21004         * DataGridViewColumnCollection.cs: DataGridView implementation
21005         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
21006         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
21007         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
21008         * DataGridViewColumn.cs: DataGridView implementation
21009         * DataGridViewCellBorderStyle.cs: DataGridView implementation
21010         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
21011         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
21012         * DataGridViewRow.cs: DataGridView implementation
21013         * DataGridViewImageCellLayout.cs: DataGridView implementation
21014         * DataGridViewImageCell.cs: DataGridView implementation
21015         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
21016         * DataGridViewCheckBoxCell.cs: DataGridView implementation
21017         * DataGridViewHeaderCell.cs: DataGridView implementation
21018         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
21019         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
21020         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
21021         * DataGridViewTextBoxColumn.cs: DataGridView implementation
21022         * QuestionEventHandler.cs: DataGridView implementation
21023         * DataGridViewCellStyleScopes.cs: DataGridView implementation
21024         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
21025         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
21026         * DataGridViewCell.cs: DataGridView implementation
21027         * DataGridViewCellEventArgs.cs: DataGridView implementation
21028         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
21029         * DataGridViewCellStyle.cs: DataGridView implementation
21030         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
21031         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
21032         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
21033         * TextFormatFlags.cs: DataGridView implementation
21034         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
21035         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
21036         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
21037         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
21038         * DataGridViewButtonColumn.cs: DataGridView implementation
21039         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
21040         * HandledMouseEventArgs.cs: DataGridView implementation
21041         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
21042         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
21043         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
21044         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
21045         * DataGridViewRowCollection.cs: DataGridView implementation
21046         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
21047         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
21048         * DataGridViewHitTestType.cs: DataGridView implementation
21049         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
21050         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
21051         * DataGridViewColumnEventHandler.cs: DataGridView implementation
21052         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
21053         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
21054         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
21055         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
21056         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
21057         * DataGridViewContentAlignment.cs: DataGridView implementation
21058         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
21059         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
21060         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
21061         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
21062         * DataGridViewPaintParts.cs: DataGridView implementation
21063         * DataGridViewCellCollection.cs: DataGridView implementation
21064         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
21065         * DataGridViewImageColumn.cs: DataGridView implementation
21066         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
21067         * DataGridViewElementStates.cs: DataGridView implementation
21068         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
21069         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
21070         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
21071         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
21072         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
21073         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
21074         * DataGridViewRowHeaderCell.cs: DataGridView implementation
21075         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
21076         * DataGridViewTextBoxCell.cs: DataGridView implementation
21077         * DataGridViewBand.cs: DataGridView implementation
21078         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
21079         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
21080         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
21081         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
21082         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
21083         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
21084         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
21085         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
21086         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
21087         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
21088         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
21089
21090 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
21091
21092         * ThemeWin32Classic.cs: 
21093           - Draw the outside focus rectangle around buttons
21094           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
21095             doesn't use end caps for every dash of a line anymore. This
21096             workaround ignores the forecolor.
21097
21098 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
21099
21100         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
21101           endian safe.
21102
21103 2005-11-07  Jackson Harper  <jackson@ximian.com>
21104
21105         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
21106
21107 2005-11-07  Jackson Harper  <jackson@ximian.com>
21108
21109         * ScrollableControl.cs: Calculate the maximum and change vars
21110         (more) correctly so that scrollbars appear as a sensible size.
21111
21112 2005-11-04  Jackson Harper  <jackson@ximian.com>
21113
21114         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
21115         collection.
21116         * TreeView.cs: When the tree is sorted null out the top_node so
21117         that it is recalculated.
21118         - Use dotted lines instead of dashed lines to match MS better.
21119
21120 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
21121
21122         * ListView.cs: 
21123           - Implements key search for items. Useful when browsing files with FileDialog
21124           - When changing view mode or when clear the items reset scrollbar positions
21125
21126 2005-11-04  Jackson Harper  <jackson@ximian.com>
21127
21128         * CurrencyManager.cs: Implement the MetaDataChanged event, the
21129         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
21130         as to what the method may do as there is no real way of creating a
21131         derived CurrencyManager and calling the method. 
21132
21133 2005-11-03  Jackson Harper  <jackson@ximian.com>
21134
21135         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
21136         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
21137         method which seems to just be used internally to refresh the tabs.
21138
21139 2005-11-03  Jackson Harper  <jackson@ximian.com>
21140
21141         * TabControl.cs: Implement the remove method. Fix some broken
21142         comments.
21143
21144 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
21145
21146         * DateTimePicker.cs:
21147           - Added missing DateTimePickerAccessibleObject class
21148           - Added missing events
21149           - Added OnFontChanged method
21150         * Form.cs: Added missing attributes
21151         * TreeView.cs: Added missing attributes
21152
21153 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
21154
21155         * GridItemCollection.cs: Fix signatures
21156
21157 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
21158
21159         * XplatUI.cs: Updated build rev/date
21160         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
21161           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
21162         * Application.cs: Trigger context-specific ExitThread events
21163
21164 2005-11-03  Jackson Harper  <jackson@ximian.com>
21165
21166         * Menu.cs:
21167         * MainMenu.cs:
21168         * GridTableStylesCollection.cs:
21169         * Timer.cs:
21170         * TabPage.cs:
21171         * HelpProvider.cs:
21172         * StatusBar.cs:
21173         * MonthCalendar.cs: Signature fixes
21174
21175 2005-11-03  Jackson Harper  <jackson@ximian.com>
21176
21177         * TreeNodeCollection.cs: Remove should not be virtual.
21178         * TreeView.cs: Implement the last of the missing methods.
21179
21180 2005-11-03  Jackson Harper  <jackson@ximian.com>
21181
21182         * TreeNodeConverter.cs: Implement to get off my class-status back.
21183
21184 2005-11-03  Jackson Harper  <jackson@ximian.com>
21185
21186         * TreeView.cs: Hookup the bits for drag and drop.
21187         * TreeNode.cs: Don't cache the tree_view or index anymore, now
21188         that nodes can be moved from tree to tree easily this just causes
21189         all sorts of problems.
21190         * TreeNodeCollection: Don't need to give treenodes an index and
21191         treeview anymore when they are added, these are computed on the
21192         fly. Also make sure to remove a node before its added.
21193
21194 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
21195
21196         * TextControl.cs:
21197           - Added CaretSelection enum
21198           - Added comparison methods to Marker struct, makes selection code
21199             more readable
21200           - Added SelectionStart and SelectionEnd as 'moveable' location for
21201             the CaretDirection enum and handler
21202           - Added selection_prev variable to track optimized invalidation for
21203             word and line selection
21204           - Added SelectionVisible property (returns true if there is a valid 
21205             selection)
21206           - Switched CaretHasFocus to only display the caret if there is no
21207             visible selection
21208           - Avoiding StringBuilder.ToString to retrieve a single char, instead
21209             using the direct character index; should be much faster
21210           - Added various conditional debug statements
21211           - Fixed invalidation calculation for selection ranges
21212           - Added ExpandSelection() method to support word and line selection
21213           - Switched SetSelectionToCaret to use new Marker compare overloads
21214           - Added central IsWordSeparator() method to determine word 
21215             separators/whitespace and FindWordSeparator() to streamline common
21216             usage of IsWordSeparator()
21217         * TextBoxBase.cs:
21218           - Removed unneeded grabbed variable, it was just mirroring
21219             Control.Capture
21220           - No longer firing OnTextChanged event when Text setter is called,
21221             since the base will fire the event for us
21222           - Added handling of Ctrl-Up/Down selection
21223           - Added handling of Shift-Cursorkey selection
21224           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
21225             words
21226           - Added handling of Shift and Ctrl-Shift-Home/End selection
21227           - Removed some debug output
21228           - Added handling for single/double/tripple-click to place caret/
21229             select word/select line respectively (Fixes bug #76031)
21230           - Added support for drag expansion of word/line selection
21231         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
21232           current selection
21233
21234 2005-11-02  Jackson Harper  <jackson@ximian.com>
21235
21236         * X11Dnd.cs: If the drag is going to and from a MWF window just
21237         copy the data instead of sending it out through the X Selection
21238         mechanism.
21239
21240 2005-11-02  Jackson Harper  <jackson@ximian.com>
21241
21242         * X11Dnd.cs:
21243         * XplatUIX11.cs: When in a drag we don't want motion notify
21244         messages to get passed on to the other controls. This prevents
21245         mouse move messages from showing up in the drag source.
21246
21247 2005-11-02  Jackson Harper  <jackson@ximian.com>
21248
21249         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
21250         the correct button is release to end a drag.
21251         * XplatUIX11.cs: Make the button state internal so the drag system
21252         can access it.  Dragging needs to know about all button releases,
21253         not just left button.
21254
21255 2005-11-02  Miguel de Icaza  <miguel@novell.com>
21256
21257         * Form.cs (Icon): If the icon is null, reset the icon to the
21258         default value. 
21259
21260         * Cursor.cs: When writing the AND-mask bitmap do not include the
21261         number of colors, but hardcode those to two (black and white),
21262         fixes the loading of color cursors (Paint Dot Net).
21263
21264         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
21265         turn off autoscaling.
21266
21267         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
21268
21269 2005-11-02  Jackson Harper  <jackson@ximian.com>
21270
21271         * X11Dnd.cs: Make sure to send a status message if the pointer
21272         enters a control that can not accept a drop, otherwise the cursor
21273         isn't updated correctly. Also tried to compress the lines of code
21274         a bit.
21275
21276 2005-11-02  Jackson Harper  <jackson@ximian.com>
21277
21278         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
21279         set actions correctly.  This isn't perfect as XDND and win32 have
21280         some differences on how you allow actions. I'll clear this up by
21281         adding a path for drag from MWF to MWF windows.
21282         * XplatUIX11.cs: Hook into the dnd system.
21283
21284 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
21285
21286         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
21287         previously shown but they are no longer need it. Very obvious when 
21288         browsing files with FileDialog.
21289
21290 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
21291
21292         * Control.cs: We always need to call OnPaintBackground. We pretty much
21293           ignore AllPaintingInWmPaint and always do the painting there, whether 
21294           it's set or not, since we always ignore the WM_ERASEBKGND message 
21295           (which we don't generate on X11). This fixes #76616.
21296         * Panel.cs: Removed unneeded background painting. This happens properly
21297           in Control.cs already
21298
21299 2005-10-31  Mike Kestner  <mkestner@novell.com>
21300
21301         * Menu.cs: Add items to collection before setting their index.
21302         * MenuItem.cs : add range checking with ArgumentException like MS.
21303         [Fixes #76510]
21304
21305 2005-10-31  Jackson Harper  <jackson@ximian.com>
21306
21307         * ListBox.cs: Invalidate if the area is visible at all not just
21308         contained in the visible rect. Fixes unselection of semi visible
21309         items.
21310
21311 2005-10-31  Jackson Harper  <jackson@ximian.com>
21312
21313         * Control.cs: Consistently name the dnd methods. Make them
21314         internal so we can override them to match some MS behavoir
21315         internally.
21316         * Win32DnD.cs: Use the new consistent names.
21317
21318 2005-10-31  Jackson Harper  <jackson@ximian.com>
21319
21320         * TreeView.cs: Don't draw the selected node when we lose focus.
21321
21322 2005-10-31  Jackson Harper  <jackson@ximian.com>
21323
21324         * X11Dnd.cs: We still need to reset the state even though a full
21325         reset isn't being done, otherwise status's still get sent all over
21326         the place.
21327
21328 2005-10-31  Jackson Harper  <jackson@ximian.com>
21329
21330         * Control.cs: Make the dnd_aware flag internal so the dnd
21331         subsystem can check it. Catch exceptions thrown in dnd handlers to
21332         match MS behavoir.
21333         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
21334         * X11Dnd.cs: Handle null data in the converters. Set the XDND
21335         version when sending a XdndEnter. Use the control/hwnd dnd_aware
21336         flags to reduce the number of dnd enters/status's sent.
21337
21338 2005-10-31  Jackson Harper  <jackson@ximian.com>
21339
21340         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
21341
21342 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
21343
21344         * PictureBox.cs: Fixes 76512
21345
21346 2005-10-28  Jackson Harper  <jackson@ximian.com>
21347
21348         * X11Dnd.cs: Early implementation to support winforms being a drag
21349         source for data on X11. Also restructured the converters so they
21350         can go both ways now.
21351         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
21352         
21353 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
21354
21355         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
21356           clipboard requests
21357
21358 2005-10-27  Jackson Harper  <jackson@ximian.com>
21359
21360         * TreeNode.cs: Implement serialization so my DnD examples will work.
21361
21362 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
21363
21364         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
21365           TreeView.cs: Don't dispose objects that are not owned.
21366           
21367 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
21368
21369         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
21370           should retrieve the current cursor and report that, but XplatUI
21371           doesn't (yet) have an interface for that (and I'm not sure I even
21372           can, on X11)
21373         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
21374           until any message loop processing is done (and the WM_SETCURSOR
21375           replaces the cursor to the proper one)
21376         * XplatUIX11.cs: 
21377           - Fixed override behaviour, we can't set the cursor globally on X11, 
21378             just for our windows.
21379           - Invalidating the System.Drawing X11 display handle when we are
21380             shutting down
21381         * Control.cs: Fix to make csc happy
21382
21383 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
21384
21385         * TextBoxBase.cs: 
21386           - get_Text: Add last line (without trailing newline) to returned
21387             value (Fixes 76212)
21388           - get_TextLength: Count last line in returned length
21389           - ToString: Call Text property instead of duplicating code
21390
21391 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
21392
21393         * ImageList.cs: Dispose ImageAttributes objects.
21394
21395 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
21396
21397         * ImageList.cs: Use attribute constructors with less arguments where
21398           possible.
21399
21400 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
21401
21402         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
21403           Use typeof instead of strings when assembly is referenced. Added
21404           some more comments.
21405
21406 2005-10-21  Jackson Harper  <jackson@ximian.com>
21407
21408         * ListView.cs: Raise a double click event. Also tried to somewhat
21409         fix when the selectedindexchanged event is raised. Its still
21410         broken though.
21411
21412 2005-10-21  Jackson Harper  <jackson@ximian.com>
21413
21414         * TreeView.cs: New method to invalidate the plus minus area of a
21415         node without invalidating the whole node (maybe this can be used
21416         in some more places).
21417         * TreeNodeCollection.cs: When adding to an empty node we need to
21418         invalidate its plus minus area so the little block shows up.
21419         
21420 2005-10-21  Jackson Harper  <jackson@ximian.com>
21421
21422         * TreeView.cs: Make sure that when we invalidate a node the bounds
21423         are big enough to cover the selected box and the focus
21424         rectangle. Use a different colour for the lines connecting nodes
21425         so they show up with all themes.
21426
21427 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
21428
21429         * NativeWindow.cs: Don't call anything that could call into the driver,
21430           we might be on a different thread.
21431
21432 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
21433
21434         * Control.cs(Dispose): Since Dispose might run on a different thread,
21435           make sure that we call methods that could call into the driver via
21436           invoke, to avoid thread issues
21437
21438 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
21439
21440         * XplatUI.cs: Removed finalizer
21441         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
21442           not allowing to be called on the finalizer thread.
21443
21444 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
21445
21446         * ImageList.cs:
21447           - Reverted r51889 and r51891.
21448           - Added ImageListItem class that stores unmodified image items and image
21449             properties required to create list images until handle is created.
21450           - Added AddItem and moved image creation logic to AddItemInternal.
21451           - Added CreateHandle method that creates images based on unmodified items.
21452           - Added DestroyHandle that changes state to store unmodified items.
21453           - Add and AddStrip methods no more create handle.
21454           - ReduceColorDepth has no return value.
21455           - Dispose destroys handle.
21456           - Modified other methods to reflect the above changes.
21457           - Implemented key support.
21458           - Added profile 2.0 members and attributes.
21459           - Added private Reset and ShouldSerialize methods that provide the same
21460             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
21461             them as they are private.
21462           - Added some more comments about implementation details.
21463
21464 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
21465
21466         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
21467
21468 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
21469
21470         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
21471
21472 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
21473
21474         * DataGridDrawingLogic.cs: Fixes column hit calcultation
21475         * DataGridColumnStyle.cs: Remove debug message
21476
21477 2005-10-20  Jackson Harper  <jackson@ximian.com>
21478
21479         * TreeView.cs: We can always get input keys regardless of whether
21480         or not editing is enabled. They are used for navigation.
21481
21482 2005-10-20  Jackson Harper  <jackson@ximian.com>
21483
21484         * TreeNode.cs: Use the viewport rect for determining if a node
21485         needs to be moved for visibility. Don't use Begin/End edit. This
21486         calls a full refresh when its done.
21487         * TreeView.cs: New SetBottom works correctly.  Make the viewport
21488         rect property internal so the treenodes can see it. When clicking
21489         on a node we need to ensure that its visible because it might just
21490         be partly visible when clicked.
21491
21492 2005-10-20  Jackson Harper  <jackson@ximian.com>
21493
21494         * TreeNodeCollection.cs: Remove debug code.
21495
21496 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
21497
21498         * Datagrid.cs: Implements column sorting in Datagrid
21499         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
21500
21501 2005-10-20  Jackson Harper  <jackson@ximian.com>
21502
21503         * TreeNodeCollection.cs: Remove items properly. Update the correct
21504         area after removing them.
21505
21506 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
21507
21508         * Datagrid.cs: Should not call base.OnPaintBackground
21509
21510 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
21511
21512         * XplatUIX11.cs (GetMessage):
21513           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
21514             window instead of client window
21515           - Now properly calculates NC_xBUTTONUP message coordinates
21516           - ScreenToMenu now properly calculates it's coordinates of whole 
21517             window, since menus are in the whole window, not in the client
21518             window
21519           - Added WholeToScreen coordinate translation method
21520
21521 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
21522
21523         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
21524           want to return a message, loop back to the beginning of the function
21525           and grab the next real message to process instead.
21526
21527 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
21528
21529         * Splitter.cs: Properly set limits if no filler control is used
21530
21531 2005-10-19  Jackson Harper  <jackson@ximian.com>
21532
21533         * ColorDialog.cs: Don't show the help button if it is not enabled
21534         instead of disabling it (this is what MS does). Don't create the
21535         panel until the dialog is run, otherwise the vars (such as
21536         ShowHelp) are not set yet.
21537
21538 2005-10-19  Jackson Harper  <jackson@ximian.com>
21539
21540         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
21541         are reduced when adding nodes.
21542         * TreeNode.cs:
21543         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
21544         tree.
21545         
21546 2005-10-19  Jackson Harper  <jackson@ximian.com>
21547
21548         * FolderBrowserDialog.cs: End editing our treeview so the window
21549         actually gets refreshed.
21550
21551 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
21552
21553         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
21554           Obsoleted handling of WM_ERASEBKGND, now always draws our background
21555           inside of WM_PAINT
21556
21557 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
21558
21559         * MenuAPI.cs: Returns after Hidding window
21560         * XplatUIX11.cs: Added TODO found while debugging menu issues
21561
21562 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
21563
21564         * XplatUIX11.cs: Do not re-map the whole window when it's size
21565           becomes non-zero unless it's supposed to be actually visible
21566
21567 2005-10-18  Jackson Harper  <jackson@ximian.com>
21568
21569         * TreeView.cs: We don't need to keep a count anymore.
21570         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
21571         use the Grow method.
21572
21573 2005-10-18  Jackson Harper  <jackson@ximian.com>
21574
21575         * TreeNodeCollection.cs: Insert is not supported on arrays, so
21576         implement it manually here.
21577
21578 2005-10-18  Jackson Harper  <jackson@ximian.com>
21579
21580         * ImageList.cs: Dont kill the list when the colour depth is
21581         changed, just change the colour depth of all the images.
21582         - Same goes for setting the image size. Just resize them all
21583         instead of killing the list softly.
21584
21585 2005-10-18  Jackson Harper  <jackson@ximian.com>
21586
21587         * Control.cs: Don't invalidate empty rectangles.
21588
21589 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
21590
21591         * ListViewItem.cs:
21592           - Adds checked item to the Checked/Item lists (where empty before)
21593           - Do not add items to the Selected lists if they are already present
21594         * ListView.cs:
21595           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
21596           - When deleting items make sure that we delete them for the Selected
21597           and Checked list also.
21598
21599 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
21600
21601         * Label.cs: Dispose objects no longer used
21602         * ThemeWin32Classic.cs: Dispose objects no longer used
21603
21604 2005-10-18  Jackson Harper  <jackson@ximian.com>
21605
21606         * TabControl.cs: Don't refresh the whole control when the tabs are
21607         scrolled, we just need to refresh the tab area.
21608
21609 2005-10-17  Jackson Harper  <jackson@ximian.com>
21610
21611         * XplatUIX11.cs: Compress code a little bit. Only calculate the
21612         after handle when we need it.
21613
21614 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
21615
21616         * Control.cs: When the parent size changes, recalculate anchor 
21617           positions. Partial fix for #76462
21618
21619 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
21620
21621         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
21622           drawn. Fixes #76462
21623
21624 2005-10-17  Jackson Harper  <jackson@ximian.com>
21625
21626         * MonthCalendar.cs: Don't create the numeric up down until our
21627         handle is created. Otherwise our handle is created in the
21628         constructor and we don't know if we are a WS_CHILD or WS_POPUP
21629         yet.
21630
21631 2005-10-17  Jackson Harper  <jackson@ximian.com>
21632
21633         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
21634         correctly.
21635
21636 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
21637         * TreeNode.cs : small logical fix (was using local var instead of field)
21638         
21639 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
21640
21641         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
21642
21643 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
21644
21645         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
21646
21647 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
21648
21649         * Control.cs: 
21650           - Re-implemented anchoring code. My first version was really broken.
21651             This fixes bug #76033. Unlike the previous implementation we will
21652             no longer have round errors since all numbers are calculated from
21653             scratch every time. Removed various anchor-related obsolete vars.
21654           - InitLayout no longer causes layout event firing and layout to be 
21655             performed
21656
21657 2005-10-16  Jackson Harper  <jackson@ximian.com>
21658
21659         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
21660         which was broken).
21661
21662 2005-10-16  Jackson Harper  <jackson@ximian.com>
21663
21664         * TabControl.cs: Remove debug code.
21665
21666 2005-10-16  Jackson Harper  <jackson@ximian.com>
21667
21668         * XEventQueue.cs: Increase the default queue size (very simple
21669         apps needed to grow the queue).
21670         * Hwnd.cs: No finalizer so we don't need to suppress
21671         finalization. Compute the invalid area manually so a new rectangle
21672         does not newto be created.
21673         * ScrollableControl.cs: Don't set any params (otherwise visibility
21674         isn't set correctly).
21675         * MdiChildContext.cs: New constructor takes the mdi parent so it
21676         doesn't have to be computed and avoids a crash on windows. Draw
21677         the window icon properly, and allow the text to be seen.
21678         * Form.cs: Use new MdiChildContext constructor. Make sure the
21679         child context isn't null in wndproc.
21680         * TabControl.cs: Don't set focus, this is muddling keyboard
21681         behavoir. Expand the tab rows when a window size increase will
21682         allow extra tabs to be seen. Don't allow tabs smaller than the
21683         width of a window to be scrolled out of view.
21684         * TreeNode.cs:
21685         * TreeView.cs: Use measure string to calculate a nodes width, the
21686         width is cached and only updated when the text or the font is
21687         changed. Don't check for expand/collapse clicks on the first level
21688         nodes if root lines are disabled.
21689         
21690 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
21691
21692         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
21693
21694 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
21695
21696         * DataGridBoolColumn.cs: fixes warning
21697
21698 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
21699
21700         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
21701         to match more to match more precisely the MS Net behavior
21702
21703 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
21704
21705         * Hwnd.cs: Added field to track if window is mapped
21706         * XplatUIX11.cs: 
21707           - Unmap windows if they become 0-size, re-map when 
21708             they are >0 again; fixes #76035
21709           - Re-set our error handler after initializing X11Desktop
21710             to override any error handlers Gtk or whatever was called
21711             may have set.
21712
21713 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
21714
21715         * CheckedListBox.cs: Removed unused vars
21716         * ListView.cs: Fixed signatures
21717         * RichTextBox.cs: Removed unused vars
21718         * TextBoxBase.cs: Removed unused vars
21719         * XplatUIWin32.cs: Removed unused vars
21720         * XplatUIX11.cs: Removed unused vars
21721         * XplatUI.cs: Updated version and date to latest published
21722
21723 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
21724
21725         * Cursor.cs: Added private .ctor to work around a bug in
21726           resourceset (Thanks to Geoff Norton for the help on this)
21727         * SplitterEventArgs.cs: Made fields accessible so we don't
21728           waste boatloads of objects and can reuse the same one
21729           in Splitter
21730         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
21731           any captions and borders when generating screen coordinates
21732         * Splitter.cs: Reimplemented control, now fully complete, uses
21733           rubberband drawing, supports and obeys all properties, has
21734           proper cursors
21735
21736 2005-10-13  Miguel de Icaza  <miguel@novell.com>
21737
21738         * Form.cs (Form): Setup default values for autoscale and
21739         autoscale_base_size;  Make these instance variables, not static
21740         variables. 
21741
21742         (OnLoad): on the first load, adjust the size of the form.
21743
21744 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
21745
21746         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
21747           width argument to DrawReversibleRectangle()
21748         * XplatUIWin32.cs, XplatUIX11.cs: 
21749           - Implemented width for DrawReversibleRectangle()
21750           - Added logic to DrawReversibleRectangle that recognizes a zero
21751             width or height and only draws a line in that situation
21752         
21753 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
21754
21755         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
21756         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
21757         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
21758           method (it uses our FosterParent window to get a graphics context)
21759
21760 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
21761
21762         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
21763           and SetWindowBackground methods
21764         * Control.cs:
21765           - Setting proper ControlStyles
21766           - We no longer call XplatUI.SetWindowBackground and XplatUI.
21767             EraseWindowBackground, instead we draw the window background
21768             ourselves in PaintControlBackground. This behaviour is
21769             required to match MS, where, when OnPaintBackground is not
21770             called, the background is not drawn.
21771           - Removed unneeded Refresh() in set_Text
21772         * Hwnd.cs: Dropped the ErasePending support. No longer needed
21773         * XplatUIX11.cs:
21774           - Created DeriveStyles method to translate from CreateParams to
21775             FormBorderStyle and TitleStyle, also handles BorderStyle (which
21776             matches FormBorderStyle enum values)
21777           - Consolidated SetHwndStyles and CalculateWindowRect border/title
21778             style calculations into single DeriveStyles method
21779           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
21780             from redrawing the whole window on any resize or expose.
21781           - Fixed CreateWindow usage of SetWindowValuemask. Before not
21782             all styles were applied to our whole/client window appropriately
21783           - Removed EraseWindowBackground() and SetWindowBackground() methods
21784           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
21785             no longer clear/redraw the background through X
21786           - Removed handling of erase_pending bit, we have no use for it (or
21787             so it seems)
21788         * XplatUIOSX.cs:
21789           - Removed generation and handling of WM_ERASEBKGND message
21790           - Removed EraseWindowBackground() and SetWindowBackground() methods
21791           - Removed handling of hwnd.ErasePending flag
21792         * XplatUIWin32.cs:
21793           - Removed EraseWindowBackground() and SetWindowBackground() methods
21794           - We no longer call EraseWindowBackground on PaintEventStart, we 
21795             ignore the fErase flag, erasing is handled in Control in the
21796             background handler
21797         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
21798           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
21799           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
21800           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
21801           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
21802           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
21803           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
21804
21805 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
21806
21807         * PropertyGrids.cs: Get sub properties
21808         * PropertyGridView.cs: Fix drawing code
21809
21810 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
21811
21812         * ListBox.cs: Fixes 76383
21813
21814 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
21815
21816         * DataGridTextBoxColumn.cs: Sets location and size before attachment
21817         * ThemeWin32Classic.cs: Fixes border drawing and calculations
21818         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
21819
21820
21821 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
21822
21823         * ComboBox.cs: Fixes border drawing
21824
21825 2005-10-10  Miguel de Icaza  <miguel@novell.com>
21826
21827         * MimeIcon.cs: Ignore errors if the file can not be read.
21828
21829 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
21830
21831         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
21832          - Fixed border calculations
21833          - Fixed horizontal scrolling in single column listboxes
21834          - Fixed drawing issues
21835
21836 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
21837
21838         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
21839           FormBorderStyle enum
21840         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
21841           code to determine FormBorderStyles from CreateParams
21842         * Form.cs:
21843           - Fixed bug where we'd set the wrong window styles if we were
21844             not creating an MDI window
21845           - Added call to XplatUI.SetBorderStyle when form borders are set
21846         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
21847         * Hwnd.cs:
21848           - Removed obsolete edge style
21849           - Switched from BorderStyle to FormBorderStyle
21850         
21851 2005-10-10  Jackson Harper  <jackson@ximian.com>
21852
21853         * Form.cs: Use the property to get the window handle instead of
21854         accessing it directly. Prevents a null reference exception.
21855
21856 2005-10-10  Jackson Harper  <jackson@ximian.com>
21857
21858         * TreeView.cs: Don't adjust the rect given to DrawString now that
21859         our libgdiplus draws correctly.
21860
21861 2005-10-08  Jackson Harper  <jackson@ximian.com>
21862
21863         * TreeView.cs: Don't try to find the clicked on node if there are
21864         no nodes in the tree.
21865
21866 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
21867
21868         * RichTextBox.cs:
21869
21870           restore
21871
21872 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
21873
21874         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
21875           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
21876           ErrorProvider.cs:
21877           Use ResPool for brushes and dispose System.Drawing objects that
21878           are not used anymore.
21879
21880 2005-10-07  Jackson Harper  <jackson@ximian.com>
21881
21882         * MdiChildContext.cs: Use the new borders instead of drawing them
21883         ourselves.
21884
21885 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
21886
21887         * Calling UpdateBounds after changing the window's BorderStyle 
21888         since the style can change the ClientSize
21889
21890 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21891
21892         * Control.cs: Made PaintControlBackground virtual
21893         * Panel.cs: Overriding PaintControlBackground instead of using paint
21894           event; paint event method was interfering with 'real' users of the
21895           event.
21896
21897 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
21898
21899         * ThemeWin32Classic.cs: remove border drawing since it is handled
21900         by the base control class now and was causing double border drawing.
21901
21902 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21903
21904         * Panel.cs: Redraw our background on paint. Not a pretty solution,
21905           but it does seem to match MS behaviour. This fixes bug #75324
21906
21907 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21908
21909         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
21910           somewhat hackish looking
21911
21912 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
21913
21914         * TextBoxBase.cs:
21915           - We now accept Enter even if AcceptEnter is false, if the containing
21916             form does not have an AcceptButton configured (fixes bug #76355)
21917           - Calculations are now fixed to no longer use Width/Height, but
21918             ClientSize.Width/Height, since we now support borders (this was
21919             a result of fixing borders and therefore bug #76166)
21920           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
21921             true (fixes bug #76354)
21922         
21923 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21924
21925         * Control.cs: 
21926           - Defaulting BorderStyle and setting it in XplatUI when our window 
21927             is created
21928           - Added enum check to InternalBorderStyle setter
21929         * XplatUIX11.cs: 
21930           - Added drawing of window borders
21931           - Now properly calculates WM decorations offset for toplevel 
21932             windows (fixes bug #74763)
21933         * XplatUIWin32.cs: 
21934           - Implemented BorderStyles for windows (we're letting win32 draw 
21935             the border for us)
21936           - Fixed the signature for SetWindowLong
21937         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
21938           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
21939           setting borders
21940         * UpDownBase.cs: Remove drawing of borders, this is handled by
21941           the driver, outside the client area
21942         * ListView.cs: Removed bogus border calculations. The control should
21943           be oblivious to borders, since those are not part of the client
21944           area. 
21945         * X11DesktopColors.cs: Commented out (currently) unneeded variables
21946         * ThemeWin32Classic.cs: Removed border calculations from ListView 
21947           drawing code
21948
21949 2005-10-06  Jackson Harper  <jackson@ximian.com>
21950
21951         * MdiChildContext.cs: Clear out the old virtual position remove
21952         all the unneeded calls to CreateGraphics.
21953
21954 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
21955
21956         * TextControl.cs: Use proper color for highlighted text; fixes #76350
21957
21958 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
21959
21960         * Form.cs: 
21961           - Added loading and setting of our new default icon
21962           - Only set icon if window is already created
21963
21964 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21965
21966         * Label.cs:
21967           - Do not explicitly set the foreground and background colors, to
21968             allow inheriting from parents (fixes #76302)
21969           - Use Control's InternalBorderStyle property to deal with borders
21970
21971 2005-10-06  Jackson Harper  <jackson@ximian.com>
21972
21973         * MdiChildContext.cs: Use the new xplatui function to draw a
21974         reversible rect.
21975
21976 2005-10-06  Jackson Harper  <jackson@ximian.com>
21977
21978         * Form.cs: Add the parent before creating the child context cause
21979         we need the parent when setting up the child.
21980
21981 2005-10-06  Jackson Harper  <jackson@ximian.com>
21982
21983         * FolderBrowserDialog.cs: redo the tree population code so a
21984         second thread isn't used. Should be a lot faster and more stable
21985         now.
21986
21987 2005-10-05  Jackson Harper  <jackson@ximian.com>
21988
21989         * TreeView.cs: There are no expand/collapse boxes if the node has
21990         no children.
21991
21992 2005-10-05  Jackson Harper  <jackson@ximian.com>
21993
21994         * X11DesktopColors.cs: Get menu colours for the gtk theme.
21995
21996 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
21997
21998         * FileDialog.cs: Fix InitialDirectory
21999
22000 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
22001
22002         * ComboBox.cs:
22003                 - Fixes changing between styles
22004                 - Fixes simple mode
22005                 - Fixes last item crashing when navigating with keyboard
22006
22007 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
22008
22009         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
22010
22011 2005-10-05  Jackson Harper  <jackson@ximian.com>
22012
22013         * TreeView.cs: If updating the root node do a full refresh.
22014         * TreeNode.cs: The root node should be expanded by default. Also
22015         added a utility prop to tell if we are the root node.
22016         * TreeNodeCollection.cs: Only refresh if the node we are being
22017         added to is expanded. Also added a comment on a potential
22018         optimization.
22019         
22020 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
22021
22022         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
22023           in dispose method. Fixes #76330
22024
22025 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
22026
22027         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
22028
22029                 - Implements vertical and horizontal scrolling using XplatUI
22030                 - Fixes keyboard navagation
22031                 - Fixes EnsureVisible
22032                 - Drawing fixes
22033                 - Handles and draws focus properly
22034
22035
22036 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
22037
22038         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
22039           Create handle. NET_2_0: Destroy handle when value is null.
22040
22041 2005-10-03  Jackson Harper  <jackson@ximian.com>
22042
22043         * ScrollBar.cs: My last scrollbar patch was broken. This is a
22044         revert and a new patch to prevent the thumb from refreshing so
22045         much.
22046
22047 2005-10-02  Jackson Harper  <jackson@ximian.com>
22048
22049         * ScrollBar.cs: Don't update position if it hasn't actually
22050         changed. This occurs when you hold down the increment/decrement
22051         buttons and the thumb gets to the max/min.
22052
22053 2005-10-01  Jackson Harper  <jackson@ximian.com>
22054
22055         * Form.cs:
22056         * MdiChildContext.cs:
22057         * MdiClient.cs: Implement ActiveMdiChild in Form.
22058
22059 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
22060
22061         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
22062
22063 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
22064
22065         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
22066           be found
22067
22068 2005-09-30  Jackson Harper  <jackson@ximian.com>
22069
22070         * ListBox.cs: Don't do a full refresh unless some data has
22071         actually changed.
22072
22073 2005-09-30  Jackson Harper  <jackson@ximian.com>
22074
22075         * TreeView.cs: Make sure that the checkboxes size is factored in
22076         even when not visible.
22077
22078 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
22079
22080         * FileDialog.cs: Fix Jordi's build break
22081
22082 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
22083
22084         * FileDialog.cs: 
22085                 - Use standard the Windows colours for the combobox as espected
22086                 - Dispose objects that use resouces when no longer need them
22087
22088 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
22089
22090         * X11DesktopColors.cs: Initial incomplete implementation
22091         * XplatUIX11.cs: Added call to initialize X11DesktopColors
22092
22093 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
22094
22095         * Theme.cs: 
22096           - Switched Theme color names to match the names defined in 
22097             System.Drawing.KnownColors. Life's hard enough, no need to make 
22098             it harder.
22099           - Added setters to all theme color properties so themes can set
22100             their color schemes. The setters also propagate the color changes
22101             to System.Drawing.KnownColors via reflection
22102         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
22103           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
22104           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
22105           use the new, more logical theme color names
22106         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
22107           post-NT colors
22108         * ThemeWin32Classic.cs:
22109           - Removed code to set the old classic Windows colors. Instead it
22110             now relies on the colors returned by System.Drawing.KnownColors
22111             which will be either modern static colors (Unix) or colors
22112             read from the user's configuration (Win32)
22113           - Updated to use the new, more logical theme color names
22114           - Switched DataGrid drawing code to use only Theme colors instead of
22115             a mix of System.Drawing.KnownColors and Theme colors
22116           - DrawFrameControl(): Removed code that fills the button area, the
22117             fill would overwrite any previous fill done by a control. This
22118             fixes bug #75338 
22119           - Added DrawReversibleRectangle() stub
22120         * ScrollableControl.cs: Set visible state to false when scrollbars
22121           are removed (pdn fix)
22122         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
22123           DrawReversibleRectangle() method to allow drawing primitive 
22124           'rubber bands'
22125         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
22126
22127 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22128
22129         * ImageList.cs: Add(Icon): Create handle.
22130
22131 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
22132
22133         * ListView.cs:
22134         * ThemeWin32Classic.cs:
22135                 - Fixes detail mode
22136                 - Sets clippings
22137                 - Issues with drawing
22138
22139 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22140
22141         * ImageList.cs: Moved RecreateHandle back to ImageList as event
22142           source has to be the ImageList.
22143
22144 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22145
22146         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
22147
22148 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22149
22150         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
22151
22152 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22153
22154         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
22155
22156 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
22157         * GridItem.cs: Fixed TODOs
22158         * GridItemCollection.cs: Added ICollection interface
22159
22160 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22161
22162         * ImageList.cs: Resize icons when needed.
22163
22164 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
22165
22166         * ListViewItem.cs
22167                 - Fixes GetBounds and returns on screen rects
22168         * ListView.cs:
22169                 - Fixes vertical and horzintal scrolling of items
22170         * ThemeWin32Classic.cs:
22171                 - Fixes drawing
22172                 
22173 2005-09-29  Raja R Harinath  <harinath@gmail.com>
22174
22175         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
22176
22177 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
22178
22179         * ImageList.cs: Added comments about handle creation. Moved Handle,
22180           HandleCreated and OnRecreateHandle implementations to ImageCollection.
22181           Handle is created in Add methods.
22182
22183 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
22184          
22185         * DataGridDrawingLogic.cs: 
22186                 - Takes rows into account on Colum calculations
22187                 - Returns the column when clickig
22188         * DataGrid.cs:
22189                 - Fixes default HitTestInfo values
22190                 - Fixes HitTestInfo.ToString
22191                 - Fixes ResetBackColor          
22192         
22193 2005-09-28  Jackson Harper  <jackson@ximian.com>
22194
22195         * MdiChildContext.cs: Obey rules for fixed sized windows (no
22196         sizing or cursor changes). Also added some temp code to draw the
22197         titlebars text (Makes dev a little easier).
22198
22199 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
22200
22201         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
22202
22203 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
22204          
22205         * ListBox.cs: Fixes bug 76253
22206
22207 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
22208
22209         * ImageList.cs: Added comments about the current implementation. Added
22210           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
22211           Format32bppArgb to preserve transparency and can use Graphics.FromImage
22212           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
22213           with Bitmap.LockBits for better performance. Revised the whole file to
22214           match MS.NET behaviour and provide better performance. Non-public
22215           interface members are calling public members even when they throw
22216           NotSupportedException for better maintainability. Moved ColorDepth,
22217           ImageSize, ImageStream and TransparentColor implementations to
22218           ImageCollection for better performance as these properties are not used
22219           by ImageList.
22220         * ImageListStreamer.cs: Added a new internal constructor that takes an
22221           ImageList.ImageCollection and serializes Images based on
22222           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
22223           match ImageList property name.
22224
22225 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
22226
22227         * ListBox.cs: Fixes IndexFromPoint for last item
22228
22229 2005-09-27  Jackson Harper  <jackson@ximian.com>
22230
22231         * Form.cs: Set the position of new mdi children correctly.
22232
22233 2005-09-27  Jackson Harper  <jackson@ximian.com>
22234
22235         * MdiClient.cs: New mdi children need to be added to the back of
22236         the controls collection so the zorder is set correctly. Also add a
22237         count of all the child windows that have been created.
22238
22239 2005-09-27  Jackson Harper  <jackson@ximian.com>
22240
22241         * Form.cs (CreateParams): Setup MDI forms correctly.
22242
22243 2005-09-27  Jackson Harper  <jackson@ximian.com>
22244
22245         * MdiChildContext.cs:
22246         * MonthCalendar.cs:
22247         * UpDownBase.cs:
22248         * ListBox.cs:
22249         * ListView.cs:
22250         * TextBoxBase.cs:
22251         * TreeView.cs:
22252         * ScrollableControl.cs:
22253         * ComboBox.cs: Add implicit controls using the new implict control
22254         functionality in ControlCollection. Also try to block multiple
22255         control add in a suspend/resume layout to save some cycles.
22256         
22257 2005-09-27  Jackson Harper  <jackson@ximian.com>
22258
22259         * Control.cs: Add functionality to the controls collection to add
22260         'implicit controls' these are controls that are created by the
22261         containing control but should not be exposed to the user. Such as
22262         scrollbars in the treeview.
22263         * Form.cs: The list var of the ControlsCollection is no longer
22264         available because of the potential of implicit controls getting
22265         ignored by someone accessing the list directly.
22266
22267 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
22268
22269         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
22270           loose it's parent. (Fixed bug introduced in r49103 when we added
22271           setting the child parent to null on Remove)
22272
22273 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
22274
22275         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
22276         * Splitter.cs: Added missing attributes for BorderStyle property.
22277         * TextBoxBase.cs: Marked Calculate* methods internal.
22278         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
22279         MS.NET.
22280
22281 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
22282          
22283         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
22284
22285 2005-09-25  Jackson Harper  <jackson@ximian.com>
22286
22287         * TreeView.cs: Update the node bounds correctly regardless of
22288         whether the node is visible.
22289
22290 2005-09-25  Jackson Harper  <jackson@ximian.com>
22291
22292         * ImageList.cs: Don't dispose the image after it is added to the
22293         image list. Only reformat images that need to be resized.
22294
22295 2005-09-25  Jackson Harper  <jackson@ximian.com>
22296
22297         * ImageList.cs: Don't set the format when changing the image.
22298
22299 2005-09-25  Jackson Harper  <jackson@ximian.com>
22300
22301         * TreeView.cs: We can't just assume the node has a font. Use the
22302         treeviews font if no node font is available.
22303
22304 2005-09-25  Jackson Harper  <jackson@ximian.com>
22305
22306         * TreeView.cs: Allow the scrollbars to be reset with negative
22307         values.
22308         - Don't add scrollbars to negative sized windows.
22309
22310 2005-09-23  Jackson Harper  <jackson@ximian.com>
22311
22312         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
22313         old Mono.Posix. Also remove some stray code that shouldn't have
22314         been committed.
22315
22316 2005-09-23  Jackson Harper  <jackson@ximian.com>
22317
22318         * TreeView.cs: Attempt at proper sizing of the horizontal
22319         scrollbar. Also don't resize the scrollbars unless they are
22320         visible.
22321
22322 2005-09-23  Jackson Harper  <jackson@ximian.com>
22323
22324         * TreeView.cs: We don't need to expand the invalid area when the
22325         selection changes, as this is all drawn in the node's bounding
22326         box. The area needs to be expanded (previous typo was contracting
22327         it) when the focus rect moves.
22328
22329 2005-09-23  Jackson Harper  <jackson@ximian.com>
22330
22331         * TreeView.cs: Display the selection box under the correct
22332         circumstances. We were rendering white text with no selection box
22333         before.
22334
22335 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
22336
22337         * TextControl.cs(Split): Now updates selection start/end if it points 
22338           into a line that's being split. Fixes a FIXME and bug #75258
22339
22340 2005-09-23  Jackson Harper  <jackson@ximian.com>
22341
22342         * Binding.cs:
22343         * ListControl.cs: Don't use the path when retrieving binding
22344         managers from the binding context. My bat sense tells me that the
22345         path is only used on insertion.
22346
22347 2005-09-22  Jackson Harper  <jackson@ximian.com>
22348
22349         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
22350
22351 2005-09-22  Jackson Harper  <jackson@ximian.com>
22352
22353         * Splitter.cs: There are special cursors used for splitting.
22354         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
22355
22356 2005-09-22  Jackson Harper  <jackson@ximian.com>
22357
22358         * Splitter.cs: Change the cursor appropriately when the splitter
22359         is moused over, so the user actually knows there is a splitter
22360         there.
22361
22362 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
22363
22364        * Label.cs : Fix ToString method to give same output as MS.NET
22365
22366 2005-09-22  Jackson Harper  <jackson@ximian.com>
22367
22368         * TreeView.cs: Create the scrollbars when the handle is created
22369         and add them right away, just make them invisble. Also account for
22370         the window being shrunk vertically to the point that the vert
22371         scrollbar needs to be added.
22372         - Remove some 0.5 adjustments to get around anti aliasing issues.
22373         
22374 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
22375          
22376         * MainMenu.cs: Fixes default value
22377         * MenuItem.cs: Fixes default value
22378
22379 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
22380
22381         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
22382
22383 2005-09-21  Jackson Harper  <jackson@ximian.com>
22384
22385         * Control.cs: Don't try to set the border style on the window if
22386         it hasn't been created. When the window is created the border
22387         style will be used.
22388
22389 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
22390
22391         * Control.cs (Update): Don't call XplatUI if we don't have a
22392           window handle yet
22393
22394 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
22395
22396         * ContainerControl.cs: Instead of throwing an exception, print
22397           a one-time warning about Validate not being implemented
22398         * XplatUIWin32.cs: Removed debug output
22399
22400 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
22401
22402         * Control.cs: Only set XplatUI background if we expect the windowing
22403           system to handle the background. This stops controls that draw their
22404           own background from flickering
22405
22406         * XplatUIX11.cs: Support custom visuals and colormaps for window 
22407           creation. This allows, amongst other things, using MWF X11 windows 
22408           with OpenGL.
22409
22410 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
22411
22412         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
22413           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
22414           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
22415           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
22416           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
22417           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
22418           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
22419           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
22420           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
22421           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
22422           GridColumnStylesCollection.cs, 
22423           IDataGridColumnStyleEditingNotificationService.cs,
22424           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
22425           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
22426           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
22427           TreeNodeCollection.cs, AmbientProperties.cs, 
22428           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
22429           DataObject.cs, ErrorProvider.cs, Splitter.cs,
22430           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
22431           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
22432           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
22433           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
22434           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
22435           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
22436           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
22437           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
22438           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
22439           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
22440           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
22441           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
22442           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
22443           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
22444           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
22445           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
22446           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
22447           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
22448           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
22449           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
22450           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
22451           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
22452           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
22453           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
22454           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
22455           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
22456           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
22457           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
22458           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
22459           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
22460           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
22461           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
22462           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
22463           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
22464           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
22465
22466 2005-09-21  Jackson Harper  <jackson@ximian.com>
22467
22468         * TreeNode.cs: Call Before/After Expand not Collapse when
22469         expanding.
22470
22471 2005-09-20  Jackson Harper  <jackson@ximian.com>
22472         
22473         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
22474
22475 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
22476          
22477         * ListViewItem.cs:
22478                 - Fixes bug 76120
22479                 - Fixes proper storing of subitems
22480                 - Fixes not updated items
22481
22482 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
22483
22484         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
22485           things if our window handle isn't created yet. Also disabled 
22486           debug for TextBoxBase
22487
22488 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
22489
22490         * MenuAPI.cs: Remove filtering of events to allow menu usage
22491
22492 2005-09-20  Miguel de Icaza  <miguel@novell.com>
22493
22494         * Cursor.cs: Allow null to be passed to Cursor.Current.
22495
22496 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
22497
22498         * ThemeWin32Classic.cs:
22499           - Change some private methods/fields to protected virtual so that 
22500             they can be accessed and overriden in derived classes
22501           - First refactoring of some methods. Derived themes now don't 
22502             need to duplicate the complete code from ThemeWin32Classic
22503         * ThemeNice.cs:
22504           - Added nice StatusBar
22505           - Derive from ThemeWin32Classic and not Theme
22506           - Removed duplicate ThemeWin32Classic code
22507
22508 2005-09-20  Miguel de Icaza  <miguel@novell.com>
22509
22510         * Control.cs (ControlCollection.Add): If the value null is passed
22511         the control is ignored. 
22512
22513         Optimize this loop.
22514
22515 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
22516
22517         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
22518           PostQuitMessage state.
22519         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
22520
22521 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
22522
22523         * Application.cs: Our constructor will never get called, move 
22524           initialization to fields; fixes bug #75933
22525
22526 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
22527
22528         * FileDialog.cs :
22529                 - Allow files to be selected properly using file name
22530                 combo box.
22531                 - Add ability to change diretory (absolute / relative)
22532                 using file name combo box.
22533
22534 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
22535          
22536         * ListBox.cs: 
22537                 - Fixes Multicolumn listboxes item wrong calculations
22538                 - Allows to click when only one item is in the listbox
22539                 - Fixes crash when no items using keyboard navigation
22540
22541 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
22542
22543         * ComboBox.cs: Reverted almost everything from the latest patch which
22544           broke ComboBox
22545
22546 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
22547         
22548         * ToolTip.cs:
22549                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
22550         * ComboBox.cs:
22551                 - When DropDownStyle is Simple, it does not show scrollbar 
22552                 to the last item of the list.
22553                 - When DropDownStyle is Simple, it crashed when the list was 
22554                 scrolled down with the down cursor key.
22555                 - Fixed a bug that when DropDownStyle is DropDownList, the 
22556                 selected item was not shown.
22557                 - The position of the selected item was not preserved when 
22558                 the next dropdown happened.
22559         * ThemeWin32Classic.cs:
22560                 - Items were wrapped at the right end.
22561         * CheckedListBox.cs:
22562                 - Fixed Add method
22563         * ListBox.cs:
22564                 - Items should be fully shown.
22565                 - When resizing and vertical scrollbar disappeared, the item 
22566                 of index 0 should be on the top of the list.
22567                 - GetItemRectangle should consider the size of ver. scrollbar
22568         * StatusBar.cs:
22569                 - SizingGrip area should not be allocated when it is not 
22570                 displayed.
22571                 - Now it reflects MinWidth of the containing panel and 
22572                 fixed a crash that happens when its width becomes so small.
22573
22574 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
22575
22576         * CheckedListBox.cs: Fixes bug 76028
22577         * ListBox.cs: Fixes bug 76028
22578
22579 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
22580
22581         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
22582         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
22583
22584 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
22585
22586         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
22587
22588 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
22589
22590         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
22591
22592 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
22593
22594         * IRootGridEntry.cs: Added
22595         * PropertyGridCommands.cs: Added
22596         * PropertiesTab.cs: Added missing methods and property
22597         * PropertyGridView.cs: Made class internal
22598         * PropertyGridTextBox.cs: Made class internal
22599
22600 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
22601
22602         * MimeIcon.cs: Try to check some other environment variables
22603           if "DESKTOP_SESSION" returns "default"
22604
22605 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
22606
22607         * ThemeNice.cs: Corrected background colors (e.g. menus)
22608         * ColorDialog.cs: Use correct background colors for controls
22609
22610 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
22611
22612         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
22613
22614 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
22615
22616         * RichTextBox.cs: Added initial implementation
22617         * lang.cs: Removed. Was accidentally checked in long time ago
22618         * TODO: Removed. Contents were obsolete
22619
22620 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
22621                                                                                 
22622         * PropertiesTab.cs : Added
22623
22624 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
22625                                                                                 
22626         * PropertyGrid.cs : Update
22627         * PropertyGridView.cs : Update
22628         * System.Windows.Forms.resx : Added images and strings
22629
22630 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
22631
22632         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
22633  
22634 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
22635
22636         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
22637           a busy loop right after the Ungrab the X11 display is otherwise 
22638           blocked
22639
22640 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
22641
22642         * ThemeWin32Classic.cs: Optimise the use of clipping
22643
22644 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
22645
22646         * DataGrid.cs: fixes recursion bug
22647
22648 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
22649
22650         * ThemeNice.cs: 
22651           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
22652           - Cleanup
22653
22654 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
22655
22656         * ThemeNice.cs: Draw nice ProgressBars
22657
22658 2005-09-01  Miguel de Icaza  <miguel@novell.com>
22659
22660         * VScrollBar.cs: Another buglet found by Aaron's tool. 
22661
22662         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
22663         bug finder.
22664
22665 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
22666
22667         * ThemeNice.cs:
22668           - Added nicer menu drawing
22669           - Updated DrawTab
22670           - some refactoring
22671
22672 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
22673
22674         * CreateParams.cs (ToString): Made output match MS
22675         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
22676             handle is already created (to avoid forcing window creation)
22677         * XplatUIX11.cs: Set window text to caption after creating window,
22678           in case Text was set before window was created
22679         * Form.cs: Use this.Text instead of a static string as caption
22680
22681 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
22682
22683         * NotifyIcon.cs: Don't set the window to visible; this screws
22684           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
22685           OnPaint without a bitmap)
22686         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
22687           happen very often anyway; we could add the check to the WM_PAINT 
22688           event generation code
22689
22690 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
22691
22692         * NotifyIcon.cs: Fill the icon area with a background color, to 
22693           avoid 'residue' when transparent icons are drawn
22694         * XplatUIX11.cs:
22695           - Handle whole_window == client_window when destroying windows
22696           - SystrayAdd(): Set client_window to whole_window value to
22697             get mouse and other events passed to NotifyIcon
22698
22699 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
22700
22701         * Form.cs: Set proper default for Opacity property
22702         * NotifyIcon.cs:
22703           - ShowSystray(): Don't bother creating telling the OS
22704             about the systray item if no icon is provided
22705           - Now handles WM_NCPAINT message to deal with whole/client window
22706             split
22707           - Create window as visible to not get caught by Expose optimization
22708         * Hwnd.cs: Removed debug message
22709         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
22710           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
22711             PaintEventStart/End to use new client argument
22712         * TextBoxBase.cs:
22713           - Commented out debug messages
22714           - Switched PaintEventStart/End to use new client argument
22715         * XplatUI.cs: Added client window bool to PaintEventStart()/
22716           PaintEventEnd() calls, to support drawing in non-client areas
22717         * XplatUIDriver.cs: 
22718           - Added client window bool to PaintEventStart()/PaintEventEnd() 
22719             calls, to support drawing in non-client areas
22720           - Added conditional compile to allow using MWF BeginInvoke 
22721             on MS runtime
22722         * XplatUIX11.cs:
22723           - Added some conditional debug output
22724           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
22725             whole/client window split
22726           - Implemented handling of client argument to PaintEventStart()/End()
22727         * Control.cs:
22728           - Throw exception if BeginInvoke() is called and the window handle
22729             or one of the window's parent handles is not created
22730           - Added conditional compile to allow using MWF BeginInvoke on
22731             MS runtime
22732           - get_Parent(): Only sets parent if handle is created. This avoids
22733             forcing window handle creation when parent is set.
22734           - Now fires Layout and Parent changed events in proper order
22735           - Switched to use Handle instead of window.Handle for Z-Order setting,
22736             the get_Parent() patch above causes us to possibly get null for 'window'
22737           - Implemented handling of client argument to PaintEventStart()/End()
22738           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
22739             default handling)
22740           - Now sends a Refresh() to all child windows when Refresh() is called
22741
22742 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
22743
22744         * Form.cs: Added (non-functional) Opacity property
22745         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
22746
22747 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
22748         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
22749           use export MONO_THEME=nice to activate it.
22750           Currently supported controls:
22751           - Button
22752           - ComboBox
22753           - ScrollBar
22754           - TabControl (TabAlignment.Top only, other will follow)
22755         * ThemeEngine.cs: Add theme nice
22756         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
22757           if enabled
22758
22759 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
22760
22761         * Splitter.cs: Resize docked control and its neighbor.
22762
22763 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
22764         -- Making Windows with Menus layout correctly --
22765         * Form.cs : The first leg of the fix
22766                 Menu setter - adjust Client Size as needed to make space for the menu
22767                 SetClientSizeCore - doesn't call base version to be able to pass the 
22768                         menu handle to XplatUI.CalculateWindowRect
22769         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
22770         * XplatUIX11.cs: The critical second leg of the fix
22771                 GetWindowPos needs to use a recalculated client_rect
22772                 so that resizing the window doesn't break layout of child controls. 
22773                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
22774                 Lots of \t\n killed
22775
22776 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
22777
22778         * Label.cs: Now properly recalculates width and height on Font and Text
22779           changes if AutoSize is set
22780
22781 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
22782         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
22783
22784 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
22785
22786         * ImageList.cs: Makes ToString method compatible with MS
22787
22788 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
22789
22790         * MenuAPI.cs: fixes bug 75716
22791
22792 2005-08-11 Umadevi S <sumadevi@novell.com>
22793         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
22794
22795 2005-08-11 Umadevi S <sumadevi@novell.com>
22796         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
22797
22798 2005-08-10  Umadevi S <sumadevi@novell.com>
22799         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
22800
22801 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
22802
22803         * Menu.cs: fixes bug 75700
22804         * MenuAPI.cs: fixes navigation issues
22805
22806 2005-08-09  Umadevi S <sumadevi@novell.com>
22807         * CheckedListBox.cs - simple fix for GetItemChecked.
22808
22809 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
22810
22811         * ComboBox.cs: Serveral fixes
22812         * ListBox.cs: Serveral fixes
22813
22814 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
22815
22816         * ComboBox.cs: Fixes FindString methods and GetItemHeight
22817         * ListBox.cs: Fixes FindString methods
22818
22819 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
22820
22821         * DataGrid.cs: fixes bugs exposed by new tests
22822
22823 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
22824
22825         * Mime.cs: Compile Mono assembly references only if compiling
22826           with Mono (Allows to build with VS.Net again)
22827
22828 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
22829
22830         * Control.cs (PaintControlBackground): Draw background image
22831         corrrectly.
22832         (CheckForIllegalCrossThreadCalls): Stubbed.
22833         
22834         * Form.cs (OnCreateControl): Center when should be centered.
22835         
22836         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
22837
22838 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
22839
22840         * Binding.cs: Binding to properties should be case unsensitive
22841
22842 2005-07-18 vlindos@nucleusys.com
22843
22844         * DataGrid.cs: fixes setmember order
22845
22846 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
22847
22848         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
22849         * FileDialog.cs: FileDialog is now resizable and uses the new
22850           MimeIconEngine
22851
22852 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
22853
22854         * DataGridTextBoxColumn.cs: default value
22855         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
22856         * GridTableStylesCollection.cs: fixes checking MappingName
22857         * DataGridDrawingLogic.cs: fixes drawing logic issues
22858         * DataSourceHelper.cs: rewritten to make compatible with more data sources
22859         * DataGrid.cs: fixes    
22860
22861 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
22862
22863         * MimeGenerated.cs: Use case sensitive comparer for
22864           NameValueCollections
22865
22866 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
22867
22868         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
22869         * ThemeWin32Classic.cs: bug fixes, code refactoring
22870         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
22871         * DataGrid.cs: bug fixes, code refactoring
22872         * DataGridTextBox.cs: bug fixes, code refactoring
22873         * DataGridColumnStyle.cs:  bug fixes, code refactoring
22874         * Theme.cs:  bug fixes, code refactoring
22875
22876 2005-07-01  Peter Bartok  <pbartok@novell.com> 
22877
22878         * TextControl.cs: Quick fix for the reported crash on ColorDialog
22879           and other text box usage
22880
22881 2005-07-01  Jackson Harper  <jackson@ximian.com>
22882
22883         * TabControl.cs: Make sure the bottom of the tab covers the pages
22884         border.
22885
22886 2005-06-30  Peter Bartok  <pbartok@novell.com> 
22887
22888         * Form.cs (ShowDialog): Assign owner of the dialog
22889         * TextBoxBase.cs: Always refresh caret size when deleting, caret
22890           might have been moved to a tag with different height
22891
22892 2005-06-30  Jackson Harper  <jackson@ximian.com>
22893
22894         * Form.cs: Don't create an infinite loop when setting focus
22895         * MenuItem.cs: Don't dirty the parents if we don't have any
22896
22897 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
22898
22899         * LibSupport.cs: Rename
22900
22901 2005-06-29  Peter Bartok  <pbartok@novell.com>
22902
22903         * TextBoxBase.cs: Re-align caret after deleting a character
22904         * TextControl.cs:
22905           - DeleteChars(): Ensure that tag covers the provided position
22906           - StreamLine(): Drop reference for dropped tag
22907
22908 2005-06-29  Peter Bartok  <pbartok@novell.com> 
22909
22910         * TextControl.cs: 
22911           - Selections now work properly, anchoring at the initial location
22912             and properly extending in either direction (SetSelectionToCaret(),
22913             SetSelectionStart() and SetSelectionEnd())
22914           - No longer redraws the whole control on selection change, now
22915             calculates delta between previous and new selection and only
22916             invalidates/redraws that area
22917           - Fixed FindPos() math off-by-one errors
22918           - Changed DeleteChars() to verify the provided tag covers the
22919             provided position, selections may have a tag that doesn't cover
22920             the position if the selection is at a tag border
22921           - Fixed off-by-one errors in DeleteChars()
22922           - Added missing streamlining check in DeleteChars() to remove
22923             zero-length tags
22924           - Implemented Invalidate() method, now properly calculates exposures
22925             between two given lines/positions
22926           - Implemented SetSelection()
22927           - Obsoleted and removed FixupSelection()
22928           - Improved RecalculateDocument() logic, removing code duplication
22929
22930 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22931
22932         * LibSupport.cs: changes to match different input/output arguments.
22933
22934 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22935
22936         * LibSupport.cs: added libsupport.so init routine.
22937
22938 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
22939         
22940         * ControlBindingsCollection.cs
22941                 - Throws an exception on null datasource when adding
22942                 - Checks for duplicated bindings when adding
22943
22944 2005-06-28  Jackson Harper  <jackson@ximian.com>
22945
22946         * TreeView.cs (OnKeyDown): Support left and right properly
22947         (navigates as well as expanding and collapsing.
22948         - Add support for Multiply, this expands all the selected nodes
22949         children.
22950         - Fix some tabbing.
22951
22952 2005-06-28  Jackson Harper  <jackson@ximian.com>
22953
22954         * TreeView.cs: Implement keyboard navigation, currently supports,
22955         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
22956         support for toggling checkboxes with the space bar.
22957
22958 2005-06-28  Jackson Harper  <jackson@ximian.com>
22959
22960         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
22961         tree.
22962
22963 2005-06-28  Jackson Harper  <jackson@ximian.com>
22964
22965         * TreeView.cs: Add missing event.
22966
22967 2005-06-27  Peter Bartok  <pbartok@novell.com> 
22968
22969         * TextControl.cs:
22970           - Made line ending size configurable (now allows for counting 
22971             lineendings as \n or \r\n)
22972           - Added margin to viewport to keep caret visible on right side
22973           - Fixed translation routines for line/pos to documentpos to consider
22974             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
22975           - Fixed some line-endings to be unix style
22976           - Fixed Document.FormatText to perform it's calculations 1-based
22977           - Added descriptions for a few methods that might otherwise get 
22978             used wrong
22979           - Added NOTE section with some basic conventions to remember at 
22980             the top of the file
22981           - Major fixup for RichTextBox selection drawing:
22982             * Fixed crashes when multiple tags on a single line were selected
22983             * fixed selection box drawing not overlaying text
22984             * fixed bogus offset calculation for tags not starting at index 1
22985             * Switched behaviour from using multiple Substrings of a 
22986               StringBuilder.ToString() to using multiple 
22987               StringBuilder.ToString(start, length) statements, hoping this is
22988               faster (kept original version commented out in the code, in case
22989               original version was faster)
22990         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
22991           alignment != Left
22992         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
22993           call it as well
22994
22995 2005-06-27  Jackson Harper  <jackson@ximian.com>
22996
22997         * TabControl.cs: Move to the left and right with the arrow
22998         keys. These keys don't cycle beyond first and last like
22999         tab. Refresh all the tabs when scrolling them to the left or
23000         right.
23001
23002 2005-06-27  Jackson Harper  <jackson@ximian.com>
23003
23004         * TabControl.cs:
23005           - ToString: Added method
23006           - CreateParams: Remove TODO and comment
23007           - OnKeyDown: Cycle through bounds properly.
23008           - SelectedIndex: Scroll to the right or left if we need to
23009           display the newly selected tab.
23010
23011 2005-06-23  Jackson Harper  <jackson@ximian.com>
23012
23013         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
23014         set.
23015
23016 2005-06-23  Jackson Harper  <jackson@ximian.com>
23017
23018         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
23019         CTRL-SHIFT-TAB, and HOME, END are there any others?
23020
23021 2005-06-23  Jackson Harper  <jackson@ximian.com>
23022
23023         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
23024
23025 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
23026         
23027         * DataGridTextBoxColumn.cs: fixes and enhancements
23028         * ThemeWin32Classic.cs: fixes and enhancements
23029         * DataGridBoolColumn.cs:  fixes and enhancements
23030         * DataGridDrawingLogic.cs:  fixes and enhancements
23031         * CurrencyManager.cs: fixes and enhancements
23032         * DataGrid.cs: fixes and enhancements
23033         * DataGridColumnStyle.cs:  fixes and enhancements
23034
23035 2005-06-22  Jackson Harper  <jackson@ximian.com>
23036
23037         * TabControl.cs: Add some missing methods that just call into the
23038         base. Make the TabPageCollection's IList interface behave in the
23039         same manner as the MS implementation.
23040
23041 2005-06-22  Peter Bartok  <pbartok@novell.com> 
23042
23043         * TextControl.cs: Added sanity check
23044         * TextBoxBase.cs: 
23045           - Fixed wrapping behaviour, don't set wrap on single line controls
23046             (this fixes the breakage of colordialog introduced in an earlier
23047              checkin)
23048           - Added rudimentary support for autoscrolling right-aligned controls
23049             (still needs fixing, also, center alignment scroll is missing)
23050
23051 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
23052         
23053         * ScrollBar.cs: Fixes thumbpos on Maximum values
23054
23055 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
23056         
23057         * PropertyGridView.cs: Pass context information to UITypeEditors 
23058
23059 2005-06-21  Peter Bartok  <pbartok@novell.com> 
23060
23061         * TextBoxBase.cs:
23062           - Now calling PositionCaret with absolute space coordinates
23063           - Enabled vertical scrolling
23064           - Better tracking of scrollbar changes, tied into WidthChange
23065             event
23066           - Improved cursor tracking
23067           - Removed debug output
23068         * TextControl.cs:
23069           - PositionCaret coordinates are now works in absolute space, not 
23070             the canvas
23071           - Improved tracking of document size
23072           - Added events for width and height changes
23073
23074 2005-06-21  Peter Bartok  <pbartok@novell.com>
23075
23076         * Form.cs: Set focus to active control when form is activated
23077         * TextControl.cs: 
23078           - Added word-wrap functionality to RecalculateLine() 
23079           - Added some short function descriptions for VS.Net to aid in
23080             writing dependent controls
23081           - Added Caret property, returning the current coords of the caret
23082           - Added ViewPortWidth and ViewPortHeight properties
23083           - Added Wrap property
23084           - Added CaretMoved event
23085           - Removed some old debug code
23086           - Split() can now create soft splits
23087           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
23088           - Added method to format existing text
23089           - Fixed size/alignment calculations to use viewport
23090           - RecalculateDocument now can handle changing line-numbers while
23091             calculating lines
23092
23093         * TextBox.cs:
23094           - Added some wrap logic, we don't wrap if alignment is not left
23095           - Added casts for scrollbar var, base class switched types to
23096             also support RichTextBoxA
23097           - Implemented handling of scrollbar visibility flags
23098
23099         * TextBoxBase.cs:
23100           - Switched scrollbars type to RichTextBoxScrollBars to support
23101             RichTextBox
23102           - Added tracking of canvas width/height
23103           - Switched scrollbars to be not selectable (to keep focus on text)
23104           - Added central CalculateDocument() method to handle all redraw
23105             requirements
23106           - Added ReadOnly support
23107           - Added WordWrap support
23108           - Fixed handling of Enter key (we now treat it as a DialogKey)
23109           - Fixed caret positioning when h or v scroll is not zero
23110           - Fixed placing/generation of vertical scrollbar
23111           - Added CalculateScrollBars() method to allow updating scrollbar
23112             limits and visibility
23113           - Fixed handling of horizontal scroll
23114           - Added handling of vertical scroll
23115           - Implemented auto-'jump' when caret moves to close to a left or
23116             right border and there is text to be scrolled into view (currently
23117             there's the potential for a stack overflow, until a bug in
23118             scrollbar is fixed)
23119
23120 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
23121         
23122         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
23123
23124 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
23125
23126         * Mime.cs:
23127         - added inodes.
23128         - return application/x-zerosize for files with size zero
23129           (if no extension pattern matches).
23130         - check matches collection for strings too.
23131         - return only the first mime type if the name value
23132           collection has more than one mime type.
23133
23134 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
23135         
23136         * PropertyGrid.cs: Cleaned up some TODOs
23137         * PropertyGridView.cs: Added support for UITypeEditors
23138
23139 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
23140         
23141         * DataGrid.cs: clears cached value
23142
23143 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
23144
23145         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
23146         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
23147         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
23148         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
23149         
23150 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
23151
23152         * ThemeWin32Classic.cs: fixes colour
23153
23154 2005-06-15  Peter Bartok  <pbartok@novell.com>
23155
23156         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
23157         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
23158         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
23159         * Control.cs: Added some MWFCategory and MWFDescription attributes
23160         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
23161
23162 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
23163
23164         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
23165         usage
23166
23167 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
23168
23169         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
23170         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
23171         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
23172         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
23173         * DataGrid.cs: default datagrid settings for Default Styles, fixes
23174         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
23175
23176 2005-06-13  Jackson Harper  <jackson@ximian.com>
23177
23178         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
23179         isn't printed when the user enables dropping. (X11 does accept
23180         drops).
23181         
23182 2005-06-13  Jackson Harper  <jackson@ximian.com>
23183
23184         * TreeView.cs: Remove some TODOS.
23185
23186 2005-06-13  Jackson Harper  <jackson@ximian.com>
23187
23188         * Form.cs: Hook into the mdi framework.
23189         * MdiClient.cs: Use the base control collections add method so
23190         parents get setup correctly. Set the default back colour and dock
23191         style.
23192         * MdiChildContext.cs: New class, this bad actor handles an
23193         instance of an MDI window. Right now there is only basic
23194         support. You can drag, close, and resize windows. Minimize and
23195         Maximize are partially implemented.
23196
23197 2005-06-13  Jackson Harper  <jackson@ximian.com>
23198
23199         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
23200         freaky when both vals are negative. NOTE: There are probably other
23201         places in XplatUIX11 that this needs to be done.
23202
23203 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
23204
23205         * DataGrid.cs: implement missing methods, move KeyboardNavigation
23206         * DataGridColumnStyle.cs: fixes signature
23207
23208 2005-06-12  Jackson Harper  <jackson@ximian.com>
23209
23210         * XplatUIX11.cs: Use sizing cursors similar to the ones on
23211         windows.
23212
23213 2005-06-11  Jackson Harper  <jackson@ximian.com>
23214
23215         * StatusBarPanel.cs: Signature cleanups. Implement
23216         BeginInit/EndInit.
23217
23218 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
23219
23220         * DataGridTextBoxColumn.cs: Honors aligment
23221         * GridColumnStylesCollection.cs: Contains is case unsensitive
23222         * GridTableStylesCollection.cs: several fixes
23223         * DataGridTableStyle.cs: default column creation
23224         * DataGridDrawingLogic.cs: fixes
23225         * CurrencyManager.cs: ListName property
23226         * DataGrid.cs: multiple styles support
23227         * DataGridColumnStyle.cs: fixes
23228         
23229
23230 2005-06-10  Peter Bartok  <pbartok@novell.com>
23231
23232         * Control.cs(Select): Moved SetFocus call to avoid potential
23233           loops if controls change the active control when getting focus
23234         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
23235           the up/down buttons
23236
23237 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
23238
23239         * ImageListConverter.cs: Implemented
23240
23241 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
23242
23243         * MonthCalendar.cs: Wired in NumericUpDown control for year
23244
23245 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
23246
23247         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
23248           DoubleClick events, since they are not meant to be fired.
23249
23250 2005-06-09  Peter Bartok  <pbartok@novell.com>
23251
23252         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
23253           Jonathan's standalone controls into MWF, implemented missing
23254           events, attributes and methods; added xxxAccessible classes
23255         * AccessibleObject.cs: Made fields internal so other classes
23256           can change them if needed
23257
23258 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
23259
23260         * UpDownBase.cs: Complete implementation
23261         * NumericUpDown.cs: Complete implementation
23262         * DomainUpDown.cs: Complete implementation
23263
23264 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
23265
23266         * DataGridTextBoxColumn.cs: drawing fixes
23267         * DataGridCell.cs: fixes ToString method to match MSNet
23268         * DataGridTableStyle.cs: fixes
23269         * DataGridBoolColumn.cs: fixes, drawing
23270         * DataGridDrawingLogic.cs: fixes, new methods
23271         * DataGridTextBox.cs: Keyboard and fixes
23272         * DataGrid.cs:
23273                 - Keyboard navigation
23274                 - Scrolling fixes
23275                 - Row selection (single, multiple, deletion, etc)
23276                 - Lots of fixes
23277         
23278 2005-06-07  Jackson Harper  <jackson@ximian.com>
23279
23280         * ThemeWin32Classic.cs: Clear the background area when drawing
23281         buttons.
23282
23283 2005-06-06  Peter Bartok  <pbartok@novell.com>
23284
23285         * ImageListStreamer.cs: Fixed signature for GetData
23286         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
23287         * ComboBox.cs:
23288           - Added missing ChildAccessibleObject class
23289           - Added missing OnXXXFocus overrides, switched to using those
23290             instead of the event handler
23291         * Control.cs:
23292           - Added Parent property for ControlAccessibleObject
23293           - Fixed signatures
23294           - Fixed attributes
23295           - Added ResetBindings()
23296         * ListBindingConverter.cs: Implemented some methods
23297         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
23298         * ImageList.cs: Implemented basic handle scheme, removed TODOs
23299         * ContainerControl.cs: Fixed signature, now subscribing to the
23300           ControlRemoved event instead of overriding the handler, LAMESPEC
23301         * CurrencyManager.cs: Added missing attribute
23302         * MonthCalendar.cs: Added missing properties
23303
23304 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
23305
23306         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
23307         
23308 2005-06-06  Gaurav Vaish and Ankit Jain
23309
23310         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
23311         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
23312         
23313 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
23314
23315         * Control.cs: fixes CreateParams Width / Height.
23316
23317 2005-06-05  Peter Bartok  <pbartok@novell.com>
23318
23319         * Win32DnD.cs: Removed compilation warnings
23320
23321 2005-06-05  Peter Bartok  <pbartok@novell.com>
23322
23323         * Control.cs (CreateParams): Since we don't know if one of the
23324           properties we use is overridden, lets make sure if we fail accessing
23325           we continue with a backup plan
23326
23327 2005-06-05  Peter Bartok  <pbartok@novell.com>
23328
23329         * Win32DnD.cs:
23330           - Removed debug output
23331           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
23332             struct
23333           - Plugged resource leak
23334         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
23335           MS size
23336
23337 2005-06-05  Peter Bartok  <pbartok@novell.com>
23338
23339         * XplatUIWin32.cs: Removed DnD code
23340         * Win32DnD.cs: Implemented drop source and drop target functionality
23341
23342 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23343
23344         * UpDownBase.cs: remove duplicate addition of event, enable some code
23345         that was commented out.
23346         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
23347         Validate input when a key is pressed. It works fine now for every
23348         combination of Hexadecimal. Only missing some drawing love when sharing
23349         space with other controls.
23350
23351 2005-06-04  Peter Bartok  <pbartok@novell.com>
23352
23353         * Control.cs:
23354           - We need to pass a window for DragDrop, so enable callback events
23355           - Added DnD callback events when being a DragSource
23356         * XplatUI.cs (StartDrag): Added window handle argument
23357         * XplatUIDriver.cs (StartDrag): Added window handle argument
23358         * QueryContinueDragEventArgs: Made fields internally accessible so
23359           drivers can set them
23360         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
23361           can set them
23362
23363 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
23364
23365         * DataGridTextBoxColumn.cs: column text editing
23366         * DataGridTableStyle.cs: Respect columns styles created by the user
23367         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
23368         * DataGridBoolColumn.cs: bool column editing
23369         * DataGrid.cs: fixes to scrolling, properties, etc
23370         * DataGridTextBox.cs: handle keyboard
23371         * DataGridColumnStyle.cs: fixes
23372
23373 2005-06-02  Jackson Harper  <jackson@ximian.com>
23374
23375         * ImageListStreamer.cs: Somewhat broken implementation of
23376         GetObjectData. The RLE needs some work to match MS properly.
23377
23378 2005-06-02  Jackson Harper  <jackson@ximian.com>
23379
23380         * X11Dnd.cs: Attempting to keep at least one file in MWF
23381         monostyled.
23382
23383 2005-06-02  Peter Bartok  <pbartok@novell.com>
23384
23385         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
23386           that way
23387
23388 2005-06-02  Peter Bartok  <pbartok@novell.com>
23389
23390         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
23391         * XplatUI.cs: Added DoDragDrop() method
23392         * XplatUIDriver.cs: Added DoDragDrop() method
23393
23394 2005-06-02  Jackson Harper  <jackson@ximian.com>
23395
23396         * Splitter.cs: Implement BorderStyle.
23397
23398 2005-06-02  Jackson Harper  <jackson@ximian.com>
23399
23400         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
23401         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
23402         X11 using XDND.
23403
23404 2005-06-02  Peter Bartok  <pbartok@novell.com>
23405
23406         * DataObject.cs:
23407           - Added Data setter
23408           - Fixed broken insertion code for SetData, now also
23409             overwrites any existing entry of the same format name
23410         * Hwnd.cs: Added list of pointers that automatically gets
23411           freed when the window is disposed
23412         * XplatUI.cs: Call driver initialization method when loading
23413           a driver
23414         * Control.cs:
23415           - OnDragLeave takes EventArgs, not DragEventArgs
23416           - Added setting of WS_EX_ACCEPTFILES style when dropping is
23417             supported
23418           - Forces style update when drop state changes
23419         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
23420           not perfect since we cannot (yet) call the IDataObject.GetData()
23421           method, we keep getting 0x80004005 error, dunno why)
23422
23423 2005-06-02  Peter Bartok  <pbartok@novell.com>
23424
23425         * DragEventArgs.cs: Make fields internal so we can cache the
23426           object and re-set the fields from XplatUI
23427
23428 2005-06-02  Jackson Harper  <jackson@ximian.com>
23429
23430         * Control.cs: Add some internal methods so the DnD subsystem can
23431         raise DnD events. Also call into the driver when AllowDrop is set.
23432         * XplatUI.cs:
23433         * XplatUIDriver.cs: New method for setting whether or not a window
23434         is allowed to accept drag and drop messages.
23435                 
23436 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
23437         
23438         * ScrollBar.cs: Make sure that values sent in Scroll events
23439         are always between Maximum and Minimum.
23440
23441 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
23442
23443         * Menu.cs: Call MenuChanged when menuitem visibility has been
23444         changed.
23445         * MenuItem.cs: Rebuild menu when item is (not) visible.
23446         * MainMenu.cs: MainMenu has special MenuChanged.
23447         * Theme.cs: Caption and FrameBorderSize are not fixed.
23448         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
23449         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
23450         * XplatUIX11.cs,
23451         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
23452         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
23453
23454 2005-05-30  Jackson Harper  <jackson@ximian.com>
23455
23456         * DataFormat.cs: We can't statically initialize this stuff because
23457         it calls into the xplatui and could create a loop. So we lazy init
23458         it.
23459
23460 2005-05-28  Jackson Harper  <jackson@ximian.com>
23461
23462         * Control.cs: Proper implementation of Product(Name/Version).
23463
23464 2005-05-27  Jackson Harper  <jackson@ximian.com>
23465
23466         * DataObject.cs: Dont crash if no data is found.
23467
23468 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
23469         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
23470                 as per status page, guessing it should be set to true
23471
23472 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
23473
23474         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
23475         * DataGridTableStyle.cs: set proper formatting text, def header text
23476         * ThemeWin32Classic.cs: new themable paramaters
23477         * DataGridBoolColumn.cs: paint check box, get data, fixes
23478         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
23479         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
23480         * DataGridColumnStyle.cs: fixes
23481         * Theme.cs: new themable paramaters
23482                 
23483 2005-05-26  Peter Bartok  <pbartok@novell.com>
23484
23485         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
23486
23487 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
23488         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
23489
23490 2005-05-24  Peter Bartok  <pbartok@novell.com>
23491
23492         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
23493           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
23494           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
23495           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
23496           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
23497           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
23498           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
23499           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
23500           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
23501           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
23502           missing attributes, etc
23503         * DataGridPreferredColumnWidthTypeConverter.cs: Added
23504
23505 2005-05-24  Peter Bartok  <pbartok@novell.com>
23506
23507         * Help.cs: Added, implemented trivial functions, throws up MessageBox
23508           when user tries to get help
23509         * DataObject.cs, DataFormats.cs, LinkArea.cs,
23510           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
23511           to suppress warnings
23512         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
23513           avoid unreachable code warning
23514
23515 2005-05-20  Peter Bartok  <pbartok@novell.com>
23516
23517         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
23518
23519 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
23520
23521         * DataGridTextBoxColumn.cs: Basic painting methods
23522         * DataGridTableStyle.cs: Set table style in the column
23523         * ThemeWin32Classic.cs: Use Theme for colors
23524         * DataGridDrawingLogic.cs: Implement more drawing
23525         * DataGrid.cs: drawing, theming, enhacements, fixes
23526         * DataGridColumnStyle.cs: fixes, drawing
23527         * Theme.cs: theming for Datagrid
23528
23529 2005-05-20  Peter Bartok  <pbartok@novell.com>
23530
23531         * Cursor.cs: Implemented GetObjectData() method
23532
23533 2005-05-20  Peter Bartok  <pbartok@novell.com>
23534
23535         * Cursors.cs: Added setting of cursor name
23536         * Cursor.cs:
23537           - Implemented constructors
23538           - Implemented Draw and DrawStretched
23539           - Implemented Current property
23540           - Implemented == and != operators
23541           - Implemented Dispose()
23542           - Implemented ToString
23543           - Added missing attributes
23544         * XplatUIX11.cs:
23545           - Added missing reset for OverrideCursor when DoEvents is called
23546           - Fixed creation of cursor, logic was wrong
23547         * XplatUIWin32.cs:
23548           - Added missing reset for OverrideCursor when DoEvents is called
23549           - Fixed creation of cursor, bit arrays were swapped
23550         * Clipboard.cs: Removed obsolete MonoTODO attribute
23551
23552 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
23553
23554         * ComboBox.cs: fixes OnSelectedItemChanged
23555         * ControlBindingsCollection.cs: fixes item range check
23556
23557 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
23558
23559         * UpDownBase.cs:
23560                 - Calc preferred height properly
23561                 - Implement missing properties
23562                 
23563         * NumericUpDown.cs: Implement missing events
23564
23565 2005-05-19  Jackson Harper  <jackson@ximian.com>
23566
23567         * TabControl.cs: New method that resizes the tab pages before
23568         redrawing them. This as needed as the control is double buffered
23569         and sizing will not be recalculated unless ResizeTabPages is
23570         called.
23571         * TabPage.cs: Set base.Text instead of Text in the constructor so
23572         that UpdateOwner does not get called. Use the new Redraw method of
23573         TabControl instead of Refresh so the sizing is recalculated.
23574         * ThemeWin32Classic.cs: Draw the text for button tabs.
23575
23576 2005-05-19  Jackson Harper  <jackson@ximian.com>
23577
23578         * Control.cs: Paint control background images. Fix typo where
23579         PaintControlBackground was not getting called correctly.
23580
23581 2005-05-19  Peter Bartok  <pbartok@novell.com>
23582
23583         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
23584           I can investigate, apparently I broke FileDialog
23585
23586 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
23587
23588         * AxHost.cs: Some simple properties.
23589         * Control.cs: window must be accessible after ctor.
23590         * Form.cs: Added TransparencyKey property.
23591         * TextBoxBase.cs: Implemented Clear. Text property can be null.
23592         * XplatUIWin32.cs: SetBorderStyle implemented.
23593
23594 2005-05-18  Peter Bartok  <pbartok@novell.com>
23595
23596         * DataObject.cs: Entries are not global but particular to the
23597           DataObject, now it behaves that way
23598         * XplatUIWin32.cs: Implemented Clipboard methods
23599         * Clipboard.cs: Implemented
23600         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
23601         * XplatUIOSX.cs: Updated to final clipboard prototypes
23602         * XplatUIX11.cs: Implemented Clipboard methods
23603         * XplatUIDriver.cs: Updated to final clipboard prototypes
23604         * XplatUIStructs.cs:
23605           - Added BITMAPINFOHEADER struct
23606           - Added ClipboardFormats enum
23607         * X11Structs.cs:
23608           - Added ClipboardStruct
23609           - Added Atom enum items for clipboard types
23610           - Fixed atom types for Selection event structures
23611         * DataFormats.cs:
23612           - Added internal properties and methods for drivers to enumerate
23613             all known formats
23614           - Switched initialization method to allow drivers to assign their
23615             own IDs even for the MS predefined clipboard IDs
23616         * XplatUI.cs: Updated to final clipboard interface
23617
23618 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
23619         * PropertyGridView.cs: Fixed compiler warnings.
23620
23621 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
23622         * PropertyGrid.cs: Added some event calls
23623         * PropertyGridView.cs: Change drawing code to use double buffering
23624         * PropertyGridTextBox.cs: Changed Text property name
23625         * GridItem.cs: Added Bounds property.
23626         * GridEntry.cs: Added Bounds property.
23627
23628 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
23629
23630         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
23631         since GetType() may not return the correct type if the object is
23632         a remoting proxy.
23633
23634 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
23635
23636         * TreeNodeCollection.cs: fixes get/set item ranges
23637         
23638 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
23639
23640         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
23641                 
23642 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
23643
23644         * ComboBox.cs: Fix item range comparation
23645         * ListView.cs: Fix item range comparation
23646
23647 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
23648
23649         * FontDialog.cs:
23650           - Clear example panel when OnPaint is called
23651           - Better solution for displaying the example panel text
23652           - Select default indexes in the ListBoxes
23653
23654 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
23655
23656         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
23657
23658 2005-05-11  Peter Bartok  <pbartok@novell.com>
23659
23660         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
23661         * SelectionRangeConverter.cs: Implemented
23662         * PropertyGrid.cs: Fixed attribute value
23663         * Control.cs:
23664           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
23665           - Added Sebastien Pouliot's CAS Stack Propagation fixes
23666         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
23667           that's common to all drivers. First methods to go there are
23668           Sebastien Pouliot's CAS Stack Propagation helper methods
23669         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
23670           Sebastien Pouliot for CAS Stack Propagation
23671
23672 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
23673
23674         * OSXStructs.cs:
23675           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
23676
23677 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
23678
23679         * DataGridTextBoxColumn.cs: fixed some members
23680         * GridColumnStylesCollection.cs: indexed column is case insensitive
23681         * DataGridTableStyle.cs: fixes
23682         * ThemeWin32Classic.cs: add new theme parameter
23683         * Theme.cs: add new theme parameter
23684         * DataGridDrawingLogic.cs: Datagrid's drawing logic
23685         * DataGrid.cs: fixes, new internal properties, etc.
23686         * DataGridColumnStyle.cs: allows to set grid value
23687         *
23688
23689 2005-05-10  Peter Bartok  <pbartok@novell.com>
23690
23691         * AccessibleObject.cs:
23692           - Removed MonoTODO attribute on help, method is correct
23693           - Fixed Bounds property
23694         * AxHost.cs: Moved MonoTODO
23695         * ButtonBase.cs: Now setting AccessibleObject properties
23696         * RadioButton.cs: Setting proper AccessibleObject role
23697         * CheckBox.cs: Setting proper AccessibleObject role
23698         * ControlBindingsCollection.cs: Added properties, methods and attributes
23699         * DataFormats.cs: Fixed awkward internal API, and changed to enable
23700           userdefined DataFormats.Format items as well
23701         * ListControl.cs: Removed data_member from the public eye
23702         * OpenFileDialog.cs:
23703           - Made class sealed
23704           - Added missing attributes
23705         * SaveFileDialog.cs: Added missing attributes
23706         * ImageListStreamer.cs: Fixed code that caused warnings
23707         * LinkLabel.cs: Removed unreachable code
23708         * TreeView.cs: Fixed code that caused warnings
23709         * PropertyGridView.cs: Fixed code that caused warnings
23710         * GridColumnStylesCollection.cs: Added missing attributes
23711         * GridTableStylesCollection: Added missing attribute
23712         * PropertyManager: Added .ctor
23713         * SecurityIDType: Added
23714         * DataObject.cs: Implemented class
23715         * LinkArea.cs: Added missing attribute
23716
23717 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
23718
23719         * RadioButton.cs: call base method to allow to fire OnClick event
23720         * UpDownBase.cs: OnMouseUp call base method
23721         * CheckedListBox.cs: call base method before returning
23722         * TrackBar.cs: call base method before returning
23723         
23724
23725 2005-05-10  Peter Bartok  <pbartok@novell.com>
23726
23727         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
23728           for messages
23729
23730 2005-05-10  Peter Bartok  <pbartok@novell.com>
23731
23732         * DataFormats.cs: Implemented
23733         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
23734           XplatUIX11.cs: Added Clipboard APIs
23735         * XplatUIWin32.cs: Implemented Clipboard APIs
23736         * FolderBrowserDialog.cs: Added missing event, attributes
23737
23738 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
23739
23740         * CheckBox.cs: call base method to allow to fire OnClick event
23741
23742 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
23743
23744         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
23745
23746 2005-05-06  Peter Bartok  <pbartok@novell.com>
23747
23748         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
23749         * Screen.cs: Implemented
23750         * HelpNavigator.cs: Added
23751         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
23752           property
23753         * HelpProvider.cs: Implemented all we can do until we have a CHM
23754           help library (which means that "What's This" does work now)
23755
23756 2005-05-06  Jackson Harper  <jackson@ximian.com>
23757
23758         * XplatUIX11.cs: Fix waking up the main loop.
23759                 
23760 2005-05-05  Peter Bartok  <pbartok@novell.com>
23761
23762         * XplatUI.cs: Updated revision
23763         * Form.cs: Removed enless loop
23764         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
23765         * Label.cs (OnPaint): Added call to base.OnPaint()
23766         * ToolTip.cs: Made ToolTipWindow reusable for other controls
23767         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
23768         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
23769         * AxHost.cs: Added
23770         * ButtonBase.cs: Moved base.OnPaint() call to end of method
23771         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
23772           to ToolTip.ToolTipWindow for drawing and size methods; this allows
23773           reuse of ToolTipWindow by other controls
23774         * SizeGrip.cs: Moved base.OnPaint() call to end of method
23775         * XplatUIX11.cs: Now clipping drawing area (experimental)
23776         * PictureBox.cs: Moved base.OnPaint() call to end of method
23777         * Theme.cs: Fixed ToolTip abstracts to match new format
23778         * ErrorProvider.cs: Implemented
23779
23780 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
23781
23782         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
23783         * LinkLabel.cs:
23784                 - Adds cursors
23785                 - Handles focus
23786                 - Implements LinkBehavior
23787                 - Fixes many issues
23788
23789 2005-05-03  Jackson Harper  <jackson@ximian.com>
23790
23791         * ListView.cs: Calculate the scrollbar positioning on resize and
23792         paint, so they get put in the correct place.
23793
23794 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
23795
23796         * ColorDialogs.cs: The small color panels are now handled by
23797           SmallColorControl. This fixes drawing of the focus rectangle
23798           and adds a 3D border.
23799
23800 2005-05-03  Peter Bartok  <pbartok@novell.com>
23801
23802         * Control.cs: Modified version of Jonathan Chamber's fix for
23803           double-buffering
23804
23805 2005-05-03  Jackson Harper  <jackson@ximian.com>
23806
23807         * ListView.cs: Remove redraw variable. Control now handles whether
23808         or not a redraw needs to be done, and will only raise the paint
23809         event if redrawing is needed.
23810
23811 2005-05-03  Jackson Harper  <jackson@ximian.com>
23812
23813         * Splitter.cs: No decorations for the splitter form. Cache the
23814         hatch brush.
23815
23816 2005-05-03  Jackson Harper  <jackson@ximian.com>
23817
23818         * TreeView.cs: Use dashed lines to connect nodes. Use the
23819         ControlPaint method for drawing the focus rect instead of doing
23820         that in treeview.
23821
23822 2005-05-02  Peter Bartok  <pbartok@novell.com>
23823
23824         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
23825
23826 2005-04-29  Jackson Harper  <jackson@ximian.com>
23827
23828         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
23829         entire image buffer. Just clear the clipping rectangle.
23830
23831 2005-04-29  Jackson Harper  <jackson@ximian.com>
23832
23833         * ThemeWin32Classic.cs: Don't draw list view items that are
23834         outside the clipping rectangle.
23835
23836 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
23837
23838         * ListBox.cs: added horizontal item scroll
23839
23840 2005-04-29  Jackson Harper  <jackson@ximian.com>
23841
23842         * ThemeWin32Classic.cs: Remove some old debug code that was
23843         causing flicker with the new double buffering code.
23844
23845 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
23846
23847         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
23848         behave like combobox and comboboxlist (still not sure if this is
23849         correct though).
23850
23851 2005-04-28  Jackson Harper  <jackson@ximian.com>
23852
23853         * ThemeWin32Classic.cs: Don't fill the middle of progress
23854         bars. This fills areas outside of the clip bounds that don't need
23855         to be filled.
23856
23857 2005-04-28  Jackson Harper  <jackson@ximian.com>
23858
23859         * Control.cs: Don't expose functionality to touch the image buffers.
23860         * ProgressBar.cs:
23861         * ListView.cs: We do not need to (and no longer can) manipulate
23862         the image buffers directly. All of this is handled by Control.
23863
23864 2005-04-28  Peter Bartok  <pbartok@novell.com>
23865
23866         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
23867           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
23868           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
23869
23870 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
23871
23872         * Combobox:
23873                 - Adjust control's height for non-simple comboboxes (bug fix)
23874                 - Remove dead code
23875         * MenuAPI.cs: remove unused var
23876         * ScrollBar.cs: remove unsed var
23877                  
23878         * ListBox.cs: unselect items when clearing
23879
23880 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
23881
23882         * ListControl.cs: honors OnPositionChanged and default Selected Item
23883         * ListBox.cs: unselect items when clearing
23884
23885 2005-04-27  Jackson Harper  <jackson@ximian.com>
23886
23887         * X11Keyboard.cs: Initialize a default keyboard and give a warning
23888         if a "correct" keyboard is not found. This will make us not crash,
23889         but might give some users bad keyboard layouts...seems to be the
23890         same thing rewind does.
23891
23892 2005-04-27  Jackson Harper  <jackson@ximian.com>
23893
23894         * BindingManagerBase.cs: Attach the current/position changed
23895         handlers to their respective events.
23896
23897 2005-04-27  Jackson Harper  <jackson@ximian.com>
23898
23899         * Control.cs: Make sure that the first WM_PAINT does a full draw,
23900         not just a blit.
23901         * ThemeWin32Classic.cs: Don't fill the background for picture
23902         boxes. This could overright user drawing.
23903         * ComboBox.cs: Just fill the clipping rect not the entire client
23904         rect when drawing the background. This prevents pieces of the
23905         image buffer from getting overwritten and is theoretically faster.
23906
23907 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
23908
23909         * ComboBox.cs: Databinding support fixes, fire missing events
23910         * ListControl.cs: implement missing methods and properties, fixes
23911         * ThemeWin32Classic.cs: Databiding support on Drawing
23912         * CheckedListBox.cs: Databinding support fixes, fire missing events
23913         * ListBox.cs: Databinding support fixes, fire missing events
23914         
23915 2005-04-25  Peter Bartok  <pbartok@novell.com>
23916
23917         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
23918
23919 2005-04-25  Jackson Harper  <jackson@ximian.com>
23920
23921         * TreeView.cs: Use the horizontal scrollbars height not width when
23922         determining how much of the client area is available.
23923
23924 2005-04-25  Jackson Harper  <jackson@ximian.com>
23925
23926         * Control.cs: Double buffering is handled differently now. As per
23927         the spec, the extra buffer is created in the WM_PAINT message and
23928         passed down to the control's drawing code.
23929         * GroupBox.cs:
23930         * Label.cs:
23931         * CheckBox.cs:
23932         * ProgressBar.cs:
23933         * RadioButton.cs:
23934         * ColorDialog.cs:
23935         * ComboBox.cs:
23936         * PropertyGridView.cs:
23937         * UpDownBase.cs:
23938         * MessageBox.cs:
23939         * MenuAPI.cs:
23940         * ListView.cs:
23941         * ButtonBase.cs:
23942         * SizeGrip.cs:
23943         * ScrollBar.cs:
23944         * ListBox.cs:
23945         * TrackBar.cs:
23946         * ToolBar.cs:
23947         * PictureBox.cs:
23948         * DateTimePicker.cs:
23949         * StatusBar.cs:
23950         * TreeView.cs: Update to new double buffering system.
23951         * MonthCalendar.cs: Uncomment block, as Capture is now
23952         working. Update to new double buffering
23953         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
23954         * PaintEventArgs.cs: New internal method allows us to set the
23955         graphics object. This is used for double buffering.
23956         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
23957         rectangle. The internal paint_area var has been removed from
23958         StatusBar. The clipping rect should be used instead.
23959         * Theme.cs: Give the PictureBox drawing method a clipping rect.
23960         * TabPage.cs: The RefreshTabs method was removed, so just call the
23961         tab controls Refresh method now.
23962         * TabControl.cs: Update to new double buffering. Make sure the
23963         handle is created before sizing the tab pages, otherwise we will
23964         get stuck in a loop.
23965
23966 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
23967
23968         * LinkLabel.cs: Fix typo, bug #74719; patch
23969           from Borja Sanchez Zamorano
23970
23971 2005-04-22  Jackson Harper  <jackson@ximian.com>
23972
23973         * TreeNode.cs: Implement Handle stuff.
23974         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
23975
23976 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
23977
23978         * DataGridTextBoxColumn.cs: call base constructors, fixes
23979         * GridColumnStylesCollection.cs: missing events, methods, and functionality
23980         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
23981         * DataGridTableStyle.cs: implements create default column styles
23982         * DataGridBoolColumn.cs: which types can handle
23983         * DataGrid.cs: missing methods, fixes, new functionality
23984         * DataGridColumnStyle.cs: fixes
23985
23986 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
23987         * FolderBrowserDialog.cs:
23988         - Use a thread to fill the TreeView
23989         - Adjusted some sizes
23990
23991 2005-04-19  Peter Bartok  <pbartok@novell.com>
23992
23993         * LinkLabel.cs: (Re-)create the pieces when setting the Text
23994           property. Fixes #74360.
23995
23996 2005-04-19  Jackson Harper  <jackson@ximian.com>
23997
23998         * XEventQueue.cs: Lock when getting the lockqueue size.
23999         * PictureBox.cs: Call base OnPaint
24000         
24001 2005-04-19  Peter Bartok  <pbartok@novell.com>
24002
24003         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
24004           messages were no longer being processed (this broke BeginInvoke)
24005
24006           
24007 2005-04-18  Jackson Harper  <jackson@ximian.com>
24008
24009         * TreeView.cs: buglet that caused node images to get drawn
24010         regardless of whether or not they were in the clipping rectangle.
24011
24012 2005-04-18  Jackson Harper  <jackson@ximian.com>
24013
24014         * CurrencyManager.cs: There are four rules for GetItemProperties:
24015         - If the type is an array use the element type of the array
24016         - If the type is a typed list, use the type
24017         - If the list contains an Item property that is not an object, use
24018         that property
24019         - use the first element of the list if there are any elements in
24020         the list.
24021         
24022 2005-04-17  Jackson Harper  <jackson@ximian.oom>
24023
24024         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
24025         click. This handles offsets for scrolling properly and reduces
24026         memory. Also fixed GetNode to not offset now that TopNode works
24027         properly.
24028         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
24029         
24030 2005-04-17  Jackson Harper  <jackson@ximian.com>
24031
24032         * CursorConverter.cs: Initial implementation.
24033
24034 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
24035
24036         * ListControl.cs: work towards complex data binding support on ListControl
24037         * CurrencyManager.cs: work towards complex data binding support on ListControl
24038         * ListBox.cs: work towards complex data binding support on ListControl
24039
24040
24041 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
24042
24043         * GridTableStylesCollection.cs: fixes name and constructor
24044         * DataGridTableStyle.cs: fixes
24045         * DataGridBoolColumn.cs: fixes names and constructors
24046         * DataGrid.cs: define methods and properties. Some init implementations
24047         * DataGridCell.cs: define methods and properties. Some init implementations
24048         * GridTablesFactory.cs: Define methods and properties
24049
24050 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
24051
24052         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
24053         graphics port changes.  We still want the coordinates in global screen
24054         coordinates.
24055
24056 2005-04-14  Jackson Harper  <jackson@ximian.com>
24057
24058         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
24059         check plus minus or checkbox clicks unless those features are enabled.
24060
24061 2005-04-14  Jackson Harper  <jackson@ximian.com>
24062
24063         * TreeView.cs: Add methods for setting the top and bottom visible
24064         nodes. TreeNode::EnsureVisible uses these methods.
24065         * TreeNode.cs: Implement EnsureVisible
24066
24067 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
24068
24069         * Form.cs: Pospone menu assignation if the window has not been created yet
24070         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
24071         size and position
24072
24073 2005-04-12  Jackson Harper  <jackson@ximian.com>
24074
24075         * TreeView.cs: Set the TopNode properly when scrolling
24076         occurs. This has the added benifit of reducing the amount of
24077         walking that needs to be done when drawing. Also removed an old
24078         misleading TODO.
24079         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
24080         
24081 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
24082
24083         * Timer.cs: fixes interval setting when the timer is already enabled
24084         
24085 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
24086
24087         * FolderBrowserDialog.cs: First approach
24088
24089 2005-04-09  Peter Bartok  <pbartok@novell.com>
24090
24091         * FolderBrowserDialog: Added
24092
24093 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
24094
24095         * LinkLabel.cs: move drawing code into the theme
24096         * ThemeWin32Classic.cs: drawing code and painting background bugfix
24097         * Theme.cs: define DrawLinkLabel method
24098
24099 2005-04-05  Jackson Harper  <jackson@ximian.com>
24100
24101         * BindingContext.cs: Use weak references so these bad actors don't
24102         stay alive longer then they need to.
24103
24104 2005-04-05  Jackson Harper  <jackson@ximian.com>
24105
24106         * ListControl.cs: Basic implementation of complex databinding.
24107         * ComboBox.cs:
24108         * ListBox.cs: Add calls to ListControl databinding methods.
24109
24110 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
24111
24112         * FileDialog.cs:
24113           - Don't change PopupButtonState to Normal when the
24114             PopupButton gets pressed several times.
24115           - Renamed ButtonPanel to PopupButtonPanel
24116
24117 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
24118
24119         * ColorDialog.cs: Use cached objects instead of creating them
24120         * LinkLabel.cs: Use cached objects instead of creating them
24121         * Splitter.cs: Use cached objects instead of creating them
24122         * FontDialog.cs: Use cached objects instead of creating them
24123         * PropertyGridView.cs: Use cached objects instead of creating them
24124         * MessageBox.cs: Use cached objects instead of creating them
24125         * FileDialog.cs: Use cached objects instead of creating them
24126         * ThemeWin32Classic.cs: Use cached objects instead of creating them
24127         * TreeView.cs: Use cached objects instead of creating them
24128         
24129 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
24130
24131         * Control.cs: use Equals to compare the font since no == op
24132         * ScrollBar.cs: use Equals to compare the font since no == op
24133
24134 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
24135
24136         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
24137
24138 2005-04-01  Jackson Harper  <jackson@ximian.com>
24139
24140         * Binding.cs: Implement IsBinding.
24141         * BindingManagerBase.cs:
24142         * PropertyManager.cs:
24143         * CurrencyManager.cs: Add IsSuspended property.
24144
24145 2005-04-01  Jackson Harper  <jackson@ximian.com>
24146
24147         * Binding.cs: Had some IsAssignableFrom calls backwards.
24148
24149 2005-04-01  Jackson Harper  <jackson@ximian.com>
24150
24151         * Binding.cs: Handle null data members when pulling data.
24152         * PropertyManager.cs: Handle the data member being a property that
24153         does not exist.
24154
24155 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
24156
24157         * DataGridTextBoxColumn.cs: fixes signature
24158         * DataGrid.cs: calls right constructor
24159
24160 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
24161
24162         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
24163         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
24164         * GridTableStylesCollection.cs: implements GridTableStylesCollection
24165         * DataGridTableStyle.cs: implements DataGridTableStyle
24166         * DataGridBoolColumn.cs: implements DataGridBoolColumn
24167         * DataGridTextBox.cs: implements DataGridTextBox
24168         * DataGridColumnStyle.cs: implements DataGridColumnStyle
24169
24170 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
24171
24172         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
24173
24174 2005-03-29  Peter Bartok  <pbartok@novell.com>
24175
24176         * Application.cs:
24177           - Properly implemented CompanyName property
24178           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
24179             returns a path that includes CompanyName, ProductName and
24180             Version (fixes bug #70330)
24181
24182 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
24183
24184         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
24185           fixes bug #72588.
24186
24187 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
24188
24189         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
24190         
24191           - Added ReadOnly CheckBox
24192           - Further refactoring: moved some code from Open-/SaveFileDialog
24193             to FileDialog
24194
24195 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
24196
24197         * OpenFileDialog.cs: Fixed CheckFileExists
24198         * FileDialog.cs:
24199           Moved FileView and DirComboBox outside FileDialog class.
24200           They can now be used outside FileDialog
24201
24202 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
24203
24204         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
24205         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
24206
24207 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
24208
24209         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
24210           - Added missing CreatePrompt property in SaveDialog
24211           - Overall SaveDialog handling should be better now
24212           - Added non standard ShowHiddenFiles property
24213           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
24214           - Added InitialDirectory and RestoreDirectory support
24215
24216 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
24217
24218         * FileDialog.cs: Made dirComboBox usable
24219
24220 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
24221
24222         * FileDialog.cs: Added Filter support (case sensitiv)
24223
24224 2005-03-24  Jackson Harper  <jackson@ximian.com>
24225
24226         * TabControl.cs: Need a couple more pixels for the lines.
24227
24228 2005-03-23  Jackson Harper  <jackson@ximian.com>
24229
24230         * TabControl.cs: Give the tab page focus when it is selected.
24231
24232 2005-03-23  Jackson Harper  <jackson@ximian.com>
24233
24234         * TabControl.cs: Account for the drawing of tabs borders when
24235         invalidating. If the slider was clicked dont do click detection on
24236         the tabs.
24237
24238 2005-03-23  Jackson Harper  <jackson@ximian.com>
24239
24240         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
24241
24242 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
24243
24244         * CategoryGridEntry.cs: Added
24245         * GridItem.cs: Added helper properties
24246         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
24247         * GridEntry.cs: Updated code for collection
24248         * PropertyGrid.cs: Cleaned up some formatting
24249         * PropertyGridView.cs: Added drop down functionality for enums.
24250         * GridItemCollection.cs: Added enumerator logic
24251         * PropertyGridEntry.cs: Added
24252
24253 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
24254
24255         * FileDialog.cs:
24256           - Removed unnecessary commented code
24257           - Fixed handling for entering the filename manually in the combobox
24258
24259 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
24260
24261         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
24262
24263 2005-03-18  Peter Bartok  <pbartok@novell.com>
24264
24265         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
24266           them being touching the border
24267
24268 2005-03-18  Peter Bartok  <pbartok@novell.com>
24269
24270         * TextControl.cs: Quick hack to center text better
24271
24272 2005-03-18  Peter Bartok  <pbartok@novell.com>
24273
24274         * ControlPaint.cs:
24275           - Don't throw NotImplemented exceptions, just print a notice once
24276             instead (requested by Miguel). This makes running existing SWF
24277             apps a bit easier
24278         * Control.cs:
24279           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
24280           - Added context menu trigger on right click
24281         * Panel.cs: Trigger invalidate on resize
24282         * StatusBar.cs:
24283           - Removed old double-buffer drawing
24284           - Added ResizeRedraw style to force proper update of statusbar
24285         * ListView.cs:
24286           - Removed debug output
24287         * ThemeWin32Classic.cs:
24288           - Fixed drawing of status bar, now draws Text property if there
24289             are no defined panels
24290
24291 2005-03-18  Jackson Harper  <jackson@ximian.com>
24292
24293         * ImageList.cs: When the image stream is set pull all the images
24294         from it.
24295         * ImageListStreamer.cs: Implement reading image list streams.
24296
24297 2005-03-18  Peter Bartok  <pbartok@novell.com>
24298
24299         * ThemeWin32Classic.cs (DrawPictureBox):
24300           - Fixed calculations for centered drawing
24301           - Fixed drawing for normal mode, not scaling the image on normal
24302
24303 2005-03-18  Peter Bartok  <pbartok@novell.com>
24304
24305         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
24306           textbox
24307         * FileDialog.cs:
24308           - Made Open/Save button the accept button for FileDialog
24309           - Tied the cancel button to the IButtonControl cancel button
24310           - Save/Open now properly builds the pathname
24311           - Now handles user-entered text
24312           - Preventing crash on right-click if no item is selected
24313           - Fixed Text property, now uses contents of textbox
24314           - Fixed SelectedText property, now just returns the text part that
24315             is selected in the text box
24316
24317 2005-03-18  Jackson Harper  <jackson@ximian.com>
24318
24319         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
24320         rect, make sure to de-adjust the interior rect after drawing the
24321         tab text.
24322
24323 2005-03-18  Peter Bartok  <pbartok@novell.com>
24324
24325         * MenuAPI.cs: Remove menu *before* executing selected action to
24326           prevent the menu from 'hanging around'
24327           
24328 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
24329
24330         * XplatUIOSX.cs: Implemented WorkingArea property
24331
24332 2005-03-17  Peter Bartok  <pbartok@novell.com>
24333
24334         * XplatUIX11.cs: Fixed menu coord calculations
24335         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
24336           for calculating offsets
24337
24338 2005-03-17  Peter Bartok  <pbartok@novell.com>
24339
24340         * Hwnd.cs: Do not consider menu presence for default client
24341           rectangle location/size
24342         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
24343           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
24344           translation functions
24345         * FileDialog.cs: Fixed (what I presume is a) typo
24346
24347 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
24348
24349         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
24350           X access (avoids X-Async errors)
24351
24352 2005-03-16  Jackson Harper  <jackson@ximian.com>
24353
24354         * TabControl.cs: Raise the SelectedIndexChanged event.
24355
24356 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
24357
24358         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
24359           - Removed vertical ToolBar and replaced it with a custom panel
24360             (desktop and home button already work)
24361           - Added Help button (some controls get resized or relocated then)
24362           - Draw correct text depending on Open or Save.
24363           - Fixed some typos...
24364
24365 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
24366
24367         * ScrollBar.cs:
24368           - Only change Maximum and Minimum when need it (bug fix)
24369
24370 2005-03-15  Peter Bartok  <pbartok@novell.com>
24371
24372         * Form.cs: Use Handle for icon, to trigger creation if
24373           the window does not yet exist
24374         * Control.cs:
24375           - CanSelect: Slight performance improvement
24376           - Focus(): Preventing possible recursion
24377           - Invalidate(): Removed ControlStyle based clear flag setting
24378           - WM_PAINT: fixed logic for calling OnPaintBackground
24379           - WM_ERASEBKGND: Fixed logic, added call to new driver method
24380             EraseWindowBackground if the control doesn't paint background
24381         * XplatUIWin32.cs:
24382           - Moved EraseWindowBackground() method to internal methods
24383           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
24384             is sent via SendMessage on BeginPaint call on Win32
24385         * XplatUIX11.cs:
24386           - Added EraseWindowBackground() method
24387           - No longer sends WM_ERASEBKGND on .Expose, but on call to
24388             PaintEventStart, which more closely matches Win32 behaviour
24389           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
24390           - Fixed SetFocus() to properly deal with client and whole windows
24391         * Hwnd.cs: Added ErasePending property
24392         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
24393         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
24394
24395 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
24396
24397         * XplatUIOSX.cs:
24398           - Fix hard loop when timers exist.
24399           - Fix bugs with middle and right click for 3 button mice.
24400
24401 2005-03-11  Peter Bartok  <pbartok@novell.com>
24402
24403         * XplatUIX11.cs:
24404           - get_WorkingArea: Need to call X directly, GetWindowPos only
24405             returns cached data now
24406           - Added sanity check to GetWindowPos hwnd usage
24407
24408 2005-03-11  Jackson Harper  <jackson@ximian.com>
24409
24410         * BindingManagerBase.cs: This method isn't used anymore as
24411         PullData now updates the data in the control.
24412
24413 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
24414
24415         * Form.cs: fixes menu drawing on X11
24416         * MenuAPI.cs:  fixes menu drawing on X11
24417
24418 2005-03-11  Peter Bartok  <pbartok@novell.com>
24419
24420         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
24421           from Jonathan Gilbert; should fix bug #73606
24422         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
24423           in Screen coordinates. Thanks, Jordi.
24424         * Form.cs: Added missing attribute
24425
24426 2005-03-11  Peter Bartok  <pbartok@novell.com>
24427
24428         * Form.cs:
24429           - Rudimentary Mdi support
24430           - Removed outdated FormParent code
24431           - Implemented lots of missing properties and methods, still missing
24432             transparency support
24433           - Added missing attributes
24434           - Implemented support for MaximumBounds
24435           - Added firing of various events
24436         * XplatUI.cs: Added SetIcon() method
24437         * XplatUIDriver.cs: Added SetIcon() abstract
24438         * XplatUIOSX.cs: Stubbed out SetIcon() method
24439         * XplatUIX11.cs:
24440           - Implemented SetIcon() support
24441           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
24442           - Switched to unix line endings
24443         * XplatUIWin32.cs:
24444           - Made POINT internal so for can access it as part of MINMAX
24445           - Implemented SetIcon() support
24446           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
24447             native Mdi support again, might have to go managed)
24448         * Control.cs: Now fires the StyleChanged event
24449         * MdiClient.cs: Added; still mostly empty
24450
24451 2005-03-10  Peter Bartok  <pbartok@novell.com>
24452
24453         * SaveFileDialog.cs: Added emtpy file
24454
24455 2005-03-08  Peter Bartok  <pbartok@novell.com>
24456
24457         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
24458           in turn triggers OnCreateContro) when creating a handle for the
24459           first time.
24460         * TextControl.cs: Fixed endless loop in certain cases when
24461           replacing the current selection
24462
24463 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
24464
24465         * ScrollBar.cs:
24466           - Honors NewValue changes in Scroll events allowing apps to change it
24467           - Adds First and Last Scroll events
24468           - Fixes Thumb events
24469
24470 2005-03-07  Peter Bartok  <pbartok@novell.com>
24471
24472         * Hwnd.cs: Added DefaultClientRectangle property
24473         * XplatUI.cs: Now using the X11 driver Where() method, which provides
24474           more detailed debug information
24475         * XplatUIX11.cs:
24476           - Fixed size-change feedback loop, where we would pull an old size
24477             off the queue and mistakenly change our window's size to an
24478             earlier value
24479           - Now compressing ConfigureNotify events, to reduce looping and
24480             redraw issues
24481         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
24482           is called
24483
24484 2005-03-07  Jackson Harper  <jackson@ximian.com>
24485
24486         * Binding.cs: Push data pushes from data -> property. Check if the
24487         property is readonly when attempting to set it.
24488
24489 2005-03-07  Jackson Harper  <jackson@ximian.com>
24490
24491         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
24492         instead of IsSubclassOf. Pulling data now sets the value on the
24493         control.
24494         * PropertyManager.cs:
24495         * CurrencyManager.cs: Just need to pull data when updating now,
24496         because PullData will set the value on the control.
24497
24498 2005-03-04  Jackson Harper  <jackson@ximian.com>
24499
24500         * Binding.cs: Implement data type parsing and converting on pulled
24501         data. TODO: Are there more ways the data can be converted?
24502
24503 2005-03-04  Jackson Harper  <jackson@ximian.com>
24504
24505         * Binding.cs: Support <Property>IsNull checks. Also bind to the
24506         controls Validating method so we can repull the data when the
24507         control loses focus.
24508
24509 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
24510
24511         * ColumnHeader.cs:
24512           - Fixes null string format
24513           
24514         * ListView.cs:
24515           - Adds enum type checks
24516           - Fixes redrawing and recalc need after changing some properties
24517           - Fixes on focus_item set after the event
24518           - Fixes adding columns after the control has been created
24519           
24520         * ThemeWin32Classic.cs:
24521           - Fixes CheckBox focus rectangle
24522           - Fixes ColumnHeader drawing
24523
24524
24525 2005-03-03  Jackson Harper  <jackson@ximian.com>
24526
24527         * Binding.cs: Bind to <Property>Changed events so we can detect
24528         when properties are changed and update the data.
24529
24530 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
24531
24532         * ImageList.cs:
24533           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
24534           - Fixes ImageList constructor with ImageList container
24535           - Fixes image scaling (wrong parameters at DrawImage)
24536
24537 2005-02-02  Jackson Harper  <jackson@ximian.com>
24538
24539         * Binding.cs: Make property searches case-insensitive. Eliminate
24540         some duplicated code.
24541
24542 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
24543
24544         * ComboBox.cs:
24545                 - Handle focus event
24546                 - Fix scrollbar events
24547                 - Discard highlighted item if remove it
24548                 - Fixes SelectedItem with strings
24549
24550 2005-03-01  Peter Bartok  <pbartok@novell.com>
24551
24552         * Control.cs:
24553           - Fixed Visible property, now follows (once again) parent chain
24554             to return false if any control in the chain is visible=false
24555           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
24556           - Fixed several places where is_visible instead of Visible was used
24557           - Implemented FIXME related to focus selection when setting focused
24558             control to be invisible
24559
24560         * XplatUIWin32.cs: Now using proper method to find out if window is
24561           visible. Thanks to Jordi for pointing it out
24562
24563 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
24564
24565         * ComboBox.cs: show/hide scrollbar instead of creating it
24566
24567 2005-02-27  Jackson Harper  <jackson@ximian.com>
24568
24569         * CurrencyManager.cs: Add PositionChanged stuff.
24570
24571 2005-02-27  Peter Bartok  <pbartok@novell.com>
24572
24573         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
24574         * XplatUIOSX.cs: Added GetMenuOrigin() stub
24575         * XplatUIWin32.cs: Implemented GetMenuOrigin()
24576         * XplatUIX11.cs:
24577           - Implemented GetMenuDC()
24578           - Implemented GetMenuOrigin()
24579           - Implemented ReleaseMenuDC()
24580           - Implemented generation of WM_NCPAINT message
24581           - Implemented generation and handling of WM_NCCALCSIZE message
24582         * Form.cs: Added debug helper message for Jordi's menu work
24583         * Hwnd.cs:
24584           - Modified ClientRect property; added setter, fixed getter to handle
24585             setting of ClientRect
24586           - Added MenuOrigin property
24587
24588 2005-02-26  Peter Bartok  <pbartok@novell.com>
24589
24590         * XplatUIX11.cs:
24591           - Destroys the caret if a window that's being destroyed contains it
24592           - Ignores expose events coming from the X11 queue for windows that
24593             already are destroyed
24594           - Now uses the proper variable for handling DestroyNotify, before we
24595             marked the wrong window as destroyed
24596           - Improved/added some debug output
24597
24598 2005-02-26  Peter Bartok  <pbartok@novell.com>
24599
24600         * X11Keyboard.cs: Fixes to work on 64bit systems
24601
24602 2005-02-26  Peter Bartok  <pbartok@novell.com>
24603
24604         * Control.cs:
24605           - Now calling OnHandleDestroyed from DestroyHandle()
24606             instead of Dispose()
24607           - Removed bogus call to controls.Remove() from DestroyHandle()
24608
24609 2005-02-26  Peter Bartok  <pbartok@novell.com>
24610
24611         * Control.cs: Properly destroy child windows when our handle is
24612           destroyed
24613
24614 2005-02-25  Peter Bartok  <pbartok@novell.com>
24615
24616         * XplatUI.cs:
24617           - Added 'DriverDebug' define to allow tracing XplatUI API calls
24618           - Alphabetized Static Methods and Subclasses
24619
24620         * XplatUIX11.cs:
24621           - Added XException class to allow custom handling of X11 exceptions
24622           - Created custom X11 error handler, tied into XException class
24623           - Added support for MONO_XEXCEPTIONS env var to allow the user
24624             to either throw an exception on X errors or continue running
24625             after displaying the error
24626           - Added handling of DestroyNotify message
24627           - Added handler for CreateNotify message (still disabled)
24628           - Improved (tried to at least) Where method to provide file and lineno
24629         * X11Structs.cs:
24630           - Added XErrorHandler delegate
24631           - Added XRequest enumeration (to suppor translation of errors)
24632
24633 2005-02-25  Jackson Harper  <jackson@ximian.com>
24634
24635         * PropertyManager.cs: Implement editing features
24636         * CurrencyManager.cs:
24637         * Binding.cs: First attempt at UpdateIsBinding
24638         * BindingManagerBase.cs: Call UpdateIsBinding before
24639         pushing/pulling data.
24640
24641 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
24642
24643         * MenuAPI.cs: Respect disabled items
24644         * ThemeWin32Classic.cs
24645                 - Caches ImageAttributes creation for DrawImageDisabled
24646                 - Fixes vertical menu line drawing
24647                 - Draws disabled arrows in disable menu items
24648
24649 2005-02-24  Peter Bartok  <pbartok@novell.com>
24650
24651         * Hwnd.cs:
24652           - Added UserData property to allow associating arbitrary objects
24653             with the handle
24654           - Fixed leak; now removing Hwnd references from static windows array
24655         * XplatUIWin32.cs:
24656           - Fixed Graphics leak in PaintEventEnd
24657           - Removed usage of HandleData, switched over to Hwnd class
24658         * HandleData.cs: Removed, obsoleted by Hwnd.cs
24659
24660 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
24661
24662         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
24663         * ScrollBar.cs: Fixes bug
24664         * TrackBar.cs: removes death code, clipping, mimize refreshes,
24665          keyboard navigation enhancements
24666
24667 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
24668
24669         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
24670         * GroupBox.cs: Add control styles
24671         * Label.cs: Add control styles
24672         * UpDownBase.cs: Add control styles
24673         * ListBox.cs: Add control styles
24674         * XplatUIWin32.cs: Fixes wrong parameter order
24675
24676
24677 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
24678
24679         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
24680
24681 2005-02-23  Jackson Harper  <jackson@ximian.com>
24682
24683         * PropertyManager.cs: Implement property binding. This doesn't
24684         seem to work yet though as (I think) there are some bugs in
24685         System.ComponentModel.PropertyDescriptor.
24686         * BindingContext.cs: Use new PropertyManager constructor.
24687
24688 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
24689
24690         * ProgressBar.cs: use clip region in ProgressBar
24691         * ThemeWin32Classic.cs: use clip region in ProgressBar
24692
24693 2004-02-22  Jackson Harper  <jackson@ximian.com>
24694
24695         * BindingsCollection.cs: Remove some debug code.
24696
24697 2005-02-22  Jackson Harper  <jackson@ximian.com>
24698
24699         * BindingContext.cs:
24700         * ControlBindingsCollection.cs:
24701         * CurrencyManager.cs:
24702         * Binding.cs:
24703         * BindingManagerBase.cs: Initial implementation
24704         * BindingsCollection.cs: Add an internal contains method that the
24705         BindingManagerBase uses to ensure bindings aren't added twice to
24706         the collection.
24707         * PropertyManager.cs: Stubbed out.
24708         * Control.cs:
24709         * ContainerControl.cs: Hook up databinding
24710         
24711 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
24712
24713         * XplatUIOSX.cs:
24714           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
24715           Fixed Invalidate/Update chain.
24716           Fixed tons of other minor bugs (this is almost a complete rewrite).
24717
24718 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
24719
24720         * ComboBox.cs: do subcontrol creation when the control is created
24721
24722 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
24723
24724         * Label.cs: fixes image drawing (image and imagelist)
24725         * ThemeWin32Classic.cs: cache brushes
24726         
24727 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
24728
24729         * Form.cs: Move menu drawing code to Theme class
24730         * ComboBox.cs: Move ComboBox drawing code to Theme class
24731         * MenuItem.cs: Move menu drawing code to Theme class
24732         * MenuAPI.cs: Move menu drawing code to Theme class
24733         * ThemeWin32Classic.cs: New methods
24734         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
24735         * ListBox.cs: Move Listbox drawing code to Theme class
24736         * Theme.cs: New methods
24737
24738 2005-02-20  Peter Bartok  <pbartok@novell.com>
24739
24740         * Control.cs:
24741           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
24742             only process mnemonics on those)
24743           - Fixed event sequence for key handling; first calling
24744             ProcessKeyEventArgs now
24745         * TextBoxBase.cs:
24746           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
24747             for processing non-character keys
24748           - Fixed WM_CHAR to generate proper event sequence before processing
24749         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
24750           generation
24751
24752 2005-02-19  Peter Bartok  <pbartok@novell.com>
24753
24754         * UserControl.cs: Added TextChanged event; added attributes
24755         * SizeGrip.cs: Implemented resizing and optional display of grip
24756         * Form.cs: Fixed attribute
24757         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
24758           Changed meaning of ScrollWindow bool argument; instead of the
24759           clear attribute (which will be true usually anyway), it gives the
24760           option of moving child controls as well.
24761         * XplatUIX11.cs:
24762           - Changed to match new ScrollWindow argument
24763           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
24764             now handles the implicit parent window a WM puts around us
24765         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
24766           to work)
24767         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
24768         * TreeView.cs: Adjusted to new ScrollWindow arguments
24769
24770 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
24771
24772         * Form.cs: Menu integration with non-client area
24773         * MenuItem.cs: Menu integration with non-client area
24774         * MenuAPI.cs: Menu integration with non-client area
24775
24776 2005-02-18  Peter Bartok  <pbartok@novell.com>
24777
24778         * MethodInvoker.cs: Added
24779         * MdiLayout.cs: Added
24780         * SendKeys.cs: Started implementation
24781         * ErrorIconAlignment.cs: Added
24782
24783 2005-02-18  Peter Bartok  <pbartok@novell.com>
24784
24785         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
24786         * Form.cs: Added handling for Menu-related Non-client messages
24787
24788 2005-02-17  Peter Bartok  <pbartok@novell.com>
24789
24790         * UpDownBase.cs: Fixed typo, compilation errors
24791         * DomainUpDown.cs: Fixed attribute value
24792
24793 2005-02-16  Miguel de Icaza  <miguel@novell.com>
24794
24795         * UpDownBase.cs: Attach entry events.
24796         Propagate events.
24797         Add ForeColor property, Focused, InterceptArrowKeys (interception
24798         does not work yet).
24799
24800 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
24801
24802         * Form.cs:
24803                 - Redraw non client are on Setmenu
24804                 - Calc proper menu starting point
24805
24806 2005-02-17  Peter Bartok  <pbartok@novell.com>
24807
24808         * Application.cs: Fixed message_filter check
24809
24810 2005-02-17  Peter Bartok  <pbartok@novell.com>
24811
24812         * Application.cs: Now calls registered message filters
24813         * DockStyle.cs: Fixed attribute
24814         * Form.cs: Fixed attribute
24815         * Menu.cs: Fixed attribute
24816         * ToolTip.cs: Fixed attribute
24817         * TreeNode.cs: Added missing attributes and arranged in regions
24818         * PropertyGrid.cs: Fixed signatures
24819         * TreeNodeCollection.cs: Added attributes
24820         * Splitter.cs: Added missing attributes; arranged into regions
24821         * TabPage.cs: Added missing attributes; arranged into regions
24822         * TextBoxBase.cs: Added missing attributes
24823         * TextBox.cs: Added missing attributes
24824         * ArrangeDirection.cs: Added missing attributes
24825         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
24826         * ToolBarButton.cs: Fixed attributes
24827         * AnchorStyles.cs: Fixed attribute
24828         * TrackBar.cs: Fixed attributes
24829         * TabControl.cs: Added missing attributes and arranged into regions
24830         * ToolBar.cs: Fixed attribute
24831         * StatusBar.cs: Fixed signature, organized into regions and added
24832           attributes
24833         * StatusBarPanel.cs: Fixed attributes
24834         * ContentsResizedEventArgs.cs: Implemented
24835         * ContentsResizedEventHandler.cs: Implemented
24836         * DateBoldEventArgs.cs: Implemented
24837         * DateBoldEventHandler.cs: Implemented
24838         * UpDownEventArgs.cs: Implemented
24839         * UpDownEventHandler.cs: Implemented
24840         
24841 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
24842
24843         * Form.cs: first Menu NC refactoring
24844         * MenuAPI.cs: first Menu NC refactoring
24845         
24846 2005-02-16  Peter Bartok  <pbartok@novell.com>
24847
24848         * ImeMode.cs: Added missing attributes
24849         * Menu.cs: Fixed attribute
24850         * GroupBox.cs: Fixed attribute
24851         * Label.cs: Fixed attribute
24852         * ColorDialog.cs (RunDialog): Removed TODO attribute
24853         * ComboBox.cs: Fixed attributes
24854         * ListControl.cs: Added missing attributes
24855         * PropertyGrid.cs: Fixed attributes
24856         * Control.cs: Fixed attributes
24857         * ListViewItem.cs: Added TypeConverter attribute
24858         * NotifyIcon.cs: Fixed attributes
24859         * ListView.cs: Fixed attributes
24860         * ButtonBase.cs: Fixed attribute
24861         * ImageList.cs: Added missing attributes
24862         * ContainerControl.cs: Fixed signature
24863         * CheckedListBox.cs: Fixed attribute; added missing attributes
24864         * Panel.cs: Fixed attributes
24865         * PropertyTabChangedEventArgs.cs: Added missing attribute
24866         * PropertyValueChangedEventArgs.cs: Added missing attribute
24867         * Binding.cs: Fixed attribute
24868         * ListViewItemConverter: Implemented ListViewSubItemConverter class
24869         * ListBox.cs: Fixed attribute; added missing attributes;
24870         * ScrollableControl.cs: Added missing attributes
24871         * PictureBox.cs: Added missing attributes; implemented missing property
24872         * DateTimePicker.cs: Added missing attributes
24873         * Theme.cs (ToolWindowCaptionHeight): Fixed type
24874         * MonthCalendar.cs: Fixed attributes
24875         * StatusBarPanel.cs: Added missing attributes
24876         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
24877
24878 2005-02-16  Peter Bartok  <pbartok@novell.com>
24879
24880         * TextBoxBase.cs: The previous method to enforce height yet remember
24881           the requested high was less than ideal, this is an attempt to do
24882           it better.
24883         * Control.cs: Added comment about possible problem
24884         * Copyright: Updated format
24885         * GridItemType.cs: Fixed swapped values
24886
24887 2005-02-15  Jackson Harper  <jackson@ximian.com>
24888
24889         * BaseCollection.cs: Use property so we never access an
24890         uninitialized list. Also initialize the list in the property.
24891
24892 2005-02-15  Peter Bartok  <pbartok@novell.com>
24893
24894         * GroupBox.cs (ProcessMnemonic): Implemented
24895         * Label.cs (ProcessMnemonic): Implemented
24896         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
24897           hotkeys
24898
24899 2005-02-15  Peter Bartok  <pbartok@novell.com>
24900
24901         * RadioButton.cs (ProcessMnemonic): Implemented
24902         * CheckBox.cs (ProcessMnemonic): Implemented
24903         * Control.cs:
24904           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
24905             handling
24906           - Added internal method to allow calling ProcessMnemonic from other
24907             controls
24908         * ContainerControl.cs:
24909           - Started support for handling validation chain handling
24910           - Implemented ProcessMnemonic support
24911           - Added Select() call to Active, to make sure the active control
24912             receives focus
24913         * Form.cs: Setting toplevel flag for Forms (this was lost in the
24914           FormParent rewrite)
24915         * ThemeWin32Classic.cs:
24916           - DrawCheckBox(): Fixed stringformat to show hotkeys
24917           - DrawRadioButton(): Fixed stringformat to show hotkeys
24918         * CommonDialog.cs: Removed WndProc override, not needed
24919
24920 2005-02-14  Peter Bartok  <pbartok@novell.com>
24921
24922         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
24923           missed those in the rewrite
24924
24925 2005-02-14  Miguel de Icaza  <miguel@novell.com>
24926
24927         * NumericUpDown.cs (Increment, ToString): Add.
24928         (DecimalPlaces): implement.
24929         
24930         Add attributes.
24931         
24932         * UpDownBase.cs: Add the designer attributes.
24933
24934 2005-02-13  Peter Bartok  <pbartok@novell.com>
24935
24936         * Panel.cs: Removed border_style, now in Control
24937         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
24938           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
24939
24940 2005-02-13  Peter Bartok  <pbartok@novell.com>
24941
24942         * MouseButtons.cs: Added missing attributes
24943         * XplatUIStructs.cs: Added enumeration for title styles
24944         * LeftRightAlignment.cs: Added missing attributes
24945         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
24946           it compatible with Graphics.FromHwnd()
24947         * SelectedGridItemChangedEventArgs.cs: Fixed property type
24948         * Keys.cs: Added missing attributes
24949         * SelectionRange.cs: Added missing attributes
24950         * SelectionRangeConverter.cs: Added
24951         * XplatUI.cs:
24952           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
24953             ReleaseMenuDC methods
24954           - Renamed ReleaseWindow to UngrabWindow
24955           - Added proper startup notice to allow version identification
24956         * Form.cs:
24957           - Added missing attributes
24958           - Removed FormParent concept
24959         * Label.cs: Removed border_style field, now in Control
24960         * RadioButton.cs: Now properly selects RadioButton when focus is
24961           received
24962         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
24963         * Control.cs:
24964           - Added missing attributes
24965           - Added borderstyle handling
24966           - Removed FormParent concept support
24967           - Fixed calls to XplatUI to match changed APIs
24968           - Fixed bug that would case us to use disposed Graphics objects
24969           - Removed unneeded internal methods
24970           - PerformLayout(): Fixed to handle DockStyle.Fill properly
24971           - SelectNextControl(): Fixed to properly check common parents
24972         * TextBoxBase.cs: Removed border_style field (now in Control)
24973         * MessageBox.cs:
24974           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
24975             fixed calculations for form size
24976           - Added support for localized strings and icons
24977           - Improved form size calculations, added border
24978         * ListView.cs: Removed border_style field (now in Control)
24979         * X11Structs.cs: Moved several structs from X11 driver here
24980         * X11Keyboard.cs: Changed debug message
24981         * Application.cs: Removed FormParent concept support
24982         * CommonDialog.cs:
24983           - Resetting end_modal flag
24984           - Removed FormParent concept support
24985         * NativeWindow.cs: Removed FormParent concept support
24986         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
24987           Client area and Non-Client whole window to allow support for WM_NC
24988           messages
24989         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
24990           prevent using it until it supports Hwnd as per Geoff Norton's request
24991         * ToolBar.cs: Fixed drawing, was not doing proper drawing
24992         * PictureBox.cs: Removed border_style field, now in Control
24993         * XplatUIWin32.cs: Added new driver methods
24994
24995 2005-02-12  Peter Bartok  <pbartok@novell.com>
24996
24997         * OpacityConverter.cs: Implemented
24998         * Hwnd.cs: Internal class to support drivers that need to emulate
24999           client area/non-client area window behaviour
25000
25001 2005-02-11  Peter Bartok  <pbartok@novell.com>
25002
25003         * KeysConverter.cs: Implemented
25004
25005 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
25006
25007         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
25008         * LinkLabel: Added missing attributes
25009         * MainMenu.cs: fixes ToString
25010         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
25011         * ListBox.cs: fixes event position
25012         * TrackBar.cs: adds missing attributes and events
25013         
25014 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
25015
25016         * MenuItem.cs: Use SystemInformation and bug fixes
25017         * MenuAPI.cs: Use SystemInformation and bug fixes
25018
25019 2005-02-09  Jackson Harper  <jackson@ximian.com>
25020
25021         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
25022         their keystate otherwise things like VK_MENU get stuck "on".
25023
25024 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
25025
25026         * ListBox.cs: Fixes AddRange bug
25027         
25028 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
25029
25030         * ProgressBar.cs
25031                 - Add missing attributes
25032                 - Add missing method
25033                 
25034         * CheckedListBox.cs: Added missing attributes
25035                 - Add missing attributes
25036                 - Remove extra method
25037         
25038         * ComboBox.cs: Added missing attributes
25039         * VScrollBar.cs: Added missing attributes
25040         * ScrollBar.cs:  Added missing attributes
25041         * ListBox.cs: Fixes signature, add missing consts
25042         * LinkArea.cs:   Added missing attributes
25043         
25044
25045 2005-02-08  Peter Bartok  <pbartok@novell.com>
25046
25047         * Menu.cs: Added missing attributes
25048         * MainMenu.cs: Added missing attributes
25049         * GroupBox.cs: Added missing attributes
25050         * Label.cs: Added missing attributes
25051         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
25052         * ColorDialog.cs:
25053           - Added Instance and Options properties
25054           - Added missing attributes
25055         * Cursor.cs: Made Serializable
25056         * NotifyIcon: Added missing attributes
25057         * MenuItem.cs: Added missing attributes
25058         * TextBoxBase.cs: Implemented AppendText() and Select() methods
25059         * Panel.cs: Added Missing attributes
25060         * MonthCalendar.cs: Fixed CreateParams
25061
25062 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
25063         
25064         * LinkLabel.cs:
25065                 - Fixes signature
25066                 - Fixes issues with links
25067                 - Adds the class attributes
25068
25069 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
25070         
25071         * ComboBox.cs:
25072                 - Fixes button when no items available in dropdown
25073                 - Fixes repainting problems
25074                 - Adds the class attributes
25075                 
25076 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
25077
25078         * XplatUIOSX.cs: Detect the menu bar and title bar height from
25079         the current theme.  Cache these on startup.
25080
25081 2005-02-07  Jackson Harper  <jackson@ximian.com>
25082
25083         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
25084         the scrollbar buttons when they are depressed.
25085
25086 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
25087
25088         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
25089         Get the display size from the main displayid.  We currently dont
25090         support multiple display configurations.
25091
25092 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
25093
25094         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
25095
25096 2005-02-07  Miguel de Icaza  <miguel@novell.com>
25097
25098         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
25099
25100 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
25101
25102         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
25103
25104 2005-02-04  Jackson Harper  <jackson@ximian.com>
25105
25106         * ThemeWin32Classic.cs: Respect the clipping rect when
25107         drawing. Only fill the intersection of clips and rects so there
25108         isn't a lot of large fills.
25109         * ScrollBar.cs: Pass the correct clipping rect to the theme
25110         engine. Remove some debug code.
25111
25112 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
25113         
25114         * DateTimePicker.cs:
25115                 - Fixed crash on DateTime.Parse, use Constructor instead
25116
25117 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
25118         
25119         * MenuItem.cs:
25120         * MenuAPI.cs:
25121                 - Owner draw support (MeasureItem and DrawItem)
25122
25123 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
25124         
25125         *  Menu.cs:
25126                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
25127                 - Fixes MenuItems.Add range
25128         * MenuItem.cs:
25129                 - MergeMenu and Clone and CloneMenu functions
25130
25131 2005-02-03  Jackson Harper  <jackson@ximian.com>
25132
25133         * ScrollBar.cs: Make abstract
25134         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
25135         is abstract.
25136
25137 2005-02-03  Jackson Harper  <jackson@ximian.com>
25138
25139         * ScrollBar.cs: First part of my scrollbar fixups. This removes
25140         all the unneeded refreshes and uses invalidates with properly
25141         computed rects.
25142
25143 2005-02-03  Peter Bartok  <pbartok@novell.com>
25144
25145         * ComponentModel.cs: Added
25146         * IDataGridEditingService.cs: Added
25147         * Timer.cs: Added missing attributes
25148         * ToolTip.cs: Added missing attributes
25149
25150 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
25151
25152         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
25153
25154 2005-02-03  Peter Bartok  <pbartok@novell.com>
25155
25156         * ListBox.cs: Added missing attributes
25157
25158 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
25159         
25160         * ListBox.cs:
25161                 - Fixes font height after font change
25162                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
25163                 
25164 2005-02-02  Peter Bartok  <pbartok@novell.com>
25165
25166         * HandleData.cs: Introduced static methods to allow class
25167           to be more self-contained and track it's own HandleData objects
25168         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
25169           HandleData to use new static methods
25170
25171 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
25172
25173         * Combobox.cs:
25174                 - Fixes default size and PreferredHeight
25175                 - Missing events
25176                 - ObjectCollection.Insert implementation
25177                 
25178         * ListControl.cs
25179                 - Fixes signature
25180         * ListBox.cs:
25181                 - Several fixes
25182                 - ObjectCollection.Insert implementation
25183                 - No selection after clean
25184                 - Small fixes
25185
25186 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
25187
25188         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
25189
25190 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
25191
25192         * Combobox.cs:
25193                 - Caches ItemHeight calculation for OwnerDrawVariable
25194                 - Handles dropdown properly
25195                 - Fixes several minor bugs
25196
25197 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
25198
25199         * ListBox.cs:
25200                 - Fixes 71946 and 71950
25201                 - Fixes changing Multicolumn on the fly
25202                 - Fixes keyboard navigation on Multicolumn listboxes
25203
25204 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
25205         
25206         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
25207         crash reporter log.
25208
25209 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
25210
25211         * XplatUIOSX.cs: Allow applications to actually exit.
25212
25213 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
25214
25215         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
25216         their parent at creation time rather than lazily later.  Fixes a major
25217         regression we were experiencing.
25218
25219 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
25220
25221         * ThemeWin32Classic.cs: more date time picker painting fixes
25222         * DateTimePicker.cs: more monthcalendar drop down fixes
25223         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
25224
25225 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
25226
25227         * ScrollBar.cs:
25228                 - When moving the thumb going outside the control should stop the moving
25229                 - Adds the firing of missing events
25230                 - Fixes no button show if Size is not specified
25231                 - End / Home keys for keyboard navigation
25232
25233 2005-01-30  Peter Bartok  <pbartok@novell.com>
25234
25235         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
25236           sanity check to prevent theoretical loop
25237         * XplatUIWin32.cs (SetVisible): Removed debug output
25238         * XplatUIX11.cs (SystrayChange): Added sanity check
25239         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
25240         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
25241           behaviour, valid until the X11 client window rewrite is done
25242         * TextBox.cs (ctor): Setting proper default foreground and background
25243           colors
25244
25245 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
25246
25247         * Theme: Added DrawDateTimePicker to interface
25248         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
25249         * DateTimePicker.cs: Created (still needs keys and painting code)
25250         * DateTimePickerFormat.cs: added
25251         * MonthCalendar.cs: fixed CreateParams for popup window mode
25252           
25253 2005-01-29  Peter Bartok  <pbartok@novell.com>
25254
25255         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
25256           this should also the calculations for ligher/darker
25257         * Theme.cs: Fixed defaults for ScrollBar widths/heights
25258
25259 2005-01-29  Peter Bartok  <pbartok@novell.com>
25260
25261         * ArrangeDirection.cs: Added
25262         * ArrangeStartingPositon.cs: Added
25263         * SystemInformation.cs: Implemented
25264         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
25265           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
25266           used by SystemInformation class
25267         * X11Strucs.cs: Added XSizeHints structure
25268         * MenuAPI.cs:
25269           - Fixed CreateParams to make sure the menu window is always visible
25270           - TrackPopupMenu: Added check to make sure we don't draw the
25271             menu offscreen
25272
25273 2005-01-29  Peter Bartok  <pbartok@novell.com>
25274
25275         * HandleData.cs: Added method for altering invalid area
25276         * TextBoxBase.cs: Implemented TextLength
25277
25278 2005-01-28  Peter Bartok  <pbartok@novell.com>
25279
25280         * XplatUIX11.cs: Improvement over last patch, not sending
25281           the WM_PAINT directly anymore, instead we scroll any pending
25282           exposed areas and let the system pick out the WM_PAINT later
25283
25284 2005-01-28  Peter Bartok  <pbartok@novell.com>
25285
25286         * SWF.csproj: Deleted, no longer used. Instead,
25287           Managed.Windows.Forms/SWF.csproj should be used
25288         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
25289           directly, to avoid a potential race condition with the next
25290           scroll
25291
25292 2005-01-28  Peter Bartok  <pbartok@novell.com>
25293
25294         * XplatUI.cs: Made class internal
25295
25296 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
25297
25298         * CheckedListBox.cs:
25299                 - Draw focus
25300                 - Fixed Drawing
25301                 - Missing methods and events
25302
25303 2005-01-27  Peter Bartok  <pbartok@novell.com>
25304
25305         * Application.cs (Run): Don't use form if we don't have one
25306
25307 2005-01-27  Peter Bartok  <pbartok@novell.com>
25308
25309         * TextBoxBase.cs (get_Lines): Fixed index off by one error
25310
25311 2005-01-27  Peter Bartok  <pbartok@novell.com>
25312
25313         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
25314         * GridItem.cs: Added; Patch by Jonathan S. Chambers
25315         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
25316         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
25317         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
25318         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
25319         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25320         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
25321         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25322         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25323         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25324         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
25325
25326 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
25327
25328         * Combobox.cs:
25329                 - Draw focus on Simple Combobox
25330                 - Fixes drawing issues
25331                 - fixes 71834
25332
25333 2005-01-27  Peter Bartok  <pbartok@novell.com>
25334
25335         * Form.cs:
25336           - Place window in default location, instead of hardcoded 0/0
25337           - Send initial LocationChanged event
25338         * Control.cs:
25339           - UpdateBounds after creation to find out where the WM placed us
25340           - Make sure that if the ParentForm changes location the Form
25341             is notified
25342         * XplatUIX11.cs: XGetGeometry will not return the coords relative
25343             to the root, but to whatever the WM placed around us.
25344             Translate to root coordinates before returning toplevel
25345             coordinates
25346         * XplatUIWin32.cs: Removed debug output
25347         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
25348           flag to GetWindowPos, to allow translation of coordinates on X11
25349
25350 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
25351
25352         * ListBox.cs: connect LostFocus Event
25353
25354 2005-01-27  Peter Bartok  <pbartok@novell.com>
25355
25356         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
25357           XplatUIX11.cs: Extended the Systray API
25358         * Form.cs: Removed debug output
25359         * Application.cs: Fixed focus assignment, always need to call
25360           XplatUI.Activate() since Form.Activate() has rules that may
25361           prevent activation
25362         * NotifyIcon.cs: Should be complete now
25363         * ToolTip.cs: Worked around possible timer bug
25364
25365 2005-01-27  Jackson Harper  <jackson@ximian.com>
25366
25367         * TabControl.cs:
25368         - Only invalidate the effected tabs when the
25369         selected index changes. This reduces drawing and gets rid of some
25370         flicker.
25371         - Only refresh if the tabs need to be shifted, otherwise only
25372         invalidate the slider button.
25373         - On windows the tabs are not filled to right if the slider is
25374         visible.
25375         
25376 2005-01-27  Jackson Harper  <jackson@ximian.com>
25377
25378         * TabControl.cs: Only refresh on mouseup if we are showing the
25379         slider. Also only invalidate the button whose state has changed.
25380
25381 2005-01-26  Peter Bartok  <pbartok@novell.com>
25382
25383         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
25384         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
25385           and SystrayRemove() methods
25386         * XplatUIOSX.cs: Stubbed Systray methods
25387         * XplatUIX11.cs:
25388           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
25389             methods
25390           - Fixed broken XChangeProperty calls (marshalling messed up things)
25391         * X11Structs.cs: Added enums and structs required for Size hinting
25392         * NotifyIcon.cs: Added & implemented
25393
25394 2005-01-26  Jackson Harper  <jackson@ximian.com>
25395
25396         * TabControl.cs: Space vertically layed out tabs properly.
25397
25398 2005-01-26  Peter Bartok  <pbartok@novell.com>
25399
25400         * Form.cs (CreateClientParams): Always set the location to 0,0
25401           since we're a child window.
25402
25403         * Control.cs (SetVisibleCore): Always explicitly setting the location
25404           of a toplevel window, apparently X11 doesn't like to move windows
25405           while they're not mapped.
25406
25407 2005-01-26  Jackson Harper  <jackson@ximian.com>
25408
25409         * TabControl.cs: Implement FillToRight size mode with vertically
25410         rendered tabs.
25411
25412 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
25413
25414         * ControlPaint.cs, ThemeWin32Classic.cs
25415                 - Fixes DrawFocusRectangle
25416
25417 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
25418
25419         * MenuAPI.cs:
25420                 - MenuBar tracking only starts when item is first clicked
25421                 - Fixes menu hidding for multiple subitems
25422                 - Unselect item in MenuBar when item Executed
25423                 - Fixes bug 71495
25424
25425 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
25426
25427         * ListControl.cs:
25428                 - IsInputKey for ListBox
25429         * ListBox.cs:
25430                 - Focus item
25431                 - Shift and Control item selection
25432                 - Implement SelectionMode.MultiExtended
25433                 - Fixes RightToLeft
25434         * ComboBox.cs:
25435                 - IsInputKey implemented
25436                 - Do not generate OnTextChangedEdit on internal txt changes
25437                 
25438 2005-01-23  Peter Bartok  <pbartok@novell.com>
25439
25440         * AccessibleObject.cs: Partially implemented Select()
25441         * MonthCalendar.cs: Added missing attributes and events
25442         * Form.cs: Fixed CreateParams behaviour, now controls derived from
25443           form can properly override CreateParams.
25444         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
25445           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
25446           Control performs Invalidate & Update
25447         * NativeWindow (CreateHandle): Added special handling for Form
25448           and Form.FormParent classes to allow overriding of From.CreateParams
25449         * Control.cs:
25450           - ControlNativeWindow: Renamed 'control' variable to more intuitive
25451             name 'owner'
25452           - ControlNativeWindow: Added Owner property
25453           - Removed usage of Refresh() on property changes, changed into
25454             Invalidate(), we need to wait until the queue is processed for
25455             updates, direct calls might cause problems if not all vars for
25456             Paint are initialized
25457           - Added call to UpdateStyles() when creating the window, to set any
25458             styles that CreateWindow might have ignored.
25459           - Added support for Form CreateParent overrides to UpdateStyles()
25460         * MessageBox.cs: Removed no longer needed FormParent override stuff,
25461           CreateParams are now properly overridable
25462         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
25463           CreateParams are now properly overridable
25464
25465 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
25466
25467         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
25468         OnTextBoxChanged.
25469
25470         Capture LostFocus and OnTextBoxChanged.  The later introduces a
25471         recursive invocation that I have not figured out yet.
25472
25473         Reset the timer when not using (it was accumulating).
25474
25475
25476         (OnTextBoxChanged): Set UserEdit to true here to track whether the
25477         user has made changes that require validation.
25478
25479         Reset changing to avoid loops.
25480
25481 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
25482
25483         * NumericUpDown.cs: Display value at startup.
25484
25485         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
25486         ValidateEditText.
25487
25488         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
25489         filled in.  Added some basic parsing of text.
25490
25491         Still missing the OnXXX method overrides, and figuring out the
25492         events that must be emitted.
25493
25494         * UpDownBase.cs: Handle UserEdit on the Text property.
25495         
25496 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
25497
25498         * ComboBox.cs:
25499           - Fixes IntegralHeight
25500           - ToString method
25501
25502 2005-01-21  Jackson Harper  <jackson@ximian.com>
25503
25504         * TabControl.cs: Set the SelectedIndex property when SelectedTab
25505         is set so that the page visibility is updated and the tabs are
25506         sized correctly.
25507
25508 2005-01-21  Jackson Harper  <jackson@ximian.com>
25509
25510         * TabControl.cs: Use cliping rectangle for blitting. Give the
25511         theme the clipping rect so we can do clipping while
25512         drawing. Remove some debug code.
25513
25514 2005-01-21  Jackson Harper  <jackson@ximian.com>
25515
25516         * TabPage.cs: Add a new method so tab pages can force the tab
25517         control to recalculate the tab page sizes.
25518         * TabControl.cs: UpdateOwner needs to make the tab control recalc
25519         sizes.
25520
25521 2005-01-20  Jackson Harper  <jackson@ximian.com>
25522
25523         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
25524
25525 2005-01-20  Jackson Harper  <jackson@ximian.com>
25526
25527         * TreeView.cs: Set the bounds for nodes properly. They were
25528         getting screwed up when checkboxes were not enabled, but images
25529         were.
25530
25531 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
25532
25533         * ListBox.cs:
25534                 - Owner draw support
25535                 - Fixes
25536                 
25537 2005-01-20  Jackson Harper  <jackson@ximian.com>
25538
25539         * XplatUIStructs.cs: More misc keys
25540         * X11Keyboard.cs: Ignore some control keys.
25541
25542 2005-01-20  Jackson Harper  <jackson@ximian.com>
25543
25544         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
25545         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
25546
25547 2005-01-19  Peter Bartok  <pbartok@novell.com>
25548
25549         * Control.cs: Un-selecting the control when it is loosing focus
25550
25551 2005-01-19  Jackson Harper  <jackson@ximian.com>
25552
25553         * TreeView.cs: Hook up to the text controls leave event so we can
25554         end editing when the users clicks outside the text box.
25555         
25556 2005-01-19  Jackson Harper  <jackson@ximian.com>
25557
25558         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
25559         get set in the conversion array.
25560
25561 2005-01-19  Peter Bartok  <pbartok@novell.com>
25562
25563         * Application.cs (ModalRun): Added a call to CreateControl to ensure
25564           focus is properly set
25565         * Button.cs:
25566           - Added missing attributes
25567           - removed styles, those are already set in the base class
25568         * ButtonBase.cs:
25569           - Added missing attributes
25570           - Added clip window styles
25571         * CheckBox.cs: Added missing attributes
25572         * CommonDialog.cs:
25573           - FormParentWindow.CreateParams: Added required clip styles
25574         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
25575           also filters modifier keys
25576         * MessageBox.cs:
25577           - Added assignment of Accept and Cancel button to enable Enter
25578             and Esc keys in MessageBox dialogs
25579           - FormParentWindow.CreateParams: Added required clip styles
25580         * RadioButton.cs: Added missing attributes
25581         * TextControl.cs: No longer draws selection if control does not
25582           have focus
25583         * TextBoxBase.cs:
25584           - Now draws simple rectangle around test area to make it obvious
25585             there's a control. This is a hack until we properly support borders
25586           - A few simple fixes to support selections better, now erases selected
25587             text when typing, and resets selection when using movement keys
25588
25589 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
25590
25591         * UpDownBase.cs: Added some new properties.
25592
25593         * DomainUpDown.cs: Implement a lot to get my test working.
25594
25595 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
25596
25597         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
25598
25599 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
25600
25601         * OSXStructs (WindowAttributes): Fixed csc complaints
25602
25603 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
25604
25605         * XplayUIOSX.cs:
25606           OSXStructs.cs: Initial refactor to move enums and consts into
25607           OSXStructs and use them in the driver for greater readability.
25608
25609 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
25610
25611         * XplatUIOSX.cs: Initial support for Standard Cursors.
25612         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
25613
25614 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
25615
25616         * ComboBox.cs: ability to change style when the ctrl is already
25617         created, missing methods and events, bug fixes, signature fixes
25618
25619 2005-01-19  Peter Bartok  <pbartok@novell.com>
25620
25621         * Cursors.cs (ctor): Added ctor to fix signature
25622
25623 2005-01-18  Peter Bartok  <pbartok@novell.com>
25624
25625         * Button.cs: Implemented DoubleClick event
25626         * ButtonBase.cs:
25627           - Fixed keyboard handling to behave like MS, where the press of
25628             Spacebar is equivalent to a mousedown, and the key release is
25629             equivalent to mouseup. Now a spacebar push will give the same
25630             visual feedback like a mouse click.
25631           - Added missing attributes
25632           - Added ImeModeChanged event
25633           - Added support for generating DoubleClick event for derived classes
25634         * CheckBox.cs:
25635           - Implemented DoubleClick event
25636           - Added missing attributes
25637         * CommonDialog.cs: Added missing attribute
25638         * ContextMenu.cs: Added missing attributes
25639         * RadioButton.cs:
25640           - AutoChecked buttons do not allow to be unselected when clicked
25641             (otherwise we might end up with no selected buttons in a group)
25642           - Added missing attributes
25643           - Implemented DoubleClickEvent
25644         * ThreadExceptionDialog.cs: Enabled TextBox code
25645
25646 2005-01-18  Peter Bartok  <pbartok@novell.com>
25647
25648         * Form.cs: Removed debug output
25649         * Button.cs: Added support for DoubleClick method
25650
25651 2005-01-18  Peter Bartok  <pbartok@novell.com>
25652
25653         * Form.cs:
25654           - Added method to parent window that allows triggering size
25655             calculations when a menu is added/removed
25656           - set_Menu: Cleaned up mess from early days of Form and Control,
25657             now properly triggers a recalc when a menu is added/removed
25658           - Added case to select form itself as focused form if no child
25659             controls exist
25660           - Added PerformLayout call when showing dialog, to ensure properly
25661             placed controls
25662         * Control.cs:
25663           - Select(): Made internal so Form can access it
25664           - Focus(): Only call Xplat layer if required (avoids loop), and sets
25665             status
25666         * Application.cs (Run): Removed hack and calls PerformLayout instead
25667           to trigger calculation when Form becomes visible
25668
25669 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
25670
25671         * ComboBox.cs: fixes for ownerdraw
25672
25673 2005-01-18  Peter Bartok  <pbartok@novell.com>
25674
25675         * TextControl.cs:
25676           - Sentinel is no longer static, each Document gets it's own, this
25677             avoids locking or alternatively overwrite problems when more
25678             than one text control is used simultaneously.
25679           - Switched to use Hilight and HilightText brushes for text selection
25680
25681         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
25682
25683 2005-01-18  Peter Bartok  <pbartok@novell.com>
25684
25685         * Control.cs:
25686           - Hooked up the following events:
25687                 o ControlAdded
25688                 o ControlRemoved
25689                 o HandleDestroyed
25690                 o ImeModeChanged
25691                 o ParentChanged
25692                 o TabStopChanged
25693                 o Invalidated
25694                 o SystemColorsChanged
25695                 o ParentFontChanged
25696                 o Move
25697           - Removed debug output
25698           - Added a call to the current theme's ResetDefaults when a color change
25699             is detected
25700         * Form.cs: Now setting the proper ImeMode
25701         * Theme.cs: Defined a method to force recreation of cached resources
25702           and rereading of system defaults (ResetDefaults())
25703         * ThemeWin32Classic.cs: Added ResetDefaults() stub
25704
25705 2005-01-17  Peter Bartok  <pbartok@novell.com>
25706
25707         * Control.cs: Added missing attributes
25708
25709 2005-01-17  Jackson Harper  <jackson@ximian.com>
25710
25711         * TreeNode.cs: Implement editing. Add missing properties selected
25712         and visible.
25713         * TreeView.cs: Implement node editing. Also some fixes to use
25714         Invalidate (invalid area) instead of Refresh when selecting.
25715
25716 2005-01-17  Peter Bartok  <pbartok@novell.com>
25717
25718         * Control.cs:
25719           - Implemented InvokeGotFocus() method
25720           - Implemented InvokeLostFocus() method
25721           - Implemented InvokePaint() method
25722           - Implemented InvokePaintBackground() method
25723           - Implemented InvokeClick() method
25724           - Implemented FindForm() method
25725           - Implemented RectangleToClient() method
25726           - Implemented ClientToRectangle() method
25727           - Implemented ResetBackColor() method
25728           - Implemented ResetCursor() method
25729           - Implemented ResetFont() method
25730           - Implemented ResteForeColor() method
25731           - Implemented ResetImeMode() method
25732           - Implemented ResetLeftToRight() method
25733           - Implemented ResetText() method
25734           - Implemented Scale() methods
25735           - Implemented ScaleCore() method
25736           - Implemented Update() method
25737           - Removed unused variables
25738           - Stubbed AccessibilityNotifyClients and
25739             ControlAccessibleObject.NotifyClients() methods (dunno what to do
25740             with those yet)
25741           - Now setting proper default for RightToLeft property
25742           - Fixed bug in SetClientSizeCore that would cause windows to get
25743             really big
25744           - Now sending Click/DoubleClick events
25745           - Now selecting controls when left mouse button is clicked on
25746             selectable control
25747         * AccessibleEvents.cs: Added
25748         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
25749         * XplatUIOSX.cs: Stubbed UpdateWindow() method
25750         * XplatUIWin32.cs: Implemented UpdateWindow() method
25751         * XplatUIX11.cs: Implemented UpdateWindow() method
25752         * Form.cs: Removed stray semicolon causing CS0162 warning
25753         * ThemeWin32Classic.cs: Fixed unused variable warnings
25754         * ScrollableControl.cs: Now calls base method for ScaleCore
25755         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
25756           style to avoid interference with internal click handler (which is
25757           different than standard Control click handling)
25758         * RadioButton.cs:
25759           - Now unchecks all sibling radio buttons when control is
25760             selected (Fixes #68756)
25761           - Removed internal tabstop variable, using the one inherited from
25762             Control
25763
25764 2005-01-17  Jackson Harper  <jackson@ximian.com>
25765
25766         * NavigateEventArgs.cs: Fix base type.
25767         * LinkLabel.cs: Sig fix
25768         
25769 2005-01-17  Jackson Harper  <jackson@ximian.com>
25770
25771         * TreeView.cs: Only invalidate the effected nodes bounds when
25772         selecting nodes.
25773
25774 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
25775
25776         * XplatUIWin32.cs: fixes Win32 marshaling
25777         * XplatUIX11.cs: fixes method signature
25778
25779 2005-01-17  Peter Bartok  <pbartok@novell.com>
25780
25781         * XplatUIX11.cs: Clean up resources when we no longer need them
25782
25783 2005-01-17  Peter Bartok  <pbartok@novell.com>
25784
25785         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
25786           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
25787           and DestroyCursor() methods.
25788         * Cursor.cs: Partially implemented, now supports standard cursors;
25789           still contains some debug code
25790         * Cursors.cs: Implemented class
25791         * Control.cs:
25792           - WndProc(): Added handling of WM_SETCURSOR message, setting the
25793             appropriate cursor
25794           - Implemented Cursor property
25795           - Replaced break; with return; more straightforwar and possibly
25796             faster
25797           - Now properly setting the result for WM_HELP
25798         * X11Structs.cs: Added CursorFontShape enum
25799         * XplatUIStructs.cs:
25800           - Added StdCursor enum (to support DefineStdCursor() method)
25801           - Added HitTest enum (to support sending WM_SETCURSOR message)
25802         * XplatUIX11.cs:
25803           - Now sends the WM_SETCURSOR message
25804           - Implemented new cursor methods
25805         * XplatUIOSX.cs: Stubbed new cursor methods
25806         * XplatUIWin32.cs:
25807           - Implemented new cursor methods
25808           - Added GetSystemMetrics function and associated enumeration
25809
25810 2005-01-15  Peter Bartok  <pbartok@novell.com>
25811
25812         * Control.cs:
25813           - WndProc(): Now handles EnableNotifyMessage
25814           - SelectNextControl(): Fixed bug where if no child or sibling
25815             controls exist we looped endlessly
25816
25817 2005-01-14  Jackson Harper  <jackson@ximian.com>
25818
25819         * TreeView.cs: Recalculate the tab pages when a new one is added
25820         so that the proper bounding rects are created.
25821
25822 2005-01-14  Jackson Harper  <jackson@ximian.com>
25823
25824         * TreeView.cs: Draw a gray box instead of a grip in the lower
25825         right hand corner when there are both horizontal and vertical
25826         scroll bars.
25827
25828 2005-01-14  Jackson Harper  <jackson@ximian.com>
25829
25830         * Control.cs: When erasing backgrounds use FromHwnd instead of
25831         FromHdc when there is a NULL wparam. This occurs on the X driver.
25832         * XplatUIX11.cs: Set the wparam to NULL.
25833
25834 2005-01-13  Jackson Harper  <jackson@ximian.com>
25835
25836         * PictureBox.cs: Implement missing methods (except ToString, need
25837         to test that on windows) and events. When visibility is changed we
25838         need to redraw the image because the buffers are killed. When size
25839         is changed refresh if the sizemode needs it.
25840
25841 2005-01-13  Peter Bartok  <pbartok@novell.com>
25842
25843         * Control.cs (SelectNextControl): Was using wrong method to select
25844           a control
25845
25846 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
25847
25848         * ComboBox.cs: fixes dropstyle
25849
25850 2005-01-13  Peter Bartok  <pbartok@novell.com>
25851
25852         * Form.cs:
25853           - Implemented Select() override
25854           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
25855           - Now sets keyboard focus on startup
25856         * Control.cs (SelectNextControl): Now properly handles directed=true
25857         * TextBoxBase.cs:
25858           - WndProc: Now passes tab key on to base if AcceptTabChar=false
25859           - Added (really bad) focus rectangle (mostly for testing)
25860         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
25861           to enforce redraw on focus changes
25862         * ContainerControl.cs:
25863           - Fixed detection of Shift-Tab key presses
25864           - Fixed traversal with arrow keys
25865         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
25866           gonna keep this or if it's complete yet
25867         
25868 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
25869
25870         * ComboBox.cs: missing properties, fixes
25871
25872 2005-01-13  Peter Bartok  <pbartok@novell.com>
25873
25874         * Panel.cs (ctor): Setting Selectable window style to off
25875         * Splitter.cs (ctor): Setting Selectable window style to off
25876         * GroupBox.cs (ctor): Setting Selectable window style to off
25877         * Label.cs (ctor): Setting Selectable window style to off
25878
25879 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
25880
25881         * UpDownBase.cs (InitTimer): If the timer has been already
25882         created, enable it.
25883
25884         Use a TextBox instead of a Label.
25885
25886 2005-01-12  Jackson Harper  <jackson@ximian.com>
25887
25888         * TreeView.cs: Refresh the tree after sorting the nodes. Always
25889         draw the connecting node lines (when ShowLines is true).
25890         * TreeNode.cs: The nodes index can now be updated. This is used
25891         when a node collection is sorted.
25892         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
25893         insert or an existing unsorted node collection can be sorted.
25894         
25895 2005-01-12  Peter Bartok  <pbartok@novell.com>
25896
25897         * ContainerControl.cs: Implemented ProcessDialogKeys()
25898
25899 2005-01-12  Peter Bartok  <pbartok@novell.com>
25900
25901         * Control.cs:
25902           - Implemented SelectNextControl() method
25903           - Several focus related bug fixes
25904           - Fixed Docking calculations to match MS documentation and
25905             behaviour
25906
25907 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
25908
25909         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
25910         bug fixes
25911
25912 2005-01-12  Peter Bartok  <pbartok@novell.com>
25913
25914         * Control.cs:
25915           - Fixed broken Contains() method
25916           - Implemented GetNextControl() method. Finally. This is the pre-
25917             requisite for focus handling.
25918
25919 2005-01-12  Peter Bartok  <pbartok@novell.com>
25920
25921         * OSXStrucs.cs: Added
25922
25923 2005-01-12  Peter Bartok  <pbartok@novell.com>
25924
25925         * XplatUIWin32.cs:
25926           - Removed PeekMessageFlags
25927           - Implemented SetWindowStyle() method
25928         * XplatUIStructs.cs: Added PeekMessageFlags
25929         * X11Structs: Added missing border_width field to XWindowChanges struct
25930         * XplatUIX11.cs:
25931           - PeekMessage: Now throws exception if flags which are not yet
25932             supported are passed
25933           - Implemented SetWindowStyle() method
25934           - Fixed SetZOrder to handle AfterHwnd properly
25935         * XplatUI.cs: Added SetWindowStyle() method
25936         * XplatUIDriver.cs: Added SetWindowStyle() abstract
25937         * Control.cs:
25938           - Implemented UpdateStyles() method
25939           - Implemented UpdateZOrder() method
25940         * XplatUIOSX.cs: Added SetWindowStyle() stub
25941
25942 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
25943
25944         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
25945         button mouse).
25946
25947
25948 2005-01-11  Jackson Harper  <jackson@ximian.com>
25949
25950         * TreeView.cs: Still need to draw lines to siblings even if out of
25951         the current node is out of the clip.
25952
25953 2005-01-11  Jackson Harper  <jackson@ximian.com>
25954
25955         * TreeView.cs: When setting the hbar/vbar/grip position use
25956         SetBounds so that perform layout is only called once. Also suspend
25957         and resume layout so layout is only done once for all controls.
25958         - Removed some debug fluff
25959         * SizeGrip.cs: Call base implmentation in overriding methods.
25960         - When visibility is changed the drawing buffers are killed so we
25961         need to redraw.
25962
25963 2005-01-11  Jackson Harper  <jackson@ximian.com>
25964
25965         * TreeView.cs: Calculate the open node count while drawing. This
25966         saves us an entire tree traversal for every paint operation. Use
25967         a member var for the open node count so less vars are passed around.
25968
25969 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
25970
25971         * MonthCalendar.cs:
25972         - fixed selection to use mousemove, not mouse polling on timer
25973         * ThemeWin32Classic.cs
25974         - removed redundant unused variable "no_more_content"
25975         
25976 2005-01-11  Peter Bartok  <pbartok@novell.com>
25977
25978         * XplatUIX11.cs (DoEvents): Needs to return when no more events
25979           are pending, so it now calls PeekMessage instead of GetMessage;
25980           implemented a incomplete version of PeekMessage
25981         
25982 2005-01-11  Peter Bartok  <pbartok@novell.com>
25983
25984         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
25985           I18n issues
25986         * TextBoxBase.cs: Added sending of TextChanged event
25987
25988 2005-01-10  Jackson Harper  <jackson@ximian.com>
25989
25990         * TreeView.cs: Try not to draw outside the clipping rectangle on
25991         each node element.
25992
25993 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
25994
25995         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
25996
25997 2005-01-10  Jackson Harper  <jackson@ximian.com>
25998
25999         * TreeView.cs:
26000         - Implement fast scrolling. Now only the newly
26001         exposed nodes are drawn and the old image is moved using the
26002         XplatUI::ScrollWindow method.
26003         - Factor in height of nodes when calculating whether or not the
26004         node is in the clipping rect.
26005
26006 2005-01-10  Jackson Harper  <jackson@ximian.com>
26007
26008         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
26009
26010 2005-01-10  Peter Bartok  <pbartok@novell.com>
26011
26012         * Application.cs: Added temporary hack to resolve all our resize
26013           required issues on startup. This will get fixed properly at
26014           some point in the future
26015
26016 2005-01-10  Jackson Harper  <jackson@ximian.com>
26017
26018         * SizeGrip.cs: New internal class that is used as a sizing
26019         grip control...hence the name.
26020
26021 2005-01-10  Peter Bartok  <pbartok@novell.com>
26022
26023         * Control.cs: Implemented proper TabIndex handling, now assigning
26024           a tabindex when a control is added to a container
26025         * GroupBox.cs (ctor): Now sets the Container style bit, required
26026           for Control.GetNextControl()
26027
26028 2005-01-09  Jackson Harper  <jackson@ximian.com>
26029
26030         * TextBoxBase.cs: Clear window when scrolling (fixes build).
26031
26032 2005-01-09  Peter Bartok <pbartok@novell.com>
26033
26034         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
26035           XplatUIX11.cs: Added ability to control ScrollWindow expose and
26036           an overload for ScrollWindow to allow only scrolling a rectangle
26037
26038 2005-01-09  Peter Bartok <pbartok@novell.com>
26039
26040         * Form.cs:
26041           - Implemented SetDesktopBounds method
26042           - Implemented SetDesktopLocation method
26043
26044 2005-01-08  Jackson Harper  <jackson@ximian.com>
26045
26046         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
26047         the node count has changed, this removes to VScroll::Refresh calls
26048         when drawing.
26049
26050 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
26051
26052         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
26053
26054 2005-01-07  Jackson Harper  <jackson@ximian.com>
26055
26056         * TreeNode.cs: Just update the single node when it is
26057         checked. Don't refresh after toggling, the Expand/Collapse already
26058         handles this.
26059         * TreeView.cs: Respect clipping a little more when drawing. Try
26060         not to redraw things that don't need to be redrawn. Just hide the
26061         scrollbars when they are no longer needed instead of removing
26062         them, so they don't have to be created again and again.
26063         
26064 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
26065
26066         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
26067         coordinates to window space to place the caret properly, FIXED.
26068         Implement GetWindowState & SetWindowState
26069
26070 2005-01-06  Peter Bartok <pbartok@novell.com>
26071
26072         * Form.cs:
26073           - Implemented ClientSize property
26074           - Implemented DesktopBounds property
26075           - Implemented DesktopLocation property
26076           - Implemented IsRestrictedWindow property
26077           - Implemented Size property
26078           - Implemented TopLevel property
26079           - Implemented FormWindowState property
26080         * Control.cs:
26081           - Implemented GetTopLevel() method
26082           - Implemented SetTopLevel() method
26083         * X11Structs.cs (Atom):
26084           - Added AnyPropertyType definition
26085           - Added MapState definiton and updated XWindowAttribute struct
26086         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
26087         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
26088         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
26089         * XplatUIWin32.cs:
26090           - Implemented GetWindowState() and SetWindowState() methods
26091           - Fixed Win32GetWindowLong return type
26092         * XplatUIX11.cs:
26093           - Introduced central function for sending NET_WM messages
26094           - Implemented GetWindowState() and SetWindowState() methods
26095         * TextBoxBase.cs (set_Lines):
26096           - Now uses Foreground color for text added via Text property (Duh!)
26097           - Added code to remember programmatically requested size (fixes
26098             behaviour when Multiline is set after Size)
26099           - Added AutoSize logic
26100
26101 2005-01-06  Jackson Harper  <jackson@ximian.com>
26102
26103         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
26104
26105 2005-01-06  Jackson Harper  <jackson@ximian.com>
26106
26107         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
26108         set to less then 0.
26109
26110 2005-01-06  Jackson Harper  <jackson@ximian.com>
26111
26112         * ScrollableControl.cs: Lazy init the scrollbars.
26113         
26114 2005-01-06  Jackson Harper  <jackson@ximian.com>
26115
26116         * Theme.cs: Speed up getting pens and solid brushes, by using
26117         their ARGB as a hash instead of tostring and not calling Contains.
26118
26119 2005-01-06  Peter Bartok <pbartok@novell.com>
26120
26121         * Form.cs:
26122           - Implemented OnActivated and OnDeactivate event trigger
26123           - Implemented Activate() method
26124           - Fixed ShowDialog() to activate the form that was active before
26125             the dialog was shown
26126         * XplatUIX11.cs:
26127           - Added global active_window var that tracks the currently active
26128             X11 window
26129           - Now always grabs Property changes from the root window to always
26130             catch changes on the active window property
26131           - Added code to PropertyNotify handler to send Active/Inactive
26132             messages when state changes. This puts X11 and Win32 en par on
26133             WM_ACTIVATE notifications (except for double notifications when
26134             the user clicks away from our modal window to another one of our
26135             windows)
26136
26137 2005-01-05  Jackson Harper  <jackson@ximian.com>
26138
26139         * ImageList.cs: Implment ctor
26140
26141 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
26142
26143         * XplatUIOSX.cs: Implement Activate/SetTopmost
26144
26145 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
26146
26147         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
26148
26149 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
26150
26151         * XplatUIOSX.cs: Implement GetActive/SetFocus.
26152
26153 2005-01-05  Peter Bartok <pbartok@novell.com>
26154
26155         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
26156           XplatUIOSX.cs: Added GetActive method to return the currently
26157           active window for the application (or null, if none is active)
26158         * Form.cs:
26159           - Implemented ActiveForm
26160           - Commented out owner assignment for modal dialogs (causes problems
26161             on Win32, since the owner will be disabled)
26162           - Reworked some Active/Focus handling (still incomplete)
26163         * CommonDialog.cs: Commented out owner assignment for modal dialogs
26164           (causes problems on Win32, since the owner will be disabled)
26165         * IWin32Window: Added ComVisible attribute
26166
26167 2005-01-05  Peter Bartok <pbartok@novell.com>
26168
26169         * ToolTip.cs (WndProc): Enable setting focus now that we have the
26170           required XplatUI functions.
26171
26172 2005-01-05  Peter Bartok <pbartok@novell.com>
26173
26174         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
26175           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
26176           to implement focus and activation handling; still incomplete and
26177           with debug output
26178
26179 2005-01-04  Peter Bartok <pbartok@novell.com>
26180
26181         * TextBoxBase.cs: Changed access level for Document property to
26182           match switch to internal for TextControl
26183
26184 2005-01-04  Peter Bartok <pbartok@novell.com>
26185
26186         * AccessibleObject: Added ComVisible attribute
26187
26188 2005-01-04  Jackson Harper  <jackson@ximian.com>
26189
26190         * X11Keyboard.cs: Remove unneeded var.
26191
26192 2005-01-04  Jackson Harper  <jackson@ximian.com>
26193
26194         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
26195         but PAINT.
26196         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
26197         ClientMessage. This makes apps exit cleanly (more often).
26198         
26199 2005-01-04  Jackson Harper  <jackson@ximian.com>
26200
26201         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
26202         handling focus, return correct colors and fonts,
26203         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
26204         handle selection, horizontal scrolling, and mouse interaction.
26205
26206 2005-01-04  Peter Bartok <pbartok@novell.com>
26207
26208         * ICommandExecutor.cs: Added
26209         * IDataGridColumnStyleEditingNotificationService.cs: Added
26210         * IFeatureSupport.cs: Added
26211         * IFileReaderService.cs: Added
26212         * IDataObject.cs: Added ComVisible attribute
26213         * AmbientProperties.cs: Added
26214         * BaseCollection.cs: Added missing attributes
26215         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
26216         * BaseCollection.cs: Added missing attributes
26217         * Binding.cs: Added TypeConverter attribute
26218         * BindingContext.cs: Added DefaultEvent attribute
26219         * BindingsCollection.cs: Added DefaultEvent attribute
26220         * Button.cs: Added DefaultValue attribute
26221         * DragEventArgs.cs: Added ComVisible attribute
26222         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
26223         * KeyEventArgs.cs: Added ComVisible attribute
26224         * KeyPressEventArgs.cs: Added ComVisible attribute
26225         * MouseEventArgs.cs: Added ComVisible attribute
26226         * NavigateEventArgs.cs: Added
26227         * NavigateEventHandler.cs: Added
26228         * FeatureSupport.cs: Added
26229         * OSFeature.cs: Added
26230         * Theme.cs: Added abstract Version property to support OSFeature
26231         * ThemeWin32Classic.cs: Added Version property to
26232           support OSFeature.Themes
26233         * ProgressBar.cs: Removed OnPaintBackground override, not required since
26234           the proper styles to avoid background drawing are set, also doesn't
26235           match MS signature
26236         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
26237         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
26238         * ScrollEventArgs.cs: Added ComVisible attribute
26239         * SplitterEventArgs.cs: Added ComVisible attribute
26240         * AccessibleSelection.cs: Added Flags attribute
26241         * Appearance.cs: Added ComVisible attribute
26242         * Border3DSide.cs: Added ComVisible attribute
26243         * Border3DStyle.cs: Added ComVisible attribute
26244         * BorderStyle.cs: Added ComVisible attribute
26245         * DragAction.cs: Added ComVisible attribute
26246         * ErrorBlinkStyle.cs: Added
26247         * ScrollEventType.cs: Added ComVisible attribute
26248         * AnchorStyles.cs: Added Editor attribute
26249         * DockStyle.cs: Added Editor attribute
26250         * HorizontalAlignment.cs: Added ComVisible attribute
26251         * HelpEventArgs.cs: Added ComVisible attribute
26252         * PaintEventArgs.cs: Added IDisposable
26253
26254 2005-01-04  Peter Bartok <pbartok@novell.com>
26255
26256         * TextControl.cs: Switched Line, LineTag and Document classes to
26257           internal
26258
26259 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
26260
26261         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
26262         Simple mode, fixes, IntegralHeight, etc.
26263
26264 2005-01-04  Peter Bartok <pbartok@novell.com>
26265
26266         * TextBoxBase.cs: Using proper font variable now
26267
26268 2005-01-04  Peter Bartok <pbartok@novell.com>
26269
26270         * Form.cs (ShowDialog): Set parent to owner, if provided
26271         * GroupBox.cs: Removed unused vars
26272         * TextControl.cs:
26273           - Added GetHashCode() for Document and LineTag classes
26274           - Removed unused variables
26275           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
26276             to allow translation between continuous char position and line/pos
26277         * CheckBox.cs: Removed vars that are provided by base class
26278         * RadioButton.cs: Removed vars that are provided by base class, added
26279           new keyword where required
26280         * LinkLabel.cs: Added new keyword where required
26281         * Control.cs (WndProc): Removed unused variable
26282         * TextBoxBase.cs:
26283           - Finished SelectionLength property
26284           - Implemented SelectionStart property
26285           - Implemented Text property
26286           - Removed unused vars
26287         * MessageBox.cs: Added new keyword where required
26288         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
26289           WndProc signature
26290         * MenuAPI.cs: Added new keyword where required
26291         * ButtonBase.cs: Removed vars that are provided by base class, added
26292           new keyword where required
26293         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
26294           argument to double, to allow compiling with csc 2.0 (Atsushi ran
26295           into this)
26296         * Application.cs (Run): Now triggers the ThreadExit event
26297         * CommonDialog.cs: Added new keyword where required; now properly sets
26298           parent (owner) for dialog
26299         * XplatUIX11.cs: Commented out unused vars
26300         * StatusBar.cs: Fixed signature for Text property
26301         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
26302
26303 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
26304
26305         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
26306         TrackBar.cs, MonthCalendar.cs: remove unused vars
26307
26308 2005-01-03  Jackson Harper  <jackson@ximian.com>
26309
26310         * ThemeWin32Classic.cs:
26311         * X11Keyboard.cs: Remove unused vars.
26312
26313 2005-01-03  Peter Bartok  <pbartok@novell.com>
26314
26315         * TextBox.cs:
26316           - set_Text: Tied into TextControl
26317           - set_TextAlignment: Tied into TextControl
26318         * TextControl.cs:
26319           - Added alignment properties and implemented alignment handling
26320             and drawing (still has a bug, not generating proper expose events)
26321           - Added new Line() constructor to allow passing the line alignment
26322           - Fixed selection setting, properly handling end<start now
26323           - Added aligment considerations to RecalculateDocument()
26324         * TextBoxBase.cs:
26325           - Now properly enforces control height for single line controls
26326           - Added support for CharacterCasing
26327           - Added IsInputKey override
26328           - Fixed Keys.Enter logic
26329           - Added SetBoundsCore override
26330           - Fixed mouse selection handling
26331
26332 2005-01-03  Jackson Harper  <jackson@ximian.com>
26333
26334         * TreeView.cs:
26335           - Collapse and uncheck all nodes when CheckBoxes is disabled.
26336           - Checkboxes are always aligned to the bottom of the node,
26337           regardless of item height.
26338           - Use the node bounds to draw the text so we can center it when
26339           the item height is greater then the font height.
26340           - Node::Bounds are only the text part of the node.
26341         * TreeNode.cs: New method to combine collapsing and unchecking all
26342           nodes recursively.
26343
26344 2005-01-02  Jackson Harper  <jackson@ximian.com>
26345
26346         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
26347         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
26348         tree when a check is changed. TODO: Only refresh the checked node.
26349
26350 2004-12-30  Jackson Harper  <jackson@ximian.com>
26351
26352         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
26353         * TreeNode.cs: When collapsing make sure to never collapse the
26354         root node.
26355
26356 2004-12-29  Jackson Harper  <jackson@ximian.com>
26357
26358         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
26359         
26360 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
26361
26362         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
26363
26364 2004-12-28  Peter Bartok  <pbartok@novell.com>
26365
26366         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
26367           not yet assigned
26368
26369 2004-12-28  Peter Bartok  <pbartok@novell.com>
26370
26371         * Control.cs (WndProc): Added WM_HELP handler, now generates
26372           HelpRequested event
26373         * Form.cs: Added HelpButton property and required support code
26374         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
26375
26376 2004-12-28  Peter Bartok  <pbartok@novell.com>
26377
26378         * CommonDialog.cs:
26379           - Made DialogForm.owner variable internal
26380           - Added check to ensure owner form is set before setting
26381             owner properties in CreateParams
26382
26383 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
26384
26385         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
26386           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
26387           GetCursorPos.  Fix major visibility issues.  Rework the windowing
26388           system to support borderless/titleless windows (implements menus).
26389           Fix GetWindowPos.  Implement initial background color support for
26390           views.
26391
26392 2004-12-28  Peter Bartok  <pbartok@novell.com>
26393
26394         * Form.cs (get_CreateParams): Make sure we have an owner before using
26395           the owner variable. Implement proper default if no owner exists
26396
26397 2004-12-28  Peter Bartok  <pbartok@novell.com>
26398
26399         * In preparation for making Managed.Windows.Forms the default build target
26400           for System.Windows.Forms, the following stubbed files were added.
26401           Dialogs are currently being implemented by contributors and are only
26402           short-term place holders.
26403         * ColorDialog.cs: Initial check-in (minmal stub)
26404         * DataGrid.cs: Initial check-in (minimal stub)
26405         * DataGridLineStyle.cs: Initial check-in (minimal stub)
26406         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
26407         * DataGridTableStyle.cs: Initial check-in (minimal stub)
26408         * FontDialog.cs: Initial check-in (minimal stub)
26409         * FileDialog.cs: Initial check-in (minimal stub)
26410         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
26411         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
26412         * OpenFileDialog: Initial check-in (minimal stub)
26413         * IComponentEditorPageSite.cs: Initial check-in
26414         * Splitter.cs: Initial check-in (for Jackson)
26415         * SplitterEventArgs.cs: Initial check-in (for Jackson)
26416         * SplitterEventHandler.cs: Initial check-in (for Jackson)
26417         * TextBox.cs: Initial check-in; still needs some wiring to
26418           TextControl backend
26419         * Form.cs: Implemented ControlBox property
26420         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
26421         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
26422         * TextControl.cs: Added selection functionality; added todo header
26423         * TextBoxBase.cs:
26424           - Implemented Lines property
26425           - Implemented TextHeight property
26426           - Implemented SelectedText property
26427           - Implemented SelectionLength property
26428           - Implemented SelectAll method
26429           - Implemented ToString method
26430           - Removed and cleaned up some debug code
26431           - Implemented (still buggy) mouse text selection
26432
26433 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
26434
26435         * ComboBox.cs: Complete DropDownList implementation, fixes.
26436
26437 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
26438
26439         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
26440         * ComboBoxStyle.cs: ComboBoxStyle enum
26441         * ComboBox.cs: Initial work on ComboBox control
26442
26443 2004-12-21  Peter Bartok  <pbartok@novell.com>
26444
26445         * Control.cs (ctor, CreateParams): Moved setting of is_visible
26446           forward so that anything that creates a window gets the default,
26447           also no longer uses Visible property in CreateParams to avoid
26448           walking up the parent chain and possibly get the wrong visible
26449           status. Fixed IsVisible to no longer walk up to the parent.
26450
26451 2004-12-21  Peter Bartok  <pbartok@novell.com>
26452
26453         * Form.cs (ShowDialog): Unset modality for the proper window
26454  
26455 2004-12-20  Peter Bartok  <pbartok@novell.com>
26456
26457         * CommonDialog.cs: Initial check-in
26458
26459 2004-12-20  Peter Bartok  <pbartok@novell.com>
26460
26461         * Control.cs (Visible): Now uses the parent window instead of the
26462           client area window for the property
26463
26464         * Form.cs
26465           - ShowDialog(): Now uses the proper window for modality
26466           - The default visibility state for the form parent is now false. This
26467             will prevent the user from seeing all the changes to the form and
26468             its controls before the application hits Application.Run()
26469           - Removed some stale commented out code
26470
26471         * NativeWindow.cs:
26472           - Added FindWindow() method to have a method to check for existence
26473             of a window handle
26474           - Added ability to override default exception handling (for example
26475             when debugging with VS.Net; to do this the ExternalExceptionHandler
26476             define must be set
26477           - Removed some useless debug output
26478
26479         * XplatUIX11.cs:
26480           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
26481             not working as expected
26482           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
26483             property to allow switching back to the modal window if focus is
26484             given to another one of our windows (Application Modal)
26485           - Now only sets override_redirect if we create a window
26486             without WS_CAPTION
26487           - Moved EventMask selection before mapping of newly created window
26488             so we can catch the map event as well
26489           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
26490           - Added various Atom related DllImports
26491           - Implemented Exit() method
26492           - .ctor() : No longer shows window if WS_VISIBLE is not defined
26493             in the CreateParams
26494
26495         * MessageBox.cs: Now properly deals with the FormParent window by
26496           providing an override the FormParent CreateParams property to
26497           set as POPUP instead of OVERLAPPED window.
26498
26499 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
26500
26501         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
26502         Minor code cleanup.
26503
26504 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
26505         
26506         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
26507
26508 2004-12-18  Peter Bartok  <pbartok@novell.com>
26509
26510         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
26511           implementing SetModal() method
26512
26513 2004-12-18  Peter Bartok  <pbartok@novell.com>
26514
26515         * X11Structs.cs (XGCValues): Fixed type of function element
26516         * XplatUI.cs: Added ScrollWindow() method
26517         * XplatUIDriver.cs: Added ScrollWindow() abstract
26518         * XplatUIWin32.cs: Implemented ScrollWindow() method
26519         * XplatUIX11.cs: Implemented ScrollWindow() method
26520         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
26521
26522 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
26523
26524         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
26525         Some more keyboard support (INCOMPLETE)
26526
26527 2004-12-17  Peter Bartok  <pbartok@novell.com>
26528
26529         * TextControl.cs:
26530         - Added color attribute to line tags.
26531         - Added color argument to all functions dealing with tags
26532         - Added color argument support to various functions
26533         - Fixed miss-calculation of baseline/shift in certain circumstances
26534
26535         * TextBoxBase.cs: Added new color option to test code
26536
26537 2004-12-17  Jackson Harper  <jackson@ximian.com>
26538
26539         * TreeNode.cs:
26540         * MonthCalendar.cs: Signature fixes
26541
26542 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
26543
26544         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
26545         keyboard event moved it.  Create a new graphics context for each paint resolves this
26546
26547 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
26548
26549         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
26550         Make caret exist and go blink blink.  Initial keyboard support.
26551         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
26552         works.
26553
26554 2004-12-17  Jackson Harper  <jackson@ximian.com>
26555
26556         * XplatUIStructs.cs: Updated set of virtual keycodes.
26557         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
26558
26559 2004-12-17  Jackson Harper  <jackson@ximian.com>
26560
26561         * XplatUIX11.cs: Prune old keyboard code.
26562
26563 2004-12-17  Jackson Harper  <jackson@ximian.com>
26564
26565         * XplatUIX11.cs: When generating mouse wparams get the modifier
26566         keys from the ModifierKeys property.
26567
26568 2004-12-17  Jackson Harper  <jackson@ximian.com>
26569
26570         * X11Keyboard.cs: Send up/down input when generating
26571         messages. Remove some unused vars.
26572
26573 2004-12-17  Jackson Harper  <jackson@ximian.com>
26574
26575         * TabControl.cs:
26576         * TreeView.cs: get rid of warnings.
26577
26578 2004-12-17  Jackson Harper  <jackson@ximian.com>
26579
26580         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
26581
26582 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
26583
26584         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
26585           CheckedListBox.cs: Implementation
26586
26587 2004-12-17  Peter Bartok  <pbartok@novell.com>
26588
26589         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
26590
26591 2004-12-16  Peter Bartok  <pbartok@novell.com>
26592
26593         * TextControl.cs:
26594           - InsertCharAtCaret(): Fixed start pos fixup
26595           - CaretLine_get: No longer derives the line from the tag, the tag
26596             could be stale if lines in the document have been added or deleted
26597           - RebalanceAfterDelete(): Fixed bug in balancing code
26598           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
26599           - Line.Streamline(): Now can also elminate leading empty tags
26600           - DumpTree(): Added a few more tests and prevented exception on
26601             uninitialized data
26602           - Added Debug section for Combining lines
26603           - Delete(): Now copies all remaining properties of a line
26604           
26605         * TextBoxBase.cs:
26606           - Left mousebutton now sets the caret (and middle button still acts
26607             as formatting tester, which must go away soon)
26608           - Added Debug section for Deleting/Combining lines
26609           - Fixed calculations for UpdateView after Combining lines
26610
26611 2004-12-16  Peter Bartok  <pbartok@novell.com>
26612
26613         * TextControl.cs: Now properly aligns text on a baseline, using the
26614           new XplatUI.GetFontMetrics() method. Simplified several calculations
26615         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
26616           defined
26617
26618 2004-12-16  Peter Bartok  <pbartok@novell.com>
26619
26620         * XplatUI.cs: Added GetFontMetrics() method
26621         * XplatUIDriver.cs: Added GetFontMetrics() abstract
26622         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
26623           into libgdiplus, our private GetFontMetrics function
26624         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
26625         * XplatUIWin32.cs: Implemented GetFontMetrics() method
26626
26627 2004-12-16  Jackson Harper  <jackson@ximain.com>
26628
26629         * XplatUIStruct.cs: Add enum for dead keys
26630         * X11Keyboard.cs: Map and unmap dead keys.
26631
26632 2004-12-16  Jackson Harper  <jackson@ximian.com>
26633
26634         * X11Keyboard.cs: Detect and use the num lock mask.
26635
26636 2004-12-16  Peter Bartok  <pbartok@novell.com>
26637
26638         * Control.cs (CreateGraphics): Added check to make sure the
26639           handle of the window exists before calling Graphics.FromHwnd()
26640
26641 2004-12-16  Peter Bartok  <pbartok@novell.com>
26642
26643         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
26644           contains a lot of code that's not supposed to be there for the
26645           real thing, but required for developing/testing the textbox
26646           backend.
26647
26648 2004-12-16  Peter Bartok  <pbartok@novell.com>
26649
26650         * TextControl.cs:
26651         - Fixed Streamline method
26652         - Added FindTag method to Line
26653         - Added DumpTree method for debugging
26654         - Added DecrementLines() method for deleting lines
26655         - Fixed UpdateView to update the cursor to end-of-line on single-line
26656           updates
26657         - Added PositionCaret() method
26658         - Fixed MoveCaret(LineDown) to move into the last line, too
26659         - Added InsertChar overload
26660         - Fixed InsertChar tag offset calculations
26661         - Added DeleteChar() method
26662         - Added Combine() method for folding lines
26663         - Fixed Delete() method, no longer allocates wasted Line object and
26664           now copies all properties when swapping nodes
26665         - Delete() method now updates document line counter
26666
26667 2004-12-15  Jackson Harper  <jackson@ximian.com>
26668
26669         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
26670         * X11Keyboard.cs: Expose the currently selected modifier keys
26671         through a property.
26672
26673 2004-12-15  Peter Bartok  <pbartok@novell.com>
26674
26675         * TextControl.cs: Initial check-in. Still incomplete
26676
26677 2004-12-15  Jackson Harper  <jackson@ximian.com>
26678
26679         * TreeNode.cs:
26680         * TreeView.cs: Fix build on csc (second time today ;-))
26681
26682 2004-12-15  Jackson Harper  <jackson@ximian.com>
26683
26684         * TreeView.cs: Store the treenodes plus/minus box bounds when it
26685         is calculated and use this for click testing.
26686         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
26687
26688 2004-12-15  Jackson Harper  <jackson@ximian.com>
26689
26690         * TreeView.cs: Pass the nodes image index to the image list when
26691         drawing that image.
26692
26693 2004-12-15  Jackson Harper  <jackson@ximian.com>
26694
26695         * X11Keyboard.cs: Set messages hwnd.
26696         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
26697         post_message calls.
26698
26699 2004-12-15  Jackson Harper  <jackson@ximian.com>
26700
26701         * X11Keyboard.cs: Fix to compile with csc.
26702         
26703 2004-12-15  Jackson Harper  <jackson@ximian.com>
26704
26705         * X11Structs.cs: Add key mask values
26706         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
26707         * X11Keyboard.cs: New file - Extrapolates and interpolates key
26708         down/up foo into WM_CHAR foo
26709         * KeyboardLayouts.cs: Common keyboard layouts
26710         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
26711         post messages into the main queue.
26712
26713 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
26714
26715         * Button.cs: implement ProcessMnemonic
26716         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
26717           brushes everytime
26718         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
26719         * ButtonBase.cs: Show HotkeyPrefix (not the &)
26720
26721 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
26722         
26723         * MonthCalendar.cs: Implemented click-hold for next/previous month
26724           and date selection
26725           
26726 2004-12-11  Peter Bartok  <pbartok@novell.com>
26727
26728         * X11Structs.cs:
26729           - Added XKeyboardState (moved from XplatUIX11.cs)
26730           - Added XCreateGC related enums and structures
26731           - Added GXFunction for XSetFunction
26732
26733         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
26734
26735         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
26736           CaretVisible() calls
26737
26738         * ToolTip.cs: Added code to prevent stealing focus from app windows
26739
26740         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
26741           DestroyCaret, SetCaretPos and CaretVisible)
26742
26743         * XplatUIX11.cs:
26744           - Added implementation for caret functions
26745           - Moved hover variables into a struct, to make it a bit easier
26746             on the eyes and to debug
26747           - Removed XKeyboardState (moved to XplatUIX11.cs)
26748           - Moved Keyboard properties into the properties region
26749
26750         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
26751           call to get a graphics context for our control
26752
26753         * XplatUIOSX.cs: Added empty overrides for the new caret functions
26754
26755         * TreeView.cs: Fixed bug. No matter what color was set it would always
26756           return SystemColors.Window
26757
26758         * XplatUIWin32.cs: Implemented caret overrides
26759
26760 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
26761
26762         * ListBox.cs: fire events, implement missing methods and properties,
26763         sorting.
26764
26765 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
26766
26767         * MonthCalendar.cs: invalidation bug fixing
26768         * ThemeWin32Classic.cs: paint fixing
26769
26770 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
26771
26772         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
26773         prepare the CGContextRef there now.
26774
26775 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
26776
26777         * MonthCalendar.cs:
26778           - optimisationL only invalidate areas that have changed
26779         * ThemeWin32Classic.cs:
26780           - only paint parts that intersect with clip_area
26781
26782 2004-12-09  Peter Bartok  <pbartok@novell.com>
26783
26784         * Application.cs: Undid changes from r37004 which cause problems
26785         on X11
26786
26787 2004-12-09  Ravindra  <rkumar@novell.com>
26788
26789         * ToolBar.cs: Added support for displaying ContextMenu
26790         attached to a button on ToolBar.
26791         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
26792         property.
26793
26794 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
26795
26796         * Label.cs: autosize works in text change and removes unnecessary
26797         invalidate
26798
26799 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
26800
26801         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
26802         remove warnings
26803
26804 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
26805
26806         * XplatUIOSX.cs: Added mouse move/click/grab support
26807         Remove some debugging WriteLines not needed anymore.
26808         Add window resizing/positioning.
26809         Fix visibility on reparenting.
26810
26811 2004-12-08  Peter Bartok  <pbartok@novell.com>
26812
26813         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
26814
26815 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
26816
26817         * XplatUIOSX.cs: Initial checkin
26818         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
26819
26820 2004-12-03  Ravindra <rkumar@novell.com>
26821
26822         * ListView.cs: Added some keybindings and fixed scrolling.
26823         ScrollBars listen to ValueChanged event instead of Scroll
26824         Event. This would let us take care of all changes being
26825         done in the scrollbars' values programmatically or manually.
26826         * ListView.cs (CanMultiselect): Added a check for shift key.
26827         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
26828         * ListViewItem.cs (Clone): Fixed. We need to make a copy
26829         of ListViewSubItemCollection as well.
26830
26831 2004-12-06  Peter Bartok <pbartok@novell.com>
26832
26833         * Control.cs (Parent): Added check and exception to prevent
26834         circular parenting
26835
26836 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
26837
26838         * ListBox.cs: implemented clipping, selection single and multiple,
26839         bug fixing
26840
26841 2004-12-03  Ravindra <rkumar@novell.com>
26842
26843         * ListView.cs (ListView_KeyDown):
26844         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
26845         when CTRL key is pressed.
26846         * ListViewItem.cs (Selected): Fixed setting the property.
26847
26848 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
26849
26850         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
26851
26852         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
26853         MinimizeBox, ShowInTaskbar, TopMost properties.
26854
26855         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
26856         will be implemented).
26857
26858 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
26859
26860         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
26861
26862         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
26863         tests.
26864         
26865         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
26866         
26867         * TreeView.cs: BackColor is Colors.Window.
26868
26869 2004-12-01  Jackson Harper  <jackson@ximian.com>
26870
26871         * TreeView.cs: When resizing the tree if the user is making it
26872         smaller we don't get expose events, so we need to handle adding
26873         the horizontal scrollbar in the size changed handler as well as
26874         the expose handler.
26875
26876 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
26877
26878         * DrawItemState.cs: fixes wrong enum values
26879
26880 2004-12-01  Jackson Harper  <jackson@ximian.com>
26881
26882         * TreeView.cs: Resize the hbar as well as the vbar on resize.
26883
26884 2004-12-01  Jackson Harper  <jackson@ximian.com>
26885
26886         * NodeLabelEditEventArgs.cs:
26887         * NodeLabelEditEventHandler.cs:
26888         * OpenTreeNodeEnumerator.cs:
26889         * TreeNode.cs:
26890         * TreeNodeCollection.cs:
26891         * TreeView.cs:
26892         * TreeViewAction.cs:
26893         * TreeViewCancelEventArgs.cs:
26894         * TreeViewCancelEventHandler.cs:
26895         * TreeViewEventArgs.cs:
26896         * TreeViewEventHandler.cs: Initial implementation.
26897
26898 2004-12-01  Ravindra <rkumar@novell.com>
26899
26900         * ListView.cs (CalculateListView): Fixed scrolling related
26901         calculations. Also, removed some debug statements from other
26902         places.
26903         * ListViewItem.cs: Changed access to 'selected' instance variable
26904         from private to internal.
26905         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
26906
26907 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
26908
26909         * ThemeWin32Classic.cs: remove cache of brush and pens for
26910         specific controls and use the global system, fixes scrollbutton
26911         bugs (for small sizes, disabled, etc)
26912         
26913         * ScrollBar.cs: does not show the thumb for very small controls
26914         (as MS) and allow smaller buttons that the regular size
26915
26916 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
26917
26918         * UpDownBase.cs: Add abstract methods for the interface.
26919         Add new virtual methods (need to be hooked up to TextEntry when it
26920         exists).
26921         Add override methods for most features.
26922         Computes the size, forces the height of the text entry.
26923
26924         * NumericUpDown.cs: Put here the current testing code.
26925
26926         * Set eol-style property on all files that do not have mixed line
26927         endings, to minimize the future problems.  There are still a few
26928         files with mixed endings, and someone should choose whether they
26929         want to move it or not.
26930
26931 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
26932
26933         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
26934         System.Colors
26935         
26936 2004-11-30  Ravindra <rkumar@novell.com>
26937
26938         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
26939         drawing and replaced use of SystemColors by theme colors.
26940         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
26941         * ListView.cs (ListViewItemCollection.Add): Throw exception when
26942         same ListViewItem is being added more than once.
26943
26944 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
26945
26946         * MonthCalendar.cs:
26947           - ControlStyles love to make the control not flicker
26948           
26949 2004-11-30  Peter Bartok  <pbartok@novell.com>
26950
26951         * CharacterCasing.cs: Added
26952
26953 2004-11-29  Peter Bartok  <pbartok@novell.com>
26954
26955         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
26956           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
26957           I am removing these files as they conflict with already completed
26958           work. While it is fantastic to get contributions to MWF, I
26959           respectfully ask that everyone please coordinate their contributions
26960           through mono-winforms-list or #mono-winforms at this time. We're
26961           explicitly avoiding stubbing and don't want controls that don't have
26962           their basic functionality implemented in svn. Please also see
26963           http://www.mono-project.com/contributing/winforms.html
26964
26965
26966 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
26967
26968         * Application.cs (ModalRun): Don't hang after exit.
26969
26970         * Theme.cs: New TreeViewDefaultSize property.
26971
26972         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
26973         with less hardcoded SystemColors constant.
26974         Implemented TreeViewDefaultSize.
26975
26976         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
26977         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
26978
26979
26980 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
26981
26982         * MonthCalendar.cs:
26983           - Fix NextMonthDate and PrevMonthDate click moving calendar
26984
26985 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
26986
26987         * MonthCalendar.cs:
26988           - Fix usage of ScrollChange Property when scrolling months
26989
26990 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
26991
26992         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
26993          - Fixes menu destroying
26994          - Support adding and removing items on already created menus
26995
26996 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
26997
26998         * MonthCalendar.cs:
26999           - Re-worked all bolded dates handling to match win32
27000         * ThemeWin32Classic.cs:
27001           - Fixed rendering with bolded dates
27002
27003 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
27004
27005         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
27006         - Horizontal scroolbar
27007         - Multicolumn
27008         - Fixes
27009
27010
27011 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
27012
27013         * MonthCalendar.cs:
27014           - Fix Usage of MaxSelectionCount from SelectionRange
27015           - Fixed Shift + Cursor Selection
27016           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
27017           - Fixed normal cursor selection to be compat with win32
27018           - Fixed Shift + Mouse Click selection
27019
27020 2004-11-24  Peter Bartok <pbartok@novell.com>
27021
27022         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
27023         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
27024         * XplatUIX11.cs:
27025           - CreatedKeyBoardMsg now updates keystate with Alt key
27026           - Added workaround for timer crash to CheckTimers, Jackson will
27027             develop a proper fix and check in later
27028           - Implemented DispatchMessage
27029           - Removed calling the native window proc from GetMessage (call
27030             now moved to DispatchMessage)
27031
27032         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
27033           the keydata (Fixes bug #69831)
27034
27035         * XplatUIWin32.cs:
27036           - (DispatchMessage): Switched to return IntPtr
27037           - Added DllImport for SetFocus
27038
27039 2004-11-24  Ravindra <rkumar@novell.com>
27040
27041         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
27042         background drawing.
27043         * ListViewItem.cs: Fixed various properties, calculations
27044         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
27045         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
27046         and some internal properties. Fixed MouseDown handler and Paint
27047         method.
27048
27049 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
27050
27051         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
27052
27053 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
27054
27055         * ContainerControl.cs: correct accidental check in of local changes
27056
27057 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
27058
27059         * ThemeWin32Classic.cs:
27060                 - Fixed Drawing Last month in grid (sometimes not showing)
27061         * MonthCalendar.cs:
27062                 - Fixed title width calculation bug (makeing title small)
27063
27064 2004-11-23  Peter Bartok <pbartok@novell.com>
27065
27066         * XplatUIX11.cs:
27067           - Added generation of WM_MOUSEHOVER event
27068           - Added missing assignment of async_method atom
27069           - Fixed WM_ERASEBKGND; now only redraws the exposed area
27070
27071 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
27072
27073         * ThemeWin32Classic.cs:
27074                 - Fixed Drawing of today circle when showtodaycircle not set
27075                 - fixed drawing of first and last month in the grid (gay dates)
27076         * MonthCalendar.cs:
27077                 - Fixed Drawing of today circle
27078                 - Fixed drawing of grady dates
27079                 - Fixed HitTest for today link when ShowToday set to false
27080                 - Fixed DefaultSize to obey ShowToday
27081
27082 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
27083
27084         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
27085         * System.Windows.Forms/Theme.cs
27086         * MonthCalendar.cs: added for MonthCalendar
27087         * SelectionRange.cs: added for MonthCalendar
27088         * Day.cs: added for MonthCalendar: added for MonthCalendar
27089         * DateRangeEventArgs.cs: added for MonthCalendar
27090         * DateRangeEventHandler.cs: added for MonthCalendar
27091
27092 2004-11-22  Ravindra <rkumar@novell.com>
27093
27094         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
27095         property.
27096
27097 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
27098
27099         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
27100         event handler.
27101         
27102         * NumericUpDown.cs: Added new implementation.
27103         * UpDownBase.cs: Added new implementation.
27104
27105         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
27106         implementations.
27107         
27108         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
27109         implementations.
27110
27111         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
27112         methods.
27113
27114 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
27115
27116         * Timer.cs  (Dispose): Should call the base dispose when
27117         overriding.
27118
27119 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
27120
27121         * ScrollBar.cs: updates thumb position when max, min or increment
27122         is changed
27123
27124 2004-11-21  Ravindra <rkumar@novell.com>
27125
27126         * ListView.cs: Implemented item selection, activation and
27127         column header style. Fixed properties to do a redraw, if
27128         required. Added support for MouseHover, DoubleClick, KeyDown
27129         and KeyUp event handling and some minor fixes.
27130         * ListViewItem.cs: Fixed constructor.
27131         * ThemeWin32Classic.cs: Improved drawing for ListView.
27132
27133 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
27134
27135         * ThemeWin32Classic.cs: initial listbox drawing code
27136         * DrawMode.cs: new enumerator
27137         * ListControl.cs: stubbed class
27138         * ListBox.cs: initial implementation
27139         * Theme.cs: new methods definitions
27140         * SelectionMode.cs: new enumerator
27141
27142 2004-11-17  Peter Bartok  <pbartok@novell.com>
27143
27144         * XplatUIWin32.cs: Added double-click events to the class style
27145         * Control.cs (WndProc):
27146           - Added handling of click-count to MouseDown/ MouseUp events.
27147           - Added handling of middle and right mouse buttons
27148           - Removed old debug code
27149
27150 2004-11-17  Jackson Harper  <jackson@ximian.com>
27151
27152         * XplatUIX11.cs: Use the new Mono.Unix namespace.
27153
27154 2004-11-17  Ravindra <rkumar@novell.com>
27155
27156         * ListView.cs: Added event handling for MouseMove/Up/Down.
27157         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
27158         * ThemeWin32Classic.cs: We need to clear the graphics context and
27159         draw column header in a proper state.
27160
27161
27162 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
27163
27164         *  Menu.cs: fixes signature
27165
27166 2004-11-16  Peter Bartok  <pbartok@novell.com>
27167
27168         * XplatUIX11.cs (GetMessage): Implemented generation of
27169           double click mouse messages
27170
27171 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
27172
27173         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
27174         not by menu
27175
27176 2004-11-11  Peter Bartok  <pbartok@novell.com>
27177
27178         * HandleData.cs: Added Visible property
27179         * XplatUIX11.cs (IsVisible): Now uses Visible property from
27180           HandleData
27181         * XplatUIX11.cs: Removed old debug leftovers
27182         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
27183         * Control.cs (WndProc): Removed old debug leftovers,
27184           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
27185           needed WM_SIZE handling
27186
27187 2004-11-11  Jackson Harper  <jackson@ximian.com>
27188
27189         * OwnerDrawPropertyBag.cs:
27190         * TreeViewImageIndexConverter.cs: Initial implementation
27191
27192 2004-11-10  Jackson Harper  <jackson@ximian.com>
27193
27194         * ThemeWin32Classic.cs:
27195         * TabControl.cs: instead of moving tabs by the slider pos just
27196         start drawing at the tab that is offset by the slider. This way
27197         scrolling always moves by exactly one tab.
27198
27199 2004-11-10  Jackson Harper  <jackson@ximian.com>
27200
27201         * TabControl.cs: You can only scroll left when the slider has
27202         already ben moved right.
27203         
27204 2004-11-10  Jackson Harper  <jackson@ximian.com>
27205
27206         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
27207         the clip area.
27208         
27209 2004-11-10  Jackson Harper  <jackson@ximian.com>
27210
27211         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
27212         clip area.
27213         
27214 2004-11-09  Jackson Harper  <jackson@ximian.com>
27215
27216         * TabControl.cs (CalcXPos): New helper method so we can determine
27217         the proper place to start drawing vertical tabs.
27218         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
27219         
27220 2004-11-09  Jackson Harper  <jackson@ximian.com>
27221
27222         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
27223         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
27224         and Bottom, left and right are illegal values for this and
27225         multiline is enabled when the alignment is set to left or right.
27226         (DrawTab): Each alignment block should draw the text itself now
27227         because Left requires special love. Also add rendering for Left
27228         aligned tabs.
27229         
27230 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
27231
27232         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
27233         does not destroy the windows, removes debugging messages
27234
27235 2004-11-09  jba  <jba-mono@optusnet.com.au>
27236
27237         * ThemeWin32Classic.cs
27238         (DrawButtonBase): Fix verticle text rect clipping in windows
27239         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
27240         rendering and incorrect text rect clipping
27241         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
27242         rendering and incorrect text rect clipping
27243         
27244 2004-11-08  Jackson Harper  <jackson@ximian.com>
27245
27246         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
27247         bottom when they are bottom aligned so the bottoms of the tabs get
27248         displayed.
27249         * TabControl.cs (DropRow): Move rows up instead of down when the
27250         tab control is bottom aligned.
27251
27252 2004-11-08 13:59  pbartok
27253
27254         * XplatUIX11.cs:
27255           - Added handling for various window styles
27256           - Added handling for popup windows
27257           - Added SetTopmost handling
27258
27259 2004-11-08 13:55  pbartok
27260
27261         * XplatUIWin32.cs:
27262           - Added argument to SetTopmost method
27263           - Fixed broken ClientToScreen function
27264
27265 2004-11-08 13:53  pbartok
27266
27267         * XplatUIStructs.cs:
27268           - Added missing WS_EX styles
27269
27270 2004-11-08 13:53  pbartok
27271
27272         * XplatUI.cs, XplatUIDriver.cs:
27273           - Added argument to SetTopmost
27274
27275 2004-11-08 13:52  pbartok
27276
27277         * X11Structs.cs:
27278           - Added XSetWindowAttributes structure
27279           - Improved XWindowAttributes structure
27280           - Added SetWindowValuemask enum
27281           - Added window creation arguments enum
27282           - Added gravity enum
27283           - Added Motif hints structure
27284           - Added various Motif flags and enums
27285           - Added PropertyMode enum for property functions
27286
27287 2004-11-08 13:50  pbartok
27288
27289         * Form.cs:
27290           - Fixed arguments for updated SetTopmost method
27291
27292 2004-11-08 13:49  pbartok
27293
27294         * ToolTip.cs:
27295           - Fixed arguments for updated SetTopmost function
27296           - Fixed usage of PointToClient
27297
27298 2004-11-08 13:44  pbartok
27299
27300         * MenuAPI.cs:
27301           - Added Clipping of children and siblings
27302
27303 2004-11-08 13:41  pbartok
27304
27305         * MainMenu.cs:
27306           - Removed SetMenuBarWindow call. We do this in Form.cs
27307
27308 2004-11-08 13:40  jackson
27309
27310         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
27311           scrolling jimmi in the correct location with bottom aligned tabs
27312
27313 2004-11-08 13:36  pbartok
27314
27315         * ContainerControl.cs:
27316           - Implemented BindingContext
27317           - Implemented ParentForm
27318
27319 2004-11-08 12:46  jackson
27320
27321         * TabControl.cs: Put bottom rendered tabs in the right location
27322
27323 2004-11-08 07:15  jordi
27324
27325         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
27326           removes dead code
27327
27328 2004-11-05 17:30  jackson
27329
27330         * TabControl.cs: When selected tabs are expanded make sure they
27331           don't go beyond the edges of the tab control
27332
27333 2004-11-05 14:57  jackson
27334
27335         * TabControl.cs: Reset show_slider so if the control is resized to
27336           a size where it is no longer needed it's not displayed anymore
27337
27338 2004-11-05 13:16  jackson
27339
27340         * TabControl.cs: Make tab pages non visible when added to the
27341           control
27342
27343 2004-11-05 12:42  jackson
27344
27345         * TabControl.cs: Implement SizeMode.FillToRight
27346
27347 2004-11-05 12:16  jackson
27348
27349         * Control.cs: Do not call CreateHandle if the handle is already
27350           created
27351
27352 2004-11-05 11:46  jackson
27353
27354         * TabControl.cs: Remove superflous call to CalcTabRows
27355
27356 2004-11-05 09:07  jackson
27357
27358         * XplatUIX11.cs: Update for Mono.Posix changes
27359
27360 2004-11-05 07:00  ravindra
27361
27362         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
27363           scrolling.
27364
27365 2004-11-04 22:47  jba
27366
27367         * ThemeWin32Classic.cs:
27368           - Fix Button rendering for FlatStyle = Flat or Popup
27369           - Fix RadioButton and CheckBox rendering when Appearance = Button
27370             (normal and flatstyle).
27371           - Correct outer rectangle color when drawing focus rectangle
27372           - Adjust button bounds to be 1 px smaller when focused
27373           - Make button not draw sunken 3d border when pushed (windows compat)
27374           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
27375           - Offset the text in RadioButton and Checkbox when being rendered as
27376           a button.
27377           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
27378           radiobuttons
27379           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
27380           - Fixed disabled text rendering for normally rendered radiobuttons
27381
27382 2004-11-04 10:26  jackson
27383
27384         * TabControl.cs: Recalculate tab rows when resizing
27385
27386 2004-11-04 07:47  jordi
27387
27388         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
27389           collection completion, drawing issues, missing features
27390
27391 2004-11-04 05:03  ravindra
27392
27393         * ScrollBar.cs:
27394                 - We need to recalculate the Thumb area when
27395                 LargeChange/maximum/minimum values are changed.
27396           - We set the 'pos' in UpdatePos() method to minimum, if it's less
27397                 than minimum. This is required to handle the case if large_change is
27398                 more than max, and use LargeChange property instead of large_change
27399                 variable.
27400           - We return max+1 when large_change is more than max, like MS does.
27401
27402 2004-11-04 04:29  ravindra
27403
27404         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
27405                 - Changed default value signatures (prefixed all with ListView).
27406                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
27407                 ListView.
27408           - Fixed calculations for ListViewItem and implemented Clone()
27409           method.
27410
27411 2004-11-04 04:26  ravindra
27412
27413         * Theme.cs, ThemeWin32Classic.cs:
27414                 - Changed default ListView values signatures (prefixed all with
27415                 ListView).
27416           - Fixed default size values for VScrollBar and HScrollBar.
27417                 - Fixed DrawListViewItem method.
27418
27419 2004-11-04 04:05  ravindra
27420
27421         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
27422
27423 2004-11-04 04:04  ravindra
27424
27425         * ImageList.cs: Implemented the missing overload for Draw method.
27426
27427 2004-11-03 19:29  jackson
27428
27429         * TabControl.cs: Handle dropping rows on selection properly
27430
27431 2004-11-03 11:59  jackson
27432
27433         * TabControl.cs: remove debug code
27434
27435 2004-11-03 11:52  jackson
27436
27437         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
27438           the scrolly widgerywoo
27439
27440 2004-11-02 13:52  jackson
27441
27442         * TabControl.cs: Resize the tab pages and tabs when the tab control
27443           is resized
27444
27445 2004-11-02 13:40  jackson
27446
27447         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
27448           selected tab to the bottom
27449
27450 2004-11-02 13:39  jackson
27451
27452         * TabPage.cs: Store the tab pages row
27453
27454 2004-11-02 12:33  jordi
27455
27456         * MenuItem.cs: fixes handle creation
27457
27458 2004-11-02 11:42  jackson
27459
27460         * TabControl.cs: signature fix
27461
27462 2004-11-02 08:56  jackson
27463
27464         * TabControl.cs: Calculate whether the tab is on an edge properly.
27465           Remove top secret debugging code
27466
27467 2004-11-01 19:57  jackson
27468
27469         * TabControl.cs: Add click handling, and proper sizing
27470
27471 2004-11-01 19:47  jackson
27472
27473         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
27474           tab controls
27475
27476 2004-11-01 19:39  jackson
27477
27478         * TabPage.cs: add internal property to store the bounds of a tab
27479           page
27480
27481 2004-10-30 04:23  ravindra
27482
27483         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
27484           values.
27485
27486 2004-10-30 04:21  ravindra
27487
27488         * ListView.cs, ListViewItem.cs: Added support for scrolling and
27489           fixed calculations.
27490
27491 2004-10-30 03:06  pbartok
27492
27493         * XplatUIX11.cs:
27494           - Removed extension of DllImported libs
27495
27496 2004-10-29 09:55  jordi
27497
27498         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
27499           navigation, itemcollection completion, menu fixes
27500
27501 2004-10-27 22:58  pbartok
27502
27503         * XplatUIX11.cs:
27504           - Now throws a nice error message when no X display could be opened
27505
27506 2004-10-26 13:51  jordi
27507
27508         * ListView.cs: removes warning
27509
27510 2004-10-26 03:55  ravindra
27511
27512         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
27513           ThemeWin32Classic.cs: Some formatting for my last checkins.
27514
27515 2004-10-26 03:36  ravindra
27516
27517         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
27518           control and default values.
27519
27520 2004-10-26 03:35  ravindra
27521
27522         * Theme.cs: Added some default values for ListView control.
27523
27524 2004-10-26 03:33  ravindra
27525
27526         * ToolBar.cs: ToolBar should use the user specified button size, if
27527           there is any. Added a size_specified flag for the same.
27528
27529 2004-10-26 03:33  ravindra
27530
27531         * ColumnHeader.cs: Added some internal members and calculations for
27532           ColumnHeader.
27533
27534 2004-10-26 03:32  ravindra
27535
27536         * ListViewItem.cs: Calculations for ListViewItem.
27537
27538 2004-10-26 03:31  ravindra
27539
27540         * ListView.cs: Added some internal members and calculations for
27541           ListView.
27542
27543 2004-10-22 13:31  jordi
27544
27545         * MenuAPI.cs: speedup menus drawing
27546
27547 2004-10-22 13:16  jackson
27548
27549         * XplatUIX11.cs: Make sure to update exposed regions when adding an
27550           expose event
27551
27552 2004-10-22 11:49  jackson
27553
27554         * Control.cs: oops
27555
27556 2004-10-22 11:41  jackson
27557
27558         * Control.cs: Check to see if the window should have its background
27559           repainted by X when drawing.
27560
27561 2004-10-22 11:31  jackson
27562
27563         * XplatUIX11.cs: When invalidating areas only use XClearArea if
27564           clear is true, this way we do not get flicker from X repainting the
27565           background
27566
27567 2004-10-22 11:28  jackson
27568
27569         * XEventQueue.cs: Queue properly
27570
27571 2004-10-21 09:38  jackson
27572
27573         * XEventQueue.cs: Fix access modifier
27574
27575 2004-10-21 09:36  jackson
27576
27577         * XEventQueue.cs: Don't loose messages
27578
27579 2004-10-21 09:22  jackson
27580
27581         * XEventQueue.cs: Don't loose messages
27582
27583 2004-10-20 04:15  jordi
27584
27585         * BootMode.cs: enum need it by SystemInfo
27586
27587 2004-10-19 21:58  pbartok
27588
27589         * XplatUIWin32.cs:
27590           - Small sanity check
27591
27592 2004-10-19 21:56  pbartok
27593
27594         * Form.cs:
27595           - Added private FormParentWindow class which acts as the container
27596             for our form and as the non-client area where menus are drawn
27597           - Added/Moved required tie-ins to Jordi's menus
27598           - Fixed/Implemented the FormStartPosition functionality
27599
27600 2004-10-19 21:52  pbartok
27601
27602         * Control.cs:
27603           - Removed unneeded locals
27604           - Added code to all size and location properties to understand and
27605             deal with the parent container of Form
27606
27607 2004-10-19 21:33  pbartok
27608
27609         * Application.cs:
27610           - Fixed to deal with new Form subclasses for menus
27611
27612 2004-10-19 17:48  jackson
27613
27614         * XEventQueue.cs: commit correct version of file
27615
27616 2004-10-19 16:50  jackson
27617
27618         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
27619
27620 2004-10-19 16:15  jordi
27621
27622         * MenuAPI.cs: MenuBarCalcSize returns the height
27623
27624 2004-10-19 08:31  pbartok
27625
27626         * Control.cs:
27627           - Added missing call to PreProcessMessage before calling OnXXXKey
27628           methods
27629
27630 2004-10-19 00:04  ravindra
27631
27632         * ToolTip.cs: Fixed constructor.
27633
27634 2004-10-18 09:31  jordi
27635
27636         * MenuAPI.cs: menuitems in menubars do not have shortcuts
27637
27638 2004-10-18 09:26  jordi
27639
27640         * MenuItem.cs: fixes MenuItem class signature
27641
27642 2004-10-18 08:56  jordi
27643
27644         * MenuAPI.cs: prevents windows from showing in the taskbar
27645
27646 2004-10-18 00:28  ravindra
27647
27648         * ToolTip.cs: Suppressed a warning message.
27649
27650 2004-10-18 00:27  ravindra
27651
27652         * Control.cs: Default value of visible property must be true.
27653
27654 2004-10-17 23:19  pbartok
27655
27656         * ToolTip.cs:
27657           - Complete implementation
27658
27659 2004-10-17 23:19  pbartok
27660
27661         * XplatUIX11.cs:
27662           - Added EnableWindow method
27663           - Added SetModal stub
27664           - Added generation of WM_ACTIVATE message (still needs testing)
27665           - Added SetTopMost stub
27666           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
27667
27668 2004-10-17 23:17  pbartok
27669
27670         * XplatUIWin32.cs:
27671           - Removed VirtualKeys to XplatUIStructs
27672           - Implemented SetTopMost method
27673           - Implemented EnableWindow method
27674           - Bugfix in ScreenToClient()
27675           - Bugfixes in ClientToScreen()
27676
27677 2004-10-17 22:51  pbartok
27678
27679         * XplatUIStructs.cs:
27680           - Added WS_EX styles to WindowStyles enumeration
27681
27682 2004-10-17 22:50  pbartok
27683
27684         * XplatUI.cs, XplatUIDriver.cs:
27685           - Added method for enabling/disabling windows
27686           - Added method for setting window modality
27687           - Added method for setting topmost window
27688
27689 2004-10-17 22:49  pbartok
27690
27691         * ThemeWin32Classic.cs:
27692           - Added ToolTip drawing code
27693
27694 2004-10-17 22:49  pbartok
27695
27696         * Theme.cs:
27697           - Added ToolTip abstracts
27698
27699 2004-10-17 22:47  pbartok
27700
27701         * Form.cs:
27702           - Fixed Form.ControlCollection to handle owner relations
27703           - Added Owner/OwnedForms handling
27704           - Implemented Z-Ordering for owned forms
27705           - Removed unneeded private overload of ShowDialog
27706           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
27707             so I hope)
27708           - Fixed Close(), had wrong default
27709           - Added firing of OnLoad event
27710           - Added some commented out debug code for Ownership handling
27711
27712 2004-10-17 22:16  pbartok
27713
27714         * Control.cs:
27715           - Fixed/implemented flat list of controls
27716
27717 2004-10-17 22:14  pbartok
27718
27719         * Application.cs:
27720           - Added code to simulate modal dialogs on Win32
27721
27722 2004-10-17 16:11  jordi
27723
27724         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
27725           mouse event
27726
27727 2004-10-17 13:39  jordi
27728
27729         * MenuAPI.cs: menu drawing fixes
27730
27731 2004-10-15 09:10  ravindra
27732
27733         * StructFormat.cs: General Enum.
27734
27735 2004-10-15 09:09  ravindra
27736
27737         * SizeGripStyle.cs: Enum for Form.
27738
27739 2004-10-15 09:08  ravindra
27740
27741         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
27742           in Theme for ListView.
27743
27744 2004-10-15 09:06  ravindra
27745
27746         * ColumnHeader.cs: Flushing some formatting changes.
27747
27748 2004-10-15 09:05  ravindra
27749
27750         * ListViewItem.cs: Implemented GetBounds method and fixed coding
27751           style.
27752
27753 2004-10-15 09:03  ravindra
27754
27755         * ListView.cs: Implemented Paint method and fixed coding style.
27756
27757 2004-10-15 07:34  jordi
27758
27759         * MenuAPI.cs: fix for X11
27760
27761 2004-10-15 07:32  ravindra
27762
27763         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
27764                 - Renamed Paint() method to Draw() for clarity. Also, moved
27765                 DrawImage() to OnPaint().
27766
27767 2004-10-15 07:25  ravindra
27768
27769         * CheckBox.cs, RadioButton.cs:
27770                 - Removed Redraw (), we get it from ButtonBase.
27771                 - Implemented Paint (), to do class specific painting.
27772
27773 2004-10-15 07:16  ravindra
27774
27775         * ButtonBase.cs:
27776                 - Redraw () is not virtual now.
27777                 - Added an internal virtual method Paint (), so that
27778                 derived classes can do their painting on their own.
27779                 - Modified OnPaint () to call Paint ().
27780
27781 2004-10-15 06:43  jordi
27782
27783         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
27784           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
27785
27786 2004-10-15 00:30  ravindra
27787
27788         * MessageBox.cs:
27789                 - MessageBox on windows does not have min/max buttons.
27790                 This change in CreateParams fixes this on Windows. We
27791                 still need to implement this windowstyle behavior in
27792                 our X11 driver.
27793
27794 2004-10-14 05:14  ravindra
27795
27796         * ToolBar.cs:
27797                 - Changed Redraw () to do a Refresh () always.
27798                 - Fixed the MouseMove event handling when mouse is pressed,
27799                 ie drag event handling.
27800                 - Replaced the usage of ToolBarButton.Pressed property to
27801                 ToolBarButton.pressed internal variable.
27802
27803 2004-10-14 05:10  ravindra
27804
27805         * ToolBarButton.cs:
27806                 - Added an internal member 'inside' to handle mouse move
27807                 with mouse pressed ie mouse drag event.
27808                 - Changed 'Pressed' property to return true only when
27809                 'inside' and 'pressed' are both true.
27810                 - Some coding style love.
27811
27812 2004-10-14 00:17  ravindra
27813
27814         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
27815           public method.
27816
27817 2004-10-14 00:15  ravindra
27818
27819         * ButtonBase.cs: Redraw () related improvements.
27820
27821 2004-10-14 00:14  ravindra
27822
27823         * MessageBox.cs: Moved InitFormSize () out of Paint method and
27824           removed unnecessary calls to Button.Show () method.
27825
27826 2004-10-13 17:50  pbartok
27827
27828         * XplatUIX11.cs:
27829           - Formatting fix
27830           - Removed destroying of window until we solve the problem of X
27831             destroying the window before us on shutdown
27832
27833 2004-10-13 16:32  pbartok
27834
27835         * ButtonBase.cs:
27836           - Now Redraws on MouseUp for FlatStyle Flat and Popup
27837
27838 2004-10-13 14:18  pbartok
27839
27840         * XplatUIX11.cs:
27841           - Added code to destroy the X window
27842
27843 2004-10-13 14:18  pbartok
27844
27845         * XplatUIWin32.cs:
27846           - Added code to destroy a window
27847
27848 2004-10-13 14:12  pbartok
27849
27850         * ButtonBase.cs:
27851           - Added the Redraw on Resize that got dropped in the last rev
27852
27853 2004-10-13 09:06  pbartok
27854
27855         * ThemeWin32Classic.cs:
27856           - Path from John BouAntoun:
27857             * Fix check rendering (centre correctly for normal style, offset
27858               correctly for FlatStyle).
27859             * Fix border color usage (use backcolor) for FlatStyle.Popup
27860             * Use checkbox.Capture instead of checkbox.is_pressed when
27861               rendering flatstyle states.
27862
27863 2004-10-12 21:48  pbartok
27864
27865         * ThemeWin32Classic.cs:
27866           - Removed all occurences of SystemColors and replaced them with the
27867             matching theme color
27868
27869 2004-10-12 21:41  pbartok
27870
27871         * ThemeWin32Classic.cs:
27872           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
27873             him using the function for flatstyle drawing
27874           - Changed functions to use the new version of CPDrawBorder3D
27875
27876 2004-10-12 21:15  pbartok
27877
27878         * ControlPaint.cs:
27879           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
27880             match MS documentation. They need to return defined colors if the
27881             passed color matches the configured control color. Thanks to John
27882             BouAntoun for pointing this out.
27883
27884 2004-10-12 20:57  pbartok
27885
27886         * Control.cs:
27887           - Fix from John BouAntoun: Raise ForeColorChanged event when text
27888             color is changed
27889
27890 2004-10-12 20:46  pbartok
27891
27892         * CheckBox.cs:
27893           - Fix from John BouAntoun: Now properly sets the Appearance property
27894
27895 2004-10-12 20:45  pbartok
27896
27897         * ThemeWin32Classic.cs:
27898           - Fixes from John BouAntoun: now handles forecolors and backcolors
27899             for flatstyle rendered controls much better; It also fixes normal
27900             checkbox rendering when pushed or disabled.
27901
27902 2004-10-08 02:50  jordi
27903
27904         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
27905           work
27906
27907 2004-10-07 08:56  jordi
27908
27909         * ThemeWin32Classic.cs: Removes deletion of cached brushes
27910
27911 2004-10-06 03:59  jordi
27912
27913         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
27914           XplatUIWin32.cs: removes warnings from compilation
27915
27916 2004-10-05 12:23  jackson
27917
27918         * RadioButton.cs: Fix ctor
27919
27920 2004-10-05 11:10  pbartok
27921
27922         * MessageBox.cs:
27923           - Partial implementation by Benjamin Dasnois
27924
27925 2004-10-05 10:15  jackson
27926
27927         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
27928           by John BouAntoun
27929
27930 2004-10-05 03:07  ravindra
27931
27932         * ToolBar.cs:
27933                 - Removed a private method, Draw ().
27934                 - Fixed the ButtonDropDown event handling.
27935                 - Fixed MouseMove event handling.
27936
27937 2004-10-05 03:04  ravindra
27938
27939         * ThemeWin32Classic.cs:
27940                 - Added DrawListView method and ListViewDefaultSize property.
27941                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
27942                 - Changed DOS style CRLF to Unix format (dos2unix).
27943
27944 2004-10-05 03:03  ravindra
27945
27946         * Theme.cs:
27947                 - Added DrawListView method and ListViewDefaultSize property.
27948
27949 2004-10-05 02:42  ravindra
27950
27951         * ToolBarButton.cs: Added an internal member dd_pressed to handle
27952           clicks on DropDown arrow.
27953
27954 2004-10-04 22:56  jackson
27955
27956         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
27957           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
27958           Control handle the buffers, derived classes should not have to
27959           CreateBuffers themselves.
27960
27961 2004-10-04 21:20  jackson
27962
27963         * StatusBar.cs: The control handles resizing the buffers now.
27964
27965 2004-10-04 21:18  jackson
27966
27967         * Control.cs: When resizing the buffers should be invalidated. This
27968           should be handled in Control not in derived classes.
27969
27970 2004-10-04 14:45  jackson
27971
27972         * TabPage.cs: oops
27973
27974 2004-10-04 02:14  pbartok
27975
27976         * LeftRightAlignment.cs:
27977           - Initial check-in
27978
27979 2004-10-04 01:09  jordi
27980
27981         * ThemeWin32Classic.cs: fixes right button position causing right
27982           button not showing on horizontal scrollbars
27983
27984 2004-10-02 13:12  pbartok
27985
27986         * XplatUIX11.cs:
27987           - Simplified the Invalidate method by using an X call instead of
27988             generating the expose ourselves
27989           - Added an expose when the window background is changed
27990           - Implemented ClientToScreen method
27991
27992 2004-10-02 13:08  pbartok
27993
27994         * XplatUIWin32.cs:
27995           - Added Win32EnableWindow method (test for implementing modal
27996           dialogs)
27997           - Added ClientToScreen method and imports
27998
27999 2004-10-02 13:07  pbartok
28000
28001         * XplatUI.cs, XplatUIDriver.cs:
28002           - Added ClientToScreen coordinate translation method
28003
28004 2004-10-02 13:06  pbartok
28005
28006         * KeyPressEventArgs.cs:
28007           - Fixed access level for constructor
28008
28009 2004-10-02 13:06  pbartok
28010
28011         * NativeWindow.cs:
28012           - Changed access level for the window_collection hash table
28013
28014 2004-10-02 13:05  pbartok
28015
28016         * Form.cs:
28017           - Added KeyPreview property
28018           - Added Menu property (still incomplete, pending Jordi's menu work)
28019           - Implemented ProcessCmdKey
28020           - Implemented ProcessDialogKey
28021           - Implemented ProcessKeyPreview
28022
28023 2004-10-02 13:02  pbartok
28024
28025         * Control.cs:
28026           - Added private method to get the Control object from the window
28027           handle
28028           - Implemented ContextMenu property
28029           - Implemented PointToScreen
28030           - Implemented PreProcessMessage
28031           - Implemented IsInputChar
28032           - Implemented IsInputKey
28033           - Implemented ProcessCmdKey
28034           - Completed ProcessKeyEventArgs
28035           - Fixed message loop to call the proper chain of functions on key
28036           events
28037           - Implemented ProcessDialogChar
28038           - Implemented ProcessDialogKey
28039           - Implemented ProcessKeyMessage
28040           - Implemented ProcessKeyPreview
28041           - Added RaiseDragEvent stub (MS internal method)
28042           - Added RaiseKeyEvent stub (MS internal method)
28043           - Added RaiseMouseEvent stub (MS Internal method)
28044           - Added RaisePaintEvent stub (MS Internal method)
28045           - Added ResetMouseEventArgs stub (MS Internal method)
28046           - Implemented RtlTranslateAlignment
28047           - Implemented RtlTranslateContent
28048           - Implemented RtlTranslateHorizontal
28049           - Implemented RtlTranslateLeftRight
28050           - Added generation of KeyPress event
28051
28052 2004-10-02 05:57  ravindra
28053
28054         * ListViewItem.cs: Added attributes.
28055
28056 2004-10-02 05:32  ravindra
28057
28058         * ListView.cs: Added attributes.
28059
28060 2004-10-01 11:53  jackson
28061
28062         * Form.cs: Implement the Close method so work on MessageBox can
28063           continue.
28064
28065 2004-09-30 14:06  pbartok
28066
28067         * XplatUIX11.cs:
28068           - Bug fixes
28069
28070 2004-09-30 11:34  jackson
28071
28072         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
28073
28074 2004-09-30 07:26  ravindra
28075
28076         * ListViewItemConverter.cs: Converter for ListViewItem.
28077
28078 2004-09-30 07:26  ravindra
28079
28080         * SortOrder.cs: Enum for ListView control.
28081
28082 2004-09-30 07:25  ravindra
28083
28084         * ColumnHeader.cs: Supporting class for ListView control.
28085
28086 2004-09-30 07:24  ravindra
28087
28088         * ListView.cs, ListViewItem.cs: Initial implementation.
28089
28090 2004-09-30 07:20  ravindra
28091
28092         * ItemActivation.cs: Enum for ListView Control.
28093
28094 2004-09-29 20:29  pbartok
28095
28096         * XplatUIX11.cs:
28097           - Added lookup of pixel value for background color; tries to get a
28098             color 'close' to the requested color, it avoids having to create a
28099             colormap.  Depending on the display this could mean the used color
28100             is slightly off the desired color. Might have to change it to a more
28101             resource intensive colormap approach, but it will work as a
28102           workaround to avoid red screens.
28103
28104 2004-09-29 14:27  jackson
28105
28106         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
28107
28108 2004-09-28 12:44  pbartok
28109
28110         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
28111           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
28112           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
28113           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
28114           TrackBar.cs, VScrollBar.cs:
28115           - Streamlined Theme interfaces:
28116             * Each DrawXXX method for a control now is passed the object for
28117               the control to be drawn in order to allow accessing any state the
28118               theme might require
28119
28120             * ControlPaint methods for the theme now have a CP prefix to avoid
28121               name clashes with the Draw methods for controls
28122
28123             * Every control now retrieves it's DefaultSize from the current
28124             theme
28125
28126 2004-09-28 12:17  jackson
28127
28128         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
28129           drawing
28130
28131 2004-09-24 14:57  jackson
28132
28133         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
28134           Gives us a nice little performance boost.
28135
28136 2004-09-24 12:02  jackson
28137
28138         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
28139           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
28140           Control and supporting classes. Initial checkin
28141
28142 2004-09-23 13:08  jackson
28143
28144         * Form.cs: Temp build fixage
28145
28146 2004-09-23 01:39  ravindra
28147
28148         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
28149           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
28150           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
28151           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
28152           EventHandlers needed by ListView Control.
28153
28154 2004-09-22 14:12  pbartok
28155
28156         * ScrollableControl.cs:
28157           - Implemented DockPadding property
28158           - Implemented AutoScroll property
28159           - Implemented AutoScrollMargin property
28160           - Implemented AutoScrollMinSize property
28161           - Implemented AutoScrollPosition property
28162           - Implemented DisplayRectangle property (still incomplete)
28163           - Implemented CreateParams property
28164           - Implemented HScroll property
28165           - Implemented VScroll property
28166           - Implemented OnVisibleChanged property
28167
28168 2004-09-22 14:09  pbartok
28169
28170         * Form.cs:
28171           - Added Form.ControllCollection class
28172           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
28173             RemoveOwnedForm (still incomplete, missing on-top and common
28174             minimize/maximize behaviour)
28175           - Added StartPosition property (still incomplete, does not use when
28176             creating the form)
28177           - Added ShowDialog() methods (still incomplete, missing forcing the
28178             dialog modal)
28179
28180 2004-09-22 14:05  pbartok
28181
28182         * Application.cs:
28183           - Added message loop for modal dialogs
28184
28185 2004-09-22 14:02  pbartok
28186
28187         * GroupBox.cs:
28188           - Fixed wrong types for events
28189
28190 2004-09-22 14:00  pbartok
28191
28192         * Shortcut.cs, FormWindowState.cs:
28193           - Fixed wrong values
28194
28195 2004-09-22 12:01  jackson
28196
28197         * Control.cs: Text is never null
28198
28199 2004-09-20 22:14  pbartok
28200
28201         * XplatUIWin32.cs:
28202           - Fixed accessibility level for Idle handler
28203
28204 2004-09-20 18:54  jackson
28205
28206         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28207           XplatUIX11.cs: New message loop that uses poll so we don't get a
28208           busy loop
28209
28210 2004-09-17 10:43  pbartok
28211
28212         * ScrollBar.cs:
28213           - Fixed behaviour of arrow buttons. Now properly behaves like
28214             Buttons (and like Microsoft's scrollbar arrow buttons)
28215
28216 2004-09-17 10:14  pbartok
28217
28218         * ScrollBar.cs:
28219           - Added missing release of keyboard/mouse capture
28220
28221 2004-09-17 06:18  jordi
28222
28223         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
28224           Theme.cs: Very early menu support
28225
28226 2004-09-16 17:45  pbartok
28227
28228         * XplatUIWin32.cs:
28229           - Fixed sending a window to the front
28230           - Added overload for SetWindowPos to avoid casting
28231
28232 2004-09-16 17:44  pbartok
28233
28234         * Control.cs:
28235           - Added SendToBack and BringToFront methods
28236
28237 2004-09-16 07:00  ravindra
28238
28239         * Copyright: Added Novell URL.
28240
28241 2004-09-16 07:00  ravindra
28242
28243         * ToolBar.cs: Invalidate should be done before redrawing.
28244
28245 2004-09-15 21:19  ravindra
28246
28247         * ColumnHeaderStyle.cs: Enum for ListView Control.
28248
28249 2004-09-15 21:18  ravindra
28250
28251         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
28252           ListView Control.
28253
28254 2004-09-13 18:26  jackson
28255
28256         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
28257           properly
28258
28259 2004-09-13 18:13  jackson
28260
28261         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
28262           a second thread and post messages into the main threads message
28263           queue. This makes timing much more consistent. Both win2K and XP
28264           have a minimum timer value of 15 milliseconds, so we now do this
28265           too.
28266
28267 2004-09-13 15:18  pbartok
28268
28269         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28270           XplatUIX11.cs:
28271           - Added Z-Ordering methods
28272
28273 2004-09-13 10:56  pbartok
28274
28275         * Form.cs:
28276           - Fixed #region names
28277           - Moved properties and methods into their proper #regions
28278
28279 2004-09-13 10:51  pbartok
28280
28281         * Form.cs:
28282           - Added Accept and CancelButton properties
28283           - Added ProcessDialogKey() method
28284
28285 2004-09-13 08:18  pbartok
28286
28287         * IWindowTarget.cs:
28288           - Initial check-in
28289
28290 2004-09-10 21:50  pbartok
28291
28292         * Control.cs:
28293           - Added DoDragDrop() [incomplete]
28294           - Properly implemented 'Visible' handling
28295           - Added SetVisibleCore()
28296           - Implemented FindChildAtPoint()
28297           - Implemented GetContainerControl()
28298           - Implemented Hide()
28299
28300 2004-09-10 19:28  pbartok
28301
28302         * Control.cs:
28303           - Moved methods into their appropriate #regions
28304           - Reordered methods within regions alphabetically
28305
28306 2004-09-10 18:57  pbartok
28307
28308         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
28309           - Added method to retrieve text from window
28310
28311 2004-09-10 18:56  pbartok
28312
28313         * Control.cs:
28314           - Moved some internal functions into the internal region
28315           - Implemented FontHeight
28316           - Implemented RenderRightToLeft
28317           - Implemented ResizeRedraw
28318           - Implemented ShowFocusCues
28319           - Implemented ShowKeyboardCues
28320           - Implemented FromChildHandle
28321           - Implemented FromHandle
28322           - Implemented IsMnemonic
28323           - Implemented ReflectMessage
28324           - All public and protected Static Methods are now complete
28325
28326 2004-09-10 16:54  pbartok
28327
28328         * Control.cs:
28329           - Implemented remaining missing public instance properties
28330           - Alphabetized some out of order properties
28331
28332 2004-09-10 05:51  ravindra
28333
28334         * PictureBox.cs: Added a check for null image.
28335
28336 2004-09-10 00:59  jordi
28337
28338         * GroupBox.cs: remove cvs tag
28339
28340 2004-09-09 05:25  ravindra
28341
28342         * ToolBar.cs: Make redraw accessible from ToolBarButton.
28343
28344 2004-09-09 05:23  ravindra
28345
28346         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
28347           parent redraw.
28348
28349 2004-09-09 02:28  pbartok
28350
28351         * ThemeWin32Classic.cs:
28352           - Improve disabled string look
28353
28354 2004-09-09 01:15  jordi
28355
28356         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
28357           args and handler
28358
28359 2004-09-08 23:56  ravindra
28360
28361         * ItemBoundsPortion.cs: It's enum, not a class!
28362
28363 2004-09-08 23:47  ravindra
28364
28365         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
28366           Enums for Form.
28367
28368 2004-09-08 21:13  ravindra
28369
28370         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
28371           ListView control.
28372
28373 2004-09-08 21:03  ravindra
28374
28375         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
28376           avoid crash.
28377
28378 2004-09-08 21:01  ravindra
28379
28380         * ScrollableControl.cs: Removed unreachable code.
28381
28382 2004-09-08 06:45  jordi
28383
28384         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
28385
28386 2004-09-08 01:00  jackson
28387
28388         * XplatUIX11.cs: Only run the timers when updating the message
28389           queue. This effectively gives X messages a higher priority then
28390           timer messages. Timers still need love though
28391
28392 2004-09-07 14:01  jackson
28393
28394         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
28395           this for us and the handle is no longer valid.
28396
28397 2004-09-07 13:59  jackson
28398
28399         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
28400           loop that manages to not crash. TODO: Add poll and cleanup timers
28401
28402 2004-09-07 11:12  jordi
28403
28404         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
28405
28406 2004-09-07 03:40  jordi
28407
28408         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
28409           fixes, methods, multiple links
28410
28411 2004-09-06 06:55  jordi
28412
28413         * Control.cs: Caches ClientRectangle rectangle value
28414
28415 2004-09-05 02:03  jordi
28416
28417         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
28418           certain situations
28419
28420 2004-09-04 11:10  jordi
28421
28422         * Label.cs: Refresh when font changed
28423
28424 2004-09-02 16:24  pbartok
28425
28426         * Control.cs:
28427           - Added sanity check to creation of double buffer bitmap
28428
28429 2004-09-02 16:24  pbartok
28430
28431         * ButtonBase.cs:
28432           - Fixed selection of text color
28433           - Fixed handling of resize event; now properly recreates double
28434             buffering bitmap
28435           - Added missing assignment of TextAlignment
28436           - Added proper default for TextAlignment
28437
28438 2004-09-02 14:26  pbartok
28439
28440         * RadioButton.cs:
28441           - Added missing RadioButton.RadioButtonAccessibleObject class
28442
28443 2004-09-02 14:26  pbartok
28444
28445         * Control.cs:
28446           - Added missing Control.ControlAccessibleObject class
28447           - Started to implement Select()ion mechanisms, still very incomplete
28448
28449 2004-09-02 14:25  pbartok
28450
28451         * AccessibleObject.cs:
28452           - Added missing methods
28453
28454 2004-09-02 14:23  pbartok
28455
28456         * AccessibleNavigation.cs, AccessibleSelection.cs:
28457           - Initial check-in
28458
28459 2004-09-02 10:32  jordi
28460
28461         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
28462           pool for pens, brushes, and hatchbruses
28463
28464 2004-09-01 15:30  jackson
28465
28466         * StatusBar.cs: Fix typo
28467
28468 2004-09-01 14:44  pbartok
28469
28470         * RadioButton.cs:
28471           - Fixed state
28472
28473 2004-09-01 14:39  pbartok
28474
28475         * Button.cs, RadioButton.cs:
28476           - Functional initial check-in
28477
28478 2004-09-01 14:01  pbartok
28479
28480         * CheckBox.cs:
28481           - Added missing default
28482           - Added missing region mark
28483
28484 2004-09-01 09:10  jordi
28485
28486         * Label.cs: fixes method signatures, new methods, events, fixes
28487           autosize
28488
28489 2004-09-01 07:19  jordi
28490
28491         * Control.cs: Init string variables with an empty object
28492
28493 2004-09-01 04:20  jordi
28494
28495         * Control.cs: fires OnFontChanged event
28496
28497 2004-08-31 20:07  pbartok
28498
28499         * ButtonBase.cs:
28500           - Enabled display of strings
28501
28502 2004-08-31 20:05  pbartok
28503
28504         * Form.cs:
28505           - Added (partial) implementation of DialogResult; rest needs to be
28506             implemented when the modal loop code is done
28507
28508 2004-08-31 19:55  pbartok
28509
28510         * CheckBox.cs:
28511           - Fixed to match the removal of the needs_redraw concept
28512
28513 2004-08-31 19:55  pbartok
28514
28515         * ButtonBase.cs:
28516           - Removed the rather odd split between 'needs redraw' and redrawing
28517           - Now handles the events that require regeneration (ambient
28518             properties and size)
28519
28520 2004-08-31 19:41  pbartok
28521
28522         * Control.cs:
28523           - Added firing of BackColorChanged event
28524           - Added TopLevelControl property
28525           - Fixed handling of WM_ERASEBKGRND message
28526
28527 2004-08-31 12:49  pbartok
28528
28529         * ButtonBase.cs:
28530           - Removed debug
28531           - Minor fixes
28532
28533 2004-08-31 12:48  pbartok
28534
28535         * CheckBox.cs:
28536           - Finished (famous last words)
28537
28538 2004-08-31 04:35  jordi
28539
28540         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
28541           scrolling bugs, adds new methods
28542
28543 2004-08-30 14:42  pbartok
28544
28545         * CheckBox.cs:
28546           - Implemented CheckBox drawing code
28547
28548 2004-08-30 14:42  pbartok
28549
28550         * ButtonBase.cs:
28551           - Made Redraw() and CheckRedraw() virtual
28552           - Improved mouse up/down/move logic to properly track buttons
28553
28554 2004-08-30 09:44  pbartok
28555
28556         * CheckBox.cs:
28557           - Updated to fix broken build. Not complete yet.
28558
28559 2004-08-30 09:28  pbartok
28560
28561         * CheckState.cs:
28562           - Initial checkin
28563
28564 2004-08-30 09:17  pbartok
28565
28566         * Appearance.cs:
28567           - Initial check-in
28568
28569 2004-08-27 16:12  ravindra
28570
28571         * ToolBarButton.cs: Added TypeConverter attribute.
28572
28573 2004-08-27 16:07  ravindra
28574
28575         * ImageIndexConverter.cs: Implemented.
28576
28577 2004-08-27 14:17  pbartok
28578
28579         * Control.cs:
28580           - Removed unneeded stack vars
28581           - First attempt to fix sizing issues when layout is suspended
28582
28583 2004-08-25 15:35  jordi
28584
28585         * ScrollBar.cs: more fixes to scrollbar
28586
28587 2004-08-25 14:04  ravindra
28588
28589         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
28590           Added the missing divider code and grip for ToolBar Control.
28591
28592 2004-08-25 13:20  pbartok
28593
28594         * Control.cs:
28595           - Control now properly passes the ambient background color to child
28596             controls
28597
28598 2004-08-25 13:20  jordi
28599
28600         * ScrollBar.cs: small bug fix regarding bar position
28601
28602 2004-08-25 12:33  pbartok
28603
28604         * Timer.cs:
28605           - Now only calls SetTimer or KillTimer if the enabled state has
28606           changed
28607
28608 2004-08-25 12:33  pbartok
28609
28610         * XplatUIWin32.cs:
28611           - Fixed timer handling, now seems to work
28612           - Improved error message for window creation
28613
28614 2004-08-25 12:32  pbartok
28615
28616         * Control.cs:
28617           - Fixed generation of MouseUp message
28618
28619 2004-08-25 12:29  jordi
28620
28621         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
28622           and fixes for progressbar
28623
28624 2004-08-24 18:43  ravindra
28625
28626         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
28627           in ToolBar control.
28628
28629 2004-08-24 17:15  pbartok
28630
28631         * Panel.cs:
28632           - Added #region
28633           - Added missing events
28634           - Alphabetized
28635
28636 2004-08-24 17:14  pbartok
28637
28638         * StatusBar.cs, PictureBox.cs:
28639           - Now uses Control's CreateParams
28640
28641 2004-08-24 16:36  pbartok
28642
28643         * XplatUIX11.cs:
28644           - Fixed background color handling
28645           - Fixed sending of enter/leave events on a grab
28646
28647 2004-08-24 16:35  pbartok
28648
28649         * X11Structs.cs:
28650           - Refined definitions for CrossingEvent
28651
28652 2004-08-24 12:37  jordi
28653
28654         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
28655           formmating, methods signature, and adds missing events
28656
28657 2004-08-24 12:24  jordi
28658
28659         * Control.cs: fire OnEnabledChanged event
28660
28661 2004-08-24 11:17  pbartok
28662
28663         * XplatUIWin32.cs:
28664           - Implemented SetTimer() and KillTimer()
28665
28666 2004-08-24 11:16  pbartok
28667
28668         * XplatUIX11.cs:
28669           - Now uses Remove instead of Add to kill the timer
28670
28671 2004-08-24 10:16  jackson
28672
28673         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
28674           picture boxes in the theme now. Draw picture box borders and obey
28675           sizing modes
28676
28677 2004-08-24 05:49  jackson
28678
28679         * Timer.cs: Remove top secret debugging code
28680
28681 2004-08-24 05:34  jackson
28682
28683         * PictureBox.cs: Temp hack to make picture boxes draw their full
28684           image
28685
28686 2004-08-24 05:29  jackson
28687
28688         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28689           XplatUIX11.cs: Move timers to the driver level. On X they are
28690           queued by the driver and checked on idle.
28691
28692 2004-08-24 01:07  jackson
28693
28694         * XplatUIX11.cs: Use a queue for async messages instead of passing
28695           them as ClientMessages since that was totally broken. Also simply
28696           check for events and return an idle message if none are found. This
28697           gives us an idle handler, and prevents deadlocking when no messages
28698           are in the queue.
28699
28700 2004-08-23 18:19  ravindra
28701
28702         * XplatUIWin32.cs: Removed the unwanted destructor.
28703
28704 2004-08-23 17:27  pbartok
28705
28706         * ButtonBase.cs:
28707           - Finishing touches. Works now, just needs some optimizations.
28708
28709 2004-08-23 16:53  jordi
28710
28711         * ScrollBar.cs: small fix
28712
28713 2004-08-23 16:45  pbartok
28714
28715         * Application.cs:
28716           - Removed debug output
28717           - Simplifications
28718
28719 2004-08-23 16:43  jordi
28720
28721         * ScrollBar.cs: [no log message]
28722
28723 2004-08-23 16:10  pbartok
28724
28725         * Form.cs:
28726           - Fixed handling of WM_CLOSE message
28727           - Removed debug output
28728
28729 2004-08-23 16:09  pbartok
28730
28731         * Application.cs:
28732           - Added handling of Idle event
28733           - Added handling of form closing
28734           - Fixed reporting of MessageLoop property
28735           - Removed some unneeded code, should provide a bit of a speedup
28736
28737 2004-08-23 15:22  pbartok
28738
28739         * Control.cs:
28740           - Added InitLayout() method
28741           - Added code to properly perform layout when Anchor or Dock property
28742             is changed
28743           - Changed 'interpretation' of ResumeLayout. MS seems to have a
28744             LAMESPEC, tried to do it in a way that makes sense
28745
28746 2004-08-23 14:10  jordi
28747
28748         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
28749           properties and methods
28750
28751 2004-08-23 13:55  pbartok
28752
28753         * Control.cs:
28754           - Properly fixed Jordi's last fix
28755           - Now uses Cursor's Position property instead of calling XplatUI
28756           directly
28757
28758 2004-08-23 13:44  jordi
28759
28760         * PaintEventHandler.cs: Adding missing attribute
28761
28762 2004-08-23 13:39  pbartok
28763
28764         * Cursor.cs:
28765           - Implemented Position property
28766
28767 2004-08-23 13:39  pbartok
28768
28769         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
28770           - Added method to move mouse cursor
28771
28772 2004-08-23 13:39  pbartok
28773
28774         * XplatUIX11.cs:
28775           - Fixed setting of background color
28776           - Added method to move mouse cursor
28777
28778 2004-08-23 13:16  jordi
28779
28780         * Control.cs: avoids null exception
28781
28782 2004-08-22 17:46  jackson
28783
28784         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
28785           PictureBox
28786
28787 2004-08-22 17:40  jackson
28788
28789         * XplatUIX11.cs: Add some missing locks
28790
28791 2004-08-22 15:10  pbartok
28792
28793         * Control.cs, Form.cs:
28794           - Removed OverlappedWindow style from Control, instead it's default
28795             now is child
28796           - Made form windows OverlappedWindow by default
28797
28798 2004-08-22 13:34  jackson
28799
28800         * ScrollBar.cs: Update the position through the Value property so
28801           the OnValueChanged event is raised.
28802
28803 2004-08-22 12:04  pbartok
28804
28805         * SWF.csproj:
28806           - Added Cursor.cs and UserControl.cs
28807
28808 2004-08-22 12:03  pbartok
28809
28810         * Cursor.cs:
28811           - Started implementation, not usable yet
28812
28813 2004-08-22 12:00  pbartok
28814
28815         * UserControl.cs:
28816           - Implemented UserControl (complete)
28817
28818 2004-08-21 19:20  ravindra
28819
28820         * ToolBar.cs: Correcting the formatting mess of VS.NET.
28821
28822 2004-08-21 18:49  ravindra
28823
28824         * ToolBar.cs: Probably this completes the missing attributes in
28825           toolbar control.
28826
28827 2004-08-21 18:03  ravindra
28828
28829         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
28830           Fixed toolbar control signatures.
28831
28832 2004-08-21 16:32  pbartok
28833
28834         * LinkLabel.cs:
28835           - Signature Fixes
28836
28837 2004-08-21 16:30  pbartok
28838
28839         * Label.cs:
28840           - Signature fixes
28841
28842 2004-08-21 16:19  pbartok
28843
28844         * Control.cs, Label.cs:
28845           - Signature fixes
28846
28847 2004-08-21 15:57  pbartok
28848
28849         * ButtonBase.cs:
28850           - Added loads of debug output for development
28851           - Fixed typo in method name
28852
28853 2004-08-21 15:52  pbartok
28854
28855         * ToolBarButtonClickEventArgs.cs:
28856           - Added missing base class
28857
28858 2004-08-21 14:53  pbartok
28859
28860         * Control.cs:
28861           - Updated to match new GrabWindow signature
28862
28863 2004-08-21 14:51  pbartok
28864
28865         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28866           - Added method to get default display size
28867
28868 2004-08-21 14:23  pbartok
28869
28870         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28871           - Added method to query current grab state
28872           - Added argument to allow confining a grab to a window
28873
28874 2004-08-21 14:22  pbartok
28875
28876         * Keys.cs:
28877           - Added [Flags] attribute so that modifiers can be used in bitwise
28878           ops
28879
28880 2004-08-21 14:21  pbartok
28881
28882         * TrackBar.cs, ScrollBar.cs:
28883           - Replaced direct XplatUI calls with their Control counterpart
28884
28885 2004-08-21 13:32  pbartok
28886
28887         * Control.cs:
28888           - Implemented Created property
28889
28890 2004-08-21 13:28  pbartok
28891
28892         * Control.cs:
28893           - Implemented ContainsFocus
28894
28895 2004-08-21 13:26  pbartok
28896
28897         * Control.cs:
28898           - Implemented CausesValidation
28899
28900 2004-08-21 13:21  pbartok
28901
28902         * Control.cs:
28903           - Implemented CanFocus
28904           - Implemented CanSelect
28905           - Implemented Capture
28906
28907 2004-08-21 12:35  pbartok
28908
28909         * XplatUIWin32.cs:
28910           - Fixed bug with Async message handling
28911           - Implemented getting the ModifierKeys
28912
28913 2004-08-21 12:32  jackson
28914
28915         * AsyncMethodResult.cs: Make sure we have the mutex before we
28916           release it. Fixes BeginInvoke on windows
28917
28918 2004-08-21 11:31  pbartok
28919
28920         * XplatUIWin32.cs, XplatUIX11.cs:
28921           - Drivers now return proper mouse state
28922
28923 2004-08-21 10:54  jackson
28924
28925         * Control.cs: Implement EndInvoke
28926
28927 2004-08-21 10:48  jackson
28928
28929         * Timer.cs: Remove unneeded finalizer
28930
28931 2004-08-20 19:52  ravindra
28932
28933         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
28934           in mouse event handling in the ToolBar control.
28935
28936 2004-08-20 19:50  ravindra
28937
28938         * ImageList.cs: Changed draw method to use the arguments passed in
28939           to draw the image.
28940
28941 2004-08-20 18:58  pbartok
28942
28943         * XplatUIStructs.cs:
28944           - Added private message for async communication
28945
28946 2004-08-20 17:38  ravindra
28947
28948         * Control.cs: Made RightToLeft property virtual and removed a
28949           Console.WriteLine.
28950
28951 2004-08-20 14:39  jordi
28952
28953         * ThemeGtk.cs: use style_attach
28954
28955 2004-08-20 14:39  pbartok
28956
28957         * XplatUIWin32.cs:
28958           - Added jackson's Async code from X11 to Win32
28959
28960 2004-08-20 14:09  pbartok
28961
28962         * SWF.csproj:
28963           - Added all new files
28964
28965 2004-08-20 14:09  pbartok
28966
28967         * Control.cs:
28968           - Added call to set window background color
28969
28970 2004-08-20 14:03  pbartok
28971
28972         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
28973           - Added method for setting the window background
28974
28975 2004-08-20 14:02  pbartok
28976
28977         * XplatUIWin32.cs:
28978           - Added method for setting the background color
28979           - Added handling for erasing the window background
28980
28981 2004-08-20 13:45  jordi
28982
28983         * TrackBar.cs: fixes timer, new properties and methods
28984
28985 2004-08-20 13:34  jackson
28986
28987         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
28988           correct thread
28989
28990 2004-08-20 13:22  jackson
28991
28992         * Timer.cs: Timer Tick events are now handed through Controls Async
28993           mechanism so the callbacks are executed in the same thread as X
28994
28995 2004-08-20 13:19  jackson
28996
28997         * XplatUIDriver.cs: Expose functionality to send async messages
28998           through the driver
28999
29000 2004-08-20 13:18  jackson
29001
29002         * Control.cs: Implement Begininvoke
29003
29004 2004-08-20 13:14  jackson
29005
29006         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
29007           messages through the driver
29008
29009 2004-08-20 13:12  jackson
29010
29011         * XplatUIX11.cs: Lock before all X operations. Also added Async
29012           method functionality through XSendEvent
29013
29014 2004-08-20 13:11  jackson
29015
29016         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
29017           This will screw up on 64 bit systems)
29018
29019 2004-08-20 13:10  jackson
29020
29021         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
29022           Async messages through X/Win32
29023
29024 2004-08-19 19:39  pbartok
29025
29026         * XplatUIX11.cs:
29027           - Updated code to match new HandleData.DeviceContext type
29028
29029 2004-08-19 19:38  pbartok
29030
29031         * HandleData.cs:
29032           - Made DeviceContext a generic object to allow usage from various
29033           drivers
29034           - Added support for queueing Windows messages
29035
29036 2004-08-19 19:37  pbartok
29037
29038         * XplatUIWin32.cs:
29039           - Added generation of MouseEnter, MouseLeave and MouseHover events
29040           - Added cleanup on EndPaint
29041
29042 2004-08-19 19:17  pbartok
29043
29044         * Control.cs:
29045           - Added handling of WM_MOUSEHOVER
29046           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
29047           code
29048
29049 2004-08-19 18:55  jordi
29050
29051         * ThemeGtk.cs: fixes button order
29052
29053 2004-08-19 18:12  jordi
29054
29055         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
29056
29057 2004-08-19 17:09  pbartok
29058
29059         * Control.cs:
29060           - Added Right property
29061           - Added RightToLeft property
29062
29063 2004-08-19 16:27  jordi
29064
29065         * ThemeGtk.cs: experimental GTK theme support
29066
29067 2004-08-19 16:26  jordi
29068
29069         * ITheme.cs, Theme.cs: move themes from an interface to a class
29070
29071 2004-08-19 16:25  jordi
29072
29073         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
29074           theme enhancaments
29075
29076 2004-08-19 16:04  pbartok
29077
29078         * XplatUIX11.cs:
29079           - Added colormap basics
29080           - Added a way to re-initialize with a different display handle
29081           - Fixed setting of the window background color
29082           - Added various X11 imports related to colors and colormaps
29083
29084 2004-08-19 15:51  pbartok
29085
29086         * X11Structs.cs:
29087           - Removed packing hints (Paolo suggested this a while back)
29088           - fixed colormap type
29089           - Added default Atom types
29090           - Added Screen and color structs and enums
29091
29092 2004-08-19 15:39  pbartok
29093
29094         * ImageList.cs:
29095           - Added missing Draw() method
29096           - Added missing RecreateHandle event
29097
29098 2004-08-19 15:30  pbartok
29099
29100         * Form.cs:
29101           - Added handling of WM_CLOSE
29102
29103 2004-08-18 13:16  jordi
29104
29105         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
29106           a table
29107
29108 2004-08-18 09:56  jordi
29109
29110         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
29111
29112 2004-08-17 15:31  ravindra
29113
29114         * SWF.csproj: Updated project.
29115
29116 2004-08-17 15:25  pbartok
29117
29118         * Control.cs:
29119           - Drawing improvement; don't call UpdateBounds if we are not visible
29120             (or have been minimized)
29121
29122 2004-08-17 15:24  pbartok
29123
29124         * XplatUIWin32.cs:
29125           - Finished IsVisible
29126           - Added Win32GetWindowPlacement
29127
29128 2004-08-17 15:08  jackson
29129
29130         * Panel.cs: Initial checkin of the Panel
29131
29132 2004-08-17 14:25  pbartok
29133
29134         * Control.cs:
29135           - Fixed broken handling of default window sizes
29136
29137 2004-08-17 13:29  jackson
29138
29139         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
29140           has a large startup time.
29141
29142 2004-08-17 10:25  jackson
29143
29144         * HandleData.cs: union areas properly
29145
29146 2004-08-17 10:12  jackson
29147
29148         * HandleData.cs: union areas properly
29149
29150 2004-08-16 20:00  ravindra
29151
29152         * ToolBar.cs, ToolBarButton.cs: Added attributes.
29153
29154 2004-08-16 18:48  ravindra
29155
29156         * ToolBar.cs: Added attributes.
29157
29158 2004-08-16 17:17  ravindra
29159
29160         * SWF.csproj: Updated project.
29161
29162 2004-08-16 17:16  jackson
29163
29164         * XplatUIX11.cs: Check for more expose events before sending a
29165           WM_PAINT so they can all be grouped together. This makes dragging a
29166           window across another window redraw in a sane way.
29167
29168 2004-08-16 15:47  pbartok
29169
29170         * Control.cs:
29171           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
29172             support OnMouseEnter/Leave()
29173           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
29174             exposure handling
29175
29176 2004-08-16 15:46  pbartok
29177
29178         * XplatUIStructs.cs, XplatUIX11.cs:
29179           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
29180           OnMouseEnter/Leave()
29181
29182 2004-08-16 15:34  jackson
29183
29184         * XplatUIX11.cs: Group multiple expose events in HandleData, make
29185           sure messages get the message field set to WM_NULL if they are not
29186           handled.
29187
29188 2004-08-16 15:24  jackson
29189
29190         * HandleData.cs: HandleData is used for storing message information
29191           for window handles
29192
29193 2004-08-15 17:23  ravindra
29194
29195         * ColorDepth.cs: Added attribute.
29196
29197 2004-08-15 17:23  ravindra
29198
29199         * SWF.csproj: Updated project for ToolBar Control.
29200
29201 2004-08-15 17:20  ravindra
29202
29203         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
29204           control and also dos2unix format.
29205
29206 2004-08-15 17:13  ravindra
29207
29208         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
29209           ToolBarButtonClickEventArgs.cs,
29210           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
29211           ToolBarTextAlign.cs: First Implementation of ToolBar control.
29212
29213 2004-08-15 15:31  pbartok
29214
29215         * ButtonBase.cs:
29216           - First (mostly) working version
29217
29218 2004-08-13 16:15  pbartok
29219
29220         * Control.cs:
29221           - Fixed Anchor default
29222
29223 2004-08-13 15:43  pbartok
29224
29225         * Control.cs:
29226           - Changed GetCursorPos signature
29227
29228 2004-08-13 15:42  pbartok
29229
29230         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
29231           - Changed signature for GetCursorPos
29232
29233 2004-08-13 15:25  pbartok
29234
29235         * XplatUIX11.cs:
29236           - Cleanup
29237           - Fixed resizing/exposure handling
29238
29239 2004-08-13 15:22  jordi
29240
29241         * ThemeWin32Classic.cs: removes redundant code and fixes issues
29242           with tickposition
29243
29244 2004-08-13 14:55  jordi
29245
29246         * TrackBar.cs: change from wndproc to events
29247
29248 2004-08-13 13:00  jordi
29249
29250         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29251           XplatUIX11.cs: implements PointToClient (ScreenToClient)
29252
29253 2004-08-13 12:53  pbartok
29254
29255         * XplatUIWin32.cs:
29256           - Changed GetWindowPos to also provide client area size
29257           - Fixed broken prototypes for several win32 functions
29258
29259 2004-08-13 12:53  pbartok
29260
29261         * XplatUI.cs, XplatUIDriver.cs:
29262           - Changed GetWindowPos to also provide client area size
29263
29264 2004-08-13 12:52  pbartok
29265
29266         * XplatUIX11.cs:
29267           - Added generation of WM_POSCHANGED
29268           - Changed GetWindowPos to also provide client area size
29269
29270 2004-08-13 12:52  pbartok
29271
29272         * Control.cs:
29273           - Added Dispose() and destructor
29274           - Fixed resizing and bounds calculation
29275           - Fixed Layout
29276           - Added memory savings for invisible windows
29277
29278 2004-08-13 12:46  jordi
29279
29280         * TrackBar.cs: adds timer and grap window
29281
29282 2004-08-13 10:25  jackson
29283
29284         * Timer.cs: SWF Timer
29285
29286 2004-08-12 16:59  pbartok
29287
29288         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29289           - Implemented method to get current mouse position
29290
29291 2004-08-12 14:29  jordi
29292
29293         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
29294           enhancement, fix mouse problems, highli thumb, etc
29295
29296 2004-08-12 13:31  pbartok
29297
29298         * Control.cs:
29299           - Fixed Anchoring bugs
29300
29301 2004-08-12 13:01  jackson
29302
29303         * StatusBar.cs: Don't forget things
29304
29305 2004-08-12 12:54  jackson
29306
29307         * ThemeWin32Classic.cs: Handle owner draw status bars
29308
29309 2004-08-12 12:54  jackson
29310
29311         * StatusBar.cs: Implement missing properties, events, and methods.
29312           Handle mouse clicking
29313
29314 2004-08-12 10:19  jackson
29315
29316         * StatusBarPanelClickEventArgs.cs,
29317           StatusBarPanelClickEventHandler.cs: Classes for handling status
29318           bar panel click events
29319
29320 2004-08-12 10:10  jackson
29321
29322         * Control.cs: Add missing properties
29323
29324 2004-08-12 09:46  pbartok
29325
29326         * BindingsManagerBase.cs:
29327           - Name changed to BindingManagerBase.cs
29328
29329 2004-08-12 09:25  jordi
29330
29331         * ScrollableControl.cs: calls ctrlbase instead of exeception
29332
29333 2004-08-11 16:28  pbartok
29334
29335         * InputLanguageChangingEventArgs.cs:
29336           - Never check in before compiling. Fixes the last check-in
29337
29338 2004-08-11 16:26  pbartok
29339
29340         * InputLanguageChangingEventArgs.cs:
29341           - More signature fixes
29342
29343 2004-08-11 16:20  pbartok
29344
29345         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
29346           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
29347           ImageListStreamer.cs, InputLanguage.cs,
29348           InputLanguageChangedEventArgs.cs,
29349           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
29350           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
29351           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
29352           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29353           - Signature fixes
29354
29355 2004-08-11 16:16  pbartok
29356
29357         * Application.cs:
29358           - Fixed Signature
29359           - Added .Net 1.1 method
29360
29361 2004-08-11 15:25  pbartok
29362
29363         * SWF.csproj:
29364           - Fixed BindingManagerBase.cs filename
29365
29366 2004-08-11 15:22  pbartok
29367
29368         * BindingManagerBase.cs:
29369           - Was checked in with wrong filename
29370
29371 2004-08-11 14:50  pbartok
29372
29373         * SWF.csproj:
29374           - Updated
29375
29376 2004-08-11 13:41  jordi
29377
29378         * XplatUIWin32.cs: Fixes ClientRect
29379
29380 2004-08-11 13:19  pbartok
29381
29382         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29383           XplatUIX11.cs:
29384           - We had SetWindowPos and MoveWindow to set window positions and
29385             size, removed MoveWindow. We have GetWindowPos, so it made sense to
29386             keep SetWindowPos as matching counterpart
29387           - Added some X11 sanity checking
29388
29389 2004-08-11 12:59  pbartok
29390
29391         * Control.cs:
29392           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
29393             (It seems that SetBounds is just a front for SetBoundsCore and
29394              SetBoundsCore updates the underlying window system and
29395              UpdateBounds is responsible for updating the variables associated
29396              with the Control and sending the events)
29397           - Major cleanup of Size handling; we now have two sizes, client_size
29398             and bounds. Bounds defines the window with decorations, client_size
29399             without them.
29400
29401 2004-08-11 12:55  pbartok
29402
29403         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29404           - Added method to calculate difference between decorated window and
29405             raw client area
29406
29407 2004-08-11 12:54  pbartok
29408
29409         * Label.cs:
29410           - Forcing redraw on resize
29411
29412 2004-08-11 11:43  pbartok
29413
29414         * ImageList.cs:
29415           - Removed disposing of the actual images when the list is disposed
29416
29417 2004-08-11 09:13  pbartok
29418
29419         * Control.cs:
29420           - Now properly reparents windows
29421
29422 2004-08-11 08:37  pbartok
29423
29424         * Control.cs:
29425           - Duh!
29426
29427 2004-08-11 07:47  pbartok
29428
29429         * Control.cs:
29430           - Rewrote the collection stuff. Might not be as fast now, not
29431             keeping the number of children around and accessible directly, but
29432             it's more straightforward
29433
29434 2004-08-11 07:44  pbartok
29435
29436         * AccessibleObject.cs:
29437           - Fixed to match ControlCollection rewrite
29438
29439 2004-08-11 07:43  pbartok
29440
29441         * ImageList.cs:
29442           - Added missing creation of the collection list
29443
29444 2004-08-10 20:08  jackson
29445
29446         * StatusBar.cs: Get the paint message from WndProc
29447
29448 2004-08-10 19:31  jackson
29449
29450         * ThemeWin32Classic.cs: Create Brushes as little as possible
29451
29452 2004-08-10 19:20  jackson
29453
29454         * UICues.cs: Add Flags attribute
29455
29456 2004-08-10 19:19  jackson
29457
29458         * StatusBarPanel.cs: Signature cleanup
29459
29460 2004-08-10 19:10  jackson
29461
29462         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
29463           Initial implementation of status bar item drawing
29464
29465 2004-08-10 17:27  jordi
29466
29467         * TrackBar.cs: add missing methods, properties, and restructure to
29468           hide extra ones
29469
29470 2004-08-10 16:24  jackson
29471
29472         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
29473           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
29474           attribute
29475
29476 2004-08-10 13:21  jordi
29477
29478         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
29479           enhancements and standarize on win colors defaults
29480
29481 2004-08-10 12:52  jackson
29482
29483         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
29484           ThemeWin32Classic.cs: Implement DrawItem functionality
29485
29486 2004-08-10 12:47  jordi
29487
29488         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
29489
29490 2004-08-10 12:32  jordi
29491
29492         * Control.cs: throw ontextchange event
29493
29494 2004-08-10 11:43  pbartok
29495
29496         * Control.cs:
29497           - Added more to the still unfinished Dock/Anchor layout code
29498
29499 2004-08-10 11:39  pbartok
29500
29501         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
29502           - Added GetWindowPos method
29503
29504 2004-08-10 11:36  pbartok
29505
29506         * XplatUIWin32.cs:
29507           - Implemented several methods
29508
29509 2004-08-10 09:47  jackson
29510
29511         * TrackBar.cs: Allow control to handle buffering
29512
29513 2004-08-10 09:41  jackson
29514
29515         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
29516
29517 2004-08-10 09:24  jackson
29518
29519         * Label.cs, LinkLabel.cs: Let Control handle buffering.
29520
29521 2004-08-10 09:09  jackson
29522
29523         * StatusBar.cs: Let Control handle all the buffering.
29524
29525 2004-08-10 09:08  jackson
29526
29527         * Control.cs: Control will now handle the buffering code, so each
29528           control does not have to implement this.
29529
29530 2004-08-10 08:34  jackson
29531
29532         * XplatUIDriver.cs: Use default colors from the theme
29533
29534 2004-08-09 17:12  pbartok
29535
29536         * ImageList.cs:
29537           - Fixed several bugs Ravindra pointed out
29538
29539 2004-08-09 16:11  pbartok
29540
29541         * Control.cs:
29542           - Added incomplete dock layout code
29543           - Added support for mouse wheel
29544
29545 2004-08-09 16:09  pbartok
29546
29547         * XplatUIX11.cs:
29548           - Added handling for middle and right mousebutton
29549           - Added handling for mouse wheel
29550           - Added handling for key state and mouse state and position
29551           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
29552           messages
29553
29554 2004-08-09 15:40  jackson
29555
29556         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
29557           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
29558           checkin
29559
29560 2004-08-09 15:37  jackson
29561
29562         * StatusBar.cs: Initial implementation of StatusBar
29563
29564 2004-08-09 15:36  jackson
29565
29566         * ITheme.cs: Add support for drawing status bar and getting status
29567           bar item sizes
29568
29569 2004-08-09 15:35  pbartok
29570
29571         * MouseButtons.cs:
29572           - Fixed values
29573
29574 2004-08-09 15:34  jackson
29575
29576         * ThemeWin32Classic.cs: Add support for drawing status bar and get
29577           status bar item sizes
29578
29579 2004-08-09 15:21  jackson
29580
29581         * ThemeWin32Classic.cs: Use known colors for default control
29582           colours
29583
29584 2004-08-09 15:12  jackson
29585
29586         * ThemeWin32Classic.cs: Make the default font static, it is static
29587           in control so this doesn't change functionality and creating fonts
29588           is sloooooow.
29589
29590 2004-08-09 14:56  pbartok
29591
29592         * X11Structs.cs:
29593           - Added GrabMode enum
29594
29595 2004-08-09 14:55  pbartok
29596
29597         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29598           - Removed Run method, was only required for initial development
29599
29600 2004-08-09 14:51  pbartok
29601
29602         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29603           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
29604           capture
29605
29606 2004-08-09 13:48  pbartok
29607
29608         * XplatUIX11.cs:
29609           - Fixed default sizing for child windows
29610
29611 2004-08-09 12:56  pbartok
29612
29613         * XplatUIX11.cs:
29614           - Added generation of WM_DESTROY message
29615           - Added handling of window manager induced shutdown
29616
29617 2004-08-09 11:31  jackson
29618
29619         * ThemeWin32Classic.cs: New names for control properties
29620
29621 2004-08-09 11:25  jackson
29622
29623         * Control.cs: Use new color names
29624
29625 2004-08-09 11:02  jackson
29626
29627         * XplatUI.cs: Get default window properties from the theme
29628
29629 2004-08-09 11:01  jackson
29630
29631         * ITheme.cs: The theme engine now controls default window
29632           properties
29633
29634 2004-08-09 11:00  jackson
29635
29636         * ThemeWin32Classic.cs: Add default window color properties
29637
29638 2004-08-09 10:17  jackson
29639
29640         * ThemeWin32Classic.cs: Use correct default back color
29641
29642 2004-08-09 10:05  jackson
29643
29644         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
29645           the theme now.
29646
29647 2004-08-09 09:56  jackson
29648
29649         * XplatUI.cs: Remove defaults, these are handled by the theme now.
29650
29651 2004-08-09 09:54  jackson
29652
29653         * Control.cs: Get default properties from the theme.
29654
29655 2004-08-09 09:53  jackson
29656
29657         * ITheme.cs: Themes now handle default control properties
29658
29659 2004-08-09 09:53  jackson
29660
29661         * ThemeWin32Classic.cs: Themes now handle default control
29662           properties so coloring will be consistent
29663
29664 2004-08-08 16:54  jordi
29665
29666         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
29667
29668 2004-08-08 15:08  jordi
29669
29670         * XplatUIX11.cs: fixes keyboard crash
29671
29672 2004-08-08 13:47  jordi
29673
29674         * Label.cs: add cvs header info
29675
29676 2004-08-08 12:09  jackson
29677
29678         * ThemeWin32Classic.cs: Add pen_buttonface
29679
29680 2004-08-08 11:52  jordi
29681
29682         * Label.cs, LinkLabel.cs: [no log message]
29683
29684 2004-08-08 11:34  jordi
29685
29686         * ThemeWin32Classic.cs: Use Windows Standard Colours
29687
29688 2004-08-07 17:32  jordi
29689
29690         * TrackBar.cs: throw exceptions of invalid enums values
29691
29692 2004-08-07 17:31  jordi
29693
29694         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
29695           draw method name
29696
29697 2004-08-07 16:56  jackson
29698
29699         * HorizontalAlignment.cs: Initial checkin
29700
29701 2004-08-07 13:16  jordi
29702
29703         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
29704           methods
29705
29706 2004-08-07 13:05  jordi
29707
29708         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
29709           GetSysColor defines
29710
29711 2004-08-06 18:01  pbartok
29712
29713         * ThemeWin32Classic.cs:
29714           - Fixed some rounding issues with float/int
29715
29716 2004-08-06 18:00  jackson
29717
29718         * DockStyle.cs, AnchorStyles.cs:
29719
29720                   Add flags and serializable attributes.
29721
29722 2004-08-06 17:46  pbartok
29723
29724         * XplatUIX11.cs:
29725           - Implemented GetParent
29726
29727 2004-08-06 17:18  pbartok
29728
29729         * TrackBar.cs:
29730           - Fixed some rounding issues with float/int
29731
29732 2004-08-06 17:17  pbartok
29733
29734         * X11Structs.cs, XplatUIX11.cs:
29735           - Fixed Refresh and Invalidate
29736
29737 2004-08-06 15:30  pbartok
29738
29739         * Control.cs, X11Structs.cs, XplatUIX11.cs:
29740           - Fixed recursive loop when resizing
29741           - Improved/fixed redrawing on expose messages
29742
29743 2004-08-06 09:53  jordi
29744
29745         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
29746           keyboard navigation
29747
29748 2004-08-06 08:02  pbartok
29749
29750         * X11Structs.cs, XplatUIX11.cs:
29751           - Fixed reparenting
29752           - Fixed window border creation
29753
29754 2004-08-05 15:38  pbartok
29755
29756         * XplatUIX11.cs:
29757           - Attempted fix for reparenting problems
29758
29759 2004-08-04 15:14  pbartok
29760
29761         * Control.cs:
29762           - Fixed Invalidation bug (calculated wrong client area)
29763           - Added ClientSize setter
29764
29765 2004-08-04 15:13  pbartok
29766
29767         * Form.cs:
29768           - Added AutoScale properties
29769
29770 2004-08-04 15:13  pbartok
29771
29772         * SWF.csproj:
29773           - Added latest files
29774
29775 2004-08-04 14:11  pbartok
29776
29777         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29778           XplatUIX11.cs:
29779           - Added Invalidate handling
29780
29781 2004-08-03 17:09  jordi
29782
29783         * XplatUIDriver.cs: fixes spelling mistake
29784
29785 2004-07-27 09:53  jordi
29786
29787         * TrackBar.cs: fixes trackbar events, def classname, methods
29788           signature
29789
29790 2004-07-27 09:29  jordi
29791
29792         * ScrollBar.cs: fixes scrollbar events
29793
29794 2004-07-27 04:38  jordi
29795
29796         * Control.cs: changes to be able to run winforms samples
29797
29798 2004-07-26 11:42  jordi
29799
29800         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
29801           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
29802
29803 2004-07-26 05:41  jordi
29804
29805         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
29806           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
29807           implementation
29808
29809 2004-07-22 09:22  jordi
29810
29811         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
29812           check link overlapping, implement events, and fixes
29813
29814 2004-07-21 10:28  jordi
29815
29816         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
29817
29818 2004-07-21 10:19  jordi
29819
29820         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
29821           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
29822           LinkLabelLinkClickedEventArgs.cs,
29823           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
29824           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
29825           implementation
29826
29827 2004-07-19 13:09  jordi
29828
29829         * Control.cs, Label.cs: label control re-written: added missing
29830           functionlity, events, and properties
29831
29832 2004-07-19 10:49  jordi
29833
29834         * Control.cs: fixes SetBounds logic
29835
29836 2004-07-19 01:29  jordi
29837
29838         * Control.cs: Call RefreshWindow only if the window has created
29839
29840 2004-07-15 14:05  pbartok
29841
29842         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
29843           - Implemented ImageList and ImageList.ImageCollection classes
29844           - Added ColorDepth enumeration
29845           - Updated SWF VS.Net project
29846
29847 2004-07-15 11:06  jordi
29848
29849         * XplatUIStructs.cs: added MsgButons enum
29850
29851 2004-07-15 11:03  jordi
29852
29853         * Control.cs: added basic mouse handeling events
29854
29855 2004-07-15 03:38  jordi
29856
29857         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
29858           Vertical TrackBar control implementation
29859
29860 2004-07-13 09:33  jordi
29861
29862         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
29863
29864 2004-07-13 09:31  jordi
29865
29866         * Control.cs, Form.cs: commit: new properties and fixes form size
29867           problems
29868
29869 2004-07-09 14:13  miguel
29870
29871         * ProgressBar.cs: Spelling
29872
29873 2004-07-09 11:25  pbartok
29874
29875         * ProgressBar.cs:
29876           - Removed usage of Rectangle for drawing. Miguel pointed out it's
29877           faster
29878
29879 2004-07-09 11:17  miguel
29880
29881         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
29882
29883                 * ProgressBar.cs: Fixed spelling for `block'
29884
29885                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
29886                 style guidelines.
29887
29888                 Avoid using the += on rect.X, that exposed a bug in the compiler.
29889
29890 2004-07-08 23:21  pbartok
29891
29892         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
29893           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
29894           BaseCollection.cs, Binding.cs, BindingContext.cs,
29895           BindingMemberInfo.cs, BindingsCollection.cs,
29896           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
29897           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
29898           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
29899           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
29900           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
29901           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
29902           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
29903           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
29904           FrameStyle.cs, GiveFeedbackEventArgs.cs,
29905           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
29906           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
29907           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
29908           InputLanguageChangedEventArgs.cs,
29909           InputLanguageChangedEventHandler.cs,
29910           InputLanguageChangingEventArgs.cs,
29911           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
29912           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
29913           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
29914           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
29915           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
29916           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
29917           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
29918           QueryAccessibilityHelpEventArgs.cs,
29919           QueryAccessibilityHelpEventHandler.cs,
29920           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
29921           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
29922           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
29923           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
29924           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
29925           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
29926           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
29927           XplatUIX11.cs, lang.cs:
29928           - Initial check-in
29929
29930