* FolderBrowserDialog.cs: When running on Windows,
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-10-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2
3         * FolderBrowserDialog.cs: When running on Windows,
4         try to detect paths such "C:" and add Path.DirectorySeparatorChar,
5         since we must match both "C:" and "C:\" forms. A little hackish, but
6         works.
7         Fixes #325247.
8
9 2007-10-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10
11         * ListView.cs: When calling EndEdit (after editing an item),
12         create a new instance of LabelEditEventArgs to keep clean the fields
13         in case we get a new call to BeginEdit; also do Application.DoEvents
14         to have focus in synch. This is a fix similar to TreeView's #325244.
15
16 2007-10-07  Andreia Gaita <avidigal@novell.com>
17
18         * HtmlDocument.cs, HtmlElement.cs, WebBrowser.cs: Added dom support
19         * WebBrowserBase.cs: Added dialog support, calling the
20           WebBrowserDialogs classes for each specific dialog type.
21
22 2007-10-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
23
24         * ListView.cs: When the last item is focused and is removed,
25         move the focus to the previous item (in Items order). This is what MS
26         does.
27         Fixes #330415.
28
29 2007-10-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
30
31         * ListView.cs: In ListViewItemCollection, make Remove call RemoveAt,
32         instead of the opposite (RemoveAt call Remove). This is a better
33         approach since we don't need to to a pair of traversals when using
34         RemoveAt.
35
36 2006-10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
37
38         * TreeView.cs: When Keys.Left is pressed, before trying to Collapse
39         check that the node actually has nodes, and if not, move to the
40         parent node instead. 
41         Fixes #325265.
42
43 2006-10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
44
45         * TreeView.cs: Move the previous change to the general case (to
46         call Application.DoEvents in cases where the method was called by
47         different places).
48
49 2007_10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
50
51         * TreeView.cs: When calling EndEdit and we need to hide the textbox,
52         call Application.DoEvents. This is neccessary when we get a call to
53         BeginEdit from an AfterLabelEdit handler, because the focus always
54         goes to the TreeView, even if we try to give it to our
55         LabelEditTextBox. The call do Application.DoEvents seems to
56         synchronize the focus, basically.
57         Fixes #325244.
58
59 2007-10-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
60
61         * TreeView.cs: When AfterLabelEdit event is fired, TreeNode.IsEditing
62         should be false. This also removes some nasty recursive paths. Fixes
63         part of #325244.
64
65 2007-10-04  Everaldo Canuto  <ecanuto@novell.com>
66
67         * MdiClient.cs: When cascade (layout) mdi window that is maximized, set the
68         state to normal. Also resize window when cascading. Fixes #325433. 
69
70 2007-10-04  Jonathan Pobst  <monkey@jpobst.com>
71
72         * RichTextBox.cs: When SelectionColor is set to Color.Empty, use
73         DefaultForeColor, as drawing empty colored lines isn't very useful.
74         [Fixes the not drawn lines part of bug #324358]
75
76 2007-10-04  Jonathan Pobst  <monkey@jpobst.com>
77
78         * TextControl.cs: Move Line and LineTag classes into separate files to
79         make things easier to find.
80         * Line.cs, LineTag.cs: Bring coding standards up to Mono's guidelines.
81         * RichTextBox.cs: Capitalize LineTag.Length property access.
82         - This is purely an organizational/formatting change, no logic changed. -
83
84 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
85
86         * ThemeWin32Classic.cs: Do not show focus rectangle in radio buttons when
87         text is empty.
88
89 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
90
91         * ThemeWin32Classic.cs: Do not show focus rectangle in checkboxes when
92         text is empty.
93
94 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
95
96         * ComboBox.cs: On contructor use backgound_color instead of BackColor to
97         prevent calling of OnBackColorChanged. Fixes #325321.
98
99 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
100
101         * TextBox.cs: When check enabled uses Enabled property instead of is_enabled
102         because control can be disabled because owner is disabled.
103
104 2007-10-02  Jonathan Pobst  <monkey@jpobst.com>
105
106         * ComboBox.cs: For the 1.1 profile, the default SelectedText is
107         string.Empty, test failed from previous change.
108
109 2007-10-02  Jonathan Pobst  <monkey@jpobst.com>
110
111         * TextBoxBase.cs: For the 1.1 profile, the default SelectedText
112         is null, not String.Empty.  See bug #323038.
113
114 2007-10-01  Jonathan Pobst  <monkey@jpobst.com>
115
116         * TextControl.cs: Change the margins to match MS a little better.
117         Still not perfect for X11 due to some DrawString differences, but
118         is still an improvement over the old stuff.
119         Partially fixes #324467.
120
121 2007-09-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
122
123         * FolderBrowserDialog.cs: When using MyComputer as 
124         RootFolder, let absolute paths be considered as valid ones. Also, use
125         Path.DirectorySeparatorChar instead of Path.AltDirectorySeparatorChar,
126         for Windows compatibility.
127         Partially fixes #325247.
128
129 2007-09-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
130
131         * FolderBrowserDialog.cs: Fix the recursive FindPathInNodes method.
132         Also remove the stack.Count > 0 check in FBTreeView.SetSelectedNode
133         method, since it causes the dialog to not select folders directly
134         under the root path (when setting SelectedPath property).
135
136 2007-09-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
137
138         * TreeNode.cs: When calling Expand/Collapse and need to call 
139         ExpandBelow/CollapseBelow respectively, take into account
140         partially visible nodes (previously Expanding/Collapsing
141         a partially visible node in the bottom was not updating its +- sign).
142
143 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
144
145         * TreeView.cs: When calling Expand on a TreeNode, and we need to
146         expand nodes below (ExpandBelow), scroll the entire Viewport
147         area if the node is above it and not visible (instead of scrolling
148         the area from node's Bottom, which applies only when the node is
149         visible).
150         Fixes #325266.
151
152 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
153
154         * TreeView.cs: When calling ExpandAll, set SelectedNode to the top
155         node in the bottom area (as .Net does). This is done to preserve the
156         scroll position when ExpandAll is called before handle is created for
157         the 1.1 profile (bottom area, as opposed to top area in 2.0).
158         Fixes #324103.
159
160 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
161
162         * TreeView.cs: When calling ExpandAll, don't move the scroll to the 
163         bottom area if we are in fact not using the vertical scroll bar.
164         Fixes #324824.
165
166 2007-09-27  Jonathan Pobst  <monkey@jpobst.com>
167
168         * Control.cs: Comment out a double buffering optimization that doesn't
169         take into account invalidates created in OnPaint, causing the control
170         to never be redrawn.  It would take quite a bit of work to work around
171         this, but I left it commented with an explanation for later possible
172         optimization.
173         [Fixes bug #328681]
174
175 2007-09-27  Jonathan Pobst  <monkey@jpobst.com>
176
177         * Control.cs: Ask parent to perform a layout if control is AutoSize and
178         the text changes.
179         * RadioButton.cs: Implement GetPreferredSizeCore.
180         [Fixes bug #328672]
181
182 2007-09-26  Jonathan Pobst  <monkey@jpobst.com>
183
184         * RichTextBox.cs, TextBoxBase.cs, WindowsFormsSynchronizationContext.cs:
185         corcompare stuffs.
186
187 2007-09-26  Jonathan Pobst  <monkey@jpobst.com>
188
189         * Application.cs: Move the sync context stuff to Run instead of RunLoop
190         so that it doesn't get uninstalled on modal forms.
191         * Control.cs: Install a sync context when a control is created.
192         * WindowsFormsSyncronizationContext.cs: Create a private static control
193         to invoke on.  This is easier than trying to find a created control we
194         can use.
195         [Fixes bug #327608]
196
197 2007-09-25  Jonathan Pobst  <monkey@jpobst.com>
198
199         * Application.cs: Install a WindowsFormsSynchronizationContext in the
200         run loop, and uninstall it when done.
201         * WindowsFormsSynchronizationContext.cs: Implement.
202         [Fixes the common case in bug #327608]
203
204 2007-09-23  Gert Driesen  <drieseng@users.sourceforge.net>
205
206         * DataGridViewCellCollection.cs: Added argument checks for indexers.
207         Use case-insensitive lookup of column name in indexer. Code
208         formatting.
209
210 2007-09-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
211
212         * TreeNode.cs: When collapsing or expanding a node, check whether its
213         change will affect the visible area (we were previously doing a
214         IsVisible check, but that check is not enough since children nodes
215         could be still visible). Fixes part of #325266.
216
217 2007-09-21  Jonathan Pobst  <monkey@jpobst.com>
218
219         * TreeView.cs: Always select the first node when the TreeView gets
220         focus if there is no currently selected node.
221         [Fixes bug #324279]
222
223 2007-09-21  Jonathan Pobst  <monkey@jpobst.com>
224
225         * TreeView.cs: Do not raise BeforeSelect or AfterSelect when the
226         node being selected is null.
227         [Patch from Yves Bastide fixes bug #326858]
228
229 2007-09-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
230
231         * TreeNode.cs: Add an internal ArePreviousNodesExpanded, to know
232         whether all the parent nodes are expanded.
233         * TreeNodeCollection.cs: When adding a new node an calling SetupNode,
234         call RecalculateVisibleOrder if all previous nodes are expanded.
235         Before that we were doing a IsVisible check, but sometimes the node
236         is not in the visible area, but _should_already be ready, because of
237         all previous nodes are expanded. Fixes #325259.
238
239 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
240
241         * ToolStripSplitButton.cs: Call the ButtonClick event if the button
242         portion of the item is clicked.
243
244 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
245
246         * TextControl.cs: Do not tell the system to move the cursor if the
247         textbox isn't focused.  Fixes part of bug #322668.
248
249 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
250
251         * ComboBox.cs: When there are no items, do not show the dropdown if
252         the down arrow is clicked.  Fixes part of bug #322668.
253
254 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
255
256         * ToolStripComboBox.cs: Manually set the size of this control in the
257         constructor, as it doesn't seem to be the same as DefaultSize.
258         Fixes a failing monobuild test.
259
260 2007-09-19  Jonathan Pobst  <monkey@jpobst.com>
261
262         * DateTimePicker.cs: If the user sets MinDate to DateTime.MinValue,
263         change it to DateTimePicker.MinDateTime.  [Fixes bug #326609]
264
265 2007-09-19  Jonathan Pobst  <monkey@jpobst.com>
266
267         * Theme.cs: FileDialogs should be using DesktopDirectory instead of
268         Desktop.  This lets it work for people who have moved their desktops
269         from the default location on windows.  For people who have not, both
270         values are the same, so it shouldn't hurt anything.  [Fixes bug #325270]
271
272 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
273
274         * ToolStripControlHostTest.cs: DefaultSize is based off hosted control,
275         but when the base constructor sets this, the control is null.  Set it
276         again in the constructor.  Fixes a failing monobuild test.
277
278 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
279
280         * ToolStripDropDownItem.cs: Make sure Click and DropDownOpened events
281         get called.
282         * ToolStripSplitButton.cs: Make sure MouseDown and MouseUp events get
283         called.
284
285 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
286
287         * ToolStrip.cs: Don't show tooltips for ToolStripTextBoxes, they
288         will handle it themselves.
289         * ToolStripItem.cs: When deciding what the text of a tooltip should
290         be, use the Text property instead of the text field.
291         * ToolStripTextBox.cs: Handle tooltips.
292         [Fixes bugs #325417 and #325973]
293
294 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
295
296         * ToolStripDropDownButton.cs: Only drop down overflow menu with a
297         left click.  Fixes the easy part of bug #325969.
298
299 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
300
301         * ToolStrip.cs: Set AutoSizeMode back to GrowAndShrink to refix
302         bug #325406, but set a minimum for StatusStrip to 22 to keep
303         bug #325390 fixed.  I think this minimum would have been figured
304         up automatically if the grip was actually a ToolStripItem, but it
305         currently is not.
306
307 2007-09-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
308
309         * ListView.cs: max_label_wrapping is now 30 pixels instead of 38,
310         as this is apparently the actual value used by .Net. Also apply
311         ItemPadding in Details view only, and decrease the general width padding,
312         to have only the needed. This should fix #324340 in Windows too.
313
314 2007-09-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
315
316         * ListViewItem.cs: Don't Invalidate item if parent is inside
317         a BeginUpdate/EndUpdate block. This prevents to have differences
318         between the ListView and items state, as well as avoid some exceptions
319         there.
320         * ListView.cs: Make 'updating' field internal.
321
322 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
323
324         * ToolStripControlHost.cs: Realign control when ControlAlign changes.
325         * ToolStripItem.cs: Use ImageScalingSize when calculating preferred
326         size if appropriate.
327         Fixes reopened bug #325414.
328
329 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
330
331         * ToolStrip.cs: Set AutoSizeMode back to GrowOnly.
332         * ToolStripItem.cs: Invalidate before and after our new autosize when
333         text changes.
334         Fixes reopened bug #325390.
335
336 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
337
338         * ToolStripMenuItem.cs: Make sure we invalidate when clicked so
339         mnemonics can be drawn or undrawn correctly.  Fixes reopened bug 
340         #325044.
341
342 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
343
344         * Control.cs: Do WM_CONTEXTMENU before OnMouseUp.  [Fixes bug #325535]
345
346 2007-09-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
347
348         * ColumnHeader.cs: When drawing column text, use EllipsisCharacter
349         instead of EllipsisWord (by equistango at gmail.com). Fixes part of
350         #82734.
351
352 2007-09-14  Jonathan Pobst  <monkey@jpobst.com>
353
354         * ToolStrip.cs: Make ToolStrip selectable when TabStop = true.  Find an
355         item to select when the ToolStrip is selected.
356         * ToolStripControlHost: Realign the control when the bounds or visibility
357         change.
358         * ToolStripItem.cs: When selected, if it's a control host, focus the control.
359         * ToolStripOverflow.cs: When laying out the drop down, respect the item's
360         preferred height.
361         * ToolStripTextBox.cs: OnPaintInternal should call base.OnPaintInternal, not
362         base.OnPaint.  Was causing text not to be drawn.
363
364 2007-09-14  Jonathan Pobst  <monkey@jpobst.com>
365
366         * SplitterPanel.cs: Ignore attempts to set AutoSizeMode.
367
368 2007-09-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
369
370         * TreeView.cs: When creating the label edit text box,
371         set is initially to Visible = false. This is done to
372         prevent a confusion in the layout which makes it to lose
373         focus when shown the first time. Fixes part of #82592.
374
375 2007-09-13 Andreia Gaita <avidigal@novell.com>
376
377         * WebBrowserBase.cs: add FocusOption enumeration for finer focus control
378
379 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
380
381         * ToolStrip.cs: Take Margin into account when calculating preferred
382         size.  Also, allow preferred size to get smaller than the explicit
383         size.
384         * ToolStripTextBox.cs: Don't change the GetPreferredSize implementation.
385         First step towards fixing bug #82747.
386
387 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
388
389         * TreeView.cs: Applied patch from latency@gmx.de to not paint the
390         full row select background over the plus/minus glyph.  Also, turn
391         off the focus rectangle for full row select since MS doesn't seem
392         to ever paint it.  [Fixes bug #81839]
393
394 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
395
396         * ToolStrip.cs: Don't FocusInternal if there is no selected item.
397         This was causing keyboard opened dropdowns to lose focus.
398         [Fixes bug #82803]
399
400 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
401
402         * Control.cs: If Rectangle.Empty is passed to Invalidate, use
403         ClientRectangle instead.  [Fixes bug #82838]
404
405 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
406
407         * SplitContainer.cs: We can't reset Visible on every layout because
408         someone may have set Visible = false explicitly on a SplitterPanel.
409         Make sure when we switch orientation the SplitterDistance does not
410         change.  Fixes two failing tests.
411
412 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
413
414         * TreeView.cs: Use MeasureTextInternal instead of MeasureText in
415         TextRenderer, since the latter is only available in 2.0.
416
417 2007-09-13  Ivan N. Zlatev <contact@i-nz.net>
418
419         * Cursor.cs: Fix Cursor.Current to apply Cursor.Default.
420         * SplitContainer.cs: Implement FixedPanel layouting.
421
422 2007-09-12  Andreia Gaita  <avidigal@novell.com>
423
424         * WebBrowserBase.cs: setup shutdown routine
425
426 2007-09-12  Andreia Gaita  <avidigal@novell.com>
427
428         * Application.cs: Let keyboard events that are targetted 
429                 to non-mwf windows hosted inside mwf (as in, webbrowser),
430                 propagate properly. Fixes keyboard handling on the webbrowser.
431
432 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
433
434         * ListView.cs: When handling MouseUp event and we are 
435         highligting a node with the mouse right button, don't trigger
436         Before/AfterSelecting event, since we are not actually selecting
437         the node.
438
439 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
440
441         * TreeView.cs: When editing a node, modify the edit text box
442         depending on the text length (as you are typing), like MS does.
443
444 2007-09-12  Jonathan Pobst  <monkey@jpobst.com>
445
446         * ToolStrip.cs: Fixup preferred size calculations for vertical toolbars. 
447         Override GetPreferredSizeCore to perform calculations.  Remove custom
448         autosize logic.  [Fixes bug #82739]
449
450 2007-09-12  Jonathan Pobst  <monkey@jpobst.com>
451
452         * TextBoxBase.cs: Modified should default to false.
453
454 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
455
456         * Control.cs: Update the anchoring distances even when layout is supspended.
457         Patch provided by George fixes bug #82805.
458
459 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
460
461         * Control.cs: Provide a setter for ExplicitHeight.
462         * TextBoxBase.cs: Now that we have the implementation for explicit heights,
463         remove the hacks in here for requested_height.
464         [Fixes bug #82749]
465
466 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
467
468         * ScrollBar.cs: Fix an issue reported on the lists where setting a scrollbar's
469         Maximum to lower that its current Value caused an ArgumentException by setting
470         the Value to the new Maximum.
471
472 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
473
474         * ThemeWin32Classic.cs: Math is hard!  Fix some math so that the TrackBar
475         handle moves to the closest tick when it is being dragged.
476         [Fixes bug #82751]
477
478 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
479
480         * ToolStripManager.cs: When we have added MDI buttons onto a MenuStrip, we
481         can't let them count as real items when calculating where to merge in the
482         user's items.  [Fixed bug #82786]
483
484 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
485
486         * ToolStripMenuItem.cs: Add a parent type check so we don't crash on people
487         who want to add a menu item directly onto a toolstrip.
488         [Fixes bug #82775, part II]
489
490 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
491
492         * StatusStrip.cs: Synchronize SetDisplayedItems with the ToolStrip version.
493         * ToolStrip.cs: If a ToolStripItem set to not visible is added to a ToolStrip,
494         don't set it to available.
495         * ToolStripItem.cs: When Visible is changed, tell the owner to perform a layout.
496         [Fixes bug #82727, part II]
497
498 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
499
500         * StatusStrip.cs: Change item placement to None if not visible.
501         * ToolStripItem.cs: Invalidate when InternalVisible changes.
502         These should have been committed to fix 82723, but I missed them.
503
504 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
505
506         * ToolStrip.cs: Make sure ItemClicked is raised before the ToolStripItem's
507         Click, and that it is only called once.
508         * ToolStripMenuItem.cs: Call OnClick even when there are dropdown items.
509         * ToolStripDropDownItem.cs: Override HandleItemClick so dropdowns stay
510         dropped down.
511         [Fixes bug #82775]
512
513 2007-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
514
515         * ColumnHeaderSample.cs: Use 5 pixels as extra height instead of 8
516         to match .Net.
517         * ThemeWin32Classic.cs: For the columns text, use 5 pixels as left padding
518         instead of 8, just like above. Partially fixes #82734.
519
520 2007-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
521
522         Patch by Ernesto Carrea <equistango at gmail.com>. Partially 
523         fixes #82734.
524
525         * ListView.cs: Remove extra space between rows in Details view (match
526         .Net). 
527         * ThemeWin32Classic.cs: Header text should use ListView.Font, not
528         the DefaultFont.
529
530 2007-09-08  Gert Driesen  <drieseng@users.sourceforge.net>
531
532         * Application.cs: Modified ProductVersion to return value of
533         AssemblyInformationVersion if available, and fallback to assembly
534         version. Fixes bug #82746. Code formatting.
535         * BindingSource.cs: Remove NIE from Dispose, and mark it MonoTODO
536         instead.
537
538 2007-09-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
539
540         * Control.cs: When updating ZOrder for a child control,
541         take into account the implicit ones (we need it in our controls
542         using them). Fixes #82642.
543
544 2007-09-07  Jonathan Pobst  <monkey@jpobst.com>
545
546         * ToolStripItem.cs: Add support for animated images.
547         [Fixes bug #82726]
548
549 2007-09-07  Jonathan Pobst  <monkey@jpobst.com>
550
551         * ToolStrip.cs: Make sure we aren't drawing anything that isn't 
552         visible.  [Fixes bug #82727]
553
554 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
555
556         * ToolStripItem.cs: If AutoSize changes the size of our item, invalidate
557         so we repaint using the new size.  [Fixes bug #82723]
558
559 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
560
561         * TreeView.cs: If ShowLines is true, we should ignore the FullRowSelect
562         option.  [Fixes bug #81779]
563
564 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
565
566         * TreeView.cs: Override HandleClick because the StandardClick style is
567         set to false.  According to MSDN (and testing), the click events should
568         only be raised when the click occurs on a TreeNode.  [Fixes bug #81739]
569
570 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
571
572         * ToolStripTextBox.cs: Invalidate our textbox when it loses focus, so
573         the border will disappear.  Fixes reopened #82653.
574
575 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
576
577         * Control.cs: If the control is autosize, and its preferred size changes
578         when it lays out its children, tell its parent so it can be re-layed out.
579         Fixing some of the fallout from r85433.
580
581 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
582
583         * ThemeWin32Classic.cs: Fix a NRE caused by r85427 because RadioButton
584         and CheckBox share some code.
585
586 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
587
588         * TrackBar.cs: Only call OnScroll if we actually changed the Value of
589         the TrackBar, not every mouse move.  [Fixed bug #82718]
590
591 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
592
593         * ThemeWin32Classic.cs: Allow a CheckBox to be rendered like a Button
594         under 2.0 rendering.  [Fixes bug #82657]
595
596 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
597
598         * TreeView.cs: If we found a TreeNode to display a context menu, but
599         it doesn't have one to show, let the TreeView display its menu
600         instead.  [Fixes bug #82680]
601
602 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
603
604         * ToolStripTextBox.cs: TextBox no longer call OnPaint, we need to use
605         OnPaintInternal instead.  Give the internal TextBox a Border property
606         so it can draw itself more correctly.  [Fixes bug #82653]
607
608 2007-09-06  Zoltan Varga  <vargaz@gmail.com>
609
610         * HtmlHistory.cs HtmlWindow.cs HtmlWindowCollection.cs ListBindingHelper.cs WindowsFormsSection.cs WindowsFormsSynchronizationContext.cs: Stubs for missing 2.0 classes.
611
612 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
613
614         * ComboBox.cs: Adjust combobox button state to reflect current state when
615         back to enabled = true. Fixes first issue of #82654.
616
617 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
618
619         * Control.cs: Fix last patch regression, prevent forms to update zorder when
620         setting visible property.
621
622 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
623
624         * Control.cs: Update zorder after control creation in SetVisibleCore, it 
625         fix zorder for controls initially created as non visible. Fixes #82667.
626
627 2007-09-04  Everaldo Canuto  <everaldo@simios.org>
628
629         * ThemeWin32Classic.cs: Adjust checkbox light color to ControlLightLight to
630         mimic win32 look. Fixes #82656.
631
632 2007-09-01  Zoltan Varga  <vargaz@gmail.com>
633
634         * FileDialogCustomPlace.cs FileDialogCustomPlacesCollection.cs: 
635         Stubs for new net 3.5 classes.
636
637 2007-08-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
638
639         * ListViewItem.cs: In ListViewItemCollection operations calculate
640         Layout for owner as well as invalidate it. Fixes part of #82642.
641
642 2007-08-31  Jonathan Pobst  <monkey@jpobst.com>
643
644         * ToolStripItem.cs: Take Parent/Owner's Enabled state in to account
645         when returning Enabled.  [Fixes bug #82651]
646
647 2007-08-30  Everaldo Canuto  <everaldo@simios.org>
648
649         * ToolBar.cs: Fix button size for non flat toolbars. Fixes #82368.
650
651 2007-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
652
653         * ListView.cs: Put item padding info in a single place
654         (Theme.ListViewItemPaddingWidth) to have working AutoResize on
655         columns again.
656         * ThemeWin32Classic.cs:
657         * Theme.cs: Likewise.
658
659 2007-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
660
661         * ListView.cs: When a ListViewSubItem instance is invalidated,
662         invoke Invalidate on parent ListViewItem, not parent ListView.
663         Fixes #81570.
664
665 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
666
667         * ListView.cs, ListViewItem.cs: corcompare stuffs.
668
669 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
670
671         * BindingMemberInfo.cs: Implement == and != operators.
672
673 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
674
675         * HtmlElementEventArgs.cs: Implement properties.
676
677 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
678
679         * HtmlElementErrorEventArgs.cs, HtmlElementErrorEventHandler.cs: Added.
680
681 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
682
683         * TabControl.cs: I was looking into the MonoTODO on TabPageCollection.
684         Add (string,string,string) to implement the imagekey.  It turns out, we
685         use the requested imagekey whereas .Net does not.  So I broke ours to match
686         theirs.  :(
687
688 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
689
690         * Form.cs, UserControl.cs: Override ValidateChildren, AutoValidate.
691
692 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
693
694         * ContainerControl.cs: Implement ValidateChildren and new Validate overload.
695
696 2007-08-29  Gert Driesen  <drieseng@users.sourceforge.net>
697
698         * FolderBrowserDialog.cs: Set Tag of newly created node, and keep it
699         up-to-date. Fixes bug #82618.
700
701 2007-08-29  Everaldo Canuto  <everaldo@simios.org>
702
703         * TextBoxBase.cs: Call CalculateDocument after changes Lines property to
704         reflect document changes. Fixes #82367.
705
706 2007-08-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
707
708         * ListView.cs: Add/fix some override differences between 1.1 and 2.0,
709         as well as add new ones. This should make work the BackgroundImage
710         property for ListView again.
711
712 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
713
714         * DataGrid.cs, DataGridViewButtonColumn.cs, DataGridViewCheckBoxColumn.cs,
715         DataGridViewComboBoxColumn.cs, DataGridViewImageColumn.cs, DataGridViewLinkColumn.cs,
716         DataGridViewTextBoxColumn.cs, ToolTip.cs: corcompare stuffs.
717
718 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
719
720         * Control.cs, XPlatUI.cs, XPlatUIDriver.cs, XPlatUIWin32.cs: Implement
721         IsKeyLocked.
722
723 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
724
725         * Cursor.cs: Add HotSpot, hook into XPlatUI.GetCursorInfo.
726         * XPlatUIWin32.cs: Implement hotspot lookup in GetCursorInfo.
727
728 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
729
730         * RadioButton.cs: Use 2.0 rendering.  Use base implementation of TextAlign.
731         * Theme.cs, ThemeWin32Classic.cs: Implement 2.0 rendering for RadioButton.
732
733 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
734
735         * CursorConverter.cs: Implement conversion to InstanceDescriptor.
736
737 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
738
739         * GridEntry.cs: Implement GetService.
740
741 2007-08-27  Jonathan Pobst  <monkey@jpobst.com>
742
743         * LabelEditTextBox.cs, TreeView.cs: After hiding the textbox used
744         for label editting, make sure we focus back on the TreeView.
745         [Fixes bug #82590]
746
747 2007-08-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
748
749         * ListView.cs: Add some 2.0 overrides.
750
751 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
752
753         * Form.cs: Uses opacity var instead of Opacity property in CreateHandle
754         because getter dont returns right value before handle creation. Thanks 
755         to George. Fixes #82569.  
756
757 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
758
759         * Theme.cs: Revert last patch, it causes error under win32. 
760
761 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
762
763         * Theme.cs: Uses Environment.SpecialFolder.DesktopDirectory instead of 
764         Environment.SpecialFolder.Desktop in Places method, Desktop returns the 
765         logical Desktop rather than the physical file system location. Fixes #82603. 
766
767 2007-08-26  Everaldo Canuto  <ecanuto@novell.com>
768
769         * MessageBox.cs: Add clipboard copy (ctrl+c) to messagebox. Thanks Andy Hume
770         for the patch. Fixes #82568.
771
772 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
773
774         * ListView.cs: Add a pair of missing 2.0 ListViewItemCollection.Insert
775         methods.
776
777 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
778
779         * ListViewInsertionMark.cs: New stubbed class.
780
781 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
782
783         * FolderBrowserDialog.cs: When adding folder, immediately create the
784         directory with temporary name and rename the directory when editing
785         finishes. This matches MS. Ensure the node for the new folder is 
786         selected and LabelEdit is disabled, when editing is either finished
787         or cancelled.
788
789 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
790
791         * TreeView.cs: When editing label of node, ensure node is visible.
792
793 2007-08-25  Ivan N. Zlatev  <contact@i-nz.net>
794
795         * PropertyGridView.cs: Set the value only if it has changed.
796
797 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
798
799         * ListView.cs: Some more code refactoring to add support sorting
800         with groups (now for Details view). Remove unused code also.
801
802 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
803
804         * NodeLabelEditEventArgs.cs: EndEdit immediately when CancelEdit is called.
805         Not a big fan of reacting immediately to a field in an EventArg, but that's
806         the way it's done.  (This is part of the previous commit that got left out.)
807
808 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
809
810         * FolderBrowserDialog.cs: Removed need for separate description field.
811         Replaced "" with string.Empty. Fixed tabindex. Ensure OK button
812         has focus when dialog box is displayed again, regardless of what
813         button was pressed the previous time. Set RootFolder and SelectedPath
814         each time dialog box is displayed. This ensures the treeview is
815         refreshed, and fixes bug #82579. Do no hide selected node in TreeView
816         when it does not have focus. Added support for more special folders.
817
818 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
819
820         * TreeView.cs: Create a CancelEdit method.  Clone the edit_args in EndEdit
821         before calling AfterLabelEdit.  If the user calls BeginEdit in that event,
822         it resets the edit_args.
823         * TreeNode.cs: Call CancelEdit if the user passes cancel = true to EndEdit.
824         [Fixes bug #82577]
825
826 2007-08-24  Gert Driesen  <drieseng@users.sourceforge.net>
827
828         * FolderBrowserDialog.cs: Modifies form caption and text of new folder
829         button to match MS. Provide more meaningful exception message for
830         invalid RootFolder value. Use zero-length string when SelectedPath
831         is set to null. Allow non-rooted paths in SelectedPath, but ignore
832         them in FolderBrowserTreeView. Allow folders to be created in
833         RootFolder. Fixes bug #82576.
834
835 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
836
837         * ListView.cs: Correctly compute the layout_ht (height) when using groups,
838         since we need to take into account the group headers and the margin
839         between them.
840         * ListViewGroup.cs: Add a rows field to store the number of rows per
841         group.
842
843 2007-08-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
844
845         * DateTimePicker.cs: The MS' MTB has a really stupid year formatting.
846           Anyways, let's just follow the lead.
847
848 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
849
850         * CheckBox.cs: Set the AutoSizeMode to GrowAndShrink.
851         * Form.cs, GroupBox.cs: Don't skip Right or Bottom anchored 
852         controls in GetPreferredSizeCore.
853         * ThemeWin32Classic.cs: Tweak text drawing of CheckBoxes.
854         [Fixes bug #82488]
855
856 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
857
858         * PrintDialog.cs: Need to instantiate the form variable here too.
859
860 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
861
862         * ListView.cs: Do some reorganization to support sorting in groups,
863         by doing the layout sequentially in ListView.Items. Also add support
864         for the Default Group, which should be available for items with no
865         group assigned.
866         * ListViewGroup.cs: Add support for DefaultGroup. Include new members
867         for storing layout info also.
868         * ListViewGroupCollection.cs: Add a DefaultGroup as part of the
869         collection, as well as providing internal members to do a traversal
870         including the default group (needed when doing layout/drawing).
871         * ThemeWin32Classic.cs: When drawing group headers use internal
872         ListViewGroupCollection members to take into account the default
873         group.
874
875 2007-08-23  George Giolfan  <georgegiolfan@yahoo.com>
876
877         * FlowLayoutPanel.cs: Add GetPreferredSizeCore.  [Fixes bug #82537]
878
879 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
880
881         * TreeView.cs: IsInputKey: don't ask for any keys if the handle hasn't
882         been created.  If handle is created, we want arror keys.  If we are editing
883         a node, we want things like enter, esc, home, end, page up, page down.
884         Allows Esc to work for FolderBrowserDialog.
885
886 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
887
888         * ColorDialog.cs, FontDialog.cs: Set the form's CancelButton so that
889         they close when ESC is pressed.  Thanks Andy!
890
891 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
892
893         * CommonDialog.cs: Do not instantiate form, leave that for derived classes.
894         This way we can tell if this is a CommonDialog provided with mono, or one
895         that is being implemented outside by a developer.  If it is an external one,
896         the developer is responsible for showing their own form.  We were showing
897         our blank form after the developer showed his.
898         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs, FontDialog.cs,
899         PageSetupDialog.cs: Instantiate form variable in our constructor.
900         [Fixes bug #82531]
901
902 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
903
904         * ListBox.cs, ListView.cs, TreeView.cs: Override IsInputCharInternal
905         and always return true.  [Fixes bug #81616]
906
907 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
908
909         * TextBoxBase.cs: Allow 2.0 AutoSize to change the height of the
910         TextBox.  [Fixes bug #82549]
911
912 2007-08-23  Gert Driesen  <drieseng@users.sourceforge.net>
913
914         * FileDialog.cs: When Save/Open is clicked and no filename is selected
915         or entered then do not close the dialog. Fixes bug #82539. Removed
916         CWLs.
917
918 2007-08-22  Everaldo Canuto  <ecanuto@novell.com>
919
920         * FileDialog.cs: Create UpdateRecentFiles and move the recent files refresh
921         code to this method. It is calling every time filter changes. This method
922         will help to fix the bug #80887.
923
924 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
925
926         * CheckBox.cs: Implement AutoSize calculation.
927
928 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
929
930         * CheckBox.cs: Use new 2.0 rendering for 2.0.
931         * Theme.cs: Method declarations for 2.0 rendering path.
932         * ThemeWin32Classic.cs: 2.0 rendering implementation for CheckBox.
933
934 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
935
936         * ListViewGroupCollection.cs: Fix a typo of the previous patch.
937
938 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
939
940         * ListViewGroupCollection.cs: Implement AddRange the right way, to
941         only call Redraw on the parent one time.
942
943 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
944
945         * DataGridViewRowHeaderCell.cs, DataGridViewColumnHeaderCell.cs: Implemented
946           GetClipboardContent.
947         * DataGridViewCell.cs: Implemented GetClipboardContent,
948           GetEditedFormattedValue, GetFormattedValue.
949         * DataGridView.cs: Implemented GetClipboardContent, TopLeftHeaderCell.
950
951 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
952
953         * TableLayoutStyleCollection.cs: corcompare fix.
954
955 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
956
957         * DataObject.cs: Implemented retrieval of convertible / not convertible
958           objects.
959
960 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
961
962         * ToolStripItem.cs: When changing the item's text, invalidate before we resize
963         ourselves.  This ensures the entire old bounds are repainted, in case our new
964         size is smaller.  [Fixes bug #82518]
965
966 2007-08-20  Everaldo Canuto  <ecanuto@novell.com>
967
968         * XplatUIX11.cs: Apply patch from #81588, it makes use of PointerMotionHintMask
969         flag to make fast handle of mouse events, without this the mouse move is
970         handled in some manner, whether it is a mouse move or not. Fixes #81588.
971
972 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
973
974         * ListView.cs: When doing layout calculations don't use a ref
975         param to keep the current item; instead use its Index value (this 
976         is specially important when doing the layout with Groups
977         and Items being sparse). Also don't take into account items added to
978         the Group but not yet added to the main ListView.Items collection.
979
980 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
981
982         * ListViewGroupCollection.cs: Forgot to mimic an issue
983         in the indexer (don't assign the ListView owner for new values).
984
985 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
986
987         * ListViewGroupCollection.cs: Make the string indexer use
988         the int based indexer to re-use code, instead of duplicate the code.
989         Also Redraw as needed and take into account null values.
990
991 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
992
993         * StatusStrip.cs: Make sure the item's parent gets set in SetDisplayedItems.
994         [Fixes bug #82481]
995
996 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
997
998         * ToolStrip.cs: Add some logic to un-focus controls in ToolStripControlHosts
999         when other buttons are clicked or navigated to.
1000
1001 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1002
1003         * XplatUIX11.cs: Treat toolwindows as if they had no window manager, since
1004           it's XplatUIX11 that attaches them.
1005
1006 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1007
1008         * DataGridView.cs: If a column has been added, recreate the editing row.
1009           Fixes #82226.
1010
1011 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1012
1013         * TextControl.cs: Use Math.Max instead of Math.Min when deciding the length
1014           of the tag to draw. Makes disappearing text show up again.
1015
1016 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1017
1018         * StatusBar.cs: Take into account any icons when a panel has AutoSize =
1019           Contents. Fixes #82487.
1020
1021 2007-08-19  Andreia Gaita  <avidigal@novell.com>
1022
1023         * Added HtmlElement.cs, HtmlElementCollection.cs, 
1024           HtmlElementEventArgs.cs, HtmlElementEventHandler.cs
1025           
1026 2007-08-19  Andreia Gaita  <avidigal@novell.com>
1027
1028         * BindingSource.cs: Implement this, dispose and getenumerator.
1029         * DataGridViewRowCollection.cs: Move the InvalidOperationException
1030         out of AddInternal, throw it only on public Add calls. The 
1031         UsingWebBrowser sample was blowing up with this when setting the
1032         DataSource after adding DataBindings, so it's likely that .net
1033         only throws this exception when Add is called directly. 
1034         
1035         * ToolStripControlHost.cs: Return the hosted control's text
1036         property, and not the ToolStripItem one (it would always return
1037         the initial value).
1038         
1039         * HtmlDocument.cs: Implement GetElementById and All
1040         * WebBrowser.cs: Remove exception on set_DocumentStream.        
1041
1042 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1043
1044         * Form.cs: Fix the max and min value for opacity (0~1).
1045
1046 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1047
1048         [Fixes #80118]
1049         * DataGridTableStyle.cs: Default header font is now null, on getter it 
1050         returns datagrid font when is null. On setter permits null.
1051
1052         * DataGrid.cs:
1053         - When ResetHeaderFont set header font to null.
1054         - On EndInit set grid_style.DataGrid.
1055
1056 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1057
1058         * TabControl.cs: Fix regression in default padding x.
1059
1060 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1061
1062         * TabControl.cs: Fix tab page text area removing padding. Fixes #82471.
1063
1064 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1065
1066         * TabControl.cs: Fix first tab drawing, when selected it must have x = 0
1067         not 2. Fixes #82229.
1068
1069 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1070
1071         * TabControl.cs: Fix tab size when image height is less than text height.
1072         Partially fixes #81837.
1073
1074 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1075
1076         * Form.cs: Add WS_EX_CONTROLPARENT to forms to make it selectable using 
1077         "alt + tab". It works only for Win32, for X11 theres no way to remove window
1078         from taskbar and keep it on "alt_tab". Fixes #81722.
1079
1080 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1081
1082         * XplatUIX11.cs: Apply patch from Jurek Bartuszek to fix DrawReversibleFrame
1083         and DrawReversibleLine, also apply same behavior to FillReversibleRectangle. 
1084         Fixes #80877 and #79418.
1085
1086 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1087
1088         * MenuAPI.cs: Fix popup menu position when the size is larger than distance 
1089         between position and one of the screen borders. Fixes #82349.
1090
1091 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1092
1093         * MessageBox.cs: When there is no form that invoked the MessageBox, shows
1094         the MessageBox in the taskbar. Fixes #82457.
1095
1096 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1097
1098         * MessageBox.cs: Fix form size when icon is set and text height is bigger
1099         than icon. Fixes #82468.
1100
1101 2007-08-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1102
1103         * ThemeWin32Classic.cs: A FixedToolWindow has border size 3.
1104         * InternalWindowManager.cs: Change HandleCalcSize to return a boolean value
1105           if handled or not. Implement WM_NCCALCSIZE for WParam == 0 as well.
1106           Refactored HandleNCCalcSize somewhat to avoid code duplication.
1107         * Form.cs: Add is_clientsize_set, set in set_ClientSize, used by
1108           FormBorderStyle to decide if we're calculating a new size from the
1109           client size or not. CreateParams: Don't fake tool windows, only the X11
1110           backend manages toolwindows manually.
1111
1112 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1113
1114         * Form.cs: Only reset is_visible if !IsDisposed to prevent an
1115         ObjectDisposedException.
1116
1117 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1118
1119         * Form.cs: Reset is_visible back to true after OnLoad.  Setting this
1120         in OnLoad should not have any effect.  [Fixes bug #82470]
1121
1122 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1123
1124         * ToolTip.cs: Add a hack to ToolTipWindow so it will still size and
1125         paint for controls that create their own ToolTipWindow instead of
1126         going through ToolTip.
1127
1128 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1129
1130         * ToolTip.cs: Make Hide internal instead of public to match MS API.
1131
1132 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1133
1134         * ListViewGroupCollection.cs: Use generic List instead of an
1135         ArrayList, since this collection is 2.0 only.
1136
1137 2007-08-17  Jeffrey Stedfast  <fejj@novell.com>
1138
1139         * ToolTip.cs (Hide): Made public to make the build work (should
1140         this not be public?).
1141
1142 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1143
1144         * ToolBar.cs, ToolStrip.cs, TreeView.cs: Use a ToolTip instead of a
1145         ToolTipWindow.
1146         * ToolTip.cs: Add an internal Visible property to facilitate transition.
1147
1148 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1149
1150         * DrawToolTipEventArgs.cs, DrawToolTipEventHandler.cs, PopupEventArgs.cs,
1151         PopupEventHandler.cs: Make these internal for 1.1.
1152         * ThemeClearlooks.cs, ThemeWin32Classic.cs: Use TextRenderer, and modify to not
1153         use ToolTipWindow internals.
1154         * ToolTip.cs: Add 2.0 modal Show methods.  Had to move a lot of stuff around to
1155         support this.  A lot of stuff in the ToolTipWindow got moved to the ToolTip.
1156
1157 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1158
1159         * X11Dnd.cs: Add a null check.
1160
1161 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1162
1163         * X11Dnd.cs: MwfWindow: Try to load the control directly from the handle if
1164           nothing else succeeds. Fixes #82453.
1165
1166 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1167
1168         * XplatUIWin32.cs: PaintEventStart: validate the entire source client
1169           rectangle if we're painting to another window than the one the paint
1170           message was generated on. Simplify the code somewhat, which makes
1171           PaintEventEnd also simpler.
1172
1173 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1174
1175         * Control.cs: When changing parent of a form, let the form decide whether
1176           XplatUI.SetParent should be called or not.
1177         * Form.cs: ChangingParent: only call XplatUI.SetParent if we're not
1178           recreating the handle. If the new parent's handle isn't created, don't
1179           recreate our handle, just destroy it. CreateParams: Check if the
1180           parent's handle is created before fetching it.
1181
1182 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1183
1184         * Control.cs, Form.cs, InternalWindowManager.cs, MainMenu.cs, MdiClient.cs:
1185           Update calls to PaintEventStart/End to take a Message argument.
1186         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Update PaintEventStart/End to
1187           take a Message argument.
1188         * XplatUIWin32.cs, XplatUIX11.cs: Update PaintEventStart/End to take a
1189           Message argument, and handle the case where we don't paint to the window
1190           for which the paint message was generated.
1191
1192 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1193
1194         * XplatUIWin32.cs: Don't call Win32GetLastError directly, use
1195           Marshal.GetLastWin32Error. Plug nasty memory leak in
1196           PaintEventStart/End, we were creating a DC we weren't releasing.
1197
1198 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1199
1200         * ListView.cs: Add Groups support in Details view. Also have a small
1201         method to do the layout of the group header. Don't use a separate
1202         method to do the groups calculation in Icons view, since our methods
1203         are now a little simpler.
1204         * ListViewGroup.cs: Use the more accurate `HeaderBounds' name than
1205         `Bounds'.
1206         * ThemeWin32Classic.cs: Likewise.
1207
1208 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
1209
1210         * Application.cs: Add FilterMessage method and rework our message loop
1211         logic to use it.
1212
1213 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
1214
1215         * Application.cs: Add some methods and stub a few methods that are
1216         pretty much never used.
1217
1218 2007-08-15  Jonathan Pobst  <monkey@jpobst.com>
1219
1220         * TreeNode.cs: Add some serialization methods.
1221
1222 2007-08-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1223
1224         * ListView.cs: In ListViewItemCollection have a 
1225         'is_main_collection' field to not modify ListViewItem.ListView
1226         when using it as ListViewGroup.Items (and not ListView.Items)
1227         and also don't modify selection state (.Net behaviour). 
1228         Instead, set group for items contained in a ListViewGroup.Items collection.
1229         * ListViewItem.cs: Simplify some code in Group setter.
1230         * ListViewGroup.cs: use the new .ctor to pass the current instance
1231         to the ItemsCollection.
1232         * ListViewGroup.cs: Set the ListView property for ListViewGroup
1233         instances when adding/removing. Also make Remove use RemoveAt, which
1234         should perform better.
1235
1236 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
1237
1238         * Message.cs, TabControl.cs, TextBox.cs, TextBoxBase.cs: Hide some 2.0 API
1239         that crept into the 1.1 profile.
1240
1241 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
1242
1243         * ToolBarButton.cs: Implement ImageKey.
1244
1245 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
1246
1247         * ToolBar.cs: Implement ScaleControl/ScaleCore.
1248
1249 2007-08-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1250
1251         * PictureBox.cs: OnAnimateImage/UpdateAnimateImage: Check if handle is still
1252           created, it might have gotten destroyed since we last checked. Fixes
1253           #82405.
1254
1255 2007-08-11  Jonathan Pobst  <monkey@jpobst.com>
1256
1257         * ToolTip.cs: Remove mouse in control check from mouseleave handler so
1258         tooltip will hide when mouse is moved off the control.
1259         [Fixes bug #82407]
1260
1261 2007-08-11 Andreia Gaita <avidigal@novell.com>
1262
1263         * WebBrowserBase.cs, WebBrowser.cs: add implementation
1264         using Mono.Mozilla for loading and navigating webcontrol
1265         with xulrunner.
1266         The initial implementation was done on 
1267         /trunk/mozembed/tests/browser , and copied here.
1268
1269 2007-08-11  Gert Driesen  <drieseng@users.sourceforge.net>
1270
1271         * ThemeWin32Classic.cs: On 2.0 profile, use ForeColor and BackColor of
1272         ToolTipWindow for drawing the tooltip. Fixes bug #82408.
1273
1274 2007-08-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1275
1276         * DataGridView.cs: Add support for an editing row. Fixes #82226.
1277           RowTemplateFull: throw an exception if a column doesn't have a template.
1278         * DataGridViewRowCollection.cs: AddInternal: if there are any editing rows,
1279           add the row just before it.
1280         * DataGridViewTextBoxCell.cs: Don't paint cells which are in edit mode as
1281           selected.
1282         * DataGridViewSelectedRowCollection.cs: Don't return the editing row. Add a
1283           DataGridView field to be able to reach the grid's editing row.
1284
1285 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
1286
1287         * ToolTip.cs: If the control's handle hasn't been created when it has a
1288         tooltip set on it, don't check to see if we need to show the tooltip.  This
1289         check was causing the control's handle to be created.
1290         [Fixes bug #82399]
1291
1292 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
1293
1294         * TextBoxBase.cs: Fix SelectionLength when no text selected to match MS:
1295                                         1.1             2.0
1296         Handle Not Created      -1              0
1297         Handle Created          0               0
1298         [Fixes bug #82371]
1299
1300 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
1301
1302         * ToolTip.cs: Hide the tooltip if the control is clicked to match MS behavior.
1303         [Fixes bug #82348]
1304
1305 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
1306
1307         * DrawToolTipEventArgs.cs: Don't dispose a brush we got from the respool.
1308         * ToolTip.cs: Implement some properties and owner draw.
1309
1310 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1311
1312         * DataGridView.cs: OnPaint: don't set scrollbar visibility to false then
1313           show them again, since setting visibility causes a paint, causing an
1314           endless loop (instead use a temporary and set it all when it's known if
1315           they should be shown or not). Fixes #79265.
1316
1317 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1318
1319         * DataGridView.cs: Only do a full column/row selection if a header was
1320           clicked and we're in Column/RowHeader selection mode. If shift and ctrl
1321           isn't pressed, deselect everything before selecting something.
1322
1323 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1324
1325         * DataGridView.cs: Fix SelectedRows and SelectedColumns to match MS
1326           behaviour according to bug #81075 - they are returned in the order they
1327           are selected. Fix HitTest to check if the point is within any of the
1328           headers. Allow for row/column selection when in ColumnHeader or
1329           RowHeader selection mode. Add SetSelected[Column|Row]CoreInternal for
1330           the row and column to call when their selected state changes, and
1331           updated selected_[rows|columns] whenever SetSelected* is called.
1332         * DataGridViewBand.cs: Initialize isRow correctly. Call
1333           SetSelected[Row|Column]CoreInternal when the selected state changes, and
1334           add a SelectedInternal to avoid StackOverflows.
1335         * DataGridViewColumn.cs, DataGridViewRow.cs: If DGV is ReadOnly, we're also
1336           ReadOnly no matter what.
1337         * DataGridViewSelectedColumnCollection.cs,
1338           DataGridViewSelectedRowCollection.cs: Add an InternalAddRange that adds
1339           the items in reverse order (just as MS does...)
1340
1341 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
1342
1343         * Application.cs: Only release menustrips if Alt (MenuKey) is pressed by
1344         itself, not part of a mnemonic.  [Fixes bug #82378]
1345
1346 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1347
1348         * DataGridView.cs: BeginEdit: don't allow editing of readonly cells.
1349         * DataGridViewCell.cs: Implement ReadOnly better: the cell is ReadOnly if
1350           the DGV, the column, the row, or the cell itself is readonly.
1351
1352 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
1353
1354         * ThemeNice.cs: Use XplatUI.RunningOnUnix instead of checking
1355         OSVersion.Platform.
1356         * FileDialog.cs: Same.
1357         * TextRendered.cs: Same.
1358         * FolderBrowserDialog.cs: Same.
1359         * TextBoxBase.cs: Same.
1360         * Application.cs: Same.
1361         * Cursors.cs: Same.
1362         * ThemeClearLooks.cs: Same.
1363
1364 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
1365
1366         * XplatUI.cs: Added RunningOnUnix property to be used by controls
1367         instead of duplicating these checks everywhere.
1368         * FileDialog.cs: Use case-insensitive comparison for populating the
1369         DirComboBox when not running on unix. Fixes bug #82385.
1370         * OpenFileDialog.cs: to match MS, change label of DirComboBox to 
1371         "Look in".
1372
1373 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1374
1375         * DataGridView.cs: SelectedRows: we need to check if selectionMode is
1376           FullRowSelect (not FullColumnSelect). Fixes #81075. Implemented
1377           BeginEdit, EndEdit, SetSelected<Cell|Row|Column>Core. Implemented row,
1378           cell and column selection with ctrl and shift pressed. Call the correct
1379           BeginEdit/EndEdit whenever we start/end editing. Move painting code to
1380           the corresponding virtual method (PaintBackground to paint background,
1381           etc).
1382         * DataGridViewCell.cs: Implement Selected correctly, we're selected if
1383           either the column, row or the cell itself is selected.
1384         * DataGridViewRowCollection.cs: Use DGV.OnRowsAddedInternal instead of
1385           OnRowsAdded.
1386         * DataGridViewRow.cs: Moved some of the painting code from DataGridView
1387           here. When the row is selected, don't select all cells. Each cell now
1388           queries the row to see if the row is selected.
1389
1390 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1391
1392         * DataGridViewColumn.cs: Throw if the SortMode conflicts with DataGridView's
1393           SelectionMode.
1394
1395 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1396
1397         * ListView.cs: In ListViewItemsCollection check that owner is
1398         not null before trying to access it (this happens quite often
1399         using Groups). Also don't duplicate calls by calling CollectionChanged
1400         method.
1401
1402 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
1403
1404         * ToolStrip.cs: Record if we were activated by mouse or keyboard.  Redraw
1405         when we are dismissed to clear keyboard mnemonics.
1406         * MenuStrip.cs, ToolStripDropDown.cs, ToolStripItem.cs, 
1407         ToolStripMenuItem.cs: Record if we were activated by mouse or keyboard.
1408         * ToolStripItemTextRenderEventArgs.cs: Draw mnemonic underlines if menu
1409         was activated by keyboard or the OS tells us to always draw them.
1410         * ToolStripManager.cs: Setup storage for activated by mouse or keyboard.
1411         [Fixes bugs #82376, #82377]
1412
1413 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
1414
1415         * Control.cs: If no one accepts a mnemonic, let the MenuStrip have a 
1416         shot at having it because Alt was pressed.
1417         * MenuStrip.cs: When handling Alt, don't select a SystemMenuItem, select
1418         the first real menu item.
1419         * ToolStrip.cs: Don't crash when looking for a ToolStripItem to handle
1420         a mnemonic if Text is null.
1421         [Fixes bug #82374]
1422
1423 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1424
1425         * ListView.cs: In ListViewItemCollection.AddItem, don't do a linear
1426         search do check whether the item is already contained in the
1427         collection or not; instead check if the owner of the item is the same
1428         as ours. Also, remove a redundant check in the same method. 
1429
1430 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
1431
1432         * Control.cs: Allow the clip region to be set back to null.
1433         * XplatUIWin32.cs: If we are sent a null clip region, use IntPtr.Zero.
1434         [Fixes button still showing up in bug #82370 when Show Through is turned off]
1435
1436 2007-08-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1437
1438         * GridEntry.cs: Add a null check.
1439         * PropertyGrid.cs: When checking for existing grid entries, ignore category
1440           entries. Fixes #82297.
1441
1442 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
1443
1444         * OwnerDrawPropertyBag.cs: Make the serialization constructor protected
1445         for 2.0.
1446
1447 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
1448
1449         * ListBox.cs: Implement ScaleControl.
1450
1451 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1452
1453         * Form.cs: Add a few ActiveMenu null checks. ActiveMenu might be null if we
1454           have a menu strip.
1455         * MdiWindowManager.cs: Don't create a maximized menu if the child or it's
1456           parent has a menu strip. Fixes #81689.
1457
1458 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1459
1460         * ToolTip.cs: We don't get mouse events on all platforms in the exact same
1461           moments, so apply some fuzzy logic to determine if the mouse is still
1462           inside a control or not. Fixes #82288 (for the third time).
1463
1464 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1465
1466         * Control.cs: CreateControl: create implicit children as well. Fixes #82344.
1467           Don't create the child if it has been disposed already (may happen if
1468           the user closes the form the Load event).
1469
1470 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1471
1472         * ToolTip.cs: If ReshowDelay is 0, show the tooltip immediately. Fixes
1473           #82288.
1474
1475 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1476
1477         * Control.cs: Add a null check in OnParentBindingContextChanged. The parent
1478           might call us after we've been destroyed, in which case our own private
1479           parent field is null. Fixes #82326.
1480
1481 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
1482
1483         * ToolStripDropDown.cs: Fix a failing test on X11 by adding a null
1484         check for setting the dropdown's owner.
1485
1486 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
1487
1488         * MdiClient.cs: Fix some failing tests on X11 by adding a null check
1489         before removing system menu items.
1490
1491 2007-08-02  Jonathan Pobst  <monkey@jpobst.com>
1492
1493         * MdiClient.cs, MdiWindowManager.cs: Support 2.0 Mdi MenuStrip
1494         folding.
1495         * MdiControlStrip.cs: Added.  These are the menu items used in mdi
1496         folding.
1497         * ToolStrip.cs: Add a null check to mnemonics.
1498         * ToolStripDropDownMenu.cs: When using a SystemMenuItem, there is
1499         no ConnectedArea.
1500         [Fixes most of bug #81689]
1501
1502 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1503
1504         * PropertyGrid.cs: Add a null-check. Fixes #82289/SVGPad.
1505
1506 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1507
1508         Use InitialDelay if ReshowDelay is zero. Fixes #82288.
1509
1510 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1511
1512         * DataGridViewCell.cs: EditType: returns
1513           DataGridViewTextBoxEditingControl always.
1514
1515 2007-08-01  Jonathan Pobst  <monkey@jpobst.com>
1516
1517         * TextRenderer.cs: Remove the LineLimit string format flag from the
1518         DrawString fallback method so that things like buttons that aren't
1519         tall enough to draw a full line will still draw part of the text.
1520         [Fixes part of bug #82272]
1521
1522 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1523
1524         * DataGridView.cs: Implemented AutoResizeColumn(s).
1525         * DataGridViewCellStyle.cs: Added SetAlignment, fills in a StringFormat
1526           according to the Alignment.
1527         * DataGridViewColumnHeaderCell.cs, DataGridViewTextBoxCell.cs:
1528           Implement alignment and padding when painting.
1529         * DataGridViewRow.cs: SetValues: Don't create a cell if it already
1530           exists.
1531         * DataGridViewCell.cs: Implement BorderWidths in the most primitive
1532           way.
1533         * DataGridViewColumnCollection.cs: Raise OnColumnAdded on the DGV when
1534           a column is added.
1535
1536 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
1537
1538         * TextBoxBase.cs: Use Control.ExplicitBounds instead of explicit_bounds,
1539         which is internal.
1540
1541 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
1542
1543         * ToolStrip.cs: Stub out drag and drop methods, fix some corcompare stuff,
1544         hide GetPreferredSize from public API.
1545         * ToolStripDropDown.cs: Override AllowItemReorder, fix AccessibleObject.
1546         * ToolStripItem.cs: Stub out drag and drop methods and events.
1547         * ToolStripManager.cs: Stub out Save/LoadSettings.
1548         * ToolStripOverflow.cs: Use renamed ToolStrip.GetPreferredSize.
1549         * ToolStripPanel.cs: Fix corcompare error.
1550         * ToolStripPanelRow.cs: Use renamed ToolStrip.GetPreferredSize.
1551         * ToolStripSplitButton.cs: Fix AccessibleObject stuff.
1552         * ToolStripSplitStackLayout.cs: Use renamed ToolStrip.GetPreferredSize.
1553
1554 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
1555
1556         * TextBoxBase.cs: In our new GetPreferredSizeCore, return the explicit
1557         bounds height instead of PreferredHeight.  Puts things back the way 
1558         they were for height while still fixing the width.  Fixes broken unit
1559         tests.
1560
1561 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1562
1563         * Binding.cs: Implement 2.0 constructors and add a null check.
1564
1565 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1566
1567         * DataGridViewRowCollection.cs: Allow a null DGV in the constructor,
1568           and fix row index (off by one).
1569
1570 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1571
1572         * PropertyGridView.cs: Remove debug output.
1573
1574 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1575
1576         * Control.cs: We need to reset the is_created flags when the handle is
1577           destroyed. Fixes #82187.
1578         * XplatUIWin32.cs: In GetWindowRect don't offset screen coordinates to
1579           client coordinates if the window doesn't have a parent.
1580           Win32GetParent returns the parent or the owner, and for top-level
1581           windows with no parent (but with an owner) we were calculating the
1582           location from the location of the owner.
1583         * Form.cs: Remove incorrect fix for #82187. Don't raise OnLoad if the
1584           form has been disposed.
1585         * MdiClient.cs: Add a null-check.
1586
1587 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
1588
1589         * TextBoxBase.cs: TextBoxBase reports itself at AutoSize, but doesn't
1590         actually do auto-sizing.  Override the internal GetPreferredSizeCore 
1591         so we can provide an implementation that returns the current width
1592         and preferred height.  Allows anchor = right to work with TextBox 2.0.
1593         [Fixes bug #82233]
1594
1595 2007-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1596
1597         * ListView.cs: Add support for navigating items in Groups mode, by
1598         creating a big matrix containing all rows and cols of all groups. When
1599         are in other mode than Details, pressing Up should have a similar
1600         behaviour as that one of Down (moving to the next available column if
1601         current one doesn't have an item in the requested row). Also, don't
1602         proceed to use groups if ShowGroups is false.
1603         * ListViewGroup.cs: Add an internal int field to store the starting
1604         row of the group (used by the big matrix used for navigating the
1605         ListView).
1606         * ThemeWin32Classic.cs: Don't draw headers if ListView.ShowGroups is
1607         false.
1608
1609 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
1610
1611         * ToolStripDropDown.cs: When we do Show, start with the 
1612         DefaultDropDownDirection, but if our popup menu is going to off-screen,
1613         modify the direction to keep it on screen.  [Fixes bug #82210]
1614
1615 2007-07-29  Gert Driesen  <drieseng@users.sourceforge.net>
1616
1617         * FileDialog.cs: Accept any FilterIndex value, and store it
1618         unmodified. When FilterIndex is less than 1, or greater than number
1619         of filters, then default to first filter. Only add filter extension to
1620         file if user did not specifiy an extension. When type of dialog is
1621         OpenFileDialog and DefaultExt is set, then only use filter extension
1622         if: CheckFileExists is true and no file wih the default extension
1623         exists, or CheckFileExists is false, and user specified file does not
1624         exist. When CheckFileExists is true, then add first extension of 
1625         selected filter that matches existing file. Perform checks for
1626         existing file, overwrite and create after extension has been added to
1627         file name. When CheckFileExists is true and type is SaveFileDialog,
1628         then only consider first filter extension if DefaultExt is set.
1629         When CheckFileExists is true, then ignore DefaultExt if file with that
1630         extension does not exist. Also perform check for existing file when
1631         type is SaveFileDialog. Changed some field to constants.
1632
1633 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1634
1635         * ListView.cs: Take into account the region used by header
1636         control when doing the vertical scroll (this way we invalidate
1637         the precise area, and don't get any dirty one).
1638
1639 2007-07-27  Everaldo Canuto  <ecanuto@novell.com>
1640
1641         * FileDialog.cs: Check for valid filterIndex on button open/save. 
1642         Fixes #82184.
1643
1644 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1645
1646         * ListView.cs: Update some layout calculations in details view
1647         and clean the code in a pair of assignations.
1648
1649 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
1650
1651         * ComboBox.cs, ContainerControl.cs, DataGrid.cs, FontDialog.cs, Label.cs,
1652         LinkLabel.cs, ListBox.cs, ListView.cs, ListViewItem.cs, MessageBox.cs,
1653         MonthCalender.cs, StatusBar.cs, ThemeClearlooks.cs, ThemeWin32Class.cs,
1654         ToolBar.cs, TreeView.cs: First pass at using thread-safe string measuring.
1655
1656 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
1657
1658         * TextRenderer.cs: Use [ThreadStatic] instead of locks to improve
1659         performance of thread-safe Graphic methods.  (Thanks rolf!)
1660
1661 2007-07-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1662
1663         * ListView.cs: When doing the layout calculations, don't calculate
1664         scroll bars before handle is created. This is unnecessary and also
1665         calculating them before handle creation item causes a number of random
1666         bugs (which begin to appear after Chris' big patch for handle creation
1667         fixes). 
1668
1669 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
1670
1671         * TextRenderer.cs: Create thread-safe versions of Graphics.MeasureString
1672         for things that don't have a Graphics object.  Currently, things just use
1673         the static Hwnd.bmp_g which is not thread safe.
1674
1675 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1676
1677         * Form.cs: ShowDialog: don't destroy handles if the dialog is a common
1678           dialog. Fixes #82187.
1679
1680 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1681
1682         * DataGridViewElement.cs: Initialize state.
1683         * DataGridView.cs: Forward a few Mouse events to cells. Add
1684           GetRowInternal and GetCellInternal that doesn't unshare rows.
1685           Implement GetCellDisplayRectangle. HitTest: if the row is shared,
1686           don't use the index, but look it up. Add
1687           DataGridViewControlCollection.RemoveInternal to remove controls
1688           that Remove won't remove (scrollbars, edit control).
1689         * DataGridViewColumn.cs: Initialize State correctly.
1690         * DataGridViewColumnHeaderCell.cs, DataGridViewComboBoxCell.cs,
1691           DataGridViewHeaderCell.cs, DataGridViewRowHeaderCell.cs: Started
1692           implementing this.
1693         * DataGridViewRowCollection.cs: Implemented shared rows.
1694         * DataGridViewRow.cs: Throw exceptions as MS do.
1695         * DataGridViewCell.cs: A few properties are implemented by a
1696           Get<Property> method, so move implementation there and remove the
1697           NIEX in the method. Add a bunch of OnXInternal that DataGridView
1698           calls when necessary.
1699         * DataGridViewComboBoxEditingControl.cs: Remove a few NIEX'es that just
1700           complicates matters.
1701         * DataGridViewCellCollection.cs: Add a GetCellInternal that doesn't
1702           unshare any rows.
1703
1704 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
1705
1706         * UpDownBase.cs: We cannot override SetBoundsCore for 2.0, which was relayout-ing
1707         the children controls.  Instead, we will just set up the proper docking for the
1708         children controls so we don't have to worry about it.  [Fixes bug #82188]
1709
1710 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
1711
1712         * TreeView.cs, NodeLabelEditEventArgs.cs, LabelEditTextBox.cs: Support edit
1713         canceling and correct Before/AfterLabelEdit properties as layed out in bug
1714         81847.  [Fixes bug #81847]
1715
1716 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
1717
1718         * Label.cs: If AutoSize = true and a width or height is set, ignore it and
1719         redo the autosize.  VS2005 defaults to setting the AutoSize, and then setting
1720         an explicit size based on the design-time size of the text.  Since our fonts
1721         may not match this explicit size, we tend to cut off the ends of people's labels.
1722
1723 2007-07-24  Jonathan Pobst  <monkey@jpobst.com>
1724
1725         * Menu.cs: Add some missing methods to MenuItemCollection.
1726
1727 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1728
1729         * DataGridView.cs: Added RowTemplateFull, creates a row from the templates in the columns.
1730         * DataGridViewBand.cs: DefaultHeaderCellType: initialize correctly. Resizable: if not set, check DGV.
1731         * DataGridViewColumn.cs: InheritedAutoSizeMode: if not set, check DGV. Resizable: delegate to base class. ToolTipText: Never return null. Initialize a few other properties correctly.
1732         * DataGridViewColumnCollection.cs: Add: Default column is a TextBoxColumn.
1733         * DataGridViewComboBoxCell.cs: Started implementing this, lots left still.
1734         * DataGridViewElement.cs: State defaults to Visible.
1735         * DataGridViewRowCollection.cs: Add: creates the new row based on a template.
1736         * DataGridViewTextBoxColumn.cs: SortMode: delegate to base class, but initialize to Automatic. ToString: implement correctly.
1737
1738 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1739
1740         * Control.cs: Minor 1.1 corcompare fix.
1741
1742 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
1743
1744         * LinkLabel.cs, PrintPreviewDialog.cs, TabPage.cs, TextBox.cs,
1745         TextBoxBase.cs, ToolBar.cs: 2.0 corcompare work.
1746
1747 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1748
1749         * DataGridViewLinkColumn.cs, DataGridViewRowCollection.cs,
1750           DataGridViewImageColumn.cs, DataGridViewSelectedCellCollection.cs,
1751           DataGridViewComboBoxCell.cs, DataGridViewLinkCell.cs,
1752           DataGridViewSelectedColumnCollection.cs,
1753           DataGridViewSelectedRowCollection.cs: Corcompare work.
1754
1755 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
1756
1757         * PrintDialog.cs: Stub UseEXDialog.  I chose to stub this because
1758         it is autoset by VS2005 designer and the effect is barely noticeable.
1759
1760 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
1761
1762         * TreeView.cs: Implement HitTest.
1763
1764 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1765
1766         * DataGridViewTextBoxCell.cs: Use DGV.EditControlInternal instead of
1767           manually adding and removing the control from the Controls
1768           collecftion.
1769         * DataGridView.cs: Implement DataGridViewControlCollection. Add an
1770           EditingControlInternal property that tracks the editing control.
1771           Always keeping the scrollbars in the Controls collection, as MS
1772           testing confirms is the right behaviour.
1773
1774 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1775
1776         * ScrollableControl.cs: Fix implementation of AutoScrollPosition
1777           according to MSDN and new test.
1778
1779 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1780
1781         * TreeNode.cs: Implement ToolTipText.
1782         * TreeView.cs: Implement tooltips, NodeMouse* events.
1783
1784 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1785
1786         * TreeView.cs: Implement OnNodeMouseClick and OnNodeMouseDoubleClick.
1787
1788 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1789
1790         * TreeNode.cs: Implement ContextMenu, ContextMenuStrip, and Level.
1791         * TreeView.cs: Use the node's contextmenu[strip] if applicable.
1792
1793 2007-07-20  Ivan N. Zlatev  <contact@i-nz.net>
1794
1795         * Control.cs, Form.cs, ContainerControl.cs,
1796         ScrollableControl.cs, ButtonBase.cs:  Added ShouldSerialize
1797         for misc properties.
1798
1799 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1800
1801         * TreeNode.cs: Implement StateImageIndex and StateImageKey.
1802         * TreeView.cs: Implement StateImageList.
1803
1804 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1805
1806         * Form.cs: Don't check if the current form is the active form before
1807           activating it. Fixes #81904.
1808
1809 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1810
1811         * Form.cs: Don't check if the current form is the active form before
1812           activating it. Fixes #81904.
1813
1814 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1815
1816         * TreeView.cs: Apply patch from Tyron (tmm@aon.at). Fixes #81847.
1817
1818 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1819
1820         * Form.cs: Don't try to position the form after loading if the form was
1821           disposed. Fixes #81969.
1822
1823 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1824
1825         * PropertyGrid.cs, PropertyGridView.cs: Implemented 2.0 methods and
1826           properties. Had to change ToolBar into ToolStrip, which required a
1827           few #ifs.
1828
1829 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1830
1831         * PropertyGrid.cs: PropertyToolBar: Redraw the entire toolbar when it's
1832           resized, fixes part of #79829 (vertical lines in toolbar).
1833           PropertyGrid: Refactored Populate* to something that's easier to
1834           follow at least for me, as well as splitting it up into several new
1835           methods, required to update only subitems when something has
1836           changed by a popup editor or listbox. Don't use events to check
1837           when any values are changed, since the events are unreliable (we're
1838           changing the objects the events are registered with, and if the
1839           event handling requires the objects to be immutable (objects stored
1840           in hashtables for instance), the events will never be raised).
1841         * PropertyGridView.cs: Call PropertyGrid.PropertyValueChangedInternal
1842           everytime we change a value, since events are unreliable.
1843           DropDownButtonClicked: For the same reason don't compare objects to
1844           check if it has changed or not, it would require all objects to
1845           derive Equals. Fix dialog location on windows, MS is doing weird
1846           things when creating parented forms.
1847         * GridEntry.cs: Add a SelectedObject setter.
1848
1849 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
1850
1851         * TreeNode.cs: Add some corcompare attributes.
1852         * TreeNodeCollection.cs: Implement 2.0 stuffs.
1853         * TreeView.cs: Implement some 2.0 stuffs.
1854
1855 2007-07-18  Andreia Gaita  <avidigal@novell.com>
1856
1857         * WebBrowser.cs, WebBrowserBase.cs: add some more MonoTODOs now
1858         for moma.
1859
1860 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
1861
1862         * ListBox.cs: Implement custom tab offsets.
1863
1864 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1865
1866         * ToolStripContentPanel.cs: Support System renderer.
1867         * ToolStripControlHost.cs: Set RightToLeft to default to No.
1868
1869 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1870
1871         * ScrollableControl.cs: Don't mess up the user's explicit bounds.
1872
1873 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1874
1875         * CheckBox.cs: Chain TextAlign to base implementation instead of
1876         maintaining another one.
1877
1878 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1879
1880         * ButtonBase.cs: Fix an incorrect string constant.
1881
1882 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1883
1884         * TextRenderer.cs: Use the static Graphics context in Hwnd instead
1885         of creating one for measuring strings.
1886
1887 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1888
1889         * ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownMenu.cs: 
1890         Implement MaxItemSize.
1891
1892 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
1893
1894         * Control.cs: Remove per-control 1x1 Bitmap and Graphics context used
1895         for DeviceContext.  Instead, use the static one available in Hwnd.
1896         Informal tests show this saves about 500k on formtest.exe.
1897
1898 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
1899
1900         * ContainerControl.cs: Implement 2.0 AutoScaling.
1901
1902 2007-07-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1903
1904         * ComboBox.cs: Work around bug #82120 (bug in mcs).
1905
1906 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
1907
1908         * ThemeWin32Classic.cs: Allow a Flat button to be Focused and Entered.
1909         Darken the focus color.
1910
1911 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
1912
1913         * ListBox.cs: When measuring items, if it's a CheckedListBox, add room
1914         for the checkbox.
1915         * ThemeWin32Classic.cs: Make the checkbox bigger in a CheckedListBox and use
1916         X, Y instead of a rect for drawing text.
1917         - For ControlPaint.DrawCheckBox, center the check a little better when the
1918         checkbox is odd width.  When drawing a flat checkbox, use a white background
1919         when state != inactive.
1920         [Fixes bugs #82097, 82100]
1921
1922 2007-07-16  Gert Driesen  <drieseng@users.sourceforge.net>
1923
1924         * ListControl.cs: When changing CurrencyManager, disconnect event
1925         handlers from previous one. Fixes bug #81771. Code formatting.
1926
1927 2007-07-15  Andreia Gaita <avidigal@novell.com>
1928
1929         * PrintPreviewControl.cs: Remove extraneous Invalidate calls. Separate
1930         full preview invalidation from layout invalidation, and only invalidate
1931         the layout when setting zoom or other properties. Invalidation should
1932         always be done even when resetting properties with the same values as
1933         what is there. Fixes #81744 and #79830.
1934
1935 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1936
1937         * ListView.cs: Implement initial support for Groups. Split some of the
1938         LayoutIcons code to render a partial list of the items (needed by
1939         items contained in ListViewGroup instances). Let the
1940         ListViewItemsCollection.ListView property be modifiable (needed when
1941         using Groups, too).
1942         * ListViewGroup.cs: Use a Bounds property rather than a Location
1943         one. Also invalidate the bounds when they get changed.
1944         * ThemeWin32Classic.cs: When drawing items, also draw the group header
1945         if ListView.Groups.Count is bigger than 0. Add a DrawListViewGroupHeader
1946         method as well.
1947
1948 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1949
1950         * ListView.cs: When space gets pressed and CheckBoxes is true, 
1951         don't invoke the Begin and EndUpdate methods. We are generating 
1952         a redraw of the entire control without need to do so.
1953
1954 2007-07-13  William Holmes <billholmes54@gmail.com> 
1955
1956         * Control.cs: Changing logic in FindFlatForward and 
1957           FindFlatBackward to handle multiple Controls with 
1958           the same TabIndex.  
1959           This fixes bug 81687.
1960
1961 2007-07-13  Jonathan Pobst  <monkey@jpobst.com>
1962
1963         * OSFeature.cs: Enable IsPresent.
1964
1965 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1966
1967         * Control.cs: Don't do anything in WmShowWindow if the control has been
1968           disposed. We can get WM_SHOWWINDOW after a control is disposed: a
1969           control is created, put on a form, the control is disposed (the
1970           form is never shown), and then we get a MapNotify, triggering a
1971           WM_SHOWWINDOW.
1972         * Form.cs: Exclude the current form when sending Deactivate to all
1973           MdiChildren.
1974         * NativeWindow.cs: Set WindowCreating to null as soon as possible,
1975           there was a race condition because assigning the handle raises
1976           events, we can get more messages, therefore trying to assign the
1977           handle again, which would fail if any of those event handlers
1978           closed/disposed the control.
1979
1980 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1981
1982         * Form.cs: Make the fix for #80775 windows-only (fixes #81957).
1983
1984 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
1985
1986         * SystemInformation.cs, Theme.cs, XplatUI.cs, XplatUIDriver.cs,
1987         XplatUIWin32.cs: Implement SystemInformation 2.0 properties.
1988
1989 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1990
1991         * DateTimePicker.cs: If there's no part format specifier, return an
1992           empty string.
1993
1994 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
1995
1996         * FlatButtonAppearance.cs: Throw NotSupportedException for a
1997         Transparent BorderColor.
1998
1999 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2000
2001         * DataGridView.cs, TextControl.cs, ProgressBar.cs, PrintDialog.cs,
2002           MessageBox.cs, ButtonBase.cs, PageSetupDialog.cs, NumericUpDown.cs,
2003           X11Dnd.cs, Binding.cs, DataGrid.cs, AxHost.cs,
2004           LinkLabelLinkClickedEventArgs.cs, TextRenderer.cs, Label.cs,
2005           LinkLabel.cs, TreeNode.cs, BindingSource.cs, TabPage.cs,
2006           TextBoxBase.cs, BindingNavigator.cs, Application.cs,
2007           ToolStripPanel.cs, TabControl.cs, ThemeClearlooks.cs, TreeView.cs:
2008           Remove warnings.
2009         * X11Structs.cs: Remove warnings, add ToString implementations.
2010
2011 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2012
2013         * XplatUIX11.cs: Translate min/max size according to the actual min/max
2014           size, and not the current size. Fixes #81798.
2015
2016 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2017
2018         * XplatUIX11.cs: Fix #80822 again (DefWndProc can be reached before
2019           XplatUI.CreateWindow returns, in which case the hwnd isn't assigned
2020           to the control yet).
2021
2022 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2023
2024         * PropertyGridTextBox.cs: Add a method that sends any forwarded
2025           mousedowns to the contained textbox.
2026         * X11Structs.cs: More ToString implementation.
2027         * PropertyGridView.cs: Forward any mousedowns to the textbox, fixes
2028           #81791.
2029
2030 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2031
2032         * PropertyGridView.cs: Add a null-check, fixes a few tests.
2033
2034 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
2035
2036         * TableLayoutPanelCellPosition.cs: TypeConverter.
2037
2038 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2039
2040         [ Fixes #79761]
2041         
2042         * PropertyGridTextBox.cs: Propagate any color changes to all contained
2043           controls.
2044         * PropertyGridView.cs: A few color fixes.
2045
2046 2007-07-10  Jackson Harper  <jackson@ximian.com>
2047
2048         * TextControl.cs: Remove some old unused text formatting stuff.
2049
2050 2007-07-10  Jackson Harper  <jackson@ximian.com>
2051
2052         * TreeView.cs: Update full row select invalidation to match the
2053         newer DrawSelection... method.
2054         - Make sure to invalidate the entire width when selecting a new
2055         node, if we have full row selection enabled.
2056
2057 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2058
2059         * PropertyGridView.cs: Fix for #81800, makes text show up on initial
2060           display of properties again.
2061
2062 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
2063
2064         * ListBox.cs: Add IntegerCollection and Add, Clear, Remove
2065         to existing collections.
2066
2067 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2068
2069         * AccessibleObject.cs, RadioButton.cs: Fix some base classes
2070         that changed between 1.1 and 2.0.
2071
2072 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2073
2074         * PowerStatus.cs: Added.  This is just a data class, it is filled
2075         in by SystemInformation.
2076
2077 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2078
2079         * Message.cs: Add op_Equality and op_Inequality.
2080
2081 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2082
2083         * MenuStrip.cs: Finish corcompare work.
2084
2085 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2086
2087         * LinkArea.cs: Add op_Equality and op_Inequality.
2088
2089 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2090
2091         * Application.cs: Add MessageLoopCallback delegate.
2092
2093 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2094
2095         * ListBox.cs: First set of 2.0 stuffs.
2096
2097 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2098
2099         * Control.cs: Make an internal Height property we can override
2100         without messing up the public API.
2101         * ListBox.cs: Override HeightInternal to always return the size
2102         the user set.  [Fixes bug #80466]
2103
2104 2007-07-08  Jonathan Pobst  <monkey@jpobst.com>
2105
2106         * TableLayoutPanel.cs: Add a null check so we don't NRE trying to
2107         paint cell borders if we haven't calculated where they go yet.
2108         [Fixes bugs #82040 and #82041]
2109
2110 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2111
2112         * ListView.cs: In Details view, set the location of item_control
2113         in the (0,0) position (and the header_control is thus on the
2114         item_control). This way the Bounds of the Items are relative to the
2115         ListView control (before this, they had a Bounds value without the
2116         header_control offset, which wasn't matching .Net). Fixes #82004.
2117
2118 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2119
2120         * ListControl.cs: When DataSource is set to null, pass an empty
2121         array of object to SetItemsCore. This is done to clean the items
2122         in the ListContol children. Fixes #81788.
2123
2124 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2125
2126         * ListControl.cs: Add 2.0 stuffs.
2127
2128 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2129
2130         * Label.cs: Finish up 2.0 stuffs.  Replace calls to Refresh with Invalidate,
2131         Refresh is overkill for just about every repaint request.
2132
2133 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2134
2135         * ToolStripItem.cs: TextDirection getter handles looking up Inherit for us,
2136         so remove my custom Get method and fix the property getter.
2137
2138 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2139
2140         * Label.cs: DefaultMargin for 2.0.
2141
2142 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2143
2144         * ComboBox.cs: Override IsInputCharInternal and return true.  Fixes 
2145         reported issue where other controls with mnemonics would steal strokes
2146         from a selected ComboBox.
2147
2148 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2149
2150         * ScrollOrientation.cs: Make internal for 1.1.
2151         * ScrollEventArgs.cs: Add 2.0 stuffs.
2152
2153 2007-07-05  Jonathan Pobst  <monkey@jpobst.com>
2154
2155         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
2156         ToolStripItem.cs, ToolStripItem.cs, ToolStripItemTextRenderEventArgs.cs,
2157         ToolStripRenderer.cs, ToolStripSeparator.cs: Implement TextDirection.
2158
2159 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2160
2161         * ListViewItem.cs: Implement the small 2.0 GetSubItemAt method.
2162
2163 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2164
2165         * ListView.cs: Implement the so-incredibly broken 2.0 
2166         VirtualItemsSelectionRangeChanged event.
2167
2168 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2169
2170         * ListView.cs: When enter is pressed and selection is non empty,
2171         an OnItemActivate event must be fired.
2172
2173 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2174
2175         * ListView.cs: Store the FocusedItem information as an
2176         int instead of a ListViewItem (needed by VirtualMode).
2177         Update the calls to SetFocusedItem to pass an index instead of
2178         an item.
2179         * ListViewItem.cs: Likewise. Also, in VirtualMode retrieve
2180         the Focused state from the owner ListView. 
2181
2182 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2183
2184         * ListView.cs: Set ListView.focused_item from ListViewItem.Focused
2185         property. Also, invalidate previous focused item in the mentioned
2186         property (match .Net).
2187
2188 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2189
2190         * ListView.cs: Implement 2.0 FocusedItem property setter.
2191
2192 2007-07-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2193
2194         * ListView.cs: Implement 2.0 TopItem property setter.
2195
2196 2007-07-03  Jonathan Pobst  <monkey@jpobst.com>
2197
2198         * StatusStrip.cs: The default renderer is System.
2199         * ToolStrip.cs, ToolStripManager: Now that we have System renderer, use it 
2200         if the user specifies it.
2201         * ToolStripDropDown.cs: Don't reset our Renderer on changing OwnerItem
2202         if we are ManagerRenderMode.
2203         * ToolStripMenuItem.cs: Calculate our text color better.
2204         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Move some stuff
2205         from Professional to the base class based off working with the System renderer.
2206         * ToolStripSystemRenderer.cs: Added.
2207
2208 2007-07-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2209
2210         * ListView.cs: I'm so lame - the real name is HitTest, not HitInfo.
2211
2212 2007-07-02  Jonathan Pobst  <monkey@jpobst.com>
2213
2214         * ToolTip.cs: Implement 2.0 Tag property.
2215
2216 2007-06-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2217
2218         * ListView.cs: Implement 2.0 HitTest methods.
2219
2220 2007-06-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2221
2222         * ListViewItem.cs: Add a 2.0 bool Hot property, to tell whether the
2223         item is under the pointer or not (sugar). Also remove the TODO
2224         regarding to the cursor changes in OneClick activation.
2225         * ThemeWin32Classic.cs: When HotTracking is true and we are drawing
2226         the subitems use the parent's HotFont if UseItemStyleForSubItems is
2227         true; otherwise don't show the underline style.
2228
2229 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2230
2231         * ListView.cs: In ItemControl.ItemsMouseMove, refactor
2232         the code to retrieve the item at position only one time. Also
2233         change cursor when Activation is ItemActivation.OneClick as well
2234         as invalidate the item if HotTracking is true (to show/hide the
2235         underline style). Add an internal HotItemIndex property to retrieve
2236         the current hot item's index.
2237         * ListViewItem.cs: Add an internal HotFont property to cache the
2238         font used when HotTracking is true and the pointer moves within the
2239         item's borders.
2240         * ThemeWin32Classic.cs: When drawing the item's text, use Font or
2241         HotFont depending on the hot state of the item.
2242
2243 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2244
2245         * ListView.cs: Implement 2.0 HotTracking property.
2246
2247 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
2248
2249         * ToolStripControlHost.cs: If our hosted control never got created,
2250         don't try to dispose it.  [Fixes bug #81909]
2251
2252 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
2253
2254         * TableLayoutPanel.cs: Implement ScaleCore, ScaleControl.
2255
2256 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
2257
2258         * TableLayoutPanel.cs: Implement CellBorderStyle.  [Fixes bug #81884]
2259
2260 2007-06-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2261
2262         * ThemeWin32Classic.cs: In OwnerDraw mode draw subitems only for 
2263         Details view.
2264         * DrawListViewColumnHeaderEventArgs.cs:
2265         * DrawListViewSubItemEventArgs.cs: Add padding to the bounds when drawing text
2266         using the DrawText () methods.
2267
2268 2007-06-19  Jonathan Pobst  <monkey@jpobst.com>
2269
2270         * ToolStripProfessionalRenderer.cs: Put back clearing a ToolStripDropDown's
2271         background which got erased in my changes yesterday.
2272
2273 2007-06-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2274
2275         * ListViewItem.cs: Actually set bounds for subitems in Details view
2276         (2.0 feature).
2277         * ThemeWin32Classic.cs: Refactor the drawing code for subitems, so we
2278         can invoke from the owner draw routines if we need it. Also, add
2279         support for Owner draw in Details view.
2280
2281 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
2282
2283         * ToolStripDropDownMenu.cs, ToolStripItem.cs, ToolStripLabel.cs,
2284         ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs: Respect the
2285         ShowImageMargin setting, properly align text in a ToolStripLabel
2286         hosted on a ToolStripDropDown.
2287
2288 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
2289
2290         * ToolStrip.cs, ToolStripContentPanel.cs, ToolStripDropDownMenu.cs,
2291         ToolStripProfessionalRenderer.cs: Refactor and clean up some rendering code.
2292
2293 2007-06-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2294
2295         * DrawListViewSubItemEventArgs.cs: Actually implement its methods.
2296
2297 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
2298
2299         * ToolStripLabel.cs: If the label is on a dropdown, adjust the text
2300         location to match ToolStripMenuItems.
2301
2302 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2303
2304         * DrawListViewColumnHeaderEventArgs.cs:
2305         * ThemeWin32Classic.cs: Implement 2.0 OwnerDraw support for
2306         column headers in ListView. 
2307
2308 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
2309
2310         * UserControl.cs: Implement AutoSize.
2311
2312 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2313
2314         * DrawListViewItemEventArgs.cs:
2315         * ListView.cs:
2316         * ThemeWin32Classic.cs: Implement basic support for 2.0 OwnerDraw in
2317         ListView.
2318
2319 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
2320
2321         * ToolStripDropDownItemAccessibleObject.cs: Added.
2322         * ToolStripDropDownItem.cs, ToolStripItem.cs, ToolStripMenuItem.cs,
2323         ToolStripOverflow.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
2324         ToolStripProgressBar.cs, ToolStripSeparator.cs, ToolStripSplitButton.cs,
2325         ToolStripTextBox.cs: corcompare work.
2326
2327 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
2328
2329         * OSFeature.cs, StatusStrip.cs, TabControl.cs, TableLayoutSettings.cs,
2330         TableLayoutStyle.cs, TableLayoutCollection.cs, ToolStripContentPanel.cs,
2331         ToolStripControlHost.cs, ToolStripDropDown.cs, ToolStripDropDownButton.cs:
2332                 corcompare.
2333
2334 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
2335
2336         * OSFeature.cs: Add IsPresent.
2337         * PrintPreviewControl.cs: Add RightToLeft.
2338         * SplitContainer.cs: Add AutoScrollOffset, ScaleControl.
2339         * SplitterPanel.cs: Add AutoSizeMode.
2340
2341 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
2342
2343         * LayoutEventArgs.cs: Add 2.0 AffectedComponent.
2344         * MdiClient.cs: Add 2.0 ScaleControl.
2345         * NativeWindow.cs: Implement 2.0 interface IWin32Window.
2346         * NumericUpDownAccelerationCollection.cs: Add [ListBinding].
2347
2348 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
2349
2350         * Form.cs: Implement some scaling methods, stub some RTL methods,
2351         corcompare work.
2352
2353 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
2354
2355         * Control.cs: corcompare work.
2356         * FlatButtonAppearance.cs, FolderBrowserDialog.cs: Add TypeConverters.
2357
2358 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
2359
2360         * ControlPaint.cs, Theme.cs, ThemeWin32Classic.cs: Implement
2361         ControlPaint 2.0 stuffs.
2362
2363 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2364
2365         * ThreadExceptionDialog.cs: Add 2.0 stuffs.
2366
2367 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2368
2369         * UpDownBase.cs: Add 2.0 stuffs.
2370
2371 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2372
2373         * NumericUpDown.cs: Add 2.0 stuffs.
2374
2375 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2376
2377         * NotfiyIcon.cs: Add MouseDoubleClick event, hook up MouseClick event.
2378
2379 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2380
2381         * ErrorProvider.cs: Implement 2.0 stuffs.
2382
2383 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2384
2385         * DomainUpDown.cs: Implement 2.0 stuffs.
2386
2387 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2388
2389         * CheckedListBox.cs: Fix RefreshItems signature.
2390
2391 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2392
2393         * PictureBox.cs: Implement 2.0 stuffs.
2394
2395 2007-06-12  Andreia Gaita  <avidigal@novell.com>
2396         
2397         * TabControl.cs: Check if there are tabpages before checking
2398         the selected index - fix #81802 (font changes raise a ResizeTabs
2399         call on controls.add, which blew up nicely with no tabpages)
2400
2401 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2402
2403         * ListView.cs:
2404         * ListViewItem.cs: Implement 2.0 ItemSelectionChanged event.
2405
2406 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2407
2408         * ListView.cs:
2409         * ListViewItem.cs: In VirtualMode the selection information
2410         resides in the ListView, rather than in the Items. Also, throw
2411         InvalidOperationExceptions when VirtualMode is being used and
2412         CheckedItemCollection is accessed.
2413
2414 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
2415
2416         * ComboBox.cs: Add ScaleControl.
2417
2418 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
2419
2420         * ButtonBase.cs: ButtonBaseAccessibleObject.State should not be visible to 1.1.
2421
2422 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
2423
2424         * GroupBox.cs: Add 2.0 stuffs.
2425
2426 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
2427
2428         * Panel.cs: Add autosize properties/event.
2429
2430 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
2431
2432         * Control.cs:
2433         - When we remove a control, remove it from the collection before performing the layout.
2434         - Setup an internal property for explicit_bounds.
2435         - Don't let the UpdateBounds in CreateHandle overwrite our explicit bounds.
2436         - Perform a layout when we set a new AutoSizeMode.
2437
2438 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
2439
2440         * ScrollableControl.cs: Add 2.0 stuffs.
2441
2442 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
2443
2444         * ScrollBar.cs: Add 2.0 stuffs.
2445
2446 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
2447
2448         * Splitter.cs: Add 2.0 stuffs.
2449
2450 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
2451
2452         * SplitContainer.cs: Apply patch from Neil Cawse <neilcawse@geotab.com>
2453         to have BindingContext simply use base implementation.
2454
2455 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
2456
2457         * ColumnHeader.cs: corcompare fix.
2458
2459 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
2460
2461         * Button.cs: corcompare fixes.
2462         * ButtonBase.cs: corcompare fixes, add ButtonBaseAccessibleObject.State.
2463
2464 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
2465
2466         * Button.cs: Override GetPreferredSizeCore.
2467         * ButtonBase.cs: PerformLayout after changing properties that can affect
2468         AutoSize.  Simplify some mouse/keyboard code.
2469         * Control.cs: PerformLayout after changing Padding if AutoSize = true.
2470         * MouseEventArgs.cs: Make Location internal for 1.1.
2471         * TextRenderer.cs: Make MeasureTextInternal (string, Font, bool) internal for 1.1.
2472         * Theme.cs: Add CalculateButtonAutoSize.
2473         * ThemeWin32Classic.cs: Implement CalculateButtonAutoSize.
2474
2475 2007-06-05  Miguel de Icaza  <miguel@novell.com>
2476
2477         * TreeNodeCollection.cs: Applied patch from Neil Cawse <neilcawse@geotab.com>
2478
2479 2007-06-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2480
2481         * ListViewItem.cs: We can't cache Bounds in VirtualMode 
2482         since we can get different item instances every time we retrieve it.
2483
2484 2007-06-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2485
2486         * ListView.cs: Work around for #81602, since an unkown an pretty
2487         infrequent condition appears only in some systems (old linux boxes, it
2488         seems).
2489
2490 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
2491
2492         * Button.cs: Completely reformat and a little refactor to bring
2493         this closer to Mono circa 2007.
2494
2495 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
2496
2497         * CheckBox.cs, Form.cs, RadioButton.cs: Change call to ButtonBase.Redraw
2498         to be ButtonBase.Invalidate.
2499
2500 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
2501
2502         * ButtonBase.cs: GetPreferredSize is 2.0 only.  Fixes build.
2503
2504 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
2505
2506         * ButtonBase.cs: Completely reformat and a little refactor to bring
2507         this closer to Mono circa 2007.
2508
2509 2007-06-01  Everaldo Canuto  <ecanuto@novell.com>
2510
2511         * Label.cs: Fixes preferred sizes for 2.0 profile, also adjust some
2512         values for autosize. Fixes #80137.
2513
2514 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
2515
2516         * Control.cs: Don't perform layout when AutoSize changes.
2517         * Form.cs: Perform layout in AutoSize override.  Don't set ClientSize
2518         directly when autosizing, use SetBounds with BoundsSpecified.None.
2519         Fixes unit tests my last commit broke.
2520
2521 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
2522
2523         * Control.cs: Perform layout when AutoSize changes.
2524         * Form.cs: Implement AutoSizing.
2525
2526 2007-06-01  Chris Toshok  <toshok@ximian.com>
2527
2528         * DataGrid.cs: remove the XXX'ed check at the top of
2529         ProcessGridKey.  fixes #80464.
2530
2531 2007-06-01  Chris Toshok  <toshok@ximian.com>
2532
2533         * DataGridTextBoxColumn.cs: TextBox.TextChanged event handler
2534         adding idempotent (add/remove in Edit()), and also make sure we
2535         don't add it until after we set the text, so it's not tripped in
2536         Edit().  Fixes unit test regression.
2537
2538 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
2539
2540         * Control.cs: In UpdateBounds, only recalculate anchor distances if the
2541         change is user explicit, not when the layout engine moves stuff.  Fixes
2542         anchoring to bottom and right.  [Fixes bug #81790]
2543
2544 2007-06-01  Andreia Gaita  <avidigal@novell.com>
2545
2546         * PrintDialog.cs: Add collation preview thumbnails. Fixes #80726.
2547
2548 2007-06-01  Andreia Gaita  <avidigal@novell.com>
2549
2550         * ContainerControl.cs: 
2551         Fire enter event for common ancestor if it is not a ContainerControl.
2552         Send focus to the active_control and not the 'value', the active 
2553         control might have been changed in one of the events fired.     
2554         Definitely fixes #80159.
2555
2556 2007-06-01  Andreia Gaita  <avidigal@novell.com>
2557
2558         * DataGrid.cs: Finish editing when focus leave the datagrid. Fixes #80159.
2559
2560 2007-06-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2561
2562         * PropertyGrid.cs: Anchor the help description to the bottom of the
2563           help panel and refactor SelectGridItem into a
2564           SelectGridItemInternal that can be set to null (and update it to
2565           clear the help texts when it is set to null). Set root item to null
2566           when there's no SelectedObject. Fixes #80438.
2567         * ScrollableControl.cs: In Recalculate we need to ResumeLayout(true)
2568           when we're recalculating after a resize (only).
2569
2570 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2571
2572         * ListView.cs: Implement 2.0 RedrawItems method.
2573
2574 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2575
2576         * ListControl.cs: Disconnect PositionChanged and ItemChanged
2577         handlers from previous data manager when DataSource is set to
2578         null. Fixes #81771.
2579
2580 2007-05-31  Jackson Harper  <jackson@ximian.com>
2581
2582         * TextBoxBase.cs: These seem to be the correct values.
2583
2584 2007-05-31  Everaldo Canuto  <ecanuto@novell.com>
2585
2586         * FileDialog.cs: When close dialog with ok set filterindex using combobox
2587         value. Fixes #81784.
2588
2589 2007-05-31  Jonathan Pobst  <monkey@jpobst.com>
2590
2591         * Control.cs: Implement 2.0 scaling methods.
2592
2593 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2594
2595         * ProgressBar.cs, WebBrowserBase.cs, Control.cs, MaskedTextBox.cs,
2596           MessageBox.cs, PropertyGrid.cs, RichTextBox.cs: Fix warnings and
2597           corcompare issues.
2598
2599 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2600
2601         * ProgressBar.cs: Implemented missing 2.0 members.
2602
2603 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2604
2605         * Control.cs: Corcompare issues.
2606         * MessageBox.cs: Implemented missing 2.0 functions.
2607
2608 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2609
2610         * CheckedListBox.cs, ListBox.cs, ListControl.cs, ComboBox.cs:
2611           Implemented more 2.0 members.
2612
2613 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2614
2615         * Application.cs: Try to avoid NRE when Assembly.GetEntryAssembly is
2616           null (strange, but it seems to happen when running unit tests).
2617
2618 2007-05-30  Andreia Gaita  <avidigal@novell.com>
2619
2620         * ContainerControl.cs: Set active_control even earlier, before 
2621         firing any events, and undo it if validation returns false.
2622
2623 2007-05-30  Andreia Gaita  <avidigal@novell.com>
2624
2625         * ContainerControl.cs: Raise Validation and Enter/Leave events
2626         even if there is no Form and set active_control earlier, just
2627         before firing Enter events (toshok's patches). Fixes #80647.
2628
2629 2007-05-30  Jackson Harper  <jackson@ximian.com>
2630
2631         * TextControl.cs: Redid the pageup/pagedown a little to simplify
2632         things and fix bug #81311.
2633
2634 2007-05-30  Jackson Harper  <jackson@ximian.com>
2635
2636         * X11Dnd.cs: Now that we have our own event loop, we need to
2637         cancel when we get a mouseup but it won't be accepted.
2638
2639 2007-05-30  Chris Toshok  <toshok@ximian.com>
2640
2641         * DataGrid.cs (set_CurrentCell): guard against negative
2642         column/row.
2643
2644         * DataGridColumnStyle.cs (CheckValidDataSource): just use the
2645         array index syntax instead of looping over the property names.
2646
2647         * DataGridTextBoxColumn.cs: add a changed handler on the textbox,
2648         and set IsInEditOrNavigateMode to false there.
2649
2650 2007-05-30  Jackson Harper  <jackson@ximian.com>
2651
2652         * TreeView.cs: Make sure we don't get a bad visible order when
2653         setting to the top node.  Fixes some misc crashing in
2654         ControlInspector.
2655
2656 2007-05-30  Andreia Gaita  <avidigal@novell.com>
2657
2658         * UserControl.cs: Add 2.0 AutoSizeMode
2659
2660 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
2661
2662         * DataGridTextBoxColumn.cs: Fix textbox horizontal offset.
2663
2664 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
2665
2666         * DataGridTextBoxColumn.cs: Fix textbox position to prevent override grid
2667         lines. Fixes #80285. 
2668
2669 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
2670
2671         * DataGridColumnStyle.cs: Add char trimming column header text format. 
2672
2673 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
2674
2675         * DataGridColumnStyle.cs: Fix grid header arrow drawing over column name. 
2676         Fixes #80147.
2677
2678 2007-05-29  Jackson Harper  <jackson@ximian.com>
2679
2680         * TreeNode.cs: Fix off by one on calculating whether or not a node
2681         is visible.
2682
2683 2007-05-29  Jonathan Pobst  <monkey@jpobst.com>
2684
2685         * Control.cs: ResumeLayout(false) should recalculate anchor distances.
2686         * ScrollableControl.cs: Force an UpdateDistances when we move the
2687         scrollbars.
2688         [Fixes bug #80605]
2689
2690 2007-05-29  Andreia Gaita  <avidigal@novell.com>
2691
2692         * PageSetupDialog.cs: Fix #80728 - Changing the printer doesn't
2693         update the page setup screen.
2694
2695 2007-05-29  Andreia Gaita  <avidigal@novell.com>
2696
2697         * PageSetupDialog.cs: Fix landscape mode.
2698
2699 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2700
2701         * SystemInformation.cs: Add 2.0 IconSizeVerticalSpacing and
2702         IconSizeHorizontalSpacing.
2703
2704 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2705
2706         * ListView.cs: The declaration of prev_tooltip_item should be inside
2707         a NET_2_0 conditional (avoid a warning).
2708
2709 2007-05-28  Andreia Gaita  <avidigal@novell.com>
2710
2711         * PageSetupDialog.cs: Implement PrintPreview control to display
2712         the preview thumbnail. Change unit conversion to use 
2713         PrinterUnitConvert methods.
2714         
2715         Note: there is a huge bug in ms.net where the default margins are 
2716         interpreted as centimeters (?), when in fact they are set in inches. When 
2717         loading the page setup dialog initially (ms.net), the default margins 
2718         are set to 1 inch, and the dialog shows them with value 10, when in fact 
2719         it should be 25 (properly converted). Our dialog doesn't have this bug.
2720         
2721         * Theme.cs, ThemeWin32Classic.cs: Add a CPDrawBorder override for 
2722         RectangleF.
2723         * ControlPaint.cs: Add a DrawBorder internal method for RectangleF.
2724
2725 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2726
2727         * ListView.cs:
2728         * ListViewItem.cs: Implement 2.0 ToolTipText support for listview
2729         items.
2730
2731 2007-05-28  Andreia Gaita  <avidigal@novell.com>
2732
2733         * X11Dnd.cs: A direct cast to VirtualKeys is not allowed from
2734         an IntPtr on csc (it builds fine on mcs, could it be a compiler
2735         bug?), convert the ptr to Int32 first.
2736
2737 2007-05-28  Jackson Harper  <jackson@ximian.com>
2738
2739         * X11Dnd.cs: Add a timer, so after drop, if a finish is not
2740         recieved, we will exit the dnd tracking loop.
2741
2742 2007-05-28  Jackson Harper  <jackson@ximian.com>
2743
2744         * X11Dnd.cs: Keep tracking until the xdnd finished event is
2745         recieved. TODO: I should probably stick a timer on the dropped
2746         event, and finish the drag if the XDND Finished event never shows
2747         (because some apps don't seem to send it).
2748
2749 2007-05-28  Everaldo Canuto  <ecanuto@novell.com>
2750
2751         * ToolBar.cs: Fix toolbar default width for button with image. Fixes
2752         #81733.
2753
2754 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2755
2756         * MonthCalendar.cs: Only mark the keypresses we actually handle as
2757           handled.
2758
2759 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2760
2761         * MonthCalendar.cs: Set the size after initializing all the relevant
2762           variables. Fixes #81742.
2763
2764 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2765
2766         * KeyEventArgs.cs: Fix typo.
2767
2768 2007-05-28  Gert Driesen  <drieseng@users.sourceforge.net>
2769
2770         * DateTimePicker.cs: Changed exceptions thrown by MinDate and MaxDate
2771         to match MS. Fixed MinDate to only accept value less than or equal
2772         to MaxDate on 2.0 profile and less than MaxDate on 1.0 profile.
2773         Removed TODO's that are now verified by unit tests.
2774
2775 2007-05-27  Gert Driesen  <drieseng@users.sourceforge.net>
2776
2777         * TreeNodeCollection.cs: Minor corrections to exceptions to match
2778         MS.
2779
2780 2007-05-25  Jackson Harper  <jackson@ximian.com>
2781
2782         * X11Dnd.cs: Rework to make StartDrag a blocking call that runs
2783         it's own message loop.
2784         * XplatUIX11.cs: Remove some of the dnd hooks
2785
2786 2007-05-25  Gert Driesen  <drieseng@users.sourceforge.net>
2787
2788         * XplatUIX11.cs: Change MinimumWindowSize to {Width=0,Height=0}
2789         instead of MinimizedWindowSize.
2790
2791 2007-05-25  Jackson Harper  <jackson@ximian.com>
2792
2793         * TextBoxBase.cs: Raise textchanged when cutting and pasting text.
2794
2795 2007-05-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2796
2797         * KeyEventArgs.cs: Added SuppressKeyPress.
2798         * Control.cs: Added support for SuppressKeyPress.
2799
2800 2007-05-24  Andreia Gaita  <avidigal@novell.com>
2801
2802         * NumericUpDown.cs: Refactor code to fix regressions on #79950 and
2803         problems with PieChart. suppress_validation should not be a counter,
2804         if there are several BeginInit calls, the first EndInit will 
2805         activate validation. Fix exceptions thrown by set_Value.
2806         * UpDownBase.cs: ValidateText only if it's the user editing it.
2807
2808 2007-05-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2809
2810         * ListControl.cs: FilterItemOnProperty should return the filtered
2811         item proeprty even if DataSource is null. The same applies for
2812         GetItemText. Fixes #80427.
2813
2814 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
2815
2816         * Control.cs: If a control doesn't have a parent when it's Dock is
2817         set, but it has children, it needs to do a layout.  Fixes some nested
2818         controls issues.  [Fixes bug #81199]
2819
2820 2007-05-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2821
2822         * ComboBox.cs: If there are few items in the drop down list, make it
2823           the exact size the items need, no bigger. Fixes #81612.
2824
2825 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
2826
2827         * Application.cs: When we have captured the keyboard for a menu,
2828         check for mouse down events in case we need to close the menu.
2829         * Control.cs, Form.cs: Remove mouse down checks for menus.
2830
2831 2007-05-24  Jackson Harper  <jackson@ximian.com>
2832
2833         * TextControl.cs: Handle tabs in non multiline mode a little
2834         differently.
2835
2836 2007-05-24  Jackson Harper  <jackson@ximian.com>
2837
2838         * TextControl.cs: We need to manually break apart tabbed text and
2839         move the tabs, since the system.drawing tabbing mechanism relies
2840         on tab stops.
2841         * TextBoxBase.cs: Move the caret properly when the user enters a
2842         tab.
2843
2844 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
2845
2846         * ContainerControl.cs: Don't check CanSelect before calling
2847         ProcessMnemonic.
2848         * ToolStrip.cs: Only do implicit mnemonics on MenuStrips.  Don't
2849         release a KeyboardActive on click if it's not ours.
2850
2851 2007-05-23  Andreia Gaita  <avidigal@novell.com>
2852
2853         * ColumnHeader.cs: Add TypeConverter
2854
2855 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2856
2857         * LinkLabel.cs: Implement LinkCollection.Add with Link parameter (2.0).
2858
2859 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2860
2861         * LinkLabelLinkClickedEventArgs.cs, LinkLabel.cs: Implement Button property.
2862
2863 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2864
2865         * LinkLabel.cs: Implement public Padding property.
2866
2867 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2868
2869         * LinkLabel.cs: Implement public FlatStyle.
2870
2871 2007-05-23  Jonathan Pobst  <monkey@jpobst.com>
2872
2873         * Control.cs: Apply patch from George to call parent.PerformLayout
2874         when Visible is changed.  [Fixes bugs #81118, 81718]
2875
2876 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2877
2878         * MainMenu.cs, MenuAPI.cs: Implement Collapse event for MainMenu (2.0).
2879
2880 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2881
2882         * ContextMenu.cs: Implement ProcessCmdKey with control parameter.
2883
2884 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2885
2886         * ContextMenu.cs: Implement Collapse.
2887
2888 2007-05-23  Rolf Bjarne Kvinge <RKvinge@novell.com>
2889
2890         * ToolBarButton.cs: Implement Name.
2891
2892 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
2893
2894         * ToolBar.cs: Fix OnButtonDropDown to save item used in dropdown instead of
2895         use current_item, it prevents some NRE. Fixes #81675.  
2896
2897 2007-05-22  Andreia Gaita  <avidigal@novell.com>
2898
2899         * NumericUpDown.cs: Fix PieChart by not returning from UpdateEditText
2900         without updating the text.
2901
2902 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
2903
2904         * XplatUIWin32.cs: Plug a GDI leak caused by calling Font.ToHfont ()
2905         without calling DeleteObject.  [Should fix bug #81709]
2906
2907 2007-05-22  Jackson Harper  <jackson@ximian.com>
2908
2909         * RichTextBox.cs: Set the line endings correctly, when flushing
2910         RTF text.
2911
2912 2007-05-22  Gert Driesen  <drieseng@users.sourceforge.net>
2913
2914         * XplatUIX11.cs: MinimumWindowSize on X11 is actually
2915          {Width=0,Height=0}.
2916
2917 2007-05-22  Jackson Harper  <jackson@ximian.com>
2918
2919         * TreeView.cs: Setting top with a null node should set to the very
2920         top.
2921
2922 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2923
2924         * Form.cs: ShowDialog: destroy the handle when message loop is
2925           finished, matches MS behaviour. Refactor parts of WmClose into
2926           RaiseCloseEvents, that only raises events if they haven't already
2927           been raised. Fixes #81688 and #81521.
2928         * Application.cs: Don't call close on the form when exiting a modal
2929           loop, it will raise all the (Form)Closed/Closing events again if
2930           WM_CLOSE has been sent earlier on, instead call RaiseCloseEvent,
2931           which doesn'r raise any events it they have been raised before.
2932
2933 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
2934
2935         * Control.cs: Add OnPrint.
2936         * ToolStrip.cs: Add GetChildAtPoint.
2937         * ToolStripContainer.cs: Add OnRightToLeftChanged.
2938         * ToolStripRenderer.cs: Make CreateMirrorImage internal.
2939
2940 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
2941
2942         * MenuAPI.cs: Prevent context menu to be typed as MainMenu. Fixes #81509.  
2943
2944 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2945
2946         * InternalWindowManager.cs: ToolTipShow: Don't show tooltip if the form
2947           isn't visible anymore. Fixes #81651.
2948
2949 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2950
2951         * Control.cs: WmShowWindow: Update children's z-order after setting
2952           their parent. SetParent may show the window, thereby corrupting
2953           z-order, since the window will be shown on top.
2954         * XplatUIWin32.cs: SetParent: don't call SetVisible on forms. Prevents
2955           multiple (and redundant) WM_SHOWWINDOW messages.
2956         * MdiWindowManager.cs: RaiseDeactivate: only raise after an Activate
2957           event has already been raised.
2958         * Form.cs: Change is_changing_visible_state to a counter, since
2959           SetVisibleCore can be called recursively. CreateHandle: when
2960           creating mdi children, send (De)Activated events.
2961         * MdiClient.cs: Update use of is_changing_visible_state.
2962         * Application.cs: OnThreadException: Surround exception handling with
2963           try/finally to ensure we always reset the error-handling state
2964           before leaving.
2965
2966 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2967
2968         * ThemeWin32Classic.cs: DrawProgressBar: Avoid a DivideByZero exception
2969           (#81704).
2970
2971 2007-05-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2972
2973         * ListView.cs: Use Theme.ListViewHorizontalSpacing for List and
2974         SmallIcon views, now that we have a standarized horizontal spacing.
2975
2976         * ThemeWin32Classic.cs: ListViewHorizontalSpacing now has a value of
2977         4, just like the other views (Match .Net).
2978
2979 2007-05-21  Jonathan Pobst  <monkey@jpobst.com>
2980
2981         * Control.cs: Delay calculating anchor distances until we actually layout.
2982         Always query the WM for the actual size and location it put us at instead of
2983         only when we send negative values.
2984         [Fixes bugs #81694, 81695]
2985
2986 2007-05-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2987
2988         * Application.cs: Avoid a possible stack overflow when trying to exit
2989           the application.
2990
2991 2007-05-19  Marek Safar  <marek.safar@gmail.com>
2992
2993         * Theme.cs (GetHatchBrush): A key uses internal value instead of formated
2994         enum value.
2995
2996 2007-05-19  Andreia Gaita  <avidigal@novell.com>
2997
2998         * NumericUpDown.cs: Added 2.0 methods (spin acceleration)
2999         * NumericUpDownAcceleration.cs, 
3000           NumericUpDownAccelerationCollection.cs: Added 2.0
3001           implementation.
3002
3003 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
3004
3005         * RichTextBox.cs: Recalculate the document after the ScrollBars
3006         property is changed. Fixes bug #81681.
3007
3008 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
3009
3010         * DataObject.cs: Implement 2.0 methods.
3011
3012 2007-05-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3013
3014         * ThemeWin32Classic.cs: Draw the check marks in ListViewItems
3015         in the center of the checkbox, not in the left-top corner. 
3016         Fixes #80037.
3017
3018 2007-05-18  Jackson Harper  <jackson@ximian.com>
3019
3020         * RichTextBox.cs: Recalculate the document after the scrollbars
3021         property is changed.
3022         * TextBoxBase.cs: ScrollBars is not a flags enum...This fixes
3023         81486.
3024
3025 2007-05-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3026
3027         * CreateParams.cs: Make HasWindowManager marginally faster.
3028         * XplatUIX11.cs, Hwnd.cs: CreateWindow: Move the default location code
3029           into Hwnd so that other drivers can use it as well.
3030         * XplatUIWin32.cs: CreateWindow: If the window has a window manager get
3031           the default location from Hwnd. Fixes MDI client windows always
3032           showing up at (0,0) in Windows (Win32 won't set the default
3033           location since the window styles aren't correct).
3034
3035 2007-05-18  Gert Driesen  <drieseng@users.sourceforge.net>
3036
3037         * TreeView.cs: Modified DoubleBuffered to just use the base
3038         implementation.
3039
3040 2007-05-18  Jackson Harper  <jackson@ximian.com>
3041
3042         * TreeView.cs: Set the top node to the last child node when
3043         expanding all
3044         - When we get focus, if there is no selected node, use the top
3045         node.
3046
3047 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
3048
3049         * KeysConverter.cs: Add CanConvertTo.
3050         * LinkLabel.cs: Add some 2.0 constructors and properties to LinkLabel.Link.
3051         * LinkConverter.cs: Added.
3052
3053 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3054
3055         * Cursor.cs: Apply Sebastien patch from #81669 to open file in read mode,
3056         it prevents error when file dont have write access. Fixes #81669 and #81667.  
3057
3058 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3059
3060         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw toolbar 
3061         button text. Fixes #79640.  
3062
3063 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3064
3065         * Control.cs: According to MSDN controls created in the designer theres 
3066         keyboard accelerators visible by default. So included check for design
3067         in ShowKeyboardCuesInternal.  
3068
3069 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3070
3071         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw combobox 
3072         text. Fixes #81621.  
3073
3074 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3075
3076         * Control.cs: ShowKeyboardCuesInternal add to expose ShowKeyboardCues
3077         for 1.0, becuse ShowKeyboardCues is protected on 1.0.  
3078
3079 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
3080
3081         * Control.cs: Finish implementation of UI State using WmChangeUIState
3082         to send WM_UPDATEUISTATE to all child controls. Some hack will be needed
3083         in some controls to check for show_keyboard_cues to draw accell keys "_".  
3084
3085 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3086
3087         * ListBox.cs: When calculating the horizontal scrollbar
3088         in single column mode, don't use values less than 0 for
3089         Maximum. Fixes #81474.
3090
3091 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3092
3093         * ListBox.cs: Throw the some missing exceptions in
3094         ListBox.ObjectCollection methods.
3095
3096 2007-05-17  Jackson Harper  <jackson@ximian.com>
3097
3098         * TextBoxBase.cs: Recalculate the document when the word wrap
3099         value has changed. This fixes 81488.
3100
3101 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
3102
3103         * Clipboard.cs: Implement missing GetText overload.
3104
3105 2007-05-17  Chris Toshok  <toshok@ximian.com>
3106
3107         * Control.cs (CheckDataBindings): remove the binding_context arg
3108         to binding.Check.
3109
3110         * CurrencyManager.cs (OnItemChanged): fix this now that
3111         BindingManagerBase is fixed. also remove the comment telling where
3112         the fix should go.  We set transfering_data to true/false around
3113         the call to PushData to keep UpdateIsBinding from being called.
3114         (ListChangedHandler): remove the extra OnMetaDataChanged call for
3115         PropertyDescriptorAdded in the 1.1 case.  The extra call is
3116         actually generated by System.Data generating 2 metadata changed
3117         events of its own per column add.  The fix should go there.  Add a
3118         comment to that affect in our test's Assert.Ignore.
3119
3120         * BindingManagerBase.cs: Rework PullData and PushData slightly.
3121         we keep a boolean flag (transfering_data) that keeps us from
3122         calling UpdateIsBinding multiple times if we re-enter either of
3123         them.
3124
3125         * ControlBindingsCollection.cs (AddCore): remove the
3126         binding_context arg to binding.Check.
3127
3128         * Binding.cs (IsBinding): don't check if we're binding here, just
3129         return our cached value.  we update it in UpdateIsBinding.
3130         (Check): don't take the binding_context arg, we'll just use our
3131         control's.  Also, for some reason MS doesn't use the data member
3132         field when getting the bindingmanager for this binding.  it just
3133         uses the datasource.  Make this method callable multiple times,
3134         and only do the is_null_desc stuff if manager.Position != -1 (so
3135         we don't get an exception accessing manager.Current).
3136         (UpdateIsBinding): move the code from IsBinding here.
3137         (PositionChangedHandler): call Check here to we can initialize
3138         things that require a non- -1 position.
3139
3140 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
3141
3142         * Form.cs: When alt keys is pressed send WM_CHANGEUISTATE to top level
3143         control.
3144
3145 2007-05-17  Andreia Gaita  <avidigal@novell.com>
3146
3147         * TabControl.cs: Add 2.0 methods and events, including
3148         OnEnter / OnLeave and raises it for tabpages (fixes #79869)
3149         * TabPage.cs: Add 2.0 methods
3150
3151 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
3152
3153         * Control.cs: Implement WmUpdateUIState, show_focus_cues and
3154         keyboard_cues is properly handled by message method.  
3155
3156 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
3157
3158         * TreeViewImageIndexConverter.cs: Add 2.0 methods.
3159
3160 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
3161
3162         * ToolStripTextBox.cs: Wire up new 2.0 Textbox methods/properties.
3163
3164 2007-05-16  Everaldo Canuto  <ecanuto@novell.com>
3165
3166         * Control.cs: 
3167         - WmUpdateUIState added to handle state changes, it make call to
3168         OnChangeUICues event.
3169         - Fixed ShowKeyboardCues to check for MenuAccessKeysUnderlined in
3170         SystemInformation.
3171
3172 2007-05-16  Jonathan Pobst  <monkey@jpobst.com>
3173
3174         * ImageKeyConverter.cs: Added.
3175         * TreeViewImageKeyConverter.cs: Added.
3176
3177 2007-05-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3178         
3179         * ToolTips.cs: Update Text if SetToolTip is called for a control
3180         already showing the tooltip, as well as restarting its timer; show
3181         tooltip if we are inside the control bounds by the time of calling
3182         SetToolTip. Inside ShowTooltip remove the check to not show the 
3183         tooltip again for the active control (it is allowed by .Net to 
3184         show the tooltip on the same control multiple times).
3185
3186 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3187
3188         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
3189
3190 2007-05-16  Andreia Gaita <avidigal@novell.com> 
3191
3192         * ContainerControl.cs: only process tab key if there are no 
3193         modifier keys present, otherwise the control does the 
3194         tab processing, if it needs to. Fixes #81622
3195         * TabControl.cs: Fixes calculation for which tab to select on
3196         shift+ctrl+tab.
3197
3198 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3199
3200         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
3201
3202 2007-05-15  Jonathan Pobst  <monkey@jpobst.com>
3203
3204         * Control.cs: Make IsInputCharInternal to allow controls to
3205         override it and still match MS API.
3206         * TextBoxBase.cs: Override IsInputCharInternal and always
3207         return true.
3208         [Fixes bug #81616]
3209
3210 2007-05-15  Jackson Harper  <jackson@ximian.com>
3211
3212         * TextBox.cs: Disable some of the menu options when using a
3213         readonly textbox.
3214
3215 2007-05-15  Jackson Harper  <jackson@ximian.com>
3216
3217         * TextBox.cs:
3218         * TextBoxBase.cs:
3219         * RichTextBox.cs: Some new 2.0 methods
3220
3221 2007-05-15  Gert Driesen  <drieseng@users.sourceforge.net>
3222
3223         * FileDialog.cs: On 1.0 profile, do not support multidotted 
3224         extensions.
3225
3226 2007-05-14  Jackson Harper  <jackson@ximian.com>
3227
3228         * TextBoxBase.cs: Implement some of the new 2.0 methods.
3229         * RichTextBox.cs: We need to override these methods on 2.0.
3230         * MaskedTextBox.cs: These are implemented now
3231         * TextControl.cs: This was off by one.
3232
3233 2007-05-14  Jackson Harper  <jackson@ximian.com>
3234
3235         * TextControl.cs: Because the line endings are including in the
3236         text, we don't need to add them in anymore.
3237
3238 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3239
3240         * ToolBar.cs: Fix autosize and get it working only after hadle is created,
3241         also prevent redraw in set_autosize if handle is not created. Fixes #81523.
3242
3243 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3244
3245         * ToolBar.cs: Adjust size to default size when button theres no text and
3246         image, it fixes remaining issues from #81524.
3247
3248 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3249
3250         * ToolBar.cs: 
3251         - When not flat call redraw to recalculate sizes on creare handle to match
3252         win32 behavior.
3253         - Revert 77220 because it causes some regressions in toobar
3254         button.
3255
3256 2007-05-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3257
3258         * MaskedTextBox.cs: Update the base text whenever the text changes. MTB
3259           now actually enters a usable state.
3260
3261 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3262
3263         * ToolBar.cs: Check for handle created in redraw to prevent unneeded size
3264         calculations, it reduces the size cauculation from 7 to 3 on a toolbar with
3265         3 buttons.
3266
3267 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3268
3269         * ToolBar.cs: Save default_size on create handle to use later for buttons
3270         without text, needed to mimic win32 behavior.
3271
3272 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3273
3274         * ToolBar.cs: Fix button layour to best fit width or height according to
3275         vertical or not. Fixes #81524.
3276
3277 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
3278
3279         * ToolBarButton.cs: When change style call ToolBar.Redraw to update
3280         toolbar size info because different styles theres different sizes.
3281         Fixes #81522.
3282
3283 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3284
3285         * ThemeWinClassic.cs: For .Net 2.0 don't draw any image
3286         if we are using checkboxes, checked is true, and we have less
3287         than two images in StateImageList; for the 1.1 in the same scenario
3288         draw the first image if we have at least one image in StateImageList.
3289         Fixes part of #81191.
3290
3291 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
3292
3293         * ToolStrip.cs, ToolStripManager.cs: We need to remove items from
3294         the owner's Items collection on merge.
3295
3296 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
3297
3298         * ToolStrip.cs: Use new internal ToolStripItemCollection constructor.
3299         * ToolStripItemCollection.cs: Lots of fixes to when events get called
3300         and parent/owner gets changed based on gert's unit tests.
3301
3302 2007-05-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3303
3304         * MaskedTextBox.cs: Started implementing parts of it.
3305
3306 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3307
3308         * ListView.cs: When clicking the checkbox on the items
3309         take into account the double clicks even if we have only
3310         one image in StateImageList (only for 1.0/1.1). Also 
3311         generate an extra change of checked state when we receive
3312         the second click on checkbox (match .Net behaviour). 
3313         Fixes part of #81191.
3314
3315 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
3316
3317         * ThemeWin32Classic.cs: Fix text rectangles in Tooltips.
3318
3319 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
3320
3321         * Form.cs: Move some of OnLoad to OnLoadInternal so it gets called
3322         even if OnLoad is overriden and base.OnLoad is not called.
3323         [Fixes bug #81582]
3324
3325 2007-05-10  Andreia Gaita  <avidigal@novell.com>
3326
3327         * TableLayoutSettings.cs: A big doh! fix and bowing down of head in 
3328         shame. (I blame my ever-persisting and annoying cold)
3329
3330 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
3331
3332         * ListView.cs: Don't eat navigation keys.  Let them flow through to
3333         KeyDown/KeyPress routines.  [Fixes bug #81569]
3334
3335 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
3336
3337         * ListView.cs: When handling keys for selecting the item based off
3338         keyboard input, do not consider keys pressed with Alt or Control.  Also,
3339         correctly handle keys when the Shift key is down. [Fixes bug #81578]
3340
3341 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
3342
3343         * Control.cs: When using UseWaitCursor, we have to store the requested
3344         Cursor to use when UseWaitCursor is turned off.
3345
3346 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
3347
3348         * Control.cs: Implement PreProcessControlMessage.  Default IsInputChar
3349         to false.
3350         * Application.cs: Use PreProcessControlMessage instead of
3351         PreProcessMessage.
3352         * PreProcessControlMessage.cs: Make internal for 1.1.
3353
3354 2007-05-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3355
3356         * Control.cs: Add InternalContains focus property, which hast the same
3357         functionality of ContainsFocus, but also including implicit controls.
3358         * ListViewItem.cs: Use InternalContainsFocus instead of ContainsFocus,
3359         since we need to know if the focus is contained in our implicit
3360         ItemControl when calculating Layout. Fixes part of #80888.
3361
3362 2007-05-08  Everaldo Canuto  <everaldo@simios.org>
3363
3364         * ToolTip.cs: Remove center form string alignment as it must be align to
3365         left.
3366
3367 2007-05-08  Jonathan Pobst  <monkey@jpobst.com>
3368
3369         * ToolStripItemCollection.cs: Set the new item's parent and owner
3370         in Insert like we do in Add.  [Fixes bug #81568]
3371
3372 2007-05-08  Jackson Harper  <jackson@ximian.com>
3373
3374         * TreeView.cs: GotFocus differences between 1.1 and 2.0.
3375         - Off by one error in SetTop
3376         - Disable DoubeBuffering
3377         
3378 2007-05-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3379
3380         * ScrollableControl.cs: ScrollIControlntoView: we now only move the
3381           control as much as necessary in order to make it entirely visible,
3382           instead of centering the control in the container (matches MS
3383           behaviour). CalculateCanvasSize: we need to take the current scroll
3384           position into account when calculating the maximum canvas,
3385           otherwise the following scenario will fail: resize so that the
3386           scrollbars appear, use the scrollbars to scroll, resize again
3387           smaller, and now the canvas size is too small. Recalculate: when
3388           showing scrollbars make sure they start off at 0, and try to scroll
3389           the active control into view. Fixes #79540. HandleScrollBar: don't
3390           scroll anywhere if the scrollbar isn't visible.
3391
3392 2007-05-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3393
3394         * ListView.cs: When focus changed, call Layout/Invalidate
3395         in the focused item to update the selected state (should show
3396         entire label when ListView is focused, and a part of it if is not).
3397         * ListViewItem.cs: When doing layout for LargeIcon, take into account
3398         for displaying the entire label not only the Focused state of the
3399         item, but also the Focused state of the ListView (match .Net
3400         behaviour).
3401
3402 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
3403
3404         * Control.cs: Stub CanRaiseEvents, IsMirrored, and NotifyClients.
3405         Implement UseWaitCursor. 
3406
3407 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
3408         Applying contributed patch from Sergey Volk.
3409
3410         * Clipboard.cs: Implement SetDataObject retry logic and new overload
3411         of SetDataObject.
3412         * XplatUIWin32.cs: Throw an ExternalException if the clipboard set fails.
3413
3414 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
3415
3416         * Control.cs: Implement DrawToBitmap.
3417
3418 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
3419         Applying contributed patch from Stefan Noack.
3420         
3421         * Control.cs: Add [Get|Set]AutoSizeMode.
3422
3423 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
3424
3425         * MdiClient.cs: Unmerge menus when the last child is closed.
3426
3427 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
3428
3429         * ToolStrip.cs: Do not call BeginMerge on DropDowns.
3430         * ToolStripManager.cs: Call Merge on DropDowns.
3431         [Fixes bug #81477]
3432
3433 2007-05-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3434
3435         * XplatUIWin32.cs: Changed Win32CreateWindow to take enums instead of
3436           uints.
3437         * Form.cs: CreateParams: don't set WS_VISIBLE if we're changing
3438           visibility. We can't create forms visible, since we have to set the
3439           owner before making the form visible (otherwise Win32 will do
3440           strange things with task bar icons). The problem is that we set the
3441           internal is_visible to true before creating the control, so
3442           is_changing_visible_state is the only way of determining if we're
3443           in the process of creating the form due to setting Visible=true -
3444           this works because SetVisibleCore explicitly makes the form
3445           visibile afterwards anyways. Fixes #80775.
3446
3447 2007-05-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3448
3449         * ThemeWin32Classic.cs: When drawing ListViewItems,
3450         use StringTrimming.EllipsisCharacter if the view is Tile, Details,
3451         or LargeIcon _and_ item is not focused (match .Net behaviour).
3452
3453 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
3454
3455         * Control.cs, Form.cs: Fix some obsolete method warnings.
3456
3457 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
3458
3459         * Control.cs: Implement GetChildAtPoint and OnParentCursorChanged.
3460         * GetChildAtPointSkip.cs: Make internal for 1.1 profile.
3461
3462 2007-05-04  Andreia Gaita  <avidigal@novell.com>
3463
3464         * ContainerControl.cs: Fix active_control attribution when going
3465         up the parent chain so that the first parent container gets the control
3466         and the rest of the parent containers get the child containers (skips
3467         non-containers). Fixes #80729
3468
3469 2007-05-04  Randolph Chung  <tausq@debian.org>
3470
3471         * FileDialog.cs: Implement the SupportMultiDottedExtensions property.
3472         [Fixes bug #81499]
3473
3474 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3475
3476         * XplatUIX11.cs: Add a TranslateWindowSizeToXWindowSize overload that
3477           takes a size parameter, since the CreateParam's size isn't true for
3478           minimized forms. Fixes #81518,
3479
3480 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3481
3482         * Form.cs: Add OnDeactivateInternal.
3483         * MdiClient.cs: Raise Deactivate event. Fixes #81409.
3484
3485 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3486
3487         * DateTimePicker.cs: CalculateDropDownLocation: do a null check before
3488           accessing the parent. Fixes #81508.
3489
3490 2007-05-03  Chris Toshok  <toshok@ximian.com>
3491
3492         * CurrencyManager.cs (CurrencyManager.ListChangeHandler): in the
3493         2.0 block, pass listposition + 1 to ChangeRecordState when a row
3494         was added before the current listposition.  Fixes the
3495         TestInsertRowBeforeCurrent unit test.
3496
3497 2007-05-03  Jonathan Pobst  <monkey@jpobst.com>
3498
3499         * Application.cs: Add RaiseIdle.
3500         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
3501         XplatUIX11.cs: Implement RaiseIdle.
3502
3503 2007-05-02  Jonathan Pobst  <monkey@jpobst.com>
3504         corcompare work: N - Z
3505         * NotifyIcon.cs
3506         * ProgressBar.cs
3507         * RadionButton.cs
3508         * ScrollableControl.cs
3509         * SplitContainer.cs
3510         * SplitterPanel.cs
3511         * StatusBar.cs
3512         * SystemInformation.cs
3513         * TabControl.cs
3514         * TableLayoutControlCollection.cs
3515         * TableLayoutPanel.cs
3516         * TabPage.cs
3517         * ToolBar.cs
3518         * ToolBarButton.cs
3519         * ToolStrip.cs
3520         * ToolStripComboBox.cs
3521         * ToolStripContainer.cs
3522         * ToolStripContentPanel.cs
3523         * ToolStripDropDown.cs
3524         * ToolStripDropDownItem.cs
3525         * ToolStripDropDownMenu.cs
3526         * ToolStripItem.cs
3527         * ToolStripItemCollection.cs
3528         * ToolStripMenuItem.cs
3529         * ToolStripPanel.cs
3530         * ToolStripSplitButton.cs
3531         * ToolTip.cs
3532         * TreeNode.cs
3533         * TreeNodeCollection.cs
3534         * TreeNodeMouseHoverEventArgs.cs
3535         * TreeView.cs
3536
3537 2007-05-01  Everaldo Canuto  <everaldo@simios.org>
3538
3539         * ContextMenu.cs: Add public method Show with alignment property to 2.0
3540         stuff. Thanks aatdark for the patch. 
3541
3542 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
3543
3544         * GridItem.cs: Implement 2.0 Tag property.
3545
3546 2007-05-01  Frederik Carlier <frederik.carlier@carlier-online.be> 
3547
3548         * TreeNodeCollection.cs: Fix ContainsKey and IndexOfKey methods to use
3549         count instead of Nodes.Length.  [Fixes bug #81448]
3550
3551 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
3552
3553         * ComboBox.cs: Fix paramName sent to ArgumentOutOfRangeException's.
3554         [Fixes bug #81506]
3555
3556 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
3557         corcompare work: A - M
3558         * BindingNavigator.cs
3559         * Button.cs
3560         * ButtonBase.cs
3561         * CheckBox.cs
3562         * Control.cs
3563         * FlowLayoutPanel.cs
3564         * Form.cs
3565         * Label.cs
3566         * LinkLabel.cs
3567         * ListView.cs
3568
3569 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
3570
3571         * Application.cs: Give toolstrips a chance to process mnemonics.
3572         * ToolStrip.cs, ToolStripDropDownButton.cs, ToolStripItem.cs,
3573         ToolStripItemTextRenderEventArgs.cs, ToolStripLabel.cs,
3574         ToolStripMenuItem.cs, ToolStripSplitButton.cs: Implement keyboard mnemonics.
3575
3576 2007-05-01  Jackson Harper  <jackson@ximian.com>
3577
3578         * TextBoxBase.cs: Better preferred height, FixedSingle gets the
3579         wider area too.
3580         - Don't set the BoundsSpecified
3581
3582 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
3583
3584         * Application.cs: When using the toolstrip shortcut mechanism, allow the
3585         message to pass through to a regular control if it hosted by a toolstrip.
3586         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
3587         ToolStripManager.cs: Enable keyboard navigation for ToolStrips.
3588
3589 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
3590
3591         * TextRenderer.cs: Use the flags argument when using the MeasureString
3592         fallback algorithm.
3593
3594 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
3595
3596         * MenuStrip.cs: Don't let multiple ToolStripSeparators get added to
3597         the MDI menu item.  [Fixes bug #81483]
3598
3599 2007-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
3600
3601         * DataGridViewColumn.cs: Initialize value of headercell to zero-length
3602         string. When setting Name to null, use zero-length string instead.
3603
3604 2007-04-29  Andreia Gaita  <avidigal@novell.com>
3605
3606         * TabControl.cs: Implement missing 2.0 methods (SelectTab, 
3607         DeselectTab). Implement missing 2.0 TabPageCollection methods
3608         (Add, ContainsKey, RemoveByKey, IndexOfKey)
3609
3610 2007-04-29  Pedro Martínez Juliá  <pedromj@gmail.com>
3611
3612         * DataGridViewColumn.cs: Make HeaderText take preference over Name.
3613
3614 2007-04-29  Gert Driesen  <drieseng@users.sourceforge.net>
3615
3616         * RichTextBox.cs: In LoadFile, use StreamReader to read plain text.
3617         Fixes bug #81479. Include details of exception when LoadFile fails.
3618
3619 2007-04-28  Alan McGovern <alan.mcgovern@gmail.com>
3620
3621         * DrawListViewSubItemEventArgs.cs: Added missing setter
3622
3623 2007-04-27  Andreia Gaita  <avidigal@novell.com>
3624
3625         * ToolTip.cs: Add missing 2.0 properties. Implement 2.0 Show and 
3626         Hide methods (not complete). Implement missing 2.0 OnPopup event.
3627
3628 2007-04-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3629
3630         * ListView.cs: In ItemControl.OnMouseDown restore a pair of braces I
3631         removed in ly last commit (it was breaking the Label edit feature).
3632
3633         * ThemeWin32Classic.cs: When drawing a ListViewItem use
3634         StringAlignment.Near for LineAlignment (match .Net).
3635
3636 2007-04-27  Andreia Gaita  <avidigal@novell.com>
3637
3638         * TabControl.cs: Change SetTab so it adds the tabpage to the list
3639         of controls if it isn't already there - was blowing up when doing
3640         tabcontrol.TabPages[i]=new TabPage(). 
3641         SetTab now does a replace by removing the page at the index. 
3642         Add a new InsertTab method that inserts a page in a given index 
3643         instead of replacing. 
3644         Implements TabPageCollection.Insert(int, TabPage).
3645
3646 2007-04-27  Chris Toshok  <toshok@ximian.com>
3647
3648         * BindingManagerBase.cs: fill in CurrentItemChanged (and have an
3649         internal handler that can be invoked from our subclasses.)  Also,
3650         add a comment to PushData about how we need to fix it.
3651
3652         * CurrencyManager.cs: tons of changes here.  trying to get things
3653         matching the behavior of .net wrt event orders (ItemChanged,
3654         CurrentChanged, PositionChanged.)  I've implemented a private .net
3655         symbol (ChangeRecordState) that appears in stack traces because
3656         it's actually easier to do this than to effective inline all its
3657         various behaviors at every call site.
3658
3659         * RelatedPropertyManager.cs: guard against an exception here by
3660         not using parent.Current if the position is set to -1 (if the
3661         parent datasource is cleared, for instance).
3662
3663         * Binding.cs: don't parse data in PushData (this might be wrong,
3664         but it jives with MS's behavior.)  Also, don't call PushData when
3665         we get a CurrentChanged event.
3666
3667 2007-04-27  Andreia Gaita  <avidigal@novell.com>
3668
3669         * WebBrowser.cs,
3670           WebBrowserBase.cs,
3671           WebBrowserSiteBase.cs,
3672           HtmlDocument.cs: Added stubbed out classes, no real implementations 
3673           yet.
3674
3675 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
3676
3677         * MainMenu.cs: In draw method without parameters call draw method with 
3678         PaintEvent, another one (just rect) adjust rectangle and we dont need it
3679         as Rect property is already adjusted. Fixes #80694.
3680
3681 2007-04-27  Jonathan Pobst  <monkey@jpobst.com>
3682
3683         * Application.cs: Need to handle keyboard menu deselection here.
3684         * Control.cs: Use WM_SYSKEYUP instead of WM_SYSCOMMAND to start menu keyboard
3685         navigation, allowing keyboard to work on X11.
3686         * ToolStrip.cs: Don't worry about handling the Menu key here anymore.
3687
3688 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
3689
3690         * MenuAPI.cs: When deactivate menu verify if hotkey (_) is active and redraw
3691         menu bar. It fixes some drawing issues in menu bar.
3692
3693 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
3694
3695         * MenuAPI.cs: Remove unneeded "keynav_state = KeyNavState.Idle" before 
3696         Deactivate calls, Deactivate method already do it. Also ser ActiveTracker
3697         when <alt> key is pressed.
3698
3699 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
3700
3701         * XplatUIX11.cs: Simplify SystrayRemove to be like other libraries,     Gtk as 
3702         example just set visible to false and make this prevent from other problems.
3703         In SystrayAdd always remove pending expose. Fixes #81072.
3704
3705 2007-04-26  Marek Safar  <marek.safar@gmail.com>
3706
3707         * TextBoxBase.cs (CaretMoved): Consider scroll maximum when scroll
3708         value is set.
3709
3710 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
3711
3712         * ListView.cs: Added three missing 2.0 events and corresponding
3713         EventHandlers. Added the OwnerDraw property.
3714         * DrawListViewColumnHeaderEventHandler.cs: fixed typo
3715
3716 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
3717
3718         * DrawListViewItemEventArgs.cs
3719         * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
3720
3721 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
3722
3723         * TextControl.cs: Fixed typo in constructor
3724
3725 2007-04-26  Jonathan Pobst  <monkey@jpobst.com>
3726
3727         * Application.cs: Create a shortcut path so that currently selected
3728         MenuStrips can intercept keyboard events without having focus.
3729         * Control.cs: Handle WM_SYSCOMMAND message to activate MenuStrips.
3730         * MenuStrip.cs, ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownItem.cs,
3731         ToolStripItem.cs, ToolStripManager.cs, ToolStripMenuItem.cs: Support
3732         keyboard navigation (arrows, tab, enter, esc) on Windows.  Still need to
3733         generate WM_SYSCOMMAND message in X11 for other platforms.
3734         * ToolStripProfessionalRenderer.cs: ToolStripMenuItems need to be painted
3735         in OnRenderMenuItemBackground instead of OnRenderButtonBackground.
3736         * ToolStripSplitButton.cs: Add DefaultItem property.
3737         
3738 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
3739
3740         * MainMenu.cs: In OnMenuChanged pass PaintEventArgs to Draw method, it
3741         fixes some menu draw problem on Windows with border diferent from default
3742         it also fixes #81403.
3743
3744 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3745
3746         * Form.cs: Refactor WndProc into separate methods, just like Control is
3747           doing it.
3748
3749 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3750
3751         * Control.cs: set_Text: move the call to the driver into a seperate
3752           virtual method so that Form can override it.
3753         * MaskedTextBox.cs: Corcompare fixes.
3754         * Form.cs: Override UpdateWindowText and only update the styles if the
3755           form has been shown (fixes #81405).
3756
3757 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
3758
3759         * Control.cs, Form.cs: Use the better supported WM_?BUTTONDOWN and
3760         WM_ACTIVATE messages instead of WM_MOUSEACTIVATE and
3761         WM_ACTIVATEAPP.  This fixes menus not disappearing on X11 when
3762         the form lost focus or another control was clicked.
3763
3764 2007-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
3765
3766         * DataGrid.cs: Uncomment MakeTransparent calls since bug #80151 is
3767         fixed.
3768
3769 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3770
3771         * DrawListViewColumnHeaderEventHandler.cs, DrawToolTipEventArgs.cs,
3772           DrawListViewItemEventHandler.cs,
3773           DrawListViewSubItemEventHandler.cs, DrawToolTipEventHandler.cs:
3774           Added.
3775         * X11Structs.cs: More ToString implementation.
3776
3777 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
3778
3779         * ToolStripDropDownItem.cs: Don't lazy create a DropDown in Dispose.
3780         * ToolStripOverflowButton.cs: Don't lazy create a DropDown in HasDropDownItems.
3781
3782 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3783
3784         * Control.cs: Only raise OnVisibleChanged if we're not recreating the
3785           handle.
3786         * FormCollection.cs: Don't add a form if it's already in the
3787           collection.
3788         * Form.cs: Change ShowDialog () to call ShowDialog (owner) with a null
3789           according to behaviour and MSDN. The ownerWin32 is the active
3790           window at the moment when we call ShowDialog, not the context's
3791           main form (the context's main form may open another form that opens
3792           a form with ShowDialog, the win32 owner is the second form). Add
3793           and remove forms to the Application.OpenForms in other places to
3794           better match MS behaviour. Add an IsActive property that raises
3795           On(de)Activated only if the active state has changed (we were
3796           raising OnDeactivated before OnActivated while creating forms).
3797         * Application.cs: Refactor Enabling/Disabling of windows for modal
3798           dialog loops out to separate methods, and restore the thread
3799           context when we quit the method. Fixes #81407.
3800
3801 2007-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3802
3803         * ListView.cs: In ItemControl.HandleClicks, also fire 
3804         2.0 MouseClick or MouseDoubleClick events on the parent,
3805         not only the Click/DoubleClick events.
3806
3807 2007-04-24  Andreia Gaita  <avidigal@novell.com>
3808
3809         * TableLayoutSettings.cs: 
3810         - Added a GetControls method and a support structure to help the 
3811         TypeConverter to enumerate the controls for     serialization. 
3812         - Added a new serialization constructor. 
3813         - Added a isSerialized flag initialized to true on the 
3814         serialization constructor so that the TableLayoutPanel.LayoutSettings 
3815         setter does not throw the designed NotSupportedOperation exception
3816         when the object is built through deserialization.
3817         - Implemented GetObjectData
3818         
3819         * TableLayoutPanel.cs: Added check on LayoutSettings.
3820
3821 2007-04-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3822
3823         * ListView.cs: Report Click and DoubleClick events to the parent
3824         from ItemsMouseUp, instead of ItemsMouseDown. This prevents us
3825         from breaking the click count state when using dialog forms (Control
3826         reports the clicks in a similar fashion). In the previous behaviour
3827         the last WM_LBUTTONUP message in a  double click was sent to the
3828         ListView's form, instead of the ListView, which was breaking the click
3829         count for it. Fixes #80387.
3830
3831 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
3832
3833         * BindingNavigator.cs : fixed bugs revealed by new nunit tests
3834
3835 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
3836
3837         * ToolStripDropDownItem.cs: Lazy initialize the DropDown.  This prevents
3838         us from created dropdowns for menu items that do not have subitems.
3839         * ToolStripItem.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs:
3840         Check HasDropDownItems before calling DropDown so a dropdown will not be
3841         created if it isn't needed.
3842
3843 2007-04-24  Jackson Harper  <jackson@ximian.com>
3844
3845         * TreeView.cs: Set the first node to the selected node when we get
3846         focus if there is no selected node.
3847
3848 2007-04-24  Andreia Gaita  <avidigal@novell.com>
3849
3850         * MimeIcon.cs: remove using blocks so that image streams are
3851         not disposed of. Fixes #80151
3852
3853 2007-04-24  Jackson Harper  <jackson@ximian.com>
3854
3855         * TextBoxBase.cs: Fixup the height of textboxes when the control
3856         is created.
3857
3858 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
3859
3860         * ToolStrip.cs: Fully implement GetNextItem.  Call OnParentRightToLeftChanged
3861         for each ToolStripItem when the parent's RightToLeftChanged is called.
3862
3863 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3864
3865         * ComboBox.cs: Forward ContextMenu to the underlying textbox, if any.
3866           Fixes #80163.
3867         * Control.cs: Replace GetContextMenuInternal() with ContextMenuInternal
3868           property, so that the setter can be overriden too.
3869         * TextBox.cs: Change GetContextMenuInternal() to use
3870           ContextMenuInternal.
3871
3872 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3873
3874         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
3875           #81406.
3876
3877 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3878
3879         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
3880           #81406.
3881
3882 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3883
3884         * MaskedTextBox.cs: Commit this so nobody else starts working on it and
3885           avoid duplicate work. Mostily skeleton code, it's not working at
3886           all yet.
3887
3888 2007-04-20  Leszek Ciesielski <skolima@gmail.com>
3889
3890         * NotifyIcon.cs : stub for MouseClick event
3891         * Application.cs: stub for SetUnhandledExceptionMode
3892
3893 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
3894
3895         * BindingNavigator.cs : Initial (partial) implementation
3896
3897 2007-04-23  Jackson Harper  <jackson@ximian.com>
3898
3899         * TreeView.cs: Do not create the treeview's handle when setting
3900         the scroll position.
3901         - ExpandAll needs to compute the scrollbars so it knows which
3902         position to set the bar too.
3903         * TreeNode.cs: 
3904         * TreeNodeCollection.cs: Pass new flag to UpdateScrollBars
3905
3906 2007-04-23  Jackson Harper  <jackson@ximian.com>
3907
3908         * TextBoxBase.cs: Non multiline textboxes shouldn't take the enter
3909         key. Fixes #81408.
3910
3911 2007-04-23  Jonathan Pobst  <monkey@jpobst.com>
3912
3913         * ToolStripItem.cs: Make GetImageSize internal.
3914         * ToolStripMenuItem.cs: Use GetImageSize to determine the size we
3915         need to draw an item.  Fixes a reported issue where images on menus
3916         that were not 16x16 were drawing incorrectly.
3917
3918 2007-04-21  Miguel de Icaza  <miguel@novell.com>
3919
3920         * Padding.cs: Use the converter, fixes the resgen2 issue with
3921         XMLNotePad. 
3922
3923 2007-04-21  Jackson Harper  <jackson@ximian.com>
3924
3925         * TreeView.cs: Dont try to unhighlight the selected node if there
3926         isn't a selected node.
3927
3928 2007-04-21  Jackson Harper  <jackson@ximian.com>
3929
3930         * UpDownBase.cs:
3931         * TextBoxBase.cs:
3932         * ListView.cs:
3933         * ListBox.cs:
3934         * TreeView.cs: Use the InternalBorderStyle property to set the
3935         initial border style, this forces the client rectangle to be sized
3936         correctly.
3937
3938 2007-04-20  Jackson Harper  <jackson@ximian.com>
3939
3940         * TreeView.cs: Simplify scrolling to the last node after expanding
3941         all.
3942         - Fix some off by ones with setting the bottom.
3943
3944 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
3945
3946         * Control.cs: Use DefaultSize for Size, calculate ClientSize from
3947         that.  We were incorrectly doing it the other way around.  Also,
3948         update ClientSize if we change the BorderStyle before the control
3949         is created.
3950
3951 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
3952
3953         * XplatUI.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
3954         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
3955         XplatUIDriver.Caption to CaptionHeight. Spaces to tabs.
3956         * XplatUIDriver.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
3957         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
3958         Caption to CaptionHeight.
3959         * XplatUIX11.cs: Renamed Caption to CaptionHeight.
3960         * Theme.cs: Modified Border3DSize, BorderSize, CaptionButtonSize
3961         and FixedFrameBorderSize to return value from current XplatUI driver.
3962         * XplatUIWin32.cs: Implemented Border3DSize, BorderSize,
3963         CaptionButtonSize, DragFullWindows, DoubleClickSize, DoubleClickTime
3964         and FixedFrameBorderSize using win32 API. Renamed Caption to
3965         CaptionHeight.
3966         * XplatUIOSX.cs: Renamed Caption to CaptionHeight.
3967         * SystemInformation.cs: Fixed typo in BorderSize.
3968
3969 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
3970
3971         * XplatUI.cs: Added MenuAccessKeysUnderlined.
3972         * XplatUIDriver.cs: Added MenuAccessKeysUnderlined.
3973         * XplatUIX11.cs: Implemented MenuAccessKeysUnderlined by always
3974         returning false.
3975         * Theme.cs: Modified MenuAccessKeysUnderlined to return corresponding
3976         value from XplatUI driver.
3977         * XplatUIWin32.cs: Implemented MenuAccessKeysUnderlined using
3978         SystemParametersInfo.
3979         * ThemeWin32Classic.cs: Remove obsolete MenuAccessKeysUnderlined
3980         override.
3981         * XplatUIOSX.cs: Implemented MenuAccessKeysUnderlind by always
3982         returning false.
3983
3984 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3985
3986         * XplatUIX11.cs, Hwnd.cs: Remove warnings.
3987
3988 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3989
3990         * MessageBox.cs, XplatUIX11.cs, Hwnd.cs: Remove warnings.
3991
3992 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
3993
3994         * ToolStripManager.cs: Fix a reported InvalidCastException when unmerging
3995         MenuStrips that contain ToolStripSeparators.
3996
3997 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3998
3999         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Add
4000           DefineStdCursorBitmap.
4001         * Cursor.cs: Add an internal constructor so that the Cursor knows if it
4002           has been created off a standard cursor. This is used to get a
4003           bitmap of the standard cursor when Draw or DrawStretched is called
4004           in order to draw the cursor.
4005         * X11Structs.cs: Added XcursorImage and XcursorImages.
4006         * XplatUIX11.cs, XplatUIWin32.cs: Add and implement
4007           DefineStdCursorBitmap.
4008         * Cursors.cs: Update all relevant creations of Cursor to use the new
4009           internal constructor.
4010
4011 2007-04-19  Jackson Harper  <jackson@ximian.com>
4012
4013         * TextBox.cs: Move the has_been_focused into the base control, so
4014         some of the text adding methods can manipulate it (probably time
4015         for a better name for this flag too).
4016         - Call a new version of selectall that doesn't scroll
4017         * TextBoxBase.cs: When we append text, if the document is empty,
4018         don't scroll.  If the document has text already, we scroll to the
4019         end of the appended text.
4020         - When the text is changed, we reset the has_been_focused, so the
4021         next time the control gets focused, all the text is selected.
4022
4023 2007-04-19  Jackson Harper  <jackson@ximian.com>
4024
4025         * TextControl.cs: Move the margins to the document, add a method
4026         so the margin sizes can be updated.
4027         * TextBoxBase.cs: When the border style is changed, update the
4028         border sizes.
4029
4030 2007-04-19  Jonathan Pobst  <monkey@jpobst.com>
4031
4032         * Control.cs: Respect DefaultPadding.
4033         * GroupBox.cs: Implement DefaultPadding, DisplayRectangle takes
4034         padding into account.
4035         * ToolStrip.cs: Remove setting padding to DefaultPadding in constructor.        
4036
4037 2007-04-19  Jackson Harper  <jackson@ximian.com>
4038
4039         * TextControl.cs: Oops, we need to use the ClientRect not the
4040         bounds here.
4041
4042 2007-04-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4043
4044         * ListView.cs: In ItemControl.ItemsMouseDown, take into
4045         account the double clicks when CheckBoxes are used and
4046         the pointer is inside the checkbox. Fixes part of #81191.
4047
4048 2007-04-18  Jackson Harper  <jackson@ximian.com>
4049
4050         * TextControl.cs: Pressing the end key shouldn't move the caret
4051         past the line ending.
4052         * TextBoxBase.cs: We can still delete if we are in the line
4053         ending and the combine will just kill the existing line ending.
4054
4055 2007-04-18  Jackson Harper  <jackson@ximian.com>
4056
4057         * TextControl.cs: We can't move lines, then invalidate their
4058         bounds, we need to get the old bounds and combine that with the
4059         new bounds.
4060         * TextBoxBase.cs: Before combining two lines for a delete, we need
4061         to invalidate the area of the old line, since that will be moved
4062         in the combine operation.
4063
4064 2007-04-18  Everaldo Canuto  <everaldo@simios.org>
4065
4066         * LinkLabel.cs: In OnPaint invoke draw background to fix problems
4067         with transparent background. Fixes #80482.
4068
4069 2007-04-18  Jonathan Pobst  <monkey@jpobst.com>
4070
4071         * PictureBox.cs: Refresh on resize when SizeMode = Zoom.
4072         * ThemeWin32Classic.cs: Implement PictureBox.SizeMode = Zoom.
4073         [Fixes bug #81391]
4074
4075 2007-04-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4076
4077         * CreateParams.cs: Add a couple of helper methods and do a less string
4078           concatenation in ToString.
4079         * XplatUIX11.cs: Add an TranslateClientRectangleToXClientRectangle
4080           overload that takes a Control parameter, since this method may be
4081           called before a control is assigned to the hwnd (from
4082           CreateWindow), and update CreateWindow to use the new overload. In
4083           GetMenuOrigin subtract the title bar from the y position if the
4084           form has a window manager (since we're painting it and not X).
4085         * XplatUIWin32.cs: If we can get a form in GetMenuOrigin use the form's
4086           CreateParams to calculate the origin (since border sizes may vary).
4087           In ScreenToMenu only subtract the title height if we actually have
4088           a title.
4089         * MdiWindowManager.cs: Override MenuHeight to always return 0, since
4090           mdi children never have menus of themselves.
4091         * InternalWindowManager.cs: Implement menu handling like form does.
4092           Added GetMenuOrigin to calculate the menu origin, can't use the
4093           CreateParams from the form like normally since it's lying.
4094         * Hwnd.cs: Implement GetBorderSize better (in the sense more
4095           windows-like) and add Inflate and comparison operators to the
4096           Borders type. When calculating MenuOrigin and it's a form with a
4097           window manager, use the window manager to calculate it.
4098
4099 2007-04-17  Chris Toshok  <toshok@ximian.com>
4100
4101         * Control.cs (CreateControl): turns out in 2.0 we don't need this
4102         OnBindingContextChanged thing here.  It's only generated from
4103         ContainerControl.OnCreateControl.  Fixes a newly written unit test
4104         - BindingTest.BindingContextChangedTest4.
4105         
4106 2007-04-17  Jackson Harper  <jackson@ximian.com>
4107
4108         * ScrollBar.cs: When setting values, make sure the current
4109         position stays within the new values range.
4110
4111 2007-04-17  Chris Toshok  <toshok@ximian.com>
4112
4113         * Control.cs (CreateControl): talk about a bizarre corner case.
4114         Don't emit OnBindingContextChanged here if we're a parentless
4115         control (i.e. if we're a form.).  Fixes
4116         BindingTest.BindingContextChangedTest2.
4117
4118 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
4119
4120         * ButtonBase.cs: Remove TextFormatFlags.WordBreak to mimic same behavior 
4121         from win32. Fixes #81255.
4122
4123 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
4124
4125         * ThemeWin32Classic.cs: Remove text offset from DrawButtonText as it is
4126         already present in CalculateButtonTextAndImageLayout.
4127
4128 2007-04-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4129
4130         * XplatUIX11.cs: When setting min/max size for a window we need to
4131           translate the coordinates to x coordinates. Create an overload of
4132           SetWindowMinMax that takes a CreateParams handling this, and change
4133           SetWMStyles to call this function (can't use Control.FromHandle in
4134           the SetWindowMinMax to get the control/CreateParams from the handle
4135           because the handle might not have been assigned to the control
4136           yet). Fixes #81371.
4137
4138 2007-04-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4139
4140         * ListView.cs: In ItemControl.ItemMouseDown, don't change check state
4141         if StateImageList is non-null and it has less than two items (match MS
4142         behaviour). Also, in HandleNavKeys handle the Space key, calling
4143         the new ToggleItemsCheckState method, which tries to change the
4144         checked state of the selected items. Fixes part of #81191.
4145
4146 2007-04-16  Jackson Harper  <jackson@ximian.com>
4147
4148         * RichTextBox.cs: namespace cleanup.
4149
4150 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
4151
4152         * XplatUIWin32.cs: Back last parameter to true in SetClipRegion.
4153
4154 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
4155
4156         [Fixes #79447]
4157         * Control.cs: Call invalidate in set_Region.
4158
4159         * XplatUIX11.cs, XplatUIWin32.cs: Remove invalidate from SetClipRegion as
4160         it dont works here.
4161
4162 2007-04-16  Jackson Harper  <jackson@ximian.com>
4163
4164         * TextBoxBase.cs: When enter is pressed, we need to update all
4165         lines below the current.
4166
4167 2007-04-16  Jonathan Pobst  <jpobst@monkey.com>
4168
4169         * MdiClient.cs: Implement implicit menu merging for MDI
4170         children.  When a child form is active, if it has a menustrip
4171         and the parent form has a MainMenuStrip, automatically merge
4172         the menus.
4173
4174 2007-04-15  Andreia Gaita  <avidigal@novell.com>
4175
4176         * TabControl.cs: Refactored sizing methods to not repeat
4177         code all over the place. Tab bounds are now calculated
4178         as if alignment is top and single line, and only when 
4179         setting the bounds are the positions adjusted according
4180         to alignment. Replaced hardcoded positions, spacings and
4181         paddings by getting the values the ThemeEngine. 
4182         Fixes #79619.
4183         
4184         * Theme.cs: Change TabControl properties and methods so
4185         that all start with TabControl*. Added more properties
4186         to help remove hardcoded values on tabcontrol.
4187         Add CPDrawBorder3D declaration so the Theming classes
4188         can access it.
4189         
4190         * ThemeClearlooks.cs, ThemeNice.cs: Method signature changes from Theme.
4191
4192         * ThemeWin32Classic.cs: Rector TabControl out to the TabControlPainter
4193         on the Theming namespace, and call the appropriate methods here.
4194         Change CPDrawBorder3D to public.
4195
4196 2007-04-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4197
4198         * Control.cs: In WmRButtonUp, send the WM_CONTEXTMENU message to
4199         the control after firing the OnMouseUp event, instead of sending
4200         the message before the mentioned event. This is so we can match the
4201         MS behaviour. Fixes part of #80385.
4202
4203 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
4204
4205         * ToolStripItem.cs: Call the RightToLeftChanged event when setting the
4206         RightToLeft property.
4207
4208 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
4209
4210         * ToolStrip.cs: Add properties and internal methods to support merging.
4211         * ToolStripItem.cs: Add MergeAction and MergeIndex.
4212         * ToolStripItemCollection.cs: Add Insert and Remove methods that do
4213         not trigger reparenting or layouts.
4214         * ToolStripManager.cs: Add Merge and RevertMerge methods.
4215         * ToolStripOverflow.cs: Add a convenience method to find the ToolStrip that
4216         is hosting the overflow menu.
4217
4218 2007-04-13  Jackson Harper  <jackson@ximian.com>
4219
4220         * TextControl.cs: Set the line ending correctly for the first
4221         inserted line.
4222
4223 2007-04-13  Sebastien Pouliot  <sebastien@ximian.com>
4224
4225         * Theme.cs: Update GetMethod to get the new definition for 
4226         KnownColors.Update (and fix theme color updates).
4227
4228 2007-04-12  Everaldo Canuto  <everaldo@simios.org>
4229
4230         * MessageBox.cs: Fix some test and button position.
4231
4232 2007-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4233
4234         * Form.cs: Consider the implicit controls in
4235         GetRealChildAtPoint. We need it since this method
4236         is called on Form when handling the some messages in
4237         WndProc, and need to consider those implicit ones too.
4238         Fixes #80385.
4239
4240 2007-04-12  Jonathan Pobst  <monkey@jpobst.com>
4241
4242         * ToolStripMenuItem.cs: Display the ShortcutKeyDisplayString even
4243         if there are no ShortcutKeys set.
4244         * ToolStripProfessionalRenderer.cs: If an item has had its BackColor
4245         set, use it when painting.
4246
4247 2007-04-12  Jackson Harper  <jackson@ximian.com>
4248
4249         * TextControl.cs: Fix some off-by-one issues in line duplication
4250         and insertion in the undo manager. Also, overwrite the first tag
4251         of a line on insert, if it is just a zero lengthed tag. This
4252         prevents us from getting an extra stranded tag at the beginning of
4253         the first line.
4254
4255 2007-04-11  Everaldo Canuto  <everaldo@simios.org>
4256
4257         * Label.cs: Remove check for handle created in CalcAutoSize, we need 
4258         to calculated proper size including when handle was not created yet.
4259
4260 2007-04-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4261
4262         * MdiWindowManager.cs: When moving a form, allow the form to be moved
4263           when the mouse is outside of it's parent's client rectangle. Fixes
4264           #79982 (take 3, part 2).
4265
4266 2007-04-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4267
4268         * X11Structs.cs: Add a few ToString() overrides.
4269         * XplatUIX11.cs: Added GetTopLevelWindowLocation to try to calculate
4270           the window location in a window-manager independent way. Reworked
4271           FrameExtents, it now actually works. Reworked AddConfigureNotify
4272           and ReparentNotify handling to use GetTopLevelWindowLocation
4273           instead of the earlier, more hacky solution. Reworked SetWMStyles,
4274           hopefully for the better: we now set _NET_WM_WINDOW_TYPE* for all
4275           windows, DIALOG for modal windows, UTILITY for toolboxes and NORMAL
4276           for all other windows (fixes #81281 part 1), a toolwindow is hidden
4277           from the taskbar if it has a parent (fixes #81281 part 2 for kwin),
4278           and generally refactored to do as few calculations as possible
4279           inside the lock.
4280
4281 2007-04-09  Sebastien Pouliot  <sebastien@ximian.com>
4282
4283         * Theme.cs: Change "reflective-contract" between MWF and SD to 
4284         minimize # of calls, avoid Color serialization and avoid updating 
4285         every "known colors" each time a single one is updated.
4286
4287 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
4288
4289         * DataGridTextBoxColumn.cs: Only set IsInEditOrNavigateMode to false
4290         when not readonly and the text is explicitly set. Code style updates.
4291         * DataGridTableStyle.cs: Removed extra line.
4292         * DataGrid.cs: Code style updates. Removed extra whitespace.
4293         * DataGridColumnStyle.cs: Code style updates. Removed extra 
4294         whitespace.
4295
4296 2007-04-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4297
4298         * XplatUIX11.cs: Added comment that "fixes" #80021.
4299
4300 2007-04-09  Jackson Harper  <jackson@ximian.com>
4301
4302         * TextControl.cs: We don't need this -1 on the line count anymore.
4303
4304 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
4305
4306         * DataGridTextBoxColumn.cs: In Commit, use TypeConverter to convert
4307         entered value to underlying type, and convert it back to a string to
4308         apply formatting. Modified GetFormattedValue to use TypeConverter
4309         if available.
4310
4311 2007-04-08  Gert Driesen  <drieseng@users.sourceforge.net>
4312
4313         * ListViewItem.cs: Added null checks. Avoid duplicating code in ctors.
4314         Use SubItems property when we want to ensure there's at least one
4315         subitem. Modified SubItems property to ensure there's always at least
4316         one subitem. Avoid using ListViewSubItemCollection.AddRange to match
4317         the NRE's reported by MS.
4318
4319 2007-04-07  Gert Driesen  <drieseng@users.sourceforge.net>
4320
4321         * ProgressBar.cs: On 2.0 profile, default forecolor is Highlight. Added
4322         ResetForeColor override on 2.0. Fixed a few API compatibility issues.
4323         Spaces to tabs. Removed extra tabs.
4324
4325 2007-04-06  Jonathan Pobst  <monkey@jpobst.com>
4326
4327         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
4328         infinite loop.  (Forgot to copy to the horizontal toolstrip case.)
4329
4330 2007-04-06  Jackson Harper  <jackson@ximian.com>
4331
4332         * TextBoxBase.cs: When a delete removes a line, recalculate all
4333         lines below that line (they need to get offsets setup correctly)
4334         and invalidate.
4335
4336 2007-04-05  Jackson Harper  <jackson@ximian.com>
4337
4338         * TextControl.cs: We need to invalidate across the width of the
4339         document when we are invalidating multiple lines.
4340         * TextBoxBase.cs: Don't delete into the line ending.
4341
4342 2007-04-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4343
4344         * ListView.cs: Restore the check for the MouseHover event
4345         in ListView. It looks like the ListView fires more than one MouseHover
4346         event when HoverSelection is true  _only_ in weird-corner scenarios, but
4347         in most of the cases it only fires one. Also, add the 2.0 ItemMouseHover
4348         event.
4349
4350 2007-04-05  Mike Kestner  <mkestner@novell.com>
4351
4352         * ListView.cs : raise MouseDown before updating selection.
4353         [Fixes #80373 tab 1&3]
4354
4355 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
4356
4357         * ToolStripRenderer.cs: Add static method to mirror image.
4358         * ToolStripProfessionalRenderer.cs: Support ImageTransparentColor
4359         and RightToLeftAutoMirrorImage.
4360         * ToolStripItem.cs: Remove MonoTODO from ImageTransparentColor.
4361
4362 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
4363
4364         * ToolStripSplitStackLayout.cs: Support Alignment property.
4365         * ToolStripItem.cs: Remove MonoTODO from the Alignment property.
4366
4367 2007-04-05  Jackson Harper  <jackson@ximian.com>
4368
4369         * TextControl.cs: Move around the line endings when crossing line
4370         boundaries.
4371         - When combining lines, strip the ending text off the first line.
4372
4373 2007-04-05  Jackson Harper  <jackson@ximian.com>
4374
4375         * TextControl.cs:
4376         * TextBoxBase.cs: Try to never move the cursor into the line
4377         ending.
4378         
4379 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
4380
4381         * ToolStripItem.cs: Make sure we aren't firing mouse events when
4382         the item is disabled.  Also add a few missing methods.
4383
4384 2007-04-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4385
4386         * ListView.cs: We don't need the MouseEnter/MouseLeave check
4387         to fire just one MouseHover event when HoverSelection is true, since
4388         .Net does fire more than one MouseHover event in that scenario. Also,
4389         fix the selection in HoverSelection, by invoking UpdateMultiSelect
4390         if MultiSelect is true, instead of only setting ListViewItem.Selected.
4391         Finally, we need to reset the Hover logic in MouseMove, even when we
4392         don't have a selected item.
4393
4394 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
4395
4396         * ToolStrip.cs: Add several missing methods, properties, and events.
4397
4398 2007-04-04  Chris Toshok  <toshok@ximian.com>
4399
4400         * DataGridTextBoxColumn.cs: set the bounds of the text box to
4401         (0,0,0,0) in Commit, as MS does.
4402
4403         * DataGrid.cs: call EndEdit() from Select() as microsoft does, and
4404         make sure we set CurrentRow on a row header click *before* calling
4405         Select.  This moves the current cell (and the textbox) to the new
4406         row.  The call to Select then hides the textbox, giving us the
4407         correct behavior.  Fixes #80362.
4408
4409         * CurrencyManager.cs (UpdateIsBinding): raise ItemChanged (-1).
4410         (ListChangedHandler): reorder the position/current changed events,
4411         and call UpdateIsBinding in the ItemAdded case.
4412
4413         * GridColumnStylesCollection.cs: add some columns events, one of
4414         which raises the CollectionChanged event.
4415
4416 2007-04-04  Jackson Harper  <jackson@ximian.com>
4417
4418         * TextControl.cs: When we delete multiple selection lines
4419         invalidate the selection area, don't need to do that for single
4420         lines because the final update view will handle it.
4421
4422 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
4423
4424         * Control.cs: When we CreateControl, we need to also create all of the
4425         control's children.  The child's OnLoad must also fire before the parent's
4426         OnLoad.  Fixes the toolbox size in PDN.
4427
4428 2007-04-04  Jackson Harper  <jackson@ximian.com>
4429
4430         * TextBoxBase.cs: When the user presses enter, insert a line
4431         ending into the text. (Maybe this would be a good spot for
4432         Environment.NewLine).
4433         * TextControl.cs: Remove undo manager hack, line endings get
4434         inserted properly now.
4435         
4436 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
4437
4438         * MenuAPI.cs: 
4439         - Remove unneeded parameters in UpdateCursor.
4440         - Fix UpdateCursor to check if menu is active.
4441         - Call UpdateCursor when menu deactivate my click.
4442         [Fixes remaining issues from #80410]
4443
4444 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
4445
4446         * Control.cs: GetRealChildAtPoint method added, it make an
4447         recursive child control search for the point. 
4448
4449         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
4450         menu.
4451
4452         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
4453
4454 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
4455
4456         * Form.cs: Fix mouse position when send back mouse event after closes
4457         menu.
4458
4459 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
4460
4461         * Form.cs: Simplify the BUTTONDOWN for active tracker.
4462
4463 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
4464
4465         * Control.cs: Fix an issue where if a user resized a control inside
4466         a sizing method like OnResize, we would overwrite their explicit
4467         value.  Also, only call DefaultSize once in the constructor instead
4468         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
4469         nothing actually changed.
4470
4471 2007-04-03  Jackson Harper  <jackson@ximian.com>
4472
4473         * TextControl.cs: Don't attempt to copy text for lines with no
4474         text in them (technically this shouldn't happen, but we aren't
4475         always inserting line endings when we should be).
4476
4477 2007-04-03  Jackson Harper  <jackson@ximian.com>
4478
4479         * TextBoxBase.cs: Calculate the scrollbars before calculating the
4480         document, because this sets some of the document size properties
4481         that are needed.
4482
4483 2007-04-03  Jackson Harper  <jackson@ximian.com>
4484
4485         * TextBoxBase.cs: We need to calculate maximums even if this is
4486         not a multiline control, because the maxs are used for scrolling.
4487         - Display the caret after doing a page up/down, we need to
4488         manually display it because a proper CaretMoved event isn't
4489         triggered (this is because of the way the math is done to
4490         determine how far to scroll).
4491
4492 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
4493
4494         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
4495         (ToolBar was relying on SetBoundsCore to default the values sent 
4496         base off of BoundsSpecified.)
4497
4498 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4499
4500         * DateTimePicker.cs: Change Text so that when a null value or empty
4501           string is assigned to the test we always raise ValueChanged and
4502           TextChanged (earlier implementation would only raise ValueChanged
4503           if the current date value was different from DateTime.Now).
4504
4505 2007-04-03  Andreia Gaita <avidigal@novell.com> 
4506
4507         * ButtonBase: Call update after invalidation, fixes #80194
4508
4509 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4510
4511         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
4512           #79335.
4513
4514 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4515
4516         * XplatUIX11.cs: SetWMStyles: If the control is a form with
4517           FormBorderStyle = None, don't give the window any decorations.
4518           Fixes #81276.
4519
4520 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4521
4522         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
4523         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
4524           to check for is a mix of several styles (such as WS_CAPTION for
4525           instance).
4526         * Control.cs: Don't paint an area bigger than the client area when
4527           painting the background colour. Add an internal GetCreateParams.
4528           Update calls to XplatUI.CalculateWindowRect due to API change.
4529         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
4530           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
4531           the size if it hasn't been handled by any windows. When creating
4532           and moving windows, X wants the location of the entire window, but
4533           the size of the client window, so add
4534           TranslateClientRectangleToXClientRectangle,
4535           TranslateWindowSizeToXWindowSIze and
4536           TranslatedXWindowSizeToWindowSize to cope with this, and call them
4537           before every window creation and move. Update CalculateWIndowRect
4538           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
4539           In AddConfigureNotify don't do anything if the hwnd is a zombie
4540           (fixes the BadWindow we were getting while running the tests),
4541           always calculate the offsets when it's a parentless window, not
4542           only when reparented, and translate the window size, since we're
4543           getting the client size of the whole window, excluding entire
4544           window.
4545         * Theme.cs: Added BorderSizableSize.
4546         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
4547           anymore. Update calls to XplatUI.CalculateWindowRect due to API
4548           chang
4549         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
4550           change. Fake the window styles here instead of in XplatUIWin32 so
4551           that all back-ends get the same window styles (and it's Form that's
4552           deciding when to use wm, not the Win32 backend anyways)
4553         * Hwnd.cs: Completely reworked GetWindowRectangle and
4554           GetClientRectangle - they are now passed a CreateParams and they
4555           only use Style and ExStyle to determine the rectangles (they should
4556           now work just like Win32AdjustWindowRectEx - though quite a few
4557           special cases are probably missing). They should also be 100%
4558           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
4559           == rect), and all numbers (borders, menu sizes) are taken from the
4560           current theme. Added a GetBorders helper function that will return
4561           the borders for any given CreateParams (including captions and
4562           menus), and GetBorderSize that returns the given border size only.
4563         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
4564           Hwnd.GetClientRectangle.
4565
4566 2007-04-02  Chris Toshok  <toshok@ximian.com>
4567
4568         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
4569         logic between the values we present to the user and the values
4570         which are stored in the column's property.  Also, don't call
4571         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
4572
4573 2007-04-02  Jackson Harper  <jackson@ximian.com>
4574
4575         * TextBoxBase.cs: Scroll faster!
4576
4577 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
4578
4579         * StatusStrip.cs: Layout fixes for PDN.
4580         * ToolStrip.cs: Set item's available to true, and placement to main when
4581         added.
4582         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
4583         changing in setter before doing any work, add InternalVisible.
4584         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
4585         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
4586         infinite loop.
4587
4588 2007-04-02  Jackson Harper  <jackson@ximian.com>
4589
4590         * TextBox.cs: LBUTTON does not make the textbox select all of it's
4591         text on focus.
4592
4593 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4594
4595         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
4596           Makes ToolStripComboBoxes show up again.
4597
4598 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4599
4600         * ListView.cs: Add a hover_pending field in ListView
4601         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
4602         cycle (we are resetting the MouseHover logic in XplatUI
4603         to handle HoverSelection). Fixes #80429.
4604
4605 2007-04-02  Jackson Harper  <jackson@ximian.com>
4606
4607         * TextControl.cs: Make sure the attributes get set on the last
4608         tag.
4609         - Still have to do the end tag if we have stepped all the ways to
4610         the end.
4611
4612 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4613
4614         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
4615         on an internal libgdiplus call when the information is already 
4616         available via the public API.
4617
4618 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4619
4620         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
4621           control is removed from a control collecftion.
4622         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
4623           Fixes FormPropertyTest (failed on rare occasions).
4624         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
4625           of Win32SetParent (when changing from no parent to a parent it
4626           might add the new parent's location in screen coordinates to this
4627           window's location).
4628         * Form.cs: Rework ChangingParent once again, now the handle is
4629           recreated whenever a FormWindowManager is added or removed (that is
4630           whenever a normal form is parented or abandoned). Also change
4631           CreateParams so that all non-toplevel windows always get the
4632           specified sice (StartupPosition is never considered for
4633           non-TopLevel forms).
4634         * ContainerControl.cs: Add ChildControlRemoved, the container control
4635           needs to be notified when a control is removed from it's
4636           collection, in the case the removed control is the active control.
4637
4638 2007-04-02  Jackson Harper  <jackson@ximian.com>
4639
4640         * RichTextBox.cs: Use the new methods for setting the font and
4641         color, these methods set the specified attribute without
4642         overriding the other attributes.
4643
4644 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
4645
4646         * ToolStripPanel.cs: Fixes for better layouts in PDN.
4647
4648 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
4649
4650         * TextBox.cs: Added internal ChangeBackColor method to special-case
4651         Color.Empty. Added check for invalid ScrollBars value.
4652         * TextBoxBase.cs: Added internal ChangeBackColor method.
4653         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
4654         internal ChangeBackColor method to special-case Color.Empty. Added
4655         check for invalid ScrollBars value.
4656
4657 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
4658
4659         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
4660
4661 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
4662
4663         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
4664         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
4665         [Based on submitted patch from Olivier Duff.]
4666
4667 2007-03-30  Jackson Harper  <jackson@ximian.com>
4668
4669         * TextBox.cs: Only select all on initial focus if the user has not
4670         specified a selection area.
4671
4672 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
4673
4674         * UserControl.cs: Override CreateParams.
4675
4676 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4677
4678         [ Fixes #80995 ]
4679
4680         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
4681         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
4682           check for is a mix of several styles (such as WS_CAPTION for instance).
4683         * Control.cs: Don't paint an area bigger than the client area when painting
4684           the background colour. Add an internal GetCreateParams. Update calls to
4685           XplatUI.CalculateWindowRect due to API change.
4686         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
4687           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
4688           hasn't been handled by any windows. When creating and moving windows, X
4689           wants the location of the entire window, but the size of the client
4690           window, so add TranslateClientRectangleToXClientRectangle,
4691           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
4692           to cope with this, and call them before every window creation and move.
4693           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
4694           removing DeriveStyles). In AddConfigureNotify don't do anything if the
4695           hwnd is a zombie (fixes the BadWindow we were getting while running the
4696           tests), always calculate the offsets when it's a parentless window, not
4697           only when reparented, and translate the window size, since we're getting
4698           the client size of the whole window, excluding entire window.
4699         * Theme.cs: Added BorderSizableSize.
4700         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
4701           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
4702         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
4703           Fake the window styles here instead of in XplatUIWin32 so that all
4704           back-ends get the same window styles (and it's Form that's deciding when
4705           to use wm, not the Win32 backend anyways)
4706         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
4707           they are now passed a CreateParams and they only use Style and ExStyle
4708           to determine the rectangles (they should now work just like
4709           Win32AdjustWindowRectEx - though quite a few special cases are probably
4710           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
4711           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
4712           sizes) are taken from the current theme. Added a GetBorders helper
4713           function that will return the borders for any given CreateParams
4714           (including captions and menus), and GetBorderSize that returns the given
4715           border size only.
4716         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
4717           Hwnd.GetClientRectangle.
4718
4719 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4720
4721         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
4722           layout of the mdi children is handled by CreateParams. Fixes
4723           #79964,
4724
4725 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4726
4727         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
4728         processed.
4729
4730         * Form.cs: When active tracker mouse down is not processed, send event 
4731         back to control inside mouse position. [Fixes #81227]
4732
4733 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
4734
4735         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
4736         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
4737         stealing focus from the active form on Windows.  (Control will be made
4738         visible in ShowWindow.)
4739
4740 2007-03-29  Mike Kestner  <mkestner@novell.com>
4741
4742         * ImageList.cs : add internal Changed event.
4743         * ListView.cs : hook up to StateImageList.Changed to perform
4744         invalidations when the the state icon list changes. [Fixes #81191]
4745
4746 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
4747
4748         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
4749         to prevent tooltips from stealing focus from the active form on Windows.
4750
4751 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4752
4753         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
4754
4755         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
4756
4757 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4758
4759         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
4760         balloons.
4761
4762 2007-03-29  Jackson Harper  <jackson@ximian.com>
4763
4764         * TextControl.cs: When deleting text from non multiline textboxes,
4765         we need to update the entire document, because line offsets will
4766         be shifting.
4767
4768 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4769
4770         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
4771         added to theme, now we can create themes that uses diferent notify engines
4772         like notification-daemon from galago project or growl for Mac OS.
4773
4774 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
4775
4776         * NotifyIcon.cs: Prevent Balloon to show in task bar.
4777
4778 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
4779
4780         * XplatUIX11.cs: Prevent system to open more than one balloon.
4781
4782         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
4783         some compiler warning messages.
4784
4785 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
4786
4787         [Fixes #79149]
4788
4789         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
4790
4791         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
4792         implemented, this methods is used by NotifyIcon.BalloonWindow class.
4793
4794         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
4795         systems.
4796
4797 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4798
4799         * ListViewItem.cs: Forgot to make Invalidate internal.
4800
4801 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4802
4803         * ListView.cs: Add a InvalidateSelection method to
4804         invalidate methods which are currently selected, and call
4805         it when setting FullRowSelect and HideSelection, instead of
4806         calling Redraw.
4807
4808 2007-03-28  Chris Toshok  <toshok@ximian.com>
4809
4810         * XplatUIX11.cs (UnmapWindow): reindent this block.
4811
4812         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
4813         the selection_start if we're moving the selection (that is, not
4814         extending it). Fixes bug #80461.
4815
4816 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4817
4818         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
4819         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
4820         create private ControlCollection.
4821
4822 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4823
4824         * Control.cs: We need to call OnVisibleChanged for our implicit
4825         children as well as our normal children.  Fixes scrollbars in
4826         comboboxes not showing up.
4827
4828 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4829
4830         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
4831         the check for IsHandleCreated first.  The check in CreateHandle is not
4832         good enough because CreateHandle can be overriden, and the override 
4833         should not be called if the handle is already created.
4834
4835 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4836
4837         * ToolStrip.cs: Remove MonoTODO for tooltips.
4838         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
4839         * ToolStripContainer.cs: Add custom ControlCollection class.
4840         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
4841         * ToolStripDropDown.cs: Add some missing properties/methods.
4842         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
4843         * ToolStripItem.cs: Remove MonoTODO for tooltips.
4844         * ToolStripManager.cs: Add IsShortcutDefined.
4845         * ToolStripOverflow.cs: Override LayoutEngine.
4846         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
4847         * ToolStripSeparator.cs: Add ImageKey.
4848
4849 2007-03-28  Jackson Harper  <jackson@ximian.com>
4850
4851         * TextControl.cs: If a char delete removes a line ending, we need
4852         to update the ending style.
4853         - Make sure the line ending calcs get called.
4854
4855 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4856
4857         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
4858           it was making the new code not work. Fixed a typo in the new code
4859           as well. Fixes #79826.
4860
4861 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4862
4863         * XplatUIWin32.cs:
4864         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
4865         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
4866         - SystrayBalloon method implemented.
4867         [Add support for notifyicon balloon on win32, #79149]
4868
4869 2007-03-27  Mike Kestner  <mkestner@novell.com>
4870
4871         * ThemeWin32Classic.cs : update StateImageList selection to mirror
4872         the ms behavior when only one image is added to the list.
4873         [Fixes #81191]
4874
4875 2007-03-27  Jackson Harper  <jackson@ximian.com>
4876
4877         * TextControl.cs: Improvements to non multiline line ending
4878         drawing/measuing.
4879
4880 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4881
4882         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
4883
4884 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4885
4886         * NotifyIcon.cs: 
4887         - Balloon message handling added.
4888         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
4889
4890         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
4891         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
4892         to SystrayBalloon to me like other Systray method, also a
4893         handle parameter added.
4894
4895 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4896
4897         * ListView.cs: Show scrollbars even when items.Count == 0
4898         but the columns Width is bigger than the ListView.Width.
4899         Also, when columns.Count == 0 set layout_wd and layout_ht
4900         to the ClientRectangle values, so we don't show any scrollbar
4901         in that case.
4902
4903 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4904
4905         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
4906
4907 2007-03-27  Jackson Harper  <jackson@ximian.com>
4908
4909         * RichTextBox.cs: The RTF library decodes the text properly for us
4910         now.
4911
4912 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4913
4914         * ListView.cs: Display HeaderControl even when columns.Count == 0.
4915         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
4916         ListView header (HeaderControl), instead of Control.BackColor.
4917
4918 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
4919
4920         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
4921         Fixes tab control issues where controls would not show up because they
4922         never received their OnVisibleChanged call.
4923
4924 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4925
4926         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
4927         BalloonTipShown).
4928
4929 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
4930
4931         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
4932         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
4933         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
4934         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
4935         the handle.  Fix WindowState by using the internal variable until we are 
4936         sure that we've been shown.
4937         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
4938         max or min.
4939         [Fixes bug #81198]
4940
4941 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4942
4943         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
4944           (at least borders). Fixes #79386 on Linux (with a small difference
4945           in behaviour: when trying to resize a caption-less window metacity
4946           shows the sysmenu. Resizing is still possible though).
4947         * XplatUIWin32.cs: When setting window styles send request an extra
4948           WM_NCCALCSIZE when it's a form without title (due to no text and no
4949           caption), since Win32 seems to calculate it wrong the first time we
4950           get the message, though the second time things work as they should.
4951         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
4952           newly reparented window might show up unparented. Update
4953           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
4954           there's no title text. Fixes #79386.
4955
4956 2007-03-27  Mike Kestner  <mkestner@novell.com>
4957
4958         * ListBox.cs : don't perform invalidations if the handle hasn't been
4959         created.  [Fixes #80753]
4960
4961 2007-03-27  Mike Kestner  <mkestner@novell.com>
4962
4963         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
4964         [Fixes #80428]
4965
4966 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
4967
4968         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
4969         needed to implement Balloon.
4970
4971 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4972
4973         * ListViewItem.cs: In the constructors that take
4974         an array of strings, don't use ListViewSubItemCollection.AddRange
4975         method to add items, since we need to have a different behaviour (in
4976         the constructors we add an item for each null string, opposed to
4977         the behaviour of AddRange, which adds nothing).
4978
4979 2007-03-26  Andreia Gaita  <avidigal@novell.com>
4980
4981         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
4982
4983 2007-03-26  Jackson Harper  <jackson@ximian.com>
4984
4985         * TextControl.cs: Draw and measure line endings when in non
4986         multiline mode.
4987         - When searching the text, count the end of the last line as a
4988         word boundary.
4989
4990 2007-03-26  Jackson Harper  <jackson@ximian.com>
4991
4992         * RichTextBox.cs: The selection_start and selection_end don't
4993         really track the correct tags for the selection. So we'll manually
4994         compute the correct tag here.
4995
4996 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4997
4998         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
4999           and Continuous styles. Fixes #79469.
5000
5001 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
5002
5003         * ToolStrip.cs: Implement Tooltips.
5004         * ToolStripItem.cs: Create internal method for determining tooltip.
5005
5006 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
5007
5008         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
5009
5010 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
5011
5012         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
5013         it prevents a problem thak keeps icon visible after application 
5014         closes on win32.
5015
5016 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
5017
5018         * NotifyIcon.cs: Balloon properties and methods created.
5019
5020         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
5021         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
5022
5023 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
5024
5025         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
5026
5027 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
5028
5029         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
5030         parameter indicates which aspects were explicit/user-set.
5031         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
5032
5033 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
5034
5035         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
5036         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
5037         SmallChange, and Value (2.0).
5038         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
5039
5040 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5041
5042         * ListView.cs: Always set item_control.Width in LayoutDetails
5043         if View is Details. Setting it later in CalculateScrollBars
5044         in a not-so-corner scenario (the sum of columns width is
5045         not bigger than the ListView width when handle is created, and then
5046         that sum gets bigger by increasing the width of the columns)
5047         causes a very weird recursion path (which shouldn't be happening,
5048         since header_control sets it in CalculateScrollBars too). This bug
5049         appeared after Chris' fixes for handle created issues, so probably
5050         it's related to some handle-creation time.
5051
5052 2007-03-23  Chris Toshok  <toshok@ximian.com>
5053
5054         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
5055         case where there's an add row, just so we don't end up in a case
5056         where it's not displayed (this happens when the row is partially
5057         obscured).  Fixes bug #79574.
5058
5059 2007-03-23  Jackson Harper  <jackson@ximian.com>
5060
5061         * TextControl.cs:
5062         * TextBoxBase.cs:
5063         * RichTextBox.cs: Preserve line endings in the lines text buffer,
5064         also added an enum that represents the line ending type. 
5065
5066 2007-03-23  Andreia Gaita  <avidigal@novell.com>
5067
5068         * NumericUpDown.cs: Fix logic so Text and Value properties are not
5069         messed with in every method call, but only from DownButton, 
5070         UpButton, UpdateEditText() and ValidateText. Fixes #80346
5071
5072 2007-03-23  Chris Toshok  <toshok@ximian.com>
5073
5074         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
5075         format objects if the format spec is "".  Fixes bug #80889.
5076
5077 2007-03-22  Miguel de Icaza  <miguel@novell.com>
5078
5079         * ToolStripPanel.cs (Join): added stubs to build PDN3
5080
5081         * Control.cs (AutoScrollOffset): Add.
5082
5083         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
5084         property, its only implemented for Win32, on X11 it defaults to
5085         some hardcoded value.
5086
5087         * ToolStripItem.cs (AllowDrop): Add property
5088
5089 2007-03-22  Mike Kestner  <mkestner@novell.com>
5090
5091         * ListView.cs : in FullRowSelect Details mode, only enable box
5092         selection if the user clicks over the "item" column outside of the
5093         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
5094
5095 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5096
5097         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
5098           handle is not created yet.
5099         * Form.cs: Select: Don't call CreateHandle if the handle is already
5100           created, avoids a stack overflow on Windows when we are recreating
5101           controls.
5102         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
5103           they are made visible, and override AfterTopMostControl to keep
5104           them on top when other controls are brought to front.
5105           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
5106           or force_*scroll_visible is true (old implementation always shows
5107           scrollbars when needed, no matter what auto_scroll was set to).
5108         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
5109           IsHandleCreated check.
5110
5111 2007-03-22  Andreia Gaita  <avidigal@novell.com>
5112
5113         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
5114         row or col separator.
5115         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
5116
5117 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
5118
5119         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
5120
5121 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
5122
5123         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
5124         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
5125         every time. Fixes #80410.
5126
5127 2007-03-22  Chris Toshok  <toshok@ximian.com>
5128
5129         * BindingSource.cs (AddNew): partially implement.
5130
5131         remove a couple of NotImplementedException's
5132         to get bug #81148 closed.
5133
5134 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
5135
5136         [Fixes #80380]
5137         
5138         * Control.cs:
5139         - UpdateCursor method added to update the screen cursor.
5140         - GetAvailableCursor method added to return cursor for enabled tree,
5141         it searches for cursor on control and it's parent's for enabled control.
5142         - Call UpdateCursor method on setter of Cursor property.
5143         - On setter of Enabled call UpdateCursor when it is false, we need to
5144         change cursor to normal (or to this parent cursor) because cursor 
5145         setting theres no effect to disabled controls.
5146         - Some minor source changes to follow the coding style guidelines.
5147
5148         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
5149         controls.
5150
5151 2007-03-22  Chris Toshok  <toshok@ximian.com>
5152
5153         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
5154         generates.
5155
5156 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5157
5158         * XplatUIX11.cs: Implement default locations for forms.
5159         * Form.cs: Completely rework startup location for forms. Fixes #79964.
5160         * Hwnd.cs: Add previous_child_startup_location (to track the current
5161           startup location for any child forms of the current form) and
5162           previous_main_startup_location (to track the startup location for
5163           the current toplevel form).
5164
5165 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
5166
5167         * Control.cs: Don't trigger a layout if an implicit control is added
5168         that isn't visible.  Also, don't notify the owner when an implicit control
5169         is added.  (Owners shouldn't even know about their implicit controls.)
5170
5171 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
5172
5173         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
5174         to save some re-layouts.
5175
5176 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
5177
5178         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
5179         [Fixes #81203]
5180
5181 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
5182
5183         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
5184         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
5185
5186 2007-03-21  Mike Kestner  <mkestner@novell.com>
5187
5188         * ListView.cs : disable selection update for non-left button clicks
5189         with mods and over selected items.  [Fixes #80524]
5190
5191 2007-03-20  Jackson Harper  <jackson@ximian.com>
5192
5193         * TextControl.cs:
5194         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
5195         \r\r\n, \n.
5196
5197 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5198
5199         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
5200           very probably a more complicated calculation there. Update the
5201           textbox' ForeColor and BackColor when the ComboBox' colors are
5202           changed. Change the border change in LayoutComboBox to only affect
5203           the textbox, not all the calculations there. Seems to fix most of
5204           #79436.
5205
5206 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5207
5208         * ComboBox.cs: Handle Home and End keys as well as all combinations of
5209           modifiers + navigation keys as input keys, enables advanced text
5210           selection in the combobox (like Shift+Left Arrow for instance).
5211           ComboTextBox now overrides Focused and returns whatever
5212           ComboBox.Focused returns, since it really should be focused
5213           whenever the ComboBox is. Fixes #80795. Also make the border around
5214           the text box one pixel bigger, as mentioned in #79436.
5215
5216 2007-03-20  Jackson Harper  <jackson@ximian.com>
5217
5218         * TreeView.cs: Don't offset the images, this was causing some
5219         artifacts when expanding/collapsing with images that were the
5220         exact height of the treenode.
5221
5222 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5223
5224         * TrackBar.cs: Query the theme for the correct value when the mouse
5225           moves and the thumb is pressed. 
5226         * Theme.cs: Added TrackBarValueFromMousePosition
5227         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
5228           implementation was updating the trackbar value when drawing, now
5229           the drawing methods only draw. Fixes #80900. Refactored the
5230           calculations out to TrackBarValueFromMousePosition and
5231           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
5232           according to the mouse position whenever it wants to. Changed the
5233           light coloured pen when drawing the thumb from ControlLight to
5234           ControlLightLight, because the ControlLight is the same colour as
5235           the background so the 3D effect is lost. 
5236
5237 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5238
5239         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
5240         defined. Fixes #80784.
5241
5242 2007-03-20  Marek Habersack  <mhabersack@novell.com>
5243
5244         * ContextMenuStrip.cs: align with the change introduced in
5245         revision 74664.
5246
5247 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5248
5249         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
5250         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
5251         in SetTopmost.
5252
5253 2007-03-19  Chris Toshok  <toshok@ximian.com>
5254
5255         * Control.cs (WmPaint): don't make use of the Handle property
5256         after an event is emitted, as the user could have closed the
5257         form/destroyed the control.  Store the Handle in a local variable
5258         and make use of that.  Fixes bug #80768.
5259
5260 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5261
5262         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
5263         behavior in X11 environments.
5264
5265 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5266
5267         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
5268         because on setter of topmost we dont call SetTopmost when handle is not
5269         created.
5270
5271 2007-03-20  Jackson Harper  <jackson@ximian.com>
5272
5273         * TextControl.cs: Need to use SelectionLength () not
5274         selection_length, since that var is reset to -1.
5275         - Draw the caret when we don't have focus.
5276         * TextBox.cs: The selectall actually doesn't occur until the first
5277         focus.
5278         * TextBoxBase.cs: Need to update the caret position after a
5279         selectall.
5280         
5281 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5282
5283         * ListView.cs: Enable scrolling when using Tile view.
5284
5285 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5286
5287         [Fixes #80902]
5288
5289         * XplatUIDriver.cs: Abstract SetOwner method created.
5290
5291         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
5292         must be implemented and was masked as todo.
5293
5294         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
5295         GWL_HWNDPARENT.
5296
5297         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
5298         cheking for null owner to remove transient. The SetTopmost will be change
5299         on a decond step.
5300
5301         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
5302         SetTopmost. Now owned forms will work properly in win32 and X11.
5303
5304 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5305
5306         * MdiWindowManager.cs: Update function name.
5307         * Form.cs: After closing a form MdiParent is always null.
5308         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
5309           better what it should do: necessary book-keeping when the form is
5310           closed, it should not close the form itself.
5311
5312 2007-03-19  Andreia Gaita  <avidigal@novell.com>
5313
5314         * ListViewItem.cs: Fix back and fore color. The subitems only
5315         use their own colors if they are set, otherwise use the listview's
5316         colors. Don't set default colors on constructor for subitem.
5317         Fixes #79315.
5318
5319 2007-03-19  Mike Kestner  <mkestner@novell.com>
5320
5321         * ListView.cs : make box selection for Details views with 
5322         FullRowSelect conform to MS behavior when clicking in the "item" 
5323         column and clicking outside the defined columns.
5324         [Fixes case 5-6 of #80374]
5325
5326 2007-03-19  Chris Toshok  <toshok@ximian.com>
5327
5328         * ScrollableControl.cs: create the controls from within the ctor,
5329         but don't actually add them until our handle is created.  this
5330         fixes a NRE possibility jpobst found (if you override OnLayout in
5331         a subclass, it's called before your ctor).  Also, add a
5332         IsHandleCreated guard to UpdateSizeGripVisibility as well.
5333
5334 2007-03-19  Jackson Harper  <jackson@ximian.com>
5335
5336         * TextBox.cs: Reduce the amount of invalidation we do.
5337         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
5338         some of them are true by default on MS.
5339         - Add some functions to reduce the amount of invalidates we do.
5340         * TextControl.cs: Less invalidation.
5341
5342 2007-03-19  Chris Toshok  <toshok@ximian.com>
5343
5344         [ Fixes #81773, and *seems* to fix #81553 as well ]
5345
5346         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
5347         AccumulateDestroyedHandles.  We need to do it *after* we send
5348         WM_DESTROY, as the user's code can access Control.Handle in
5349         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
5350         move the WM_DESTROY/zombie handling to before the call to
5351         XDestroyWindow.  For some reason without this ordering
5352         FormTest.RecreateHandle hangs.  This ordering is semantically
5353         equivalent, however, as XDestroyWindow is async anyway.
5354
5355 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
5356
5357         * RichTextBox.cs: Reset backcolor_set after setting default.
5358
5359 2007-03-19  Chris Toshok  <toshok@ximian.com>
5360
5361         * ScrollableControl.cs: the scroll position should not effect the
5362         canvas size.  commit patch from georgegiolfan@yahoo.com, which
5363         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
5364         
5365 2007-03-19  Chris Toshok  <toshok@ximian.com>
5366
5367         * ScrollableControl.cs: clean this up a bit.  create the
5368         scrollbars in the ctor and just show/hide them as needed.  Also,
5369         make hscroll_visible/vscroll_visible internal to Recalculate, and
5370         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
5371         everywhere else.  This seems to fix the scrollbars appearing
5372         beneath the content for me (i have *no* idea why that is,
5373         however.)
5374
5375 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
5376
5377         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
5378         some redundacy for stuff in Anchor and Dock that base will take care of.
5379         [Fixes #80762]
5380
5381 2007-03-19  Mike Kestner  <mkestner@novell.com>
5382
5383         * ListView.cs : make box selection for Details views without 
5384         FullRowSelect dependent on the text bounds, not item bounds.
5385         * ListViewItem.cs : add an internal property to obtain the TextBounds
5386         in Details view.  [Fixes case 1-4 of #80374]
5387
5388 2007-03-19  Andreia Gaita  <avidigal@novell.com>
5389
5390         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
5391         we're < 2.0. #78448 && #80316
5392
5393 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
5394
5395         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
5396         have the same style available as the previously selected one.  Also,
5397         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
5398
5399 2007-03-19  Jackson Harper  <jackson@ximian.com>
5400
5401         * TextControl.cs: Add an alignment property that all new lines
5402         will be given.
5403         - Make sure to use the align shift when calculating the line's X
5404         position.
5405         * TextBox.cs: Set the alignment on the document as well as on all
5406         the document lines.
5407
5408 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5409
5410         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
5411           throw if setting the parent of an mdichild that already has an
5412           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
5413           AssemblyProductAttribute in the assembly, use the type's namespace (as
5414           MS seems to do). CreateControl: don't create the handle if the control
5415           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
5416           create handle if the control is not a form. Change FocusInternal to
5417           virtual so that it can be overriden by Form.
5418         * TextBox.cs: Update call to FocusInternal.
5419         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
5420           form is not a toplevel form when it's a mdi child, so update is_toplevel
5421           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
5422           hasn't been created. Show (IWin32Window): Don't allow this overload for
5423           toplevel windows. CenterToParent/CenterToScreen/Select: create the
5424           handle as MS does. SetVisibleCore: if called on a MdiChild and the
5425           parent isn't visible yet, save the visibility and restore it when the
5426           parent is made visible.
5427         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
5428           methods, since the visibility of the scrollbars can be changed from
5429           several places, not only from AutoScroll.
5430           [Fixes #81179]
5431
5432 2007-03-19  Jackson Harper  <jackson@ximian.com>
5433
5434         * RichTextBox.cs: Enable shortcuts by default.
5435         * TextBoxBase.cs: Add conditional shortcuts.  
5436
5437 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
5438
5439         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
5440
5441 2007-03-19  Chris Toshok  <toshok@ximian.com>
5442
5443         [ Fixes bug #80604]
5444         
5445         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
5446         swallow the message we're waiting on, instead of delivering it, as
5447         this is only used for the WM_SHOWWINDOW raised from
5448         MapWindow/UnmapWindow, and the message needs to be generated
5449         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
5450         before doing the Map/Unmap.  Also make sure that the Hwnd is still
5451         alive after the message has been handled.
5452
5453         *before* the window is shown.
5454
5455         * Control.cs (CreateControl): guard a few more things inside the
5456         if (!is_created) block, as we might end up being called again -
5457         yay .net.
5458         (WmShowWindow): call CreateControl if we're showing the control.
5459
5460 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5461
5462         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
5463           controls without a handle if they have any parent with a handle. In
5464           Dispose add a check whether the handle is created or not before
5465           calling BeginInvoke, this removes the need of the extra disposing
5466           parameter (which was bogus anyway since it didn't prevent the
5467           invoke from happening, it only skipped the check for an existing
5468           handle, meaning that the invoke would call on an inexistent
5469           handle).
5470
5471 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
5472
5473         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
5474         appears in taskbar.
5475
5476 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
5477
5478         * MessageBox.cs:
5479         - Fixed a problem that dont show help button for messages with 3 buttons.
5480         - Refactory button size and position calculations, now dont use fixed 
5481         values, also fixed button sizes (#80043) and form's border space.
5482         - AddButton method created, now all other AddButton methods call this one.
5483         - Some other source code cosmetic changes.
5484
5485 2007-03-18  Jackson Harper  <jackson@ximian.com>
5486
5487         * RichTextBox.cs: Don't do this all fonts must match check if
5488         there is only one char selected.
5489
5490 2007-03-18  Jackson Harper  <jackson@ximian.com>
5491
5492         * TreeView.cs: ScrollWindow works properly now, so we don't need
5493         to screw around with the scroll area.  This fixes some artifacts
5494         when expanding and collapsing.
5495
5496 2007-03-18  Jackson Harper  <jackson@ximian.com>
5497
5498         * TextBoxBase.cs: Allow updating the selection position when the
5499         cursor is outside the textarea, but we have a capture.
5500         * TextControl.cs: A special case for when the cursor is outside
5501         the bounds of the TB.
5502         
5503 2007-03-18  Jackson Harper  <jackson@ximian.com>
5504
5505         * TextBoxBase.cs: Remove image pasting code for now.  There is no
5506         way to get an image on the clipboard right now anyways.
5507         * TextControl.cs:
5508         * RichTextBox.cs: Use the new RTF Picture class for pictures.
5509
5510 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
5511
5512         * MessageBox.cs:
5513         - Set window properties in constructor intead of on CreateParams.
5514         - Remove topmost from Window ExStyle.
5515         - Set ShowInTaskbar to false.
5516         - Set form border to FixedDialog.
5517         - Some cosmetic changes and remove unneeded comments.
5518         - It fixes itens 2,3 and 4 of bug #80043.
5519
5520 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
5521
5522         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
5523         none was explicitly set. Fixes part of bug #79949.
5524
5525 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
5526
5527         * ToolStripComboBox.cs: Add AutoComplete*.
5528
5529 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
5530
5531         * ToolStripComboBox.cs: Add FlatStyle.
5532
5533 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
5534
5535         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
5536         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
5537
5538 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5539
5540         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
5541           CheckBox.cs, RadioButton.cs, BindingSource.cs,
5542           DataGridColumnStyle.cs: Remove warnings.
5543
5544 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5545
5546         * Menu.cs: MergeMenu: Check menu argument for null before looping over
5547           it.
5548         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
5549           visibility of mdi child forms. FormSizeChangedHandler: update the
5550           maximized size if size has changed while maximized.
5551         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
5552           creating the handle.
5553         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
5554           avoid creating the handle if not created.
5555         * XplatUI.cs: Update debug output.
5556         * XplatUIStructs.cs: Added ToString's for a couple of structs.
5557
5558 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
5559
5560         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
5561         ProcessCmdKey().
5562         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
5563         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
5564         Implement keyboard shortcuts.
5565
5566 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
5567
5568         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
5569         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
5570         ColorDialog and all derived classes.
5571
5572 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
5573
5574         [ Fixes bug #79828 ]
5575
5576         * ToolBar.cs:
5577         - Rename ToolBarButtonInfor to ToolBarItem.
5578         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
5579         - Maintain an array of ToolBarItem, used instead of ToolBarButton
5580         collection to be able add same button more than one time on a toolbar.
5581         - Refactory all properties and methods to use ToolBarItem. 
5582
5583         * ToolBarButton.cs: 
5584         - Remove all propeties and methods that is now in ToolBarItem.
5585         - Rectangle propery now gets the rectangle from first ToolBarItem to
5586         mimic win32 behavior.
5587         - Size calculation and layout methods also removed.
5588
5589         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
5590         ToolBarItem instead of ToolBarButton to right drawing buttons when
5591         same button/separator was added more than one time to ToolBar.
5592
5593         * ThemeNice.cs: Same as above. 
5594
5595 2007-03-15  Andreia Gaita  <avidigal@novell.com>
5596
5597         * XplatUIX11.cs: Fire extra MouseMove events right after
5598         MouseDown and MouseUp, emulating win32's <censored> behaviour
5599         for apps that rely on it.
5600
5601 2007-03-15  Jackson Harper  <jackson@ximian.com>
5602
5603         * TextControl.cs:
5604         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
5605         it is drawn on the controls client window and there is no NC
5606         area.
5607         - Set the background color to gray on 2.0 when we are readonly.
5608
5609 2007-03-15  Chris Toshok  <toshok@ximian.com>
5610
5611         [ Fixes bug #81144 ]
5612         
5613         * XplatUIX11.cs: implement VirtualScreen independently of
5614         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
5615         property.
5616
5617 2007-03-15  Chris Toshok  <toshok@ximian.com>
5618
5619         * Hwnd.cs: add an internal field for the cached_window_state.
5620
5621         * XplatUIX11.cs: cache the window state, invalidating the cache
5622         (and thus re-querying the X server) only when we see an update to
5623         the _NET_WM_STATE property.
5624
5625 2007-03-15  Chris Toshok  <toshok@ximian.com>
5626
5627         * BindingSource.cs: get a lot of the unit tests working.
5628
5629 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
5630
5631         * Control.cs: Modify UpdateStyles to store distances when bounds >=
5632         0 instead of just bounds > 0.  [Fixes bug #80912]
5633
5634 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
5635
5636         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
5637         and methods.
5638
5639 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
5640         
5641         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
5642         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
5643         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
5644         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
5645
5646 2007-03-15  Chris Toshok  <toshok@ximian.com>
5647
5648         [ Fixes #81101 ]
5649         
5650         * Control.cs: add Ivan's fix for 81101, with a slight modification
5651         - you can set control.Target to null.
5652
5653 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
5654
5655         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
5656         HideDropDown, use Hide instead to prevent an NRE.
5657         [Fixes bug #81147]
5658
5659 2007-03-14  Jackson Harper  <jackson@ximian.com>
5660
5661         * TextBoxBase.cs: Mess with the creation stuff a little. We need
5662         to calculate the document before the handle is created, in some
5663         cases. (Actually just one case).
5664
5665 2007-03-14  Jackson Harper  <jackson@ximian.com>
5666
5667         * TextBoxBase.cs: Need to display the caret after letting the base
5668         wndproc handle the focus methods, because the caret display
5669         methods check the focus state.
5670         - Try to display the caret after updating it's position with SelectWord.
5671         - Don't need to do an immediate update on this recalc, since there
5672         will be an invalidate anyways.
5673
5674 2007-03-14  Jackson Harper  <jackson@ximian.com>
5675
5676         * TreeView.cs: Some workarounds so that we can match event order a
5677         little better.
5678
5679 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
5680
5681         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
5682         #80803. Avoid NullReferenceException when Control does not have
5683         parent. Fixed different blinkstyle issues. Only subscribe to Tick
5684         event a single time. Only draw error icon when control is created and
5685         visible. Fixes failing unit tests.
5686
5687 2007-03-14  Andreia Gaita  <avidigal@novell.com>
5688
5689         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
5690         Selecting events. Fire Leave and Enter events when changing tabs.
5691
5692 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
5693
5694         * TreeView.cs: Add TreeViewNodeSorter.
5695         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
5696
5697 2007-03-14  Chris Toshok  <toshok@ximian.com>
5698
5699         * Form.cs: go ahead and remove the RecreateHandles that jpobst
5700         removed earlier and I had him add back it.  It turns out metacity
5701         *does* in fact handle the MOTIF_WM_HINTS property changing, it
5702         just doesn't redraw the window titlebar until you resize the
5703         window.  This also means we aren't recreating the entire window
5704         hierarchy on X when you change this property.  And it looks better
5705         on windows, too.
5706
5707 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5708
5709         * ListViewItem.cs:
5710         * ListView.cs: Collecting selection information
5711         is now done in SelectedIndexCollection rather than in
5712         SelectedListViewItemCollection. This is done so we can
5713         have the selection information code in one single place
5714         (virtual mode selection information entirely depends on
5715         SelectedIndexCollection).
5716
5717 2007-03-13  Miguel de Icaza  <miguel@novell.com>
5718
5719         * ErrorProvider.cs: Add stubs for ISupportInitialize
5720
5721 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5722
5723         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
5724         in the right order with the right values, from the Checked property, 
5725         just as MS does (instead of triggering them from ListView).
5726
5727         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
5728
5729 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5730
5731         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
5732         the correct handler in OnItemCheck method (ItemCheckEventHandler 
5733         instead of EventHandler). This used to throw an InvalidCastException.
5734
5735 2007-03-13  Jackson Harper  <jackson@ximian.com>
5736
5737         * TextBoxBase.cs: Calculate the document before the handle is
5738         created, so there isn't an extra invalidate called.
5739
5740 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
5741
5742         * Form.cs: Don't set owner in ShowDialog until we are sure
5743         that we aren't going to throw an exception.  [Fixes bug #80773]
5744
5745 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
5746
5747         * TreeView.cs: Make it compile.
5748
5749 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5750
5751         * Control.cs: Another place we don't call SizeFromClientSize.
5752         * Form.cs: Another place we don't call SizeFromClientSize.
5753         [Fixes bug #81125]
5754
5755 2007-03-12  Jackson Harper  <jackson@ximian.com>
5756
5757         * TreeView.cs: Basically emulating some strangness here with
5758         exanding nodes and setting node positions when windows aren't
5759         created.
5760         - Also attempting to walk the node tree less than previously, and
5761         just use visible order calculations for determining offsets.
5762         - oops made scrolling backwards.
5763         * TreeNode.cs: We need to start nodes with a zero visible order,
5764         because the order calcs are based on the first nodes order.
5765
5766 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5767
5768         * Form.cs: Don't exit the program if RecreateHandle is called on
5769         the main form.
5770
5771 2007-03-12  Chris Toshok  <toshok@ximian.com>
5772
5773         * XEventQueue.cs: remove the use of PostQuitState.
5774
5775         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
5776         WM_QUIT message in GetMessage, return false (and if we're in the
5777         nested WaitForHwndMessage, repost the WM_QUIT message).
5778
5779 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5780
5781         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
5782         or the MaximizeBox properties.  [Part of bug #80640]
5783
5784 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
5785
5786         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
5787         no links.
5788
5789 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5790
5791         * ToolStripItem.cs: Fix some tests I broke by checking Visible
5792         instead of visible.
5793
5794 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
5795
5796         * FileDialog.cs: Use text of File name combobox to determine what
5797         files the user selected. Added tokenizer to parse the file names.
5798         Fixes bug #81123.
5799
5800 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5801
5802         * Control.cs: We can't call SizeFromClientSize in the constructor,
5803         but we still need to do the same work, so make an internal version.
5804         [Fixes bug #80621]
5805
5806 2007-03-12  Jackson Harper  <jackson@ximian.com>
5807
5808         * TreeView.cs:
5809         * TreeNode.cs:
5810         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
5811         IsExpanded.
5812
5813 2007-03-12  Jackson Harper  <jackson@ximian.com>
5814
5815         * TextBoxBase.cs: Now that the handles are being created a little
5816         later, we need to make sure that the document is recalculated when
5817         the handle is created.
5818
5819 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
5820
5821         * Theme.cs: GetLinkFont abstract method added.
5822         
5823         * LinkLabel.cs: 
5824         - Remove CalcTrimRectangle, no longer needed.
5825         - Factor also remove, position issues must be fixed in libgdiplus.
5826         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
5827         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
5828         care about font used to draw links.
5829         - Set TabStop to true when control is "Selectable", control is selectable
5830         when have one or more links. Fixes #80501 (test case is also added).
5831         - Set the LinkArea values after links change, LinkArea values must be
5832         based in first link position and size, a test case was created.
5833         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
5834         the attribute must be true LinkArea.Length > 0. The same was applied to
5835         TabStop.
5836         
5837         * ThemeWin32Classic.cs: 
5838         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
5839         in draw method.
5840         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
5841         color change.
5842         - Draw focus rectangle for every parts focused, including parts that 
5843         is on another line, its because regions returns various rectangles
5844         and not only one. Needed to mimic W32 look.
5845         - Uses Graphics.Clip to delimite region painted, it mean that now 
5846         complete text is passed to DrawString, with this we solve layout
5847         issues without create another text renderer.
5848         - Uses Region.Intersect to fix some flickers problems, now only needed
5849         parts will redrawed.
5850         - This changes fixes #79614 and some other unreported issues, on Linux 
5851         some layout problems still remain, the problem is under 
5852         MeasureCharacterRanges but it is an libgdiplus bug.
5853
5854 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
5855
5856         * TextBox.cs: Set for foreground color.
5857         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
5858         this is already done in Control.
5859
5860 2007-03-10  Jackson Harper  <jackson@ximian.com>
5861
5862         * TextBox.cs: Set the background color, but reset the
5863         backcolor_set flag which is just for the user setting the
5864         background color.
5865
5866 2007-03-09  Chris Toshok  <toshok@ximian.com>
5867
5868         * Control.cs: really remove the call to XplatUI.SetVisible from
5869         CreateHandle(), like I said I did when I merged the branch.
5870
5871         * BindingSource.cs: implement some more of this stuff.
5872
5873 2007-03-09  Jackson Harper  <jackson@ximian.com>
5874
5875         * TextBox.cs: Don't explicitly set our background colors.
5876         * TextControl.cs:
5877         * TextBoxBase.cs: Draw readonly text.
5878         - Need to invalidate when backcolor or readonly are changed.
5879         
5880 2007-03-09  Jackson Harper  <jackson@ximian.com>
5881
5882         * TextBoxBase.cs: Don't set the forecolor until the handle is
5883         created.
5884         - Do not raise OnPaint, and removed some old debug code.
5885
5886 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
5887
5888         * ScrollableControl.cs: Fix mouse wheel scrolling.
5889
5890 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
5891
5892         * Control.cs: Wire up MouseDoubleClick event.
5893
5894 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
5895
5896         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
5897         top or bottom.
5898         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
5899         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
5900         item is added.  This logic was moved to ToolStrip.OnItemAdded.
5901         [Fixes bug #81090]
5902
5903 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5904
5905         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
5906
5907 2007-03-08  Jackson Harper  <jackson@ximian.com>
5908
5909         * TreeView.cs: Show the correct image for selected node (this used
5910         to work, not sure how the code got deleted). Also implemented 2.0 feature
5911         SelectedImageKey.
5912
5913 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5914
5915         * ListView.cs:
5916         * ListViewItem.cs: Cache index in items when retrieving them
5917         in VirtualMode.
5918
5919 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
5920
5921         * ToolStripItem.cs: Don't return the explicit_size if we are using 
5922         AutoSize.  Fixes invalidation issue when user has explicitly set a
5923         size and has AutoSize = true.
5924
5925 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
5926
5927         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
5928
5929 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5930
5931         * DataGridView.cs: Remove event handler from DataView when a
5932         DataTable is used as DataSource.
5933
5934 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
5935
5936         * Control.cs: Create internal setter for client_size to allow it to be
5937         set without triggering resizing code.
5938         * Form.cs: Calculate client_size in constructor, only change client_size
5939         in FormBorderStyle property if Handle has been created.
5940         [Fixes #80574, #80791]
5941
5942 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
5943
5944         * SystemInformation.cs: Add TerminalServerSession.
5945
5946 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
5947
5948         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
5949         TreeView code.
5950
5951 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
5952
5953         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
5954         Handle before we were supposed to.  Now checks ActivateOnShow property
5955         in Control.
5956         * Control.cs: Add internal ActivateOnShow property.
5957         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
5958         for ActivateOnShow.
5959         * Hwnd.cs Remove no longer needed no_activate field.
5960
5961 2007-03-07  Jackson Harper  <jackson@ximian.com>
5962
5963         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
5964         2.0 properties
5965         * DrawTreeNodeEventHandler.cs: Add
5966         * DrawTreeNodeEventArgs.cs: Correct default value.
5967         
5968 2007-03-07  Chris Toshok  <toshok@ximian.com>
5969
5970         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
5971         to be called before NativeWindow.WndProc.  Put the HwndCreating
5972         magic there to hook up our Hwnd's to handles.
5973
5974 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
5975
5976         * DataGridView.cs: Comment out debug code.
5977
5978 2007-03-07  Chris Toshok  <toshok@ximian.com>
5979
5980         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
5981         to make the rest of the world happy]
5982
5983         * Control.cs (CreateHandle): there's no need to call
5984         XplatUI.SetVisible here, it's effectively done by
5985         XplatUI.CreateWindow on X now, and always was on windows.
5986
5987         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
5988         shortcircuit out of the loop if we have a message loop running on
5989         this thread.
5990
5991         [Changelog from merge]
5992
5993         2007-03-05  Chris Toshok  <toshok@ximian.com>
5994
5995                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
5996                 causes handle creation.
5997
5998         2007-02-28  Chris Toshok  <toshok@ximian.com>
5999
6000                 * ApplicationContext.cs: Add a flag to make sure we only raise the
6001                 ThreadExit event once (ExitThreadCore can be indirectly called
6002                 from a few places.)  I don't like the additional flag, but it
6003                 makes the event ordering/count correct.
6004
6005                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
6006                 without locking the collection.  An enumerator doesn't give us any
6007                 protection from modification anyway.  Lock the thread hash and
6008                 replace the complicated enumerator loop with a foreach.
6009                 (Application.CloseForms): make internal so it can be called from
6010                 ApplicationContext.  This should probably be moved to MWFThread.
6011                 (Application.ExitThread): don't call MWFThread.Current.Exit()
6012                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
6013                 when the runloop exits (in response to WM_QUIT.)
6014                 (Application.RunLoop): add a comment (and check) for
6015                 context.MainForm being null after setting context.MainForm.Visible
6016                 = true.  This is because you're perfectly free to dispose of a
6017                 form in VisibilityChanged.  Chalk this up to another case where we
6018                 need to synchronously generate WM_ACTIVATE from Control.Show.
6019                 Also, add handling for WM_QUIT here so we'll exit the loop.
6020                 
6021                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
6022                 fact that we don't wait if we're only unmapping the whole_window
6023                 makes me a bit nervous, but it doesn't seem to cause any problems
6024                 yet.
6025
6026                 also, add a comment about the stupid, broken and wrong resetting
6027                 of PostQuitState to false in GetMessage().
6028
6029                 In PostQuitMessage, we need to add a WM_QUIT message to the
6030                 thread's queue.  We use the FosterParent to get the right
6031                 handle/hwnd/queue.
6032
6033                 Lastly, in SetVisible, we need to unmap both windows, since the
6034                 waiting only happens when we're unmapping the client window.  So
6035                 now, the *only* time we unmap just the whole_window is in the hack
6036                 for resizing a control to 0,0.
6037                 
6038         2007-02-21  Chris Toshok  <toshok@ximian.com>
6039
6040                 * Application.cs (CloseForms): rewrite this so that we don't
6041                 modify the list while we're traversing it.
6042
6043         2007-02-20  Chris Toshok  <toshok@ximian.com>
6044
6045                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
6046                 of OnHandleCreated.
6047                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
6048                 handle is created.  otherwise we'll create it here.
6049                 (VerticalScrollEvent): same here.
6050
6051                 * Application.cs (CloseForms): call Form.Dispose, don't post
6052                 WM_CLOSE_INTERNAL.
6053
6054                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
6055                 here. Application should Dispose() of the Form's.
6056
6057                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
6058                 WM_DESTROY as well.
6059                 (MapWindow,UnmapWindow): only actually do the waiting for
6060                 SHOWWINDOW if the control we're dealing with is a Form.
6061                 (CreateWindow): if the control isn't a form, SendMessage
6062                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
6063
6064                 * Control.cs (SetVisibleCore): always use is_visible here, not
6065                 value.  If we use value, we can end up re-setting something
6066                 visible if, for instance, you do Control.Hide() in a delegate
6067                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
6068
6069         2007-02-20  Chris Toshok  <toshok@ximian.com>
6070
6071                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
6072                 the message we need.  PeekMessage returning false should not be a
6073                 condition under which we exit the loop.
6074
6075         2007-02-15  Chris Toshok  <toshok@ximian.com>
6076
6077                 * Control.cs (Refresh): only refresh if we've got a handle and are
6078                 visible.
6079                 (CreateAccessibilityInstance): CreateControl() here.
6080                 (UpdateChildrenZOrder): complicate the code loop even more by
6081                 taking into account controls that haven't had their handle
6082                 created, and those that aren't visible.  But on the flip side,
6083                 simplify the code by splitting it into two loops.  one which
6084                 builds up the list of child controls we're interested in, and the
6085                 other that sets the z order of those children.
6086
6087         2007-02-14  Chris Toshok  <toshok@ximian.com>
6088
6089                 * Control.cs: Control.AccessibilityObject causes the control to be
6090                 created, not just the handle.
6091
6092         2007-02-14  Chris Toshok  <toshok@ximian.com>
6093
6094                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
6095                 problem on X where a window might have its handle created (and be
6096                 visible) while the window is unmapped.  calling XConfigureWindow
6097                 on an unmapped window is bad, and generates X errors.
6098
6099         2007-02-13  Chris Toshok  <toshok@ximian.com>
6100
6101                 * Control.cs (CreateHandle): don't loop over our children setting
6102                 their parent here.  do it when in WndProc when we're shown.
6103                 (UpdateChildrenZOrder): make this internal so we can call it from
6104                 ScrollableControl.
6105                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
6106                 creating its handle.  Also, remove the calls to PerformLayout from
6107                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
6108                 OnVisibleChanged only seems to be called directly here for the
6109                 toplevel control.  It's propagated down the window hierarchy by
6110                 calls to child.OnParentVisibleChanged.
6111                 (OnVisibleChanged): don't do layout here - it's done (oddly
6112                 enough, according to a glance at stack traces on ms.net..) in
6113                 ScrollableControl.
6114                 
6115                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
6116                 z order of our children before calling PerformLayout.
6117
6118         2007-02-12  Chris Toshok  <toshok@ximian.com>
6119
6120                 [big change, fixes #80020]
6121                 
6122                 * AccessibleObject.cs: we need to make owner internal again to fix
6123                 some of ControlAccessibleObject.
6124
6125                 * Control.cs: lots of changes here.  add support for WM_CREATE,
6126                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
6127                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
6128                 we create child controls.  leave the MonoTODO's for the
6129                 accessibility calls, but fix the exceptions so the tests pass.
6130
6131                 Add the InvalidOperationExceptions to Invoke methods, and remove a
6132                 couple of InvokeInternal methods we aren't using.
6133                 
6134                 Also, add a couple of CreateHandle calls in places where we know
6135                 the handles are being created but our code doesn't reference
6136                 .Handle.
6137
6138                 Make SetVisibleCore call OnVisibleChange if the handle isn't
6139                 created.  If the handle is created, we rely on XplatUI.SetVisible
6140                 generating the event synchronously.
6141                 
6142                 Lastly, make sure we don't use this.Handle inside CreateHandle,
6143                 because we can call back into client (and that code can dispose of
6144                 the control).
6145
6146                 * XplatUIStructs.cs: misc/cleanup.
6147
6148                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
6149                 although we don't populate the wParam properly.
6150                 (CreateWindow): generate WM_CREATE.
6151                 (MapWindow,UnmapWindow): make these calls synchronous, at great
6152                 performance expense (particularly in the unmap case), to match
6153                 win32 behavior.
6154
6155                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
6156                 to call it.
6157                 (set_MdiParent): don't recreate the handle unless it's been
6158                 created already.
6159                 
6160                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
6161                 it's created.
6162
6163                 * NativeWindow.cs: this is probably the weirdest part of the
6164                 patch.  We need a way to link up the window being created to the
6165                 WM_CREATE message.  Since we can only be creating one window at a
6166                 time on a given thread, we keep track of a per-thread reference so
6167                 we can dispatch it properly.  We also need to keep track of the
6168                 Hwnd currently being created so that the win32 backend doesn't
6169                 have problems.
6170                 
6171                 * XplatUIWin32.cs: a similar change to the one we made in
6172                 NativeWindow.cs.
6173
6174 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
6175
6176         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
6177         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
6178         to draw the menu shortcut string.
6179
6180 2007-03-07  Jackson Harper  <jackson@ximian.com>
6181
6182         * TreeNode.cs: Add the 2.0 collapse method.
6183
6184 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6185
6186         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
6187
6188 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6189
6190         * DataGridView.cs: Change DataSource will clear column and row
6191         lists. Call Invalidate() to reflect DataSource change.
6192
6193 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6194
6195         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
6196         and a new row is added to it.
6197
6198 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6199
6200         * DataGridView.cs: Add columns when DataSource is en empty list but
6201         is a System.Data.DataView (from a System.Data.DataTable).
6202
6203 2007-03-06  Andreia Gaita  <avidigal@novell.com>
6204
6205         * Label.cs: Implement AutoEllipsis (2.0)
6206
6207 2007-03-06  Jackson Harper  <jackson@ximian.com>
6208
6209         * TreeView.cs: Implement 2.0 TopNode setter property.
6210         - Use a local var instead of the skipped_nodes field for computing
6211         how many nodes to skip.  Otherwise we won't scroll because the
6212         valuechanged handler checks if skipped_nodes is equal to the new
6213         value.
6214         - Implement 2.0 Sort method.
6215         - Add useless 2.0 DoubleBuffer property
6216         - Implement 2.0 LineColors property.  Lets you change the color of
6217         the lines in the tree. Terribly useful for creating non cohesive
6218         desktops.
6219         - Implement 2.0 image key feature.
6220
6221 2007-03-06  Jackson Harper  <jackson@ximian.com>
6222
6223         * TreeView.cs: We can't get the bounds of the nodes before raising
6224         the AfterSelect event, because that event could change the node's
6225         bounds (scrolling, font change, etc).
6226
6227 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6228
6229         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
6230         * Form.cs: Don't recreate handle when creating FormWindowManager, just
6231           update window styles. In CreateParams us VisibleInternal instead of
6232           VIsible to get the actual visible flag set for this form.
6233         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
6234           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
6235           handle the case when the form is already maximized, in which case
6236           it should be restored. Fixes #81043.
6237
6238 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6239
6240         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
6241
6242 2007-03-05  Jackson Harper  <jackson@ximian.com>
6243
6244         * TreeViewHitTestInfo.cs: implement.
6245
6246 2007-03-05  Jackson Harper  <jackson@ximian.com>
6247
6248         * InternalWindowManager.cs: class status fix.
6249
6250 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6251
6252         * InternalWindowManager.cs: All windows that have a parent
6253         are confined to their parent when they're being moved.
6254         Fixes #80822.
6255
6256 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
6257
6258         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
6259         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
6260
6261 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6262
6263         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
6264           buttons invisible before deciding which ones should be visible
6265           (fixes minimize/maximize buttons showing up in toolwindows). Remove
6266           an unused variable.
6267         * InternalWindowManager.cs: Remove warning.
6268
6269 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6270
6271         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
6272         to throw an InvalidOperationException is virtual mode is being used.
6273
6274 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
6275
6276         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
6277         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
6278         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
6279         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
6280         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
6281         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
6282
6283 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6284
6285         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
6286           driver.KeyboardDelay from XplatUI.KeyboardDelay 
6287         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
6288           (patch by Sergey Volk)
6289
6290 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6291
6292         * ToolWindowManager.cs: Added, contains logic for
6293           tool windows.
6294         * CreateParams.cs: Add a few helper methods and an
6295           internal variable to know which control the CreateParams belongs
6296           to.
6297         * Control.cs: Call Form.ChangingParent when the
6298           parent is about to be changed.
6299         * XplatUIX11.cs: DeriveStyles (): Set
6300           caption_height for all windows that have captions and are children.
6301           Update to use ToolWindowManager instead of InternalWindowManager
6302           for ToolWindows.
6303         * XplatUIWin32.cs: Set fake window styles for all
6304           windows that have window managers.
6305         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
6306           now duplicated for mdi windows when they are
6307           maximized, first for the buttons the window itself has, then for
6308           the buttons that appear in the menu bar. Makes things a little
6309           easier). Updated UpdateWindowDecorations, SetWindowState and the
6310           mouse eventhandlers accordingly.
6311         * Form.cs: Add ChangingParent (), contains the
6312           logic of what should happen when the parent changes. In MdiParent
6313           don't set things that ChangingParent () is doing. When handling
6314           WM_CLOSE, we can close the form if there are any other modal forms
6315           and the current form is a descendent of the modal form.
6316         * InternalWindowManager.cs: A lot of refactoring,
6317           the title buttons are now extracted to a separate container class
6318           that takes care of all button code (clicks, tooltips, etc). Moved
6319           Iconic|Maximized|Normal Bounds properties to this class from
6320           MdiWindowManager, so that the window state logic can succeed for
6321           other than mdi wm's. Implemented general window state change logic.
6322           Moved CreateButtons to ThemeWin32Classic, since the theme might
6323           override which buttons are available when as well as the exact
6324           location.
6325         * FormWindowManager.cs: Added, contains logic for
6326           normal forms.
6327         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
6328           which buttons go where (and if they are at all visible). 
6329           Removed special handling of maximized windows, since they aren't special. 
6330           In DrawManagedWindowDecorations don't try to draw the text if it is
6331           empty.
6332         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
6333           use whatever the wm gives us.
6334
6335 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
6336
6337         * ButtonBase.cs: Add 2.0 properties.
6338         * Button.cs: Override Draw for 2.0.
6339         * Control.cs: Add Entered and Selected properties.
6340         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
6341         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
6342         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
6343         buttons.
6344         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
6345
6346 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
6347
6348         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
6349
6350 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
6351
6352         * XplatUIWin32.cs: Register a new class with Windows each time we get
6353         a new ClassStyle.  [Fixes bugs #79432, #80817]
6354         * Controls.cs: Set the correct ClassStyle in CreateParams.
6355         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
6356
6357 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
6358
6359         * ListView.cs: Add fireEvent argument to ReorderColumn since the
6360         ColumnReordered event must not be signaled when modifying DisplayIndex
6361         of a ColumnHeader. Added internal ReorderColumns method which takes
6362         care of drawing, and updating the internal DisplayIndex of the
6363         ColumnHeader. Added AddColumn method which is invoked from
6364         ColumnHeaderCollection when adding or inserting columns, and which
6365         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
6366         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
6367         Recalculated dispay indices after removing a ColumnHeader.
6368         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
6369         match MS. Allows last display index to be returned after ListView
6370         is disposed. Update actual location of ColumnHeader when DisplayIndex
6371         is modified.
6372
6373 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
6374
6375         * LinkLabel.cs: Improve CalcTrimRectangle.
6376         
6377         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
6378
6379 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
6380
6381         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
6382         get rectangle as a result value.
6383
6384 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
6385
6386         * LinkLabel.cs: Theres some diferences between rectangle return from 
6387         MeasureCharacterRanges and the area used for DrawString to fix this 
6388         CalcMeasurementFactor method was created, it calcules the diferences
6389         to be use later to adjust rectangle in draw operations. Fixes #80473.
6390         
6391         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
6392         to adjust draw rectangle.
6393
6394 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
6395
6396         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
6397         text and some other changes to reduce and optimize source code.
6398
6399 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
6400
6401         * RadioButton.cs: Implement 2.0 event.
6402         * RelatedImageListAttribute.cs: Implement new class.
6403
6404 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
6405
6406         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
6407
6408 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
6409
6410         * CheckBox.cs: Implement 2.0 functionality.
6411
6412 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6413
6414         * ListView.cs: Refactor Add and AddRange methods of
6415         ListViewItemCollection, to not update the ListView
6416         everytime an item is added in AddRange. Also move the update
6417         code to a new CollectionChanged method, and call it
6418         from other methods that need it as well (this should also fix some
6419         bugs when Sorting is used).
6420
6421 2007-02-27  Jackson Harper  <jackson@ximian.com>
6422
6423         * TextControl.cs: Try to never let the caret stay in a non-text
6424         tag.
6425         * TextBoxBase.cs: Update the caret.
6426
6427 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
6428
6429         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
6430         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
6431         delete POINT structure, duplicate of one in XplatUIStructs.
6432         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
6433
6434 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
6435
6436         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
6437         edit box since otherwise the Label would immediately be set (even if
6438         the user did not modify the label). In OnKeyDown set Handled to true
6439         if Return or Escape was pressed. In ColumnHeaderCollection unlink
6440         columns that are to be removed. In ListViewItemCollection unlink items
6441         that are to be removed.
6442
6443 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
6444
6445         * TextRenderer.cs: If we set a GDI clip region, we need to clear
6446         it when we are done.  [Fixes bug #80949]
6447
6448 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
6449
6450         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
6451
6452 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6453
6454         * ListView.cs: I forgot to commit the changes for ListView 
6455         in my previous patch.
6456
6457 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
6458
6459         * Clipboard.cs: Partially implement an overload of SetDataObject.
6460         * Form.cs: Implement ShowWithoutActivation.
6461         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
6462
6463 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6464
6465         This is a first set of changes to make the Virtual mode works,
6466         by avoiding the retrieval of ListViewItem instances until
6467         draw time.
6468
6469         * ListView.cs: Store item position in the ListView instead of the
6470         ListViewItem, this way we don't request the Bounds property of
6471         ListViewItem inside the ListView calculations, as well as cache the item
6472         size in item_size field. Store indexes instead of ListViewItem
6473         instances in the matrix used by icon view. Add a ItemMatrixLocation
6474         struct to hold the row and col info of the matrix info.
6475
6476         * ListViewItem.cs: Don't store the location anymore, and only cache
6477         the rectangles for GetBounds. Use the ListView.GetItemLocation
6478         method to retrieve the actual location.
6479
6480 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
6481
6482         * TextRenderer.cs: Add clipping support, thanks to George.
6483         [Fixes bug #80949]
6484
6485 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
6486
6487         * ListViewItem.cs: Cancel label edit when item is removed from 
6488         ListView.
6489         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
6490         event before the edit textbox is displayed.  Added CancelEdit method
6491         which is used end to editing while ignoring the value set by the
6492         user. In EndEdit, set focus to ListView to avoid losing focus to
6493         other controls. In ListViewItemCollection.Clear, cancel editing of
6494         any of the items.  In Remove, cancel editing of item being removed.
6495         Avoid udplicate code by modifing RemoveAt to invoke Remove.
6496
6497 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
6498
6499         * FileDialog.cs: Update FSEntry when move is successful. Fixes
6500         bug #80948.  
6501
6502 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
6503
6504         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
6505         compatible with non X11 systems. Fixes #80901.
6506
6507 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
6508
6509         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
6510         whether the item should be unselected and reselect. We do no want this
6511         when we're starting to edit the label. Do not fire the 
6512         SelectedIndexChanged event from ListView when its already been fired
6513         by modifying ListViewItem.Selected. Fixes bug #80943.
6514
6515 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
6516
6517         * TextRenderer.cs: Previos commit logic was backwards.
6518
6519 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
6520
6521         * TextRenderer.cs: Don't add padding on MeasureText if we were
6522         sent the NoPadding flag.
6523
6524 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
6525
6526         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
6527         after DrawButton. To prevent image overlaps button borders SetClip and 
6528         ResetClip added before and after draw image. Fixes #79129.
6529
6530 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
6531
6532         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
6533         window size, it fix problem when you run under win32 that theres
6534         Size diferent than ClientSize. Also fix controls size and positions
6535         to mimic Win32. Fixes #80837.
6536
6537 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
6538
6539         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
6540         menu area to fix some problems for non X11 systems. Fixes #80613.
6541
6542 2007-02-22  Jackson Harper  <jackson@ximian.com>
6543
6544         * TreeNode.cs: When a node is expanded, set its is_expanded flag
6545         even if it doesn't have any children.
6546
6547 2007-02-22  Jackson Harper  <jackson@ximian.com>
6548
6549         * TreeView.cs: Calculate the top node 'on the fly', this
6550         eliminates issues where you need to click on the tree before
6551         scrolling it to get the top node computed correctly.
6552         * TreeNodeCollection.cs: We don't need to mess with the top node
6553         anymore.
6554
6555 2007-02-22  Jackson Harper  <jackson@ximian.com>
6556
6557         * DataGridViewRow.cs: Fix typo so height can actually be set.
6558         Patch by Peter Grimm.
6559
6560 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
6561
6562         * FileDialog.cs: Fixed support for renaming files and directories.
6563         * ListView.cs: Do not lose focus when edit is canceled. Process
6564         Escape as regular key (to prevent closing of dialogs).
6565
6566 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
6567
6568         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
6569         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
6570
6571 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
6572
6573         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
6574         did not modify label.
6575         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
6576         modified the text. Reset Label when user presses Escape in edit mode.
6577         Move focus to ListView after having cancelled or finished editing the
6578         label.
6579
6580 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
6581
6582         * ComboBox.cs: Removed unnecessary initializations. Marked items field
6583         private. Clear textbox when Text is set to null and SelectedIndex is
6584         already -1.
6585         * FileDialog.cs: Removed unnecessary initializations. Removed 
6586         workarounds for ComboBox bugs that are now fixed. Modified
6587         DefaultExt, InitialDirectory and Title property to change null to
6588         zero-length string in getters. Avoid directly accessing fields.
6589
6590 2007-02-20  Jackson Harper  <jackson@ximian.com>
6591
6592         * TextControl.cs: Remove RecalAlignments call, that was some
6593         debugging leftovers.
6594         - Don't use the line indent when we shouldn't.
6595         * RichTextBox.cs: Add support for paragraph left indents.
6596
6597 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6598
6599         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
6600         Seems like the class status pages doesn't catch params differences.
6601
6602 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
6603
6604         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
6605
6606 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
6607
6608         * ComboBox.cs: Setting Text should have no effect if item text of
6609         selected item exactly matches value. First lookup text using
6610         case-sensitive comparison, and fallback to case-insensitive comparison.
6611         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
6612         allow startIndex to be last index. Changed ArgumentOutOfRangeException
6613         paramname to match MS. Restart from first item if string is not found
6614         after startIndex. Fixed paramname of ArgumentNullException that is
6615         thrown for null value in ObjectCollection.Contains.
6616
6617 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
6618
6619         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
6620
6621 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6622
6623         * ListControl.cs: In SelectedValue use value.Equals to compare for
6624         equality instead of ==, otherwise it will fail for strings.
6625         Fixes #80794.
6626
6627 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6628         
6629         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
6630         since the caret won't show up unless ShowSelection is true. 
6631         Fixes #80795.
6632
6633 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6634
6635         * Application.cs: When disabling all forms but the main form, do not
6636           disable any descendants of the main form (such as mdi children or
6637           other parented forms). Fixes #80822 on Windows.
6638         * Form.cs: If we have a parent, set the WS_CHILD style.
6639         * Control.cs: Update the window styles if the control whose parent has
6640           changed is a form (the WS_CHILD style has to be switched).
6641
6642 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
6643
6644         * XplatUIStructs.cs: MsgUIState structure added.
6645
6646 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
6647
6648         * FileDialog.cs: Removed need for separate fileName field. On 2.0
6649         profile, do not check filename(s) for illegal character if filename(s)
6650         were set non-interactively but always check on 1.0 profile. Fixed NRE
6651          in DefaultExt and only strip off first leading dot. Improve exception
6652         message when invalid Filter is set. Do not ignore InitialDirectory if
6653         it does no exist. Store specified Title, and if empty use default
6654         title (depending on type of dialog). Added an internal DialogTitle 
6655         property for retrieving dialog title. Fixed logic of displayed dir to
6656         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
6657         string as its buggy.
6658         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
6659         FileName is a zero-length string (it can never be null). Override 
6660         DialogTitle property to set default title of dialog box.
6661         * SaveFileDialog.cs: Override DialogTitle property to set default
6662         title of dialog box.
6663
6664 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
6665
6666         * FileDialog.cs: Modify default text of filename and filetype labels
6667         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
6668         after we've updated the SelectedIndex. Fixes part of bug #80887.
6669         * SaveFileDialog.cs: Set text of filetype label.
6670
6671 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6672
6673         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
6674         label field. Needed by latest Jackson's fixes for ListView.
6675
6676 2007-02-16  Andreia Gaita  <avidigal@novell.com>
6677
6678         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
6679         print preview images.
6680
6681 2007-02-16  Jackson Harper  <jackson@ximian.com>
6682
6683         * ListView.cs: Make AfterLabelEdit work correctly.
6684         * FileDialog.cs: After changing the name of the folder, we have to
6685         make sure that it is created, or that we pop up an error because
6686         it already exists.
6687
6688 2007-02-16  Jackson Harper  <jackson@ximian.com>
6689
6690         * X11Dnd.cs: Implement aliases on mime handlers, so things like
6691         System.String are mapped to text.
6692         - Handle dataobjects, getting all the possible formats out of them
6693         - We dont need the drag event args before we give feedback. This
6694         allows feedback cursors to be immediate before selections have
6695         been converted.
6696
6697 2007-02-16  Jackson Harper  <jackson@ximian.com>
6698
6699         * TextBoxBase.cs: Modified the method for inserting images to
6700         taking a line and position instead of tag and position.
6701         * RichTextBox.cs: Handle PngBlip data by inserting the png image
6702         into the RTF file.
6703         * TextControl.cs: Allow images to be inserted as the first tag of
6704         a line.
6705         - Fix some off by one issues when we assume the first tag is a
6706         text tag, not an image tag.
6707
6708 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6709
6710         * ListView.cs: Set focus to ListView when ItemControl gets a
6711         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
6712         Fixes part of #80467.
6713
6714 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6715
6716         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
6717           validate Text input (if null or empty string reset Value to default
6718           value). Fixes #80830.
6719
6720 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6721
6722         * ListView.cs: Set owner as null for columns and items when
6723         Dispose is invoked. Fixes #80607.
6724
6725 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
6726
6727         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
6728         showing DropDowns, don't show a Grip when doing Flow layout.
6729         [This fixes the toolbox in PDN 2.72.]
6730         * ToolStripItem.cs: Add Anchor property and some internal properties to
6731         reduces needed changes to FlowLayout.
6732         * ToolStripOverflow.cs: Remove unused variable.
6733         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
6734         use it in the layout calculations.
6735
6736 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6737
6738         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
6739         reported in #79640.
6740         
6741         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
6742         size calculation.
6743
6744 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6745
6746         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
6747         MeasureString format, it can make button very large in some cases, it is
6748         strange but is what win32 do.
6749
6750 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6751
6752         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
6753         size calculation.
6754
6755         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
6756         rendering, the value is based on MenuAccessKeysUnderlined.
6757
6758 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6759
6760         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
6761         for most themes.
6762         
6763         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
6764         
6765         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
6766         and use MenuAccessKeysUnderlined instead.
6767
6768 2007-02-13  Andreia Gaita  <avidigal@novell.com>
6769
6770         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
6771         A selected control would not get a Focus call if:
6772                 - the default active control of the container is the same as
6773                   the one that was selected
6774                 - we are switching from one container to another
6775         Under these conditions, the container being selected already has
6776         an active_control, which is the same as the one being activated, 
6777         so set_ActiveControl would always return and not send the Focus
6778         call. Fix to check if the currently active control of the container
6779         is actually focused.
6780
6781 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
6782
6783         * StatusStrip.cs: Implement the spring layout.
6784         * ToolStripControlHost.cs: Make sure the hosted control's visibility
6785         always matches the host.
6786         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
6787         and TextAfterImage.
6788
6789 2007-02-13  Andreia Gaita  <avidigal@novell.com>
6790
6791         * Control.cs: Code reorganization only.
6792           - Reorganize the WndProc cases so that each case has it's own handling method, 
6793           to help with the no-line-numbering stack traces.
6794           - Formatting changes (it's vstudio's fault, really :p)
6795
6796 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6797
6798         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
6799           Thread.CurrentUICulture to match DateTimePicker's (and MS)
6800           behaviour.
6801
6802 2007-02-12  Jackson Harper  <jackson@ximian.com>
6803
6804         * RichTextBox.cs:
6805         * TextBox.cs: By default we have a non multiline document
6806         - use the multiline property instead of the internal variable
6807         * TextBoxBase.cs: Treat multiline and non multiline the same in
6808         most places.
6809         - Use the documents multiline flag instead of tracking it ourself
6810         * TextControl.cs: Attempt at getting multiline to match MS
6811         behavior.  Lines now track an offset, which is either their X or Y
6812         offset depending on whether or not we are in multiline mode.
6813         - Update all the methods to understand that lines have an X value.
6814         - Fix crash in Undo::Duplicate when empty lines are deleted.
6815
6816 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
6817
6818         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
6819         code moved to properties PreferredHeight and PreferredWidth. It solve the
6820         all problems when preferred sizes must be recalculated. Fixes #80801.
6821
6822 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
6823
6824         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
6825         font height when compatible_text_rendering is false. Partially fix #80801.
6826
6827 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
6828
6829         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
6830
6831 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
6832
6833         * Form.cs: Improved exception messages in ShowDialog.
6834
6835 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
6836
6837         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
6838         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
6839         if not set. Fixes bug #80764. Avoid accessing current_settings field
6840         directly.
6841
6842 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
6843
6844         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
6845         false.
6846
6847         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
6848         public in 2.0 and for easy maintenance and dont break compatibility it is 
6849         internal in 1.1.
6850         
6851 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
6852
6853         * ToolStripItem.cs: Implement using images from ImageList.
6854
6855 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6856
6857         * DateTimePicker.cs: Change default date-formatting culture from
6858           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
6859           seems to be the way MS does it.
6860
6861 2007-02-08  Andreia Gaita  <avidigal@novell.com>
6862
6863         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
6864         (the 6 was cut off on the right side)
6865
6866 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
6867
6868         * Form.cs: Tell MenuStrips to close when the form is clicked.
6869         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
6870         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
6871         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
6872         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
6873         support for Overflow, where items that do not fit are automatically
6874         reparented to a drop down menu.
6875         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
6876         Also: fixes bug #80747.
6877
6878 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6879
6880         * ComboBox.cs: Remove warning (unused code).
6881         * ScrollableControl.cs: Remove warning for 1.1 profile.
6882
6883 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6884
6885         * Form.cs: Remove a warning.
6886
6887 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6888
6889         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
6890           'g' specifier, not documented anywhere, but seems to always show up
6891           as a single space (might have something to do with the DateTime 'g'
6892           specifier, which is the era format, but since DateTimePicker can't
6893           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
6894           won't crash if the format has an unmatched quote. Now shows
6895           single-character formats correctly. Fixes #80744.
6896
6897 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
6898
6899         * StatusStrip.cs: Stretch property needs to call base.Stretch,
6900         not this.Stretch to fix stack overflow. [Fixes bug #80760]
6901
6902 2007-02-07  Chris Toshok  <toshok@ximian.com>
6903
6904         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
6905         background color.  it overwrites the background image we've
6906         already painted.  Fixes #80599.
6907
6908 2007-02-07  Chris Toshok  <toshok@ximian.com>
6909
6910         * DataGrid.cs: return immediately from Edit() when there are no
6911         columns.  Fixes #80662.
6912
6913 2007-02-07  Chris Toshok  <toshok@ximian.com>
6914
6915         * MessageBox.cs: fix #80625.  don't always show the Help button in
6916         2.0.  use the displayHelpButton parameter to determine if we
6917         should show it. Also, make the internal show_help field private.
6918
6919 2007-02-07  Chris Toshok  <toshok@ximian.com>
6920
6921         * Control.cs (SetVisibleCore): check in the proposed patch for
6922         80604, and set is_visible before calling CreateControl.
6923
6924 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
6925
6926         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
6927         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
6928         on it.
6929
6930 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
6931
6932         * MenuAPI.cs: hotkey_active internal field added, it is required because
6933         we need to know when hotkeys must be draw, before this change a keystate
6934         Navigating was used but we can have menu in navigating state without
6935         hotkeys. Fixes #80694.
6936         
6937         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
6938
6939 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6940
6941         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
6942           corresponding events and methods to be internal for 1.1 profile and
6943           public for 2.0 profile (required by SizeGrip).
6944         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
6945           implicit control list). Don't set the size nor the location of the
6946           SizeGrip anymore as it's not needed.
6947         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
6948           draw directly on the captured control (fixes #80656). Removed
6949           ShowGrip (it wasn't used anywhere), redraw (always true), added
6950           GetDefaultSize and GetDefaultRectangle to calculate defaults.
6951         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
6952           be called from SizeGrip.
6953
6954 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6955
6956         * Timer.cs: Throw ArgumentException if Interval <= 0.
6957
6958 2007-02-05  Jackson Harper  <jackson@ximian.com>
6959
6960         * TreeView.cs: We need to check scrollbar visibility when window
6961         visibility is updated, because non visible trees don't ever add
6962         scrollbars.
6963         * Cursor.cs: We want the override cursor to be reset to NULL when
6964         we set current cursor to the default cursor.
6965
6966 2007-02-05  Jackson Harper  <jackson@ximian.com>
6967
6968         * TextControl.cs: Don't have crlfs when we are non multiline.
6969         - Consolidate the line position.
6970
6971 2007-02-05  Jackson Harper  <jackson@ximian.com>
6972
6973         * X11Keyboard.cs: BACK+CTRL gets a special char code.
6974
6975 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6976
6977         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
6978           handling LeaveNotify->NotifyUngrab in order to send
6979           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
6980           after calling XUngrabPointer, so we call WindowUngrabbed directly
6981           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
6982         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
6983           MouseCaptureChanged correctly. Also create handles if changing
6984           Capture (matches MS behaviour).
6985
6986 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6987
6988         * SizeGrip.cs: Make the last change 2.0 only.
6989
6990 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6991
6992         * SizeGrip.cs: If resizing and the capture is lost, revert any size
6993           changes to initial size (fixes #80597).
6994
6995 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6996
6997         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
6998
6999 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7000
7001         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
7002           background) and only allow dragging if enabled. This way the
7003           sizegrip can be used to fill the open square that otherwise would
7004           have been shown in the bottom right corner of ScrollableControl
7005           when ScrollableControl is not suppose to support sizing.
7006         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
7007           sizegrip is shown and enabled, and hook up with necessary events.
7008
7009 2007-02-01  Chris Toshok  <toshok@ximian.com>
7010
7011         * DataGridTextBoxColumn.cs: clean up the
7012         GetFormattedString/GetColumnValueAtRow combination of functions.
7013         Also fix UpdateUI, and the initial state of
7014         IsInEditOrNavigateMode.
7015
7016         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
7017         aren't supposed to scroll the textbox here, we're supposed to
7018         scroll the datagrid.
7019
7020 2007-02-01  Chris Toshok  <toshok@ximian.com>
7021
7022         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
7023         setting the position.
7024
7025 2007-02-01  Chris Toshok  <toshok@ximian.com>
7026
7027         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
7028         here, since the most recent focus fixes keep us from generating
7029         the Leave event when our textbox gets focus.
7030         (Edit): we should be passing null for the column style's
7031         instantText parameter.
7032         
7033 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
7034
7035         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
7036         raised.  Fixes menu text/icons not showing up in PDN.
7037
7038 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7039
7040         * Control.cs: Remove code in constructor that makes every
7041         control with WS_CHILD set have initial location -1, -1.
7042
7043 2007-01-31  Jackson Harper  <jackson@ximian.com>
7044
7045         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
7046         XplatUIX11.
7047         * XplatUIX11.cs: Give teh keyboard to teh dnd.
7048
7049 2007-01-31  Jackson Harper  <jackson@ximian.com>
7050
7051         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
7052         - Remove some debug code.
7053
7054 2007-01-31  Jackson Harper  <jackson@ximian.com>
7055
7056         * XplatUIX11.cs: If you set the override cursor during a grab, it
7057         should actually override the grab cursor.  This comes into play
7058         when you are setting custom cursors in a DND feedback method.
7059
7060 2007-01-31  Jackson Harper  <jackson@ximian.com>
7061
7062         * X11Dnd.cs: Add support for handling the QueryContinue and
7063         GiveFeedback events.
7064         - Cancel drag and drop actions when the escape key is clicked.
7065         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
7066         can handle the ESCAPE key.
7067         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
7068         done when dnd events are continued after the button is released.
7069         - Add a new helper method so that dnd can translate key events.
7070
7071 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
7072
7073         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
7074         make it more obvious what is happening.
7075
7076 2007-01-30  Jackson Harper  <jackson@ximian.com>
7077
7078         * XplatUIX11.cs: Don't break when handling button release in drag
7079         and drop operations. We need that BUTTONUP message to get through
7080         so capture is released.
7081         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
7082         this is handled automatically when the mouse is down.
7083
7084 2007-01-30  Jackson Harper  <jackson@ximian.com>
7085
7086         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
7087         is closed, so we need to make sure that we aren't changing the
7088         dialog result when the OK (Open or Save) button has been clicked
7089         and we are closing the window ourselves.  Note we don't need to
7090         worry about the cache being written in this case, because it was
7091         already done in the previous FilOk call.
7092
7093 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7094         
7095         * DateTimePicker.cs: Remove a warning.
7096         * ComboBox.cs: Remove a couple of warnings.
7097
7098 2007-01-29  Chris Toshok  <toshok@ximian.com>
7099
7100         * XplatUIX11.cs: don't crash, and remove the icon if the user has
7101         set one, if SetIcon is passed a null icon.
7102
7103 2007-01-29  Andreia Gaita  <avidigal@novell.com>
7104
7105         * TextBox.cs: Redraw when the password characters changes
7106         * TextControl.cs: Check if textbox has a password char and draw 
7107         a line of password chars instead of the text in the line. LineTag gets 
7108         an extra Draw() method which allows document.Draw to override the text 
7109         that will be drawn. Removes 1024 char limitation on length of passworded 
7110         lines.
7111
7112 2007-01-29  Jackson Harper  <jackson@ximian.com>
7113
7114         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
7115         single chars is not.
7116
7117 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
7118
7119         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
7120         one pixel.  Fix a StackOverflowException caused by an overload wrongly
7121         calling itself.
7122
7123 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
7124
7125         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
7126         also remove ProcessArrowKey and put the code inside ProcessKeys.
7127
7128 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
7129
7130         * PaddingConverter.cs: Added.
7131
7132 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7133         
7134         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
7135         ShowPanels is false (fixes #80600). Only draw up to 127 characters
7136         of text (fixes #80601). For panels clip the text to draw to the
7137         panel (fixes #80603).
7138
7139 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7140
7141         * ComboBox.cs: Fixed implementation of ResetText.
7142
7143 2007-01-25  Jackson Harper  <jackson@ximian.com>
7144
7145         * TextControl.cs: For the last char of a line we need to use the
7146         line size, not that chars width, since it won't actually be
7147         computed since the right side of a char is based on the start of
7148         the left side of the next char, and the next char does not exist.
7149
7150 2007-01-25  Chris Toshok  <toshok@ximian.com>
7151
7152         * Splitter.cs: fix the new unit tests, and reindent some switch
7153         statements.
7154
7155 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7156
7157         * ComboBox.cs: Implemented 2.0 methods and events.
7158         * TextBoxBase.cs: Added OnTextUpdate, so that
7159         ComboBox.ComboTextBox can inform ComboBox of it.
7160
7161 2007-01-25  Jackson Harper  <jackson@ximian.com>
7162
7163         * TextControl.cs: Respect ShowSelection when deciding whether or
7164         not to display the caret, this allows comboboxes to have carets
7165         when the combotextbox does not have focus.
7166
7167 2007-01-25  Jackson Harper  <jackson@ximian.com>
7168
7169         * TextControl.cs: Add a Suspend/Resume for updating, basically the
7170         same as the Suspend/Resume for recalc, except this will do actual
7171         Invalidates.
7172         - New Undo manager, works much like the MS version.
7173         - Implemented Redo
7174         * TextBoxBase.cs: The Cut operation is undoable.
7175
7176 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7177         
7178         * TextBoxBase.cs: Don't antialias text. Makes it look way better
7179         on Windows (no difference on Linux).    
7180
7181 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7182
7183         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
7184         we don't want to activate any windows. Fixes #79433.
7185
7186 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
7187
7188         - ButtonBase.cs: Fix capitalization of parameter: disposing.
7189         [Fixes bug #80609]
7190
7191 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
7192
7193         * FileDialog.cs:
7194         - Move to using System.ComponentModel.EventHandlerList
7195         - Replace Refresh with Invalidate
7196         - Clear the mime filecache on closing
7197         - Some other memory reducing work. After beeing closed FD now uses
7198           only about 300 KB for the fdo mime stuff plus the memory of the
7199           cached icons.
7200         * Mime.cs: Changed coding style and removed unnecessary commented
7201         code. Some more memory memory reducing work.
7202
7203 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7204
7205         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
7206         a few other missing 2.0 properties.
7207         * Theme.cs: Added DrawFlatStyleComboBox.
7208         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
7209
7210 2007-01-24  Chris Toshok  <toshok@ximian.com>
7211
7212         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
7213         wake_waiting flag, not just when there's data to be read.  if we
7214         don't, then future wakeup's won't reach us and we'll be doomed to
7215         wait for the entire 1 second timeout forever (unless there are X
7216         events to be had).
7217
7218 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
7219
7220         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
7221         until you pass Items.Count, not Items.Count - 1 like 1.1.
7222
7223 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
7224
7225         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
7226
7227 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
7228
7229         * ToolStripContainer.cs: The recent Dock fix exposed that I was
7230         adding the panels in the wrong order.
7231
7232 2007-01-24  Jackson Harper  <jackson@ximian.com>
7233
7234         * TextBoxBase.cs: When we move the caret we also need to move the
7235         selection, this fixes some random crashing after doing select
7236         text, unselect, delete a char, paste.
7237
7238 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7239
7240         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
7241
7242 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
7243
7244         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
7245         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
7246         * ToolBar.cs: Force redraw in BackgroundImageChanged.
7247
7248 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
7249
7250         * ToolBar.cs:
7251         - Implement support for vertical toolbars. Fixes #80539;
7252         - Call LayoutToolBar when resize, it fix some other problems in layout.
7253         - Rename requested_height to requested_size, as we can have width on it
7254         when toolbar is vertical.
7255         - Create a private property "Vertical" that uses Dock to verify when 
7256         toolbar is vertical or not.
7257         - Set ControlStyles when change Dock property.
7258         - Refactory in LayoutToolBar to have better variables names and to support
7259         vertical toolbars.
7260         - Fixes default value for ButtonSize when button count is equal zero, size
7261         must be (39, 36) test case writed.
7262
7263 2007-01-23  Chris Toshok  <toshok@ximian.com>
7264
7265         * Control.cs: fix the checks so that they work correctly for mdi
7266         parents/children.
7267
7268 2007-01-23  Chris Toshok  <toshok@ximian.com>
7269
7270         * Control.cs: ControlCollection seems to have super-secret
7271         abstraction breaking knowledge of Mdi containers.  allow MdiClient
7272         to add toplevel controls.
7273
7274 2007-01-23  Chris Toshok  <toshok@ximian.com>
7275
7276         * Control.cs: throw an ArgumentException if a toplevel control is
7277         added to our control collection from ControlCollection.Add, as
7278         well as from ControlCollection.IList.Add.  This fixes the
7279         ControlSetTopLevelTest.TestTopLevelAdd unit test.
7280
7281         Also, in ControlCollection.IList.Add, don't through an
7282         ArgumentNullException, throw an ArgumentException, when value ==
7283         null.  This matches MS.
7284
7285 2007-01-23  Chris Toshok  <toshok@ximian.com>
7286
7287         * BindingSource.cs: initial, incomplete, implementation of
7288         BindingSource.
7289
7290 2007-01-23  Jackson Harper  <jackson@ximian.com>
7291
7292         * TextControl.cs:
7293         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
7294         that I can fix a broken unit test (TextBoxTest::ClearUndo)
7295         
7296 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
7297
7298         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
7299
7300 2007-01-23  Andreia Gaita  <avidigal@novell.com>
7301
7302         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
7303         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
7304         IndexOfKey() for 2.0
7305
7306 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7307
7308         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
7309         to prevent it from changing z-order.
7310         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
7311         leave UI updates in MdiWindowManager.
7312         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
7313         1 sized (NC handling goes weird on Linux otherwise).
7314         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
7315         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
7316         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
7317         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
7318         and SetWindowState(s) to allow for changing the size of an activated child
7319         before activating it (reduces a lot of flicker).
7320
7321 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
7322
7323         * Form.cs: Changing FormBorderStyle has different semantics based
7324         on whether the Form is visible or not.  If not visible, don't change
7325         the Size.  But InvalidateNC needs to be called to force the window
7326         to pick up the changes and redraw itself.  [Fixes bug #80574]
7327
7328 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
7329
7330         [Moma work]
7331         * ContainerControl.cs: ProcessCmdKey.
7332         * ErrorProvider.cs: new constructor.
7333         * Form.cs: fix AutoValidateEvent compiler warning.
7334         * Label.cs: fix OnAutoSizeChanged compiler warning.
7335         * MenuStrip.cs: fix CanOverflow compiler warning.
7336         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
7337         * TextBox.cs: Dispose.
7338         * ToolStrip.cs: CanOverflow, re-enable double buffering.
7339         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
7340         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
7341         * ToolStripItem.cs: Overflow, RightToLeft properties.
7342
7343 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7344
7345         * Form.cs: Move the layout of the main form to MdiWindowManager.
7346         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
7347         do a layout of the main window to update MdiClient's client area to
7348         the right area. Fixes #80533. Remove the calculation of nc size, 
7349         it was just wrong and the correct one is the same as for 
7350         InternalWindowManager. 
7351
7352 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
7353
7354         * Control.cs: Setting Anchor or Dock needs to reset the other
7355         to its default.  [Fixes bug #80556]
7356
7357 2007-01-20  Chris Toshok  <toshok@ximian.com>
7358
7359         * CheckedListBox.cs: class status changes.
7360
7361         * ScrollableControl.cs: same.
7362
7363         * RichTextBox.cs: same.
7364
7365         * ContainerControl.cs: same.
7366
7367         * ListView.cs: same.
7368
7369         * NotifyIcon.cs: same.
7370
7371         * MenuStrip.cs: same.
7372
7373         * RadioButton.cs: same.
7374
7375         * CheckBox.cs: same.
7376
7377         * PrintPreviewDialog.cs: same.
7378
7379         * Form.cs: same.
7380
7381 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
7382
7383         * TreeNode.cs: Apply Alan's patch for Name property.
7384
7385 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7386         
7387         * Form.cs: Implemented SizeGripStyle.
7388         * SizeGrip.cs: Check for minimum and maximum size for the
7389         control being resized and only resize if size has actually
7390         changed.
7391
7392 2007-01-19  Chris Toshok  <toshok@ximian.com>
7393
7394         * DataGridColumnStyle.cs: stop setting _readonly in the
7395         PropertyDescriptor setter.  fixes a unit test failure.
7396
7397         also, rename ParentReadOnly to TableStyleReadOnly, and have it
7398         just consult our table style (if we have one).  We don't need to
7399         consult the datagrid readonly attribute because that's passed in
7400         as the _ro arg to Edit.  this simplifies things a little.
7401         
7402         * DataGrid.cs: use CurrentColumn instead of
7403         current_cell.ColumnNumber just to simplify some of the code.
7404
7405         switch the order of some things in the CurrentCell setter to keep
7406         the previous cell from getting a textbox again -
7407         EnsureCellVisibility causes scrolling to happen, which calls Edit.
7408         So we need to set the new cell before calling it.
7409         
7410         call Edit in OnEnter, as does Microsoft.
7411         
7412         also, make sure the current table style isn't the one we create
7413         initially when checking to see if it's different than the one
7414         we're setting it to in BindColumns (this fixes #80421).
7415
7416         * GridTableStylesCollection.cs: table styles can have "" for a
7417         mapping name.  part of the fix for #80421.
7418
7419         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
7420         Edit significantly.
7421
7422 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
7423
7424         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
7425         and less GDI object leaky-er.
7426
7427 2007-01-18  Andreia Gaita  <avidigal@novell.com>
7428
7429         * LinkLabel.cs: Add opaque control style
7430
7431 2007-01-18  Jackson Harper  <jackson@ximian.com>
7432
7433         * TextControl.cs: Calculate width properly.
7434         - Don't store the tag's X offset, this can be figured out very
7435         easily.
7436         - When getting the caret tag make sure to get the last empty tag.
7437
7438 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
7439
7440         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
7441         [Fixes bug #79959]
7442
7443         * Control.cs: Color.Empty shouldn't count for previous transparent
7444         redraw changes.
7445
7446 2007-01-18  Jackson Harper  <jackson@ximian.com>
7447
7448         * TextBox.cs:
7449         * RichTextBox.cs:
7450         * TextControl.cs: Starting to merge in some pieces of my older
7451         undo work.  Basically just some slight cleanup of the undo API.
7452
7453 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7454
7455         * TrackBar.cs: Fix signature of RightToLeftLayout.
7456         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
7457         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
7458         * Application.cs: Implemented UseWaitCursor.
7459
7460 2007-01-18  Jackson Harper  <jackson@ximian.com>
7461
7462         * TextControl.cs: We can't skip tags if any part of the tag is
7463         visible.
7464
7465 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
7466
7467         * ContainerControl.cs: Override OnLayout.
7468
7469 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
7470
7471         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
7472
7473         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
7474         everything else.
7475
7476 2007-01-18  Chris Toshok  <toshok@ximian.com>
7477
7478         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
7479         (leftover from the container_selected days, I'd wager).  fixes bug
7480         #80546.
7481
7482 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
7483
7484         * Control.cs: Apply patch from George to fix the new testcase on
7485         bug #80451.  We can't just check for Color.Transparent, we need 
7486         to check if the back color's alpha channel is < 255.
7487
7488 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
7489
7490         * Form.cs: Move setting show_icon = true to before the constructor
7491         so that the base constructor has that information when it calculates
7492         the form's size.  Was causing forms to be (6, 6) bigger than they
7493         were supposed to be.  Thanks for catching this Rolf!
7494
7495 2007-01-18  Jackson Harper  <jackson@ximian.com>
7496
7497         * TextControl.cs: When replacing a selection we need to invalidate
7498         from the initial selection start, because selection start is moved
7499         to the end of the replacement.
7500
7501 2007-01-18  Andreia Gaita  <avidigal@novell.com>
7502
7503         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
7504
7505 2007-01-18  Chris Toshok  <toshok@ximian.com>
7506
7507         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
7508         I just added.
7509
7510 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
7511
7512         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
7513         layout methods and properties from ToolBarButton must be available
7514         into ToolBarButtonInfo.
7515
7516 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
7517
7518         * Control.cs: If the control has a transparent background, we
7519         need to refresh it when it moves and when it's parent's background
7520         image changes.  [Fixes bug #80451]
7521
7522 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
7523
7524         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
7525
7526 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
7527
7528         * XplatUIWin32.cs: Implement proper double buffering for Windows.
7529         [Fixes bug #80447, and probably speeds up things as well]
7530
7531 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7532
7533         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
7534         * XplatUIWin32.cs: We need to recalculate NC size after changing 
7535         window style to toolwindow (otherwise the client rectangle will be
7536         3 pixels to small for some reason).
7537         * MdiWindowManager.cs: Revert NC size calculations to match how
7538         they are calculated only based on window styles (to match
7539         Win32AdjustWindowRectEx, since otherwise when setting size or 
7540         location, Control will call Win32AdjustWindowRectEx to update client 
7541         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
7542         calculate a different value of client size causing another paint 
7543         (and flickering))
7544         * InternalWindowManager.cs: When moving or resizing a window only
7545         update size or location if they actually changed.
7546         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
7547         (seems to match Windows behaviour better). Cleaned up 
7548         ManagedWindowDecorations to draw what's needed and nothing else
7549         (was drawing borders and lines where they shouldn't be)
7550         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
7551         (style = 0xFFFF) and takes into account caption height when 
7552         calculating window rectangle.   
7553
7554 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
7555
7556         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
7557         can be added to toolbar multiple times, we need to maintain a list of 
7558         button information for each positions.
7559
7560 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
7561
7562         * ToolBar.cs: Some small stetic changes.
7563
7564 2007-01-16  Jackson Harper  <jackson@ximian.com>
7565
7566         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
7567         that allow us to have nested recalc = false blocks.
7568         - Add paste support for images in the RichTextBox
7569         * RichTextBox.cs: flush the text after the color is changed, so
7570         the change takes effect.
7571         - Use SuspendRecalc
7572         - Some extra debugging info
7573         * TextControl.cs: Tags no longer track their length, it is just
7574         computed from the next tags length, this makes things a little
7575         simpler and reduces places that we have to track length changes.
7576         - Refactored the linetag class a little so we could make it
7577         a base class for different kinds of tags
7578         - Created a image tag, a tag that can have a single image inserted
7579         into it
7580         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
7581         that we can call suspend multiple times.
7582         - Add some debugging methods
7583
7584 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7585
7586         * MdiClient.cs: Add ActivatePreviousChild for 
7587         mdi child window navigation.
7588         * Form.cs: Use MdiClient.ActivateNextChild/
7589         ActivatePreviousChild instead of Form.SelectNextControl
7590         to select the next/previous child since 
7591         SelectNextControl doesn't do it in the same order
7592         as mdi children should do it.
7593
7594 2007-01-16  Chris Toshok  <toshok@ximian.com>
7595
7596         * Control.cs: remove container_selected field.
7597
7598 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7599
7600         * MdiClient.cs: Update main form's ActiveChild when
7601         updating keyboard focus for the mdi child.
7602
7603 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
7604
7605         * Control.cs: PreferredSize fix.
7606
7607         * Form.cs: Add several 2.0 events, properties, and methods.
7608
7609 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
7610
7611         * Form.cs: Provide meaningful message when MdiParent is assigned a
7612         Form that is not an MdiContainer.
7613
7614 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7615
7616         * MdiClient.cs: Update main form's ActiveChild when
7617         activating a mdi child.
7618
7619 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7620
7621         * MdiWindowManager.cs: Fix NRE when merging menus and main form
7622         doesn't have a menu.
7623
7624         * Form.cs: Request NCRecalc after creating a mdi child window.
7625         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
7626         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
7627         
7628         * MdiClient.cs: Add new method SendFocusToActiveChild that either
7629         sends keyboard focus to the active child, or to the MdiClient
7630         if there are no child forms.
7631         
7632 2007-01-15  Chris Toshok  <toshok@ximian.com>
7633
7634         * ListView.cs: drop the *Internal overrides, just do our work in
7635         ItemControl's WndProc instead.
7636
7637         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
7638         of the various controls, and forward the events properly (in the
7639         same manner as MS) from the textbox to the UpDown.  Also the
7640         ActiveControl of the UpDownBase gets set properly now.  Finally,
7641         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
7642
7643         * NumericUpDown.cs: set Text in the ctor.
7644
7645         * DomainUpDown.cs: call UpdateEditText in the ctor.
7646         
7647         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
7648         so even a Selectable = false textbox can be focused if you click
7649         in it.  Go figure.
7650
7651         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
7652         just add their handling in their respective WndProc's.  Also add
7653         an explicit FocusInternal method that doesn't consult CanFocus
7654         before calling Select(this).
7655
7656         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
7657         do our work in WndProc instead.
7658
7659         * TabControl.cs: same.
7660
7661         * ComboBox.cs: same.
7662
7663 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
7664
7665         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
7666         Fixes #80006.
7667
7668 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
7669
7670         * ListViewItem.cs:
7671         * ThemeWin32Classic.cs: Don't draw the item text outside
7672         item bounds in Details view, as well as use trimming.
7673         Fixes bug #80376.
7674
7675 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
7676
7677         * Form.cs: Implement Form.ShowIcon.
7678         
7679         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
7680         null, which when combined with the DlgModalFrame window style removes
7681         the icon from the title bar.
7682
7683 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
7684
7685         * Control.cs: Call OnMouseClick after OnClick. (2.0)
7686
7687 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
7688
7689         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
7690         menu when mdi child windows theres a menu, uses insert to get icon
7691         at first position. Partially fix #80006.
7692
7693 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
7694
7695         * Clipboard.cs: Implement 2.0 methods.
7696
7697 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
7698
7699         * Menu.cs: Implement Insert method of MenuItemCollection class
7700         to fix MenuMerge.
7701
7702 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7703
7704         * ListView.cs: Implement 2.0 FindItemWithText method.
7705
7706 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
7707
7708         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
7709         to calculate menu bar size. Fixes #80290.
7710
7711 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
7712
7713         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
7714
7715 2007-01-11  Chris Toshok  <toshok@ximian.com>
7716
7717         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
7718         initial form.
7719
7720 2007-01-11  Chris Toshok  <toshok@ximian.com>
7721
7722         * LinkLabel.cs: make sure to call base.Select in our Select method
7723         if it turns out we're going to be selected (i.e. if we have a link
7724         that is going to receive focus).  That way our container's
7725         ActiveControl is updated properly.
7726
7727 2007-01-11  Chris Toshok  <toshok@ximian.com>
7728
7729         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
7730         they have 1 or more links.  this fixes the crash gert reported.
7731
7732 2007-01-11  Andreia Gaita  <avidigal@novell.com>
7733
7734         * ContainerControl.cs: Remove ContainerSelected flag, not needed
7735         anymore.
7736
7737         * Control.cs (Controls.Add): Check if control to be added to the collection
7738         is a top level control, and throw an ArgumentException if it is.
7739         Remove ContainerSelectedFlag, not needed anymore.
7740
7741         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
7742         top most control doesn't activate the form. This fixes a problem in the
7743         MessageBox, where the default button wouldn't get focus because the form
7744         was activated before being Loaded - when the Owner is set, SetTopMost is
7745         called, and it would activate it.
7746
7747 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
7748
7749         * Button.cs: When clicked and setting the parent form's DialogResult,
7750         use FindForm instead of Parent, since parent could be a container
7751         control and not the Form.  Fixes bug #80495.
7752
7753 2007-01-10  Chris Toshok  <toshok@ximian.com>
7754
7755         * Form.cs: move the call to SendControlFocus into the same
7756         is_loaded check.
7757
7758 2007-01-10  Chris Toshok  <toshok@ximian.com>
7759
7760         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
7761         It breaks in the face of the new ActiveControl stuff, and should
7762         be unnecessary.
7763
7764         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
7765         activecontrol's focus if it's not already set, after we set
7766         ActiveControl, but before we call OnActivated.  Re-fixes #79667
7767         after the previous focus/active control fixes regressed it.
7768
7769         * Control.cs: reindent some code.
7770         
7771 2007-01-10  Chris Toshok  <toshok@ximian.com>
7772
7773         * Splitter.cs: clearing some outstanding changes from my tree.
7774         Replace all accesses (not writes) to the internal dock_style field
7775         with the Dock property.
7776
7777 2007-01-10  Chris Toshok  <toshok@ximian.com>
7778
7779         * Control.cs: make FireEnter, FireLeave, FireValidating, and
7780         FireValidated virtual.
7781
7782         * Form.cs: override and don't chain up calls to FireEnter and
7783         FireLeave.
7784
7785 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7786
7787         * ListView.cs: Add more text padding space when using
7788         auto resize for columns (the previous value didn't work fine).
7789
7790         * ThemeWin32Classic.cs: Update text position inside columns,
7791         to match the appeareance of .Net.
7792
7793         * ColumnHeader.cs: When using auto resize, only the Width should
7794         depend on the sub items, not the Height. Also, set width after
7795         auto resizing (the value of Width should never remain as -1 or -2).
7796
7797 2007-01-10  Chris Toshok  <toshok@ximian.com>
7798
7799         * Application.cs: fix compilation errors when debug is enabled.
7800
7801 2007-01-10  Chris Toshok  <toshok@ximian.com>
7802
7803         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
7804         add some nice ascii art pictures and explanation of the process).
7805         (GetMostDeeplyNestedActiveControl): new utility function we need
7806         because our ActiveControl can refer to a child container with its
7807         own ActiveControl.
7808
7809         * Form.cs (OnActivated): remove the call to SelectActiveControl
7810         from here, since you can override this method and not chain up,
7811         and winforms still sets the active control.
7812         (OnCreateControl): also remove the unnecessary SelectActiveControl
7813         call from here.
7814         (WndProc): it's actually called from the WM_ACTIVATE block, just
7815         before calling OnActivated.
7816
7817         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
7818         inside the else.  the ActiveControl setter will end up setting
7819         focus on @control.  This keeps us from setting it again (and
7820         generating an extra LostFocus/GotFocus pair).
7821         (Select (bool, bool)): reindent.
7822
7823 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
7824
7825         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
7826         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
7827         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
7828         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
7829         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
7830         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
7831         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
7832         ToolStripTextBox.cs: Another wave of corcompare work.
7833
7834 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7835
7836         * ColumnHeader.cs: Implement 2.0 AutoResize method using
7837         the Width property.
7838
7839         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
7840         methods by callling Column.AutoResize method on columns.
7841
7842 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
7843
7844         * Control.cs: Provide proper implementations of PreferredSize
7845         and GetPreferredSize (2.0).
7846
7847 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
7848
7849         * Form.cs: Remove one character (!) to make my previous OnClosing
7850         stuff work for modal windows like MessageBox.
7851
7852 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7853
7854         * ListView.cs:
7855         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
7856         ListView.Columns to get the last displayed column. Fixes #80452.
7857
7858 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
7859
7860         * Label.cs, LinkLabel.cs: Source code identation fixes.
7861
7862 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
7863
7864         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
7865         we dont need to invalidate only borders because when we invalidate four
7866         border lines the invalidate's generates a complete redraw of button, 
7867         because it now invalidate a complete rect some other redraws operations
7868         are fixed. Fixes #80196.
7869         
7870         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
7871         Remove ToolBarInvalidateEntireButton as it is not used.
7872
7873 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
7874         
7875         * Form.cs: Make sure that both OnClosing and OnFormClosing are
7876         called for 2.0 profile.
7877         * CloseReason.cs: Make class internal for 1.1.
7878
7879 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
7880
7881         * ToolStripManager.cs: Implement FindToolStrip functionality.
7882         * ToolStrip.cs: Register and unregister with ToolStripManager.
7883
7884 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
7885
7886         * Control.cs: This was messy.  2.0 moves much of ControlCollection
7887         to ArrangedElementCollection.  Implemented this with as few #if's as 
7888         possible (which is still too many).
7889
7890 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
7891
7892         * Control.cs: Implement SizeFromClientSize() [2.0].
7893
7894 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
7895
7896         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
7897         use Theme.BorderSize to calculate area instead of static value 1, 
7898         by the way use new BorderStaticSize instead     Border3DSize when 
7899         border_static is true. Fixes #79537.
7900         
7901         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
7902         
7903         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
7904         it is not needed.
7905
7906 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
7907
7908         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
7909
7910 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
7911
7912         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
7913         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
7914         
7915         * Hwnd.cs: 
7916         - border_static field added, it will used to define when a control 
7917         theres 3D border but it must be static (thin).
7918         - In GetWindowRectangle use Theme.BorderSize to calculate area 
7919         instead of static value 1, by the way use new BorderStaticSize instead
7920         Border3DSize when border_static is true.
7921
7922         * XplatUIX11.cs, XplatUIOSX.cs: 
7923         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
7924         
7925         * Theme.cs: BorderStaticSize field added.
7926
7927 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
7928
7929         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
7930
7931 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
7932
7933         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
7934         mimic same behavior than win32 that set border only in CreateParams,
7935         it fix problems under CreateParams overrides. Fix #79442 and partial
7936         fix #79537.
7937         
7938         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
7939         of thi control you must call recreate handle. 
7940         
7941         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
7942         need to do anything as RecreateHangle will take care about borders.
7943
7944 2007-01-05  Mike Kestner  <mkestner@novell.com>
7945
7946         * ListView.cs: hack to eliminate Lost/Got focus notifications on
7947         cycles between the ItemControl and parent.  Fixes #80388.
7948
7949 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
7950
7951         * Control.cs: Lazy init layout engine. Do not directly use 
7952         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
7953
7954 2007-01-05  Chris Toshok  <toshok@ximian.com>
7955
7956         * DataGrid.cs: don't forceably rebind columns in SetDataSource
7957         unless our list manager has changed (i.e. unless we have reason to
7958         believe our columns have changed).  Fixes #80422.
7959         
7960         also, disable the call do BindColumns in
7961         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
7962         1.1 the event isn't raised in response to a column addition on a
7963         table.)
7964
7965 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
7966
7967         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
7968         that inheritors can not call it if they choose.  Fixes bug #80456.
7969
7970 2007-01-05  Andreia Gaita  <avidigal@novell.com>
7971
7972         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
7973         doesn't blow up with a null exception on marshalling.
7974         
7975 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
7976
7977         * Control.cs: Implement several 2.0 protected properties and methods.
7978         Ensure that all necessary events are being called when properties
7979         are set.
7980
7981 2007-01-05  Mike Kestner  <mkestner@novell.com>
7982
7983         * ListView.cs: implement PgUp/PgDn for Details view.  Also
7984         fixes First/LastVisibleIndex to use the item_control.ClientRect 
7985         instead of the parent control.  Fixes #80378.
7986
7987 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
7988
7989         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
7990           determine whether to use yard-pound or not (bug #78399).
7991
7992 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
7993
7994         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
7995         problems. So it is time to bring back the old popupbutton colors.
7996
7997 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7998
7999         * ColumnHeader.cs:
8000         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
8001         property by using the internal information of the
8002         columns order in ListView.
8003
8004 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
8005
8006         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
8007         Add 2.0 Tag properties.
8008
8009         * LinkArea.cs: Add 2.0 ToString method.
8010
8011 2007-01-03  Chris Toshok  <toshok@ximian.com>
8012
8013         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
8014         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
8015         when we're editing, which fixes #80047.
8016
8017 2007-01-03  Chris Toshok  <toshok@ximian.com>
8018
8019         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
8020         #80404.
8021
8022 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
8023
8024         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
8025         property and implementation.
8026
8027         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
8028         for MdiWindowListItem property.
8029
8030         * ToolStripDropDown.cs: Don't consider hidden menu items while
8031         laying out the menu.
8032
8033 2007-01-03  Andreia Gaita  <avidigal@novell.com>
8034
8035         * SendKeys.cs: window handle is not needed in win32, so just
8036         get the active window for X after parsing keys and don't use
8037         it when building the message; it is passed by parameter to the 
8038         Xplat method and used there to build the message instead. Also,
8039         wait for events to be processed on SendWait, as opposed to Send,
8040         which doesn't wait :) Playing with threads and Send() completely 
8041         hangs on ms.net, only SendWait() works.
8042         
8043         XplatUIX11.cs
8044         X11Display.cs: Check for valid window handle.
8045
8046 2007-01-03  Jackson Harper  <jackson@ximian.com>
8047
8048         * TextControl.cs: Need to prevent wrap calculations when replacing
8049         text (this was there before i removed it accidently).
8050         - Don't update the cursor during the positioning, just set it to
8051         selection_start at the end of the operaion.
8052
8053 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8054
8055         * Control.cs:
8056         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
8057         
8058 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8059
8060         * MonthCalendar.cs: Added Click and DoubleClick events again,
8061         but this time they only hide Control's Click and DoubleClick.
8062         
8063 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
8064
8065         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
8066         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
8067
8068 2007-01-02  Jackson Harper  <jackson@ximian.com>
8069
8070         * TextBoxBase.cs: We move the caret with the split now, so we
8071         don't need to explicitly move the caret after splitting.  This
8072         fixes the caret bumping down an extra line on Enter.
8073
8074 2007-01-02  Miguel de Icaza  <miguel@novell.com>
8075
8076         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
8077         2.72). 
8078
8079         * ScrollableControl.cs: Add Scroll event.
8080
8081 2007-01-02  Mike Kestner  <mkestner@novell.com>
8082
8083         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
8084         to fix all hdr height padding codepaths.  Fixes #80207.
8085
8086 2007-01-02  Chris Toshok  <toshok@ximian.com>
8087
8088         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
8089         setting it to the Control defaults anyway, and it being after the
8090         Dock set was screwing up layout.
8091         (set_Dock): don't short circuit out of setting base.Dock.  Also,
8092         no need to call UpdateStatusBar here, as it'll be re-layed out if
8093         it needs to be.
8094
8095 2007-01-02  Mike Kestner  <mkestner@novell.com>
8096
8097         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
8098         to header height for width == -1. Fixes the rest of #80207.
8099
8100 2007-01-02  Mike Kestner  <mkestner@novell.com>
8101
8102         * ListView.cs: rework the mouse event forwarding everaldo added
8103         to translate the coordinates to the parent control not
8104         raise the parent events until after we've done our work. Hover
8105         needs more work, in the case where HoverSelection is on, because
8106         the item control receives more than one MouseHover per Enter
8107         event, so we need to ensure only the "first" hover gets forwarded.
8108         Opening a minor bug for that.
8109
8110 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
8111
8112         * CheckedListBox.cs: Fixed SelectionMode to match MS.
8113         * ListControl.cs: Implemented AllowSelection property. Removed extra
8114         tabs.
8115         * ListBox.cs: Implemented AllowSelection property.
8116
8117 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8118
8119         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
8120         SelectedItem, it prevent for errors when you must disable item
8121         before perform click. Fixes #80409.
8122
8123 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8124
8125         * MenuAPI.cs: Prevent second level and beyond submenus to close
8126         until first level when move out side of popup.
8127         
8128 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8129
8130         * MenuAPI.cs:
8131         - Down submenu positin in three pixels.
8132         - Closes sub menu when mouse leaves from menu. Fixes #80402.
8133
8134 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8135
8136         * ThemeWin32Classic.cs:
8137         - Fix popup menu size adding one pixel on the top.
8138         - Down menu item border from two to one to mimic Win32.
8139         - Some source identation fixes. 
8140
8141 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
8142
8143         * ThemeWin32Classic.cs: Use float numbers to calculate size and
8144         position of menu arrows, it fix wrong arrow size.
8145
8146 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
8147
8148         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
8149         instead of line, it simplify draw operation and fix it using 3D
8150         borders to mimic Win32.
8151
8152 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
8153
8154         * StatusStrip.cs: Add implementation of the sizing grip.
8155
8156         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
8157         StatusStrip rendering.
8158
8159 2006-12-31  Chris Toshok  <toshok@ximian.com>
8160
8161         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
8162         override the layout style (anchor/dock) of the control.  assign to
8163         Dock instead.  Fixes bug #80416.
8164
8165         * ToolStrip.cs: same.
8166
8167 2006-12-31  Andreia Gaita  <avidigal@novell.com>
8168
8169         * ContainerControl.cs: Use ContainerSelected flag to check if 
8170         a Container is directly selected, or if Select is called on a 
8171         non-container. If a container is directly selected, focus events 
8172         should not be raised.
8173         Apply #80411 patch to throw exception on set_ActiveControl if 
8174         control is the same as the current one.
8175         
8176         * Control.cs: Use ContainerSelected flag (see above).
8177         Add invalidation check to raise event but not invalidate if 
8178         dimensions are 0.       
8179         Apply #80411 patch.
8180         
8181
8182 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
8183
8184         * MenuAPI.cs: After click, dont close popup menu when menu is
8185         ContextMenu. Fixes #80399.
8186
8187 2006-12-30  Chris Toshok  <toshok@ximian.com>
8188
8189         * ContainerControl.cs: make sure we throw the exception if the
8190         container control doesn't contain the control we're setting
8191         ActiveControl to.
8192
8193 2006-12-30  Chris Toshok  <toshok@ximian.com>
8194
8195         * Control.cs (SetTopLevel): fix the exception raised by
8196         SetTopLevel for child controls.
8197         (set_Anchor): call UpdateDistances when setting the anchor type.
8198         This fixes bug #80336.
8199
8200 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
8201
8202         * Theme.cs: For now, revert back to 8pt font.
8203
8204 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
8205
8206         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
8207         Fixes #80395.
8208
8209 2006-12-29  Chris Toshok  <toshok@ximian.com>
8210
8211         * Control.cs: reorder the code in OnResize to give the same event
8212         ordering as MS.
8213
8214 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8215
8216         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
8217         TileHorizontally and TileVertically.
8218         
8219 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
8220
8221         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
8222         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
8223         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
8224         Corrected copyright and email adress.
8225
8226 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
8227
8228         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
8229         of Exception in FullPath property if no TreeView is associated with
8230         the TreeNode.
8231
8232 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
8233
8234         * Theme.cs: Marked default_font as private, and initialize it in ctor
8235         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
8236         on 2.0 profile.
8237         * ThemeGtk.cs: Removed default_font intialization.
8238         * ThemeWin32Classic.cs: Removed default_font initialization.
8239
8240 2006-12-28  Chris Toshok  <toshok@ximian.com>
8241
8242         * Control.cs: fix a couple of place where we were creating handles
8243         more aggressively than we should be.  Fixes ControlRefresh unit
8244         tests.
8245
8246 2006-12-28  Chris Toshok  <toshok@ximian.com>
8247
8248         * Control.cs: contrary to what the comment said, Control.Dock does
8249         not supercede Control.Anchor - the last one you assign to decides
8250         the layout behavior.  so we need to keep track of which was the
8251         last set.  Also, fix some of the affected property arguments in
8252         PerformLayout calls, and remove an redundant parent.PerformLayout
8253         call in OnResized.
8254
8255         Add a VisibleInternal property, which returns is_visible.  We
8256         can/should get rid of all the usage of this field elsewhere.
8257
8258 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8259         
8260         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
8261         control style, not DoubleBuffer. Added UseDoubleBuffering property
8262         that indicates whether doublebuffering is enabled and supported.
8263         (comment from and code based on Gert Driesen's patch in #80324).
8264         Fixes #80324.
8265
8266 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8267         
8268         * Control.cs: Fixed a NRE.
8269
8270 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8271
8272         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
8273         for 2.0.
8274
8275 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8276
8277         * Control.cs: Rewrote double buffering, now a seperate
8278         class handles all the buffering, no Graphics is disposed of
8279         until the painting is finished (earlier implementation 
8280         would crash if the control was resized in the OnPaint, 
8281         since it would cause the double buffer to be recreated
8282         and the old one disposed), a separate Graphics is 
8283         created for every paint (MS behaviour and anyways the state
8284         of the Graphics would have to be saved and restored otherwise)
8285         
8286         * XplatUIDriver.cs: 
8287         * XplatUIX11.cs:
8288         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
8289         so that we can get the graphics for the back buffer without
8290         having to create a new one and remove the offscreen_dc parameter
8291         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
8292         
8293 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8294
8295         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
8296         Also make virtual all the key-related methods.
8297
8298         * ListViewItem.cs: Make virtual the key related methods for
8299         ListViewSubItemCollection.
8300
8301 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8302
8303         * ListView.cs:
8304         * ListViewItem.cs:
8305         * ThemeWin32Classic.cs:
8306         * Theme.cs: Initial support for Tile view in ListView,
8307         as well as the implementation of the required bits for it (Item
8308         and Subitem).
8309
8310 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8311
8312         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
8313         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
8314         Provide useful exception messages.
8315
8316 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8317
8318         * TrackBar.cs: Remove a warning.
8319         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
8320         when used by DateTimePicker, fixes #80287. This also requires that 
8321         MonthCalendar implements it's own drawing for the yearly updown control,
8322         otherwise the Capture tracking would be too complicated. Removed the Click 
8323         and DoubleClick events (according to comments they were hiding the base class
8324         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
8325         raise these events, not that they cannot be raised. It is possible to raise 
8326         them by calling OnClick and OnDoubleClick). Added two internal fields in 
8327         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
8328         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
8329         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
8330         event, no longer needed.
8331         
8332 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8333
8334         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
8335         true if new value differs from current value.
8336
8337 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8338
8339         * Control.cs: ControlCollection.Count must be public. Fixed build of
8340         unit tests.
8341
8342 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8343
8344         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
8345
8346 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8347
8348         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
8349
8350 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
8351
8352         * Control.cs: Invalidates control including when Width and Height is 
8353         equal zero or is not visible, only Paint event must be care about 
8354         this. Fixes #79913.
8355
8356 2006-12-26  Chris Toshok  <toshok@ximian.com>
8357
8358         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
8359         more corcompare work.
8360
8361         * DataGridView.cs: fix compiler warning.
8362
8363         * ColumnHeader.cs: some corcompare work, and also take the
8364         opportunity to make the internal fields private.
8365
8366         * ListView.cs: fix the fallout from the above field change.
8367
8368 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
8369
8370         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
8371         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
8372         ToolStripTextBox.cs: Fixes to events and corcompare.
8373
8374 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
8375
8376         * ListView.cs: Call owner.OnMousexx event to propagate events from
8377         item to ListView. Fixes #80367.
8378
8379 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
8380
8381         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
8382         if value is less than one. ItemHeight should not be set to a value
8383         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
8384         Removed extra tabs.
8385
8386 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
8387
8388         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
8389         * ToolStripStatusLabel.cs: Add Spring for Moma.
8390
8391 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
8392
8393         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
8394         Fixed code formatting. Removed debug code.
8395         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
8396
8397 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
8398
8399         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
8400         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
8401         ArgumentOutOfRangeException if ColumnCount is negative. In 
8402         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
8403         less than 4 or higher than 32768.
8404         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
8405         Fixed FormatProvider to return CurrentCulture unless explicitly set.
8406         Fixed IsFormatProviderDefault to return true if FormatProvider has
8407         not been explicitly set.
8408
8409 2006-12-25  Chris Toshok  <toshok@ximian.com>
8410
8411         * Application.cs: add a couple of 2.0 events.
8412
8413 2006-12-25  Chris Toshok  <toshok@ximian.com>
8414
8415         * Control.cs: fix compiler warning.
8416
8417         * AxHost.cs: corcompare fixes.
8418
8419         * ApplicationContext.cs: corcompare fixes.
8420
8421 2006-12-25  Chris Toshok  <toshok@ximian.com>
8422
8423         * Control.cs: only update dist_right/dist_bottom if the
8424         width/height is > 0.  this fixes anchored controls being resized
8425         smaller until they disappear and then resized larger again.
8426
8427 2006-12-25  Chris Toshok  <toshok@ximian.com>
8428
8429         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
8430         since they're nothing more than X/Left and Y/Top, respectively.
8431
8432         Also, move back to a per-control Bitmap/Graphics for
8433         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
8434         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
8435         Height.
8436
8437 2006-12-25  Miguel de Icaza  <miguel@novell.com>
8438
8439         * MessageBox.cs: Implemented overload that takes a new "bool
8440         displayHelpButton" by adding a new internal field "show_help".
8441         When clicked this will raise the HelpRequested on the owner or the
8442         main form. 
8443
8444         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
8445         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
8446
8447         * ListView.cs: Add support ColumnWidthChanged and
8448         ColumnWidthChanging. 
8449
8450         Add support for ColumnReordered event.
8451         (ReorderColumn): Add NET_2_0 specific support for cancelling the
8452         reorder.
8453
8454         Very nice codebase!
8455
8456         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
8457
8458         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
8459
8460 2006-12-24  Chris Toshok  <toshok@ximian.com>
8461
8462         * GridTablesFactory.cs: 2.0 corcompare work.
8463
8464         * ToolStripContainer.cs: add "override" to
8465         ContextMenuStripChanged, and remove the local event object.
8466
8467         * ToolStripDropDown.cs: same with a couple properties.
8468
8469         * ToolStripPanel.cs: same with AutoSizeChanged event.
8470
8471         * TextBoxBase.cs: add "override" to AutoSizeChanged.
8472
8473         * Form.cs: add the remaining 2.0 events, and do some corcompare
8474         attribute work.
8475
8476         * DateTimePicker.cs: add "new" to padding.
8477
8478         * ButtonBase.cs: use Control's use_compatible_text_rendering.
8479
8480         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
8481
8482         * DataGridView.cs: PaddingChanged is overridden.
8483
8484 2006-12-24  Chris Toshok  <toshok@ximian.com>
8485
8486         * Control.cs: corecompare work here too.
8487
8488         * DataGridViewElement.cs, DataGridView.cs,
8489         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
8490         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
8491         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
8492         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
8493         work.
8494
8495 2006-12-24  Miguel de Icaza  <miguel@novell.com>
8496
8497         * Control.cs: Switched the error message on the console for a
8498         todo.  A review of the code will have to cope with this anyways
8499         (since its a large feature, it is in our radar) and it was
8500         producing too much output when running PDN.
8501
8502         * ToolStripComboBox.cs: Set the text when the SelectedIndex
8503         changes.  Applications depend on this (PDN 2.72)
8504
8505 2006-12-23  Chris Toshok  <toshok@ximian.com>
8506
8507         * TableLayoutSettings.cs: finish up the corcompare work for this
8508         class.
8509
8510 2006-12-23  Chris Toshok  <toshok@ximian.com>
8511
8512         * Control.cs: make SetImplicitBounds internal, do some futzing
8513         with LayoutEngine so that it's available in 1.1, and remove the
8514         entire duplicated code mess from PerformLayout.  Use
8515         System.Windows.Forms.Layout.DefaultLayout instead.
8516
8517         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
8518
8519 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
8520
8521         * Form.cs: Add MainMenuStrip property.
8522
8523 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
8524
8525         * Control.cs: Add ContextMenuStrip property and implementation.
8526         Fix ContextMenu implementation to show menu centered on control when
8527         activated using the keyboard instead of showing at screen (0,0).
8528
8529         * ToolStripDropDown.cs: Fix needed overload of Show ().
8530
8531 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
8532
8533         * Menu.cs: Name property added for 2.0 profile.
8534         
8535 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
8536
8537         * Menu.cs: Update information about FindMenuItem, method to be
8538         implemented soon.
8539
8540 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
8541
8542         * MenuAPI.cs: When deselect items deselect also selected subitems.
8543         
8544 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
8545
8546         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
8547         FindSubItemByCoord to found itens that is not active, also an
8548         cheking added to FindSubItemByCoord to search for items only 
8549         in visible popup windows. Fixes #80274.
8550
8551 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
8552
8553         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
8554         internal property, it be care about change ExStyle. 
8555
8556 2006-12-22  Andreia Gaita  <avidigal@novell.com>
8557
8558         * ContainerControl.cs: set activeControl for parent forms up the 
8559         tree when the new activecontrol is a container.
8560         When validating the active control, if it is a container, also
8561         raise up the validation for it's active control. Fixes #80280
8562         
8563         * Control.cs: Add internal property flag and check to prevent
8564         Focus events from getting raised when Select() is called for
8565         a ContainerControl. There are still too many focus events being
8566         raised at the moment though.
8567         Cleaned up the code a bit.
8568
8569 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8570
8571         * Control.cs: Added all missing 2.0 events.and
8572         fixed a couple of corcompare issues.
8573         * TrackBar.cs: Implemented missing 2.0 bits.
8574         * MonthCalendar.cs, 
8575         * DateTimePicker.cs, 
8576         * MdiClient.cs: Fixed some corcompare issues.
8577
8578 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
8579
8580         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
8581         SplitterPanel.cs: corecompare work.
8582
8583 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
8584
8585         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
8586         Clean up warnings for BackgroundImageChanged and PaddingChanged
8587         events now that they are implemented in Control.cs.
8588
8589 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
8590
8591         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
8592         
8593         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
8594         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
8595         of TableLayoutPanel and supporting cast.
8596
8597 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8598
8599         * XplatUIWin32.cs: 
8600         - GrabWindow now confines the mouse pointer to the confine window.
8601         - Added Win32ClipCursor and Win32GetClipCursor.
8602
8603         * Control.cs: 
8604         - Added CaptureWithConfine to be able to capture and confine 
8605         mouse pointer.
8606         
8607         * InternalWindowManager.cs: 
8608         - Call CaptureWithConfine instead of Capture if we're an
8609         MdiChild (fixes #79982).
8610
8611 2006-12-21  Chris Toshok  <toshok@ximian.com>
8612
8613         * DataGrid.cs: guard against the initial state of selection, where
8614         selection_start == -1.  make sure we only select from index >= 0.
8615         Fixes bug #80291.
8616
8617 2006-12-21  Chris Toshok  <toshok@ximian.com>
8618
8619         * Control.cs: we don't need to be so draconian with
8620         UpdateDistances, and we thusly don't need to call it before
8621         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
8622
8623 2006-12-21  Daniel Nauck  <dna@mono-project.de>
8624
8625         * ComboBox.cs,
8626         TextBox.cs: Implemented AutoComplete properties.
8627
8628 2006-12-20  Chris Toshok  <toshok@ximian.com>
8629
8630         * DataGridView*.cs: some corecompare work.
8631
8632 2006-12-20  Jackson Harper  <jackson@ximian.com>
8633
8634         * XplatUIX11.cs: We need to hide the caret when deleting it,
8635         otherwise you get carets left lying around everywhere.
8636         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
8637         prevents getting some weird half drawn caret tracers when
8638         scrolling.
8639         * TextControl.cs: Attempt to reduce the number of times we need to
8640         recreate the caret.
8641
8642 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
8643
8644         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
8645
8646 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8647
8648         * DateTimePicker.cs:
8649         - Implemented missing 2.0 bits.
8650         - Changed some default values to match MS.
8651         
8652 2006-12-20  Jackson Harper  <jackson@ximian.com>
8653
8654         * TextBoxBase.cs: When changing the font across the document we
8655         can't recalculate after changing each line, since that will cahnge
8656         the line count.
8657         - PreferredHeight is a little different than i thought.
8658         - When backspacing, move the caret before we do the actual char
8659         delete, because when that delete crosses a wrap boundary the
8660         positional information will change.
8661
8662 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8663
8664         * Control.cs: Added some missing 2.0 bits: 
8665         BackgroundImageLayout, BackgroundImageLayoutChanged, 
8666         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
8667         add IBindableComponent and IDropTarget implementation.
8668         
8669         * MonthCalendar.cs: 
8670         - Added all missing 2.0 features:
8671         BackgroundImageLayout, RightToLeftLayout, 
8672         OnHandleDestroyed, RightToLeftLayoutChanged, 
8673         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
8674         PaddingChanged.
8675         - Rewrote all the BoldDate code, it was completely broken.
8676         - Fixed all the tests (the tests can now be re-enabled, the
8677         problems were not with the tests, but with the control, it was
8678         mostly broken).
8679         
8680         * DateTimePicker.cs: Changed the location where the 
8681         MonthCalendar is shown.
8682         
8683 2006-12-19  Chris Toshok  <toshok@ximian.com>
8684
8685         * DataGridView.cs: add IDropTarget implementation.
8686
8687         * ToolStripPanel.cs: add IDropTarget implementation.
8688
8689 2006-12-19  Jackson Harper  <jackson@ximian.com>
8690
8691         * TextControl.cs: soft now means something different than what it
8692         used to mean, we want to move the caret regardless of whether or
8693         not this break was soft (would we really have wanted the caret
8694         to not move with the break in the old context?)
8695         * TreeView.cs: Make sure we factor in the vert scrollbar when
8696         calculating the horizontal scrollbar's maximum.
8697
8698 2006-12-19  Andreia Gaita  <avidigal@novell.org>
8699
8700         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
8701         check for keywords in alternate casing, close bug #80049.
8702
8703 2006-12-19  Chris Toshok  <toshok@ximian.com>
8704
8705         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
8706         methods (which all do nothing).
8707
8708         * IDropTarget.cs: add the 4 missing methods.
8709
8710 2006-12-19  Chris Toshok  <toshok@ximian.com>
8711
8712         * TableLayoutRowStyleCollection.cs: corcompare work.
8713         
8714         * TableLayoutSettings.cs: same.
8715
8716         * TableLayoutStyle.cs: same.
8717
8718         * TableLayoutColumnStyleCollection.cs: same.
8719
8720 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
8721
8722         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
8723         TableLayoutPanel I've had in my local tree for way too long.
8724
8725 2006-12-19  Miguel de Icaza  <miguel@novell.com>
8726
8727         * TableLayoutSettings.cs: Finish the public API (still needs all
8728         the logic to update on changes). 
8729
8730         * TableLayoutPanelCellPosition.cs: new file.
8731         
8732         * TableLayoutRowStyleCollection.cs,
8733         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
8734         TableLayoutSettings.cs: Track the final 2.0 table api.
8735
8736 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8737
8738         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
8739         and Image List 2.0 members for ColummnHeader.
8740         * ListView.cs: Add key-related 2.0 methods for
8741         ColumnHeaderCollection.
8742
8743 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
8744
8745         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
8746         ArgumentNullException if items argument is null. Ignore null item in
8747         arrays. Removed extra tabs.
8748
8749 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
8750
8751         * MonthCalendar.cs: Fixed InvalidCastException.
8752
8753 2006-12-19  Jackson Harper  <jackson@ximian.com>
8754
8755         * TextControl.cs: Don't increment the position here.
8756         - When calculating char positions only add in the line break size
8757         for hard line breaks.
8758
8759 2006-12-19  Andreia Gaita  <avidigal@novell.org>
8760
8761         * SendKeys.cs: Changed some things to match ms.net behaviour
8762         when parsing shifted capital letters.
8763         
8764         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
8765         Add window handle as parameter to SendInput. X11 needs the 
8766         window handle, and the handle being passed      to it in the keys 
8767         queue is the active control handle (which windows needs), not 
8768         the window handle.
8769         
8770         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
8771         to support SendKeys on X.       
8772         
8773         * X11Keyboard: Implement helper method to lookup a linux keycode
8774         given the virtual keycode. Added table of keycode-2-virtualkey
8775         values to support this.
8776
8777 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8778
8779         * ListView.cs: Add support for SelectedIndexCollection
8780         and SelectedItemCollection 2.0 methods. Implement support
8781         for ImageKey too.
8782         * ListViewItem.cs: Add support for ListViewSubItemCollection
8783         2.0 methods. Also, fix an incorrect behavior of AddRange method
8784         (it shouldn't call Clear).
8785         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
8786
8787 2006-12-19  Jackson Harper  <jackson@ximian.com>
8788
8789         * RichTextBox.cs: 
8790         * TextBoxBase.cs: New args for FormatText
8791         * TextControl.cs: Rewrote the main drawing method, this version
8792         feels a little easier to understand and debug to me.  Hopefully it
8793         does to others also
8794         - Fix FormatText to OR in the new formating values.  Added
8795         FormatSpecified param, basically this works in the same way as
8796         BoundsSpecified in Control.
8797         - Set the caret properties when the caret is positioned.
8798         - When wrapping text make sure that we calculate the width of the
8799         last character
8800         - when calculating alignments we might have wrapped down to the
8801         next line, so don't search for an individual tag, search for the
8802         end of the line
8803         - We need to invalidate the selection area when we replace the
8804         selection.
8805         
8806 2006-12-19  Daniel Nauck  <dna@mono-project.de>
8807
8808         * Application.cs: add Restart () 2.0 support
8809
8810 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8811
8812         * MenuItem.cs: Invalidate menu item rectangle after change Enable
8813         property. Fixes #80268.
8814         
8815 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8816
8817         * MenuAPI.cs: Dont trigger select event when closes top menu
8818         item. Fixes #80270.
8819
8820 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8821
8822         * MenuAPI.cs: When you click on menuitem only trigger onselect
8823         event for top menu itens. Fixes #80271.
8824         
8825 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8826
8827         * MdiWindowManager.cs: Make IconicBounds depend on
8828         the bottom of MdiClient, not the top (fixes #80267)
8829         
8830 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8831
8832         * MdiClient.cs: Added missing 2.0 attribute
8833
8834 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8835
8836         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
8837         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
8838
8839 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8840
8841         * MenuAPI.cs: Fix click when menuitem is not popup,
8842         this regression was caused by last commit (#80272).
8843
8844 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
8845
8846         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
8847         fire click event or close menu. Fixes #80272.
8848
8849 2006-12-17  Daniel Nauck  <dna@mono-project.de>
8850
8851         * ListViewHitTestInfo.cs: add
8852
8853 2006-12-17  Daniel Nauck  <dna@mono-project.de>
8854
8855         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
8856         * FlatButtonAppearance.cs: add
8857         * DockingAttribute.cs: add
8858
8859 2006-12-17  Chris Toshok  <toshok@ximian.com>
8860
8861         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
8862         and rebind our columns when it does - this way, if you make
8863         changes to the DataTable (or set the Table attribute on a DataView
8864         after setting it as the DataGrid's DataSource, the changes are
8865         made visible.)  Fixes bug #80107.
8866
8867 2006-12-17  Daniel Nauck  <dna@mono-project.de>
8868
8869         * ListViewGroup.cs: add internal Location property for layouting.
8870         * Theme.cs: add abstract ListViewGroupHeight function.
8871         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
8872
8873 2006-12-16  Andreia Gaita  <avidigal@novell.com>
8874
8875         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
8876         Added reset of selected index to 0 when adding first tab page.
8877         Fixes #80264
8878         
8879         * NumericUpDown.cs: Fix NET_2_0 check
8880
8881 2006-12-16  Daniel Nauck  <dna@mono-project.de>
8882
8883         * ListViewGroup.cs: fixed DefaultValueAttribute value
8884
8885 2006-12-16  Daniel Nauck  <dna@mono-project.de>
8886
8887         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
8888
8889 2006-12-15  Miguel de Icaza  <miguel@novell.com>
8890
8891         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
8892         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
8893         ScrollableControl.cs: Add a handful of methods that are
8894         overwritten in 2.0 
8895
8896 2006-12-15  Chris Toshok  <toshok@ximian.com>
8897
8898         * XplatUIWin32.cs: initial implementation of the Reversible
8899         drawing functions.  there are some problems.  DrawReversibleFrame
8900         doesn't seem to work at all for Dashed FrameStyle, and in the
8901         Thick case there are drawing errors at the corners (we probably
8902         need to bind Rectangle instead of doing moveto/lineto's.)
8903
8904 2006-12-16  Andreia Gaita  <avidigal@novell.com>
8905         
8906         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
8907         to send blocks of key messages. Send accumulates keys to send with Flush, 
8908         while SendWait sends all keys immediately.
8909                 
8910         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
8911         XplatUIX11.cs,  XplatUIX11-new.cs:
8912         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
8913         to Win32 SendInput.
8914         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
8915         
8916         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
8917         testing for ms.net on this class is very tricky, as the tests run too fast 
8918         to allow the hook to release, essentially freezing the keyboard and the 
8919         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
8920         category :p
8921
8922 2006-12-16  Daniel Nauck  <dna@mono-project.de>
8923
8924         * Padding.cs: fixed serialization compability to MS ("_var" field names),
8925                         added missing attributes.
8926  
8927 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8928
8929         * ListViewGroup.cs: Added missing attributes.
8930         * ListViewGroupCollection.cs: Added missing attributes.
8931
8932 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8933
8934         * ListViewItem.cs: fixed ListViewSubItem text property.
8935
8936 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8937         
8938         * Control.cs: Added missing 2.0 attributes
8939         
8940 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8941         
8942         * MdiClient.cs: Added missing 2.0 attribute.
8943         * MonthCalendar.cs: Added some missing 2.0 attributes 
8944         and properties.
8945         
8946 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8947
8948         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
8949
8950 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
8951
8952         * MainMenu.cs: Add the new 2.0 constructor to help out people
8953         using the MainMenu in VS2005.
8954
8955 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8956         
8957         * MdiChildContext.cs: Removed it, no longer used.
8958         * MdiClient.cs: Added missing 2.0 attributes.
8959         
8960 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8961         
8962         * InternalWindowManager.cs: Fix a NullRef with previous 
8963         changes for toolwindows.
8964         
8965 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8966
8967         * Control.cs: 
8968         - Added AfterTopMostControl to allow for certain controls 
8969         to always stay on top when normal controls are brought to 
8970         front.
8971         
8972         * XplatUIWin32.cs: 
8973         - (DrawInversibleRectangle): Get window rectangle from Win32 
8974         in stead of from control, since Win32 doesn't calculate
8975         screen coords correctly from control's Location if it 
8976         have docked siblings.
8977         
8978         * MdiWindowManager.cs:
8979         - Correct the control menu popup location when clicked on
8980         the maximized form icon. (fixes #80223.1)
8981         - Don't show moving rectangle if mouse hasn't moved from
8982         the original clicked point.
8983         - Removed FormGotFocus handler (not used).
8984         - Calculate the control buttons location from the main
8985         window's size and not client size (fixes #79770).
8986         - Form is now closed when the form icon is double-clicked
8987         (fixes #79775). 
8988         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
8989         
8990         * InternalWindowManager.cs:
8991         - Moved some MDI-only methods to MdiWindowManager.
8992         - Removed unused properties and methods.
8993         - Unified method naming for methods handling wm messages.
8994         - Moved all message handling to seperate methods for
8995         each message.
8996         
8997         * ThemeWin32Classic.cs:
8998         - DrawManagedWindowDecorations now draws the title bar 
8999         with a gradient brush.
9000         - Add a CPDrawButtonInternal that allows us to specify
9001         light, normal and dark colors for the buttons (control 
9002         buttons for MDI children were drawn with the same light
9003         color as the background, therefore loosing the 3D effect).
9004         
9005         * SizeGrip.cs:
9006         - Add a CapturedControl property that is used to 
9007         determine the control to resize (defaults to parent). 
9008         Needed for MdiClient, since its SizeGrip's parent is
9009         MdiClient, but the control to resize is the main form.
9010         
9011         * MdiClient.cs:
9012         - Set SizeGrip's CapturedControl to the main form in order
9013         to resize the main form and not the MdiClient.
9014         - Override AfterTopMostControl to leave the scrollbars 
9015         always on top.
9016
9017 2006-12-15  Daniel Nauck  <dna@mono-project.de>
9018
9019         * ListView.cs: fixed ListViewItemCollection AddRange and
9020                         implemented ListViewItemCollection AddRange 2.0 support.
9021
9022 2006-12-15  Daniel Nauck  <dna@mono-project.de>
9023
9024         * ListViewGroup.cs: Add.
9025         * ListViewGroupCollection.cs: Add
9026         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
9027         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
9028                                 stub for ImageKey 2.0 support.
9029
9030 2006-12-14  Mike Kestner  <mkestner@novell.com>
9031
9032         * ListView.cs: add text padding to the autocalculation for columns
9033         of width -2.  Fixes #80207.
9034  
9035 2006-12-14  Mike Kestner  <mkestner@novell.com>
9036
9037         * ListView.cs: add some index guarding for partial row navigation 
9038         logic.  Fixes #80250.
9039
9040 2006-12-14  Mike Kestner  <mkestner@novell.com>
9041
9042         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
9043         are added or inserted to the collection.  Fixes #81099.
9044
9045 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
9046
9047         * MenuAPI.cs: Closes menu when right click out side of popup
9048         it fix problem in ContextMenu and MainMenu. Fixes #80252.
9049
9050 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9051
9052         * ListViewItem.cs: Fix dumb error.
9053
9054         * ListView.cs: Add Find and ContainsKey methods in 
9055         ListViewItemCollection, and also return true for IsReadOnly
9056         and IsFixedSize (changes for 2.0). 
9057
9058 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
9059
9060         * Control.cs: Allow Region to be set to null.
9061
9062 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9063
9064         * MdiWindowManager.cs: Remove unused (commented out) code.
9065         * Form.cs: When the MdiChild is maximized, the form needs 
9066         WM_NCMOUSELEAVE, so request it.
9067         * InternalWindowManager.cs: 
9068         - Added tooltips to control buttons.
9069         - Removed duplicated control button handling code.
9070         - Removed unused (commented out) code.
9071         
9072 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
9073
9074         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
9075         was used because we must set cursor without trigger ChangeCursor event
9076         and without change Cursor control property. Fixes #79963.
9077
9078 2006-12-12  Andreia Gaita  <avidigal@novell.com>
9079         
9080         * Control.cs: Check if Region setter value is null, and ignore
9081
9082 2006-12-12  Jackson Harper  <jackson@ximian.com>
9083
9084         * TextControl.cs: We were almost always drawing one more line then
9085         needed, since the GetLineByPixel will return the last line found
9086         at that pixel. In most cases though, we were invalidating up to
9087         the junction between two lines.
9088         - Improve debug code.
9089
9090 2006-12-12  Chris Toshok  <toshok@ximian.com>
9091
9092         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
9093         and FillReversibleRectangle.
9094
9095         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
9096         and FillReversibleRectangle.
9097
9098         * XplatUIWin32.cs: add stubs which do nothing for
9099         DrawReversibleFrame, DrawReversibleLine, and
9100         FillReversibleRectangle.
9101
9102         * XplatUIOSX.cs: add stubs which raise NIE for
9103         DrawReversibleFrame, DrawReversibleLine, and
9104         FillReversibleRectangle.
9105
9106         * XplatUIX11.cs: add working implementation for
9107         DrawReversibleFrame, DrawReversibleLine, and
9108         FillReversibleRectangle.
9109         
9110         * ControlPaint.cs: implement DrawReversibleFrame,
9111         DrawReversibleLine, and FillReversibleRectangle, by calling into
9112         the appropriate XplatUI method.
9113
9114 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9115
9116         * Form.cs: Make MdiClient have the focus even if it's
9117         not selectable, since it should receive WM_KEY* and WM_MOUSE 
9118         messages. Fixes #79907.
9119         
9120 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9121
9122         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
9123         queried after the window is created.
9124         
9125         * XplatUIX11.cs: Added SendParentNotify to implement 
9126         WM_PARENTNOTIFY logic. Fixes #79965.
9127         
9128         * Control.cs: Added MakeParam.
9129         
9130 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9131
9132         * MdiClient.cs: Resume Layout before setting window
9133         states (fixes #80201).
9134
9135 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9136
9137         * MenuAPI.cs: Deselect a menu item after performing
9138         the click (fixes #80197).
9139
9140 2006-12-11  Jackson Harper  <jackson@ximian.com>
9141
9142         * TextBoxBase.cs: We need to cap this value, since Maximum -
9143         ViewPortHeight can be less than zero.
9144         - Only do selection with the left mouse button.
9145         * TextBox.cs: Don't tell the world that we have a context menu.
9146         * Control.cs: New method so that we can control whether or not the
9147         context menu is visible outside MWF.
9148
9149 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
9150
9151         * ToolBarButton.cs: Fix text positon. 
9152
9153 2006-12-11  Miguel de Icaza  <miguel@novell.com>
9154
9155         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
9156
9157         * Control.cs (DoubleBuffered): Add implementation.
9158
9159         * Application.cs (OpenForms): Add.
9160
9161 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
9162
9163         * Form.cs: Use opacity instead of Opactiy to determine if we need
9164         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
9165
9166 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
9167
9168         * Control.cs: Fix NRE if Control.Site was set to null.
9169
9170 2006-12-11  Chris Toshok  <toshok@ximian.com>
9171
9172         * Control.cs: ControlCollection.Remove should return if the arg is
9173         null, and ControlCollection.SetChildIndex should raise a ANE.
9174
9175 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
9176
9177         * Control.cs: Verify value set for Dock property. Code formatting
9178         updates.
9179
9180 2006-12-11  Jackson Harper  <jackson@ximian.com>
9181
9182         * TextControl.cs: Draw the caret and the selection when a flag is
9183         set on the owner.
9184         * TextBoxBase.cs: We want to draw the caret and the selection for
9185         TextBox but not for TextBoxBase.
9186         - If the window is resized and scrolling is no longer needed (the
9187         whole doc is visible) set the scroll position to zero.
9188         - The default SelectWord (the one TextBox uses) should move the
9189         caret to the end of the word.
9190         - SelectAll moves the caret to the end of the selection.
9191         * TextBox.cs: We don't selectall on focus, we just do it when the
9192         control is created.
9193         
9194 2006-12-11  Mike Kestner  <mkestner@novell.com>
9195
9196         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
9197
9198 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9199
9200         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
9201         2.0 support.
9202         * ListViewItem.cs: Add Name 2.0 property.
9203
9204 2006-12-11  Andreia Gaita  <avidigal@novell.com>
9205
9206         * TabControl.cs: Set visibility on selected or default tab 
9207         when tabcontrol handle is created, so that it's contents
9208         actually show up (duh). Fixes #80193
9209         Don't redraw the control if there is no handle created, as
9210         the selected index might be completely invalid. Added some tests
9211         to check for this.
9212
9213 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
9214
9215         * ToolBar.cs: Uses maximun width and height of all buttons as 
9216         button rectangle when ButtonSize specified, it looks strange but
9217         is what happens in Win32. Fixes #80189.
9218
9219 2006-12-11  Jackson Harper  <jackson@ximian.com>
9220
9221         * TextControl.cs: Need to track undo levels ourself, since
9222         compound actions will mess them up.
9223
9224 2006-12-10  Andreia Gaita  <avidigal@novell.com>
9225
9226         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
9227         SelectedIndex value is changed (even if it's not valid).
9228         Reset SelectedIndex to 0 when the handle is created and if
9229         the current index is invalid.
9230         Fixes SelectdeIndex unit tests and #80128
9231
9232 2006-12-08  Chris Toshok  <toshok@ximian.com>
9233
9234         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
9235         calls EndEdit, it needs to be called before we set current_cell to
9236         its new value.  Otherwise, we end up committing the value in the
9237         textbox to the new cell as well.  Fixes bug #80160.
9238
9239 2006-12-08  Chris Toshok  <toshok@ximian.com>
9240
9241         * Form.cs (set_CancelButton): if the button's DialogResult is
9242         None, set it to Cancel.  Fixes bug 80180.
9243
9244 2006-12-08  Jackson Harper  <jackson@ximian.com>
9245
9246         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
9247         to watch ourselves when setting the canvas size and setting the
9248         scrollbar values.
9249
9250 2006-12-08  Chris Toshok  <toshok@ximian.com>
9251
9252         * DataGrid.cs: comment out the two MakeTransparent calls for the
9253         time being so people using trunk (and not 1.2.2) on windows can
9254         actually use the datagrid.  This deals with bug #80151.
9255
9256 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
9257
9258         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
9259         Graphics.DrawImage (image, int, int, int, int) overload instead
9260         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
9261         the dpi difference and was blurring images it drew.
9262         [Fixes bug #79960]
9263
9264 2006-12-08  Chris Toshok  <toshok@ximian.com>
9265
9266         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
9267         rowcnt is 0 (such as with an empty datasource), and make sure we
9268         initialize not_usedarea.Y to cells.Y, so we don't draw over the
9269         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
9270
9271 2006-12-08  Chris Toshok  <toshok@ximian.com>
9272
9273         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
9274         grid.
9275
9276 2006-12-08  Chris Toshok  <toshok@ximian.com>
9277
9278         [ Fixes bug #80167 ]
9279         
9280         * ThemeWin32Classic.cs: don't draw the image if the button's flat
9281         style is FlatStyle.System.
9282
9283         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
9284         ButtonBase.flat_style private, and switch uses of it to the public
9285         property.
9286         
9287 2006-12-08  Chris Toshok  <toshok@ximian.com>
9288
9289         [ Fixes bug #80121 ]
9290         
9291         * ThemeWin32Classic.cs: center the caption text in the datagrid
9292         when we draw it.
9293
9294         * DataGrid.cs: lessen the amount we add to the caption height from
9295         6 to 2.  6 was making it huge.
9296
9297 2006-12-08  Andreia Gaita  <avidigal@novell.com>
9298
9299         * UpDownBase: Handle MouseWheel call directly instead of capturing
9300         the inner textbox's OnMouseWheel. Fixes #80166
9301
9302 2006-12-08  Jackson Harper  <jackson@ximian.com>
9303
9304         * TextControl.cs: We need to invalidate the textbox when we empty
9305         it (how had this not been discovered before?)
9306
9307 2006-12-08  Jackson Harper  <jackson@ximian.com>
9308
9309         * TextBoxBase.cs: Reworked the mouse down code so I could get it
9310         to behave like MS, we now ignore the eventargs.Click and just
9311         track state ourself, which we were already doing anyways.
9312         - Constrain the double click handler to the double click size.
9313         
9314 2006-12-08  Chris Toshok  <toshok@ximian.com>
9315
9316         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
9317         direction if that scrollbar isn't shown.  fixes bug #80158.
9318
9319 2006-12-08  Andreia Gaita  <avidigal@novell.com>
9320
9321         * NumericUpDown.cs: Update value on getter. Fixes #79950
9322
9323 2006-12-08  Chris Toshok  <toshok@ximian.com>
9324
9325         * MenuItem.cs: add back in the event cloning code.  I didn't know
9326         how to do it in the face of the EventHandlerList work i'd done
9327         last week.  Fixes bug #80183.
9328
9329 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
9330
9331         * Control.cs: Add an invalidate to the BackgroundImage setter.
9332         [Fixes 80184]
9333
9334 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
9335
9336         * ToolStrip*: Add some small properties reported by MoMA, fix event
9337         firing and default properties based off of unit tests, and add some
9338         attributes based off of the class status page.
9339
9340 2006-12-07  Jackson Harper  <jackson@ximian.com>
9341
9342         * TextBoxBase.cs: Take HideSelection into account when determining
9343         whether or not to show the selection.
9344         * RichTextBox.cs: After inserting the RTF into the document move
9345         the cursor to the beginning of the document.
9346
9347 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
9348
9349         * Control.cs: Remove static ArrayList "controls" which maintained
9350         a reference to every control created.
9351         * Application.cs: Create a static FormCollection to maintain a reference
9352         to every form created.  Use it in places that formerly enumerated through
9353         the controls one looking for forms.
9354         * Form.cs: Add and remove self from above FormCollection.
9355
9356 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
9357
9358         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
9359           not libgdk (though it makes me wonder why I didn't have any
9360           problems)
9361
9362 2006-12-07  Chris Toshok  <toshok@ximian.com>
9363
9364         [ you had to know this was coming after that last commit...]
9365         
9366         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
9367         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
9368         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
9369         XCopyArea).
9370
9371 2006-12-07  Chris Toshok  <toshok@ximian.com>
9372
9373         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
9374         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
9375         all the behavior we need for double buffering.
9376
9377         * XplatUIDriver.cs: implement the 3 double buffer methods using a
9378         client side Bitmap, just like the old Control-based double buffer
9379         code did.  The methods are virtual, so each XplatUI driver
9380         subclass can replace the implementation to use a faster, platform
9381         specific approach.
9382
9383         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
9384         double buffer code, and clean things up a bit in the process.
9385
9386 2006-12-06  Chris Toshok  <toshok@ximian.com>
9387
9388         * Control.cs: reindent WndProc.
9389
9390 2006-12-06  Chris Toshok  <toshok@ximian.com>
9391
9392         [ I wanna be like BenM when I grow up ]
9393         
9394         * Hwnd.cs: create a single static Graphics object on the static
9395         Bitmap we create.  use this for our text measurements.
9396
9397         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
9398         This was causing us to allocate a backbuffer for every control,
9399         even when it wasn't flagged as double buffered.  Instead use the
9400         single graphics instance.  This might have implications for
9401         multithreaded applications.  If we run into problems we can switch
9402         to creating 1 Graphics per control, on the static Hwnd bitmap.
9403
9404         this change nets us a 7M savings in private dirty mappings when
9405         running FormsTest.exe.
9406
9407 2006-12-06  Chris Toshok  <toshok@ximian.com>
9408
9409         * ListView.cs: the BackgroundImage override is just to set
9410         attributes.  chain up to base.BackgroundImage.
9411
9412         * RichTextBox.cs: same.
9413
9414         * ToolBar.cs: same, but we need to also redraw the toolbar when it
9415         changes, so instead a handler for BackgroundImageChanged.
9416         
9417         * Control.cs: make background_image private.
9418
9419 2006-12-06  Chris Toshok  <toshok@ximian.com>
9420
9421         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
9422         sure we even need this assignment, but roll with it for now.
9423
9424         * Control.cs: make the cursor field private.
9425
9426 2006-12-06  Chris Toshok  <toshok@ximian.com>
9427
9428         * Form.cs: we don't need to explicitly set ImeMode to
9429         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
9430         behavior in the face of ImeMode.Inherit.
9431
9432         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
9433         change the ctor's assignment to use ImeMode instead of ime_mode.
9434
9435         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
9436         ImeModeInherit.  Only check for the parent's imemode (and return
9437         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
9438         This fixes the button unit test, which sets both ImeMode and
9439         DefaultImeMode to ImeMode.Disable.
9440
9441         also make the ime_mode field private.
9442
9443 2006-12-06  Chris Toshok  <toshok@ximian.com>
9444
9445         * Control.cs: make control_style private.
9446
9447         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
9448         setting the styles to true, then setting them to false instead of
9449         reverting to their previous values.
9450
9451         also, call SetStyle on the scrollbars instead of using
9452         control_style directly.
9453
9454 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
9455
9456         * FormCollection.cs: Implement. [2.0]
9457
9458 2006-12-06  Chris Toshok  <toshok@ximian.com>
9459
9460         * Control.cs: make tab_stop private.
9461
9462         * Label.cs: set TabStop, not tab_stop.  reformat some event
9463         add/remove methods to make them more compact.
9464
9465 2006-12-06  Chris Toshok  <toshok@ximian.com>
9466
9467         * RadioButton.cs: fix TabStop handling.
9468
9469 2006-12-06  Chris Toshok  <toshok@ximian.com>
9470
9471         * TextBox.cs: remove the explicit assignments to has_focus.
9472         Control does that.
9473
9474         * ButtonBase.cs: remove the assignment to has_focus.  Control will
9475         manage that.
9476         
9477 2006-12-06  Chris Toshok  <toshok@ximian.com>
9478
9479         * ButtonBase.cs: remove all uses of is_enabled from this code.
9480         it's always true when any of the code containing the checks is
9481         executed.
9482
9483 2006-12-06  Chris Toshok  <toshok@ximian.com>
9484
9485         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
9486         with different semantics (some are present in both 1.1 and 2.0
9487         profiles) so that we match MS's behavior in our unit tests.
9488
9489 2006-12-06  Jackson Harper  <jackson@ximian.com>
9490
9491         * TextControl.cs: Make this operation undoable.
9492         * TextBoxBase.cs: Factor the border width into the preferred
9493         height.
9494         - implement Modified as per the spec.
9495
9496 2006-12-06  Chris Toshok  <toshok@ximian.com>
9497
9498         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
9499
9500 2006-12-06  Chris Toshok  <toshok@ximian.com>
9501
9502         * Control.cs: make right_to_left and context_menu fields private.
9503
9504 2006-12-06  Chris Toshok  <toshok@ximian.com>
9505
9506         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
9507         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
9508         Control.child_controls private.  switch all uses over to
9509         Control.Controls.
9510
9511 2006-12-06  Chris Toshok  <toshok@ximian.com>
9512
9513         * System.Windows.Forms/GroupBox.cs,
9514         System.Windows.Forms/AccessibleObject.cs,
9515         System.Windows.Forms/ErrorProvider.cs,
9516         System.Windows.Forms/Control.cs,
9517         System.Windows.Forms/UpDownBase.cs,
9518         System.Windows.Forms/ScrollBar.cs,
9519         System.Windows.Forms/DateTimePicker.cs,
9520         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
9521         System.Windows.Forms/ToolTip.cs,
9522         System.Windows.Forms/RadioButton.cs,
9523         System.Windows.Forms/LinkLabel.cs,
9524         System.Windows.Forms/Splitter.cs,
9525         System.Windows.Forms/TextBoxBase.cs,
9526         System.Windows.Forms/ToolStripTextBox.cs,
9527         System.Windows.Forms/ContainerControl.cs,
9528         System.Windows.Forms/ThemeWin32Classic.cs,
9529         System.Windows.Forms/SizeGrip.cs,
9530         System.Windows.Forms/ToolStripDropDown.cs,
9531         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
9532         private.  switch all uses over to Control.Parent.
9533
9534 2006-12-06  Chris Toshok  <toshok@ximian.com>
9535
9536         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
9537         Control does this before calling emitting these events.
9538
9539         * TabControl.cs: same.
9540
9541         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
9542         Control.client_rect.
9543
9544         * ButtonBase.cs: use the ClientSize property instead of the
9545         client_size field.
9546
9547         * ScrollableControl.cs: same.
9548
9549         * Control.cs: another pass at making properties private.  also,
9550         move the initialization of tab_stop to the ctor.
9551
9552 2006-12-05  Andreia Gaita <avidigal@novell.com>
9553
9554         * TabControl.cs: Let the selected index be set freely if the 
9555         control handle is not yet created.
9556
9557 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
9558
9559         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
9560         internal until I can rewrite DefaultLayout.
9561         * ToolStrip.cs: Fix build error and some general cleaning.
9562         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
9563         Fix build errors caused by making some of Control's fields private.
9564
9565 2006-12-05  Jackson Harper  <jackson@ximian.com>
9566
9567         * TextControl.cs: Redo Insert a little so that it use IndexOf
9568         instead of Split, this prevents it from messing up on things like
9569         \n\n\n. Also more effecient since the split array doesn't need to
9570         be created.
9571         * TextBoxBase.cs: AppendText doesnt handle multiline and non
9572         multiline text differently, this is the first of many fixes that
9573         will make multiline/non-multiline the same thing as far as the
9574         TextBoxBase is concerned.
9575         - Don't split the text and insert lines, this can lose some line
9576         endings (like is the last line a soft or hard break). Instead use
9577         the new Insert.
9578         - Fix an off by one when combining all the lines in the Text
9579         getter.
9580         - Remove separate multiline handling from the Text getter/setter.
9581
9582 2006-12-05  Chris Toshok  <toshok@ximian.com>
9583
9584         * ButtonBase.cs: a few changes:
9585
9586         - don't reinitialize internal Control fields in the ctor when they
9587         have the same values as Control sets them.
9588
9589         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
9590         this before calling those methods.
9591
9592         - we don't need to call Refresh for anything.  use Invalidate
9593         instead.
9594
9595         - OnEnabledChanged doesn't need to redraw at all - Control.cs
9596         calls Refresh in its OnEnabledChanged.
9597         
9598         - several of the events we were registered for in the ctor to
9599         redraw ourselves already include calls to Invalidate in the
9600         property setters that raise the events.  remove the extra
9601         invalidation.
9602
9603         - reformat a switch statement that was 83274658 columns wide.
9604         
9605 2006-12-05  Mike Kestner  <mkestner@novell.com>
9606
9607         * ComboBox.cs: fix a unit test regression from a TextBox
9608         SelectionLength return of -1 when there's no selection.  
9609
9610 2006-12-05  Chris Toshok  <toshok@ximian.com>
9611
9612         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
9613         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
9614         cleaning up some of the internal Control fields being used by
9615         subclasses.
9616
9617 2006-12-05  Mike Kestner  <mkestner@novell.com>
9618
9619         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
9620         listbox after AddImplicit calls since it defaults to hidden. Add a 
9621         hack to preserve requested heights across DropDownStyle changes.
9622
9623 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
9624
9625         * PropertyGrid.cs: Hide FindFirstItem method from public API.
9626
9627 2006-12-05  Chris Toshok  <toshok@ximian.com>
9628
9629         * DataGridView.cs: fix compiler warnings.
9630
9631         * PrintControllerWithStatusDialog.cs: same.
9632
9633         * ToolBar.cs: same.
9634
9635         * FolderBrowserDialog.cs: same.
9636
9637         * Splitter.cs: same.
9638
9639         * DataGridViewComboBoxCell.cs: same.
9640
9641         * XplatUIWin32.cs: same.
9642
9643         * PictureBox.cs: same.
9644
9645         * Win32DnD.cs: same.
9646
9647         * PageSetupDialog.cs: same.
9648
9649         * FileDialog.cs: same.
9650
9651         * PrintDialog.cs: same.
9652
9653         * DataGridTextBoxColumn.cs: same.
9654
9655         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
9656
9657 2006-12-05  Chris Toshok  <toshok@ximian.com>
9658
9659         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
9660         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
9661         System.ComponentModel.EventHandlerList work.
9662
9663 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
9664
9665         * DrawTreeNodeEventArgs.cs: Added.
9666
9667 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9668         
9669         * InternalWindowManager.cs: Remove an unused field.
9670         
9671 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9672
9673         * InternalWindowManager.cs:
9674         - Save the point where the title bar is clicked.
9675         
9676         * MdiWindowManager.cs:
9677         - Only allow moving of the window as long as the 
9678         clicked point on the title bar does not get out of
9679         MdiClient's rectangle. Fixes #79982.
9680         
9681         * MdiClient.cs:
9682         - Added Horizontal/VerticalScrollbarVisible.
9683         - Simplified the scrollbar sizing algorithm.
9684         - Cache the difference in scrolled value in
9685         H/VBarValueChanged and move the calculation out
9686         of the for loop.
9687
9688 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9689
9690         * Control.cs: Make the Console.WriteLine in WndProc 
9691         write more info.
9692
9693 2006-12-05  Chris Toshok  <toshok@ximian.com>
9694
9695         * ToolStripManager.cs, ToolStripButton.cs,
9696         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
9697         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
9698         ToolStripSplitButton.cs, ToolStripSeparator.cs,
9699         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
9700         ToolStripProgressBar.cs, ToolStripContainer.cs,
9701         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
9702         to using System.ComponentModel.EventHandlerList.
9703
9704 2006-12-04  Chris Toshok  <toshok@ximian.com>
9705
9706         * LinkLabel.cs: fix up compiler warnings.
9707
9708         * TableLayoutSettings.cs: same.
9709
9710         * TreeView.cs: same.
9711
9712         * ToolBar.cs: same.
9713
9714         * TabControl.cs: same.
9715
9716         * RichTextBox.cs: same.
9717
9718         * ListViewItem.cs: same.
9719
9720         * PropertyGrid.cs: same.
9721
9722         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
9723
9724         * ToolTip.cs same.
9725
9726         * TextRenderer.cs: fix up compiler warnings.
9727
9728         * Label.cs: same.
9729
9730         * Form.cs: corcompare fixes.
9731
9732         * PictureBox.cs: fix up compiler warnings.
9733
9734         * ImageListStreamer.cs: same.
9735
9736         * TrackBar.cs: corcompare fix.
9737
9738         * Control.cs: fix up compiler warnings.
9739
9740         * SplitterPanel.cs: same.
9741
9742         * NumericTextBox.cs: same.
9743
9744         * ImageList.cs: same.
9745
9746         * StatusStrip.cs: same.
9747
9748         * ProgressBar.cs: corcompare fix.
9749
9750         * ToolStripButton.cs: fix up compiler warnings.
9751
9752         * ToolStripStatusLabel.cs: same.
9753
9754         * ToolStripSplitButton.cs: same.
9755
9756         * ToolStripSeparator.cs: same.
9757
9758         * ToolStripProgressBar.cs: same.
9759
9760         * ToolStripDropDownMenu.cs: same
9761
9762         * ToolStripDropDown.cs: same.
9763
9764         * ToolStripDropDownButton.cs: same.
9765
9766         * ToolStrip.cs: same.
9767
9768         * ToolStripControlHost.cs: same.
9769
9770         * ToolStripContentPanel.cs: same.
9771
9772         * ToolStripDropDown.cs: same.
9773
9774         * ToolStripContainer.cs: same.
9775
9776         * ToolStripPanel.cs: same, and add "new" where we need it to work
9777         with the new ArrangedElementCollection.
9778
9779         * ToolStripItemCollection.cs: add "new" where we need it to work
9780         with the new ArrangedElementCollection.
9781
9782 2006-12-04  Andreia Gaita <avidigal@novell.com>
9783
9784         * TabControl.cs: Fix default tab selection to after TabControl
9785         gets focus and not before. Fixes #80128
9786
9787 2006-12-04  Chris Toshok  <toshok@ximian.com>
9788
9789         * DataGridTableStyle.cs: remove the gross calling of
9790         datagrid.Refresh from here.  It's a broken idea and it doesn't
9791         work anyway.
9792
9793         * DataGrid.cs: instead, just register/unregister from the
9794         DataGridTableStyle events in CurrentTableStyle.  we play it
9795         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
9796         even though some would most likely not require it.  Fixes bug
9797         #80115 (and one portion of #80117 as a side effect).
9798
9799 2006-12-04  Chris Toshok  <toshok@ximian.com>
9800
9801         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
9802         so the textbox (if any) goes away.  Fixes bug #80117.
9803
9804 2006-12-04  Chris Toshok  <toshok@ximian.com>
9805
9806         * DataGridColumnStyle.cs: set the column's readonly property
9807         initially based on the property descriptor's IsReadOnly.  Fixes
9808         bug #80044.
9809
9810 2006-12-04  Chris Toshok  <toshok@ximian.com>
9811
9812         * ComboBox.cs: wrap the dropdown style changing work in
9813         SuspendLayout/ResumeLayout.  Fixes bug #79968.
9814
9815 2006-12-04  Jackson Harper  <jackson@ximian.com>
9816
9817         * TextBoxBase.cs: Fix off by one, since these are one-based.
9818         * TextBox.cs: Select all the text when we get focus.  The TextBox
9819         does this but the RTB does not.
9820
9821 2006-12-04  Chris Toshok  <toshok@ximian.com>
9822
9823         * DataGridTextBoxColumn.cs: remove some spew.
9824
9825         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
9826         but some part of me is saying "it shouldn't be here.."  At any
9827         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
9828         setting the value.
9829
9830 2006-12-04  Chris Toshok  <toshok@ximian.com>
9831
9832         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
9833         to reassign the propertydescriptor.
9834
9835 2006-12-04  Jackson Harper  <jackson@ximian.com>
9836
9837         * TextBoxBase.cs:
9838         * TextControl.cs: Remove some unused variables.  Maybe this will
9839         patch things up between mike and I.
9840         - don't split lines less then one char wide, if the viewport is
9841         that small text won't be visible anyways.
9842         
9843 2006-12-04  Jackson Harper  <jackson@ximian.com>
9844
9845         * TextBoxBase.cs: Default selection length is -1, need to do some
9846         more testing on windows to see when this is used for the property.
9847         - Redid the Lines [] property to that we properly remove soft line
9848         breaks
9849         - added support for preserving carriage returns
9850         -  CanUndo is not a variable like 'is undo enabled' it just returns
9851         true if there is undo operations available.
9852         - AppendText doesn't need to grab the last tag itself anymore,
9853         this happens automatically when we move the cursor.
9854         * TextControl.cs: Add CompoundActions to the undo class. This
9855         allows combining the other operations into one big option.  ie a
9856         paste will combine { delete old, insert new, move cursor }
9857         - Add InsertString undo operation
9858         - New method for deleting multiline text
9859         - Add carriage returns to lines. So we can preserve carriage
9860         returns when text is 'roundtripped'
9861
9862 2006-12-04  Chris Toshok  <toshok@ximian.com>
9863
9864         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
9865         minimum 0.  Fixes the scrollbar exception in bug #80136.
9866
9867 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9868
9869         * MdiClient.cs: 
9870         * MdiWindowManager: Removed unused fields and methods.
9871         
9872 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9873         
9874         * StatusBar.cs: Update all panels when a AutoSize=Contents
9875         panel needs updating.
9876         
9877         * StatusBarPanel.cs: Remove twidth and only use initialize.
9878         Fixes #80031.
9879                 
9880 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9881
9882         * Form.cs: When a form's MdiParent is set add it directly
9883         on top of the z-order in stead of relying on MdiClient's
9884         ActivateChild to do it. Fixes #80135.
9885         
9886         * MdiClient.cs: 
9887         - Remove original_order, mdi_child_list is already doing
9888         the same thing.
9889         - Create mdi_child_list on construction in
9890         stead of first use (avoids a few null checks).
9891
9892         * MenuItem.cs: Use an already existing list of mdi children
9893         to get the correct order of children and remove the other
9894         redundant list.
9895
9896 2006-12-04  Chris Toshok  <toshok@ximian.com>
9897
9898         * PropertyGridView.cs: cached_splitter_location is only used in
9899         !DOUBLEBUFFER code.
9900
9901         * PropertyGrid.cs: implement the ComComponentNameChanged event
9902         using Events, hoping that would fix the warning.  Looks like a
9903         compiler bug instead (#80144).
9904
9905         * PropertyManager.cs: remove unused method.
9906
9907 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
9908
9909         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
9910         include parentesis to fix expression evaluation. Fixes #79634.
9911
9912 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
9913         
9914         * MenuAPI.cs:
9915         - Changes to fix behavior in Menu control, some reported in #80097
9916         and other detected during behavior refactory like a select event
9917         problems.
9918         - Remove unneded "if's" conditions.
9919         - Created an internal to flag when popup is active in control, we need 
9920         it because in .NET you can have menu active but without popup active
9921         when you active menu using popup without visible items.
9922         - Mimic win32 behavior for Select and Popup events.  
9923         - Dont open popup menu when you dont have visible subitems.
9924         - Do nothing when click on disabled menu item.
9925         - Some small changes to follow the coding style guidelines.
9926         - Unselect menu only when another control gives focus. Fixes #80097.
9927         - Remove unused code.
9928         
9929         * MenuItem.cs: internal VisibleItems method to check if menu
9930         theres visible subitems, it will be usefull to fix some 
9931         behavior in Menu control.
9932         
9933 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
9934         
9935         * Timer.cs: Tag property for 2.0 profile.
9936         
9937 2006-12-01  Chris Toshok  <toshok@ximian.com>
9938
9939         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
9940         
9941         * Win32DnD.cs: comment out some unused fields.
9942
9943         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
9944         some unused properties/methods.
9945
9946         * XplatUIX11.cs: fix MousePosition so we override the base class's
9947         property instead of conflicting with it.
9948
9949         * PictureBox.cs: comment out some unused fields
9950
9951         * OSXStructs.cs: make some struct fields public.
9952
9953         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
9954         MousePosition so we override the base class's property instead of
9955         conflicting with it.
9956
9957         * X11Dnd.cs: comment out some unused fields
9958
9959         * X11DesktopColors.cs: fix some struct field visibility to quiet
9960         the compiler.
9961
9962         * X11Dnd.cs: remove some debug code.
9963
9964         * ThemeClearlooks.cs: comment out unused field.
9965
9966         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
9967
9968         * ThemeGtk.cs: comment out some unused pinvokes.
9969
9970         * Timer.cs: remove some unused fields.
9971
9972         * ThemeClearlooks.cs: comment out unused field.
9973
9974         * UpDownBase.cs: comment out unused field.
9975
9976         * DataObject.cs: comment out unused field.
9977
9978         * DataGridBoolColumn.cs: reomve unused field.
9979
9980         * DataGrid.cs: remove unused field.
9981
9982         * Cursor.cs: remove old ToBitmap code.
9983
9984         * ControlPaint.cs: remove unused method.
9985
9986         * ScrollBar.cs: remove unused fields.
9987
9988         * ComboBox.cs: remove unused field, and chain up to
9989         AccessibleObject ctor.
9990
9991         * ListBox.cs: remove unused field.
9992
9993         * ButtonBase.cs: wrap a couple fields in NET_2_0.
9994
9995         * GridEntry.cs: remove unused fields.
9996
9997         * Binding.cs: remove unused fields.
9998
9999         * AxHost.cs: remove unused method.
10000
10001         * ContainerControl.cs: remove unused field.
10002
10003         * ScrollableControl.cs: remove unused fields.
10004
10005 2006-12-01  Chris Toshok  <toshok@ximian.com>
10006
10007         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
10008         the Where/WhereString stuff.  it's easy enough to CWL
10009         Environment.StackTrace.
10010
10011         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
10012         unused private fields.
10013
10014 2006-12-01  Jackson Harper  <jackson@ximian.com>
10015
10016         * TextControl.cs: Do not update the view while inserting multiline
10017         text. If we update the view we might wrap lines, before entering
10018         the new lines, which causes the new line insertion calculations to
10019         be totally fubared.
10020         - Remove an old TODO
10021         - Make debug output a little nicer
10022         
10023 2006-12-01  Chris Toshok  <toshok@ximian.com>
10024
10025         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
10026
10027 2006-12-01  Chris Toshok  <toshok@ximian.com>
10028
10029         [ fix the majority of the CS0108 warnings we've been suppressing ]
10030         
10031         * TreeView.cs: mark BackgroundImageChanged as 'new'.
10032
10033         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
10034         to "LayoutToolBar" to quiet mcs.
10035         
10036         * TabControl.cs: mark our ControlCollection class as 'new'.
10037
10038         * TextBoxBase.cs: mark some events as 'new'.
10039
10040         * Splitter.cs: TabStop is 'new'.
10041
10042         * ControlBindingsCollection.cs: mark a few methods as new since
10043         they change the visibility from protected to public.
10044
10045         * RadioButton.cs: DoubleClick -> base class, and remove unused
10046         HaveDoubleClick.
10047
10048         * MonthCalendar.cs: ImeMode property -> base class, and mark many
10049         events as new.
10050
10051         * NumericUpDown.cs: TextChanged -> base class.
10052
10053         * CheckedListBox.cs: mark our ObjectCollection class as new to
10054         quiet mcs.
10055
10056         * FolderBrowserDialog.cs: make HelpRequest event new and have it
10057         muck with the base class.
10058
10059         * StatusBar.cs: fix some mcs warnings about Update being the same
10060         name as a base class method.
10061
10062         * RichTextBox.cs: mark some events as new, and make them do things
10063         to the base class impl.
10064
10065         * UserControl.cs: mark TextChanged as new, and have it manipulate
10066         base.TextChanged.
10067
10068         * UpDownBase.cs: mark some things new.
10069
10070         * CheckBox.cs: mark DoubleClick "new", and add some text about
10071         what we need to look at.
10072
10073         * Panel.cs: make the events "new", and manipulate the base
10074         version.  these are just here for attributes.
10075
10076         * AccessibleObject.cs: make owner private.
10077
10078         * Control.cs: deal with AccessibleObject.owner being private.
10079         cache our own copy if we need it.
10080
10081         * Button.cs: add "new" to the DoubleClickEvent.
10082
10083         * ListBox.cs: no need to track our own has_focus here.  let
10084         Control.has_focus do it for us.  Also some other work to clear up
10085         warnings about not overriding base class methods of the same name.
10086         
10087         * ComboBox.cs: clear up some warnings about not override base
10088         class methods of the same name.
10089
10090 2006-12-01  Chris Toshok  <toshok@ximian.com>
10091
10092         * Form.cs: flag a few things as "new" to quiet some of the mcs
10093         warnings.
10094
10095         * AxHost.cs: same.
10096
10097         * PrintPreviewDialog.cs: same.
10098
10099         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
10100         now DGV isn't so horrible on the class status page.  also, move
10101         all events to using System.ComponentModel.EventHandlerList.  my
10102         wrists hurt.
10103
10104 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10105
10106         * MdiWindowManager.cs:
10107         - Set form to active mdi child if shown,
10108         and update the active mdi child to the next 
10109         remaining child in the z-order if the form is hidden.
10110
10111         * Form.cs: 
10112         - Track if the form has been visible and if its 
10113         visibility is beeing changed, so that the MdiClient
10114         can properly decide the ActiveMdiChild. The MdiClient 
10115         cannot track this since the form can change visibility 
10116         before MdiClient is created.
10117
10118         * MdiClient.cs:
10119         - Don't activate anything of the parent form is changing
10120         its visibility.
10121         - Rework ActiveMdiChild to only return visible mdi 
10122         children and take into account several other corner 
10123         cases.
10124
10125 2006-12-01  Chris Toshok  <toshok@ximian.com>
10126
10127         * IBindableComponent.cs: new 2.0 interface.
10128
10129 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
10130
10131         * DataGrid.cs: Font for caption area is bold by default.
10132
10133 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
10134
10135         * Menu.cs: Tag property for 2.0.
10136         
10137 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
10138
10139         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
10140         
10141 2006-12-01  Chris Toshok  <toshok@ximian.com>
10142
10143         * TreeView.cs: doh, the Begin* events should be
10144         TreeViewCancelEventHandler.
10145
10146 2006-12-01  Chris Toshok  <toshok@ximian.com>
10147
10148         * Form.cs: Form.ControlCollection already stores off the
10149         form_owner field.  don't access the base class's internal "owner"
10150         field.
10151
10152         * Control.cs: make all the fields in Control.ControlCollection
10153         private.  there's no need for any internal fields here.
10154
10155 2006-12-01  Chris Toshok  <toshok@ximian.com>
10156
10157         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
10158         OnHandleCreated.  Fixes bug #80109.
10159
10160 2006-12-01  Chris Toshok  <toshok@ximian.com>
10161
10162         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
10163         SplitContainer.cs, Control.cs, StatusStrip.cs,
10164         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
10165         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
10166         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
10167         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
10168         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
10169         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
10170         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
10171         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
10172         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
10173         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
10174
10175         do most of the work to convert our code over to use
10176         System.ComponentModel.Component.Events for
10177         adding/removing/dispatching events.
10178
10179
10180 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
10181
10182         * DataGridView.cs: Fix an ArgumentNullException reported 
10183         twice today in IRC.
10184
10185 2006-11-30  Mike Kestner  <mkestner@novell.com>
10186
10187         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
10188         grabbed listbox.  Fixes #80036 and #80101.
10189
10190 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
10191
10192         * Message.cs: Changed ToString() to match MS.
10193         
10194 2006-11-30  Jackson Harper  <jackson@ximian.com>
10195
10196         * TextBoxBase.cs: You can still change the selected text on a read
10197         only textbox.
10198         * TextControl.cs: Lower magic number for wrap calculations. This
10199         lets text get closer to the right (far) edge.
10200
10201 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
10202
10203         * Control.cs: Tweak 2.0 layout properties.
10204         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
10205         * TextRenderer.cs: Add a new overload.
10206         * ToolStrip*: Huge amount of changes and new features.
10207
10208 2006-11-30  Mike Kestner  <mkestner@novell.com>
10209
10210         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
10211         scroll range correct.  Fixes #79994.
10212
10213 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
10214
10215         * MdiWindowManager.cs: Update main form's text when
10216         a form is closed. (fixes #80038)
10217         
10218 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
10219
10220         * ToolBar.cs:
10221         - Fix an regression in ButtonSize.
10222         - Get ImeMode default value change to "Disable".
10223         - Get ShowTooltips default value change to true, default value is 
10224         "false" but after make a test in .NET we get "true" result as default.
10225         
10226 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
10227
10228         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
10229
10230 2006-11-29  Chris Toshok  <toshok@ximian.com>
10231
10232         * XplatUIWin32.cs (GetWindowTransparency): check return value of
10233         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
10234         SetWindowTransparency hasn't been called.
10235
10236 2006-11-29  Chris Toshok  <toshok@ximian.com>
10237
10238         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
10239         if it's supported.
10240         (set_AllowTransparency): reorder things a little so that the
10241         WS_EX_LAYERED style is removed properly.
10242
10243 2006-11-29  Chris Toshok  <toshok@ximian.com>
10244
10245         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
10246         
10247         * Form.cs: only call the XplatUI transparency method (get/set) if
10248         SupportsTransparency says it's supported. Otherwise fallback to
10249         doing nothing (in the set case) or returning the instance field we
10250         cache (in the get case).
10251
10252         * XplatUIStructs.cs: add TransparencySupport flag enum.
10253         
10254         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
10255         change to SupportsTransparency.
10256
10257         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
10258         TransparencySupport.None from SupportsTransparency.
10259
10260         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
10261         TransparencySupport.Set from SupportsTransparency.
10262
10263         * XplatUIWin32.cs: implement GetWindowTransparency calling
10264         GetLayeredWindowAttributes, and implement SupportsTransparency by
10265         checking whether or not both
10266         GetWindowTransparency/SetWindowTransparency are available
10267         entrypoints.  We need to do this since SetWindowTransparency is
10268         available as of win2k, but GetWindowTransparency requires winxp.
10269         yay win32 api.
10270
10271         * XplatUI.cs: Add GetWindowTransparency, and change
10272         SupportsTransparency to allow for either/both Get/Set.
10273
10274 2006-11-29  Chris Toshok  <toshok@ximian.com>
10275
10276         * DataGrid.cs: keep from going into an infinite loop redrawing a
10277         datagrid that has no datasource.  Fixes bug #80033.
10278
10279 2006-11-29  Chris Toshok  <toshok@ximian.com>
10280
10281         * MenuItem.cs: fix the NRE when we assign text (and therefore call
10282         Invalidate) before the mainmenu has been assigned to a control.
10283
10284 2006-11-29  Chris Toshok  <toshok@ximian.com>
10285
10286         * DataGrid.cs: detect when we should be double the double click
10287         row/column autosize stuff, although that codepath has yet to be
10288         written.  part of the work for bug #79891.
10289
10290 2006-11-29  Chris Toshok  <toshok@ximian.com>
10291
10292         * Binding.cs (SetControl): fix unit test.
10293
10294 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10295
10296         * PageSetupDialog.cs: Validate the margins and set them in
10297         PageSettings. 
10298         * NumericTextBox.cs: New class to mimic the behavior of the
10299         textboxes used in the printing dialogs.
10300
10301 2006-11-29  Andreia Gaita  <avidigal@novell.com>
10302         
10303         * Form.cs: Revert previous change (remove call UpdateBounds
10304         from form constructor), because it messes with the handle creation
10305         order, and that one needs lots and lots of love.
10306         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
10307         for valid printer and throw InvalidPrinterException if document
10308         is set but printer not valid), adding a MonoTODO. Once 
10309         handle creation is done properly, we can put this back in.
10310
10311 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
10312
10313         * MenuItem.cs: Create a invalidate method for menu item, to be
10314         calling from set text, it make text changes to imadiate update
10315         on screen. Fixes #80013. 
10316         
10317 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
10318
10319         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
10320         fixes bug #80070 and some other problem on toolbar buttons
10321         layout.
10322
10323 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
10324
10325         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
10326         with dotted brush.      Fixes #79564
10327         
10328 2006-11-28  Andreia Gaita  <avidigal@novell.com>
10329
10330         * Form.cs: Removed call to UpdateBounds on Form
10331         constructor, it was causing a call to CreateHandle
10332         before it was supposed to.
10333         * PrintControllerWithStatusDialog: Applied patch
10334         by Chris Toshok to hide controller when there are
10335         no printers available.
10336         PrintDialog.cs: initialize printer settings to 
10337         null - correct DefaultValues test #5
10338         * PrintPreviewControl.cs: Move PrintController
10339         initialization to GeneratePreview
10340         * PrintPreviewDialog.cs: 
10341         - Remove Preview generation     from Document_set(). It is 
10342         called on OnPaint
10343         - Throw InvalidPrinterException on CreateHandle if
10344         a Document is set but there are no printers or 
10345         printer is not valid.
10346         * ThemeWin32Classic: don't paint PrintPreviewControl
10347         if there is nothing to paint    
10348
10349 2006-11-28  Miguel de Icaza  <miguel@novell.com>
10350
10351         * Form.cs: Add another popular method.
10352
10353         * TabPage.cs: ditto.
10354
10355 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10356
10357         * MenuItem.cs: Fixed a warning.
10358         * InternalWindowManager: Fixed a warning.
10359
10360 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10361
10362         * MenuItem.cs:
10363         - When cloning a menu also clone MdiList and clone the 
10364           window menu items properly (as the forms and menuitems
10365           are kept in an internal hashtable, these need updating 
10366           as well)
10367         - Rewrote the window menu code, menu items are added in the
10368           order the forms were added to their parent, and they are
10369           updated every time the window menu is shown (before the
10370           list was only generated once, in the current order of the
10371           forms, and would never be updated). A checkmark is shown
10372           next to the item corresponding to the active mdi child.
10373
10374 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10375
10376         * XplatUIStructs.cs: 
10377         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
10378         
10379         * XplatUIWin32.cs: 
10380         - Added TME_NONCLIENT to TMEFlags.
10381         - Handles WM_NCMOUSEMOVE in GetMessage to 
10382           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
10383
10384         * MdiWindowManager:
10385         - Now merges mdi child menu to parent menu when maximized.
10386         - Recalculate NC areas of both mdi child and mdi parent. 
10387           Fixes #79757 (4).
10388           on window state and size changes.Fixes #79844 (3).
10389         - Handle WM_NCCALCSIZE to properly calculate borders.
10390
10391         * Form.cs:
10392         - Add/remove to the mdi containers list of mdi children 
10393           in the order they are added.
10394         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
10395           to the maximized mdi child.
10396         
10397         * InternalWindowManager.cs:
10398         - Only execute a click on the control buttons on the mouse up,
10399           not on the mouse down. Show the state of the button 
10400           (was only showing Normal state, never Pressed state). The
10401           pressed button now follows the mouse (if you click the Close 
10402           button and move the mouse over the Maximize button, the 
10403           Maximize button will be shown as pressed). Since Win32 does
10404           not generate WM_NCLBUTTONUP if you release the button outside
10405           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
10406           it as a mouse up.
10407         
10408         * ThemeWin32Classic.cs:
10409         - Draw a missing border around mdi child forms. Fixes #79844 (2).
10410
10411         * MdiClient.cs:
10412         - Added a list of forms which contains the order the forms are
10413           added to the mdi parent.
10414         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
10415         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
10416         - If the active form changes set the scrollbars to the top
10417           of the Z order, otherwise the form could hide them.
10418         - Scrollbars are now sized according to ClientSize, not 
10419           to Size, and they take into account the other scrollbar
10420           to determine maximum.
10421         
10422 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
10423         
10424         * XplatUI.cs:
10425         * XplatUIDriver.cs:
10426         * XplatUIX11.cs:
10427         * XplatUIWin32.cs:
10428         * XplatUIOSX.cs:
10429         - Added RequestAdditionalWM_NCMessages for windows to 
10430           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
10431           Currently only implemented in XplatUIWin32.
10432
10433 2006-11-27  Chris Toshok  <toshok@ximian.com>
10434
10435         * Hwnd.cs: only add the hwnd to the windows hash in
10436         set_WholeWindow and set_ClientWindow if whole_window/client_window
10437         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
10438
10439 2006-11-27  Mike Kestner  <mkestner@novell.com>
10440
10441         * ComboBox.cs: remove redundant OnDropDown call.  It is called
10442         from the ComboListBox.ShowWindow code. Fixes #79969.
10443
10444 2006-11-27  Chris Toshok  <toshok@ximian.com>
10445
10446         * Hwnd.cs: remove the setters for ExposePending and
10447         NCExposePending - noone uses them.
10448
10449 2006-11-27  Jackson Harper  <jackson@ximian.com>
10450
10451         * TextControl.cs: new param for ReplaceSelection which determines
10452         whether we select the new selection, or set the cursor to the end
10453         of the new selection.
10454         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
10455         pasting, select the new text.
10456         * RichTextBox.cs: Use new param for ReplaceSelection.
10457
10458 2006-11-27  Jackson Harper  <jackson@ximian.com>
10459
10460         * TextBoxBase.cs: Set the selection to the caret after the caret
10461         is moved, otherwise they get out of sync.
10462
10463 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
10464
10465         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
10466         it fixes #80015
10467
10468 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
10469
10470         * ThemeWin32Classic.cs: 
10471         - Fix toolbar drop down arrow position.
10472         - Fix drop down appearance when ToolBar.Appearance is normal,
10473         it fixes #80018.
10474         
10475 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
10476
10477         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
10478         * Control.cs: Same.
10479         * UpDownBase.cs: Same.
10480         * ButtonBase.cs: Same.
10481         * ScrollBar.cs: Same.
10482         * TrackBar.cs: Same.
10483         * PictureBox.cs: Same.
10484         * UserControl.cs: Same.
10485         * Label.cs: Same.
10486         * ListControl.cs: Same.
10487         * TextBoxBase.cs: Same.
10488         * ListView.cs: Same.
10489         * RichTextBox.cs: Same.
10490         * TreeView.cs: Same.
10491
10492 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
10493
10494         * PrintDialog.cs:
10495         - Text label for where 
10496         - Text label comment was not shown
10497
10498 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
10499
10500         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
10501
10502 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
10503
10504         * InternalWindowManager.cs: 
10505         - Handle WM_PARENTNOTIFY to activate the form
10506         if any child control is clicked.
10507         - The form is only sizable if not minimized.
10508
10509         * MdiWindowManager.cs:
10510         - Save the IconicBounds if the form is moved.
10511         - Rework SetWindowState, now the window bounds 
10512         are stored only if the old window state is Normal.
10513         
10514         * MdiClient.cs:
10515         - In SetWindowStates store the old window state if 
10516         the window is maximized and restore window state if
10517         the window looses focus.
10518         - Don't handle any scrollbar value changes if 
10519         initializing the scroll bars. Fixes #79771.
10520         - Reworked ArrangeIconicWindows. Current algorithm
10521         tests bounds agains all other minimized windows, if
10522         any intersections create new bounds (going left to 
10523         right, bottom to top) and then test again. When 
10524         successful the bounds are saved and never computed
10525         again. Fixes #79774.
10526
10527 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
10528
10529         * InternalWindowManager.cs: Added HandleTitleBarUp.
10530
10531 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
10532
10533         * NumericUpDown.cs: In .NET 1.1, user entered text is still
10534         hexadecimal in ParseUserEdit.
10535
10536         
10537 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
10538
10539         * MdiWindowManager.cs: 
10540         - Handle a click on the form's icon to show the 
10541         system menu (when maximized). Fixes #79775.
10542         - Change the existing click handler for the form's
10543         icon when not maximized to show on MouseUp.
10544         Fixes #79776.
10545
10546         * Form.cs: In OnResize only layout the mdi child's
10547         parent if it actually has a parent. Might not if
10548         the window is closing.
10549
10550
10551 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
10552
10553         * MdiClient.cs: Ignore active MDI client for text of parent, if
10554         child has no text set.
10555
10556 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
10557
10558         * ToolBar.cs: Fixed ToString to match MS.
10559
10560 2006-11-22  Andreia Gaita  <avidigal@novell.com>
10561
10562         * NumericUpDown: 
10563         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
10564         update inner values on set. Fixes #79966.
10565         - Override OnLostFocus to update value on NET 2. Fixes #79950.
10566         - Fix hexadecimal parsing.
10567         
10568         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
10569         parent. Fixes #79957
10570
10571 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10572
10573         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
10574         the actual size has to be queried, since if height /
10575         width is negative Win32 changes it to 0. 
10576         Fixes #79999 on Windows.
10577         
10578         * XplatUIX11.cs: Set height / width to 0 if negative
10579         in SetWindowPos. Fixes #79999 on Linux.
10580         
10581 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
10582
10583         * ThemeWin32Classic.cs: Fix text redenring when button is
10584         pressed.
10585
10586 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
10587
10588         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
10589         and later navigate by mouse. Fixes #79528.
10590
10591 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
10592
10593         * ToolBar.cs: Set default value for TabStop to false in
10594         constructor, it fixes remaining behavior of bug #79863.
10595
10596 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10597
10598         * MdiWindowManager.cs:
10599         * InternalWindowManager.cs:
10600         - Moved a few methods specific to Mdi from 
10601         InternalWindowManager to MdiWindowManager.
10602         Fixes #79996.
10603         
10604 2006-11-21  Chris Toshok  <toshok@ximian.com>
10605
10606         * XplatUIOSX.cs: stub out InvalidateNC.
10607
10608         * XplatUIWin32.cs: implement InvalidateNC using the call I found
10609         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
10610
10611         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
10612
10613         * XplatUIDriver.cs: add InvalidateNC abstract method.
10614
10615         * XplatUI.cs: add InvalidateNC.
10616
10617 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
10618
10619         * ToolBar.cs: Invalidate complete button area when pressed status 
10620         was changed.
10621         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
10622         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
10623         by 1 when button is pressed.
10624
10625 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
10626
10627         * ToolButton.cs: Invalidate middle of DropDown button when
10628         ToolBar theres DropDownArrows.
10629         * ThemeWin32Classic.cs: Change position of DropDown arrow and
10630         fix DropDown drawing operations.
10631
10632 2006-11-20  Chris Toshok  <toshok@ximian.com>
10633
10634         * NativeWindow.cs: fix the formatting of functions ('{' on the
10635         following line), and enable the thread exception dialog.
10636
10637         * Application.cs: remove the duplicate exception catching from
10638         here.
10639
10640 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
10641
10642         * Toolbar.cs: Triggers button click event when click on icon
10643         of dropdown ToolBarButton. Fixes #79912.
10644         
10645 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10646
10647         * Theme.cs:
10648         * ThemeWin32Classic.cs:
10649         - Added a property WindowBorderFont to enable themeing
10650           of mdi child windows' Text.
10651           
10652 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10653
10654         * InternalWindowManager.cs:
10655         * Form.cs:
10656         * MdiClient.cs:
10657         * MdiWindowManager.cs: 
10658         - If mdi child is maximized, set mdi parent's
10659           text to "Parent - [Child]". Fixes #79770.
10660         - If there is any maximized mdi child windows, only the active 
10661           window (and any new windows) is maximized, the rest are normal.
10662         - On a WindowState change only save mdi child's window bounds 
10663           if the old window state was normal. Fixes #79774.
10664         - The scroll bars are now calculated on hopefully all
10665           necessary events. Fixed #79771 / #79844->6 / #79906.
10666         - MdiClient.SizeScrollBars() now takes into account docked 
10667           controls in the parent when calculating available space.
10668         - InternalWindowManager now always repaints the entire title
10669           area. Fixes #79844->1/4/5.
10670         - Added RequestNCRecalc on mdi child windowstate changes.
10671           Fixes #79772.
10672
10673 2006-11-20  Mike Kestner  <mkestner@novell.com>
10674
10675         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
10676         in the MouseUp handler of the listbox and move the return handling
10677         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
10678
10679 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
10680
10681         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
10682
10683 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
10684
10685         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
10686           working in 1.2.x anymore. So, updated.
10687
10688 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
10689
10690         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
10691         NumberGroupSeparator of current culture instead of assuming en-US.
10692         Fixed bug #79967.
10693
10694 2006-11-17  Mike Kestner  <mkestner@novell.com>
10695
10696         * Control.cs: Add the concept of implicit bounds setting so that
10697         dock/undock round trips preserve explicitly set size/locations.
10698         Fixes #79313.
10699
10700 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
10701
10702         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
10703           can't handle those filters. (Fixes bug #79961)
10704
10705 2006-11-17  Chris Toshok  <toshok@ximian.com>
10706
10707         [ fixes the exit/crashes associated with #79835.  it's clearly
10708         suboptimal though, we need to figure out a better way to solve
10709         this. ]
10710         
10711         * PrintPreviewControl.cs: deal with the new invalid printer
10712         exceptions.
10713
10714         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
10715         and return false (so CommonDialog.ShowDialog doesn't actually show
10716         the form.)
10717
10718         * PrintDialog.cs: enable/disable the Ok button depending on
10719         whether or not the printer is valid.
10720
10721         * CommonDialog.cs (ShowDialog): only actually show the form if
10722         RunDialog returns true.
10723
10724 2006-11-17  Jackson Harper  <jackson@ximian.com>
10725
10726         * TextControl.cs: When soft splitting a line, mark it as a soft
10727         split line. Also carry over the current line break to the next
10728         line.
10729
10730 2006-11-17  Chris Toshok  <toshok@ximian.com>
10731
10732         * XplatUIX11.cs: when scrolling a window with an invalid area, we
10733         only want to shift the part of the invalid area that overlaps the
10734         area we're scrolling.  we also don't want to clear the invalid
10735         area unless the invalid area was entirely contained within the
10736         scrolling area.
10737
10738 2006-11-16  Chris Toshok  <toshok@ximian.com>
10739
10740         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
10741         also make sure to free the memory returned by XGetWindowProperty
10742         in GetText().
10743
10744         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
10745
10746 2006-11-16  Chris Toshok  <toshok@ximian.com>
10747
10748         * XplatUI.cs: add a new super secret way to get at the totally
10749         unsupported X11 backend.
10750
10751 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
10752
10753         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
10754
10755 2006-11-16  Jackson Harper  <jackson@ximian.com>
10756
10757         * TreeView.cs: Allow more explicit setting of top node position
10758         for scrollbars. Slower algo, but more accurate.
10759         - CollapseAll should maintain the current top node.
10760         * TextBoxBase.cs: When positioning the caret, use the line, pos
10761         method, since the x, y method does not grab the correct tag, and
10762         the caret height never gets set correctly. (Maybe I should just do
10763         away with the caret having its own height, and always use the
10764         carets current tag for height).
10765
10766 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
10767
10768         [Fixes 79778, 79923]
10769
10770         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
10771         Parent to the FosterParent instead.
10772
10773 2006-11-16  Jackson Harper  <jackson@ximian.com>
10774
10775         * TreeView.cs: Need to recalc the topnode when we expand or
10776         collapse. The scrolling methods can't handle this on their own,
10777         since they use differences between the last scroll position, and
10778         those difference get completely messed up since we are expanding
10779         nodes.  This problem should probably be fixed in the scrolling
10780         methods, so they can figure out exactly where they are, but this
10781         will slow things down a little.
10782         * ThemeWin32Classic.cs: Special case for groupboxes with empty
10783         strings, makes nunit-gui look a lot nicer.
10784
10785 2006-11-16  Chris Toshok  <toshok@ximian.com>
10786
10787         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
10788         the broken multithreaded event handling we have in here.  File
10789         this entry under "Why we should move to the new X11 backend".
10790
10791         Any thread can make it into UpdateMessageQueue, which gets events
10792         from the X socket - some of which could belong to hwnds being
10793         managed by a different thread.  We can also have multiple threads
10794         in UpdateMessageQueue at the same time, with each one reading from
10795         the X socket.  This leads to many problems, with the following
10796         solutions:
10797
10798         We can't use hwnd.Queue.Enqueue anywhere in here and must use
10799         EnqueueLocked.
10800
10801         The MotionNotify compression we do can't work across threads
10802         (without locking the entire queue, perhaps) since we call
10803         hwnd.Queue.Peek, so we just punt and don't compress motion events
10804         unless the owning thread is the one which got the X event.
10805
10806         ConfigureNotify is another fun one, since it modifies the hwnd's
10807         bounds and then enqueues the event.  We add a lock to Hwnd which
10808         is held when setting configure_pending to true (and enqueuing the
10809         event).
10810
10811         There is a race wrt the wake socket.  we need to make sure that
10812         only 1 thread is waiting on that socket, or else a thread could
10813         sleep waiting for data that never comes.  It's difficult (but not
10814         impossible) to make happen, because it seems to require something
10815         like the following:
10816
10817             1. Thread 1 polls on wake_receive
10818         
10819             2. poll returns saying there's data to be read on
10820                wake_receive.
10821         
10822             3. Thread 2 polls on wake_receive and immediately returns
10823                saying there's data to be read.
10824
10825             4. Thread 2 reads the wakeup byte from wake_receive
10826
10827             5. Thread 1 attempts to read the wakeup byte from
10828                wake_receive.
10829
10830             6. Thread 2 exits (due to a form closing, perhaps).
10831
10832             7. Thread 1 blocks forever.
10833         
10834         Fun, eh?
10835
10836         Fixing the Expose handling isn't done yet, and the races inherent
10837         in that piece of code are responsible for the drawing mistakes you
10838         see when generating expose events in a MT app (like NPlot).  This
10839         one is the likely to be the hardest to bandaid, and it doesn't
10840         appear to cause anything but drawing problems.  The other issues
10841         caused apps to exit or hang.
10842
10843         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
10844         called from a different thread than the one that should be calling
10845         these functions.
10846
10847         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
10848
10849 2006-11-15  Chris Toshok  <toshok@ximian.com>
10850
10851         * Application.cs: null out the context's MainForm when we exit
10852         RunLoop.  Fixes a newly checked in unit test as well as the last
10853         ODE from bug #79933.
10854
10855 2006-11-15  Chris Toshok  <toshok@ximian.com>
10856
10857         * Form.cs (set_Owner): allow a null value so we can clear the
10858         form's owner.
10859         (Dispose): set all our owned_form's Owner properties to null, and
10860         clear the owned_forms collection.
10861         (WM_CLOSE): clean up this a little bit.. still not right though.
10862
10863         * ApplicationContext.cs: OnMainFormClosed should only call
10864         ExitThreadCore if the main form isn't recreating.  Fixes unit
10865         test.
10866
10867 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
10868
10869         [Fixes 78346]
10870
10871         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
10872
10873 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
10874
10875         [Fixes 79433]
10876
10877         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
10878         keep popup window types from stealing focus from the main form
10879         on Windows.
10880
10881         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
10882
10883         * MenuAPI.cs: Set above flag to true.
10884
10885 2006-11-15  Chris Toshok  <toshok@ximian.com>
10886
10887         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
10888         the button being released is not in wParam.
10889
10890 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
10891
10892         * Form.cs: Add the released button to MouseEventArgs.Button
10893         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
10894         on Win32.
10895
10896 2006-11-15  Chris Toshok  <toshok@ximian.com>
10897
10898         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
10899         GetText().  untested because it's unused in our implementation.
10900         Control.Text always caches the text, even if
10901         ControlStyles.CacheText is not set.
10902
10903         fixes bug #79939.
10904
10905 2006-11-15  Chris Toshok  <toshok@ximian.com>
10906
10907         [ fixes #79933 ]
10908         
10909         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
10910         message.  no hiding, no disposing.
10911
10912         in the WM_CLOSE handler, hide the form if it's modal.
10913
10914 2006-11-15  Chris Toshok  <toshok@ximian.com>
10915
10916         * XplatUIX11.cs: use AddExpose instead of sending a message.
10917         fixes textbox border drawing.
10918
10919 2006-11-15  Chris Toshok  <toshok@ximian.com>
10920
10921         * PropertyGridView.cs: keep from crashing on mouse move/down when
10922         the property grid is empty.
10923
10924 2006-11-14  Jackson Harper  <jackson@ximian.com>
10925
10926         * TextControl.cs: Make PageUp and PageDown more like the MS
10927         versions.
10928         * TextBoxBase.cs: When we set the text property position the
10929         cursor at the beginning of the document.
10930
10931 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10932
10933         * Form.cs: if a mdi child's WindowState has changed
10934         before it's creation, it would display wrong control
10935         buttons.
10936         
10937 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
10938
10939         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
10940           (Fixes bug #79927)
10941
10942 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
10943
10944         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
10945         the window gets to paint its borders even if the window is
10946         getting smaller.
10947         
10948         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
10949         otherwise the old control buttons would still be painted 
10950         if the window gets bigger.
10951         
10952         * PaintEventArgs.cs: add an internal method so that the clip 
10953         rectangle can be changed.
10954         
10955 2006-11-13  Chris Toshok  <toshok@ximian.com>
10956
10957         [ fixes bug #79745 ]
10958         
10959         * NotifyIcon.cs: lots of cleanup.
10960
10961         * X11Structs.cs: add an enum for XEMBED messages.
10962
10963         * XplatUIX11.cs: reindent one of the giant switch statements, it
10964         was taking up an additional tab stop, and this file is already way
10965         too wide for my laptop's screen.
10966
10967         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
10968         we get it, resize the hwnd to the WMNormalHints max_width/height.
10969
10970 2006-11-13  Jackson Harper  <jackson@ximian.com>
10971
10972         * TextBoxBase.cs: Compute the value changes for the mouse wheel
10973         teh simple way.
10974
10975 2006-11-13  Chris Toshok  <toshok@ximian.com>
10976
10977         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
10978         #79898.  force a reference to the Region to stick around so the
10979         unmanaged object isn't collected (rendering our handle in the MSG
10980         stale).
10981
10982 2006-11-13  Chris Toshok  <toshok@ximian.com>
10983
10984         * XplatUIX11.cs: fix #79917 for window managers which support
10985
10986         using XStoreName on the raw utf8, and we need to convert to
10987         COMPOUND_TEXT if it's non-latin1.
10988
10989 2006-11-13  Chris Toshok  <toshok@ximian.com>
10990
10991         * Form.cs (set_DialogResult): we need to set closing to false if
10992         we're setting our result to None.  fixes bug #79908.
10993
10994 2006-11-13  Jackson Harper  <jackson@ximian.com>
10995
10996         * TextControl.cs: When formatting text, compute the adjusted tag
10997         lengths correctly, using FindTag for the end tag instead of trying
10998         to figure it out outselves.
10999         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
11000         the item, ItemHeight doesn't work, because trees with large
11001         imagelists use those for their height
11002         * TreeView.cs: ActualItemHeight factors in the image height
11003         - compute left edge of checkboxes correctly
11004         - when expanding/collapsing move the bottom down one pixel, so we
11005         aren't moving part of the node
11006
11007 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11008
11009         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
11010         stack in PaintEventStart so that it won't get disposed by the gc
11011         before reaching PaintEventEnd.
11012
11013 2006-11-13  Jackson Harper  <jackson@ximian.com>
11014
11015         * TextBoxBase.cs: Don't select the word if we are on a line with
11016         no text.
11017         - We don't need to position the caret on mouse up, since the mouse
11018         move handler should be doing this
11019         - When double clicking a blank line, the caret is advanced to the
11020         next line.
11021
11022 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
11023
11024         * TreeNodeCollection.cs: Avoid duplicating indexer code.
11025
11026 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
11027
11028         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
11029         Fixes part of bug #79910.
11030
11031 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
11032
11033         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
11034           (bug #79903). Some minor string updates to match ms.
11035
11036 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
11037
11038         * FileDialog.cs: Don't add an extension if the filename
11039           already ends with that extension.
11040
11041 2006-11-10  Jackson Harper  <jackson@ximian.com>
11042
11043         * TreeView.cs: Use the currently highlighted node for the
11044         BeforeSelect event.
11045         * TextBoxBase.cs: There is no need to expand selection on
11046         MouseMove.
11047         - CanUndo means 'is there any undo operations', not 'is undo
11048         allowed on this textcontrol. Fixed ClearUndo unit test.
11049
11050 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
11051
11052         * Button.cs: only perform click when button is Selectable (so as 
11053         not to activate default buttons when they're disabled)
11054         
11055         * Control.cs: Rewrite of the SelectNextControl and related 
11056         methods. HandleClick now selects next control if the current one
11057         is being disabled.
11058         
11059         * Form.cs: OnActivated selects next active control only if Load 
11060         has already occurred. If Load hasn't run, there's no point in 
11061         selecting here, Load might change the state of controls.
11062         
11063         * FocusTest.cs: Tests marked as working again for these fixes
11064
11065 2006-11-10  Chris Toshok  <toshok@ximian.com>
11066
11067         * XplatUIX11.cs: a couple of fixes.
11068
11069         - use XInternAtoms with almost all the atoms we need to register,
11070         instead of many, many calls to XInternAtom.  should help a bit on
11071         startup time, at the expense of making the code look a little
11072         worse.
11073
11074         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
11075         isn't reparented (which seems to be a clue that we're running fon
11076         compiz) and they have an Owner form.  This fixes the tool windows
11077         in paint.net when running under compiz.
11078
11079         - when setting the opacity of a window, support both the case
11080         where the window has been reparented and also when it hasn't been.
11081         Since compiz/beryl doesn't seem to reparent windows, and these are
11082         the only window managers which support translucency, I'm not sure
11083         why we need the hwnd.reparented case at all.. but leave it in.
11084         now we get translucent windows in paint.net under compiz/beryl.
11085
11086 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
11087
11088         * FileDialog.cs: Always return the value for FilterIndex that
11089           was set. Internally convert it to values that make sense.
11090
11091 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
11092         
11093         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
11094
11095 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
11096
11097         * Toolbar.cs: Change default value of DropDownArrows to true, the 
11098         signature still using false to make it compatible with MS but the 
11099         initial value is true. Fixes #79855.
11100
11101 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
11102
11103         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
11104           only available on Linux.
11105
11106 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
11107
11108         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
11109         reduce number of calls to redraw method during toolbar creation.
11110
11111 2006-11-09  Mike Kestner  <mkestner@novell.com>
11112
11113         * ListView.cs : raise SelectedIndexChanged when an item is selected
11114         programmatically via the Item.Selected property.  Gert's nice 
11115         ListViewSelectedIndexChanged test fixture now runs clean.
11116
11117 2006-11-09  Mike Kestner  <mkestner@novell.com>
11118
11119         * ListView.cs : raise SelectedIndexChanged when a selected item is
11120         removed from the item collection using Remove or RemoveAt.
11121
11122 2006-11-09  Mike Kestner  <mkestner@novell.com>
11123
11124         * ListView.cs : raise SelectedIndexChanged once per selected item
11125         for compat with MS.  Fixes #79849+.
11126
11127 2006-11-09  Chris Toshok  <toshok@ximian.com>
11128
11129         * TabControl.cs: initialize row_count to 0, and set it to 1 when
11130         we need to (if we have any tab pages).  Fixes unit test.
11131
11132 2006-11-09  Chris Toshok  <toshok@ximian.com>
11133
11134         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
11135         width is 0, not 3.  Fixes a unit test.
11136
11137 2006-11-09  Mike Kestner  <mkestner@novell.com>
11138
11139         * ListView.cs : use Implicit scrollbars so that focus isn't 
11140         stolen from the listview when they are clicked. Fixes #79850.
11141
11142 2006-11-09  Chris Toshok  <toshok@ximian.com>
11143
11144         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
11145         have a root item.  Fixes #79879.
11146
11147 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
11148
11149         * FileDialog.cs:
11150           - Fix ToString ()
11151           - An ArgumentException is now thrown if a wrong filter
11152             is applied (matches ms). The previous filter doesn't change
11153             anymore if an exception is thrown.
11154           - Changing the FileName property also affects FileNames
11155         * ColorDialog.cs: The length of the CustomColors array is always
11156           16. It doesn't matter if we use a smaller array or null to update
11157           or change the custom colors property.
11158         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
11159           for RootFolder if we get a undefined value.
11160
11161 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11162
11163         * StatusBarPanel.cs: 
11164         - Width is set to MinWidth if Width is smaller than
11165         MinWidth. Fixes #79842.
11166         - MinWidth now always overrides Width (MSDN says MinWidth
11167         is set to Width when AutoSize = None, but they do not 
11168         behave like that).
11169         - Style has now the the correct default value.
11170         
11171 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11172  
11173         * TrackBar.cs: 
11174         - The control is completely invalidated on 
11175         Got/LostFocus to draw the focus rectangle correctly.
11176         - When AutoSize then height is always 45 (width for 
11177         vertical controls).
11178         
11179         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
11180         on the mouse when moved and it doesn't move when grabbed
11181         until the mouse moves as well. Also fixed some wrong 
11182         calculations when clicking on the thumb (control thought
11183         click was outside of thumb and didn't grab it).
11184         Fixes some of the issues in #79718.
11185
11186 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
11187
11188         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
11189
11190 2006-11-08  Chris Toshok  <toshok@ximian.com>
11191
11192         * PropertyGridView.cs: only call ToggleValue if the item is not
11193         readonly.
11194
11195 2006-11-08  Jackson Harper  <jackson@ximian.com>
11196
11197         * TextBoxBase.cs: The RichTextBox and textbox have very different
11198         word selection methods.  Implement the textbox's simple word
11199         selection here, and let the RichTextBox override and provide it's
11200         own.
11201         - Don't do extra selection on mouseup
11202         * RichTextBox.cs: Use the documents word selection algorithm, I
11203         think ideally, this function will be pulled into the
11204         RichTextBox.cs code someday.
11205
11206 2006-11-08  Chris Toshok  <toshok@ximian.com>
11207
11208         * RootGridEntry.cs: new class to represent GridItemType.Root.
11209
11210         * CategoryGridEntry.cs: reformat, and add boilerplate.
11211         
11212         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
11213         returns the UI parent anyway, and we need special handling to
11214         implement the GetTarget method in the face of it.  Also, implement
11215         Select().
11216
11217         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
11218         a root grid item, and use that instead of PropertyGrid.grid_items.
11219         Also, make use of TypeConverters (and add limitted support for
11220         ICustomTypeDescriptors) when initially populating the grid.
11221         Arrays now show up more or less properly.
11222
11223 2006-11-08  Chris Toshok  <toshok@ximian.com>
11224
11225         * Application.cs: set the modal dialog to non modal after we close
11226         it.  Fixes bug #79866.
11227
11228 2006-11-08  Jackson Harper  <jackson@ximian.com>
11229
11230         * TextControl.cs: When combining lines carry over the line end
11231         style from the end line.
11232         - Invalidate the selected area when setting it, if it is visible.
11233         * TextBoxBase.cs: Only rich text box can do full line selects.
11234         - Make sure to set the cursor position when there is a click,
11235         otherwise two clicks in separate areas could cause a large chunk
11236         to be selected.
11237
11238 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11239
11240         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
11241         Fixes #79863.
11242
11243 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11244
11245         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
11246         time. Remove tooltips when ToolButton click events.  Fixes #79856.
11247
11248 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11249
11250         * MenuAPI.cs: Ignore right click for menu actions and fixes
11251         menu border when clicked.  Fixes #79846.
11252
11253 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11254
11255         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
11256         MouseState after create wParam for message, this fixes mouse button 
11257         equal none in mouse up events.
11258         
11259 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
11260
11261         * Control.cs : Focus() now calls Select to set the Container's
11262         Active Control and to give it focus. To avoid infinite recursion
11263         (because ActiveControl also calls Focus at one point), a check 
11264         is made in Focus with the help of a new internal variable
11265         is_focusing.
11266
11267 2006-11-07  Mike Kestner  <mkestner@novell.com>
11268
11269         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
11270         if there's a selection.  Fixes #79849.
11271
11272 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
11273
11274         * PropertyGrid.cs: Avoid fixed height of help description label.
11275         Fixes part of bug #79829.
11276
11277 2006-11-07  Chris Toshok  <toshok@ximian.com>
11278
11279         * XplatUIX11.cs: fix #79790 again, by using the
11280         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
11281
11282 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11283
11284         * ToolBar.cs: Fix left click checking.
11285
11286 2006-11-07  Chris Toshok  <toshok@ximian.com>
11287
11288         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
11289
11290 2006-11-07  Chris Toshok  <toshok@ximian.com>
11291
11292         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
11293         PropertyManager unit tests.
11294
11295         * PropertyManager.cs: make property_name internal.
11296
11297 2006-11-07  Chris Toshok  <toshok@ximian.com>
11298
11299         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
11300         pass a unit test.  Also, don't set image_index to anything in
11301         response to setting the ImageList property.
11302
11303 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11304
11305         * ToolBar.cs: Ignore click events when mouse button is not a
11306         left button, only accepts other button for dropdown menus.  
11307         Fixes #79854.
11308
11309 2006-11-07  Chris Toshok  <toshok@ximian.com>
11310
11311         * DataGrid.cs: make the back and parent row buttons a little less
11312         ugly.
11313
11314 2006-11-07  Jackson Harper  <jackson@ximian.com>
11315
11316         * TextBoxBase.cs: When converting to Text don't put line breaks in
11317         for soft line breaks.
11318         * TextControl.cs: There is an initial "fake" line in the document,
11319         this is now a soft break line, so that an extra line feed doesn't
11320         get added to the end of documents.
11321
11322 2006-11-07  Chris Toshok  <toshok@ximian.com>
11323
11324         [ fix bug #79778 ]
11325         
11326         * CurrencyManager.cs: if the list is readonly, don't bother
11327         checking if IBindingList.AllowNew is true.
11328
11329         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
11330         for non-DataRowView datasources..  or rather, make it not crash.
11331         (DataGridPaintRelationRow): make sure we limit the row painting to
11332         the area not covered by the row header, and make our cell width at
11333         least large enough to cover the relation area.  This allows grids
11334         that have relations but no rows to render correctly.
11335         (DataGridPaintRowContents): same type of changes here.
11336         (SetDataSource): move back to always calling
11337         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
11338         navigating back through relations.
11339         (HitTest): handle the case where we have no cells but have
11340         relations.  Right now we generate a hit in cell 0 of whatever the
11341         row is, not sure if this is strictly correct, but it works for our
11342         purposes.
11343         
11344         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
11345         bother doing anything.
11346
11347 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
11348
11349         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
11350         early version of StatusStrip.  Not responsible for eaten
11351         application or firstborn children.
11352
11353 2006-11-06  Chris Toshok  <toshok@ximian.com>
11354
11355         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
11356         call GetTabRect with a -1 index.  Fixes #79847.
11357
11358 2006-11-06  Jackson Harper  <jackson@ximian.com>
11359
11360         * TreeNodeCollection.cs: Update scrollbars after clearing.
11361
11362 2006-11-06  Chris Toshok  <toshok@ximian.com>
11363
11364         * NumericUpDown.cs: fix the ToString method for some unit test
11365         love.
11366
11367 2006-11-06  Chris Toshok  <toshok@ximian.com>
11368
11369         * PropertyGrid.cs:
11370         - set the initial SelectedGridItem if we can.
11371
11372         - Exclude non-mergable properties only if we're merging > 1
11373         object.  Merging 1 object isn't really merging, obviously.
11374
11375         - Handle PropertySort.NoSort just like Alphabetical, which is
11376         wrong of course, but at least gets things on the screen.
11377         
11378         * PropertyGridView.cs:
11379         - Add method "FindFirstItem" which finds the first property grid
11380         item, so we can select it by default.
11381
11382         - make use of GridEntry.CanResetValue.
11383
11384         - Don't call RedrawBelowItemOnExpansion here anymore, the
11385         individual GridEntry's will do that.
11386
11387         - Remove the ITypeDescriptorContextImpl internal class.
11388         
11389         * GridEntry.cs:
11390         - this class needs to implement ITypeDescriptorContext, as it's
11391         what MS's PropertyDescriptorGridEntry does, which means we can
11392         remove the ITypeDescriptorContextImpl internal class from
11393         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
11394
11395         - keep a reference to our PropertyGridView, and move the call to
11396         RedrawBelowItemOnExpansion here from PGV.  This means
11397         programmaticly setting Expanded actually does something visible.
11398
11399         - add a CanResetValue() function which takes into account our
11400         possibly multiple "selected_objects" in the merged case.  Shifting
11401         PropertyGridView to use this method fixes another unreported
11402         crasher found running the test for #79829.
11403
11404         - when Top or Bounds is updated, make sure the PropertyGridTextBox
11405         is updated to reflect this.
11406
11407         * CategoryGridEntry.cs: the ctor takes the PGV now.
11408         
11409 2006-11-06  Jackson Harper  <jackson@ximian.com>
11410
11411         * TextControl.cs: These are 1 based.
11412         * TextBoxBase.cs: When setting the selected text, don't change the
11413         selected text tags, this is done by ReplaceText, just position the
11414         cursor at the end of the new text.
11415
11416 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
11417
11418         * ListView.cs: Allow label edit only when, when LabelEdit is
11419           set to true.
11420
11421 2006-11-06  Jackson Harper  <jackson@ximian.com>
11422
11423         * TextControl.cs: If a suitable wrapping position isn't found,
11424         just wrap right in the middle of a word.
11425
11426 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
11427
11428         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
11429           bug #79820.
11430
11431 2006-11-06  Jackson Harper  <jackson@ximian.com>
11432
11433         * TreeView.cs: Can't use the VisibleCount property when setting
11434         scrollbar heights, because this doesn't take into account whether
11435         or not the horz scrollbar just came visible.
11436
11437 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
11438
11439         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
11440         activated.  Fixes #79369, #79832.
11441
11442 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
11443
11444         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
11445           had to remove support for links that point to a directory. FileInfo
11446           returns no usefull information (means, the directory they point to)
11447           for such links. Replaced some empty string ("") with String.Empty.
11448
11449 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
11450
11451         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
11452         NullReferenceException when attempting to remove node that is not in
11453         collection. Throw NullReferenceException when null is passed to 
11454         Remove. Allow first element of the collection to be removed. Fixes
11455         bug #79831.  In GetEnumerator ().Current return null if positioned 
11456         before the first element of the collection. In GetEnumerator ().Reset,
11457         position before first element of the collection.
11458
11459 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
11460
11461         * PropertyGrid.cs: To match MS, remove default title and description
11462         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
11463         buttons.
11464
11465 2006-11-04  Chris Toshok  <toshok@ximian.com>
11466
11467         * Theme.cs: add a Clamp method, just for kicks.
11468
11469         * ThemeWin32Classic.cs: clamp all color components to [0..255].
11470
11471 2006-11-04  Chris Toshok  <toshok@ximian.com>
11472
11473         * Form.cs: if the form isn't visible, Close() does nothing.
11474
11475 2006-11-03  Chris Toshok  <toshok@ximian.com>
11476
11477         * Form.cs (Close): if the form is modal, don't Dispose of it, only
11478         Hide it.
11479         (WndProc): don't Dispose after handling the WM_CLOSE message.
11480
11481         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
11482         them as such, instead of using casts from Control to Form.  Also,
11483         don't Dispose of the modal dialog when we fall out of the loop -
11484         Close() it instead.
11485
11486         fixes bug #79813.
11487
11488 2006-11-03  Chris Toshok  <toshok@ximian.com>
11489
11490         * Control.cs (Dispose): only go through the dispose thing if we're
11491         @disposing, and we haven't already been disposed.  Fixes bug
11492         #79814.
11493
11494         * Form.cs: no reason to call "base.Dispose()" here instead of
11495         "Dispose()".
11496
11497 2006-11-03  Mike Kestner  <mkestner@novell.com>
11498
11499         * ComboBox.cs : use ToString instead of casts in AddItem for
11500         sorting functionality.  Fixes #79812.
11501
11502 2006-11-03  Chris Toshok  <toshok@ximian.com>
11503
11504         * Application.cs: pave the way for actually using the thread
11505         exception dialog.  it's ifdefed out at the moment.
11506
11507 2006-11-03  Chris Toshok  <toshok@ximian.com>
11508
11509         * ThreadExceptionDialog.cs: until we get a better layout, actually
11510         hide the details textbox and label when we shouldn't see them.
11511
11512 2006-11-03  Jackson Harper  <jackson@ximian.com>
11513
11514         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
11515         multiline textboxes anymore.  This method also determines the
11516         width/height of a textboxes canvas area.
11517         - Sorta a revert of the last patch.  For multiline just position
11518         the controls, then bail.  This way the scrollbar width won't be
11519         altered.
11520
11521 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
11522
11523         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
11524         it dont need.  Fixes #79537.
11525
11526 2006-11-02  Jackson Harper  <jackson@ximian.com>
11527
11528         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
11529         send the status after firing the DndOver event.
11530
11531 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11532
11533         * TrackBar.cs: Now orientation only switches height / width if
11534         the control's handle is created (Win32 does it like this). Also 
11535         fixed a typo in ToString() for a test to pass, changed the 
11536         exception thrown in set_LargeChange and set_SmallChange to 
11537         match Win32 behaviour, and added TrackBar tests to the unit 
11538         tests.
11539
11540 2006-11-02  Chris Toshok  <toshok@ximian.com>
11541
11542         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
11543         not _NET_WM_STATE_NO_TASKBAR.
11544
11545 2006-11-02  Jackson Harper  <jackson@ximian.com>
11546
11547         * TextControl.cs: Increment count by one, since in the update view
11548         count - 1 is used.
11549
11550 2006-11-02  Jackson Harper  <jackson@ximian.com>
11551
11552         * TextBoxBase.cs: Use client rectangle not bounds for checking if
11553         the mouse is in the client rectangle (duh).
11554
11555 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11556         
11557         * TrackBar.cs: Fixed trackbar jumping around when clicking
11558         on it - the trackbar was not detecting correctly at which
11559         side of the thumb the click was done. (fixes #79718)
11560
11561 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
11562
11563         * ListBox.cs: scroll visible area when change SelectedIndex to
11564         a non visible area.  Fixes #79481.
11565
11566 2006-11-01  Jackson Harper  <jackson@ximian.com>
11567
11568         * TextControl.cs: When replacing the selection move the selection
11569         start/end/anchor to the end of the new text.
11570
11571 2006-11-01  Jackson Harper  <jackson@ximian.com>
11572
11573         * XplatUIWin32.cs: When setting the parent change the controls
11574         visibility to it's visibility flag, not to it's old parents
11575         visibility (.Visible walks the parent chain).
11576
11577 2006-11-01  Chris Toshok  <toshok@ximian.com>
11578
11579         * XplatUIX11.cs: revert the #79790 fix, as the simple.
11580         XSetTransientForHint fix breaks paint .net's tool windows.  more
11581         work needed for that one.
11582
11583 2006-11-01  Chris Toshok  <toshok@ximian.com>
11584
11585         * ScrollBar.cs: throw ArgumentException instead of Exception in
11586         LargeChange/SmallChange setters.  fixes unit tests.
11587
11588 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
11589
11590         * ContainerControl.cs: reverted rev.67183 (which was itself
11591         a reversion of rev.66853... eh).
11592         
11593         * Control.cs: Fixes Reflector hang by changing Focus() call
11594         to what it was before rev.66643 (calling Select() here sets 
11595         ActiveControl, which in some situations calls back Focus and 
11596         eventually does a stack overflow). Temp fix.    
11597         Changes to GetNextControl() to not look for children to select when
11598         parent cannot be selectable (so it looks for siblings instead)  
11599         
11600 2006-10-31  Mike Kestner  <mkestner@novell.com>
11601
11602         * CheckedListBox.cs : off by one error in returned index from
11603         ObjectCollection.Add.  Fixes #79758.
11604
11605 2006-10-31  Chris Toshok  <toshok@ximian.com>
11606
11607         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
11608         calls for the textbox/spinner, to keep from recursing to the point
11609         where we crash.  Fixes #79760.
11610
11611 2006-10-31  Chris Toshok  <toshok@ximian.com>
11612
11613         * ListControl.cs (set_SelectedValue): don't throw exceptions on
11614         null/"" value, just return.  matches ms's behavior and fixes some
11615         failing tests.
11616
11617 2006-10-31  Chris Toshok  <toshok@ximian.com>
11618
11619         * Control.cs (set_Capture): make a logic a little easier to
11620         follow.
11621
11622         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
11623         if it's being destroyed.  A necessary fix surely, but a bandaid
11624         also, to fix the stuck capture problem in bug #78413.
11625
11626 2006-10-31  Chris Toshok  <toshok@ximian.com>
11627
11628         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
11629         convention of clearing hwnd.ClientRect when we set the
11630         width/height (so it'll be recalculated by Hwnd).
11631
11632 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
11633
11634         * ContainerControl.cs: reversed Contains check from
11635         ActiveControl due to hanging problems. This fix
11636         partly regresses #79667 (button does not have
11637         initial focus), so this might be a symptom for 
11638         a larger parenting problem (set_ActiveControl
11639         is being called but the child control does
11640         not have the parent set yet?)   
11641         
11642 2006-10-31  Mike Kestner  <mkestner@novell.com>
11643
11644         * MenuAPI.cs : fix keynav when menu is click activated.
11645
11646 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
11647
11648         * ToolStrip*: Version 0.2.
11649
11650         * MenuStrip.cs: Version 0.1.
11651
11652         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
11653
11654 2006-10-30  Chris Toshok  <toshok@ximian.com>
11655
11656         [ fixes the oversized notify icon issue in bug #79745 ]
11657         
11658         * NotifyIcon.cs: scale the icon down to the size we're given by
11659         the XplatUI layer (this would be faster if we did it once instead
11660         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
11661         since it's never invoked.
11662
11663         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
11664         pixels high by default, so let's hardcode our systray icon to that
11665         size.  The SYSTEM_TRAY protocol should really have a way for
11666         client apps to query for the correct icon size.. but oh well.  A
11667         couple of patches to deal with the screwy client_window ==
11668         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
11669         instance, and also make sure we don't XSelectInput twice).
11670
11671 2006-10-30  Chris Toshok  <toshok@ximian.com>
11672
11673         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
11674         recreating forms.  Control recreation is the bane of my existence.
11675         Fix it in a way that keeps everyone happy.
11676
11677 2006-10-30  Chris Toshok  <toshok@ximian.com>
11678
11679         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
11680         just non-CHILD ones.  otherwise sometimes scrollbars end up with
11681         client_windows not being resized to the proper size (ReportBuilder
11682         shows this extremely well).
11683
11684 2006-10-30  Chris Toshok  <toshok@ximian.com>
11685
11686         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
11687         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
11688         showing up in the gnome taskbar.  Fixes bug #79790.
11689
11690 2006-10-30  Chris Toshok  <toshok@ximian.com>
11691
11692         * ApplicationContext.cs: guard against a NRE.
11693
11694         * Application.cs: null out the old MainForm for the context, so we
11695         don't try to use it again once it's disposed.  Fixes bug #79783.
11696
11697 2006-10-30  Chris Toshok  <toshok@ximian.com>
11698
11699         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
11700         BindingContext, set the data source directly, otherwise do the
11701         lazy approach - the actual ListManager will be created when we get
11702         a BindingContext. Fixes bug #79700.
11703
11704 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
11705
11706         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
11707           XplatUIX11.cs: Remove old 2 parameter SetVisible.
11708
11709         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
11710
11711 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
11712
11713         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
11714         of SetVisible that allows a window to be shown, but not activated.
11715         This is needed on Windows for MenuStrip, and can probably be used
11716         with MainMenu and ComboBox to fix the focus stealing issues on
11717         Windows.
11718
11719         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
11720
11721 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
11722
11723         * PictureBox.cs: Fix the output of the ToString method.
11724
11725 2006-10-29  Chris Toshok  <toshok@ximian.com>
11726
11727         * Control.cs (get_TopLevelControl): fix bug #79781.
11728
11729 2006-10-29  Chris Toshok  <toshok@ximian.com>
11730
11731         * ListControl.cs (set_DataSource): throw Exception here, not
11732         ArgumentException, to match MS behavior.
11733
11734 2006-10-29  Chris Toshok  <toshok@ximian.com>
11735
11736         * Form.cs: remove the try-catch's around calls to GetWindowState.
11737         We can just check the return value.
11738
11739         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
11740         Instead return -1.
11741
11742         * XplatUI.cs: Add note about additional return value for
11743         GetWindowState.
11744
11745 2006-10-29  Chris Toshok  <toshok@ximian.com>
11746
11747         * Control.cs (CreateHandle): when we create our handle, we also
11748         create the handles of our child controls.  Fixes one of the
11749         Control unit tests (CH11).
11750
11751 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
11752
11753         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
11754
11755 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
11756
11757         * ThemeClearlooks.cs: A little speedup.
11758
11759 2006-10-27  Chris Toshok  <toshok@ximian.com>
11760
11761         * Control.cs: implement Control.FromChildHandle in a way that
11762         matches the docs (and fixes the failed test.)
11763
11764 2006-10-27  Chris Toshok  <toshok@ximian.com>
11765
11766         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
11767         comments).
11768
11769         * DataGrid.cs: implement ResetForeColor such that the tests
11770         succeed.
11771         
11772 2006-10-27  Chris Toshok  <toshok@ximian.com>
11773
11774         * ToolBarButton.cs: setting text/tooltiptext to null results in it
11775         being set to "".  Fixes bug #79759.
11776
11777 2006-10-27  Jackson Harper  <jackson@ximian.com>
11778
11779         * TextControl.cs: We need to clear the entire selection area when
11780         setting the start, otherwise multiline selections are still
11781         visible.
11782
11783 2006-10-26  Chris Toshok  <toshok@ximian.com>
11784
11785         * PropertyGridView.cs: 
11786
11787         - ifdef all the code specific to the double
11788         buffer case, and provide some alternatives in the non-doublebuffer
11789         code, which makes heavy use of XplatUI.ScrollWindow to move things
11790         around without having to invalidate (and cause flicker).  There
11791         are still some drawing problems in the non-doublebuffered case, so
11792         DOUBLEBUFFER is defined by default.
11793
11794         - Fix the way dropdowns are handled.  now we explicitly watch for
11795         the events which might cause the dropdown to close, and break out
11796         of the nested event loop there.  This gets rid of all Capture
11797         code, at the expense of the Msg special casing.  Seems to work,
11798         though, and fixes bug #79743.
11799
11800 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
11801         * Control.cs: SetIsRecreating now recreates implicitly added
11802         child controls as well. Finally fixes #79629. The flag passed to 
11803         SetIsRecreating has also been removed since it wasn't used.
11804         
11805 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11806
11807         * PageSetupDialog.cs: Clean some code, fix some bits, 
11808         add some checks, and add a printer sub-dialog.
11809
11810 2006-10-26  Chris Toshok  <toshok@ximian.com>
11811
11812         * PropertyGrid.cs: make set_SelectedObject call
11813         set_SelectedObjects, and move the duplicate logic to the
11814         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
11815
11816         * PropertyGridView.cs: hide the textbox when we get a
11817         SelectedObjectsChanged event.
11818
11819         Fixes bug #79748.
11820
11821 2006-10-26  Chris Toshok  <toshok@ximian.com>
11822
11823         * PropertyGridView.cs: deal with the type converter not supporting
11824         GetStandardValues() or GetStandardValues() returning null, which
11825         is does in the default case.  Fixes #79742.
11826
11827 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
11828
11829         * CheckedListBox.cs: nunit no longer crashes when selecting 
11830         Project/Edit menu option
11831         
11832 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
11833
11834         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
11835         is no menu selected. fixes #79739
11836
11837 2006-10-25  Chris Toshok  <toshok@ximian.com>
11838
11839         * PropertyGridView.cs: factor out the splitter invalidation code
11840         into the SplitterPercent setter, and for kicks implement the
11841         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
11842         amount in either direction.
11843
11844 2006-10-25  Chris Toshok  <toshok@ximian.com>
11845
11846         * PropertyGridView.cs: do some cleanup of the brush used to draw
11847         text - read only fields should be grayed out.  not sure how to do
11848         this with the textbox, though.  but the textbox's should also be
11849         readonly now at least.  Also, hide/show the textbox when resizing
11850         the control.
11851         
11852         * CursorConverter.cs: use System.Reflection when getting the
11853         properties of Cursors, as TypeDescriptor.GetProperties isn't
11854         returning static properties.
11855
11856 2006-10-25  Chris Toshok  <toshok@ximian.com>
11857
11858         * PropertyGridView.cs: factor out the up/down handling, and reuse
11859         it for page up/down.  also add End/Home support.
11860
11861 2006-10-25  Chris Toshok  <toshok@ximian.com>
11862
11863         * PropertyGridView.cs:
11864
11865         - ensure the selected grid item is visible in the scrolled area,
11866         fixes bug #79572.
11867
11868         - fix Keys.Down handling when you're on the last item in the
11869         propertygrid.
11870
11871 2006-10-25  Mike Kestner  <mkestner@novell.com>
11872
11873         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
11874         clicks too.  Fixes #79725.
11875
11876 2006-10-24  Chris Toshok  <toshok@ximian.com>
11877
11878         * PropertyGrid.cs: use property.Converter instead of
11879         TypeDescriptor.GetConverter(property.PropertyType), so we catch
11880         TypeConverters declared on the property as well as on the
11881         PropertyType.  Fixes bug #79678.
11882
11883 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
11884
11885         * MimeIcon.cs, Mime.cs:
11886           Fallback to the default platform handler if no shared mime info
11887           stuff exists (fixes #79693).
11888
11889 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
11890         * ContainerControl.cs: Incorrect contains check in ActiveControl 
11891         from previous fix (duh).
11892
11893 2006-10-20  Chris Toshok  <toshok@ximian.com>
11894
11895         * PropertyGridView.cs: the dropdown should be MIN(number of items
11896         in list, 15).  Fixes #79551.
11897
11898 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
11899         Fixes #79384, #79394, #79652, #79667
11900         * Application.cs: 
11901         
11902         - Modal windows are now destroyed in the proper order for windows
11903         
11904         * ContainerControl.cs:
11905         
11906         - ActiveControl setter has more conditions on when to return:
11907                 - if we're reselecting the active control, but it actually
11908                 didn't have focus (window hidden or some such), it runs
11909                 - if the active control being selected doesn't actually 
11910                 exist in the container, it returns
11911         
11912         * Form.cs
11913         
11914         - The ShowDialog now gets the current form as the owner when
11915         invoking without parameters, and correctly activates the owner 
11916         when returning
11917         
11918         * MessageBox.cs
11919         
11920         - MessageBox now catches the Escape key to exit
11921
11922 2006-10-20  Chris Toshok  <toshok@ximian.com>
11923
11924         * PropertyGridView.cs: fix a number of issues (bug #78565, and
11925         most of bug #79676):
11926
11927         - you can navigate around the property grid with the arrow keys.
11928
11929         - the dropdown is sized properly when the pg has a vertical
11930         scrollbar.
11931
11932         - fix the indentation for subentries, and properly select the
11933         entire label rect.
11934
11935         - fix the gray bar's drawing (only draw it to the last element,
11936         not for the height of the control.  Also make sure we draw that
11937         last horizontal grid line.
11938
11939         - use the same mechanism the datagrid uses wrt the editing textbox
11940         when scrolling/resizing/etc.  Namely, we hide it first, do the
11941         operation, then show it again (if it's still visible).
11942         
11943         - aggressively remove a lot of unnecessary refreshes (and also
11944         calls to Invalidate(). call more limited variants, and only redraw
11945         what we need.)
11946         
11947         * PropertyGrid.cs:
11948
11949         - when we're populating the merged collection, fill in the UI
11950         parent with either the passed in item, or the category item we
11951         create.
11952
11953         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
11954
11955         * GridItem.cs: drop some fully qualified names.
11956         
11957         * GridEntry.cs: add a "UIParent", which is basically the parent
11958         treenode.
11959
11960         * GridItemCollection.cs: add an IndexOf method.
11961
11962 2006-10-20  Mike Kestner  <mkestner@novell.com>
11963
11964         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
11965         a working win32 NC invalidation mechanism, we can't invalidate
11966         menus.  [Fixes #79705]
11967
11968 2006-10-20  Mike Kestner  <mkestner@novell.com>
11969
11970         * ListBox.cs : don't update the VScrollbar if the list is empty,
11971         just hide it.  [Fixes #79692]
11972
11973 2006-10-20  Jackson Harper  <jackson@ximian.com>
11974
11975         * RichTextBox.cs: Handle some special chars better, and don't skip
11976         the entire group when we encounter a special char that we don't
11977         handle correctly.
11978
11979 2006-10-18  Chris Toshok  <toshok@ximian.com>
11980
11981         * PropertyGridView.cs: address a number of issues from bug #79676,
11982         mostly of the cosmetic variety.
11983
11984         - The highlight rectangle for indented items not extends all the
11985         way to the left.
11986
11987         - Indented items aren't indented so much.
11988
11989         - the dropdown is properly sized width-wise if the pg has a
11990         vertical scrollbar.
11991
11992 2006-10-18  Chris Toshok  <toshok@ximian.com>
11993
11994         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
11995         systray stuff is rather convoluted to begin with.
11996
11997         systray icons are a single window for some reason (that I haven't
11998         figured out yet), and for them, client_window == whole_window.
11999         Given the way the tests are structured elsewhere to determine
12000         which paints are pending (client vs. nc), that situation will
12001         always yield PAINT, not NCPAINT.  So, if we have a pending
12002         nc_expose and no pending expose, remove the hwnd from the paint
12003         queue, and also set nc_expose_pending to false, to keep us from
12004         blocking further expose's adding the hwnd to the paint queue.
12005
12006         phew.  like i said, a rather convoluted change.  Fixes the
12007         notifyicon repaint issues in bug #79645.
12008
12009 2006-10-18  Chris Toshok  <toshok@ximian.com>
12010
12011         * Form.cs: when getting the backcolor of the form, don't get
12012         base.BackColor, as this allows parents to influence the background
12013         color.  This breaks mdi forms.  Instead, if the background_color
12014         is empty, return the default.
12015
12016 2006-10-18  Chris Toshok  <toshok@ximian.com>
12017
12018         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
12019         to being private instead of internal static.
12020
12021         * Control.cs: remove all the stupid ParentWaitingOnRecreation
12022         crap, it wasn't working for more deeply nested controls anyway,
12023         and we already have the is_recreating flag - use that instead.
12024         Before calling DestroyHandle in RecreateHandle, recurse through
12025         the control tree setting it to true.  this returns the recreate
12026         code to much of its original simplicity, while now guaranteeing we
12027         actually recreate everything we're supposed to.  This change gets
12028         fyireporting actually showing mdi children.
12029
12030 2006-10-17  Chris Toshok  <toshok@ximian.com>
12031
12032         * Form.cs: remove some debug spew, and collapse some duplicate
12033         code at the end of SetClientSizeCore.
12034
12035         * XplatUIX11.cs: 
12036         - add some more debug spew here too wrt Destroy handling.
12037         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
12038         in Control's handling of WM_DESTROY.
12039         - Remove the handling of zombie window DestroyNotifies from the
12040         event loop - we don't need it.  Now the only DestroyNotifies we
12041         actually handle are ones generated by X.
12042         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
12043         match gtk's (functioning) handling of this. This keep metacity
12044         from leaving droppings in the form of wm borders with no window
12045         contents all over the place.
12046
12047         * Control.cs:
12048         - add a bunch of debug spew wrt control recreation.
12049         - fix a bug where we weren't tracking Visible properly on
12050         recreated hwnds.
12051         - fixed the WM_PAINT double buffer handling to support re-entrant
12052         calls (yes, i know it's gross, but it's happening to us).
12053
12054 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12055         * ThemeWin32Classic.cs: changed drawing of selected days
12056         to make them look better.
12057
12058 2006-10-16  Chris Toshok  <toshok@ximian.com>
12059
12060         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
12061         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
12062
12063         * XplatUIX11.cs: move away from using hwnd.client_dc and
12064         hwnd.non_client_dc and on to a stack of dc's (and in window's
12065         case, PAINTSTRUCT's), so we can deal with nested Paint calls
12066         without puking or not disposing of Graphics objects.
12067
12068         * XplatUIOSX.cs: same.
12069
12070         * XplatUIWin32.cs: same.
12071
12072 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
12073
12074         * FileDialog.cs: Don't call on_directory_changed inside
12075           OnSelectedIndexChanged (it changes the SelectedIndex too).
12076           Instead move it to OnSelectionChangeCommitted.
12077
12078 2006-10-13  Chris Toshok  <toshok@ximian.com>
12079
12080         * XplatUIX11.cs: more Destroy work.  the current code does the
12081         following things, in order:
12082
12083         1. Enumerates all handles of all controls at or below the one
12084         being destroyed, in pre-order.  As it is doing this, it marks the
12085         handles as zombie and clears all references to them.
12086         
12087         2. calls XDestroyWindow on the window passed in.
12088
12089         3. SendMessage's WM_DESTROY to all he handles in the accumulated
12090         list.
12091
12092 2006-10-13  Chris Toshok  <toshok@ximian.com>
12093
12094         * XplatUIX11.cs: set hwnd.zombie to true before calling
12095         SendMessage (WM_DESTROY).  this keeps us from marking the new
12096         window a zombie, and also keeps us from calling sendmessage at
12097         all.
12098
12099 2006-10-13  Jackson Harper  <jackson@ximian.com>
12100
12101         * TextControl.cs: Do not show the caret and selection at the same
12102         time.  Reduces ugliness by 35%.
12103
12104 2006-10-13  Chris Toshok  <toshok@ximian.com>
12105
12106         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
12107         zombie after we do the recursive call, so we actually do call
12108         SendMessage on the children controls.
12109         (GetMessage): if we find a pending paint event for a zombie hwnd,
12110         remove the hwnd from the paint queue, or else it will always be
12111         there (and we'll effectively loop infinitely)
12112
12113 2006-10-13  Mike Kestner  <mkestner@novell.com>
12114
12115         * MenuItem.cs : add Selected format under keynav too.
12116         Fixes #79528.
12117
12118 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
12119
12120         * PropertyGrid.cs: Fixed some NRE's and small difference between our
12121         implementation and that of MS.
12122
12123 2006-10-13  Chris Toshok  <toshok@ximian.com>
12124
12125         * Control.cs (OnInvalidated) only futz with the invalid_region if
12126         the control is double buffered.  this fixes the apparent hang in
12127         the ListView unit tests.  Someone needs to make the
12128         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
12129
12130 2006-10-13  Chris Toshok  <toshok@ximian.com>
12131
12132         * PropertyGridView.cs:
12133
12134         - do a little refactoring so that only one place calls
12135         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
12136         else call that.  Also make it Refresh, since there are redraw bugs
12137         otherwise (we should take a look at that...)
12138
12139         - do a little more refactoring work to share the body of code
12140         involved with the drop down.  it was duplicated in the code
12141         dealing with the listbox handling and in the code dealing with the
12142         UITypeEditors.
12143
12144         - add a Capture to the dropdown form's control once it's
12145         displayed, and add a MouseDown handler that checks to make sure
12146         the position is inside the control.  If it's not, close the
12147         dropdown.  This fixes #78190.
12148
12149         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
12150         if the value is different than the initial value.
12151         
12152 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
12153
12154         * Control.cs: see #78650
12155         - Fixed GetNextControl for several cases:
12156                 - Changed FindFlatForward to return 
12157                 correct sibling control when more than one
12158                 control has same TabIndex as the currently 
12159                 focused one.
12160                 - Changed FindFlatBackward to loop children
12161                 from last to first and apply same logic as in
12162                 FindFlatForward
12163                 - Changed FindControlForward to search for
12164                 children when control is not a container
12165                 but has children, or search for siblings if
12166                 control is a container...
12167                 - Changed FindControlBackward   to continue
12168                 searching for child controls when hitting 
12169                 Panel-like parents
12170                 
12171         - Fixed Focus method to update ActiveControl
12172         (FocusTest.FocusSetsActive failure)
12173         
12174         * TabControl.cs:
12175         - Focus rectangle now refreshes when gaining
12176         or losing focus
12177         - Removed grab for Tab key on IsInputKey that 
12178         was keeping tab navigation from working (#78650)
12179
12180 2006-10-13  Chris Toshok  <toshok@ximian.com>
12181
12182         * PropertyGridView.cs:
12183         - Rewrite SetPropertyValue to loop over SelectedGridItem's
12184         SelectedObjects.
12185
12186         - Deal with GridItem.Value == null a few places.
12187
12188         * PropertyGrid.cs: 
12189         - replace the PopulateGridItemCollection with a pair of methods
12190         which compute the intersection of all the properties in the
12191         SelectedObjects array.  Fixes #79615.
12192
12193         - Throw ArgumentException from set_SelectedObjects if there's a
12194         null in the array.
12195
12196         - Add GetTarget method which can be used to traverse up the
12197         GridItem.Parent chain.  It depends on the assumption that
12198         selected_objects for different GridEntries are always in the same
12199         order (a safe assumption).  Use this method and loop over all the
12200         selected objects in the entry when calling RemoveValueChanged and
12201         AddValueChanged.
12202         
12203         * GridEntry.cs: Make this handle multiple selected objects.
12204         .Value returns null if not all the selected objects share the same
12205         value.
12206
12207 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
12208         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
12209           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
12210           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
12211           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
12212           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
12213         add additional functionality.
12214
12215 2006-10-12  Mike Kestner  <mkestner@novell.com>
12216
12217         * ErrorProvider.cs : new ToolTipWindow ctor sig.
12218         * HelpProvider.cs : new ToolTipWindow ctor sig.
12219         * ToolTip.cs : remove ToolTip param from Window sig since it is
12220         not used.
12221         * ToolBar.cs : add tooltip support.  Fixes #79565.
12222
12223 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12224
12225         * ComboBox.cs: move the events in set_SelectedIndex to 
12226         after the call to HighlightIndex in order to avoid 
12227         possible recursion and subsequent problems with the call
12228         to HighlightIndex and include a range check in 
12229         set_HighlightIndex. Fixes #79588
12230         
12231 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12232
12233         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
12234         to ui thread's settings instead of sunday. 
12235         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
12236
12237 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12238
12239         * DateTimePicker.cs
12240         * MonthCalendar.cs
12241         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
12242         and implement missing functionality (selecting different parts 
12243         of the date and edit them individually with the keyboard).
12244         
12245 2006-10-11  Chris Toshok  <toshok@ximian.com>
12246
12247         * Control.cs (OnInvalidated): fix NRE relating to last change.
12248
12249 2006-10-11  Chris Toshok  <toshok@ximian.com>
12250
12251         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
12252         atoms in _NET_WM_STATE here if the window is maximized.  We need
12253         to do this because we're *replacing* the existing _NET_WM_STATE
12254         property, so those atoms will be lost otherwise, and any further
12255         call to GetWindowState will return Normal for a window which is
12256         actually maximized.  Fixes #79338.
12257
12258 2006-10-11  Jackson Harper  <jackson@ximian.com>
12259
12260         * TextControl.cs: Special case for setting selection end to
12261         selection start, we basically kill the anchor.
12262         - some todo comments.
12263
12264 2006-10-11  Chris Toshok  <toshok@ximian.com>
12265
12266         * Control.cs: switch to using an "invalid_region" to track which
12267         parts of the image buffer need updating.  This is more code than
12268         the simple fix from r66532.  That version just attempted to always
12269         fill the entire buffer on redraw, which turns out to be
12270         inefficient when invalidating small rectangles.  This version
12271         simply adds the invalid rectangle to the invalid region.  When we
12272         get any WM_PAINT message we see if it can be filled using the
12273         image buffer, and if it can't (if the paint event's clip rectangle
12274         is visible in the invalid region) we first fill the image buffer.
12275         So, the image buffer is still a cache, we just fill it lazily.
12276
12277         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
12278         need it any longer.
12279
12280 2006-10-11  Chris Toshok  <toshok@ximian.com>
12281
12282         * XplatUIX11.cs (SetWindowPos): we need to update both position as
12283         well as size after calling XMoveResizeWindow.  This keeps us from
12284         ignoring future SetWindowPos calls.  Fixes the disappearing
12285         DateTimePicker in the ToolBarDockExample from bug #72499.
12286
12287 2006-10-11  Chris Toshok  <toshok@ximian.com>
12288
12289         * TextBoxBase.cs: reorder things a bit when it comes to
12290         resizing-causing-recalculation.  we were recalculating the
12291         document when our position was changed, which shouldn't happen.
12292         We only care about size changes.  Clear up some more redundant
12293         recalculation calls while I'm at it.  This makes the toolbar dock
12294         example snappy when you're just dragging toolbars around (since it
12295         causes a relayout whenever you move one.)
12296
12297 2006-10-11  Chris Toshok  <toshok@ximian.com>
12298
12299         * ToolBarButton.cs (get_Rectangle): this only returns
12300         Rectangle.Empty if Visible == false, or Parent == null.
12301         Parent.Visible doesn't matter.
12302
12303 2006-10-10  Chris Toshok  <toshok@ximian.com>
12304
12305         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
12306         by .net 1.1, so switch to an internal method instead.
12307
12308 2006-10-10  Chris Toshok  <toshok@ximian.com>
12309
12310         * Control.cs (WM_PAINT): when a control is double buffered we draw
12311         initially to the ImageBuffer and then copy from there.  But when a
12312         parent control which has child controls is double buffered, the
12313         initial drawing doesn't encompass the entire ClientRectangle of
12314         the parent control, so we end up with uninitialized bits (this is
12315         easily seen by dragging the top toolbar in
12316         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
12317         manually set the ClipRectangle of the paint_event (only the one we
12318         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
12319         of the nastiness in bug #72499.
12320
12321         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
12322         which we use in Control.cs's WM_PAINT handling.
12323
12324 2006-10-10  Jackson Harper  <jackson@ximian.com>
12325
12326         * TextBoxBase.cs: Finish off the autoscrolling stuff.
12327
12328 2006-10-10  Chris Toshok  <toshok@ximian.com>
12329
12330         * Cursor.cs: Apply a slightly different patch to the one suggested
12331         in #79609.
12332
12333 2006-10-10  Jackson Harper  <jackson@ximian.com>
12334
12335         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
12336         not the parent form.
12337         * TextControl.cs: use difference in old line count vs new count to
12338         calculate how many lines were added, this takes into account soft
12339         line breaks properly.
12340
12341 2006-10-10  Chris Toshok  <toshok@ximian.com>
12342
12343         * LinkLabel.cs: don't call MeasureCharacterRanges against a
12344         rectangle located at 0,0 and the size of the text.  Use
12345         ClientRectangle instead.  This fixes rendering of non-left aligned
12346         link labels.
12347
12348 2006-10-10  Jackson Harper  <jackson@ximian.com>
12349
12350         * TextBoxBase.cs: When we set the selection start position the
12351         caret.
12352         * TextControl.cs: Need to update the caret when we decrement it to
12353         zero.
12354         - Make sure that the selection_visible flag gets reset to false if
12355         the selection isn't visible.  Before this you could get it set to
12356         visible by changing the selection start, then changing the end to
12357         equal the start.
12358
12359 2006-10-09  Jackson Harper  <jackson@ximian.com>
12360
12361         * TreeView.cs: Don't update scrollbars when we aren't visible.
12362         * TreeNodeCollection.cs: Only need to update scrollbars if being
12363         added to an expanded visible node or the root node.
12364
12365 2006-10-09  Chris Toshok  <toshok@ximian.com>
12366
12367         * XplatUIX11.cs (SendMessage): fix NRE.
12368
12369 2006-10-09  Jackson Harper  <jackson@ximian.com>
12370
12371         * TextBoxBase.cs: Implement horizontal autoscrolling.
12372         * TextControl.cs: Add a movement types that allows moving forward
12373         and backwards without wrapping.
12374
12375 2006-10-09  Mike Kestner  <mkestner@novell.com>
12376
12377         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
12378         with focus "expansion" of labels.  Fixes #79532 and then some.
12379         * ThemeWin32Classic.cs : add LineLimit to ListView label format
12380         when wrapping.
12381
12382 2006-10-09  Jackson Harper  <jackson@ximian.com>
12383
12384         * TextBoxBase.cs: Set the default max values to MaxValue since
12385         we use the scrollbar for autoscrolling and the default value is
12386         100.  If we don't do this the caret won't keep up with typing
12387         after about 18 characters.
12388         * TextControl.cs: Make sure the selection is offset by the
12389         viewport x.  This fixes selection when using auto scrolling.
12390
12391 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
12392         
12393         * Form.cs: The active control should be selected after the 
12394         OnLoad so that any child control initialization that affects
12395         the selection is done. Fixes #79406
12396
12397 2006-10-06  Chris Toshok  <toshok@ximian.com>
12398
12399         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
12400         to have no evil effects.
12401
12402         - Stop selecting StructureNotifyMask on non-toplevel windows.
12403
12404           The only way children should be resized is by using the SWF api,
12405           and we already send WM_WINDOWPOSCHANGED messages in those cases.
12406           Toplevel windows can be interacted with via the window manager,
12407           and so we keep the input mask there.
12408
12409           The other event StructureNotifyMask gives us (that we care
12410           about) is DestroyNotify.  The code is already structured such
12411           that it assumes we won't be getting a DestroyNotify event for
12412           the window we pass to XDestroyWindow (which is what
12413           StructureNotifyMask is supposed to guarantee.)  So, that code
12414           shouldn't be affected by this either.
12415
12416         - Stop selecting VisibilityChangeMask altogether.
12417
12418           We weren't doing anything with the resulting events anyway.
12419         
12420         This vastly reduces the number of X requests and events we see
12421         when resizing/laying out a large ui.
12422
12423 2006-10-06  Chris Toshok  <toshok@ximian.com>
12424
12425         * ScrollableControl.cs (DisplayRectangle): we need to take into
12426         account the DockPadding regardless of whether or not auto_scroll
12427         == true.  rework this slightly to this effect, and fix bug #79606,
12428         and part of #72499 (you can now see the drag handles and drag
12429         toolbars around).
12430
12431 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
12432
12433         * ListViewItem.cs: Collections of selected and checked items are now
12434         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
12435         we mark the collection "dirty".
12436         * ListView.cs: Marked collections readonly. Modified UpdateSelection
12437         to only clear SelectedItems when a new item is selected and MultiSelect
12438         is enabled. CheckedItems and SelectedItems now subscribe to Changed
12439         event of ListViewItemCollection, and mark its list dirty whenever
12440         that event is fire. This allows us to return selected/checked items 
12441         in the same order as they are in the Items collection. This matches
12442         the MS behavior.
12443
12444 2006-10-06  Chris Toshok  <toshok@ximian.com>
12445
12446         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
12447         right mouse clicks.  Fixes bug #79593.
12448
12449 2006-10-06  Chris Toshok  <toshok@ximian.com>
12450
12451         * Splitter.cs: doh, fix splitters that don't want to cancel the
12452         movement when you drag them.  Also, impose the limits on the
12453         values we send to the SplitterMovingEvent.  Fixes #79598.
12454
12455 2006-10-06  Jackson Harper  <jackson@ximian.com>
12456
12457         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
12458         since we use this for auto scrolling also.
12459
12460 2006-10-05  Chris Toshok  <toshok@ximian.com>
12461
12462         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
12463         beginning to think that most datagrid column types don't need this
12464         method.  Fixes bug #79392.
12465
12466 2006-10-05  Chris Toshok  <toshok@ximian.com>
12467
12468         * DataGrid.cs: move back to a more lazy scheme for creating the
12469         CurrencyManager, so we aren't updating it every time you set
12470         either DataSource or DataMember.  Also, don't call
12471         RecreateDataGridRows if the currency manager hasn't changed.
12472
12473 2006-10-05  Chris Toshok  <toshok@ximian.com>
12474
12475         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
12476         emitted, SelectedIndex should already be updated.  Fixes bug
12477         #78929.
12478
12479 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
12480
12481         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
12482           ToolStripTextBox.cs: Initial commit.
12483         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
12484
12485 2006-10-05  Jackson Harper  <jackson@ximian.com>
12486
12487         * TabControl.cs: We need to invalidate the tab control area when
12488         new ones are added (duh).
12489
12490 2006-10-03  Chris Toshok  <toshok@ximian.com>
12491
12492         * Form.cs (ProcessDialogKey): if the focused control is in this
12493         form and is a button, call its PerformClick method here.  Fixes
12494         #79534.
12495
12496 2006-10-04  Jackson Harper  <jackson@ximian.com>
12497
12498         * TabPage.cs: Ignore setting of Visible, and add an internal
12499         method for setting the controls visibility.  TabPage's Visible
12500         property is a little strange on MS, this seems to make us
12501         compatible, and fixes cases where people set all the tab pages to
12502         visible.
12503         * TabControl.cs: Use the new internal setting on tab pages
12504         visibility.
12505
12506 2006-10-03  Mike Kestner  <mkestner@novell.com>
12507
12508         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
12509
12510 2006-10-03  Mike Kestner  <mkestner@novell.com>
12511
12512         * ListView.cs : use is_visible instead of Visible to check if 
12513         scrollbars should be placed/sized.  Also some max_wrap_width
12514         love for LargeIcon view.  [Fixes #79533]
12515
12516 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
12517
12518         * TextControl.cs :
12519           Make set_TextAlign() do actually update the align. Fixed #78403.
12520
12521 2006-10-03  Chris Toshok  <toshok@ximian.com>
12522
12523         * DataGrid.cs: fix a crash when switching datasources if the
12524         vertical scrollbar is at someplace other than Value = 0.  Also,
12525         reduce the number of recalculation passes we do in SetDataSource
12526         from 2 to 1.
12527
12528 2006-10-03  Jackson Harper  <jackson@ximian.com>
12529
12530         * TextBoxBase.cs: Move the if value the same bail check up, we
12531         don't want to empty the document if it is already empty, this
12532         seems to severly mess up the caret.  TODO: I should probably fix
12533         the empty statement to update teh caret somehow.
12534
12535 2006-10-03  Chris Toshok  <toshok@ximian.com>
12536
12537         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
12538         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
12539         reflection, an internal row type, properties on said type, etc.)
12540         will work with our datagrid.  Fixes #79531.
12541
12542 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
12543
12544         * FileDialog.cs: Don't crash if a path is not accessible
12545           (System.UnauthorizedAccessException). Fixes #79569.
12546         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
12547           a ':' too. Return unknown icon for those paths/files.
12548
12549 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
12550
12551         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
12552         GetContainerControl returns null.
12553
12554 2006-10-02  Chris Toshok  <toshok@ximian.com>
12555
12556         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
12557         call to XGetWindowAttributes instead of "handle".  fixes an X
12558         error using notifyicon after the NotifyIconWindow to Form base
12559         class switch.
12560
12561 2006-10-02  Chris Toshok  <toshok@ximian.com>
12562
12563         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
12564         server grab and looping we need to do to get down to the most
12565         deeply nested child window.
12566         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
12567         QueryPointer again after the WarpPointer so we can generate a
12568         proper (fake) MotionNotify event to be enqueued in the destination
12569         window's queue.
12570         (GetCursorPos): call QueryPointer.
12571
12572         Fixes #79556.
12573
12574 2006-10-02  Jackson Harper  <jackson@ximian.com>
12575
12576         * NotifyIcon.cs: Derive the notify icon from a form, so things
12577         like FindForm work on it.
12578         - Swallow the WM_CONTEXTMENU message, since that is generated on
12579         mouse down, and context menu is a mouse up kinda guy.  I believe
12580         the correct fix here is probably to make the notify icon entirely
12581         NC area, but this seems to work fine for anyone not manipulating
12582         WndProc.
12583
12584 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
12585
12586         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
12587           ToolStripItemCollection.cs, ToolStripLabel.cs,
12588           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
12589           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
12590           Initial implementation.
12591         * TextRenderer.cs: Provide padding to MeasureText.
12592
12593 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
12594
12595         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
12596         of ButtonBaseAccessibleObject. Fix bug #79552.
12597
12598 2006-10-02  Jackson Harper  <jackson@ximian.com>
12599
12600         * MdiWindowManager.cs: When maximizing use the containers client
12601         rect, not it's bounds, so nc area is accounted correctly.
12602         - Use the parent form's size for the menu position, since the
12603         client isn't always the full form size.
12604
12605 2006-10-01  Chris Toshok  <toshok@ximian.com>
12606
12607         * ScrollableControl.cs: make sure neither right_edge or
12608         bottom_edge are < 0, since they're used as LargeChange for the
12609         horiz/vert scrollbars respectively.  Fixes #79539.
12610
12611 2006-10-01  Chris Toshok  <toshok@ximian.com>
12612
12613         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
12614         the xplatuix11 code can cause us to destroy/recreate our handle.
12615
12616         * XplatUIX11.cs
12617         (SystrayAdd):
12618         - this code can be invoked many times for the same Hwnd.  Make
12619           sure we only destroy the client window once (the first time this
12620           method is called).  This fixes bug #79544.
12621         - Remove the call to the improperly bound XSync.  why we had two
12622           bindings to this, I will never know, but this call resulted in
12623           events being discarded from the queue(!).
12624         - correct a misunderstanding of _XEMBED_INFO - the second atom is
12625           not our current state but the state we wish to be in.  So, 0 if
12626           we don't want to be mapped.  Change it to 1.
12627         (SystrayRemove): The XEMBED spec makes mention of the fact that
12628         gtk doesn't support the reparent of client windows away from the
12629         embedder.  Looking at gtksocket-x11.c seems to agree with this.
12630         The only avenue we have for removing systray icons is to destroy
12631         them.  We don't want the handle to go away for good, though, so
12632         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
12633         #79545.
12634         
12635 2006-10-01  Chris Toshok  <toshok@ximian.com>
12636
12637         * Form.cs (WndProc): inline the native_enabled variable usage into
12638         the cases in which it's used.  Fixes #79536.
12639
12640 2006-09-29  Mike Kestner  <mkestner@novell.com>
12641
12642         * ListView.cs : toggle the selection state for ctrl clicks in 
12643         multiselect mode. [Fixes #79417]
12644
12645 2006-09-29  Mike Kestner  <mkestner@novell.com>
12646
12647         * ListView.cs : kill CanMultiSelect and refactor the selection
12648         code to support multiselection in the absence of mod keys. Steal
12649         arrow/home/end keys by overriding InternalPreProcessMessage to
12650         restore regressed keynav behavior.
12651         [Fixes #79416]
12652
12653 2006-09-29  Jackson Harper  <jackson@ximian.com>
12654
12655         * MdiClient.cs: Repaint the titlebars when the active window is
12656         changed.
12657
12658 2006-09-29  Chris Toshok  <toshok@ximian.com>
12659
12660         * Application.cs: when entering a runloop with a modal, make sure
12661         the hwnd is enabled.  Fixes #79480.
12662
12663 2006-09-29  Chris Toshok  <toshok@ximian.com>
12664
12665         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
12666         when ListManager.CanAddRows == false, bump us back one.
12667
12668         * DataGridColumnStyle.cs (ParentReadOnly): remove the
12669         listmanager.CanAddRows check.  This makes ArrayLists uneditable
12670         using a datagrid, which is not right.
12671         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
12672         is an IEditable, but call property_descriptor.SetValue regardless.
12673         fixes #79435.
12674
12675 2006-09-29  Chris Toshok  <toshok@ximian.com>
12676
12677         * DataGridBoolColumn.cs: we need to test equality in the face of
12678         possible null values (as is the case with the default NullValue).
12679         This patch keeps us from crashing in that case.
12680
12681 2006-09-29  Jackson Harper  <jackson@ximian.com>
12682
12683         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
12684         here, since it will get called for every node collection in the
12685         tree. This is now done in the treeview once the sorting is
12686         finished.
12687         * TreeView.cs: Recalculate the visible order, and update the
12688         scrollbars after sorting, set the top nope to the root so that the
12689         recalc actually works.
12690
12691 2006-09-29  Chris Toshok  <toshok@ximian.com>
12692
12693         * LinkLabel.cs: more handling of the default link collection in
12694         the face of LinkArea manipulation.  The default link collection
12695         contains 1 element (start=0,length=-1).  If the user sets LinkArea
12696         to anything and the links collection is the default, clear it.
12697         Then only add the link if its nonempty.  Fixes #79518.
12698
12699 2006-09-29  Chris Toshok  <toshok@ximian.com>
12700
12701         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
12702         piece correctly when we hit a '\n'.  Fixes #79517.
12703
12704 2006-09-29  Chris Toshok  <toshok@ximian.com>
12705
12706         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
12707         change the binding of gdk_init_check to take two IntPtr's, and
12708         pass IntPtr.Zero for both of them.  Fixes #79520.
12709
12710 2006-09-29  Mike Kestner  <mkestner@novell.com>
12711
12712         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
12713         [Fixes #78779]
12714
12715 2006-09-28  Jackson Harper  <jackson@ximian.com>
12716
12717         * XplatUIX11.cs: When translating NC messages make sure we go from
12718         whole window to screen, not client window to screen.
12719         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
12720         method doesn't exist
12721         - Skip over controls that aren't forms when arranging.
12722
12723 2006-09-28  Jackson Harper  <jackson@ximian.com>
12724
12725         * XplatUIWin32.cs: Clip the rect to the parent window.
12726         * XplatUIStructs.cs: Add clipping modes struct.
12727         * InternalWindowManager.cs: New private method that factors title
12728         bar heights in when calculating the pos of an NC mouse message.
12729         - Use SendMessage to force a paint when the form's size is changed
12730         instead of painting the decorations immediately.
12731         - Don't let the NC button click messages get to DefWndProc,
12732         because they will attempt to handle windowing themself, and this
12733         messes up z-order (it will put them in front of the scrollbars).
12734         * XplatUIX11.cs: Make sure that we don't reset window managers if
12735         we already have one (ie the window is an MDI window).
12736
12737 2006-09-28  Chris Toshok  <toshok@ximian.com>
12738
12739         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
12740         menu code really needs going over.
12741
12742 2006-09-27  Chris Toshok  <toshok@ximian.com>
12743
12744         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
12745         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
12746         window is maximizable.  So, we need to make sure that even if we
12747         clear the border/wm frame of those functions, they're still
12748         available (basically, we remove the decoration without removing
12749         the function).  Half the fix for #79338.
12750
12751 2006-09-27  Chris Toshok  <toshok@ximian.com>
12752
12753         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
12754         Fixes bug #79515.
12755
12756 2006-09-27  Chris Toshok  <toshok@ximian.com>
12757
12758         * Splitter.cs: reorder things a bit so that we don't actually
12759         draw/move the splitter until after calling OnSplitterMoving.  This
12760         lets users cancel/disallow the movement by explicitly setting
12761         event.SplitX/SplitY.  Fixes #79372.
12762
12763 2006-09-27  Jackson Harper  <jackson@ximian.com>
12764
12765         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
12766         because it is most likely on a window being destroyed, and that
12767         will give us an X11 error.
12768
12769 2006-09-27  Chris Toshok  <toshok@ximian.com>
12770
12771         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
12772         the dropdown button now toggles between showing and hiding the
12773         dropdown.  Also, get rid of dropdown_form_showing and just use
12774         dropdown_form.Visible.  We still don't do a grab, but I'll leave
12775         that part to someone who has handled Capture-fu before.
12776
12777 2006-09-27  Chris Toshok  <toshok@ximian.com>
12778
12779         * DataGrid.cs: return false if alt isn't pressed when '0' is
12780         pressed.  this keeps the '0' key from being swallowed, and fixes
12781         bug #79350.
12782
12783 2006-09-27  Chris Toshok  <toshok@ximian.com>
12784
12785         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
12786         Calling Refresh (in response to a scrollbar event) screws up the
12787         scrollbar painting.  Fixes bug #78923.
12788
12789 2006-09-27  Chris Toshok  <toshok@ximian.com>
12790
12791         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
12792         then insert into hashtable" blocks threadsafe.
12793
12794 2006-09-27  Chris Toshok  <toshok@ximian.com>
12795
12796         * MessageBox.cs (CreateParams): the styles should be |'ed with our
12797         baseclass's, since otherwise the
12798         ControlBox/MinimizeBox/MaximizeBox assignments above have no
12799         effect.  This gets the close button back in messageboxes.
12800
12801 2006-09-27  Chris Toshok  <toshok@ximian.com>
12802
12803         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
12804         flag, not just != 0.  this makes flags that are actually multiple
12805         bits (like WS_CAPTION) work.  fixes bug #79508.
12806
12807 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
12808
12809         * PageSetupDialog.cs: add support for getting and settings the 
12810         paper size, source and orientation.
12811
12812 2006-09-26  Chris Toshok  <toshok@ximian.com>
12813
12814         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
12815         and caption == "", we need to remove the resize handles as well as
12816         the title bar.
12817
12818         * Control.cs (set_Text): turns out that setting Text on a form
12819         should change the WM styles on the window, since if ControlBox ==
12820         false, the only way to get a window border is to have a non-""
12821         Text property.  check winforms/forms/text.cs for an example.  so,
12822         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
12823         update both window styles and title.  This fixes a lot of dialogs
12824         (including the preferences dialog in MonoCalendar.)
12825
12826 2006-09-26  Chris Toshok  <toshok@ximian.com>
12827
12828         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
12829         control isn't a Form), call Win32ShowWindow to hide the window,
12830         but don't update the control Visible property.  When we reparent
12831         back to a parent control, call SetVisible in order for the
12832         window's visibility to be reinstated.
12833
12834         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
12835         the FosterParent.
12836
12837         * Control.cs (ControlCollection.Remove): remove that value.Hide()
12838         call for good, since it breaks MonoCalendar (and other things I'm
12839         sure.) Also, set all_controls to null *after* the owner calls,
12840         which end up regenerating it.
12841         (ChangeParent): allow new_parent to be == null, passing
12842         IntPtr.Zero down to XplatUI.
12843
12844         this fixes #79294 the right way.
12845
12846 2006-09-26  Mike Kestner  <mkestner@novell.com>
12847
12848         * GridEntry.cs : internal SetParent method.
12849         * PropertyGrid.cs : attach to property changed on the proper
12850         target if we have a hierarchical grid with subobjects. Setup
12851         GridItem.Parent for hierarchical items.
12852         * PropertyGridView.cs : Set value on the correct target for
12853         hierarchical grids. [Fixes #78903]
12854
12855 2006-09-26  Chris Toshok  <toshok@ximian.com>
12856
12857         * Control.cs (ChildNeedsRecreating): this should return true if
12858         either we're being recreated and the child is in our list, or our
12859         parent is waiting for our recreation.
12860
12861 2006-09-26  Chris Toshok  <toshok@ximian.com>
12862
12863         * Control.cs (ControlCollection.Remove): reinstate the
12864         value.Hide() call as suggested in bug #79294.
12865
12866 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
12867
12868         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
12869         coordinates (versus a relative move).
12870
12871 2006-09-26  Chris Toshok  <toshok@ximian.com>
12872
12873         * Control.cs: rework child recreation a little bit.  It turns out
12874         that we race between the DestroyNotify the WM_DESTROY message.  If
12875         the parent gets its DestroyNotify before the child gets the
12876         WM_DESTROY message, the child ends up not recreating (since the
12877         parent finishes its recreation on DestroyNotify, and the child
12878         checks ParentIsRecreating.)
12879
12880         So, instead we store off a list of all the child controls which
12881         need to be recreated when the parent control starts to recreate
12882         itself.  Then, when child controls get their WM_DESTROY message we
12883         check to see if they're in the parent's pending recreation list,
12884         and if so, we recreate.  This removes all dependency on ordering
12885         from the code and fixes the initial MonoCalendar upgrade dialog.
12886         
12887 2006-09-26  Jackson Harper  <jackson@ximian.com>
12888
12889         * TextControl.cs: Use the Line to get the length of the line,
12890         since soft line breaks can change the end line.
12891
12892 2006-09-26  Chris Toshok  <toshok@ximian.com>
12893
12894         * Control.cs (ControlCollection.AddImplicit): don't add the
12895         control again if it's already in one of our lists.  This keeps us
12896         from adding controls over and over again for comboboxes when their
12897         handle gets recreated (as the combobox adds implicit controls in
12898         OnHandleCreated).  Fixes the X11 errors in bug #79480.
12899
12900 2006-09-26  Jackson Harper  <jackson@ximian.com>
12901
12902         * TextControl.cs: When deleting characters make sure that any
12903         orphaned zero lengthed tags get deleted.
12904         - Fix ToString for zero lengthed tags.
12905
12906 2006-09-25  Jackson Harper  <jackson@ximian.com>
12907
12908         * TextControl.cs: When getting a tag at the location there can be
12909         multiple tags at the same spot, these are 0-lengthed tags that
12910         appear when extra formatting has been stuck in a location.  We
12911         need to pull out the last of these 0 lengthed tags.
12912
12913 2006-09-25  Jackson Harper  <jackson@ximian.com>
12914
12915         * TextControl.cs: Fix print out in debug method.
12916         * TextBoxBase.cs: When text is set bail if we are setting to the
12917         previous value.
12918         
12919 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
12920
12921         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
12922           It is now possible to change the selected index in a FontXXXListBox
12923           with the up and down arrow keys from the FontXXXTextBoxes.
12924           Also, send the FontXXXTextBox mouse wheel event to the corresponding
12925           FontXXXListBoxes to match ms.
12926
12927 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
12928
12929         * SystemInformation.cs: Return a clone of the theme's MenuFont because
12930         anyone can dispose it, anytime. All other properties returns enums, 
12931         structs or basic types so they don't need such tricks.
12932
12933 2006-09-22  Jackson Harper  <jackson@ximian.com>
12934
12935         * XplatUI.cs:
12936         * XplatUIWin32.cs:
12937         * Clipboard.cs:
12938         * DataFormats.cs:
12939         * XplatUIOSX.cs:
12940         * XplatUIDriver.cs: Update interface to add a primary selection
12941         flag, so the driver can use the primary selection buffer if
12942         needed.
12943         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
12944
12945         * RichTextBox.cs: We need to supply the data object to paste now
12946         (so we can choose to supply CLIPBOARD or PRIMARY).
12947         * TextBoxBase.cs: Supply data object to paste (see above).
12948         - Middle click uses the primary selection data object.
12949         
12950 2006-09-21  Chris Toshok  <toshok@ximian.com>
12951
12952         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
12953         of SetWMStyles.  It's still a rat's nest and is largely
12954         order-dependent which I dislike immensely.  This also fixes the X
12955         button disappearing from toplevel forms.
12956
12957 2006-09-21  Mike Kestner <mkestner@novell.com>
12958
12959         * ListBox.cs: move Jordi's click/dblclick raising code to the
12960         mouse up handler.
12961
12962 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
12963
12964         * ListBox.cs: Fixes 79450
12965
12966 2006-09-21  Mike Kestner <mkestner@novell.com>
12967
12968         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
12969         to deal with people updating the TreeNodeCollection after the tree
12970         is disposed.  "Fixes" 79330.
12971
12972 2006-09-20  Jackson Harper <jackson@ximian.com>
12973
12974         * TextControl.cs: Push the cursor record onto the undo stack
12975         before the delete action. This fixes 78651.
12976
12977 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
12978
12979         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
12980         CreateParams. Fixes 79329.
12981
12982 2006-09-19  Chris Toshok  <toshok@ximian.com>
12983
12984         * XplatUIX11.cs: a couple of blanket code massage passes to clean
12985         things up a bit.  First, get rid of the NetAtoms array (and the NA
12986         enum), and just embed the atoms as static fields.  Also, add a
12987         couple of functions (StyleSet and ExStyleSet) to clean up all the
12988         bitmask testing of styles.
12989
12990         * X11Structs.cs: remove the NA enum, not needed anymore.
12991         
12992 2006-09-19  Chris Toshok  <toshok@ximian.com>
12993
12994         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
12995         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
12996         added cleanup to get MessageBox titles appearing again, which were
12997         broken by my earlier fix for caption-less/ControlBox-less windows.
12998
12999 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
13000
13001         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
13002           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
13003           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
13004           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
13005           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
13006           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
13007           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
13008           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
13009           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
13010           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
13011           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
13012             Inital import.
13013         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
13014           ToolStripButton.cs: Stubs needed for above.
13015         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
13016
13017 2006-09-15  Chris Toshok  <toshok@ximian.com>
13018
13019         * XplatUIX11.cs:
13020         - make the MessageQueues hashtable Synchronized.
13021         
13022         - SendMessage: if the Hwnd is owned by a different thread, use the
13023         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
13024         thread.  Fixes bug #79201.
13025
13026 2006-09-15  Chris Toshok  <toshok@ximian.com>
13027
13028         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
13029         ControlBox == false, we disallow maximize/minimize/close.  If the
13030         form Caption is "" we also disallow move (and get rid of the Title
13031         decoration).  Unfortunately, regardless of how things are set,
13032         we're stuck with the Title and WM menu.
13033
13034 2006-09-15  Chris Toshok  <toshok@ximian.com>
13035
13036         * Application.cs: add locking around the static message_filters
13037         ArrayList, part of #79196.
13038
13039 2006-09-15  Chris Toshok  <toshok@ximian.com>
13040
13041         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
13042         Form.ControlBox == false, the window has no titlebar nor resize
13043         handles.  fixes bug #79368.
13044
13045 2006-09-15  Chris Toshok  <toshok@ximian.com>
13046
13047         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
13048         >= 0.  Fixes bug #79370.
13049
13050 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
13051         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
13052         * Control.cs:
13053             Add properties: LayoutEngine, Margin, DefaultMargin.
13054             Add method: GetPreferredSize.
13055             Move layout logic from PerformLayout to layout engines. 
13056
13057 2006-09-13  Chris Toshok  <toshok@ximian.com>
13058
13059         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
13060         fix for #79326 broke #78718, so this change addresses that.
13061
13062         - in SendWMDestroyMessages remove the call to
13063         CleanupCachedWindows, since we might be recreating the control and
13064         need to maintain the references to right Hwnd handles.  Also, set
13065         the zombie flag to true for each of the children in the hierarchy
13066         instead of calling hwnd.Dispose.  This will cause GetMessage to
13067         ignore all events for the window except for DestroyNotify.
13068
13069         - In GetMessage, ignore messages except for DestroyNotify for
13070         zombie hwnds.
13071         
13072         * Control.cs: revert the is_recreating fix from the last
13073         ChangeLog.  It's definitely "right", but it breaks switching from
13074         an MDI form to a non-MDI form.  Will need to revisit that.
13075
13076         * Hwnd.cs: add a zombie flag, which means "the
13077         client_window/whole_window handles are invalid, but we're waiting
13078         for the DestroyNotify event to come in for them".  Set the flag to
13079         false explicitly if setting WholeWindow/ClientWindow, and also
13080         when Disposing.
13081         
13082 2006-09-13  Chris Toshok  <toshok@ximian.com>
13083
13084         * XplatUIX11.cs: rework window destruction slightly.
13085
13086         - when destroying the windows associated with a control, we don't
13087         need 2 separate XDestroyWindow calls.  Just the one for the
13088         whole_window (or for client_window if whole_window is somehow
13089         IntPtr.Zero -- can this happen?) is enough.
13090
13091         - reworked SendWMDestroyMessages slightly, so we always dispose
13092         the child control hwnd's after sending the messages.
13093         
13094         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
13095         the two places it was used (one was even using hwnd.Handle and the
13096         other hwnd.client_window.  ugh), adding another call in
13097         SendWMDestroyMessages.  We need this new call because now the
13098         DestroyNotify events in the queue will be ignored for the child
13099         controls (as their hwnd's were disposed, and the window id's
13100         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
13101
13102         - this fixes bug #79326.
13103
13104 2006-09-13  Chris Toshok  <toshok@ximian.com>
13105
13106         * Control.cs: don't always set is_recreating to false at the end
13107         of RecreateHandle, since sometimes we're not done (and won't be
13108         until WndProc handles the WM_DESTROY message).  Also, set
13109         is_recreating to false in the WM_DESTROY handling code.  Part of
13110         the fix for bug #79326.
13111
13112 2006-09-13  Miguel de Icaza  <miguel@novell.com>
13113
13114         * X11DesktopColors.cs: Start the droppage of debugging messages.
13115
13116         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
13117
13118 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
13119
13120         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
13121
13122 2006-09-12  Chris Toshok  <toshok@ximian.com>
13123
13124         * DataGrid.cs (get_ListManager): if the list_manager is null, try
13125         to create it using SetDataSource.  Fixes bug #79151.
13126
13127 2006-09-11  Chris Toshok  <toshok@ximian.com>
13128
13129         * XEventQueue.cs: add a DispatchIdle property.
13130
13131         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
13132         either the queue is null, or the queue has DispatchIdle set to
13133         true.
13134         (DoEvents): set queue.DispatchIdle to false around the
13135         peek/translate/dispatch message loop in this method.  This keeps
13136         Application.Doevents from emitting idle events.  Part of the fix
13137         for #78823.
13138
13139 2006-09-11  Chris Toshok  <toshok@ximian.com>
13140
13141         * DataGrid.cs (set_DataSource): make this work for both the
13142         winforms/datagrid test and ReportBuilder.  It seems as though when
13143         we've created a ListManager (or maybe it's if we have a
13144         BindingContext?), when we set the DataSource it clears the
13145         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
13146         #79333.
13147
13148 2006-09-11  Chris Toshok  <toshok@ximian.com>
13149
13150         * XplatUIX11.cs: deal with queue being null, which happens in all
13151         the Clipboard functions.  Fixes one of the two problems mentioned
13152         in #78612.
13153
13154 2006-09-11  Chris Toshok  <toshok@ximian.com>
13155
13156         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
13157         button on various spots (including outside the menu) works closer
13158         to MS, and doesn't crash.  Fixes #79343.
13159
13160 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
13161
13162         * ListView.cs: Do not initialize item_sorter in init. To match MS,
13163         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
13164         and the internal comparer is set. When a new ListViewItemSorter is set,
13165         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
13166         was specified. No further processing is necessary if SortOrder is set
13167         to it's current value. If Sorting is modified to None, and View is
13168         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
13169         (either custom or our internal ItemComparer) to null, on 1.0 profile
13170         only set item_sorter to null if its our internal IComparer. If Sorting
13171         is modified to Ascending or Descending, then use our internal IComparer
13172         if none is set, and if the current IComparer is our internal one then:
13173         on 2.0 profile always replace it with one for new Sorting, and on 1.0
13174         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
13175         Enum.IsDefined to verify whether a valid View value is specified in
13176         its setter. Automatically sort listview items when listview is
13177         created. In Sort, do nothing if ListView is not yet created, or if
13178         no item_sorter is set (no Sorting was set, Sorting was explicitly set
13179         to None or ListViewItemSorter was set to null). Added Sort overload
13180         taking a bool to indicate whether the ListView should be redrawn when
13181         items are sorted (we use this in ListViewItemCollection to avoid double
13182         redraws). Modified our internal IComparer to take the sort order into
13183         account. In Add and AddRange methods of ListViewItemCollection, also
13184         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
13185         view), but use overload with noredraw option to avoid double redraw.
13186         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
13187         true when View is Tile, and do the same when attempting to set View to
13188         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
13189         for selected/checked indices, as it involves overhead when sorting is
13190         done while these collections are not used all that often. Instead
13191         we'll build the indices on demand. Modified IList implementation of
13192         CheckedIndexCollection to use public methods if object is int.
13193         Modified CheckedListViewItemCollection to hide checked items if
13194         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
13195         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
13196         IList implementation in SelectedIndexCollection to use public methods
13197         if object is int. Modified SelectedListViewItemCollection to hide
13198         selected items if listview is not yet created.
13199         * ListViewItem.cs: CheckedIndices list no longer needs to be
13200         maintained separately (see ListView changes). Also clone font, fixes
13201         test failure.
13202
13203 2006-09-11  Mike Kestner  <mkestner@novell.com>
13204
13205         * ComboBox.cs: if we are updating the contents of the currently
13206         selected index, refresh the control or the textbox selection.
13207         [Fixes #79066]
13208
13209 2006-09-11  Mike Kestner  <mkestner@novell.com>
13210
13211         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
13212         the 'specified' logic has been moved there.  This seems like a bug 
13213         in Control.cs, since our current SetBoundsCore completely ignores 
13214         the specified parameter.  Peter's commit seems to indicate that is 
13215         the way the MS control implementation works.  [Fixes #79325]
13216
13217 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
13218
13219         * XplatUI.cs: Set default_class_name to be composed
13220         of current domain id. This allows MWF to be loaded in multiple
13221         domains on Win32.
13222
13223 2006-09-09  Miguel de Icaza  <miguel@novell.com>
13224
13225         * X11Keyboard.cs: If we are unable to obtain the input method, do
13226         not call CreateXic to create the input context.   Should fix
13227         #78944/79276.
13228
13229 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
13230
13231         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
13232           Simplified gnome support by adding more pinvokes to get the
13233           icon for a file or mime type.
13234
13235 2006-09-08  Jackson Harper  <jackson@ximian.com>
13236
13237         * MenuAPI.cs: Deslect popup context menu items before closing the
13238         window, so that you don't see the previously selected item
13239         selected when you reopen the menu.
13240         * TextControl.cs: Update the cursor position even if we don't have
13241         focus.  This fixes typing in things like the ComboBox.  I'm not
13242         totally sure we should always set the visibility if we don't have
13243         focus, but couldn't find any corner cases where the cursor showed
13244         up when it shouldn't.
13245
13246 2006-09-08  Chris Toshok  <toshok@ximian.com>
13247
13248         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
13249         our arrays are length 256.  & 0xff before indexing.  Fixes the
13250         crash in bug #78077.
13251         
13252 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13253
13254         * ThemeWin32Classic.cs: 
13255         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
13256         is true. Handle that check box too.
13257
13258 2006-09-07  Chris Toshok  <toshok@ximian.com>
13259
13260         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
13261         79244.
13262
13263 2006-09-07  Chris Toshok  <toshok@ximian.com>
13264
13265         * Control.cs: in set_BackColor only do the work if
13266         background_color != value.
13267
13268         * XplatUIX11.cs: move the clearing of invalid areas (both client
13269         and nc) to the same block of code where we set (nc_)expose_pending
13270         to false.  That is, move it from PaintEventEnd to PaintEventStart,
13271         so things that cause invalidates from within OnPaint will trigger
13272         another call to OnPaint.  Fixes bug #79262.
13273
13274 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
13275
13276         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
13277         * FileDialog.cs: Fix typo
13278
13279 2006-09-07  Jackson Harper  <jackson@ximian.com>
13280
13281         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
13282         for tab pages if they have any.
13283
13284 2006-09-06  Mike Kestner  <mkestner@novell.com>
13285
13286         * Splitter.cs: use the "current" rect when finishing drag handle
13287         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
13288
13289 2006-09-06  Mike Kestner  <mkestner@novell.com>
13290
13291         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
13292         support offset splitters. [Fixes #79298]
13293
13294 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
13295
13296         * Mime.cs: Fixed a bug that could override the global mime type
13297           result.
13298
13299 2006-09-05  Jackson Harper  <jackson@ximian.com>
13300
13301         * TabControl.cs: Better calculation method for setting the slider
13302         pos. Prevents crashes on really wide tabs.
13303         - Draw Image on tab pages if an image list is used.
13304
13305 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13306
13307         * MonthCalendar.cs: When Font changes, the Size should be
13308         updated to fit the new font's space requirements.
13309
13310 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
13311
13312         * ListBox.cs: If the items are cleared with Items.Clear set
13313           top_index to 0.
13314
13315 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13316
13317         * MonthCalendar.cs: Handle arrow keys as input keys. Also
13318         fire DateChanged event instead of DateSelected event when
13319         the date was changed by keyboard interaction.
13320
13321 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13322
13323         * DateTimePicker.cs: Handle DateChanged for the associated
13324         month_calendar control, and set month_calendar.Font from 
13325         OnFontChanged method, as well as resize the height of the
13326         control when needed. Make PreferredHeight proportional.
13327
13328 2006-09-01  Chris Toshok  <toshok@ximian.com>
13329
13330         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
13331         properties.
13332
13333         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
13334
13335 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
13336
13337         * FileDialog.cs: Set ClientSize instead of window size, to allow space
13338           for decorations (Fixes #79219)
13339
13340 2006-09-01  Mike Kestner  <mkestner@novell.com>
13341
13342         * ComboBox.cs: first stab at sorting plus some selection handling
13343         fixes to bring us more in line with MS behavior.  Also switches back
13344         to index based selection.  Alternative patches for index-based 
13345         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
13346         and latency@gmx.de on bug 78848.  I assume they were similar to this
13347         code I've had simmering in my tree forever.
13348         [Fixes #78848]
13349
13350 2006-09-01  Chris Toshok  <toshok@ximian.com>
13351
13352         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
13353         when setting list position guard against ending up with a -1 index
13354         (the other part of the fix for #78812).  Should probably make sure
13355         we don't need the analogous fix in the ItemDeleted case.
13356
13357         * DataGrid.cs:
13358         - in SetDataSource, work around the fact that the way
13359         OnBindingContextChanged is invoked will cause us to re-enter this
13360         method.  I'll remove the hack once I investigate
13361         OnBindingContextChanged.
13362
13363         - fix the logic in set_DataSource and set_DataMember (basically
13364         what to do if the other of the two is null.)
13365         
13366         - in OnListManagerItemChanged, we need to take into account the
13367         edit row when deciding whether or not to call RecreateDataGridRows
13368         (part of the fix for #78812).
13369
13370 2006-09-01  Jackson Harper  <jackson@ximian.com>
13371
13372         * Splitter.cs: Don't do anything if there is no control to affect
13373         (prevents us from crashing in weird tet cases).
13374         * TreeView.cs: Bounding box for the mouse movement reverting
13375         focus/selection back to previously selected node.  This matches
13376         MS, and makes the tree a lot more useable.
13377         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
13378         use clipping so they are not drawn.  This fixes when the control
13379         is set to have a transparent background, or if it was over an
13380         image.
13381
13382 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
13383
13384         * MimeIcon.cs: Improved handling for reading default icons when
13385           using gnome (2.16 made it necessary). Check and read svg icons
13386           first, then 48x48 and then 32x32 icons.
13387
13388 2006-08-31  Chris Toshok  <toshok@ximian.com>
13389
13390         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
13391         visible.
13392
13393         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
13394         ProcessKeyPreview.  Fixes part of #77806.
13395
13396         * DataGrid.cs: big patch.
13397
13398         - revert the queueing up of DataSource/DataMember if inside
13399         BeginInit/EndInit calls.  That's not the way the datagrid achieves
13400         its delayed databinding.  Instead, call SetDataSource in
13401         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
13402         #78811.
13403
13404         - Also, it wasn't mentioned in #78811, but the test case exhibits
13405         behavior that was lacking in our datagrid implementation - Columns
13406         that have mapping names that don't exist in the datasource's
13407         properties aren't shown.  Yuck.  To fix this I added the bound
13408         field to the column style, and basically any calculation to figure
13409         out anything about columns uses a loop to find the bound columns.
13410         still need to investigate if I can cache an array of the bound
13411         columns or if the indices must be the same.
13412
13413         - When setting CurrentCell, we no longer abort if the cell being
13414         edited was in the add row.  This fixes the other part of #77806.
13415
13416         - The new code also fixes #78807.
13417         
13418         * ThemeWin32Classic.cs: perpetrate the same disgusting
13419         column.bound field hack, and only render bound fields.
13420
13421 2006-08-31  Chris Toshok  <toshok@ximian.com>
13422
13423         * DataGridColumnStyle.cs: add bound field.  this field is true if
13424         the datasource has a property corresponding to the mapping name.
13425
13426         * DataGridTableStyle.cs: set the bound field on the column styles
13427         depending on whether or not we have a column for that property.
13428
13429 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
13430
13431         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
13432           splitter control (fixes #79228)
13433
13434 2006-08-31  Chris Toshok  <toshok@ximian.com>
13435
13436         * DataGridColumnStyle.cs: we need to delay the assignment of
13437         property descriptor until the last possible moment due to the lazy
13438         databinding stuff in the datagrid.  Also, fix the exceptions
13439         thrown by CheckValidDataSource to match MS.
13440
13441 2006-08-31  Jackson Harper  <jackson@ximian.com>
13442
13443         * Form.cs: When activated select the active control, if there is
13444         no active control, we select the first control.
13445         * XplatUIX11.cs: If there is no focus control when we get a
13446         FocusIn event, find the toplevel form and activate it.  This
13447         occurs when you popup a window, it becomes the focus window, then
13448         you close that window, giving focus back to the main window.
13449
13450 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13451
13452         * MonthCalendar.cs: 
13453         * ThemeWin32Classic.cs: Cache Font in bold style, as well
13454         as StringFormat with Center alignments in MonthCalendar,
13455         instead of creating new ones when drawing the control. 
13456         Also, draw the month name in bold style.
13457
13458 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13459
13460         * Control.cs:
13461           - PerformLayout(): It would seem MS performs the fill even if the 
13462             control is not visible (part of #79218 fix)
13463           - ResetBackColor(): Use the setter to reset the color, to allow
13464             overriders to catch the change.
13465         * Form.cs:
13466           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
13467           - CreateHandle(): dito (part of $79218 fix)
13468           - Don't set an icon if we have a dialog
13469         * ScrollableControl.cs:
13470           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
13471           - ScrollIntoView(): No need to scroll if control is already visible
13472             (resolves fixme and fixes #79218)
13473
13474 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13475
13476         * MonthCalendar.cs: Change proportions in SingleMonthSize
13477         to match the aspect of the original control.
13478
13479 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
13480
13481         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
13482           get updated when they get maximized.
13483
13484 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
13485
13486         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
13487
13488 2006-08-29  Chris Toshok  <toshok@ximian.com>
13489
13490         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
13491
13492 2006-08-29  Jackson Harper  <jackson@ximian.com>
13493
13494         * TreeView.cs: Need to track selected node and highlighted node,
13495         they aren't always the same thing, when the mouse is down on a
13496         node it is hilighted, but not selected yet.
13497         - Do the HideSelection stuff right
13498         - Need to focus on rbutton mouse down. And redraw selection when
13499         right click is mouse upped.
13500
13501 2006-08-29  Mike Kestner  <mkestner@novell.com>
13502
13503         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
13504         when SubItems.Count < Columns.Count.  [Fixes #79167]
13505
13506 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
13507
13508         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
13509
13510 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
13511
13512         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
13513           from X. Only send based on ConfigureNotify if we don't have the
13514           correct location in hwnd (if the window manager moved us)
13515
13516 2006-08-28  Mike Kestner  <mkestner@novell.com>
13517
13518         * ListView.cs: remove a TODO. 
13519         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
13520         [Fixes ListView part of #79166]
13521
13522 2006-08-28  Mike Kestner  <mkestner@novell.com>
13523
13524         * ListView.cs: move wheel handler to parent since it is focused
13525         instead of the item_control now.  [Fixes #79177]
13526
13527 2006-08-28  Mike Kestner  <mkestner@novell.com>
13528
13529         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
13530         when the control is focused. [Fixes #79171]
13531
13532 2006-08-28  Mike Kestner  <mkestner@novell.com>
13533
13534         * ListView.cs: size the item and header controls for empty and
13535         unscrollable views.
13536         * ThemeWin32Classic.cs: draw disabled backgrounds.
13537         [Fixes #79187]
13538
13539 2006-08-28  Chris Toshok  <toshok@ximian.com>
13540
13541         * Form.cs: remove unused "active_form" static field.
13542
13543         * Hwnd.cs: lock around accesses to static windows collection.
13544
13545         * Application.cs: lock threads in Exit ().
13546
13547 2006-08-28  Chris Toshok  <toshok@ximian.com>
13548
13549         * NativeWindow.cs: lock around accesses to window_collection.
13550         
13551 2006-08-28  Chris Toshok  <toshok@ximian.com>
13552
13553         * Control.cs: err, fix this the right way, by locking on controls
13554         when using it.  not by making it synchronized.
13555
13556 2006-08-28  Chris Toshok  <toshok@ximian.com>
13557
13558         * Control.cs: make the static "controls" field synchronized, as it
13559         gets updated from multiple threads.
13560
13561 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
13562
13563         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
13564           Prevent other threads from exiting when calling thread sets quit state.
13565         * XEventQueue.cs: Added PostQuitState property
13566
13567 2006-08-27  Chris Toshok  <toshok@ximian.com>
13568
13569         * AsyncMethodData.cs: add a slot for the window handle.
13570
13571         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
13572         window (the destination control's window, not the foster window).
13573
13574         * Control.cs (BeginInvokeInternal): store the window's handle in
13575         the AsyncMethodData.
13576         
13577
13578 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
13579
13580         * XplatUIX11.cs:
13581           - PostQuitMessage: Removed resetting S.D display handle, we might have
13582             another loop started after calling PostQuitMessage (Fixes #79119)
13583           - Created destructor to reset S.D handle
13584
13585 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
13586
13587         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
13588
13589 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
13590
13591         * TextControl.cs (Insert): Update the caret position even if we don't
13592           have a handle yet, just don't call the driver in that case.
13593         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
13594           to the end of the new selection text (Fixes #79184)
13595
13596 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13597
13598         * Form.cs (Activate): Only activate if the handle is created)
13599         * Control.c:
13600           - Mark window as invisible when it's disposed
13601           - Check if window handle is created when setting window visible, 
13602             instead of relying just on the is_created variable
13603           - Check if object is disposed when creating the control (Fixes #79155)
13604
13605 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
13606
13607         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
13608           when allowing layout again. Otherwise we re-generate the anchoring 
13609           distance to the border again and actually alter what the user wanted
13610           This is ugly, it'd be better if we used DisplayRectangle instead of
13611           ClientRectangle for Control.UpdateDistances, but that causes us to
13612           have other problems (initial anchoring positons would be wrong)
13613           (Fixes #78835)
13614
13615 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13616
13617         * Control.cs:
13618           - The size and location setters shouldn't go directly to 
13619             SetBoundsCore, but to SetBounds, which triggers layout on the
13620             parent, then calls SetBoundsCore. (Related to fix for #78835)
13621           - SetBounds: Moved actual location update code into this function
13622             from SetBoundsCore, to match MS. Added call to PerformLayout if
13623             we have a parent (to trigger resizing of anchored parents if the 
13624             child size has changed (see testcase for #78835) 
13625         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
13626           new control code
13627         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
13628
13629 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
13630
13631         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
13632           System.Drawing when a toplevel window gets closed; there might
13633           be other toplevel windows belonging to the same app (Fixes #78052)
13634
13635 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
13636
13637         * FileDialog.cs: After reading FileDialog settings from mwf_config
13638           use Desktop prefix only if a real folder doesn't exist anymore.
13639         * FontDialog.cs: Added char sets.
13640           It is now possible to select the font, size or style with the
13641           textboxes.
13642
13643 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
13644
13645         * PrintPreviewDialog.cs: Use assembly name constants.
13646
13647 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
13648
13649         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
13650           scrollbar from whacking it's buttons)
13651
13652 2006-08-24  Chris Toshok  <toshok@ximian.com>
13653
13654         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
13655         in this patch (aggregating setting Left/Top/Width/Height to
13656         setting Bounds on the scrollbars), but the crux of the fix is in
13657         Recalculate, where we scroll by the remaining scroll_position if
13658         we're hiding a scrollbar.  The 2*$5 reward in the comment is
13659         serious.
13660
13661 2006-08-24  Jackson Harper  <jackson@ximian.com>
13662
13663         * MdiClient.cs:
13664         * MdiWindowManager.cs: If the form is made a non-mdi window we
13665         need to remove the form closed event so that closing forms works
13666         correctly.
13667
13668 2006-08-24  Jackson Harper  <jackson@ximian.com>
13669
13670         * Control.cs: Make IsRecreating internal so that the driver can
13671         check it
13672         - Temporarily remove the Hide when controls are removed, its
13673         making a whole bunch of things not work because visibility isn't
13674         getting reset elsewhere correctly
13675         * Form.cs: Need to do a full handle recreation when the mdi parent
13676         is set.
13677         * XplatUIX11.cs: If we are recreating handles don't dispose the
13678         HWNDs.  What was happening is the handles were being recreated in
13679         SendWMDestroyMessages, but then flow continued on in that method
13680         and destroyed the new handles.
13681
13682 2006-08-23  Jackson Harper  <jackson@ximian.com>
13683
13684         * Form.cs: MdiClient is always at the back of the bus
13685         * Control.cs: When the order of items in the collection is changed
13686         we need to reset the all_controls array
13687         - do the same sorta setup thats done when adding a control when a
13688         control is set on the collection.
13689
13690 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
13691
13692         * TextBoxBase.cs (get_Text): Return an empty array if our document
13693           is empty (fixes #79052)
13694
13695 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13696
13697         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
13698           on WM_SYSCHAR messages (fixes #79053)
13699
13700 2006-08-23  Chris Toshok  <toshok@ximian.com>
13701
13702         * DataGrid.cs: fix flickering when scrolling vertically.
13703
13704 2006-08-23  Chris Toshok  <toshok@ximian.com>
13705
13706         * DataGrid.cs (EndEdit): only invalidate the row header when we
13707         need to.
13708
13709 2006-08-23  Chris Toshok  <toshok@ximian.com>
13710
13711         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
13712         methods.  fixes the flicker when scrolling around.
13713
13714 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13715
13716         * FileDialog.cs: Making sure the control is created before we get a 
13717           chance to use it with BeginInvoke (Fixes #79096)
13718
13719 2006-08-23  Chris Toshok  <toshok@ximian.com>
13720
13721         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
13722         width to use when painting the rows.
13723
13724 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13725
13726         * TextBoxBase.cs:
13727           - Throw ArgumentException if a negative value is passed to SelectionLength
13728           - Update the selection end if start is moved. end needs to be always
13729             after start. (Fixes #79095)
13730           - Track selection length; MS keeps the selection length even if start
13731             is changed; reset on all other operations affection selection
13732
13733 2006-08-22  Jackson Harper  <jackson@ximian.com>
13734
13735         * TreeView.cs: Make sure both scrollbars get displayed and sized
13736         correctly when the other bar is visible.
13737         - Use the original clip rectangle for checking if the area between
13738         the two scrollbars is visible, not the viewport adjusted clipping
13739         rectangle.
13740
13741 2006-08-22  Jackson Harper  <jackson@ximian.com>
13742
13743         * Binding.cs: We don't use IsBinding because it requires the
13744         control to be created, which really shouldn't be necessary just to
13745         set a property on the control.
13746
13747 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13748
13749         * ComboBox.cs: Some CB.ObjectCollection methods must throw
13750         ArgumentNullReferenceException when the argument is null.
13751
13752 2006-08-21  Jackson Harper  <jackson@ximian.com>
13753
13754         * Timer.cs: Track the thread that the timer is started in (NOT
13755         CREATED), this way messages for it will only be triggered on its
13756         queue.
13757         * XEventQueue.cs: Track the timers here, this makes timers per
13758         thread, like MS.
13759         * XplatUIX11.cs: The timers are moved to the XEventQueue.
13760
13761 2006-08-19  Chris Toshok  <toshok@ximian.com>
13762
13763         * XplatUIX11.cs: after further communication with pdb, we get the
13764         best of both worlds.  SetZOrder working for un-Mapped windows, and
13765         no X errors for un-mapped windows.
13766
13767 2006-08-19  Chris Toshok  <toshok@ximian.com>
13768
13769         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
13770         as it was causing pdn toolbars to not have the correct stacking.
13771
13772 2006-08-18  Mike Kestner  <mkestner@novell.com> 
13773
13774         * ListView.cs : guard against negative ClientArea.Width in scrollbar
13775         calculation.  Not sure why control should ever be setting a negative
13776         width though.  Fixes #78931.
13777
13778 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13779
13780         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
13781         null items in ObjectCollection class.
13782         * ListBox.cs.: Likewise.
13783
13784 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
13785
13786         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
13787           as the base method in ThemeWin32Classic should work fine.
13788           Fixed bug #78607.
13789
13790 2006-08-18  Jackson Harper  <jackson@ximian.com>
13791
13792         * Binding.cs: When validating if the value entered doesn't convert
13793         properly reset to the old value.
13794         * RadioButton.cs: Don't fire click when we get focus.
13795
13796 2006-08-18  Jackson Harper  <jackson@ximian.com>
13797
13798         * FileDialog.cs: Paint the selection on the directory combobox the
13799         same way as on MS. 
13800
13801 2006-08-17  Jackson Harper  <jackson@ximian.com>
13802
13803         * ErrorProvider.cs: Don't allow the error control to be selected.
13804         * Control.cs: Don't send the SetFocus messages, the control
13805         activation will do this, and if we do it blindly here validation
13806         does not work.
13807
13808 2006-08-17  Jackson Harper  <jackson@ximian.com>
13809
13810         * Control.cs:
13811         * ContainerControl.cs: Make validation events fire in the correct
13812         order.  TODO: For some reason the first validation event is not
13813         getting fired.
13814
13815 2006-08-17  Mike Kestner  <mkestner@novell.com> 
13816
13817         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
13818
13819 2006-08-17  Mike Kestner  <mkestner@novell.com> 
13820
13821         * ComboBox.cs : implement scroll wheel support for popped-down
13822         state. Fixes #78945. 
13823
13824 2006-08-17  Jackson Harper  <jackson@ximian.com>
13825
13826         * TreeView.cs: Specify treeview actions (old patch that didn't get
13827         committed for some reason).
13828         - Don't let the mouse wheel scroll us too far.  Just want to make
13829         the bottom node visible, not scroll it all the ways to the top.
13830
13831 2006-08-17  Jackson Harper  <jackson@ximian.com>
13832
13833         * XplatUIX11.cs: Mouse wheel events go to the focused window.
13834
13835 2006-08-17  Mike Kestner  <mkestner@novell.com> 
13836
13837         * ComboBox.cs : don't do mouseover selection in simple mode.
13838
13839 2006-08-16  Jackson Harper  <jackson@ximian.com>
13840
13841         * Form.cs: Fire the closing events for all the mdi child windows
13842         when a window is closed.  If the cancel args are set to true, the
13843         main window still gets the event fired, but it doesn't not close.
13844         * MdiWindowManager.cs: Do this closing cleanup in a Closed
13845         handler, instead of when the button is clicked, so cancelling the
13846         close works correctly.
13847         * ComboBox.cs: Send the mouse down to the scrollbar.
13848
13849 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13850
13851         * ListBox.cs: When passing 'null' to SelectedItem,
13852         set SelectedIndex to -1, to unselect items. This is the
13853         observed behaviour in .Net.
13854
13855 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
13856
13857         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
13858           MS flags saying there won't be any. (fixes #78800)
13859         * Control.cs (HandleClick): Made virtual
13860
13861 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
13862
13863         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
13864           cultures. Fixed bug #78399.
13865
13866 2006-08-16  Jackson Harper  <jackson@ximian.com>
13867
13868         * Form.cs: Use the MdiClients MdiChildren property to access
13869         MdiChildren instead of creating the array from the child controls.
13870         * MdiClient.cs: Maintain a separate array of the mdi children, so
13871         that insertion order is maintained when the Z-order is changed.
13872
13873 2006-08-16  Mike Kestner  <mkestner@novell.com> 
13874
13875         * ListView.cs : add an ItemComparer and default to it for sorting.
13876         Fixes #79076, but sorting needs a complete overhaul to be compat with
13877         MS.
13878
13879 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
13880
13881         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
13882
13883 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13884
13885         * Hwnd.cs (Mapped): Properly traverse the tree
13886
13887 2006-08-15  Chris Toshok  <toshok@ximian.com>
13888
13889         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
13890         pass manager.Current.GetType() to ParseData.  It has to be the
13891         property type.  So, hold off doing the ParseData until we're in
13892         SetPropertyValue where we know the type.  This fixes the crash in
13893         #78821 but the textbox is still empty.
13894
13895 2006-08-15  Chris Toshok  <toshok@ximian.com>
13896
13897         * DataGrid.cs:
13898         - when we're scrolling, only call Edit() again if the
13899         current cell is still unobscured. Fixes bug #78927.
13900         - when handling mousedown on a cell, ensure the cell is visible
13901         before calling Edit.
13902         - remove the properties from DataGridRow, and remove the
13903         DataGridParentRow class altogether.
13904         
13905
13906 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13907
13908         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
13909           fire OnTextChanged by ourselves. There's no point calling base,
13910           we don't set the base value anywhere else. Fixes #78773.
13911
13912 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13913
13914         * ListBox.cs: Call CollectionChanged when modifying
13915         an item from Items indexer, to update the actual items
13916         in the list box.
13917
13918 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13919
13920         * PrintDialog.cs: Small fixes for focus and a pair of checks,
13921         to match .Net behaviour.
13922
13923 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13924
13925         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
13926
13927 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
13928
13929         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
13930
13931 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13932
13933         * MessageBox.cs: Prevent potential NRE exception.
13934         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
13935
13936 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
13937
13938         * MessageBox.cs: Calculate the owner of a messagebox, also make
13939           it topmost. Fixes #78753
13940
13941 2006-08-14  Chris Toshok  <toshok@ximian.com>
13942
13943         * XplatUIX11.cs: A couple of fixes so that metacity will let us
13944         programmatically move windows.  first, set the PPosition hint as
13945         well as the USPosition hint.  Second include some code from pdb
13946         that sets the window type to NORMAL when we set the transient for
13947         hint.  This is because, in the absence of a window type, metacity
13948         thinks any window with TransientFor set is a dialog, and refuses
13949         to let us move it programmatically.  fascists.
13950
13951 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
13952
13953         * XplatUIX11.cs: When setting normal hints, take into consideration
13954           an different hints previously set so we don't delete them (fixes #78866)
13955
13956 2006-08-12  Chris Toshok  <toshok@ximian.com>
13957
13958         * ToolBarButton.cs: make Layout return a boolean, if something to
13959         do with the button's layout changed.
13960
13961         * ToolBar.cs:
13962         - add another parameter to Redraw, @force, which all existing
13963           calls set to true.
13964         - make the Layout function return a boolean which is true if the
13965           layout has actually changed.  Redraw now uses this (and @force)
13966           to determine when to invalidate.  At present the only place
13967           where @force can be false is the call from OnResize, when
13968           background_image == null.  So, resizing a toolbar when the
13969           layout doesn't change results in no drawing.
13970
13971 2006-08-12  Chris Toshok  <toshok@ximian.com>
13972
13973         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
13974         the VScrollBar and HScrollbar reversed.  oops.
13975
13976         * DataGrid.cs: fix the logic that assigns sizes to the implicit
13977         scrollbars.  we were assigning them twice (once in
13978         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
13979         therefore causing two scrollbar resizes (and redraws?) to happen
13980         per grid resize.
13981
13982 2006-08-12  Chris Toshok  <toshok@ximian.com>
13983
13984         * ToolBarButton.cs: redraw the entire button if the theme tells us
13985         to.
13986
13987         * Theme.cs: add ToolBarInvalidateEntireButton.
13988
13989         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
13990         buttons, just the border.
13991
13992         * ThemeNice.cs: redraw the entire toolbar button since we need to
13993         draw the highlight image.
13994
13995         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
13996         we need to redraw the entire button (not just the border).
13997
13998 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
13999
14000         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
14001           for vertical bars. Fixes the mismatches shown by #78513
14002
14003 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
14004
14005         * FileDialog.cs: If a saved/remembered path doesn't exist
14006           anymore, fall back to "Desktop".
14007
14008 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
14009
14010         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
14011           parent. It's apparently legal to not have one
14012         * XplatUIX11.cs:
14013           - SetZOrder: Don't try to set Z-Order on an unmapped window
14014           - CreateWindow: 0,0 are legal coordinates for a window. don't move
14015             it unless the coordinates are negative
14016
14017 2006-08-10  Mike Kestner  <mkestner@novell.com>
14018
14019         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
14020         when setting to null per msdn docs.  Fixes #78854.
14021
14022 2006-08-10  Chris Toshok  <toshok@ximian.com>
14023
14024         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
14025         flickering by setting a clip rectangle on the Graphics when we
14026         need to redraw just a particular menuitem.  Also, rename "OnClick"
14027         to "OnMouseDown" to reflect what it actually is.
14028         
14029         * Form.cs: track the OnMouseDown change.
14030
14031 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
14032
14033         * CommonDialog.cs: Properly inherit the CreateParams from the form
14034           and only change what we need. Fixes #78865
14035
14036 2006-08-10  Chris Toshok  <toshok@ximian.com>
14037
14038         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
14039         flickering in flat mode (and most of the flickering in general) by
14040         only invalidating the button border (and not the entire rectangle)
14041         when the state changes.  A couple of cases still flicker:
14042         ToggleButtons, and the dropdown arrow case when the user mouse
14043         ups.
14044
14045 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
14046
14047         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
14048           for german keyboards. Numlock state shouldn't affect the behaviour
14049           of the Del key. Fixes bug #78291.
14050
14051 2006-08-10  Chris Toshok  <toshok@ximian.com>
14052
14053         * ListControl.cs: remove the items.Clear line from BindDataItems,
14054         as this is the first thing done by both subclasses in their
14055         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
14056         passed -1, refresh the list.  This gets databinding working when
14057         the datasource is set on the list before the datasource is
14058         populated (as in wf-apps/ReportBuilder.)
14059
14060         * ComboBox.cs: remove the argument to BindDataItems.  This call
14061         should really go away, and be initiated by the ListControl code.
14062
14063         * ListBox.cs: same.
14064
14065 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
14066
14067         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
14068           if no data is in the document when the control is displayed
14069
14070 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
14071
14072         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
14073           yes (fixes #78806)
14074         * TextControl.cs: 
14075           - PositionCaret: Allow positioning of caret but don't call methods 
14076             requiring a handle if the window isn't created yet
14077           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
14078           - owner_HandleCreated: Don't position the caret, just update it's 
14079             location. User might have already set a different position
14080
14081 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
14082
14083         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
14084           windows. Screws up the returned coordinates for child windows. 
14085           Fixes #78825. I'm hoping this doesn't break something, since the
14086           code was explicitly put in 8 months ago, but no bug was attached.
14087           Menus still seem to work properly.
14088
14089 2006-08-08  Chris Toshok  <toshok@ximian.com>
14090
14091         * DataGrid.cs: make BeginInit/EndInit actually do what they're
14092         supposed to do - delay data binding until the EndInit call.  Also,
14093         make the table style collection's CollectionChangeAction.Refresh
14094         work properly.
14095
14096         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
14097         (with action = Refresh) when a consituent table's MappingName is
14098         changed.
14099
14100 2006-08-08  Chris Toshok  <toshok@ximian.com>
14101
14102         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
14103         Invalidate, since changing the text can change the size of the all
14104         toolbar buttons.
14105
14106 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
14107
14108         * Form.cs (AddOwnedForm): Still need to add the form to our listif
14109           we don't have it yet
14110
14111 2006-08-08  Chris Toshok  <toshok@ximian.com>
14112
14113         * PrintControllerWithStatusDialog.cs: don't .Close() the status
14114         dialog, as this causes X errors later on, since we actually
14115         destroy the window.  Instead, .Hide() it.
14116
14117 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
14118
14119         * ComboBox.cs: Added focus reflection for popup window
14120         * XplatUIX11.cs: 
14121           - Removed transient setting for non-app windows for now, not sure it
14122             was needed
14123           - Fixed logic checking if we have captions when deciding 
14124             override_redirect, WS_CAPTION is two bits and a 0 check was not
14125             sufficient
14126           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
14127             complicated
14128         * Form.cs: 
14129           - AddOwnedForm: Don't just add the form to the list, call the property
14130             to ensure the driver is informed about the ownership as well
14131           - CreateHandle: Set the TopMost status in the driver if we have an owner
14132         * XplatUI.cs: Fixed debug statement
14133
14134 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
14135         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
14136           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
14137           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
14138           TrackBarRenderer.cs: Make constructor private.
14139         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
14140         * ProfessionalColorTable.cs: Make properties virtual.
14141
14142 2006-08-06  Duncan Mak  <duncan@novell.com>
14143
14144         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
14145         is not changing.
14146
14147 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
14148         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
14149           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
14150           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
14151           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
14152           Initial import of new 2.0 classes.
14153
14154 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
14155         * Application.cs: Add 2.0 VisualStyles properties.
14156
14157 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
14158         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
14159           XplatUIX11.cs: Create property to allow access to existing private
14160           variable "themes_enabled"
14161
14162 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14163
14164         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
14165         file size, as otherwise our class libraries fail using windows. Fixes
14166         bug #78759.
14167
14168 2006-08-04  Jackson Harper  <jackson@ximian.com>
14169
14170         * Form.cs:
14171         * XplatUIX11.cs: Move the toolwindow window manager creation into
14172         the X11 driver, this way on win32 we can let windows create/handle
14173         the toolwindows.
14174
14175 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14176
14177         * PrintDialog.cs: Remove some redundant checks, add some others,
14178         clean some code, and move the focus to the text boxes when the
14179         values are incorrect.
14180
14181 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
14182
14183         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
14184
14185 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
14186
14187         * NumericUpDown.cs: Setting the Minimum and Maximum is now
14188           handled correctly. Fixes bug #79001.
14189
14190 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14191
14192         * PrintDialog.cs: The "Copies" numeric up down must have
14193         set the Minimum property to 1; only if the value is bigger
14194         than 1, activate "Collate" check box. This is the behaviour of .Net.
14195         Also modify the Document elements only if it is not null.
14196
14197 2006-08-03  Jackson Harper  <jackson@ximian.com>
14198
14199         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
14200         length. (We have a larger array then actual node count).
14201                 
14202 2006-08-03  Jackson Harper  <jackson@ximian.com>
14203
14204         * ComboBox.cs: Don't show selection by default.
14205         - The SelectAll isn't needed here, since the focus code should do
14206         that
14207         - DDL style lists to manual selection drawing, so when they
14208         get/lose focus they have to invalidate.
14209
14210 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
14211
14212         * TextBoxBase.cs: Don't always show all selections by default.
14213
14214 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
14215         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
14216           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
14217           Fixed various typos.
14218
14219 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
14220
14221         * Control.cs: Removing the controls in a ControlCollection with
14222           Clear now hides the controls as expected. Fixes bug #78804. 
14223
14224 2006-08-03  Jackson Harper  <jackson@ximian.com>
14225
14226         * Control.cs: Revert previous focus patch, it breaks reflector.
14227
14228 2006-08-03  Jackson Harper  <jackson@ximian.com>
14229
14230         * ComboBox.cs: Cleanup selection and focus with the combobox.
14231         This also eliminates some duplicated keyboard code, since now
14232         everything is handled by the main class.
14233         - Make list selection work on mouse up instead of down, to match
14234         MS.
14235
14236 2006-08-02  Jackson Harper  <jackson@ximian.com>
14237
14238         * Control.cs: Setting focus needs to go through the whole
14239         selection mechanism.
14240
14241 2006-08-02  Chris Toshok  <toshok@ximian.com>
14242
14243         * PrintPreviewDialog.cs: change MinimumSize to use
14244         base.MinimumSize so it works.
14245
14246 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
14247
14248         * TextControl.cs:
14249           - UpdateCaret: Added sanity check in case caret isn't defined yet
14250           - Line.Delete: Now updating selection and caret markers if we're
14251             transfering a node (Properly fixes #78323)
14252           - SetSelectionEnd: Added sanity check
14253         * TextBoxBase.cs: Removed broken attempt to fix #78323
14254
14255 2006-08-01  Chris Toshok  <toshok@ximian.com>
14256
14257         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
14258         Close() call is handled in Form, not here.
14259
14260 2006-08-01  Chris Toshok  <toshok@ximian.com>
14261
14262         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
14263         layout/rendering.
14264
14265         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
14266         for sizes < 100% zoom.  The code now aggressively attempts to keep
14267         from calling document.Print (), and tries not to use the scaling
14268         g.DrawImage whenever possible (it still does if you scale to >
14269         100%, since usually that involves huge images).
14270
14271         * PrintPreviewControl.cs: hook up the close button.
14272
14273 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
14274         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
14275           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
14276           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
14277           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
14278           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
14279           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
14280           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
14281           Removed [Serializable] for 2.0 Event Handlers.
14282
14283 2006-07-31  Jackson Harper  <jackson@ximian.com>
14284
14285         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
14286         * TextControl.cs: Uncomment out the body of this method.
14287
14288 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
14289
14290         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
14291           standard cursors.
14292
14293 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
14294
14295         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
14296           that embed TextBox and need selections visible even if textbox is not
14297           focused to enforce that behaviour.
14298         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
14299           selection drawing
14300
14301 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
14302
14303         * TextControl.cs:
14304           - Added new SetSelectionStart/SetSelectionEnd overloads
14305           - Fixed viewport width assignment to be accurate
14306           - Adjusted alignment line shift calculations to allow cursor on right
14307             aligned lines to be always visible at the right border (like MS)
14308         * TextBoxBase.cs:
14309           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
14310           - TextBoxBase_SizeChanged: recalculating canvas on size changes
14311           - CalculateScrollBars: Use ViewPort size instead of window size, to
14312             properly consider space occupied by the border and scrollbars 
14313             (Fixes #78661)
14314           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
14315             calculations; no longer leaves artifacts
14316           - CaretMoved: Adjusted window scrolling to match MS and fixed several
14317             calculation bugs (Still missing right/center align calculations)
14318
14319 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
14320
14321         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
14322           use of both scroll rect and clip rect, as they do the same.
14323
14324 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
14325
14326         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
14327           in the event handler (fixes #78912)
14328
14329 2006-07-31  Chris Toshok  <toshok@ximian.com>
14330
14331         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
14332         grid.ListManager.Count, since grid.ListManager might be null.
14333         This of course begs the question "why are we drawing rows for a
14334         grid with no list manager (and therefor no rows)?"  Fixes the
14335         crash in bug #78929.
14336
14337 2006-07-31  Chris Toshok  <toshok@ximian.com>
14338
14339         * RelatedPropertyManager.cs: Don't always chain up to the parent
14340         ctor.  instead, call SetDataSource if the parent's position is !=
14341         -1.  Fixes the crash in #78822.
14342
14343 2006-07-31  Chris Toshok  <toshok@ximian.com>
14344
14345         * DataGrid.cs (get_ListManager): use field instead of property
14346         accessors for datasource and datamember.
14347         (RowsCount): make internal again.
14348         (OnMouseDown): end edits before resizing columns/rows.
14349         (OnMouseUp): restart edits after resizing columns/rows.
14350
14351 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
14352
14353         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
14354           This fixes the situation where the last set cursor is displayed
14355           whenever the mouse is over scrollbars.
14356
14357 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14358
14359         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
14360         Document properties, as well as initial values.
14361
14362 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
14363
14364         * XplatUIWin32.cs (SetBorderStyle): Setting both border
14365           and ClientEdge results in a 3-pixel border, which is
14366           wrong.
14367
14368 2006-07-28  Jackson Harper  <jackson@ximian.com>
14369
14370         * TreeNodeCollection.cs: Fix the clear method.
14371         - Fix the Shrink also
14372
14373 2006-07-27  Jackson Harper  <jackson@ximian.com>
14374
14375         * TreeView.cs: Make sure the visible order is computed when we
14376         attempt to size the scrollbars (for trees that mess with the
14377         scrolling when they shouldn't.
14378         - Make sure to give the scrollbars valid values.
14379
14380 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
14381
14382         * XplatUIX11.cs: Move motion compression code to where it
14383           has less performance impact
14384
14385 2006-07-26  Jackson Harper  <jackson@ximian.com>
14386
14387         * UpDownBase.cs: When the control is selected make the child
14388         controls non selectable, so that a click on them won't do a
14389         focus/unfocus cycle.
14390         - Don't give focus to the text box when the spinner is selected.
14391         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
14392
14393 2006-07-26  Chris Toshok  <toshok@ximian.com>
14394
14395         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
14396         satisfied with this solution.  If the bitmaps are small, we should
14397         just cache them in the PrintPreviewDialog and draw them here.
14398         Also, the layout is broken for the 2-up and 3-up cases.
14399
14400         * Theme.cs: add PrintPReviewControlPaint.
14401
14402         * PrintPreviewDialog.cs: first pass implementation.
14403
14404         * PrintPreviewControl.cs: first pass implementation.  No
14405         scrollbars yet.
14406
14407         * PrintDialog.cs: only validate fields if that particular portion
14408         of the UI is enabled.  Also, set the document's controller to a
14409         PrintControllerWithStatusDialog wrapping the document's print
14410         controller.
14411
14412         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
14413         bring up a SaveFileDialog (i hope we don't want to match the
14414         behavior of the crappy windows file entry) and set the
14415         PrinterSettings.PrintFileName accordingly.
14416
14417 2006-07-26  Jackson Harper  <jackson@ximian.com>
14418
14419         * ContainerControl.cs: Add a field that disables auto selecting
14420         the next control in a container when the container is activated.
14421         * UpDownBase.cs: Don't select the text box when the up down is
14422         selected.
14423
14424 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
14425
14426         * XEventQueue.cs: Added methods for peeking (used for compression
14427           of successive events)
14428         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
14429           mouse move events (fixes #78732)
14430
14431 2006-07-25  Jackson Harper  <jackson@ximian.com>
14432
14433         * UpDownBase.cs: Use an internal class for the textbox so that we
14434         can control focus.  the updown control should always have focus,
14435         if either the text area or the buttons are clicked.
14436         - Send the key messages to the textbox, since it never actually
14437         has focus
14438         - Activate and decativate the textbox caret.
14439
14440 2006-07-24  Jackson Harper  <jackson@ximian.com>
14441
14442         * Control.cs: Use the directed select when selecting a control,
14443         this way the container controls override will get called and the
14444         whole ActiveControl chain will get triggered.  TODO: probably need
14445         to make sure this gets done everywhere instead of the old
14446         Select(Control).
14447         * ContainerControl.cs: Implement the directed Select method to
14448         find and activate the correct child control.    
14449         
14450 2006-07-22  Mike Kestner  <mkestner@novell.com>
14451
14452         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
14453         menu handling code so that clicks without a grab work too.
14454         [Fixes #78914]
14455
14456 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
14457
14458         * FileDialog.cs: Enable the BackButton when dirstack has one element.
14459           Added some small optimizations.
14460
14461 2006-07-21  Matt Hargett  <matt@use.net>
14462
14463         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
14464
14465 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
14466
14467         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
14468           tests pass and match MS in some strange border cases.
14469
14470 2006-07-21  Chris Toshok  <toshok@ximian.com>
14471
14472         * ThemeWin32Classic.cs: handle drawing of the relation links and
14473         parent row buttons.
14474
14475         * Theme.cs: change args to DataGridPaintParentRow.
14476
14477         * DataGrid.cs: Don't use controls for the relation links and
14478         parent buttons, so we have to handle all their interactions in
14479         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
14480         when we're navigating through child tables, so we can reinstate
14481         selection, expanded state, current cell, etc.
14482
14483 2006-07-20  Chris Toshok  <toshok@ximian.com>
14484
14485         * ToolBar.cs: When we redraw a button, for whatever reason,
14486         there's no reason to redraw the entire toolbar.  Also, don't call
14487         Control.Refresh from within Redraw, as it's much heavier than
14488         Invalidate (which is really what we want).
14489
14490 2006-07-20  Chris Toshok  <toshok@ximian.com>
14491
14492         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
14493         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
14494         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
14495         traces from within a debug IBindingList datasource
14496         (in mono/winforms/datagrid) for *days*, I've finally gotten things
14497         to work in a similar fashion.
14498
14499 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14500
14501         * ListBox.cs: Don't call Sort () when setting 
14502         the Sorted property to false (avoid an unnecessary sort).
14503
14504 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14505
14506         * ListControl.cs: DataSource should throw an ArgumentException
14507         instead of a normal exception when the argument is not of the 
14508         correct type.
14509
14510 2006-07-20  Mike Kestner  <mkestner@novell.com>
14511
14512         * Control.cs: add InternalPreProcessMessage to allow us to steal
14513         key events before MWF gets its paws on them.  Adapted from a
14514         suggestion by eno.
14515         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
14516         up/down/left/right navigation. Override the new internal control
14517         method to steal the events since they never make it to WndProc.
14518         * ToolBarButton.cs: don't worry about pushed when setting hilight
14519         since the drawing code prefers pushed to hilight. Invalidate on 
14520         Hilight changes. Fixes #78547 and #78525.
14521
14522 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
14523
14524         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
14525           the canvas size. Fixes #78868
14526
14527 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
14528
14529         * Splitter.cs: Track requested split position until first layout
14530           is performed. Fixes #78871
14531
14532 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
14533
14534         * Application.cs: Removed code that forces 1.x for the version
14535           number if the version started with 0. Not sure why that code was
14536           there and I couldn't find any bugs that indicated we needed it.
14537           Fixes #78869
14538
14539 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
14540
14541         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
14542           ResetDefaults(), just write some output to the console until it's
14543           implemented. Fixes bug #78907 for now. Eliminated two warnings.
14544
14545 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
14546
14547         * PropertyGridView.cs: set StartPosition of drop down forms
14548         so they appear in correct initial spot.  Fixes #78190.
14549
14550 2006-07-19  Mike Kestner  <mkestner@novell.com>
14551
14552         * ThemeWin32Classic.cs: use parent background color when drawing
14553         flat toolbars.  Restructure the conditionals to make sure non-flat
14554         non-Divider toolbars are filled too.  Fixes #78837.
14555
14556 2006-07-19  Mike Kestner  <mkestner@novell.com>
14557
14558         * ListBox.cs: Sort on collection changes even if the handle
14559         isn't created yet.  Fixes #78813.
14560
14561 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14562
14563         * ListControl.cs: DisplayMember should never be null,
14564         and now we assign String.Empty when null is passed to it (this
14565         is the .Net way).
14566
14567 2006-07-17  Mike Kestner  <mkestner@novell.com>
14568
14569         * ListViewItem.cs: restructure Font and subitem Font handling 
14570         to hold a specific font and refer back to owner on null.
14571         Fixes #78761.
14572
14573 2006-07-17  Mike Kestner  <mkestner@novell.com>
14574
14575         * ToolBar.cs: bandaid for side-effect of previous patch which was
14576         discarding explicit heights for non-AutoSize toolbars.  Need to
14577         extend my format tester to deal with AutoSize=false. Fixes #78864.
14578
14579 2006-07-15  Jackson Harper  <jackson@ximian.com>
14580
14581         * LabelEditTextBox.cs:
14582         * TreeView.cs: Use a new LabelEdit class for node editing, this
14583         class automatically 'closes' itself when it gets the enter key or
14584         loses focus.
14585         - Use the client rectangle when setting the trees scrollbars, so
14586         border style is taken into account.
14587         
14588 2006-07-14  Jackson Harper  <jackson@ximian.com>
14589
14590         * TreeNode.cs:
14591         * TreeView.cs: Make the editing work similar to MSs, firing the
14592         events correctly and ending edits correctly.
14593
14594 2006-07-14  Mike Kestner  <mkestner@novell.com>
14595
14596         * ToolBarButton.cs:
14597         * ToolBar.cs: layout restructuring and redraw enhancements to support
14598         formatting changes gracefully, like setting TextAlign, ImageList, 
14599         ButtonSize, and Appearance.  Handles explicit button sizing quirks
14600         of the MS controls.  Things like flat toolbars ignoring button size
14601         but becoming constant sized at the largest button's size.  Normal
14602         toolbars with an image set cannot be shrunk smaller than the image,
14603         but text can be clipped/ignored.
14604         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
14605         is zero.  Seems like DrawString should be smart enough to not put
14606         anything on screen though. Also trim labels and ellipsize at the char
14607         boundary, not word.
14608         Fixes #78711 and #78483.
14609
14610 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
14611
14612         * FolderBrowserDialog.cs: Disable "New Folder" button and
14613           "New Folder" contextmenu menuitem if a folder like "My Computer"
14614           is selected.
14615
14616 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
14617
14618         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
14619         * FolderBrowserDialog.cs:
14620           - Use MWFConfig to store and read size and position settings
14621           - Added code to create a new folder (button or context menu).
14622             Use TreeView labeledit to change the name of the new folder.
14623
14624 2006-07-14  Jackson Harper  <jackson@ximian.com>
14625
14626         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
14627         when the tree is scrolled we end editing.
14628
14629 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
14630
14631         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
14632           Down arrows
14633
14634 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
14635
14636         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
14637         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
14638         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
14639         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
14640         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
14641         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
14642         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
14643         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
14644         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
14645         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
14646         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
14647         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
14648         ListViewItemSelectionChangedEventHandler.cs,
14649         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
14650         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
14651         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
14652         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
14653         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
14654         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
14655         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
14656         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
14657         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
14658         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
14659         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
14660         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
14661         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
14662         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
14663         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
14664         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
14665         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
14666         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
14667         WebBrowserNavigatingEventHandler.cs, 
14668         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
14669
14670 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
14671
14672         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
14673         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
14674         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
14675         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
14676         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
14677         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
14678         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
14679         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
14680         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
14681         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
14682         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
14683         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
14684         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
14685         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
14686         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
14687         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
14688         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
14689         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
14690         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
14691         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
14692         ListViewItemStates.cs, MaskFormat.cs: Added
14693
14694 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
14695
14696         * PropertyGridView.cs: Fix keyboard navigation of drop down.
14697         Patch from eno for bug 78558.
14698         
14699 2006-07-13  Jackson Harper  <jackson@ximian.com>
14700
14701         * TreeView.cs: When an edit is finished make sure that the
14702         selected node is visible.
14703         - When setting the top/bottom use the scrollbars is_visible, so
14704         everything will be set correctly even if the tree isn't visible
14705         yet.
14706
14707 2006-07-13  Jackson Harper  <jackson@ximian.com>
14708
14709         * ComboBox.cs: Revert the item->index part of my previous patch.
14710         * TreeView.cs: Use LostFocus instead of Leave for detecting when
14711         the edit box has lost focus (duh).
14712         - Just make the edit box not visible when we get return, that will
14713         take the focus, which will call EndEdit
14714         * TreeNode.cs When we start editing, notify the treeview.
14715
14716 2006-07-12  Jackson Harper  <jackson@ximian.com>
14717
14718         * ComboBox.cs: Clear out old items before setting the item list.
14719         This prevents databound controls from having their items added
14720         twice.
14721         - Switch the combobox to use indices whereever possible instead of
14722         using Item's.  This allows usto navigate through lists that have
14723         more then one item with the same string value (ie a, b, b, a).
14724         - Scroll the listboxes scrollbar when a non visible item is
14725         highlighted
14726         - Allow keypress to cycle through all the possible values. For
14727         example if you have b1, b2, b3 and hold down the B key all the
14728         values will be cycled through.
14729         
14730 2006-07-12  Jackson Harper  <jackson@ximian.com>
14731
14732         * TextBoxBase.cs:
14733         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
14734         this using the internal methods.
14735         * Control.cs: Add OnGotFocusInternal.  A new method that allows
14736         controls to "override" OnGotFocus and change focus behavior if
14737         needed.
14738         - Same thing for LostFocus
14739         * ComboBox.cs: Pass off focus to the text control properly.
14740
14741 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
14742
14743         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
14744         * FolderBrowserDialog.cs: Almost a complete rewrite.
14745           - Better support for Environment.Specialfolders
14746           - Added support for MWFVFS
14747           - Made setting SelectedPath work
14748
14749 2006-07-12  Jackson Harper  <jackson@ximian.com>
14750
14751         * Control.cs: Optimze getting all the controls.
14752
14753 2006-07-11  Jackson Harper  <jackson@ximian.com>
14754
14755         * ContainerControl.cs: Override SETFOCUS in the container control,
14756         so that it is not selected on mouse click.
14757
14758 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
14759
14760         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
14761           Hopefully we will have a better way once all of focus is complete.
14762
14763 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
14764
14765         * ThemeWin32Classic.cs: Commented out some debug code and fixed
14766           a compile error with csc.
14767
14768 2006-07-11  Jackson Harper  <jackson@ximian.com>
14769
14770         * Control.cs: When hiding a control only select the next control
14771         if the current control was focused.
14772         - Don't handle enter/leave when setting/killing focus, this is
14773         done by the container control.
14774         - Remove is_selected, it's not needed anymore.
14775         - Add utility methods for selecting a child control, and for
14776         firing the Enter/Leave events.
14777         * ContainerControl.cs: When a control is activated fire the
14778         enter/leave events.
14779         - Don't wrap when processing the tab key, so that focus can be
14780         moved outside of the container.
14781         - Use the correct active control
14782
14783 2006-07-11  Jackson Harper  <jackson@ximian.com>
14784
14785         * ComboBox.cs: Remove some debug code that was blinding me.
14786         * UpDownBase.cs: These controls actually aren't implicit, they are
14787         visible to the user.
14788
14789 2006-07-10  Chris Toshok  <toshok@ximian.com>
14790
14791         * DataGrid.cs: move back to the is_adding boolean field.  god i
14792         hate this is_editing/is_adding/is_changing stuff.
14793
14794 2006-07-10  Chris Toshok  <toshok@ximian.com>
14795
14796         * DataGridTableStyle.cs: just check if the property type is bool.
14797         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
14798         Don't use CanRenderType.
14799
14800         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
14801         if our text == NullText.  Remove CanRenderType.
14802
14803         * DataGridBoolColumn.cs: nuke CanRenderType.
14804
14805         * DataGrid.cs: reenable some code to end the current edit inside
14806         of set_CurrentCell.  This fixes the other 1.1.16 regression.
14807         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
14808         Also, remove the visible_row_count arg from CalcRowHeaders, since
14809         we don't need to worry about the actual height of the area.
14810
14811 2006-07-10  Chris Toshok  <toshok@ximian.com>
14812
14813         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
14814         mode, just return.
14815
14816         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
14817         the real sense of the IsInEditOrNavigateMode property (true =
14818         navigate, false = edit).  Also, update OnKeyPress to reflect this.
14819
14820         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
14821         column style exists, we still need to set its property descriptor
14822         to match up with our list manager.
14823
14824 2006-07-10  Chris Toshok  <toshok@ximian.com>
14825
14826         * ThemeWin32Classic.cs: implement the new row/header painting
14827         approach.  The parent row painting will likely go away and
14828         replaced with label controls, but the rest seems to work ok (and
14829         efficiently).
14830
14831         * Theme.cs: change the way we draw datagrid rows.  we don't draw
14832         the row headers as a block now.  Instead we draw them in the
14833         normal draw-row loop.  Add some calls for drawing parent rows and
14834         relation rows.
14835
14836         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
14837         a default table style.  Set the defaults from ThemeEngine.Current,
14838         not SystemColors.  Fix lots of misc issues with property setters.
14839
14840         * DataGrid.cs: move loads of style information out of this class
14841         as it's being duplicated with DataGridTableStyle.  keep track of a
14842         special DataGridTableStyle for the properties we used to mirror
14843         here.  Switch all the style properties to access this table style
14844         instead of instance fields of this class.  Also add a internal
14845         class to represent parent rows (more needs to be stored here, like
14846         the selection state from the parent table, as well as the
14847         expansion state.)  Also, for datasources with relations, do the
14848         right thing for collapse/expand, and add support for the
14849         navigation/parent row buttons.
14850
14851         Lastly, fix the crash in the 1.1.16 build.
14852
14853         * GridTableStylesCollection.cs: make the explicit interface
14854         implementations call the class's methods as opposed to duplicating
14855         them.
14856
14857         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
14858         0 so the text doesn't jump around when we move the cursor.
14859
14860 2006-07-10  Jackson Harper  <jackson@ximian.com>
14861
14862         * TextBoxBase.cs:
14863         * ListBox.cs: Match MS's ToString (this makes debugging focus
14864         stuff infinitely easier).
14865
14866 2006-07-10  Jackson Harper  <jackson@ximian.com>
14867
14868         * Control.cs (SelectNextControl): When checking the control's
14869         parent use this instead of ctrl.parent so that null can be passed
14870         to SelectNextControl. (I have unit tests for this).
14871         - Remove unused var.
14872
14873 2006-07-10  Chris Toshok  <toshok@ximian.com>
14874
14875         * CurrencyManager.cs: correct one regression, the removal of the
14876         finalType field.  Also, add a MonoTODO on CanAddRows, implement
14877         Refresh() correctly, and fix some event emission in
14878         ListChangedHandler.
14879
14880 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
14881
14882         * FileDialog.cs: Don't use brackets for new folders if they exist
14883           under *nix. Instead use -(number of existing folders +1).
14884
14885 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
14886
14887         * FileDialog.cs:
14888           - Fixed really nasty bug #78771
14889           - Don't block the whole GUI when reading directories with a lot of
14890             entries. Use an other thread instead and call BeginInvoke to
14891             update the ListView in MWFFileView
14892
14893 2006-07-07  Chris Toshok  <toshok@ximian.com>
14894
14895         * Control.cs (Dispose): release any Capture when disposing.
14896
14897 2006-07-07  Chris Toshok  <toshok@ximian.com>
14898
14899         * LinkLabel.cs (Select): if we chain up to the parent, set
14900         focused_index to -1 so we'll search for the first available link
14901         the next time the user tabs into us.  Also, if the direction is
14902         backward and focused_index == -1, start the search from the last
14903         element.
14904
14905 2006-07-07  Chris Toshok  <toshok@ximian.com>
14906
14907         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
14908         is beyond the end of the text, don't do anything.
14909         (CreateLinkPieces): set our ControlStyles.Selectable based on
14910         whether or not we have any links.
14911         (Link.Invalidate): use a loop instead of foreach.
14912         (Link.set_Start): null out owner.sorted_links so it'll be
14913         recreated by CreateLinkPieces.
14914
14915 2006-07-06  Chris Toshok  <toshok@ximian.com>
14916
14917         * LinkLabel.cs: revert the SetStyle change.
14918
14919 2006-07-06  Chris Toshok  <toshok@ximian.com>
14920
14921         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
14922         (OnEnableChanged): s/Refresh/Invalidate
14923         (OnGotFocus): if we have a focused index already, refocus it (so
14924         if we mouse out/in to the window it'll focus the right link).
14925         (OnKeyDown): move the tab handling out of here.
14926         (OnLostFocus): don't set focused_index to -1, so we can refocus it
14927         when we lose focus.
14928         (OnMouseDown): don't Capture here - Control handles it.  Also,
14929         focus the active link.
14930         (OnMouseUp): don't deal with Capture.
14931         (OnPaintBackgroundInternal): remove.
14932         (OnTextAlignChanged): CreateLinkPieces before calling the
14933         superclass's method.
14934         (OnTextChanged): call CreateLinkPieces before calling superclass's
14935         method.
14936         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
14937         move around.
14938         (Select): implement this, moving the selection between different
14939         links, and call parent.SelectNextControl if we don't have another
14940         link to focus in the given direction.
14941         (CreateLinkPieces): call Invalidate instead of Refresh.
14942         
14943 2006-07-06  Chris Toshok  <toshok@ximian.com>
14944
14945         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
14946         new LinkLabel internals.
14947
14948         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
14949         over pieces looking for active/focused/etc links.  also, deal with
14950         runs of text (and links) with embedded \n's in them, and use
14951         MeasureCharacterRanges instead of MeasureString to figure out the
14952         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
14953         two-step.
14954
14955 2006-07-04  Jackson Harper  <jackson@ximian.com>
14956
14957         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
14958         XKB or key auto repeat, do it manually.  Without key auto repeat,
14959         when a key is held down we get key press, key release, key press,
14960         key release, ... with auto repeat we get key press, key press, key
14961         press ..., and then a release when the key is actually released.
14962
14963 2006-07-03  Jackson Harper  <jackson@ximian.com>
14964
14965         * TabControl.cs:
14966         * ThemeWin32Classic.cs: Tabs do not obey normal background color
14967         rules, they are always control color regardless of the background
14968         color.
14969
14970 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
14971
14972         * FileDialog.cs: Added internal class MWFConfig.
14973           Removed Registry support and replaced it with support for the new
14974           MWFConfig class. See MWFConfig comments for more information.
14975
14976 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
14977
14978         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
14979           rectangle. Added some patches from eno from bug #78490 and fixed
14980           the arrow position for small up and down CPDrawScrollButtons.
14981
14982 2006-06-30  Jackson Harper  <jackson@ximian.com>
14983
14984         * InternalWindowManager.cs: Remove some debug code.
14985         * Form.cs: When an MdiParent is set to null, the window is
14986         "detatched" and becomes a normal window.
14987         * MdiClient.cs: Don't bring the new child form to the front until
14988         it is activated (setting it as active does this), this makes the
14989         previously active forms titlebar get redrawn as inactive.
14990
14991 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
14992
14993         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
14994           with later controls
14995
14996 2006-06-29  Mike Kestner  <mkestner@novell.com>
14997
14998         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
14999         arrow in keynav state.  Fixes #78682.
15000
15001 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
15002
15003         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
15004           order (fixes #78393)
15005
15006 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
15007
15008         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
15009           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
15010           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
15011           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
15012           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
15013           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
15014           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
15015           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
15016           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
15017           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
15018           enumerations (FlagsAttribute, SerializableAttribute, added/removed
15019           values)
15020
15021 2006-06-28  Mike Kestner  <mkestner@novell.com>
15022
15023         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
15024
15025 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
15026
15027         * PropertyGrid.cs,
15028           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
15029           item lines from other area (It also makes BackColor consistent and
15030           compatible with .NET). Fixed bug #78564.
15031
15032 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
15033
15034         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
15035         Patch from Eno for #78555.
15036
15037 2006-06-27  Chris Toshok  <toshok@ximian.com>
15038
15039         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
15040
15041         * DataGridColumnStyle.cs: same.
15042
15043         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
15044         
15045         * DataGridDrawingLogic.cs: nuke.
15046
15047 2006-06-27  Chris Toshok  <toshok@ximian.com>
15048
15049         * DataGridTableStyle.cs: clean up the constructors, and build the
15050         list of child relations for this table.  I have no idea if this is
15051         where we should be doing it (it probably isn't), but since we're
15052         already iterating over the properties..
15053
15054         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
15055         struct and array for keeping track of row information, similar to
15056         what's shown in a hack on
15057         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
15058
15059         * Theme.cs: be consistent about the naming of DataGrid methods,
15060         prefering ColumnWidths and RowHeights over columnsWidths and
15061         RowsHeights.
15062
15063         * ThemeWin32Classic.cs: same, and also add support for variable
15064         sized rows (and the +/- expansion icons for related rows).
15065
15066 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
15067
15068         * TextBoxBase.cs: Applied Eno's patch from #78660
15069
15070 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
15071
15072         * Form.cs (ScaleCore): We don't want to scale our form if it's
15073           state is minimized or maximized, but we still need to scale our
15074           child windows. Also, added try/finally block to ensure layout
15075           gets reset (Fixes #78697)
15076
15077 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
15078
15079         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
15080
15081 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
15082
15083         * Form.cs: Fixed c+p error and added check to resize form if minimum
15084           size is bigger than current size (Fixes #78709)
15085
15086 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
15087
15088         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
15089
15090 2006-06-26  Mike Kestner  <mkestner@novell.com>
15091
15092         * ComboBox.cs: only do Keypress handling in the combo when there  
15093         are items in the collection. Fixes #78710.
15094
15095 2006-06-26  Chris Toshok  <toshok@ximian.com>
15096
15097         * Binding.cs: make this work bi-directionally.  also, clear up
15098         other mixups between Push/Pull Data (e.g. we're supposed to pull
15099         data when validating).
15100
15101         * BindingManagerBase.cs: trim some fully qualified collection
15102         types.
15103
15104         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
15105
15106 2006-06-23  Chris Toshok  <toshok@ximian.com>
15107
15108         * PropertyManager.cs: It appears (according to the unit tests)
15109         that PropertyManager doesn't use
15110         PropertyDescriptor.AddValueChanged to track propery value changes
15111         in its datasource, but uses the same scheme as Binding, where it
15112         looks for a <Property>Changed event and binds to it.
15113
15114         Also, according to the docs, IsSuspended always returns false for
15115         a property manager with a non-null datasource.
15116
15117 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
15118
15119         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
15120           need to update the actual DialogResult. (Fixes #78613)
15121
15122 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
15123
15124         * Form.cs (ShowDialog): Release any captures before running the
15125           new message pump (fixes #78680)
15126
15127 2006-06-22  Mike Kestner  <mkestner@novell.com>
15128
15129         * ListView.cs: Layout column widths properly in details mode even 
15130         if HeaderStyle.None is set.  Fixes #78691.
15131
15132 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
15133
15134         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
15135
15136 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
15137
15138         * Control.cs (ContainsFocus): Using new driver method to get focused
15139           window, instead of trying to use internal tracking var, which can
15140           recursion issues (Fixes #78685)
15141         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
15142           XplatUIWin32.cs: Added GetFocus method to return focused window
15143
15144 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15145
15146         * ColorDialog.cs: when the mouse button is pressed inside the color
15147         matrix, don't let the cursor move out of it until the button is
15148         released, which is the behavior on windows. Changed 'colours' by
15149         'colors' to use the same word consistently.
15150
15151 2006-06-21  Chris Toshok  <toshok@ximian.com>
15152
15153         * DataGrid.cs: add in some basic navigation stuff (navigating to a
15154         child relation and back, using a stack).  Also, remove
15155         GetDataSource and the code that calls it - it's not needed.  Also,
15156         track CurrencyManager.ListName's removal.
15157
15158 2006-06-21  Chris Toshok  <toshok@ximian.com>
15159
15160         * CurrencyManager.cs: push some of the original type checking from
15161         BindingContext.CreateBindingManager to here, and remove some of
15162         the finalType stuff.  Need more tests to make sure I've got the
15163         ListName part right, and we might need more in SetDataSource.
15164
15165         * PropertyManager.cs: add a ctor that takes just the datasource,
15166         and no property name.  Make SetDataSource work with a null
15167         property_name, and make Current return the data_source if the
15168         property descriptor is null.  this makes 'string foo = "hi";
15169         BindingContext[foo].Current' return "hi" as it should.
15170
15171         * RelatedCurrencyManager.cs: make this code more generic - there's
15172         no reason the parent manager has to be CurrencyManager, and
15173         there's no reason to pass the DataRelation.  It suffices to use a
15174         BindingManagerBase and PropetyDescriptor.
15175
15176         * RelatedPropertyManager.cs: make a similar change here.
15177         
15178         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
15179         flower I knew it could be.
15180
15181 2006-06-20  Chris Toshok  <toshok@ximian.com>
15182
15183         * PropertyManager.cs: the PropertyChangedHandler is invoked when
15184         data in the source has changed and we need to update the control,
15185         so s/PullData/PushData.
15186
15187         * CurrencyManager.cs: Refresh is meant to update the control from
15188         data in the datasource.  So, s/PullData/PushData.
15189
15190         * BindingContext.cs: add more ugliness (we weren't handling the
15191         case where data_source = DataTable and data_member = column_name).
15192
15193         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
15194         from the perspective of the datasource.  PullData pulls from the
15195         control, PushData pushes to the control.
15196
15197 2006-06-20  Chris Toshok  <toshok@ximian.com>
15198
15199         * BindingContext.cs: rewrite the CreateBindingManager code to
15200         handle navigation paths more or less properly.  This could
15201         definitely stand some more work, in particular to push the
15202         recursion up to the toplevel.  But that relies on fixes in other
15203         places (System.Data comes to mind).
15204
15205         Also, move to a flat hashtable (and encode the twolevel nature of
15206         the dictionary into the hash key).  This lets us implement the
15207         IEnumerable.GetEnumerator method.
15208
15209         * RelatedCurrencyManager.cs: new class.  Update our view based on
15210         our relation and our parent CurrencyManager's position.
15211
15212         * CurrencyManager.cs: split out some logic from the ctor into
15213         SetView, so it can be called from the new RelatedCurrencyManager
15214         subclass.
15215
15216         * RelatedPropertyManager.cs: new class.  Update our datasource
15217         based on the position of our parent CurrencyManager.
15218
15219         * PropertyManager.cs: split out some logic from the ctor into
15220         SetDataSource, so it can be called from the new RelatedDataSource
15221         subclass.  Also, make the Current getter return the value
15222         of the PropertyDescriptor, not the data_source.
15223
15224         * Binding.cs: no need to duplicate the string splitting code here.
15225
15226 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
15227
15228         * Control.cs:
15229           - set_Enabled: OnEnabledChanged is not called if the inherited state 
15230             of the control is not altered, even though  we might be changing the
15231             internal state of the control (#78458)
15232           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
15233             OnEnabledChanged, to allow easy altering of any child window state
15234           - OnEnabledChanged: Added code to enable/disable driver window state
15235           - OnParentEnabledChanged: Instead of firing the event, call 
15236             OnEnabledChanged, which will fire the event and also a) set driver
15237             window state and pass the enabled state to any grandchildren (#78458)
15238
15239 2006-06-19  Jackson Harper  <jackson@ximian.com>
15240
15241         * InternalWindowManager.cs: We don't set the cursor explicitly
15242         thats done via the response to NCHITTESTs.
15243         - Don't need to adjust for titlebar heights anymore, the
15244         coordinates are coming in the correct coordinates now (see peters
15245         last patch).
15246
15247
15248 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
15249
15250         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
15251           being translated relative to whole window, instead of client window.
15252           That caused broken offsets on mouseclick (and caused gas for our
15253           InternalWindowManager)
15254
15255 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
15256
15257         * TextControl.cs:
15258           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
15259           - Undo(): Added replay of cursor move on DeleteChars action; added
15260             calling Undo() again if a recorded cursor move is invalid (to
15261             ensure that some action is performed on Undo)
15262         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
15263
15264 2006-06-16  Jackson Harper  <jackson@ximian.com>
15265
15266         * MdiClient.cs: Instead of just sizing maximized windows when
15267         there is a resize we also have to adjust the Y of minimized
15268         windows, so they stay pinned to the bottom of the mdi container.
15269         - Eliminate separate tracking of the active control, we can just
15270         get this from the controls collection.
15271         - Paint the decorations for the newly activated titlebar so we get
15272         a pretty blue bar.
15273         * InternalWindowManager.cs:
15274         * ThemeWin32Classic.cs: Minimized windows get all three buttons
15275         even if they are a tool window.
15276         
15277 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
15278
15279         * TextControl.cs (Undo): Handle non-existent cursor locations in the
15280           undo buffer, these can happen when text was deleted and the cursor
15281           was recorded first. Since we will also have a recorded cursor
15282           after the delete this is not an issue. (Fixes #78651)
15283
15284 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
15285
15286         * AccessibleObject.cs: Remove dependence on Control.is_selected;
15287           instead properly track control states internally (allows us to
15288           remove is_selected from Control)
15289
15290 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15291
15292         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
15293         whose width is not a multiple of 8.
15294
15295 2006-06-13  Jackson Harper  <jackson@ximian.com>
15296
15297         * MdiClient.cs:  Only maximize the next child if the current one
15298         is maximized.
15299
15300 2006-06-13  Chris Toshok  <toshok@ximian.com>
15301
15302         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
15303         modified.  Also, guard against grid or grid_drawing being null in
15304         Invalidate.
15305
15306         * DataGrid.cs: Reformat tons of getters/setters.  In the
15307         DataMember setter, just call SetNewDataSource instead of
15308         duplicating some of its functionality.  In SetNewDataSource, don't
15309         check ListManager for null, since the property getter creates the
15310         object if needed.
15311
15312         * DataGridTableStyle.cs: don't set TableStyle or call
15313         SetDataGridInternal on the column here, it's done in
15314         GridColumnStylesCollection.Add.
15315
15316         * GridColumnStylesCollection.cs: fix all the explicit interface
15317         implementations to just call our methods.  Nuke AddInternal() and
15318         move the body of it to Add().  Also, add a call to
15319         column.SetDataGridInternal to Add().
15320
15321         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
15322         base()+duplicate code.  Also, use the Format property instead of
15323         format to generate an Invalidate ala MS.  Lastly, create the
15324         textbox here, unconditionally.
15325         (set_Format): call Invalidate.
15326         (get_TextBox): no need to call EnsureTextBox.
15327         (Commit): remove the message box.
15328         (Edit) remove the call to EnsureTextBox.
15329         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
15330         (EnterNullValue): no need to check textbox for null.
15331         (HideEditBox): no need to check textbox for null.
15332         (SetDataGridInColumn): add the textbox to the grid's controls.
15333         (EnsureTextBox): nuke.
15334         
15335 2006-06-13  Jackson Harper  <jackson@ximian.com>
15336
15337         * MdiWindowManager.cs: Hook up to the maximized menus paint event
15338         and redraw the buttons when needed. Unhook when the window is
15339         unmaximized.
15340         * MainMenu.cs: Add an internal Paint event, the mdi window manager
15341         needs this so that it can redraw its buttons when the menu is
15342         repainted.
15343         * InternalWindowManager.cs:
15344         * Form.cs: The method order has changed for DrawMaximizedButtons,
15345         so that it can be a PaintEventHandler.
15346         
15347 2006-06-13  Jackson Harper  <jackson@ximian.com>
15348
15349         * MdiClient.cs: When we close a maximized mdi window, the next mdi
15350         window is activated and maximized, even if it wasn't before.
15351         - When  a new window is activated repaint the decorations of the
15352         old one, so that it no longer has the Active "look" (the blue
15353         titlebar).
15354         * InternalWindowManager.cs: Open up CreateButtons to base classes
15355         so they can recreate the buttons on state changes.
15356         - If a window is maximized give it all three buttons
15357         * MdiWindowManager.cs: Create the titlebar buttons when the state
15358         is changed, this is needed because a toolwindow will not have all
15359         three buttons until it is maximized.
15360
15361 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
15362
15363         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
15364           Fixed bug #78609.
15365
15366 2006-06-12  Jackson Harper  <jackson@ximian.com>
15367
15368         * KeysConverter.cs: Make sure we handle the Ctrl special case
15369         if its the only key.
15370         
15371 2006-06-12  Jackson Harper  <jackson@ximian.com>
15372
15373         * Theme.cs: Add a method to get the size of a managed window
15374         toolbar button.
15375         * InternalWindowManager.cs: Remove the ButtonSize property, this
15376         should be retrieved from the theme.
15377         * MdiWindowManager.cs: Get the button size from the theme
15378         * ThemeWin32Classic.cs: Make the method to get the managed window
15379         titlebar button size public.
15380         - Handle the different button sizes of maximized toolwindows
15381         (should match any maximized window).
15382         - Get the titlebar height from the theme, not the WM (which gets
15383         it from the theme).
15384
15385 2006-06-12  Jackson Harper  <jackson@ximian.com>
15386
15387         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
15388         event down to the mdi window manager.
15389         - Expose some extra stuff to base classes
15390         - Make sure to end the Capture on an NC Mouse up, so that we can
15391         get double clicks properly, and the sizing doens't stick.
15392         - When doing PointToClient contain it in the workable desktop
15393         area, this prevents windows from changing size when the cursor is
15394         pulled outside of the working area while sizing.
15395         * MdiWindowManager.cs: When we get a double click maximize the
15396         window.
15397         - Reset the cursor after handling mode changes.
15398
15399 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
15400
15401         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
15402           current desktop, instead of just assuming a 0, 0 origin. This
15403           is needed for our internal window manager, to know the top
15404           margin of the desktop
15405
15406 2006-06-12  Chris Toshok  <toshok@ximian.com>
15407
15408         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
15409         we need this to get rid of the selected background in the bool
15410         column.
15411         (CancelEditing): move the ConcedeFocus call to above the Abort
15412         call.  Also, set is_changing to false and invalidate the row
15413         header if we were changing before.
15414         (ProcessKeyPreviewInternal): remove, since noone outside this
15415         class calls it anymore.  Roll the code into ProcessKeyPreview.
15416         (EndEdit): remove the internal version.
15417         (InvalidateCurrentRowHeader): make private.
15418
15419         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
15420         Keys.Escape handling (and with it the last call to
15421         DataGrid.EndEdit from outside the class.)
15422
15423
15424 2006-06-12  Chris Toshok  <toshok@ximian.com>
15425
15426         * DataGridTextBox.cs (.ctor): isedit defaults to false.
15427         (OnKeyPress): set isedit to true.
15428         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
15429         already handled by the grid.
15430
15431         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
15432         right.  ugh.
15433         (set_DataSource): SetDataSource always returns true, so stop
15434         putting it in an if statement.
15435         (EndEdit): get rid of some {}'s
15436         (ProcessGridKey): return true in case Keys.Escape.
15437         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
15438         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
15439         PositionChanged, stopped connecting to CurrentChanged.
15440         (GetDataSource): simplify this a bunch.
15441         (SetDataSource): change return type from bool to void.
15442         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
15443         to this, and make sure we don't set ListManager.Position inside
15444         set_CurrentCell.
15445         (OnListManagerItemChanged): if we're passed an actual index,
15446         redraw that row.
15447
15448         * CurrencyManager.cs (set_Position): don't call PullData here.
15449
15450 2006-06-09  Jackson Harper  <jackson@ximian.com>
15451
15452         * TreeNode.cs:  Recalculate the visible order before doing the
15453         Expand/Collapse Below calls, because those calls generate an
15454         expose.
15455         - Reduce calls to the TreeView property, which is mildly expensive
15456         by using a local var.
15457         * Form.cs: Layout the MDI child windows when creating the parent
15458         form.
15459         - Don't use the internal constructor anymore
15460         * MdiClient.cs: use the parent form width/height (if available)
15461         when laying out the child windows, we do this because the
15462         mdiclient isn't docked yet when the initial layout is done.
15463         - Don't need an internal constructor anymore.
15464
15465 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15466
15467         * FileDialog.cs: handle access errors when trying to create a folder
15468         or changing to a directory. No need to initialize out parameters.
15469
15470 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
15471
15472         * FileDialog.cs: Append a number when creating a new folder if the
15473           folder already exists (use parenthesis instead of square brackets)
15474
15475 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
15476
15477         * FileDialog.cs:
15478           - Disabled registry support for windows and added better registry
15479             error checking for other systems (need to investigate why it
15480             works perfectly on my system)
15481           - If a folder already exist show an error MessageBox instead of
15482             trying to create an indexed name.
15483           - Fixed a non intentional typo.
15484
15485 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15486
15487         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
15488
15489 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
15490
15491         * FileDialog.cs: When creating a new folder don't crash if the
15492           folder already exists.
15493
15494 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
15495
15496         * FileDialog.cs: Allmost a complete rewrite.
15497           - added a "virtual" file system that handles the differences
15498             between unix and windows file systems (especially the directory
15499             structure). Moved most of the directory and file handling code
15500             into the vfs.
15501             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
15502             UnixFileSystem and FSEntry.
15503           - Recently used folder/directory, size, location and used file names
15504             (file name ComboBox) are now stored in the registry and get read
15505             before the dialog shows up (fixes part 6 of bug #78446).
15506           - Creation of new folders/directories is now possible (context menu
15507             or ToolBar). Added TextEntryDialog for this that fills in the gap
15508             until ListView.LabelEdit works.
15509           - Fixed cursor handling (bug #78527) and focus handling for
15510             PopupButtonPanel
15511           - Various "Search in" ComboBox enhancements. The content of the
15512             dropdown listbox now almost matches ms.
15513           - Changed the behaviour when the user switches to SpecialFolder
15514             Recent to show the ListView in View.Details.
15515           - Beside using the ToolBar to change the View property of the
15516             file ListView it is now possible to use the context menu too.
15517
15518 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
15519
15520         * ComboBox.cs: Don't create a new ObjectCollection when an item
15521           gets inserted. Just insert the item in the existing object_items
15522           ArrayList.
15523
15524 2006-06-08  Jackson Harper  <jackson@ximian.com>
15525
15526         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
15527         that the treeview and root node checks are done also, this fixes a
15528         regression i caused in the unit tests.
15529
15530 2006-06-07  Wade Berrier <wberrier@novell.com> 
15531
15532         * RichTextBox.cs: More ISO8859-1 -> unicode
15533
15534 2006-06-07  Mike Kestner  <mkestner@novell.com>
15535
15536         * ComboBox.cs : use items to hold highlight/selection so that
15537         collection insertions don't require synchronization.
15538
15539 2006-06-07  Jackson Harper  <jackson@ximian.com>
15540
15541         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
15542         routine.  We now always keep the sized edge at the cursor instead
15543         of computing movement and adjusting rects.  There is one buglet
15544         with this method though when the cursor is moved over area that
15545         the window can not expand too (such as the toolbars on the desktop).
15546
15547 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15548
15549         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
15550         here. Fixes crash on startup in AlbumSurfer.
15551
15552 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
15553
15554         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
15555           values
15556
15557 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15558
15559         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
15560         statement to avoid calling XNextEvent which will block if another thread
15561         took the event that we were expecting. Fixes bug #78605.
15562
15563 2006-06-07  Mike Kestner  <mkestner@novell.com>
15564
15565         * ListView.cs : isolated checkbox clicking from the selection logic.
15566         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
15567
15568 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15569
15570         * Form.cs: Check that the value passed to Form.DialogResult
15571         is a valid enum value.
15572
15573 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15574
15575         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
15576         Computer'. Clicking it in the network view goes to 'My Computer'.
15577         Added CIFS filesystem type. Display the mount point of filesystems.
15578         Avoid duplicate mount points (happens for me with CIFS);
15579
15580 2006-06-06  Jackson Harper  <jackson@ximian.com>
15581
15582         * InternalWindowManager.cs: Draw the maximized windows buttons
15583         when resizing.
15584
15585 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15586
15587         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
15588         all other dialogs. Fixes bug #78585.
15589
15590 2006-06-06  Mike Kestner  <mkestner@novell.com>
15591
15592         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
15593         Only invalidate checkbox on checkstate changes to avoid flicker.
15594         * ListBox.cs : avoid unselect/select when clicking selected item.
15595         avoid reselection flicker for already multiselected items.
15596         Fixes #78382.
15597
15598 2006-06-06  Jackson Harper  <jackson@ximian.com>
15599
15600         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
15601         the parent form so that the menu is removed if needed.
15602
15603 2006-06-06  Mike Kestner  <mkestner@novell.com>
15604
15605         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
15606         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
15607
15608 2006-06-06  Mike Kestner  <mkestner@novell.com>
15609
15610         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
15611
15612
15613 2006-06-06  Jackson Harper  <jackson@ximian.com>
15614
15615         * Control.cs: Use the property (instead of the field) to get the
15616         default cursor so it is instantiated correctly.
15617         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
15618         resizes so we need to manually repaint the window decorations here.
15619         - Set the titlebar button locations as soon as they are created,
15620         otherwise they are not set correctly on win32.
15621         
15622 2006-06-06  Chris Toshok  <toshok@ximian.com>
15623
15624         * CurrencyManager.cs (set_Position): call PullData before
15625         OnCurrentChanged.
15626         (AddNew): after calling IBindingList.AddNew, update our
15627         listposition, and call OnCurrentChanged/OnPositionChanged (without
15628         calling PullData).
15629         (OnCurrentChanged): remove the call to PullData from here.
15630         (OnItemChanged): remove the call to PushData from here.
15631         (OnPositionChanged): change the test from == null to != null to
15632         match the other methods.
15633         (ListChangedHandler): the grossest part of the patch.  Implement
15634         this such that it passes the unit tests in CurrencyManagerTest and
15635         the output more or less matches that of MS's implementation.
15636  
15637 2006-06-06  Mike Kestner  <mkestner@novell.com>
15638
15639         * ListView.cs : only update check state on single click.
15640         * ThemeWin32Classic.cs : fix focus drawing for details view without
15641         fullrowselect.  Fixes #78454.
15642         * XplatUIX11.cs : fix for double click emission.
15643
15644 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
15645
15646         * PropertyGridView.cs : Applied Atsushi's patch to fix
15647         font dialog bug  (#78197).
15648
15649 2006-06-05  Jackson Harper  <jackson@ximian.com>
15650
15651         * TreeNode.cs: Compute the next node for expanding/collapsing
15652         correctly. We now factor in nodes without a NextNode
15653         correctly. (Fixes somes cases in nunit-gui).
15654         * InternalWindowManager.cs: Set the bounds when updating the
15655         virtual position of a tool window.
15656         
15657 2006-06-05  Chris Toshok  <toshok@ximian.com>
15658
15659         * DataGrid.cs: rename cached_currencymgr to list_manager.
15660         (set_CurrentCell): move SetCurrentCell code here, and clean it up
15661         some.
15662         (CurrentRow, CurrentColumn): single accessors so we can make the
15663         cursor movement code a lot easier to understand.
15664         (CurrentRowIndex): implement this in terms of CurrentRow.
15665         (BeginEdit): clean this up a bit.
15666         (CancelEditing): sort out the is_editing/is_changing/is_adding
15667         stuff a little.
15668         (EndEdit): minor changes.
15669         (OnKeyDown): add a comment about a (most likely) unnecessary
15670         check.
15671         (OnMouseDown): cancel editing when we click on a row header.  And
15672         use the CurrentRow setter, not CurrentCell.
15673         (ProcessDialogKey): directly call ProcessGridKey.
15674         (UpdateSelectionAfterCursorMove): factor out this common block of
15675         code (it's used everywhere that we move the cursor by updating row
15676         or column).
15677         (ProcessGridKey): pretty substantial overhaul.  Use the
15678         CurrentRow/CurrentColumn properties to make the code a lot more
15679         readable.  Only use the CurrentCell property when we have to
15680         modify both row and column at once.  Tab behavior is still broken,
15681         and Delete is untested.
15682         (Select): if we have no selected rows, set selection_start to
15683         @row.
15684         (EditCurrentCell): rename EditCell this.  It was only ever invoked
15685         with CurrentCell as the arg, so drop the arg and rename it.
15686
15687         * DataGridColumnStyle.cs: clean up the constructors a little, and
15688         drop CommonConstructor().
15689
15690         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
15691         actually get notified when the user hits it.
15692         (ProcessKeyMessage): *substantially* simplify this method.
15693         There's no reason (that I can see) for the textbox to be making
15694         calls into the datagrid at all.  Remove all of them but the ones
15695         for Enter handling.  those will take some more work.
15696
15697         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
15698         calling HideEditBox.
15699         (HideEditBox): if we have an active textbox, render it invisible
15700         without causing a re-layout of the datagrid.
15701
15702 2006-06-05  Mike Kestner  <mkestner@novell.com>
15703
15704         * ListView.cs : fix NRE crasher when focuseditem is cleared by
15705         collection changes by resetting it to Items[0].  Fixes #78587.
15706
15707 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15708
15709         * MessageBox.cs: if the height of the text is larger than the icon_size,
15710         use that. Fixes bug #78575.
15711
15712 2006-06-05  Jackson Harper  <jackson@ximian.com>
15713
15714         * TreeView.cs: Fix line drawing when scrolling.  To do this each
15715         node is basically responsible for drawing its entire horizontal
15716         area.  When drawing a node it draws its parent node lines if
15717         needed.
15718         - Adjust the clip area to the viewport rectangle
15719         - Fix Left/Right key handling to match MS. (It expand/collapses
15720         and moves to parents/first child but does not move selection to
15721         sibling nodes).
15722         - Fix SetTop to work with new bound calculation code
15723         - When scrollbars are no longer needed we need to reset scrolling
15724         vars and recalculate the visible order so the redraw is correct
15725         * TreeNode.cs: We can't expand/collapse nodes with no children.
15726
15727 2006-06-03  John Luke  <john.luke@gmail.com> 
15728
15729         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
15730         so the colors work without dev packages
15731         
15732 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
15733
15734         * Control.cs 
15735           - Select: Implemented to just use activate. Seems to match MS 
15736             behaviour closest. Documented to only do actual control walking 
15737             based on it's parameters if in a container control so I moved 
15738             the code there.
15739           - Removed selection check logic from our internal Select() method
15740         * ContainerControl.cs:
15741           - Select: Moved selection logic from Control here, since MS documents
15742             that containers obey the bool arguments. No longer calling base
15743
15744 2006-06-02  Jackson Harper  <jackson@ximian.com>
15745
15746         * TreeView.cs: If the selected node isn't changed when we get
15747         focus update the previously selected node so that we see the
15748         selection box.
15749
15750 2006-06-02  Mike Kestner  <mkestner@novell.com>
15751
15752         * ComboBox.cs: restructure grab and general mouse event handling.
15753         Make the composite control raise mouse events like it was a single
15754         control for leaves/enters/motion/up/down events.  fix dropdown list
15755         coordinate mangling and refactor it into the scrollbar subclass to
15756         reduce code duplication.  Fixes #78282 #78361 and #78457.
15757
15758 2006-06-02  Mike Kestner  <mkestner@novell.com>
15759
15760         * ScrollBar.cs: remove Capture setting/clearing, as it happens
15761         automatically in the Control.WndProc.
15762
15763 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15764
15765         * FileDialog.cs: fix crash when running SharpChess, which sets the
15766         FilterIndex to 2 with only one Filter.
15767
15768 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15769
15770         * ToolBar.cs: add SizeSpecified property.
15771         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
15772         try to figure out our real size, otherwise fallback to what the
15773         container says.
15774
15775 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
15776
15777         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
15778         * Control.cs (WndProc): MS always calls the DefWndProc to pass
15779           up the event
15780
15781 2006-06-01  Mike Kestner  <mkestner@novell.com>
15782
15783         * ListView.cs: revamp the focus management in ListView.  It still
15784         causes churn of LostFocus/GotFocus emissions on clicks, but it's
15785         better than not handling focus at all.  Will revisit when pdb feels
15786         the general focus handling is solid.  Fixes #78526.
15787
15788 2006-06-01  Jackson Harper  <jackson@ximian.com>
15789
15790         * TreeView.cs: Set the default border style in the constructor.
15791         - Move painting to use OnPaintInternal instead of capturing
15792         WM_PAINT, this is the correct way of doing things
15793         - UpdateBelow shouldn't invalidate the scrollbar area
15794         - Cap the top on update below in case the node was above the top
15795         of the viewport rectangle.
15796         - ExpandBelow and Collapse below need to obey Begin/End Update.
15797         * TreeNode.cs: Make is_expanded internal so the treenode
15798         collection can change it without firing the whole event chain.
15799         * TreeNodeCollection.cs: When clearing all the child nodes make
15800         sure to recalc the visible order.
15801         - Improve algo for remove the top node
15802
15803 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
15804
15805         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
15806           SendMessage directly calling window procedures, which in turn might
15807           call SetFocus()
15808
15809 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
15810
15811         * Control.cs: Don't handle WM_SETFOCUS if the same window already
15812           has focus (works around X11 sending a FocusIn after our SetFocus)
15813         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
15814
15815 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
15816
15817         * Mime.cs: Fix for the NET_2_0 build.
15818           NameValueCollection needs StringComparer now.
15819
15820 2006-05-31  Chris Toshok  <toshok@ximian.com>
15821
15822         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
15823         return (via an out parameter) the starting X of the column.
15824         (UpdateVisibleColumn): track change to FromPixelToColumn.
15825         (HitTest): add a ColumnResize case here.
15826         (DrawResizeLine): new function, probably poorly named.
15827
15828         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
15829         only need to keep one reference.
15830         (set_ListManager): same.
15831         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
15832         Also, add support for HitTestType.ColumnResize.
15833         (OnMouseMove): add column resize behavior here, and change the
15834         cursor to the correct one as we move around the datagrid.
15835         (OnMouseUp): terminate the column resize if we're resizing.
15836         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
15837         for the current cell.
15838         (ConnectListManagerEvents): use cached_currencymgr.
15839         (DisconnectListManagerEvents): fill this in, using
15840         cached_currencymgr.
15841         (SetCurrentCell): remove cached_currencymgr_events handling.
15842         (SetDataMember): only call DisconnectListManagerEvents if
15843         cached_currencymgr is != null.
15844         (SetDataSource): same.
15845         (OnListManagerCurrentChanged): cached_currencymgr_events ->
15846         cached_currencymgr.
15847
15848 2006-05-31  Jackson Harper  <jackson@ximian.com>
15849
15850         * BindingManagerBase.cs: Remove somedebug code that creeped into
15851         SVN.
15852         * TreeNode.cs: We get the indent level dynamically right now, so
15853         don't track it as a member.
15854         * TreeNodeCollection.cs: Make sure all nodes added to the list
15855         have parents, treeviews/topnodes setup properly.
15856         - Don't attempt to track indent level.
15857
15858 2006-05-30  Jackson Harper  <jackson@ximian.com>
15859
15860         * BindingContext.cs: Create the currency manager tables here.
15861         This allows us to more easily create null tables (when bad data
15862         members are used), and more easily create related currency
15863         managers.
15864         * CurrencyManager.cs: All the table creation stuff is done by the
15865         binding context now.
15866         - Current should throw an exception if listposition is -1.
15867         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
15868         been bound yet.
15869
15870 2006-05-30  Mike Kestner  <mkestner@novell.com>
15871
15872         * ListView.cs: allow reexpansion of zero-width column headers.
15873         Fixes #78528.
15874
15875 2006-05-28  Chris Toshok  <toshok@ximian.com>
15876
15877         * CurrencyManager.cs (get_Current): after the late binding
15878         listposition = -1 fix, we need to guard against it here and return
15879         null, otherwise we raise an exception (which is swallowed
15880         elsewhere, and breaks datagrid databinding.)
15881
15882 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
15883
15884         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
15885           than WM_SYSKEY, don't throw if get something unexpected (#78507)
15886
15887 2006-05-26  Jackson Harper  <jackson@ximian.com>
15888
15889         * ControlPaint.cs:
15890         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
15891         values, it's faster and it's all we care about (we don't care if
15892         the names aren't equal).
15893         * KeyboardLayouts.cs: Eliminate some dead code.
15894         - Lazy init things
15895         * X11Keyboard.cs: Lazy init keyboard detection.
15896         - Cleanup access modifiers a little.
15897
15898 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
15899
15900         * XplatUIX11.cs: Once again, attempting to get layout just right.
15901
15902 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
15903
15904         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
15905           the sizes of each link section, that will result in sizes that
15906           match DrawString's layout (Fixes #78391)
15907
15908 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
15909
15910         * FileDialog.cs: If AddExtension property is true autocomplete the
15911           extensions in SaveFileDialog correctly. Fixes bug #78453.
15912           Set MyNetwork and MyComputer to "C:\" for windows. This should
15913           fix part 8 of bug #78446 for now.
15914
15915 2006-05-26  Chris Toshok  <toshok@ximian.com>
15916
15917         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
15918         invalidate the current row header if we need to, but presumably
15919         we'll invalidate the row corrsponding to the bounds or
15920         editingControl.
15921         (GridHScrolled): switch back to this method, as it's part of the
15922         public api.  *sigh*.
15923         (GridVScrolled): same.
15924         (OnMouseWheel): hack up something that more or less works.  Call
15925         GridHScrolled/GridVScrolled directly, instead of duplicating much
15926         of their code here.
15927         (EnsureCellVisibility): reinstate a bunch of this code, since we
15928         can't just set the scrollbar Value and expect to do all the work
15929         in the ValueChanged handler.  Also, Call Update() after scrolling
15930         in one direction so the other XplatX11.ScrollWindow call has the
15931         proper stuff in the proper places.
15932         (EditCell): set is_editing to true before calling .Edit.
15933
15934         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
15935         don't bother comparing first.
15936         (OnKeyPress): call grid.ColumnStartedEditing before calling
15937         base.OnKeyPress.  this will set is_changing and invalidate the row
15938         header if necessary.
15939         (ProcessKeyMessage): for WM_CHAR messages, call
15940         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
15941         and WM_KEYDOWN.
15942         
15943         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
15944         it's done in the DataGrid.
15945         (NextState): call grid.ColumnStartedEditing, which takes care of
15946         invalidating the row header (and setting is_changing).
15947
15948         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
15949         here.  it's done in the DataGrid.
15950
15951 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15952
15953         * Control.cs: allow changing the cursor when the mouse position is
15954         out of bounds but Capture is set.
15955         * LinkLabel.cs: handle the case when the mouse button is pressed on the
15956         linklabel but released somewhere else.
15957
15958 2006-05-25  Jackson Harper  <jackson@ximian.com>
15959
15960         * TreeView.cs: When we get focus if there is no selected node make
15961         it the top node
15962         - Remove some uneeded setup code from Draw.
15963         * TreeNodeCollection.cs: If the tree doesn't have a top node when
15964         a new node is inserted make the new node the top.
15965         * XplatUIX11.cs:
15966         * Timer.cs: Use Utc time so that no local time zone stuff needs to
15967         be used (should be faster).
15968         
15969 2006-05-25  Chris Toshok  <toshok@ximian.com>
15970
15971         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
15972         problem with the last commit.
15973
15974 2006-05-25  Chris Toshok  <toshok@ximian.com>
15975
15976         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
15977         need the invalidate call here, while scrolling right-to-left via
15978         the left arrow key (i.e. moving the editing cell while scrolling).
15979
15980         * DataGrid.cs (.ctor): remove the initialization of
15981         ctrl_pressed/shift_pressed.  We no longer track them using key
15982         up/down handlers, but by using Control.ModifierKeys.  Also, switch
15983         to using ValueChanged handlers on the scrollbars instead of
15984         Scrolled event handlers.  This simplifies a bunch of the scrolling
15985         code.
15986         (GridHValueChanged): rename from GridHScrolled, and change it to
15987         work with the new event args.
15988         (GridVValueChanged): same.
15989         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
15990         (OnMouseWheel): actually scroll the datagrid.  Don't change the
15991         selected cell.
15992         (ProcessGridKey): correct all the keyboard navigation stuff I
15993         could find.  Ctrl up/down/left/right/home/end work now.
15994         (EnsureCellVisibility): correct method name spelling.  Also,
15995         simplify this a touch by not explicitly calling the
15996         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
15997         scrollbar value.
15998         (OnKeyUpDG): no need for this method now.
15999         
16000 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16001
16002         * LinkLabel.cs: display the OverrideCursor when hovering the label.
16003         Fixes bug #78392.
16004
16005 2006-05-25  Chris Toshok  <toshok@ximian.com>
16006
16007         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
16008         r61019.
16009
16010 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
16011
16012         * Application.cs: Moved setting of is_modal and closing to before
16013           we create the control, to allow the event handlers called as a
16014           result of creation affect closing. Also removed Gonzalo's previous
16015           change to setting DialogResult, the behaviour has been moved to 
16016           Form.ShowDialog()
16017         * Form.cs: 
16018           - ShowDialog(): Removed explicit creation of the form, let RunLoop
16019             handle it instead
16020           - ShowDialog(): If no dialog result is set, we need to return Cancel
16021           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
16022             the close is cancelled
16023
16024 2006-05-25  Jackson Harper  <jackson@ximian.com>
16025
16026         * StatusBar.cs: We only need to update the sizes of the other
16027         panels when we have auto size contents.  Also we are only updating
16028         the contents of the panel, not the borders, so compensate for the
16029         border width (TODO: get this width from the theme somehow).
16030         * TreeView.cs: Scrollable is true by default
16031         - Use invalidate instead of refresh where needed
16032         - Factor the scrollable value into scrollbar updating
16033         - Update the scrollbars if the Scrollable property is altered
16034         - Update the selected node if its ImageIndex is changed
16035         - Handle null nodes in UpdateNode (mainly so we don't have to
16036         check if selected is null when updating it
16037         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
16038         are factored into the visible count
16039         - Use VisibleCount for clarity in the code
16040         - When the font is changed we need to recurse through all the
16041         nodes and invalidate their sizes
16042         
16043 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16044
16045         * Application.cs: set the DialogResult to fixed when the main form is
16046         hidden or destroyed while being modal.
16047
16048 2006-05-25  Miguel de Icaza  <miguel@novell.com>
16049
16050         * Theme.cs: Use Tangoified messagebox icons. 
16051
16052         (GetSizedResourceImage): Also cope with width = 0 and do not
16053         trigger a warning in that case (0 means "give me your icon from
16054         the resouce, no special size needed).
16055
16056 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
16057
16058         * Application.cs: Leave runloop if the the main modal form is 
16059           hidden (fixes #78484)
16060
16061 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
16062
16063         * BindingContext.cs : reject null datasource in Contains() and
16064           Item[].
16065         * CurrencyManager.cs : check data_member validity when data_source
16066           is dataset. When it is late binding, the initial position is -1.
16067
16068 2006-05-24  Jackson Harper  <jackson@ximian.com>
16069
16070         * TreeNodeCollection.cs: Dont't recalculate the visible order on
16071         inserted nodes that aren't visible.  This changes the
16072         max_visible_order which confuses scrollbar settings.
16073         - Use the enumerator to get the prev node instead of duplicating
16074         code.
16075         * TreeView.cs: Use new method for setting scrollbar values
16076         - Don't set the bounds every time the scrollbar is updated
16077         - When updating below the root node use an invalidate instead of a
16078         refresh to prevent the child controls (scrollbars) from being
16079         refreshed. (UpdateBelow still needs to be reworked anyways).
16080         - Reenable SetBottom now that visible orders are set correctly,
16081         added some debug code incase we ever get bad values there again.
16082         - Set the scrollbar max to 2 less then the max value, this
16083         compensates for the max value being one above the node count, and
16084         for scrollbars adding one extra "notch".
16085         - When drawing image nodes if there is an imagelist we draw the
16086         first image in the list if the supplied image index is out of the
16087         image list's bounds.
16088         
16089 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
16090
16091         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
16092           we receive a size change from the WM (Fixes #78503)
16093
16094 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
16095
16096         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
16097           rectangle (Fixes #78501)
16098
16099 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
16100
16101         * ButtonBase.cs: 
16102           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
16103             as a bitfield.
16104           - Fixed MouseMove to no longer switch pressed state unless the left
16105             mouse button is pressed. Atsushi provided the original patch (#78485)
16106           
16107 2006-05-24  Jackson Harper  <jackson@ximian.com>
16108
16109         * ScrollBar.cs: New internal methods that allow us to change a
16110         couple values on the scrollbar (the most common case is maximum
16111         and large change) without getting multiple invalidates.
16112
16113 2006-05-24  Chris Toshok  <toshok@ximian.com>
16114
16115         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
16116         (Edit): save off the original state in oldState, and set
16117         grid.is_editing to true.
16118         (OnKeyDown): abort editing if escape is pressed.  also, call
16119         NextState if space is pressed.
16120         (OnMouseDown): call NextState.
16121         (NextState): factor out shared code from OnKeyDown and OnMouseDown
16122         here.  Also, only invalidate the row header once (on the initial
16123         is_changing switch) to save on redraws.
16124
16125 2006-05-24  Chris Toshok  <toshok@ximian.com>
16126
16127         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
16128         if the value in the cell is different than it was before.  This
16129         keeps us from triggering a layout when we move around a datarid
16130         with a highlighted cell.
16131         (Edit): suspend layout when creating/positining the text box, and
16132         resume passing false so we don't ever actually re-layout.
16133         (ReleaseHostedControl): same.
16134         (EnsureTextBox): reformat slightly, and set WordWrap to false.
16135
16136         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
16137         control-key sequences should go to the datagrid - remove that
16138         lock.  Also, modify the conditions under which we move between
16139         cells when moving the cursor within a cell, and remove the "this"
16140         and "base" from field accesses.  We weren't even consistent, given
16141         they all were in the base class.
16142
16143 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
16144
16145         * Binding.cs : (.ctor)
16146           An obvious NRE fix for BindingTest.CtorNullTest().
16147
16148 2006-05-23  Chris Toshok  <toshok@ximian.com>
16149
16150         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
16151         them between lines.  This fixes some quirks editing cells in the
16152         datagrid.
16153
16154 2006-05-23  Jackson Harper  <jackson@ximian.com>
16155
16156         * TreeView.cs: Use begin/end update when doing expand/collapse all
16157         so that we don't get flicker on the scrollbar.
16158
16159 2006-05-23  Jackson Harper  <jackson@ximian.com>
16160
16161         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
16162         treenode calculations to be independant of the painting code. To
16163         do this nodes track a visible order which is calculated by the
16164         treeview.
16165         - Call new methods for expanding/collapsing nodes.  These methods
16166         use scrollwindow so we don't have to update everything below the
16167         node.
16168         * TreeView.cs: Refactored drawing and scrolling code.  We don't
16169         need to update nodes when drawing anymore or calculate scrollbar
16170         stuff.
16171         - Added new methods for expanding/collapsing nodes. These methods
16172         use ScrollWindow so as to not have to redraw all the nodes below.
16173         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
16174         we add/remove nodes or sort.
16175         - Handle removing the selected and the top node properly.
16176
16177 2006-05-23  Chris Toshok  <toshok@ximian.com>
16178
16179         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
16180         maybe this should actually happen in the datagrid code?
16181         (EndEdit): no need to invalidate anything, given that
16182         ReleaseHostedControl causes the datagrid to relayout, which
16183         invalidates everything anyway.
16184
16185         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
16186         in SetCurrentCell).
16187         (set_SelectionBackColor): call InvalidateSelection instead of
16188         Refresh.
16189         (set_SelectionForeColor): same.
16190         (BeginEdit): Flesh this out a bit.
16191         (CancelEditing): only do any of this if we're editing/adding.
16192         (EndEdit): same.
16193         (OnMouseDown): there's no need to cancel editing here, it's done
16194         in SetCurrentCell.
16195         (SetCurrentCell): only invalidate the current row header if it's a
16196         different row than the new one.
16197         (ShiftSelection): fix this to work like MS does.
16198         (ResetSelection): factor out the invalidation of selected_rows to
16199         InvalidateSelection.
16200         (SetDataSource): cancel any editing that's going on.
16201
16202         * DataGridColumnStyle.cs
16203         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
16204         call the non-interface version.
16205
16206         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
16207         header rectangle with the clip rectangle so we don't redraw the
16208         entire header for just a small area.  Gets rid of the last flicker
16209         when horizontally scrolling.
16210         (DataGridPaintRow): same.
16211
16212 2006-05-23  Mike Kestner  <mkestner@novell.com>
16213
16214         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
16215         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
16216         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
16217         Critical bug report.
16218
16219 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
16220
16221         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
16222           and this fixes #78493
16223
16224 2006-05-23  Miguel de Icaza  <miguel@novell.com>
16225
16226         * Theme.cs (GetSizedResourceImage): Scale images if the proper
16227         size is not found.  
16228         
16229         * FileDialog.cs: Do not change the background for the side bar as
16230         it wont work nicely with the theme, and also reduces the artifacts
16231         in rendering the icons (which I want to fix too).
16232
16233         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
16234         resources, not resgen resources. 
16235
16236         (PlatformDefaultHandler): Pull images using the new API.
16237
16238 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
16239
16240         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
16241           a reference to the hwnd and will not remove it unless there are
16242           no pending exposures (fixes #78341)
16243         * XplatUI.cs: Improved debug
16244
16245 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
16246
16247         * MenuAPI.cs : don't handle OnClick event when it was not the left
16248           button. Fixed bug #78487.
16249
16250 2006-05-23  Mike Kestner  <mkestner@novell.com>
16251
16252         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
16253         prefer submenus to the top menu for item lookup, to avoid popping down
16254         top-row items.
16255
16256 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
16257
16258         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
16259           Graphics.FillRectangle as the visual results are really bad (even
16260           on win). We now draw perfect arrows (and perfect shadows when the
16261           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
16262           Pen.DashPattern to draw the dots of each line.
16263
16264 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
16265
16266         * FileDialog.cs: Update the filename combobox when navigating through
16267           the ListView with the cursor keys. Fixes part 7 of bug #78446.
16268
16269 2006-05-22  Mike Kestner  <mkestner@novell.com>
16270
16271         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
16272         Fixes #78463.
16273
16274 2006-05-22  Mike Kestner  <mkestner@novell.com>
16275
16276         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
16277         requests. Fix a misspelled parameter and a copy paste exception error
16278         in Select.
16279
16280 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
16281
16282         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
16283           to get the same width/height (5/13) on X11 as the default font has on
16284           win32. This means that our DefaultFont emSize is smaller than the 
16285           the MS SWF equivalent (even thought the width/height stays the same)
16286
16287 2006-05-20  Jackson Harper  <jackson@ximian.com>
16288
16289         * MdiClient.cs:
16290         * MdiWindowManager.cs:
16291         * InternalWindowManager.cs: Make sure to use the border width from
16292         the theme.
16293
16294 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
16295
16296         * PrintDialog.cs: Implements printer details
16297
16298 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
16299
16300         * FileDialog.cs: Added focus handling for PopupButtonPanel.
16301           Fixes part 1 and 2 of bug #78446
16302
16303 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
16304
16305         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
16306           instead of sticking to the first ever calculated value
16307
16308 2006-05-19  Mike Kestner  <mkestner@novell.com>
16309
16310         * ComboBox.cs: fix mouse motion selection to use MousePosition and
16311         PointToClient, since Capture is set. Fixes #78344.
16312
16313 2006-05-19  Mike Kestner  <mkestner@novell.com>
16314
16315         * ListView.cs: match MS behavior in Details view where items are not
16316         drawn if Columns.Count == 0. 
16317         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
16318         Use a separate pen to draw the check, since changing the width affects
16319         the box as well.  Fixes #78454.
16320
16321 2006-05-18  Miguel de Icaza  <miguel@novell.com>
16322
16323         * ListView.cs: ArgumentOutOfRangeException, single versions of the
16324         exception should throw the name of the invalid argument.
16325
16326         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
16327         there are no files listed. 
16328
16329 2006-05-18  Jackson Harper  <jackson@ximian.com>
16330
16331         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
16332         up.
16333
16334 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
16335
16336         * Control.cs: Brought back our old UpdateZOrder method as a private
16337           function and switched our calls from UpdateZOrder to the new one.
16338           This fixes the Paint.Net canvas disappearing bug.
16339
16340 2006-05-18  Jackson Harper  <jackson@ximian.com>
16341
16342         * Theme.cs:
16343         * ThemeWin32Classic.cs:
16344         * InternalWindowManager.cs: Move the drawing into the theme,
16345         expose everything the theme should need from the window manager.
16346
16347 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
16348
16349         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
16350           from the call to NativeWindow to avoid walking up the parent chain
16351           further than needed (speeds up setting cursors and avoids setting
16352           the wrong cursor if a parent has another cursor defined)
16353         * Cursor.cs: When loading an icon as cursor, MS uses the center of
16354           the icon as hotspot, not what's contained as hotspot in the icon
16355           file. This fixes the perceived drawing offset seen with Paint.Net
16356         
16357 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
16358
16359         * XplatUIX11.cs: 
16360           - Store the calculated rectangle in Hwnd object and use it when 
16361             setting the client size
16362           - Force Toolwindows to always be type Dock, to ensure they're on top
16363
16364 2006-05-18  Mike Kestner  <mkestner@novell.com>
16365
16366         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
16367         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
16368         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
16369         Substantial refactoring to remove confusing nested classes. Coding
16370         standard and Get+Set->property refactorings.  Shift to index based
16371         highlighting in ComboListBox instead of constantly using IndexOf and
16372         Items[]. Add invalidations on resize for DropDownList to fix ugliness
16373         in FileDialog growth.  Draw borders manually since Simple mode needs
16374         to look like two independent controls.  Make listbox border
16375         conditional to DropDownStyle.  Improved OwnerDraw support.
16376
16377 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
16378
16379         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
16380         Don't set the disposed graphics to null, so we can throw the "right"
16381         exception if the graphics is reused later (added a flag to avoid 
16382         double disposing). Some behaviours are different under 2.0 and are
16383         filled under bug #78448.
16384
16385 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
16386
16387         * Control.cs: When double-buffering is enabled, we need to reset
16388           our graphics context between paint calls. Otherwise, any 
16389           transformations and other alterations on the context will 
16390           become cumulative (#77734)
16391
16392 2006-05-18  Mike Kestner  <mkestner@novell.com>
16393
16394         * ListView.cs: do focused item selection like MS on clicks. 
16395         Rework focus handling for ItemControl so LostFocus invalidates as
16396         well.
16397         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
16398         the ListView ItemControl has focus.
16399
16400 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
16401
16402         * XplatUIX11.cs: If client_window ends up being width or height zero
16403           due to border settings, move it off window inside whole_window (#78433)
16404
16405 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
16406
16407         * Mime.cs: Shrink the mime file cache correctly.
16408
16409 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
16410
16411         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
16412
16413 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
16414
16415         * XplatUIX11.cs (AddExpose): More sanity checks
16416
16417 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
16418
16419         * XplatUIX11.cs:
16420           - AddExpose: Don't add expose ranges outside the size of our
16421             window
16422           - Cast opacity values to Int32 to avoid crashes with certain
16423             values
16424           - Added disabled code paths that protect against illegal cross-
16425             thread painting (Developers.exe)
16426
16427 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
16428
16429         * ProgressBar.cs: Invalidate the control when it's resized
16430           since block size is based on control size. (#78388)
16431
16432 2006-05-16  Miguel de Icaza  <miguel@novell.com>
16433
16434         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
16435         of setting the incoming argument to the "reset" value, we set the
16436         this.datamember to string.empty (before we were invalidating the
16437         incoming data).   
16438
16439         Fixes 78420
16440
16441 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
16442
16443         * Form.cs: Only apply transparency settings after the form
16444           is created. (Fixes #77800)
16445
16446 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
16447
16448         * ApplicationContext.cs: Grab the HandleDestroyed event so
16449           we know when to fire OnMainFormClosed 
16450
16451 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
16452
16453         * Application.cs: Introduced sub-class to allow tracking of
16454           threads and centralized triggering of the event mess for
16455           ThreadExit, AppExit, etc..  (#76156)
16456
16457 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
16458
16459         * MimeIcon.cs:
16460           - Do not return a null icon index value for a mime subclass.
16461             Instead try the main mime type class too.
16462           - Seems that some newer distributions don't have a link to some
16463             gnome default icons anymore. So check the default gnome dir too.
16464           
16465
16466 2006-05-16  Jackson Harper  <jackson@ximian.com>
16467
16468         * MdiClient.cs: Don't paint the parent background image if we have
16469         our own background image.
16470
16471 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
16472
16473         * Control.cs:
16474           - PerformLayout: Do not shrink space filled by DockStyle.Fill
16475             controls, all filled controls are supposed to overlap (#78080)
16476           - UpdateZOrder is supposed to update the control's z-order in the
16477             parent's z-order chain. Fixed to behave like that
16478           - BringToFront: Removed obsolete code
16479           - SendToBack: Simplyfied
16480           - SetChildIndex: Trigger layout calculations when Z-order changes
16481             since layout is done by z-order
16482
16483 2006-05-16  Chris Toshok  <toshok@ximian.com>
16484
16485         [ fixes bug #78410 ]
16486         * DataGrid.cs (set_AlternatingBackColor): use
16487         grid_drawing.InvalidateCells instead of Refresh().
16488         (set_BackColor): call grid_drawing.InvalidateCells.
16489         (set_BackgroundColor): use Invalidate instead of Refresh.
16490
16491         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
16492         invalidate the cell area.
16493
16494 2006-05-15  Chris Toshok  <toshok@ximian.com>
16495
16496         [ fixes bug #78011 ]
16497         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
16498         on to DataGridPaintRow.
16499         (DataGridPaintRow): take a clip argument, and only draw the cells
16500         which intersect it.  same with the not_usedarea.
16501
16502         * Theme.cs (DataGridPaintRow) add @clip parameter.
16503
16504         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
16505         XplatUI.ScrollWindow.
16506         (ScrollToRow): same.
16507
16508         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
16509         with last column which was causing a gray swath to appear with the
16510         XplatUI.ScrollWindow code.
16511
16512 2006-05-15  Chris Toshok  <toshok@ximian.com>
16513
16514         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
16515         use XplatUI.ScrollWindow.
16516         (VerticalScrollEvent): use XplatUI.ScrollWindow.
16517
16518 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
16519
16520         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
16521
16522 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
16523
16524         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
16525           file since there are no equivalent X11 cursors
16526
16527 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
16528
16529         * MonthCalendar.cs : DateTimePicker should reflect selected date
16530           on mouse*up*, not mouse*down*. Fixed originally reported part of
16531           bug #76474.
16532
16533 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
16534
16535         * TabControl.cs : When argument index is equal or more than tab
16536           count, just ignore. Fixed bug #78395.
16537
16538 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
16539
16540         * Control.cs: Dispose all child controls when control is diposed (#78394)
16541
16542 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
16543
16544         * ColorDialog.cs: Finally it is possible to select the color with
16545           the text boxes
16546
16547 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
16548
16549         * PrintDialog.cs: Fix typo
16550
16551 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
16552
16553         * PrintDialog.cs: PrintDialog is not resizable
16554         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
16555           color. Made some ToolBar drawing methods protected virtual.
16556
16557 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
16558
16559         * PrintDialog.cs: Implementation of the PrintDialog
16560
16561 2006-05-12  Chris Toshok  <toshok@ximian.com>
16562
16563         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
16564         thumb, instead use MoveThumb.  This has the side effect of making
16565         most of the other thumb moving machinery use MoveThumb as well.
16566         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
16567         need to actually invalidate the rectangle where the new thumb will
16568         go.
16569         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
16570         We force an Update() after, so it's not as fast as it could be,
16571         but at least there's zero flicker and no droppings.
16572         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
16573         (UpdateThumbPos): add another argument (dirty), which says whether
16574         or not to calculate/add dirty regions which we later invalidate.
16575         For cases where we know we're going to use MoveThumb, we pass
16576         false for this.  Otherwise, pass true.
16577
16578 2006-05-12  Jackson Harper  <jackson@ximian.com>
16579
16580         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
16581         the status bar.
16582         
16583 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
16584
16585         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
16586           and GetClipRegion methods and UserClipWontExposeParent property.
16587         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
16588           overriding UserClipWontExposeParent property, setting to false, since
16589           Win32 handles the required expose messages to draw our clipped parent
16590           areas internally
16591         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
16592           PaintEventStart to set the user clip region if set.
16593         * Control.cs: 
16594           - Now internally tracking the Region for the control since we need to
16595             store it if the handle is not yet created and only set it when it
16596             becomes created. Before setting the region forced handle creation
16597           - Added code to draw the parents underneath a user-clipped region
16598         * Hwnd.cs: Added UserClip property
16599
16600 2006-05-12  Chris Toshok  <toshok@ximian.com>
16601
16602         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
16603         (set_Maximum): same.
16604         (set_Minimum): same.
16605         (set_SmallChange): same.
16606         (OnMouseUpSB): remove the call to refresh when releasing the
16607         thumb.  We shouldn't need it.
16608         
16609 2006-05-12  Miguel de Icaza  <miguel@novell.com>
16610
16611         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
16612         AutoSize set to None, we do not need to relayout everything, we
16613         just need to invalidate the current region.
16614
16615         (Draw): Do not draw the entire ClientArea, just redraw the
16616         clip area being passed.
16617
16618         * MdiClient.cs: Make MdiClient constructor with the Form argument
16619         internal. 
16620
16621 2006-05-12  Jackson Harper  <jackson@ximian.com>
16622
16623         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
16624         parents background image,  but strangely not their own.
16625         - (DrawStatusBarPanel): Take into account horizontal alignment
16626         when drawing the strings and icons.
16627
16628 2006-05-12  Mike Kestner  <mkestner@novell.com>
16629
16630         * ListBox.cs: avoid invalidations for focus when the collection is
16631         empty. 
16632
16633 2006-05-12  Chris Toshok  <toshok@ximian.com>
16634
16635         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
16636         invalidate the entire thumb area.  Call InvalidateDirty which
16637         limits the redraw to the thumb itself and surrounding pixels.
16638
16639         * XplatUIX11.cs (ScrollWindow): optimize copying.
16640         
16641 2006-05-12  Chris Toshok  <toshok@ximian.com>
16642
16643         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
16644         Figure out the positioning/layout in a single pass instead of
16645         multiple recursive invocations.  Speeds up the initial display of
16646         the data grid.  Also, make many things private that were
16647         originally public but unused outside this class.
16648
16649 2006-05-11  Jackson Harper  <jackson@ximian.com>
16650
16651         * MdiClient.cs: Improved layout code.
16652
16653 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
16654
16655         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
16656           not SelectedObject.
16657
16658 2006-05-11  Chris Toshok  <toshok@ximian.com>
16659
16660         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
16661         union of that will always be {0,0,width,height}.
16662
16663 2006-05-11  Jackson Harper  <jackson@ximian.com>
16664
16665         * Form.cs: Match MS's DefaultSize for forms (they must have
16666         changed the size in sp2).
16667
16668 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
16669
16670         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
16671
16672 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
16673
16674         * TextControl.cs : Fixed bug #78109. This incorrect position
16675           comparison caused crash on automatic line split.
16676         * TextBoxBase.cs : reduce duplicate code.
16677
16678 2006-05-10  Jackson Harper  <jackson@ximian.com>
16679
16680         * MdiClient.cs: Active form is only sent to the back when using
16681         the Next form functionality, when a form is clicked the current
16682         active shouldn't be sent to the back.
16683         - Layout the mdi windows when the container is first made visible.
16684         * Form.cs: Give the MdiClient a ref to the containing form when we
16685         create it.
16686         
16687 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
16688
16689         * LinkLabel.cs : link_font could be uninitialized, so populate one
16690           before actual use. Fixed bug #78340.
16691
16692 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
16693
16694         * XplatUIX11.cs : clipboard format native value is IntPtr.
16695           Fixed bug #78283.
16696
16697 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
16698
16699         * Control.cs: 
16700           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
16701             which is passed up the parent chain by DefWndProc
16702           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
16703             to DefWndProc (#77956)
16704         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
16705
16706 2006-05-10  Jackson Harper  <jackson@ximian.com>
16707
16708         * MdiClient.cs: We need to remove the controls from the mdi
16709         collection, when we close the window.
16710         * MdiWindowManager.cs: Special handling of closing mdi windows.
16711         * InternalWindowManager.cs: Make the close method virtual so the
16712         mdi window manager can handle it specially.
16713
16714 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
16715
16716         * DataGrid.cs:
16717           - Recalculate grid when the data source has changed
16718           - Matches styles provided by user from all data sources types
16719         * DataGridTableStyle.cs: For columns that provided by the user set the
16720         with the preferred value is there was unassigned.
16721         * CurrencyManager.cs: throw OnItemChanged event
16722
16723 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
16724
16725         * PictureBox.cs: Don't animate until handle is created. Start animation
16726           when handle is created.
16727
16728 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
16729
16730         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
16731           current codebase.
16732         * XEventQueue.cs: We don't need to provide the extra info
16733
16734 2006-05-10  Jackson Harper  <jackson@ximian.com>
16735
16736         * MdiClient.cs: If the mdi clients parent form has a background
16737         image set, we draw that background image for the mdi area's
16738         background.
16739
16740 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
16741
16742         * TextBoxBase.cs: Set IBeam cursor (#78347)
16743
16744 2006-05-10  Mike Kestner  <mkestner@novell.com>
16745
16746         * ToolBar.cs: fix some text padding issues with ButtonSize
16747         calculation. Update the default size to match MS documentation.
16748         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
16749         button size. Fixes #78296.
16750
16751 2006-05-10  Mike Kestner  <mkestner@novell.com>
16752
16753         * ListBox.cs: use is_visible for scrollbar positioning in case the
16754         control isn't on screen yet.  Fix off by one with Right vs Width
16755         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
16756         
16757 2006-05-10  Jackson Harper  <jackson@ximian.com>
16758
16759         * X11Dnd.cs: Drop to a control with another control on top of it.
16760         * ToolBar.cs: Work on a copy of the buttons list, so that it can
16761         be modified in click handlers. TODO: Look for similar problems in
16762         other controls.
16763
16764 2006-05-09  Jackson Harper  <jackson@ximian.com>
16765
16766         * Form.cs: Window managers need the old window state when setting
16767         window state now.
16768         * InternalWindowManager.cs: Allow the base mdi window manager to
16769         handle more of the MDI only stuff (like maximize buttons).
16770         * MdiWindowManager.cs: Fix some snafus in changing the window
16771         state.  Add all the menu functionality, for both popup and
16772         maximized menus.
16773         * MdiClient.cs: When a new form is selected the currently
16774         activated form is sent to the back, this matches MS.
16775         - Implement a new method to activate the next mdi child window.
16776
16777 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
16778
16779         * Control.cs: 
16780           - Added new InternalCapture method to allow controls to prevent
16781             the capture behaviour on the click handlers
16782           - Switched to use InternalCapture
16783         * ComboBox.cs:
16784           - Using InternalCapture to prevent mouse captures from being released
16785             on mouse button release (Fixes #78100)
16786         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
16787           returns Form borders if a caption is present. (Fixes #78310)
16788
16789 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
16790
16791         * TreeNode.cs: Changed serialization .ctor to not require every field
16792           to be present. (#78265)
16793         * OwnerDrawPropertyBag.cs: Added serialization .ctor
16794
16795 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
16796
16797         * MimeIcon.cs: for is faster than foreach for strings.
16798
16799 2006-05-05  Mike Kestner  <mkestner@novell.com>
16800
16801         * CheckedListBox.cs: update check handling code to not use selected.
16802         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
16803         behavior for visual feedback, motion response, shift/ctrl handling,
16804         and properly deal with all 4 selection modes. Updates to bounds
16805         handling logic.  Add scroll wheel support. [Fixes #77842]
16806
16807 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
16808
16809         * ListView.cs:
16810           - Moved adding of Implicit controls into .ctor. That way, subsequent
16811             creation of the controls will not cause them to think they are 
16812             toplevel windows (fixes #78200 header problem)
16813           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
16814           - Switched visibility setting of header control to use internal field
16815             to avoid triggering handle creation
16816           - Now checking if handle is created before causing a refresh when items
16817             are added (This makes us now match handle creation time with MS)
16818         * Splitter.cs: Removed loading of private splitter cursor, switched to
16819           Cursors version now that that is loading the right ones
16820         * Cursors.cs: Load proper splitter cursors from resources
16821         * Cursor.cs: Added second method of loading resource cursors for the 
16822           VS.Net users amongst us
16823
16824 2006-05-05  Mike Kestner  <mkestner@novell.com>
16825
16826         * ListView.cs: give header_control a minimum size based on the
16827         ListView size.
16828
16829 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
16830
16831         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
16832           window seems to do that with metacity, so set that type. (#78120)
16833
16834 2006-05-05  Mike Kestner  <mkestner@novell.com>
16835
16836         * ListViewItem.cs: fix Details mode checkbox layout bug.
16837         * ThemeWin32Classic.cs: draw a ListView column header for unused space
16838         at the end of the header, if it exists. [Fixes for #78200]
16839
16840 2006-05-04  Jackson Harper  <jackson@ximian.com>
16841
16842         * MdiClient.cs: Add a helper property to get the container form.
16843         * MdiWindowManager.cs: We have to make sure to use the menu origin
16844         when drawing the icons and buttons, this fixes maximized window
16845         icons/buttons on win32.
16846         * InternalWindowManager.cs: Reset the restore captions when a
16847         window goes from Maximized to Minimized and vice versa. Move the
16848         DrawMaximizedButtons into the MdiWindowManager source, tool
16849         windows can't be maximized. NOTE: This could use a little
16850         refactoring if time ever permits.
16851         
16852 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
16853
16854         * TextBox.cs: Add MWFCategoryAttributes
16855         * TextBoxBase.cs: Add MWFCategoryAttributes
16856         * Form.cs: Add MWFCategoryAttributes
16857
16858 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
16859
16860         * Control.cs: Add MWFCategoryAttributes
16861         * ScrollableControl.cs: Add MWFCategoryAttributes
16862
16863 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
16864
16865         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
16866           Divider is true. Fix a little glitch in PropertyToolBar
16867           drawing code
16868
16869 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
16870
16871         * Control.cs:
16872           - Dispose: Call base.Dispose, this causes the disposed event
16873             to be fired (and probably other, more important stuff)
16874           - SetVisibleCore: Set is_visible to true after creating the
16875             window so that the window still gets created invisible (if
16876             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
16877             to generate a WM_ACTIVE message
16878         * Form.cs: Call Dispose when we want to destroy the window, instead of
16879           just destroying the handle (Dispose will do that for us)
16880         * XplatUIX11.cs:
16881           - RootWindow also needs a queue, so we can properly process the
16882             property change events from RootWindow (like Activate)
16883           - Generatic synthetic WM_ACTIVE message when the active window is
16884             being destroyed
16885
16886 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
16887
16888         * LinkLabel.cs: Trigger a recalc of our label dimensions when
16889           bounds are changed
16890
16891 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
16892
16893         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
16894           for determining width and height (image might not be assigned if
16895           we're drawing an imagelist)
16896
16897 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
16898
16899         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
16900         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
16901           height from system
16902         * Theme.cs: No longer returns hardcoded menu height, instead calls
16903           new driver method
16904         * Form.cs (OnLoad): Scaling happens before triggering Load events 
16905           on MS (# 78257)
16906
16907 2006-05-01  Mike Kestner  <mkestner@novell.com>
16908
16909         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
16910
16911 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
16912
16913         * TextBoxBase.cs: Removed Fixme
16914         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
16915
16916 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
16917
16918         * XplatUIX11.cs:
16919           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
16920             the rectangle relative to the parent, considering borders. We
16921             don't really want that.
16922           - ScrollWindow: Fixed warning to be more understandable
16923         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
16924           scrollbars and scroll only the visible area
16925         * RichTextBox.cs: Removed debug output
16926
16927 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
16928
16929         * NumericUpDown.cs (Text): Just use base
16930         * UpDownBase.cs: Ensure txtView is created before using it
16931
16932 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
16933
16934         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
16935           casting to IntPtr to avoid 64bit overflow errors
16936
16937 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
16938
16939         * Control.cs:
16940           - AllowDrop: Don't force handle creation.
16941           - CreateHandle: Added call to tell driver if we're allowed to drop
16942
16943 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
16944
16945         * FileDialog.cs: Remember the last directory not only for the
16946           current instance but also for new FileDialog instances.
16947
16948 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
16949         
16950         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
16951           broke sending async messages
16952
16953 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
16954
16955         * XplatUIX11.cs:
16956           - ScrollWindow: Fixed method. We finally generate expose events again
16957             for scrolled areas. This was causing 'garbage' when scrolling
16958             textbox and other controls that used ScrollWindow
16959           - Switched from using the regular queue for paint events to the MS 
16960             model of 'generating' paint events when the queue is empty.
16961             We use the new XQueueEvent.Paint subclass to store which windows
16962             need painting.
16963           - AddExpose now takes the x/y/width/height of the exposed area
16964             and inserts the window into the paint queue if not already there
16965           - InvalidateWholeWindow: Switched to use new AddExpose method
16966           - UpdateMessageQueue: Added which queue to monitor for paint events
16967           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
16968             the unlikely case nothing above handles it. We reset the expose
16969             pending states to get them off the queue.
16970           - GetMessage: Now pulls a paint event if no other events are in the
16971             queue
16972           - Invalidate: Switched to new AddExpose method
16973           - PeekMessage: Updated to understand pending paint events
16974           - UpdateWindow: Fixed logic bug. We were only updating if the window
16975             didn't need updating. Also switched to sending WM_PAINT directly,
16976             like MS does.
16977         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
16978           and random access Remove(). The random access is needed to handle
16979           UpdateWindow() where a WM_PAINT is sent directly without accessing
16980           the queue.
16981         * ScrollBar.cs: Added Update() calls to cause immediate updates to
16982           allow for better feedback when scrolling. Scrollbars are small and
16983           the immediate update should make it 'feel' more responsive without
16984           slowing things down. ScrollBar still needs it's invaliate logic
16985           updated to not always invalidate the whole bar on certain changes.
16986
16987 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16988
16989         * Control.cs:
16990         (BackColor): if the control does not support a transparent background,
16991         return the default backcolor when the parent backcolor is transparent.
16992
16993 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
16994
16995         * Application.cs: Updated to new StartLoop/GetMessage API
16996         * RichTextBox.cs: Provide some output on RTF parsing errors
16997         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
16998           new queue_id argument to GetMessage and PeekMessage to allow faster
16999           handling of per-thread queues in drivers.
17000         * Hwnd.cs: Added Queue tracking and property
17001         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
17002         * XEventQueue.cs: Added thread trackingA
17003         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
17004         * XplatUIX11.cs:
17005           - Implemented new per-thread queue
17006           - GetMessage: Fixed return/break behaviour on several cases. We were
17007             returning stale messages in some cases, instead of just processing
17008             the next message
17009
17010 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
17011
17012         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
17013
17014 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
17015
17016         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
17017           fixed off-by-one comparisons between Width/Height and Right/Bottom.
17018
17019 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
17020
17021         * PropertyGridView.cs: Fix drop down width.
17022
17023 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
17024
17025         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
17026           a mess in DrawToolBar, so I removed one of them.
17027
17028 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
17029
17030         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
17031           needed (clip). Otherwise we get artifacts.
17032
17033 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
17034
17035         * FixedSizeTextBox.cs: Added constructor to allow specifying which
17036           dimension is fixed
17037         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
17038           and switched FixedSizeTextBox to only be fixed vertical (#78116)
17039         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
17040           if it matches the scale base font (avoids unneeded scaling)
17041
17042 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
17043
17044         * X11DesktopColors.cs: One gtk_init_check should be enough
17045
17046 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
17047
17048         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
17049           match MS behaviour
17050
17051 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
17052
17053         * TextBoxBase.cs: 
17054           - Generate OnTextChanged for Backspace even if we're only deleting
17055             the current selection
17056           - When setting the Text property, only select all text if the
17057             control does not have focus when it is being set. Otherwise
17058             just place the cursor at the beginning of the control
17059
17060 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
17061
17062         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
17063           Added a little helper to draw PropertyGrid ToolBar with a different
17064           border and a different BackColor.
17065         * PropertyGrid.cs: Some background parts didn't get painted with the
17066           correct background color. Added a class that helps us to draw the
17067           correct border for PropertyGridView and a class that helps us to
17068           draw ToolBars with a different backcolor
17069         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
17070
17071 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
17072
17073         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
17074         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
17075
17076 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
17077
17078         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
17079           into the palette entries. Also, since we're working on a copy
17080           we needed to copy the palette back onto the bitmap.
17081         * Cursor.cs: Same fix as XplatUIWin32.cs.
17082
17083 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
17084
17085         * ImageListStreamer.cs: Need to read the var (or we're off)
17086
17087 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
17088
17089         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
17090           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
17091           TextBoxBase.cs: Unused var fixes
17092         * AxHost.cs: Small 2.0 fix
17093         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
17094           as it seems that is what at least Metacity expects. This will make
17095           icons show up on 64bit platforms. We still have some 64bit size
17096           issues, though, since the startup app window size still won't match.
17097
17098 2006-04-25  Mike Kestner  <mkestner@novell.com>
17099
17100         * *.cs: cleanup newly reported exception var unused warnings.
17101
17102 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
17103
17104         * ThemeWin32Classic.cs: Button image alignment now matches exactly
17105           ms
17106
17107 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
17108
17109         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
17110           image. The image position is always the same, no matter if the
17111           button is pressed or not.
17112
17113 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
17114
17115         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
17116           selection and set the correct filename for SaveFileDialog.
17117           Patch by Emery Conrad.
17118
17119 2006-04-24  Mike Kestner  <mkestner@novell.com>
17120
17121         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
17122         check for item.X outside the ClientRect instead of item.Y. Fixes
17123         #78151.
17124
17125 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17126
17127         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
17128         trust that value blindly and do some sanity check. Fixes bug #77814.
17129
17130 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17131
17132         * ImageListStreamer.cs: save the mask as a 1bpp image.
17133
17134 2006-04-21  Mike Kestner  <mkestner@novell.com>
17135
17136         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
17137         pass Checked and Indeterminate to the Theme Engine. Improve
17138         encapsulation with ListBox.
17139         * ListBox.cs: Keep a StringFormat instead of calculating it every item
17140         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
17141         nested types.  Move all CheckState functionality to CheckedListBox.
17142         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
17143         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
17144         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
17145         single base list. Fix scrollbar sizing and placement to mirror MS.
17146         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
17147         used.
17148         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
17149         for CheckedListBox by using new DrawItemState info.  Center the
17150         checkboxes on the items. Use new StringFormat property.
17151
17152 2006-04-18  Jackson Harper  <jackson@ximian.com>
17153
17154         * Form.cs: MdiChildren don't do default locations the same way as
17155         regular forms.  This prevents a crash when trying to position the
17156         mdi windows.
17157
17158 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
17159
17160         * PropertyGridTextBox.cs: Formatting, copyright
17161         * PropertiesTab.cs: Formatting
17162         * PropertyGrid.cs: Formatting
17163         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
17164           click toggling of values
17165           
17166 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
17167
17168         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
17169         * Control.cs (.ctor): verify_thread_handle is static, don't reset
17170           every time a control is created
17171         * Application.cs: Removed obsolete EnableRTLMirroring method
17172
17173 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
17174
17175         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
17176         SelectedIndex to -1. Fixes bug #78121.
17177
17178 2006-04-17  Jackson Harper  <jackson@ximian.com>
17179
17180         * Binding.cs: Handle null values for Current and BindingContext.
17181         This occurs when binding is a little delayed.
17182         * CurrencyManager.cs: return null for Current when there are no
17183         items in the list.
17184         - Hookup to the listchanged event on the DataView and update
17185         bindings when the list is changed.  This fixes late binding of
17186         controls.
17187
17188 2006-04-17  Jackson Harper  <jackson@ximian.com>
17189
17190         * X11Dnd.cs:
17191         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
17192         Ringenbach.
17193
17194 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
17195
17196         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
17197           place
17198         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
17199           with the correct ButtonState
17200
17201 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
17202
17203         * XplatUIX11.cs: Improved distinguishing between window types to
17204           tell the WM a type closer to what the app wants (Fixes #78107)
17205
17206 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
17207
17208         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
17209           GrabHandle
17210
17211 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
17212
17213         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
17214           drawing code to reflect the size grip changes
17215
17216 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17217
17218         * ImageListStreamer.cs: fix handling of the mask that follows the main
17219         bitmap when deserializing and serialize it properly. The generated mask
17220         should better be a 1bpp image, but I'll do that later.
17221
17222 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
17223
17224         * FileDialog.cs: Show something in the DirComboBox on *nix if the
17225           path doesn't fit into some of our Current.Places
17226
17227 2006-04-13  Jackson Harper  <jackson@ximian.com>
17228
17229         * ComboBox.cs: Use borders instead of drawing our own decorations,
17230         try to obey correct rules for heights.
17231         * Theme.cs:
17232         * ThemeNice.cs:
17233         * ThemeClearLooks.cs:
17234         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
17235         this is now handled by borders.
17236         - Remove unused DrawListBoxDecorationSize method.
17237         
17238 2006-04-13  Mike Kestner  <mkestner@novell.com>
17239
17240         * MenuAPI.cs: null guarding for the disbled click check fixes crash
17241         reported by Alex.
17242
17243 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
17244
17245         * ThemeWin32Classic.cs: 
17246           - Fixed CPDrawStringDisabled
17247           - Corrected drawing of disabled menu items
17248           - Fixed drawing of disabled radio buttons (bug #78095)
17249           - Draw check in a disabled CheckBox with color ControlDark 
17250
17251 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
17252
17253         * Form.cs: Use the provided width when calculating the menu size;
17254           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
17255           and ClientSize.Width won't be updated yet
17256         * Application.cs: Use Visible instead of Show() to make form visible,
17257           this way we create the handle later and menusize is considered
17258
17259 2006-04-12  Mike Kestner  <mkestner@novell.com>
17260
17261         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
17262         reporting.
17263
17264 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
17265
17266         * TextBox.cs: Implemented context menu
17267
17268 2006-04-12  Mike Kestner  <mkestner@novell.com>
17269
17270         * ListView.cs: implement box selection. fixes #77838.
17271         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
17272
17273 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
17274
17275         * XplatUIX11.cs: Added setting of window type when transient window
17276           is created (metacity would move it otherwise)
17277         * X11Structs.cs: Added WINDOW_TYPE atoms
17278         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
17279           background (the control is Opaque but still wants transparent
17280           backgrounds)
17281
17282 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
17283
17284         * Control.cs: Added OnPaintBackgroundInternal to allow controls
17285           that set Opaque but don't mean it (like all ButtonBase-derived
17286           controls) to still draw their background
17287         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
17288           the background
17289
17290 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
17291
17292         * Control.cs (PaintControlBackground): Set the graphics object
17293           on our PaintEvent to null to prevent it from being disposed
17294           when the PaintEvent gets disposed
17295
17296 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
17297
17298         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
17299         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
17300
17301 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
17302
17303         * Control.cs: 
17304           - Added transparency check to BackColor property. Transparent
17305             backgrounds are only allowed if the control styles permit it
17306           - Added recursive painting of parent control background and
17307             foreground if a control with a transparent backcolor is drawn
17308             (Thanks to Tim Ringenback for providing his 'hack' as a base
17309              for this patch) Fixes #77985 and #78026.
17310           - Added Opaque style check before calling OnPaintBackground, no
17311             need to draw the background if the control is opaque
17312           - Removed ControlAccessibleObject owner variable (inherited from
17313             base, no need to define again)
17314           - Added some documentation links explaining the drawing events
17315             and styles
17316
17317 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
17318
17319         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
17320           that the affected control is the located at the left border of our
17321           parent (Fixes #77936)
17322
17323 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
17324
17325         * TextBoxBase.cs: When rendering disabled or readonly controls,
17326           draw the background with 'Control' instead of 'Window' color as
17327           long as the user hasn't specifically set a color
17328
17329 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
17330
17331         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
17332           since that won't be updated if the user types text (only if it's
17333           programatically set)
17334
17335 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
17336
17337         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
17338           layout changes do to app-triggered resizes will have the proper
17339           display rectangle for layout
17340
17341 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
17342
17343         * ThemeWin32Classic.cs:
17344           - Make use of the SystemBrushes and SystemPens wherever possible
17345           - Corrected some highlight colors
17346           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
17347             drawing
17348         * Theme.cs: Added Empty field to CPColor struct
17349
17350 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
17351
17352         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
17353           is displayed when calculating the display rectangle. Thanks to Mike
17354           for teaching me the err of my ways.
17355
17356 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
17357
17358         * ScrollableControl.cs:
17359           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
17360             (instead of 0,0) and we now return the real width/height instead of
17361             just the clientrectangle, adjusted for padding. The rectangle is
17362             now cached and created by the new CalculateDisplayRectangle method.
17363           - Created new CalculateDisplayRectange method, which basically does
17364             what get_DisplayRectangle() did originally, but now using the 
17365             right edge instead of DisplayRectangle to determine the size of
17366             our scrollbars
17367           - get_Canvas(): Fixed it to properly calculate canvas for 
17368             right/bottom controls which seem to be placed to the right/bottom
17369             of any controls that have a fixed location
17370           - Removed TODO that's taken care of
17371           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
17372             and SetDisplayRectLocation according to new MSDN2 docs
17373           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
17374             event when that is called, this is added for compatibility
17375           - ScrollControlIntoView(): Implemented.
17376           - Switched scrollbars to be implicit, they shouldn't be selectable
17377         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
17378           call it when the active control is set/changed
17379         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
17380         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
17381           implicit_control variable (used for native Win32 message generation)
17382         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
17383           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
17384         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
17385         * XplatUIStructs.cs: Added ScrollBarCommands enum
17386
17387 2006-04-10  Jackson Harper  <jackson@ximian.com>
17388
17389         * ButtonBase.cs:
17390         * CheckedListBox.cs:
17391         * ComboBox.cs:
17392         * DataGrid.cs:
17393         * DataGridView.cs:
17394         * Form.cs:
17395         * GroupBox.cs:
17396         * ListBox.cs:
17397         * PrintPreviewControl.cs:
17398         * ProgressBar.cs:
17399         * PropertyGrid.cs:
17400         * Splitter.cs:
17401         * StatusBar.cs:
17402         * TrackBar.cs:
17403         * UpDownBase.cs: Fixup base event overrides.
17404         
17405 2006-04-06  Mike Kestner  <mkestner@novell.com>
17406
17407         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
17408         all user-initiated value changes to min <= value <= max-thumbsz+1.
17409         (set_Value): check for vert/horiz when calculating new thumb position.
17410         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
17411         like MS does.
17412         (OnMouseMoveSB): refactor the thumb dragging code and refine
17413         invalidation logic to reduce flicker.
17414         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
17415         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
17416         (UpdateThumbPosition): small code readability cleanup
17417
17418 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
17419
17420         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
17421           different
17422
17423 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
17424
17425         * ThemeNice.cs: Use a better graphics effect when a button is pressed
17426
17427 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
17428
17429         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
17430         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
17431           This dramatically reduces the number of Pen.Dispose calls. 
17432           Where possible call ResPool methods only once instead of calling it
17433           over and over again (for example for the same color).
17434
17435 2006-04-06  Mike Kestner  <mkestner@novell.com>
17436
17437         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
17438         Also remove an unused private field on the collection. Fixes #77972.
17439
17440 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
17441
17442         * ThemeNice.cs: Added ToolBar drawing code
17443
17444 2006-04-06  Mike Kestner  <mkestner@novell.com>
17445
17446         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
17447         I'm assuming that means we need to look up the toplevel for the
17448         provided control. Fixes the crash trace in #77911 but exposes another
17449         crash in some strange reflection usage in NDocGui.
17450
17451 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
17452
17453         * ThemeNice.cs: Gave it a little silver touch and added Images
17454           method
17455         * FontDialog.cs: FontDialog is not resizable
17456         * FileDialg.cs: Added SizeGripStyle.Show
17457
17458 2006-04-05  Jackson Harper  <jackson@ximian.com>
17459
17460         * KeyboardLayouts.cs: Remove warning.
17461
17462 2006-04-05  Jackson Harper  <jackson@ximian.com>
17463
17464         * Control.cs: Enable OnPaintInternal so we can use it for drawing
17465         all of our controls instead of Paint +=.
17466         * ListBox.cs:
17467         * ListView.cs:
17468         * MenuAPI.cs:
17469         * MessageBox.cs:
17470         * NotifyIcon.cs:
17471         * ProgressBar.cs:
17472         * ScrollBar.cs:
17473         * Splitter.cs:
17474         * StatusBar.cs:
17475         * TabControl.cs:
17476         * TextBoxBase.cs:
17477         * ToolBar.cs:
17478         * TrackBar.cs:
17479         * UpDownBase.cs:
17480         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
17481         use OnPaintInternal. Remove Width/Height and Visible checks in
17482         paint handler, this is done at a higher level now.
17483         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
17484         * PaintEventArgs.cs: Add a handled flag so controls that don't
17485         want anymore painting after OnPaintInternal can make sure OnPaint
17486         isn't called.
17487
17488 2006-04-05  Mike Kestner  <mkestner@novell.com>
17489
17490         * Form.cs: fix the menu WndProc hacks to respect the native enabled
17491         state of the form, so that we don't process events when Modal dialogs
17492         are up. Fixes #77922.
17493
17494 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
17495
17496         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
17497           checking is done.
17498
17499 2006-04-05  Mike Kestner  <mkestner@novell.com>
17500
17501         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
17502
17503 2006-04-05  Mike Kestner  <mkestner@novell.com>
17504
17505         * ListView.cs (HeaderMouseMove): null guarding for the over column
17506         when setting up the drag_to_index.  Fixes #78015.
17507
17508 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
17509
17510         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
17511           in the taskbar. Transient windows seem to accomplish that.
17512
17513 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
17514
17515         * Form.cs:
17516           - Re-enabled CreateParams.X/Y code for FormStartPosition
17517           - Added code for manual placement when creating the Control
17518           - Incomplete patch to treat MDI forms differently when
17519             setting the ClientSizeCore. (Still need to figure out handling
17520             x/y coords there)
17521         * XplatUIX11.cs:
17522           - When we're explicitly setting the X/Y position of a non-Child
17523             window, let the WM know. Metacity really wants this.
17524
17525 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
17526
17527         * ThemeNice.cs: Added CPDrawButton
17528
17529 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
17530
17531         * ThemeNice.cs: Changed the color for focused buttons and activated
17532           the arrows for small scroll buttons.
17533
17534 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
17535
17536         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
17537           anymore. Changed some method modifiers to protected (virtual)
17538         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
17539           changes
17540         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
17541           Updated drawing of menus, buttons and progressbars; added
17542           CPDrawBorder3D 
17543
17544 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17545
17546         * ImageListStreamer.cs: implemented serialization/deserialization
17547         of the images.
17548
17549 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
17550
17551         * ThemeWin32Classic.cs:
17552           - Removed all the DrawFrameControl stuff; CPDrawButton,
17553             CPDrawCheckBox and CPDrawRadioButton are now handled directly
17554             inside the methods
17555           - Updated and corrected the drawing code of CPDrawButton,
17556             CPDrawCheckBox and CPDrawRadioButton to better match ms
17557           - Updated theme checkbox and radiobutton code to use the CP*
17558             methods
17559
17560 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
17561
17562         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
17563           bug is fixed
17564
17565 2006-03-31  Jackson Harper  <jackson@ximian.com>
17566
17567         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
17568         sometimes.
17569         * UpDownBase.cs: Don't CreateGraphics manually, use a
17570         Refresh. Ideally we would invalidate the correct areas here.
17571
17572 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
17573
17574         * XplatUIX11.cs: 
17575           - We now track the mapping state of windows. If a window (or 
17576             one of it's parents) is not mapped we no longer permit
17577             WM_PAINT messages to be generated since we'd otherwise get 
17578             lots of BadMatch X errors. Jackson did all the work figuring
17579             out the problem.
17580           - Destroying the caret if the window it's contained in is 
17581             destroyed. Can't use regular DestroyCaret method since it
17582             might fall into a drawing function (trying to remove the
17583             caret) and with that generate new BadMatch errors. Again,
17584             Jackson tracked this down.
17585           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
17586             make sure we send the messages to all windows. (The old code
17587             would send the WM_DESTROY to the window, and then all child
17588             windows would be 'gone' because the WM_DESTROY handle lookup
17589             would no longer find the destroyed window)
17590         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
17591         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
17592
17593 2006-03-31  Jackson Harper  <jackson@ximian.com>
17594
17595         * ScrollableControl.cs: Dont recalc if we are not visible.
17596
17597 2006-03-31  Mike Kestner  <mkestner@novell.com>
17598
17599         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
17600         the visibility branch.
17601
17602 2006-03-31  Jackson Harper  <jackson@ximian.com>
17603
17604         * ScrollBar.cs: Cap values when incrementing/decrementing.
17605
17606 2006-03-31  Mike Kestner  <mkestner@novell.com>
17607
17608         * MenuAPI.cs: setup menu.tracker for popup/context menus.
17609         * ToolTip.cs: guard against timer expirations with no active control.
17610         Not sure why it happened.
17611
17612 2006-03-31  Mike Kestner  <mkestner@novell.com>
17613
17614         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
17615         text.
17616         * ToolTip.cs: Position the tooltip based on where the cursor is at
17617         popup time, not at MouseEnter time.  Add a Down state so that we don't
17618         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
17619         positioning offset. Lookup DisplaySize at positioning time, since it
17620         can theoretically change during invocation.
17621         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
17622         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
17623
17624 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
17625
17626         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
17627           Fixes behaviour when the Text property of the box is String.Empty
17628
17629 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
17630
17631         * XplatUIX11.cs: Only send mouseleave for our client windows, not
17632           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
17633           a window)
17634
17635 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
17636
17637         * FileDialog.cs: Visual enhancement for the popup buttons in 
17638           PopupButtonPanel
17639
17640 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
17641
17642         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
17643           code
17644
17645 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
17646
17647         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
17648           highlighted menu items to match ms
17649
17650 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
17651
17652         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
17653
17654 2006-03-30  Mike Kestner  <mkestner@novell.com>
17655
17656         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
17657         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
17658         go active to account for HotLight to Selected transition.
17659         * MenuItem.cs: add internal Selected prop. Fill out the Status
17660         property by calculating it from item info. Add HotLight,
17661         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
17662
17663 2006-03-30  Mike Kestner  <mkestner@novell.com>
17664
17665         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
17666
17667 2006-03-29  Jackson Harper  <jackson@ximian.com>
17668
17669         * Form.cs: Implement TODO.
17670
17671 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
17672
17673         * PrintPreviewDialog.cs: Implemented missing methods and events; still
17674           missing proper dialog setup in the constructor
17675
17676 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
17677
17678         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
17679         * Control.cs:
17680           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
17681           - Fixed ResetBindings and removed TODO
17682           - Added check for cross-thread calls to get_Handle()
17683           - Added Marshaller attribute for set_Font to satisfy class status
17684         * FontDialog.cs: Removed TODOs that seemed implemented
17685         * UpDownBase.cs: Removed unneeded TODO and Fixme
17686         * MessageBox.cs: Implemented support for Default button and removed TODO
17687         * FileDialog.cs: Removed obsolete TODO
17688         * DomainUpDown.cs: Removed obsolete TODO
17689         * ButtonBase.cs: Removed obsolete TODO
17690         * XplatUIWin32.cs: Removed obsolete TODO
17691         * Form.cs:
17692           - Removed obsolete TODO
17693           - Calling CheckAcceptButton when the acceptbutton is changed to allow
17694             internal status updates
17695           - Making sure the active control is selected when the control is created
17696         * CurrencyManager.cs: Removed obsolete TODO
17697
17698 2006-03-29  Mike Kestner  <mkestner@novell.com>
17699
17700         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
17701         of PrintPreviewDialog and RichTextBox.
17702
17703 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
17704
17705         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
17706           DarkDark, Light and LightLight colors for a specific color
17707         * ThemeWin32Classic.cs:
17708           - Use Button drawing code to draw RadioButtons and CheckBoxes with
17709             Appearance = Button 
17710           - Make use of the new ResPool helper CPColor
17711           - Draw ProgressBar and StatusBar with correct 3D borders
17712
17713 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
17714
17715         * ColorDialog.cs: Return selected color. Fixes bug #77940.
17716
17717 2006-03-28  Mike Kestner  <mkestner@novell.com>
17718
17719         * ListView.cs: fix Icon layout to plan for scrollbar widths when
17720         calculating col/row counts.
17721
17722 2006-03-28  Mike Kestner  <mkestner@novell.com>
17723
17724         * ColumnHeader.cs:
17725         * ListView.cs:
17726         * ListViewItem.cs:
17727         * Menu.cs: 
17728         switch to explicit interface method implementation for some methods
17729         corcompare identifies as inconsistent with MS.
17730
17731 2006-03-28  Mike Kestner  <mkestner@novell.com>
17732
17733         * MainMenu.cs: 
17734         * Menu.cs:
17735         add a few missing methods from the class status output.
17736
17737 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
17738
17739         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
17740           correct.
17741
17742 2006-03-28  Mike Kestner  <mkestner@novell.com>
17743
17744         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
17745
17746 2006-03-27  Mike Kestner  <mkestner@novell.com>
17747
17748         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
17749         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
17750
17751 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
17752
17753         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
17754
17755 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17756
17757         * ThemeWin32Classic.cs:
17758           - GroupBox: Inserted a little gap between the text and the lines
17759             on the right side
17760           - Made the code in CPDrawBorder3D more readable
17761           - Corrected the drawing location of the up and down arrows in 
17762             CPDrawScrollButton
17763
17764 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17765
17766         * ControlPaint.cs: Corrected line widths in DrawBorder for
17767           ButtonBorderStyle Inset and Outset
17768
17769 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17770
17771         * ThemeWin32Classic.cs:
17772           - Rewrote the totally broken CPDrawBorder3D method. That was
17773             one of the main problems for the terrific ThemeWin32Classic
17774             look
17775           - Updated and corrected Button drawing
17776           - Correct the dimensions of the SizeGrip to match ms ones
17777           - Removed a small drawing glitch in DrawComboBoxEditDecorations
17778         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
17779           Border3DStyle.Sunken to match ms.
17780
17781 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17782
17783         * ThemeWin32Classic.cs: First small part of the "de-uglify
17784           ThemeWin32Classic" effort, SizeGrip
17785
17786 2006-03-24  Jackson Harper  <jackson@ximian.com>
17787
17788         * XplatUIX11.cs: Give a max idle time of one second, this matches
17789         MS and forces an Idle event every second when there are no other
17790         events in the queue.
17791
17792 2006-03-24  Mike Kestner  <mkestner@novell.com>
17793
17794         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
17795         * ListView.Item.cs: fix layout issues with null image lists and images
17796         smaller than checkbox size.
17797         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
17798         mode like MS does.  It's weird, but consistent.  ;-)
17799         Fixes #77890.
17800
17801 2006-03-24  Mike Kestner  <mkestner@novell.com>
17802
17803         * ListView.cs: Scroll wheel support for the item control.  Fixes
17804         #77839.
17805
17806 2006-03-23  Jackson Harper  <jackson@ximian.com>
17807
17808         * ScrollableControl.cs: Special case negative sized areas, not
17809         zero.
17810         * MonthCalendar.cs: Save the rect of the clicked date so we can
17811         use it for invalidation.
17812         - Try to cut down on the number of invalidates
17813         - Invalidate the rect the mouse is over and was over when moving
17814         the mouse, so we get the focus box following the cursor.
17815
17816 2006-03-23  Mike Kestner  <mkestner@novell.com>
17817
17818         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
17819         focus rectangle drawing. Fixes #77835.
17820
17821 2006-03-23  Mike Kestner  <mkestner@novell.com>
17822
17823         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
17824         the if and else if and reverting back to the original == check on the
17825         None conditional.
17826
17827 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
17828
17829         * FontDialog.cs: Update the example panel if the selected index of
17830           the fontListBox changes.
17831
17832 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
17833
17834         * FileDialog.cs: Make FileDialog remember which directory it was in
17835           last in the same execution.
17836
17837 2006-03-22  Mike Kestner  <mkestner@novell.com>
17838
17839         * FileDialog.cs: make the DropDownMenu on the toolbar display
17840         RadioChecks since they are mutually exclusive and that's what MS does.
17841
17842 2006-03-22  Mike Kestner  <mkestner@novell.com>
17843
17844         * Theme.cs: add Color param to CPDrawMenuGlyph.
17845         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
17846         checks and radio marks and arrows are visible on highlighted items.
17847         * ControlPaint.cs: update to use new Theme signature.
17848
17849 2006-03-22  Mike Kestner  <mkestner@novell.com>
17850
17851         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
17852         is active. Fixes #77870.
17853
17854 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
17855
17856         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
17857           to be focused/selected after startup
17858
17859 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
17860
17861         * ColorDialog.cs: 
17862           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
17863             CustomColors and ShowHelp properties
17864           - Some internal rewrites to get better results when using the
17865             ColorMatrix
17866
17867 2006-03-22  Mike Kestner  <mkestner@novell.com>
17868
17869         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
17870         HoverSelection.  Fixes #77836.
17871
17872 2006-03-22  Mike Kestner  <mkestner@novell.com>
17873
17874         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
17875         ToggleButtons.  (De)Sensitize the Back button around a stack count of
17876         1, not 0.  Update ButtonSize based on a pixel count of the win32
17877         control.  Adjust the toolbar size/location for new button size.
17878
17879 2006-03-22  Jackson Harper  <jackson@ximian.com>
17880
17881         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
17882         true.
17883         * ScrollBar.cs: When doing increments and decrements we need to
17884         set the Value property so that ValueChanged gets raised. A
17885         possible optimization here would be to make an internal SetValue
17886         that doesn't invalidate immediately.
17887         * ToolTip.cs: Tooltips get added to their container (when
17888         supplied) so they get disposed when the container is disposed.
17889         - Don't create tooltips for String.Empty. This prevents all these
17890         little 2-3 pixel windows from showing up when running nunit-gui
17891         and driving me mad.
17892         * Form.cs: Don't set topmost when setting the owner if the handles
17893         haven't been created yet.  The topmost set will happen when the
17894         handles are created.
17895
17896 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
17897
17898         * XplatUIX11.cs:
17899           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
17900           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
17901             visible (to allow them to recalculate their sizes)
17902
17903 2006-03-21  Mike Kestner  <mkestner@novell.com>
17904
17905         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
17906         methods. Removed a ton of redundant code.  Still not really happy with
17907         the border rendering, but I think that's mainly because of the
17908         ControlDarkDark being black instead of a dark grey. Depending on how 
17909         close we want to be, we might want to revisit those color choices.
17910         Among the new features added during the refactor were DropDownArrow
17911         pressed rendering, Disabled image rendering.  Proper flat appearance
17912         boundary rendering.  Removed the Divider and Wrapping dividers since I
17913         can't figure out any combination of themes and conditions to make the
17914         MS control draw a horizontal line on a toolbar despite what the
17915         Divider property docs indicate.
17916         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
17917         conditions and incorrect layout.  Updated to coding standard.
17918         * ToolBarButton.cs: refactored layout and positioning code from
17919         ToolBar to here.  Invalidate wherever possible instead of forcing
17920         redraws of the whole toolbar. 
17921         (Known remaining issues: explicit ButtonSize smaller than provided
17922         images.)
17923
17924 2006-03-21  Mike Kestner  <mkestner@novell.com>
17925
17926         * ContextMenu.cs (Show): use the position parameter instead of just
17927         showing at the MousePosition.
17928
17929 2006-03-21  Jackson Harper  <jackson@ximian.com>
17930
17931         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
17932         control handle this.
17933         * TreeNodeCollection.cs: If we are clearing the root node we need
17934         to reset top_node so calcs can still happen.
17935         * ThemeWin32Classic.cs: This is a Flags so we need to check
17936         properly.
17937         
17938 2006-03-21  Jackson Harper  <jackson@ximian.com>
17939
17940         * DataGrid.cs: Create columns when the binding context has been
17941         changed.
17942         * X11Structs.cs: Keysyms are uints.
17943         - Add size to fix build.
17944
17945 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
17946
17947         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
17948           XplatUIOSX.cs: 
17949           - Added ResetMouseHover method to allow controls to retrigger
17950             hovering if they need it more than once
17951           - Implemented MouseHoverTime and MouseHoverSize properties
17952         * Timer.cs: Start() must reset the interval
17953         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
17954           properties
17955
17956 2006-03-21  Jackson Harper  <jackson@ximian.com>
17957
17958         * X11Keyboard.cs: improved layout detection. Move the nonchar
17959         tables into this file.
17960         * KeyboardLayouts.cs: Move the tables into resource files.
17961
17962 2006-03-21  Mike Kestner  <mkestner@novell.com>
17963
17964         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
17965
17966 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
17967
17968         * Mime.cs: Various speed optimizations. Looking up mime types
17969           is now 2 times faster than before
17970
17971 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
17972
17973         * CreateParams.cs: Added internal menu field
17974         * Control.cs: 
17975           - Switched call order for UpdateBounds; now we always call
17976             the one that also takes ClientSize, and we're calculating the 
17977             client size via driver method in the others. The previous
17978             method of tracking client size by difference wasn't working
17979             for forms where even the starting client size wouldn't match
17980             the overall form size (due to borders) (Part of fix for #77729)
17981           - CreateParams(): Do not use parent.Handle unless the handle is
17982             already created. Causes havoc with Nexxia and throws off our
17983             creation of controls
17984         * XplatUIX11.cs:
17985           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
17986           - Switched handling of ConfigureNotify over to new PerformNCCalc 
17987             method (consolidates code)
17988           - Changed RequestNCRecalc to use new PerformNCCalc method
17989           - Added calls to RequestNCRecalc when menus and borders are changed
17990             to allow app to set NC size. (Part of fix for #77729) This matches
17991             when MS send a WM_NCRECALC on Win32 windows.
17992           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
17993             (Part of fix for #77729). This matches what MS does, they also
17994             send that message when the form is made visible.
17995           - XException.GetMessage: Improved usability of X errors by including
17996             a translation of the window into Hwnd and Control class
17997           - Improved debug info for window creation, reparenting and destruction
17998           - Created helper method WindowIsMapped() [Currently not used]
17999         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
18000         * Form.cs:
18001           - CreateParams: Now setting our menu on the new internal menu field
18002           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
18003             avoid calculating the same property twice
18004         * Hwnd.cs:
18005           - Improved usability of ToString() for debugging purposes
18006           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
18007             determine the height of the menu, instead of just the font. This
18008             required to also create a graphics context and to keep a bmp 
18009             around (for performance reasons)
18010
18011 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
18012
18013         * MenuAPI.cs: Added OnMouseUp method
18014         * Form.cs:
18015           - Now remembering the requested client size, avoids size errors
18016           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
18017             instead of base if the menu is active. This is required due to
18018             control now capturing and releasing on down/up and it would
18019             prematurely release our menu capture
18020
18021 2006-03-17  Jackson Harper  <jackson@ximian.com>
18022
18023         * KeyboardLayouts.cs: Add the czech layouts.
18024
18025 2006-03-16  Jackson Harper  <jackson@ximian.com>
18026
18027         * Control.cs: Use the viewport space when sizing not the controls
18028         client size, so things like ScrollableControl that effect the
18029         viewport size (when scrollbars are added) are computed correctly.
18030         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
18031         of ManagerEntrys.
18032         - Handle creating BindingManagers for null data sources.
18033         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
18034         source, otherwise when rows are added they are added to the 'fake'
18035         datasource and we will crash when trying to set the position in
18036         those rows.
18037         - Use Implicit scrollbars on the datagrid so they arent
18038         selectable.
18039         
18040 2006-03-16  Jackson Harper  <jackson@ximian.com>
18041
18042         * Binding.cs:
18043         * InternalWindowManager.cs:
18044         * MdiWindowManager.cs:
18045         * X11Keyboard.cs: I really want Mike to love me again (fix
18046         compiler warnings).
18047
18048 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
18049
18050         * DataGrid.cs:
18051           - OnMouseDown: Switch to editing mode when clicking on the cell
18052                          even if we're clicking on the cell that's currently 
18053                          selected
18054           - ProcessGridKey: Left/Right now wrap like MS.Net does
18055           - ProcessGridKey: Tab now knows to add a new row when tab is
18056                             pressed in the cell of the last column of the 
18057                             last row
18058           - ProcessGridKey: Enter now adds another row  if pressed in the last
18059                             row and selectes the new row, same column cell
18060           - ProcessGridKey: Home/End navigate columns, not rows, like 
18061                             originally implemented
18062           - Broke ProcessKeyPreview code out into an extra Internal method
18063             so it can be called from the edit code
18064         * DataGridTextBox.cs (ProcessKeyMessage):
18065           - Switched to accept Tab keypresses
18066           - Added F2 handling to allow jumping to the end of the edited cell
18067           - Added logic to allow moving caret left/right inside edited cell
18068             and making the edited cell jump when the caret hits cell borders
18069           - Tab and Enter are now passed to the datagrid after being handled
18070         * TextBoxBase.cs:
18071           - Removed capture code now that Control handles it
18072           - set_SelectionStart now ensures caret is visible
18073
18074 2006-03-16  Jackson Harper  <jackson@ximian.com>
18075
18076         * TrackBar.cs: Debackwards the increment/decrement for handling
18077         mouse clicks on the bar with vertical trackbars.
18078         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
18079         bottom to match MS.
18080
18081 2006-03-16  Mike Kestner  <mkestner@novell.com>
18082
18083         * ListView.cs: make shift/ctrl keyboard and mouse selection 
18084         consistent with the MS control. Fix a bug in
18085         SelectedListViewItemCollection.Clear that was pissing me off for the
18086         better part of a day because the collection was being altered
18087         underneath us as we walked the list.
18088
18089 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
18090
18091         * Control.cs: Not sure how we could miss this so long, but it seems
18092           that MS.Net has Capture set all the way from before calling 
18093           OnMouseDown through sending the mouse events until after
18094           OnMouseUp. This will fix DataGrid's selection being set to end
18095           at the location of the MouseUp.
18096
18097 2006-03-15  Jackson Harper  <jackson@ximian.com>
18098
18099         * BindingContext.cs: Check the binding after its added so that it
18100           can initialize the binding managers and hookup to events.
18101         * Binding.cs: Data members seem to sometimes include rows/cols in
18102           the format Row.Column we now take this into account.
18103           - Hookup to the position changed event so we can update the
18104           control when the position has changed in the data set.
18105         * CurrencyManager.cs: Take into account the row/col naming
18106           convention when creating dataset tables.
18107         * BindingContext.cs: Using a newer better way of storing
18108           datasource/datamember pairs.  Hopefully this better matches MS for
18109           looking up binding managers.
18110
18111
18112 2006-03-15  Jackson Harper  <jackson@ximian.com>
18113
18114         * BindingContext.cs: The currency manager needs the data member
18115         name, if the member is a data set we use the name to find the
18116         correct table.
18117         * CurrencyManager.cs: When creating the list prefer an IList over
18118         an IListSource.
18119         - Attempt to create a DataTable from a DataSet (TODO: might need
18120         some better error checking here, although MS doesn't seem to have much)
18121         - If we have a DataTable create a view and use it as our list.
18122
18123 2006-03-15  Mike Kestner  <mkestner@novell.com>
18124
18125         * ListView.cs: keep a matrix of the icon mode layout to facilitate
18126         keyboard navigation. Support Up/Down/Left/Right selection correctly
18127         for all 4 View modes.
18128         * ListViewItem.cs: add internal row/col fields for icon layouts.
18129
18130 2006-03-15  Jackson Harper  <jackson@ximian.com>
18131
18132         * TabControl.cs: Redraw the tabs when we resize so their newly
18133         calculated sizes are drawn on screen.
18134         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
18135         composite characters.
18136         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
18137         - filter events so that composite characters can be created
18138         patches by peter
18139         * X11Structs.cs: Add XIMProperties enum.
18140
18141 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
18142
18143         * Control.cs (BringToFront, SendToBack): Don't use window or handle
18144           unless it's created
18145
18146 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
18147
18148         * Control.cs (PerformLayout): We don't need to consider visiblity
18149           for anchoring, only for docking. This fixes 'whacky' alignment
18150           in listbox and other controls that use implicit scrollbars after
18151           the previous PerformLayout patch
18152         * ListBox.cs: Switched to use implicit scrollbars
18153           
18154 2006-03-14  Mike Kestner  <mkestner@novell.com>
18155
18156         * ToolBar.cs: 
18157         * VScrollBar.cs:
18158         - chain up the "new event" overrides to base and use
18159         OnEvent to raise them.  Part of fix for bug #76509.
18160
18161 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
18162
18163         * FileDialog.cs: Do not select an item in the parent directory
18164           on backspace
18165
18166 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
18167
18168         * Control.cs (PerformLayout): It would seem that we considered
18169           invisible windows for our layout. Not quite the right thing
18170           to do. Now we don't any longer, thereby fixing bug #76889.
18171
18172 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
18173
18174         * Control.cs (CanFocus): I goofed. A control can have focus 
18175           even though it's not selectable. Made it match MS docs.
18176
18177 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
18178
18179         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
18180           center by default (fixes #76895)
18181         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
18182           all uses of Border3DSides.All with the explicit ORd together
18183           Left|Right|Top|Bottom because I assume that nobody was aware 
18184           that All also implies a center fill. Most places I checked had
18185           a fill right above.
18186         * ProgressBarStyle.cs: Added
18187
18188 2006-03-13  Mike Kestner  <mkestner@novell.com>
18189
18190         * ListView.cs: fix breakage in drag shadow header positioning 
18191         from Peter's csc compilation fix.
18192
18193 2006-03-13  Mike Kestner  <mkestner@novell.com>
18194
18195         * ListView.cs: fix NRE produced by backspacing twice in a focused
18196         FileDialog.
18197
18198 2006-03-13  Mike Kestner  <mkestner@novell.com>
18199
18200         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
18201
18202 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
18203
18204         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
18205           be changed
18206         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
18207           the allowed size before making programmatic size changes
18208
18209 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
18210
18211         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
18212           set, metacity is broken and will still use the emty sizes in 
18213           the struct. (Fix for #77089)
18214
18215 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
18216
18217         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
18218           WindowExStyles and marked both enums as Flags
18219         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
18220           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
18221           to match WindowStyles split
18222         * XplatUIX11.cs:
18223           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
18224           - Updated to match WindowStyles split
18225         * XplatUIWin32.cs:
18226           - Fixed FosterParent creation, was using ExStyle on the Style field
18227             (This should help with Popup focus issues)
18228           - Updated to match WindowStyles split
18229
18230 2006-03-13  Jackson Harper  <jackson@ximian.com>
18231
18232         * MdiWindowManager.cs: Use the system menu height. Fixes some
18233         strange sizing issues.
18234
18235 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
18236
18237         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
18238         * TextBoxBase.cs:
18239           - Scroll to caret after inserting text (#77672)
18240           - Make scroll range one pixel higher, fixes off-by-one error (and
18241             makes underlines visible on the last line)
18242
18243 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
18244
18245         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
18246           the keyboard state from being stuck with keys in 'pressed' state when
18247           focus is switched away via keyboard
18248         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
18249           reset the keyboard if no X11 KeyUp events are expected to come
18250         * X11Structs.cs: Switched type of Visible to bool to match driver
18251
18252 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
18253
18254         * TextControl.cs:
18255           - Switched caret to be just 1 pixel wide, matches MS and looks less
18256             clunky
18257           - Moved caret display 1 pixel down from the top of the control
18258             to improve view
18259           - InsertCharAtCharet: Update the selection start if moving the caret
18260             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
18261           - No longer always creating the caret when the caret methods are
18262             called. Only the actual ShowCaret/HideCaret will do that now
18263           - Only setting caret visible if the owner control has focus
18264           - UpdateView: Added invalidation-shortcut logic for center and right 
18265             aligned text. Previously we'd update all according to the left
18266             logic which caused drawing errors. Also fixed height of invalidated
18267             areas, now properly invalidating the whole area (was off-by-one)
18268           - owner_HandleCreated: Always generate the document when the
18269             handle is created; this ensures that 
18270         * TextBoxBase.cs:
18271           - Fixed situation where caret would disappear under the right
18272             window border, also improved scrolling behaviour on left-
18273             aligned textboxes
18274           - Fixed right-aligned textboxes to have a border to the
18275             right instead of the caret being under the right border
18276         * XplatUIX11.cs:
18277           - Switched from 'nested' to simple visible/not visible tracking 
18278             for caret (part of fix for #77671)
18279           - No longer passing through translated FocusIn/FocusOut messages
18280             since we were notifying too often and the wrong windows. Instead
18281             we just notify our focussed window of receiving or loosing focus
18282         * XplatUIWin32.cs: Switched from 'nested' show/hide 
18283           counting for caret to simple visible yes/no behaviour (part of 
18284           fix for #77671)
18285
18286 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
18287
18288         * Mime.cs: Remove debug code...
18289
18290 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
18291
18292         * MimeGenerated.cs: Removed
18293         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
18294           and subclasses) from /usr/(local/)share/mime and
18295           $HOME/.local/share/mime.
18296
18297 2006-03-10  Jackson Harper  <jackson@ximian.com>
18298
18299         * MdiWindowManager.cs: Recalc the NC area when a window is
18300         maximized/restored so that the menu area is drawn on forms that
18301         don't have a menu.
18302
18303 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
18304
18305         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
18306           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
18307           us to force a WM_NCCALCRESIZE message being sent. This is needed
18308           for MDI maximizing.
18309
18310 2006-03-10  Jackson Harper  <jackson@ximian.com>
18311
18312         * Form.cs: We need to use the ActiveMenu when calculating menu
18313         height.
18314         - Fix nullref when the window manager hasn't been created yet.
18315         * Control.cs: Fix nullref when we try to bring a control to the
18316         front that has no parent.
18317         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
18318         height.
18319         - Add a dummy item to the maximized menu so it always has the
18320         correct height. Otherwise when there are no menus we don't get our
18321         icon and buttons.
18322         
18323
18324 2006-03-10  Jackson Harper  <jackson@ximian.com>
18325
18326         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
18327         stuff.
18328         * Form.cs: Make the window_state internal so the window managers
18329         can track it.
18330         - When an MDI child is maximized let its window manager create the
18331         main menu (so it can add its icon).
18332         - Notify the window managers of state changes
18333         - Let the window manager paint its buttons and handle button
18334         clicks on the menu when it is maximized.
18335         * InternalWindowManager.cs: Move the prev_bounds into the mdi
18336         window manager, since tool windows don't use it, only mdi windows.
18337         - Tell the main form that we don't want it to handle NCPAINT
18338         itself to avoid extra painting.
18339         - Handle clicks on a maximized windows menu.
18340         - Handle window state changes
18341         - Handle minimize/maximize clicks correctly by setting the window state.
18342         * MdiWindowManager.cs: Add an icon menu that (the menu you get
18343         when clicking on the forms icon).
18344         - New method to create a forms maximized menu. This is its normal
18345         menu + an icon.
18346         - Handle window state changes.
18347         - Handle sizing of maximized windows.  Maximized windows are just
18348         drawn bigger then the parent visible area. All controls are still
18349         there, they are just outside the visible area (this matches windows).
18350         * MdiClient.cs: No scrollbars when a child window is maximized.
18351         - Let the children windows figure out how big they should be when
18352         sizing maximized windows.
18353         - Implement a version of ArrangeIconicWindows somewhat similar to
18354         Windows version.  There are some little differences, but I don't
18355         think any app will rely on the layout of minimized mdi windows.
18356
18357 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
18358
18359         * Padding.cs: Several fixes to allow compiling with csc 2.0
18360
18361 2006-03-09  Jackson Harper  <jackson@ximian.com>
18362
18363         * Menu.cs:
18364         * MenuItem.cs: Cheap hack so we can add items to the list without
18365         the events being raised.  This allows adding mdi items during
18366         drawing. TODO: Should probably find a better time to add the items.
18367
18368 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
18369
18370         * ThemeWin32Classic.cs:
18371           - CheckBox_DrawText: Added logic to not wrap if not enough space
18372             is available (Fix for bug #77727)
18373           - RadioButton_DrawText: Added logic not to wrap if not enough
18374             space is available (Fix for bug #77727). Also removed some
18375             duplicate code, DrawString always drawing the regular text
18376             before hitting the if statement.
18377
18378 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
18379
18380         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
18381
18382 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
18383
18384         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
18385         * ContainerControl.cs: Partial implementation of some 2.0 scaling
18386           methods. Moved the new 2.0 properties into alphabetical order with
18387           other properties and added MonoTODO tags
18388
18389 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
18390
18391         * AutoScaleMode.cs: Added. Fix build.
18392
18393 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
18394
18395         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
18396           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
18397           and was requiring premature handle creation for calls from above
18398         * Form.cs, Control.cs: Removed handle arguments from calls to
18399           CalculateClientRect()
18400
18401 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
18402
18403         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
18404           drag_column.column_rect is MarshalByRef and can't be used that way
18405
18406 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
18407
18408         * AxHost.cs: Added deserialization constructor for 
18409           AxHost+State (fixes 77743)
18410
18411 2006-03-09  Mike Kestner  <mkestner@novell.com>
18412
18413         * ListView.cs: 
18414         - Added column drag reordering for details view.
18415         - fixed behavior when mouse is dragged off column and
18416         AllowColumnReorder is false.
18417         * ColumnHeader.cs: clone the format too in Clone.
18418         * Theme.cs: add DrawListViewHeaderDragDetails method.
18419         * ThemeWin32Classic.cs:
18420         - impl new method for drawing drag column shadows and targets.
18421         - support column offset for details mode in DrawListViewItem.
18422
18423 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
18424
18425         * TextControl.cs: Reset the char_count when the document is cleared
18426           (Fixes bug reported on mono-winforms mailing list)
18427
18428 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
18429
18430         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
18431           of calling base we simply process the key ourselves, since both
18432           DefWindowProc and the handled method would set m.Result. 
18433           (Fixes #77732)
18434
18435 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
18436
18437         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
18438           method also moves the window; instead implemented a copy of
18439           Control.ScaleCore (Part of fix for #77456)
18440         * TextBoxBase.cs: 
18441           - Created new CreateGraphicsInternal method to allow providing
18442             a graphics context when no handle is created without triggering
18443             handle creation. (Part of fix for #77456)
18444           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
18445         * TextControl.cs: 
18446           - Switched Constructor to require TextBoxBase instead of Control (to
18447             allow uncast access to CreateGraphicsInternal)
18448           - Safeguarded use of owner.Handle property. No longer accessing it
18449             unless the handle is already created.
18450           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
18451           - Now triggering a recalc when owning control becomes visible
18452         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
18453           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
18454           premature handle creation (Part of fix for #77456)
18455         * Control.cs:
18456           - We now only destroy our double-buffering buffers when the
18457             control is resized or disposed, but not when visibility
18458             changes. (The code even re-created them twice every time)
18459           - Now requiring a redraw of the buffer on visibility changes
18460             (fixes bug 77654 part 2)
18461           - Not passing OnParentVisibleChanged up unless the control
18462             is visible
18463           - CanFocus: Fixed to match MS documentation
18464           - Focus: Fixed to return actual focus state and to check if
18465             setting focus is legal before setting it
18466
18467 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
18468
18469         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
18470           when to draw focus rectangle by looking at parent focus and
18471           selected state instead. This fixes TabPages on Linux sometimes
18472           having none or multiple focus rectangles.
18473         * XplatUIX11.cs (SetFocus): 
18474           - Don't set the focus if the same window already has focus
18475           - Use SendMessage instead of PostMessage (like it's Win32
18476             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
18477             to match MS behaviour
18478         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
18479           are not selectable.
18480
18481 2006-03-07  Jackson Harper  <jackson@ximian.com>
18482
18483         * PictureBox.cs: Revert line I accidently committed last week.
18484
18485 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
18486
18487         * Control.cs: 
18488           - Added new IsRecreating and ParentIsRecreating properties to
18489             allow testing if RecreateHandle has been called on ourselves
18490             or one of our parents
18491           - WndProc(WM_DESTROY): If our control handle is being recreated
18492             we immediately need to create the handle when receiving the
18493             destroy, that way our child windows find a valid parent handle
18494             when they themselves are being recreated upon WM_DESTROY receipt
18495             (fix for bug #77654 part 1)
18496         * XplatUIX11.cs:
18497           - DestroyWindow: WM_DESTROY must be sent to our own window before
18498             notifying any child windows. MS documents that child windows
18499             are still valid when WM_DESTROY is received. (Control now relies on
18500             this behaviour)
18501           - Added some fine-grain debug options
18502
18503 2006-03-06  Jackson Harper  <jackson@ximian.com>
18504
18505         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
18506         box and base calculations off this.
18507         * MdiChildContext.cs:
18508         * MdiWindowManager.cs: Don't need to ensure scrollbars here
18509         anymore.
18510         
18511 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
18512
18513         * Splitter.cs: In situations where the affected control is added
18514           to the parent's control list after the splitter, we would not
18515           populate affected. Now we try populating it on mousedown, if
18516           it's not already set, and force it to be re-set whenever our
18517           parent changes.
18518
18519 2006-03-03  Matt Hargett  <matt@use.net>
18520
18521         * Control.cs: implement Control.Padding
18522         * Padding.cs: -Padding.All returns -1 when constructing with the
18523         implicit default ctor
18524         -Padding.ToString() matches MS.NET
18525         * ContainerControl.cs: implement
18526         ContainerControl.AutoScaleDimensions
18527         * ListControl.cs: implement ListControl.FormattingEnabled
18528         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
18529         * ButtonBase.cs:
18530         * TabPage.cs: Implement UseVisualStyleBackColor.
18531         * PictureBox.cs: Implement PictureBox.InitialImage.
18532
18533 2006-03-03  Mike Kestner  <mkestner@novell.com>
18534
18535         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
18536         event declarations to proxy to base event.
18537         * ListViewItem.cs: update to use ItemControl.
18538         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
18539         * ThemeWin32Classic.cs: update to new ListView theme API and fix
18540         column header label rendering for 0 width columns.
18541
18542 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
18543
18544         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
18545           that causes the control to be created. Fixes #77476.
18546
18547 2006-03-02  Jackson Harper  <jackson@ximian.com>
18548
18549         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
18550         expose_pending.
18551
18552 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
18553
18554         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
18555           passed in for the EventArgs (fixes #77690)
18556
18557 2006-03-01  Jackson Harper  <jackson@ximian.com>
18558
18559         * ScrollBar.cs: Refresh afterbeing resized.
18560
18561 2006-02-28  Mike Kestner  <mkestner@novell.com>
18562
18563         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
18564         Clean up a tracker compile warning.
18565         * MenuItem.cs: add internal PerformPopup method.
18566         [Fixes #77457]
18567
18568 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
18569
18570         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
18571           implicit expose) when the text is set to null
18572
18573 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
18574
18575         * RichTextBox.cs (FlushText): When newline is true, we always
18576           need to split the line, even if no text is on it and we may
18577           never eat newlines. (Fixes #77669)
18578
18579 2006-02-28  Mike Kestner  <mkestner@novell.com>
18580
18581         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
18582         and set Selected instead.
18583         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
18584         collections.
18585
18586 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
18587
18588         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
18589
18590 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
18591
18592         * FontDialog.cs:
18593           - Got rid of the panel. All controls are now directly added to
18594             the dialog form
18595           - It is now possible to set a font with the Font property
18596           - MinSize and MaxSize property do now what they should
18597           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
18598           - Searching and selecting a font with the font textbox works now,
18599             the same applies to the style and size textbox
18600           - Draw the correct 3D border in the example panel
18601           - Fixed a little mem leak (unused fonts didn't get disposed)
18602           - Many other internal updates/rewrites...
18603           - Fix typo
18604
18605 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
18606
18607         * TextControl.cs: 
18608           - InsertRTFFromStream: Added 'number of characters inserted' argument
18609           - set_SelectedRTF: Now using the number of characters to calculate
18610             the new location for the selection and cursor (x/y cannot be used
18611             due to potentially already wrapped text)
18612
18613 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
18614
18615         * TextControl.cs: Added property and implemented means to allow 
18616           disabling recalculation of a document (can be used to speed up
18617           multiple inserts and is needed to make RTF inserts predictable, see
18618           bug #77659)
18619         * RichTextBox.cs: Using the new NoRecalc property of Document to
18620           keep x/y insert locations predictable. Also makes it faster inserting
18621           large chunks of RTF
18622
18623 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
18624
18625         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
18626           it's easier for a child control to handle the other messages without
18627           having to duplicate the special functionality
18628         * TextBoxBase.cs
18629           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
18630             code to handle processing the key ourselves, in order to get 
18631             access to the result of KeyEventArgs.Handled. We now only call 
18632             ProcessKey if they key hasn't been handled already. Fixes #77526.
18633           - set_Text: If null or empty string is given, just clear the 
18634             document. Fixes part of #77526
18635
18636 2006-02-27  Jackson Harper  <jackson@ximian.com>
18637
18638         * SizeGrip.cs: Paint the background color before painting the grip
18639         so things look right.
18640         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
18641
18642 2006-02-27  Mike Kestner  <mkestner@novell.com>
18643
18644         * ListView.cs:
18645           - Restructure layout and invalidation model to remove a ton of
18646           flicker from the control and speed up performance in general.
18647           - Add manual column resize, flickers like crazy, but I already have
18648           some ideas on how I'll fix that. (#76822)
18649           - Merge the three Icon-based views into a single layout method.
18650           - Move item selection interaction logic from the item since 
18651           interaction with the collections is more appropriate to the view.
18652           - Deselection on non-item clicks.
18653         * ListViewItem.cs:
18654           - Encapsulate most of the layout. Add some internal props to trigger
18655           layout.  Move to a model where Items invalidate themselves instead
18656           of just invalidating the whole control every time something changes.
18657           - Invalidate on Text/Caption changes.
18658           - switch to an offset based layout model to avoid having to absolute
18659           position every element on item moves.
18660           - correct checkbox layout to conform to MS layout.
18661         * ThemeWin32Classic.cs:
18662           - refactor some column header drawing code.
18663           - fix string justification for column headers (#76821)
18664           - make SmallIcon labels top justified for compat with MS impl.
18665         * ThemeClearlooks.cs:
18666           - adjust to new ListViewItem internal checkbox bounds api.
18667
18668 2006-02-27  Jackson Harper  <jackson@ximian.com>
18669
18670         * Control.cs:  Change where implicit controls fall in the zorder.
18671         They are now on top of all children.
18672         - Synced AddImplicit code with Add
18673         - Removed unused enumerator.
18674         * SizeGrip.cs: Remove the TODO as its been TODONE.
18675
18676 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
18677
18678         * TextControl.cs(Insert): Combine the last lines unless the insertion
18679           string ends with \n\n, otherwise we leave one line too many (Fixes
18680           something I noticed with the testapp for #77526; the bug itself was
18681           already fixed in the previous checkin)
18682
18683 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
18684
18685         * RichTextBox.cs:
18686           - SelectionColor and SelectionFont methods no longer set absolute
18687             styles. Instead, the keep font or color respectively (This 
18688             resolves a long-standing FIXME in the code)
18689           - When flushing RTF text, the insert code now considers text trailing
18690             behind the insertion point (Fixes the bug where when replacing
18691             the selected text via SelectedRTF the remainder of the line behind 
18692             the selection would stay on the first insertion line)
18693         * TextBoxBase.cs:
18694           - AppendText now updates the selection points after inserting text
18695           - AppendText now ensures that the last tag (sometimes 0-length) of
18696             the document is used for the style information (Fixes part of 
18697             bug #77220)
18698         * TextControl.cs:
18699           - Created new FontDefiniton class to allow describing partial style
18700             changes
18701           - StreamLine() now takes a lines argument, to allow it to decide
18702             whether an encountered zero-length tag is the last in the document
18703             (which must be kept to not loose the font/color contained in it,
18704             for later appends)
18705           - Created Combine() and Split() methods for Marker structs, to 
18706             support marker updates due to reformatted documents (soft line
18707             wraps)
18708           - Implemented Document.CaretTag setter
18709           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
18710             of the last line (Not the cause, but also exposed by bug #77220)
18711           - Added LineTag argument to InsertString method, to allow callers
18712             to force a certain tag to be used (required to force use of the
18713             trailing zero-length tag of a document)
18714           - Now updating markers in Combine(), to avoid stale tag markers
18715           - Added some method descriptions to aid maintenance
18716           - Implemented new FormatText concept, allowing additive/subtractive
18717             formatting by only specifying the components that are to be 
18718             changed. This was needed for resolving the RTB.SelectedColor/
18719             RTB.SelectedFont fixmes
18720           - Added Break() support method to allow breaking up linetags (used
18721             for partial formatting)
18722           - Added GenerateTextFormat() method. It is used for partial 
18723             formatting and allows to generate a full font/color from given
18724             attributes and an existing tag.
18725
18726 2006-02-26  Jackson Harper  <jackson@ximian.com>
18727
18728         * XplatUIX11.cs:  Use the correct caption height.
18729         - Translate hittest coordinates to screen coords to match MS.
18730         * XplatUIWin32.cs: When we create MDI windows we need to reset
18731         some of the style flags, so we get a nice blank window, and can
18732         draw all the decorations ourselves.
18733         - Set a clipping rectangle on the non client paint event, the
18734         window manager drawing code needs one.
18735         * Form.cs: The window manager needs to know when the window state
18736         has been updated.
18737         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
18738         don't need to factor in border and title sizes in these
18739         methods. TODO: Remove the args and fix the call points.
18740         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
18741         properly.
18742         - Let the driver set the cursors.
18743         - Improve active window handling
18744         - Correct sizes for title bars and buttons.
18745         - Match MS drawing better
18746         * MdiWindowManager.cs: We don't need to handle border style
18747         updates specially anymore.
18748         - Check for scrollbars when windows are done moving
18749         - Handle Active properly.
18750         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
18751         correctly. I am spewing the exception though, so we don't hide the
18752         bugs.
18753         
18754 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
18755
18756         * DataGridViewRowPostPaintEventArgs.cs,
18757           DataGridViewCellPaintingEventArgs.cs,
18758           DataGridViewRowCollection.cs,
18759           DataGridViewRowPrePaintEventArgs.cs,
18760           DataGridViewCell.cs: Clear a few warnings and implement a few
18761           exceptions that should be thrown.
18762
18763 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
18764
18765         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
18766           'inheriting' our parent's (non-default) cursor. (Part of
18767            the fix for #77479)
18768
18769 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
18770
18771         * XplatUIX11.cs: Fixed cast to make csc happy
18772
18773 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
18774
18775         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
18776           it's for the client area (part of fix for #77479 and needed
18777           for MDI window cursor handling)
18778         * XplatUIX11.cs
18779           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
18780             the appropriate default cursors and also passing the message
18781             up the parent chain 
18782           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
18783             for non-client areas
18784
18785 2006-02-15  Jackson Harper  <jackson@ximian.com>
18786
18787         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
18788         is a real MDI window
18789
18790 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
18791
18792         * X11DesktopColors.cs: Instead of checking the desktop session
18793           string for "KDE" check if it starts with "KDE"
18794
18795 2006-02-10  Jackson Harper  <jackson@ximian.com>
18796
18797         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
18798         systems).
18799
18800 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
18801
18802         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
18803           errors
18804         * ColorDialog.cs:
18805           - Got rid of the panel. All controls are now directly added to
18806             the dialog form
18807           - Changed to mono coding style
18808
18809 2006-02-10  Jackson Harper  <jackson@ximian.com>
18810
18811         * InternalWindowManager.cs: We don't need the set visibility to
18812         false hack anymore now that peter has written beautiful shutdown
18813         code.
18814
18815 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
18816
18817         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
18818           where already explicitly destroyed
18819
18820 2006-02-10  Jackson Harper  <jackson@ximian.com>
18821
18822         * MdiClient.cs: Handle the case where windows are too high or to
18823         the left and we need scrollbars.
18824
18825 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
18826
18827         * MimeIcon.cs: Added some icons
18828         * FileDialog.cs:
18829           - Fixed bug #77477
18830           - Got rid of the panel. All controls are now directly added to
18831             the dialog form
18832           - Changed to mono coding style
18833           - On Linux "My Computer" and "My Network" will now show some
18834             more usefull information. A new class, MasterMount, gathers
18835             this information from /proc/mount. Updated MWFFileView to make
18836             use of this information
18837           - Fixed a bug that caused FileDialog to crash when
18838             ".recently_used" file had a zero size
18839           - FilterIndex does now what it should
18840           - Some Refactoring
18841         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
18842             FileDialog changes
18843
18844 2006-02-09  Jackson Harper  <jackson@ximian.com>
18845
18846         * ComboBox.cs: Don't touch if null.
18847
18848 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
18849
18850         * Cursor.cs: 64bit safeness fix
18851         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
18852
18853 2006-02-09  Jackson Harper  <jackson@ximian.com>
18854
18855         * Form.cs: If a form is made into an MDI form update the styles so
18856         all the props can get set correctly.
18857         - Kill the mdi_container when we dont need it anymore.
18858         * InternalWindowManager.cs: Add missing NOT
18859
18860 2006-02-08  Jackson Harper  <jackson@ximian.com>
18861
18862         * InternalWindowManager.cs: Respek clipping when drawing MDi
18863         decorations.
18864
18865 2006-02-08  Jackson Harper  <jackson@ximian.com>
18866
18867         * Hwnd.cs: Add bits to track non client expose events.
18868         * XplatUIX11.cs: Track non client expose events on the hwnd. This
18869         gives us a proper invalid rect and will allow for some nice
18870         optimizations with NC client drawing
18871         - MDI windows are children windows, so move their style handling
18872         into the child window block.
18873         * InternalWindowManager.cs: Remove a state reset that was
18874         getting invoked at the wrong time. Fixes managed windows getting
18875         into a 'stuck' captured state.
18876
18877 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
18878
18879         * TextControl.cs (Document.ctor): Now initializing 
18880           selection_anchor. Fixes #77493
18881
18882 2006-02-07  Jackson Harper  <jackson@ximian.com>
18883
18884         * TrackBar.cs: The increment/decrements were backwards.
18885
18886 2006-02-07  Mike Kestner  <mkestner@novell.com>
18887
18888         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
18889         to the instance itself.
18890
18891 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
18892
18893         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
18894           on ulongs and pointers, the size differs between 32bit and 64bit
18895           systems. 
18896
18897 2006-02-07  Mike Kestner  <mkestner@novell.com>
18898
18899         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
18900         for 64 bit platforms to work around a metacity bug. 
18901
18902 2006-02-07  Jackson Harper  <jackson@ximian.com>
18903
18904         * TrackBar.cs: Process the input keys we need, and hookup to
18905         KeyDown instead of using WndProc, so we get key messages.
18906
18907 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
18908
18909         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
18910           machine we're on. 
18911         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
18912           we need to translate the XdndVersion atoms array before sending it
18913
18914 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
18915
18916         * XplatUIX11.cs: 
18917           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
18918             number of bits for the property, not the number of bytes. The
18919             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
18920             but would not crash since it specified 8 bits instead of 4 bits)
18921           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
18922             defined as XID -> long in the C headers)
18923           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
18924             references since those are now IntPtr to begin with
18925           - Switched all Atom.XXX 'int' casts to IntPtr casts
18926           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
18927           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
18928           - Added XChangeActivePointerGrab DllImport (for X11DnD)
18929         * X11Structs.cs:
18930           - Changed 'int' type for Atoms in XEvent structures to IntPtr
18931           - Changed atom in HoverStruct to be IntPtr
18932         * X11DnD.cs:
18933           - Removed local DllImports, switched code to use those from XplatUIX11
18934           - Removed/fixed casts related to the switch of Atom to be a IntPtr
18935
18936 2006-02-06  Mike Kestner  <mkestner@novell.com>
18937
18938         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
18939         method signatures in the import region.  There may still be some
18940         lingering struct marshaling issues, as I didn't drill down into those.
18941         Yet.
18942
18943 2006-02-06  Jackson Harper  <jackson@ximian.com>
18944
18945         * ComboBox.cs: Dont manually set the top_item, this is computed
18946         when the scrollbar position is set.
18947
18948 2006-02-06  Mike Kestner  <mkestner@novell.com>
18949
18950         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
18951         startup crashes on amd64.  There's other fixes needed.  All pinvoke
18952         usage of Atom needs to be mapped to IntPtr for example.  And there are
18953         likely other int/long issues to be addressed.
18954
18955 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
18956
18957         * FileDialog.cs: One more...
18958
18959 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
18960
18961         * FileDialog.cs: Next try
18962
18963 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
18964
18965         * FileDialog.cs: First part of fix for #77464
18966
18967 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
18968
18969         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
18970           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
18971           AcceptButton border drawing.
18972
18973 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
18974
18975         * Form.cs: Moved positioning of form after auto scaling is applied,
18976           otherwise it would possibly use wrong form size.
18977
18978 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
18979
18980         * Control.cs (RecreateHandle): No need to re-create any child
18981           controls, the child windows will get destroyed automatically by
18982           the windowing system or driver, and re-created when the handle
18983           is being accessed the first time. Fixes #77456
18984         * Form.cs: No longer setting the form to closing if the handle is 
18985           being recreated. This seems like the right thing to do, don't
18986           have a bug or testcase for this, though.
18987
18988 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
18989
18990         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
18991           controls to avoid unwanted side effects
18992
18993 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
18994
18995         * Control.cs: 
18996           - ScaleCore needs to scale the bounds, not the ClientSize of the 
18997             control. Fixes #77416.
18998           - DefaultSize is 0,0 for control
18999         * TextBoxBase.cs: 
19000           - DefaultSize is 100, 20
19001           - SetBoundsCore: Now enforcing the height, no matter if the provided
19002             height is more or less than the preferred one, as long as AutoSize
19003             is on
19004         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
19005
19006 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
19007
19008         * Control.cs:
19009           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
19010             call unless both performLayout is true *and* we have a pending
19011             layout change
19012           - ResumeLayout: MS does not completely nest Suspend and Resume,
19013             they bottom out at 0, fixed our code to match that.
19014           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
19015             SetBoundsCore, we were updating even when we shouldn't. This fixes
19016             swf-anchors mis-anchoring when resizing the app fast and lots.
19017           - UpdateDistances: Now only setting the left and top distance if 
19018             we have a parent and are not suspended, this is based on
19019             a suggestion by Don Edvaldson in bug #77355.
19020           - OnVisibleChanged: Fixed logic when to create the control. We may
19021             not create the control if we have no parent or if it's not visible;
19022             switched to using Visible property instead of is_visible field 
19023             since the property also considers parent states. This fixes a bug
19024             when starting Paint.Net
19025
19026 2006-02-02  Jackson Harper  <jackson@ximian.com>
19027
19028         * Form.cs: If the forms handle hasn't been created yet don't call
19029         into xplatui to make it top most, just set the topmost flag on the
19030         form in CreateParams
19031         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
19032
19033 2006-02-01  Jackson Harper  <jackson@ximian.com>
19034
19035         * ScrollableControl.cs: Refactored the Recalculate method a
19036         little, this wasn't handling all the variants of bottom and right
19037         bars needed to be added and added/removed based on their
19038         counterparts being added/removed (which changes the drawable
19039         size). Also we special case client widths and heights of 0 and
19040         don't add the scrollbar for those.
19041
19042 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
19043
19044         * XplatUIX11.cs: 
19045           - Added method to get AbsoluteGeometry(); currently unused, but might
19046             be used in the future, if we try again to figure out toplevel
19047             coordinates with some more crappy window managers
19048           - Added FrameExtents() method to retrieve the WM set decoration size
19049           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
19050             to deal with at least KDE, FVWM and metacity (Fixes #77092)
19051         * Hwnd.cs: 
19052           - Added whacky_wm tracking var for metacity
19053           - Added logic to have default menu height if the actual menu height
19054             has not yet been calculated (part of fix for #77426)
19055         * Form.cs: Keep track whether client size has been set and re-set 
19056           it if a menu is added/removed afterwards (Fixes #77426)
19057
19058 2006-01-31  Jackson Harper  <jackson@ximian.com>
19059
19060         * Control.cs: When a new Site is set on the component attempt to
19061         pull the AmbientProperties from it.
19062
19063 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
19064
19065         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
19066           in the background of the owning form. Fixes #77332
19067
19068 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
19069
19070         * MimeIcon.cs: Fix for #77409
19071
19072 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
19073
19074         * XplatUIX11GTK.cs: Initial import
19075
19076 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
19077
19078         * FixedSizeTextBox: fixes class signature
19079
19080 2006-01-30  Jackson Harper  <jackson@ximian.com>
19081
19082         * FixedSizeTextBox.cs: New internal class that represents a
19083         textBox that will not be scaled.
19084         * TreeView.cs:
19085         * ComboBox.cs:
19086         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
19087         standard TextBox.
19088                 
19089 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
19090
19091         * XplatUIX11.cs: Retrieve default screen number instead of
19092           assuming 0. Attempted fix for #77318
19093
19094 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
19095
19096         * XplatUIWin32.cs: 
19097           - GetWindowPos: When a window is parented by FosterParent, use 
19098             the desktop instead of FosterParent as the base to get coordinates
19099           - CreateWindow: Don't make FosterParent the parent window for Popups
19100             if we don't want a taskbar entry, Popups automatically don't get one
19101         * Hwnd.cs: Need to call remove to actually remove the key from the
19102           hash table
19103
19104 2006-01-30  Mike Kestner  <mkestner@novell.com>
19105
19106         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
19107
19108 2006-01-30  Jackson Harper  <jackson@ximian.com>
19109
19110         * TreeView.cs:
19111         * TreeNode.cs: Raise events no matter how the treenode is
19112         checked. Patch by Don Edvalson.
19113
19114 2006-01-30  Jackson Harper  <jackson@ximian.com>
19115
19116         * TreeNode.cs: Signature fix.
19117
19118 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
19119
19120         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
19121
19122 2006-01-20  Mike Kestner  <mkestner@novell.com>
19123
19124         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
19125         event forwarding when menus are active.
19126         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
19127         Most of the patch is pdb's with a little rework.
19128
19129 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
19130
19131         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
19132           Removed GetMenuDC and ReleaseMenuDC methods; replaced
19133           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
19134         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
19135         * InternalWindowManager.cs: Added use of PaintEventStart/End to
19136           handling of WM_NCPAINT message, now passing the PaintEventArgs to
19137           the PaintWindowDecorations method
19138         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
19139         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
19140         * MenuAPI.cs: Made tracker window invisible
19141         * XplatUIWin32.cs:
19142           - Removed GetMenuDC and ReleaseMenuDC methods
19143           - Implemented the client=false path for PaintEventStart and
19144             PaintEventEnd
19145
19146 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
19147
19148         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
19149         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
19150           styles
19151         * Form.cs: 
19152           - MaximizeBox, MinimizeBox: Recreate the handle when setting
19153             the style
19154           - CreateParams: Reworked the styles to match MS look'n'feel,
19155             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
19156             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
19157
19158 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
19159
19160         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
19161           window is not mapped, since otherwise every form that's being 
19162           created is considered minimized, which is wrong.
19163         * Form.cs: Catching the exception and returning our internal value
19164           instead
19165
19166 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
19167
19168         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
19169           SetWindowMinMax() to have means to tell the driver about the minimum,
19170           maximum and maximized state window sizes. (Part of the fix for #76485)
19171         * Form.cs:
19172           - Implemented tracking of minimum and maximum window size, now calling
19173             new SetWindowMinMax() driver method to tell the driver (Part of the
19174             fix for #76485)
19175           - Finished handling of WM_GETMINMAXINFO method, now setting all values
19176             (Completes fix for #76485)
19177           - Calling new SetWindowMinMax driver method when the handle for a 
19178             form is created, to make sure the driver knows about it even if
19179             the values have been set before the window was created
19180           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
19181             to avoid messing up our anchoring calculations (partial fix
19182             for #77355)
19183         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
19184         * XplatUIX11.cs:
19185           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
19186           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
19187             (and presumably other freedesktop.org compliant WMs). Left the
19188             assumption unmapped=minimized, needed for SetVisible to work.
19189           - Now setting the window state when creating windows
19190           - Fixed SetVisible to consider/set the window state when mapping
19191             a Form. We cannot set the state before it's mapped, and we cannot
19192             use Form.WindowState once it's mapped (since it would ask the
19193             driver and get 'normal'. Therefore, we grab the state before
19194             mapping, map, and then set state.
19195           - Implmemented SetWindowMinMax method; Metacity does not seem to
19196             honor the ZoomHints, though.
19197         * XplatUIWin32.cs:
19198           - Removed MINMAXINFO (moved to XplatUIStructs)
19199           - Added SetWindowMinMax stub (on Win32 the only way to set that
19200             information is in response to the WM_GETMINMAXINFO message, which
19201             is handled in Form.cs)
19202           - Added logic to SetVisible to set the proper window state when a 
19203             form is made visible (fixes #75720)
19204
19205 2006-01-26  Jackson Harper  <jackson@ximian.com>
19206
19207         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
19208         same way we handle them with Invoke.
19209
19210 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
19211
19212         * Form.cs:
19213           - Added tracking of window state so CreateParams can return
19214             the appropriate style
19215           - Moved setting of WS_CAPTION style in CreateParams to allow
19216             styles without caption
19217         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
19218           control if the TextBox property is accessed. Fixes #77345
19219         * Control.cs:
19220           - get_Created: now uses is_disposed and is_created to determine
19221             return value (suggested by Jackson)
19222           - CreateHandle: No longer exits if the handle is being recreated
19223           - RecreateHandle: If the handle is not yet created call the 
19224             appropriate method to create either control or handle. If the
19225             control is already created CreateHandle will simply exit instead
19226             of just creating the handle
19227         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
19228           now SendMessage WM_DESTROY directly to the control when DestroyWindow
19229           is called.
19230         * XplatUIX11.cs: 
19231           - When DestroyWindow is called, instead of waiting for the 
19232             DestroyNotification from X11, we directly post it to the WndProc
19233             and immediately dispose the hwnd object.
19234             Same applies to DestroyChildWindows, and this obsoletes the
19235             expose_pending tracking. Contrary to Win32 behaviour we destroy our
19236             child windows before our own, to avoid X11 errors.
19237           - Removed the direct sending of WM_PAINT on UpdateWindow
19238         * XplatUIWin32.cs:
19239           - Reworked DoEvents and GetMessage to allow access to internal queue
19240             even when trying non-blocking access to the queue.  Fixes #77335. 
19241             Based on a patch suggestion by Don Edvalson. The new private
19242             GetMessage can now also be used as a backend for a PeekMessage
19243             frontend version.
19244         * XplatUI.cs: Improved debug output for CreateWindow
19245
19246 2006-01-25  Jackson Harper  <jackson@ximian.com>
19247
19248         * Help.cs: Allow param to be null. Patch by Don Edvalson.
19249
19250 2006-01-24  Jackson Harper  <jackson@ximian.com>
19251
19252         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
19253         when we have a MaxDropItems lower then the selected index.
19254
19255 2006-01-24  Jackson Harper  <jackson@ximian.com>
19256
19257         * Control.cs: Don't allow selection of non visible controls, allow
19258         selection of controls without parents.
19259
19260 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
19261
19262         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
19263         * DataGridDrawingLogic.cs: Add editing row only when is necessary
19264
19265 2006-01-23  Jackson Harper  <jackson@ximian.com>
19266
19267         * UpDownBase.cs: Make the textbox handle all the selection and
19268         tabbing. This fixes tabing to updown controls.
19269
19270 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
19271
19272         * TextBoxBase.cs: fixes exception thown the object was null
19273
19274 2006-01-23  Jackson Harper  <jackson@ximian.com>
19275
19276         * ButtonBase.cs: Just use the base CreateParams. They set
19277         visibility and enabled correctly.
19278         * ComboBox.cs:
19279         * TrackBar.cs:
19280         * MonthCalendar.cs: Lets let the base set as much of the
19281         createparams as possible so we don't have duplicate code all over
19282         the place.
19283
19284 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
19285
19286         * ThemeGtk.cs: Added TrackBar and some experimental code to
19287           get double buffering back
19288
19289 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
19290
19291         * DataGrid.cs: Allows row number set internally higher than the last
19292         when creating a new row. Restores the editing functionality.
19293
19294 2006-01-20  Mike Kestner  <mkestner@novell.com>
19295
19296         * MimeIcon.cs: delay Image creation until the icons are accessed
19297         instead of creating 190 scaled images on GnomeHandler startup.
19298
19299 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
19300
19301         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
19302           first call base before processing the event. Fixes #77279
19303
19304 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
19305
19306         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
19307           that the stride for the GDI bitmap would match the stride of
19308           a DIB or a Cursor.
19309
19310 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
19311
19312         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
19313
19314 2006-01-19  Jackson Harper  <jackson@ximian.com>
19315
19316         * ComboBox.cs: Hookup the text controls keydown event so we get
19317         those when the text control has the focus.
19318
19319 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
19320
19321         * Label.cs: Now using the base events instead of defining new ones;
19322           this allows us to just call the base properties without having to
19323           duplicate all base property logic 
19324
19325 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
19326
19327         * Label.cs: A label by default is not a tabstop (Fixes one of our
19328           failing nunit tests)
19329
19330 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
19331
19332         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
19333         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
19334
19335 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
19336
19337         * Cursor.cs: Reimplemented creating cursor bitmaps without using
19338           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
19339           This fixes #77218
19340         * XplatUIWin32.cs: 
19341           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
19342             constructor creates images that can't be saved. Part of the fix
19343             for #76103
19344           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
19345           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
19346             bug fix for handling window state in forms properly)
19347
19348 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
19349
19350         * ThemeGtk.cs: Simplify ScrollBar drawing
19351
19352 2006-01-18  Jackson Harper  <jackson@ximian.com>
19353
19354         * Splitter.cs: Set the default dock style for the splitter control
19355         in the constructor.
19356
19357 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
19358
19359         * ThemeGtk.cs: Corrected StateType and ShadowType for
19360           gtk_paint_box
19361
19362 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
19363
19364         * Control.cs: Make use of Theme.DoubleBufferingSupported
19365         * ThemeGtk.cs:
19366           - Added drawing for flat style buttons
19367           - Added ScrollBar drawing
19368
19369 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
19370
19371         * ThemeClearlooks.cs: Removed some unneeded code.
19372         * ThemeGtk.cs: First part of ThemeGtk enhancements.
19373
19374 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
19375
19376         * LinkLabel.cs: We need to update the hover drawing when
19377           leaving the control as well.
19378
19379 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
19380
19381         * DataGrid.cs: Clicking on non empty areas in the columns
19382            area was giving an exception
19383
19384 2006-01-17  Jackson Harper  <jackson@ximian.com>
19385
19386         * ThemeWin32Classic.cs:
19387         * ListView.cs: Do not draw/clip the headers when the header style
19388         is None.
19389
19390 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
19391
19392         * DataGrid.cs: Fixes 77260
19393         
19394 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
19395
19396         * DataGrid.cs: Clicking on a column on a empty grid was giving
19397           an exception
19398
19399 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
19400
19401         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
19402           or any keypress will crash the grid.
19403
19404 2006-01-17  Mike Kestner  <mkestner@novell.com>
19405
19406         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
19407         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
19408         invisible/previously-visible items.
19409         [Fixes #76909]
19410
19411 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
19412
19413         * ThemeClearlooks.cs:
19414         - Added CL_Draw_Button method; now other theme controls that are 
19415           not derived from button or do not have a button can draw buttons
19416           too
19417         - Updated ComboBox drawing
19418         - Beautified RadioButton drawing
19419         - Corrected drawing of bottom and left tabs
19420         - Beautified DateTimePicker and MonthCalendar
19421         - Added CPDrawButton and CPDrawRadioButton
19422
19423 2006-01-16  Jackson Harper  <jackson@ximian.com>
19424
19425         * ComboBox.cs: Set the initial value of the scrollbar to the
19426         current index. Reduce the numbers of refreshs and IndexOfs called.
19427
19428 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
19429
19430         * FileDialog.cs: When the file listview is focused hitting the
19431           backspace key moves the fileview to the parent directory
19432
19433 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
19434
19435         * Form.cs: 
19436           - Added RecreateHandle call when changing taskbar visibility to 
19437             trigger reparenting in Win32 driver (Fixes #75719)
19438           - If a window has minimize or maximize buttons, it cannot have
19439             a help button
19440         * XplatUIWin32.cs:
19441           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
19442             the toplevel form with FosterParent (A toolwindow not on the
19443             taskbar) (Fixes #75719)
19444           - Made FosterParent a toolwindow
19445
19446 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
19447
19448         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
19449
19450 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
19451
19452         * ToolTip.cs: If SetToolTip is called from a control and the mouse
19453           is currently over that control, make sure that tooltip_window.Text
19454           gets updated
19455
19456 2006-01-13  Mike Kestner  <mkestner@novell.com>
19457
19458         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
19459
19460 2006-01-13  Jackson Harper  <jackson@ximian.com>
19461
19462         * TreeView.cs: On MS GetNodeAt never actually factors in the X
19463         value passed.  Also redraw the selected node when we recieve
19464         focus, so tabbing between trees works correctly.
19465
19466 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
19467
19468         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
19469           ~/.gconf/%gconf-tree.xml, so use
19470           .gconf/desktop/gnome/interface/%gconf.xml
19471
19472 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
19473
19474         * TextControl.cs: Draw text in gray if control is disabled
19475
19476 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
19477
19478         * TreeView.cs: Draw the focus rectangle outside the highlight, to
19479           make sure it's always visible. Fixes #76680.
19480
19481 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
19482
19483         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
19484
19485 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
19486
19487         * PageSetupDialog.cs: Added.
19488         * PrintDialog.cs: Attributes.
19489         * PrintPreviewControl.cs: Updates.
19490         * PrintPreviewDialog.cs: Updates.
19491         
19492 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
19493
19494         * Control.cs: Undid my selection check fix, since it's not needed
19495         * TextBoxBase.cs:
19496           - Now considering the presence of hscroll/vscroll when sizing
19497             vscroll/hscroll respectively. Fixed bug #77077
19498           - Added Left/Up/Down/Right to IsInputKey list to prevent
19499             ContainerControl from stealing them. This fixes what I broke
19500             with my last checkin.
19501
19502 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
19503
19504         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
19505           I finally understand how the property can be set without a setter :-)
19506
19507 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
19508
19509         * Application.cs:
19510           - Switched RunLoop to use static Message.Create to create a 
19511             Message object
19512           - Added PreProcessMessage call in runloop for keyboard events; this
19513             is part of the fix for #77219, I overlooked this originally in the
19514             MSDN doc for PreProcessMessage
19515         * Control.cs:
19516           - Removed call to PreProcessMessage from handling of keyboard 
19517             messages; it's supposed to be done in the message pump
19518           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
19519             per MSDN documentation.
19520           - IsInputChar: All chars are input chars by default; removed the 
19521             parent calling chain, MS does not document that
19522           - PreProcessMessage: If IsInputChar is true, we want to return false
19523             to allow dispatching of the message
19524           - When selecting the next control, now also check that we're not
19525             selecting ourselves again and therefore return a false positive.
19526         * TextBoxBase.cs:
19527           - Tried to match return values for IsInputKey and ProcessDialogKey
19528             to what MS returns; moved processing of our special keys outside
19529             ProcessDialogKey since MS does not seem to return true on those.
19530           - Moved code that previously was in ProcessDialogKey into new private
19531             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
19532           - Reworked handling of WM_CHAR to not have to duplicate code from
19533             Control.cs anymore, instead we simply call down to base.
19534            
19535 2006-01-12  Jackson Harper  <jackson@ximian.com>
19536
19537         * ComboBox.cs: We always need to refresh the text area when
19538         EndUpdate is called. Fixes the combobox in the file dialog.
19539         * Control.cs: Don't create the creator_thread until the controls
19540         handle is created.  Also in InvokeRequired we check if the
19541         creator_thread is null. This gives the effect of InvokeRequired
19542         returning true if the controls handle is not created yet, and
19543         matches MS.
19544
19545 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
19546
19547         * XplatUI.cs:
19548           - Added StartLoop() driver method. This is used to allow drivers to
19549             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
19550             loop for a particular thread
19551           - Added EndLoop() driver method. This is called once the message
19552             pump for the thread is shut down
19553           - Added SupportsTransparency method to allow the driver to indicate
19554             opacity support for windows
19555         * Form.cs:
19556           - Removed TODO attribute, completed AllowTransparency property
19557           - Added documented logic to Opacity
19558         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
19559           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
19560           versions of CompatibleTextRendering
19561         * X11Structs.cs: Added opacity atom to our atom enumeration
19562         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
19563           of a form might be set before it's reparented by the WM, and we need
19564           the opacity value without calling up to Form)
19565         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
19566           SupportsTransparency() driver methods
19567         * Application.cs: Now calling StartLoop and EndLoop driver methods
19568         * XplatUIX11.cs:
19569           - Added opacity atom registration
19570           - Added StartLoop()/EndLoop() methods. They're empty right now but
19571             will need to get implemented when we switch to a per-thread queue
19572           - Implemented SupportsTransparency() method
19573           - Implemented SetWindowTransparency() method
19574           - Added support for setting the opacity value when a window is
19575             reparented (since the opacity needs to be set on the WM frame)
19576         * XplatUIOSX.cs, XplatUIWin32.cs:
19577           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
19578
19579 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
19580
19581         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
19582
19583 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
19584
19585         * FileDialog.cs: Added ToolTip for MWFFileView
19586         * MimeIcon.cs: Rewrote GnomeHandler.
19587           - Get currently used gnome icon theme from
19588             ($HOME)/.gconf/%gconf-tree.xml
19589           - Make use of inherited icon themes
19590           - Support SVG icon themes like Tango via librsvg
19591
19592 2006-01-12  Miguel de Icaza  <miguel@novell.com>
19593
19594         Revert's Jackson's revert which broke 2.0 builds.   Fix both
19595         builds. 
19596         
19597         * Application.cs: Move the use_compatible_text_rendering outside
19598         the NET_2_0 define.  If we ever need to use the
19599         use_compatible_text_rendering on the individual controls they will
19600         access the variable from the common shared code paths.
19601
19602 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
19603
19604         * XplatUI.cs:
19605           - Added more granular debug options
19606           - Added method to print both window text and id
19607           - Switched debug output to use new Window() debug method
19608           - Added IsEnabled() driver method
19609           - Added EnableWindow() driver method
19610         * Form.cs:
19611           - Removed end_modal; no longer needed, new loop handles termination
19612             via 'closing' variable
19613           - If form is modal, setting DialogResult will now initiate loop
19614             termination via 'closing' variable
19615           - Added support for is_enabled/WS_DISABLED to CreateParams
19616           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
19617             does all the work
19618           - Removed code that's now in RunLoop from ShowDialog()
19619           - Added various documented sanity checks to ShowDialog()
19620           - Added handling of WM_DESTROY message; we set 'closing' on getting
19621             the message to indicate the message pump to terminate
19622           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
19623             send by the Application.ExitThread method. (We send the message
19624             to destroy the window after all other events have been
19625             processed through the queue, instead of destroying the handle 
19626             directly)
19627           - Moved code from Close() method to WM_CLOSE handler; added logic
19628             to only send close-related events if the form is not displayed
19629             modal
19630         * Splitter.cs (..ctor): Fixed typo in resource name
19631         * Control.cs:
19632           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
19633             brush now
19634           - set_Cursor: Now only setting calling into XplatUI if the handle for
19635             the control is already created; this avoids implict handle creation
19636             or crashes if it's not created
19637           - set_Enabled: Now setting the enabled state via the new driver method
19638             instead of just tracking it
19639           - CreateParams: Added logic to set WS_DISABLED based on enabled state
19640           - CreateControl: Reordered event firing and method calls to more
19641             closely fire events in the order MS does. Now setting the
19642             enabled state in the driver when creating the control.
19643           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
19644             match MS order
19645         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
19646           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
19647         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
19648         * Hwnd.cs:
19649           - Added tracking of window enabled state (get_Enabled/set_Enabled)
19650           - Added EnabledHwnd property to easily allow a driver to find the
19651             handle of the first enabled window in the parent chain (this is
19652             used by drivers to pass up input events of disabled windows)
19653         * XplatUIDriver.cs: Added IsEnabled() method
19654         * Application.cs:
19655           - Removed crude and obsolete exiting tracking variable
19656           - Removed internal ModalRun(); replaced by RunLoop()
19657           - Implemented private CloseForms() method to allow closing all 
19658             windows owned by a particular (or all) threads
19659           - Exit() now properly closes all windows without forcing the message
19660             pump to quit
19661           - Removed obsolete InternalExit() method
19662           - Changed Run() methods to use new RunLoop() message pump
19663           - Implemented new RunLoop() method for both modal and non-modal forms
19664         * CommonDialog.cs:
19665           - get_CreateParams: Added setting of WS_DISABLED
19666           - Simplified ShowDialog(); now all the work is done in RunLoop(),
19667             invoked via Form.ShowDialog()
19668         * NativeWindow.cs: We don't remove the window from the collection when
19669           the handle is destroyed; there might still be messages for it in the
19670           queue (mainly the resulting WM_DESTROY); instead it will be removed
19671           when Control calls InvalidateHandle in the WM_DESTROY handler
19672         * XplatUIX11.cs:
19673           - CreateWindow: Added logic to handle the WS_DISABLED window style
19674           - EnableWindow: Implemented based on Hwnd.Enabled
19675           - GetMessage: Reset PostQuitState so the method can be called again
19676           - Implemented support for disabled windows (passing messages to the
19677             first enabled parent) in handling all input messages
19678           - Added optimizations for handling Expose events
19679           - Implemeted new driver method IsEnabled()
19680           - Now always resetting paint pending tracking vars when we start paint
19681           - Re-implemented UpdateWindow via just sending a WM_PAINT message
19682         * XplatUIOSX.cs: Added IsEnabled method stub
19683         * XplatUIWin32.cs: Implemented new IsEnabled() method
19684
19685 2006-01-11  Jackson Harper  <jackson@ximian.com>
19686
19687         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
19688         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
19689         variables a little.
19690         * ColorDialog.cs: Clear out the old form before adding the new
19691         panel.  
19692
19693 2006-01-11  Jackson Harper  <jackson@ximian.com>
19694
19695         * X11Dnd.cs: Make sure to add all the text formats when adding
19696         strings to the data object.
19697         * TreeNodeCollection.cs: When adding to a sorted tree we need to
19698         do some redrawing too.  Also change the UpdateNode to an
19699         UpdateBelow so the newly added node gets painted.
19700         
19701 2006-01-11  Miguel de Icaza  <miguel@novell.com>
19702
19703         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
19704         LinkLabel.cs, PropertyGrid.cs: Implement the
19705         UseCompatibleTextRendering property for 2.x
19706
19707         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
19708
19709 2006-01-11  Jackson Harper  <jackson@ximian.com>
19710
19711         * TreeView.cs: Use the property for setting the selected node so
19712         the correct events get raised.
19713         * TreeNode.cs: Update the tree when the fore/back colours of a
19714         node are set.
19715
19716 2006-01-10  Jackson Harper  <jackson@ximian.com>
19717
19718         * TreeView.cs: Allow setting SelectedNode to null.
19719
19720 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19721
19722         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
19723
19724 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19725
19726         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
19727
19728 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19729
19730         * PrintDialog.cs: Added attributes and set default property values.
19731
19732 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19733
19734         * PrintControllerWithStatusDialog.cs: 
19735         Added PrintControllerWithStatusDialog.
19736
19737 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19738
19739         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
19740         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
19741
19742 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19743
19744         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
19745
19746 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
19747
19748         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
19749         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
19750
19751 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
19752
19753         * MimeIcon.cs: Added internal class SVGUtil.
19754
19755 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
19756
19757         * FileDialog.cs: Don't crash if there are two files with the
19758           same name but different locations.
19759
19760 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
19761
19762         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
19763         dates across multiple month grids. Used to not highlight entire 
19764         month, but does now.
19765         
19766 2006-01-06  Jackson Harper  <jackson@ximian.com>
19767
19768         * MonthCalendar.cs: Removed DoEvents call to prevent a running
19769         message loop. Change timer intervals to numbers that seem more
19770         natural.
19771
19772 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
19773
19774         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
19775           object for location info since screen object is now implemented.
19776
19777 2006-01-05  Jackson Harper  <jackson@ximian.com>
19778
19779         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
19780         * AsyncMethodResult.cs: We no longer use a WeakReference for the
19781         AsyncMethodResult, this is because we ALWAYS want the
19782         ManualResetEvent to get set.
19783         * Control.cs: When disposing use an async invoke to call shutdown
19784         code, so that thigns don't block on the finalizer thread.  Also
19785         check if we even have a message loop before trying to send
19786         messages, if we don't then don't bother sending messages.
19787         - No more weak references for async methods
19788         * XplatUIDriver.cs: No more weak references for async methods.
19789
19790 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
19791
19792         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
19793           returns two FontFamily with the same name
19794
19795 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
19796
19797         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
19798           drawing disabled text. Instead using the ColorGrayText color
19799
19800 2006-01-04  Jackson Harper  <jackson@ximian.com>
19801
19802         * TreeNode.cs: redraw the node when its image index is changed.
19803
19804 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
19805
19806         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
19807           time I checked there are no others like it.
19808
19809 2006-01-04  Jackson Harper  <jackson@ximian.com>
19810
19811         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
19812         this gives the behavoir I was looking for.
19813         * Control.cs: Special case Invoking EventHandlers, this matches MS
19814         and fixes part of bug #76326.
19815
19816 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
19817
19818         * ThemeClearlooks.cs, FileDialog.cs:
19819           - Reflect the latest Theme class changes
19820           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
19821             with DateTime
19822             
19823 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
19824
19825         * Theme.cs: Cache UI resource images and resize them if needed
19826
19827 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
19828
19829         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
19830           is called. This fixes the crash in Nexxia when setting the font
19831           attributes in the chat. [However, RTF needs a look-over to make sure
19832           that all SelectionXXX methods handle the special case that selection
19833           is empty and therefore the change must be applied to all text starting
19834           at the cursor/selection start]
19835
19836 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
19837
19838         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
19839           XplatUIOSX.cs: Added SendMessage and PostMessage methods
19840         * X11Keyboard.cs: Switched to new way of calling PostMessage
19841
19842 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
19843
19844         * Theme.cs: Added theme interface for images to allow the theme to
19845           control what images are used for things like FileDialog, MessageBox
19846           icons, etc.
19847         * MessageBox.cs: Now uses the new Theme icon/image interfaces
19848
19849 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
19850
19851         * FileDialog.cs:
19852           - Removed some dead code
19853           - Opening a recently used file does work now
19854           - Small UI enhancements
19855           - Refactoring
19856
19857 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
19858
19859         * FileDialog.cs: Forgot too add __MonoCS__
19860
19861 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
19862
19863         * FileDialog.cs: We are able to read recently used files now let's
19864           go on and write them.
19865
19866 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
19867
19868         * FileDialog.cs: Breathe some life into "last open"/"recently used"
19869           button
19870         * MimeIcon.cs: Do a check for the top level media type also
19871
19872 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
19873
19874         * ThemeClearlooks.cs:
19875           - Added CPDrawStringDisabled
19876           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
19877             some chars if the text doesn't fit into text_rect
19878           - DrawListViewItem: If View = View.LargeIcon center the image;
19879             rewrote the drawing of ListViewItem.Text if View = 
19880             View.LargeIcon
19881
19882 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
19883
19884         * MimeIcon.cs: Use default KDE icon theme if there is no
19885           "48x48" directory for the current icon theme, fixes #77114
19886         * Mime.cs: Disable not working and actually not used code. 
19887         * ThemeWin32Classic.cs:
19888           - Replace "new SolidBrush" in GetControlBackBrush and
19889             GetControlForeBrush with ResPool.GetSolidBrush
19890           - Changed DrawListViewItem from private to protected virtual
19891         * FileDialog.cs:
19892           - Added form.MaximizeBox = true
19893           - Don't throw an exception if there is a broken symbolic link
19894
19895 2005-12-23  Jackson Harper  <jackson@ximian.com>
19896
19897         * TabControl.cs: Give the panels focus, keyboard navigation is
19898         fixed so this works correctly now.
19899         - We need these key events also.
19900         * ToolBar.cs: Remove some of the poor mans double buffering.
19901         
19902 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
19903
19904         * ComboBox.cs: The internal TextBox now returns the focus.
19905
19906 2005-12-23  Jackson Harper  <jackson@ximian.com>
19907
19908         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
19909
19910 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
19911
19912         * Control.cs: Removed debug code
19913         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
19914           implicit children
19915
19916 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
19917
19918         * Control.cs: When creating the control, update the Z-order after
19919           all it's children are created, too. (Fixes nexxia not showing
19920           picturebox bug)
19921
19922 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
19923
19924         * Control.cs: Do not update the anchoring distances if layout is
19925           suspended, instead do it once layout is resumed
19926
19927 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
19928
19929         * Control.cs: 
19930           - After many hours of debugging, for both Jackson and
19931             myself, it turns out that it helps to set the parent of a control
19932             if you want to actually see it onscreen. In the spirit of that
19933             discovery, we're now setting the parent of the control and
19934             it's children when the control's handle is created. This fix
19935             will make Lutz Roeder's Reflector run happily. 
19936           - now just creating the handle instead of the whole control when
19937             getting a graphics context for the control.
19938
19939 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
19940
19941         * ScrollableControl.cs: When calculating the canvas, don't consider
19942           the scrollbar widths. Instead, predict if horizontal scrollbar
19943           will affect canvas when deciding on vertical display and vice versa.
19944
19945 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
19946
19947         * RichTextBox.cs: Set default RTF font for documents that don't
19948           have a font table (Fixes #77076)
19949
19950 2005-12-22  Jackson Harper  <jackson@ximian.com>
19951
19952         * TextBoxBase.cs: It's difficult to do, but you can have an empty
19953         clipboard. This prevents a NullRef in that case.
19954         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
19955         clipboard. PRIMARY is for the currently selected text only. (We
19956         should implement PRIMARY at some point.
19957
19958 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
19959
19960         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
19961           a Unicode function with a structure that was defined in Ansi way.
19962           This fixes #76942.
19963
19964 2005-12-21  Jackson Harper  <jackson@ximian.com>
19965
19966         * StatusBar.cs: Statusbar handles its fore/back colours on it's
19967         on. Because thats how it rolls. (and this avoids it using ambient
19968         colours).
19969         * ThemeWin32Classic.cs: Use the proper back color for filling.
19970         * Menu.cs: Use the system menu bar color for drawing menu
19971         bars. Using the window back color will bring ambient colours into
19972         the picture.
19973
19974 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
19975
19976         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
19977           Bitmaps were created and not disposed.
19978
19979 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
19980
19981         * Control.cs (CreateControl): Don't do anything if the control is
19982           already created, otherwise we'd fire the OnCreated event more than
19983           once
19984
19985 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
19986
19987         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
19988           will always match. Instead return -1. Fixes #76464.
19989
19990 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
19991
19992         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
19993           neither the beginning nor the end of the line (Fixes bug #76479)
19994
19995 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
19996
19997         * Control.cs:
19998           - ControlNativeWindow.ControlFromHandle(): Now handling situation
19999             where handle is invalid
20000           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
20001             instead of slower linear search
20002         * NativeWindow.cs: Don't remove the window from the hashtable until
20003           after the driver has destroyed it (since the driver might use
20004           Control.FromHandle to lookup the control object
20005         * Hwnd.cs: Added DestroyPending property to track if a window is 
20006           already destroyed as far as the driver is concerned and only hasn't
20007           yet notified the control
20008         * XplatUIX11.cs:
20009           - Activate(): Check if the window is still valid before using the 
20010             handle
20011           - Implemented DestroyChildWindow() method to mark child windows as
20012             destroyed when a window is destroyed. This prevents situations 
20013             where we might call an X method based on queued events for a
20014             window that already has been destroyed but we haven't yet pulled
20015             the destroy method from the queue.
20016           - Added a call to the new DestroyChildWindow() method to the drivers
20017             DestroyWindow code. Also now marking the destroyed window itself
20018             as pending
20019
20020 2005-12-20  Jackson Harper  <jackson@ximian.com>
20021
20022         * StatusBar.cs:
20023         * StatusBarPanel.cs: Don't calculate panel sizes on draw
20024         anymore. Just do them when needed, also track the rects of panels
20025         so that we can optimize refreshing more in the future.
20026
20027 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
20028
20029         * ColorDialog.cs: Fixed focus drawing in small color controls
20030
20031 2005-12-19  Jackson Harper  <jackson@ximian.com>
20032
20033         * InternalWindowManager.cs:
20034         * MdiWindowManager.cs: Cleanup some coordinate system changes so
20035         moving windows works properly.
20036
20037 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
20038
20039         * Control.cs: 
20040           - Removed call to InitLayout() from SetBoundsCore(); doc says
20041             it's only called when a control is added to a container
20042           - Split InitLayout logic, moved to separate UpdateDistances() method
20043             since we need to perform those calculations more often than just
20044             when adding the control to a container. (Needed to fix #77022)
20045           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
20046           - Reduced the OnBindingContextChanged events count, don't send them
20047             unless the control is created, we still aren't totally matching
20048             MS, but I can't quite figure out some of their rules
20049
20050 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
20051
20052         * ThemeClearlooks.cs: Corrected distance between ProgressBar
20053           stripes
20054
20055 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
20056
20057         * ThemeClearlooks.cs:
20058           - Updated ProgressBar drawing
20059           - Corrected drawing of ScrollBars and scroll buttons
20060           - Some temporary fixes for minor pixel artefacts
20061
20062 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
20063
20064         * Control.cs:
20065           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
20066             cause events to be sent in the same order as MS does.
20067           - Added ChangeParent() method to trigger various OnXXXChanged events
20068             that need to be fired when a parent changes (This is a reworking
20069             of the patch from r54254, with the X11 errors fixed)
20070           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
20071             since on MS we get OnLayoutChanged events when calling Clear()
20072           - Changed Enabled property to consider parent state as well, if a
20073             parent is not enabled, the control will not be either
20074           - Changed Parent property to simply call Controls.Add() since that
20075             now does all the work required, this way we avoid code duplication
20076           - Threw in a few OnBindingsContextChanged calls to try and match
20077             when MS sends them. We seem to send a few too many, though.
20078           - Added call to CreateControl when adding the control to a parent.
20079             We were never calling CreateControl. Still needs some work, in
20080             some places we treat HandleCreated and ControlCreated as equal, 
20081             which is wrong
20082           - Removed obsolete commented out code from UpdateZOrder()
20083
20084 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
20085
20086         * ThemeClearlooks.cs: Updated TrackBar drawing.
20087
20088 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
20089
20090         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
20091
20092 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
20093
20094         * FileDialog.cs: Add the Help button and the open readonly
20095           checkbox only if needed
20096
20097 2005-12-16  Jackson Harper  <jackson@ximian.com>
20098
20099         * Control.cs: Make sure we have an active menu before trying to
20100         process commands on it. Prevents menu-less forms from crashing
20101         when Alt is pressed.
20102         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
20103         Dieter Bremes.
20104         * RichTextBox.cs: Expand statement to help out gmcs and fix the
20105         2.0 build.
20106
20107 2005-12-16  Jackson Harper  <jackson@ximian.com>
20108
20109         * InternalWindowManager.cs: Don't translate tool windows screen
20110         coordinates. This fixes windows 'bouncing' around when being moved.
20111
20112 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
20113
20114         * TextBoxBase.cs:
20115           - MaxLength now treats 2^31-1 equal to unlimited length (this is
20116             not quite MS compatible, MS uses that number only for single line
20117             and 2^32-1 for multi-line, but I figure it won't hurt keeping
20118             the limit at 2GB)
20119           - Now enforcing the MaxLength limit when entering characters
20120           - Added argument to internal Paste() method to track if it's called
20121             from programatically or via keyboard, since keyboard driven pastes
20122             need to enforce max-length
20123           - Added logic to Paste to only paste as many chars as MaxLength 
20124             allows
20125         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
20126         * TextControl.cs:
20127           - Added Length property to return number of characters in document
20128           - Added private CharCount property which only tracks actual chars
20129             in the document (no linefeeds) and fires event when CharCount
20130             changes
20131           - Added tracking of character count to all methods that alter it
20132           - Added LengthChanged event to allow applications to subscribe
20133             to any changes to the document
20134
20135 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
20136
20137         * TextBox.cs: 
20138           - Removed local password_char field (moved to TextBoxBase)
20139           - Now setting the document's password var when password is
20140             set
20141         * TextBoxBase.cs:
20142           - Added password_char field (needed here so MultiLine can
20143             access it)
20144           - Added logic to MultiLine property setter to set the document's
20145             variable when password display is allowed
20146           - Removed debug code and made some debug code conditional
20147         * TextControl.cs:
20148           - Added RecalculatePasswordLine() method to handle special password
20149             char only lines
20150           - Added PasswordChar property, also added related tracking vars
20151           - Draw() method now uses local text var for grabbing text to draw,
20152             this var is set to line.text unless we're doing password display,
20153             then it is set to the pre-generated all-password-chars line
20154           - Added calling RecalculatePasswordLine() method for password lines
20155
20156 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
20157
20158         * Hwnd.cs: 
20159           - Added Reparented property to allow tracking of Window Manager
20160             reparenting actions (which affect X/Y calculations of toplevel 
20161             windows)
20162           - Made ToString() print window handles in hex
20163         * XplatUIX11.cs:
20164           - AddConfigureNotify(): Now uses reparented state off Hwnd to
20165             determine if X/Y needs offsetting
20166           - AddConfigureNotify(): Fixed offset calculations
20167           - Now adds ReparentNotify messages into the queue
20168           - Now processes ReparentNotify messages and causes a 
20169             WM_WINDOWPOSCHANGED message to be sent upstream if a window
20170             is reparented (as most likely it's X/Y coordinates are changed
20171             due to that)
20172
20173 2005-12-14  Jackson Harper  <jackson@ximian.com>
20174
20175         * XplatUIX11.cs: Tool windows still need to respek focus.
20176
20177 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
20178
20179         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
20180           have a working release
20181
20182 2005-12-13  Jackson Harper  <jackson@ximian.com>
20183
20184         * Form.cs: Update styles after setting the border style regardless
20185         of whether or not the window is using a window manager.
20186
20187 2005-12-13  Jackson Harper  <jackson@ximian.com>
20188
20189         * Form.cs: We now hook into an internal window manager instead of just an
20190         MDI subsystem, this is so we can have properly behaving tool windows.
20191         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
20192         * InternalWindowManager.cs: New internal class that acts as a
20193         window manager for tool windows and as a base for mdi windows.
20194         * MdiWindowManager.cs: New class that acts as a window manager for
20195         mdi windows.
20196
20197 2005-12-12  Jackson Harper  <jackson@ximian.com>
20198
20199         * Control.cs: Updates so we match behavoir for for implicit
20200         controls. Fixes explosions in MDI.
20201
20202 2005-12-12  Jackson Harper  <jackson@ximian.com>
20203
20204         * Control.cs: Implement Invalidate (Region).
20205
20206 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
20207
20208         * Control.cs: 
20209           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
20210             the same events as MS does. MS fires events for each property 
20211             except, for unknown reasons, Cursor, when the control is reparented. 
20212             I can't seem to totally match add/remove since MS also fires some 
20213             VisibleChanged events, which makes no sense. Consolidated the
20214             parenting code into a separate method so it can be called from
20215             both Add and Remove. set_Parent no longer needs any special logic
20216             as it calls the parent's add method which implicitly fires
20217             all events
20218           - Removed some obsolete code and debug output
20219           - Enabled state is inherited from parents, if this is enabled
20220
20221 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
20222
20223         * Form.cs: Removed commented out code
20224
20225 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
20226
20227         * Control.cs:
20228           - Added internal version of Invoke, with additional argument 
20229             indicating if we're calling it from a Dispose() handler. That
20230             way we can avoid BeginInvoke throwing an exception if we're
20231             calling for an already destroyed window.
20232           - Added a dispose argument to BeginInvokeInternal, and made the
20233             check if a valid window handle chain exists conditional on
20234             it not being a dispose call
20235           - Removed code in DestroyHandle to destroy our children. Since we
20236             now handle the WM_DESTROY message we will catch all our children
20237             being destroyed.
20238           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
20239         * Form.cs:
20240           - Added a field to track the application context of the form.
20241           - No need to set closing variable as response to WM_CLOSE, instead
20242             we destroy the window. We also call PostQuitMessage if the form
20243             has an application context (which makes it the main app form,
20244             which, when closed terminates the app)
20245         * XplatUI.cs:
20246           - Dropped Exit() method, it's naming was confusing
20247           - Added PostQuitMessage() which causes GetMessage to return false
20248             once the message queue is empty
20249         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
20250           PostQuitMessage()
20251         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
20252           no longer a valid XplatUI method, but left it in since it's used
20253           internally. Added empty PostQuitMessage() method.
20254         * MenuAPI.cs: Replaced call to Exit() with call to
20255           PostQuitMessage, even though this is probably no longer needed.
20256         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
20257         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
20258         * Application.cs:
20259           - Replaced call to XplatUI.Exit() with PostQuitMessage()
20260           - Removed old debug code that would call XplatUI for exception
20261             display, enabled standard exception handling (Still not enabled
20262             though, until NativeWindow's ExternalExceptionHandler define
20263             is removed
20264         * NativeWindow.cs:
20265           - Added internal method to allow control to update NativeWindow
20266             after a window has been destroyed
20267           - Added handling of already destroyed windows when calling i
20268             DestroyWindow
20269           - Added removal of handle from list on ReleaseHandle
20270         * XplatUIX11.cs:
20271           - Dropped GetMessageResult var and related code
20272           - Added PostQuitState to field to track if PostQuitMessage has been
20273             called
20274           - Dropped Exit() method
20275           - Added PostQuitMessage() method
20276           - GetMessage now will return false if PostQuitState is set and no
20277             more messages are in the queue.
20278           - Expose handler will no longer generate WM_PAINT messages if we are
20279             in PostQuitState since it's very likely any windows have already
20280             been destroyed, and since Hwnd won't get updated until we have
20281             processed the DestroyNotify we'd be causing X errors.
20282         
20283 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20284
20285         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
20286           Thanks to Mike for pointing out the err of my ways.
20287
20288 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20289
20290         * Control.cs(PreProcessMessage): Moved menu handling back, but
20291           after all other key handling, to match MS (who handles Menu in
20292           DefWndProc)
20293         * Menu.cs (WndProc): Removed my brainfart
20294
20295 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20296
20297         * Control.cs(PreProcessMessage): Removed special menu handling 
20298         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
20299
20300 2005-12-07  Mike Kestner  <mkestner@novell.com>
20301
20302         * Control.cs : special case SYSKEYUP so that we can adjust keynav
20303         state according in tracker.
20304         * Menu.cs : promote tracker field to base class and provide a tracker
20305         lookup capability.  Add/Remove shortcuts dynamically if the top menu
20306         has a tracker. Unparent items that are removed from the collection.
20307         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
20308         * Theme*.cs: add always_show_hotkeys field to support configurability
20309         of mnemonic display.  win32 doesn't show mnemonics until Alt is
20310         pressed.
20311
20312 2005-12-07  Jackson Harper  <jackson@ximian.com>
20313
20314         * MdiChildContext.cs: Use Control.ResetCursor.
20315         * Control.cs: ResetCursor needs to set the property so that the
20316         correct XplatUI call gets made.
20317
20318 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20319
20320         * Control.cs: More fixes to make our key events match MS. We
20321           were not setting the modifier state on KeyData, and we were
20322           not generating any events when Alt was pressed with a key
20323           since handling of WM_SYSxxx was missing for the OnKey methods.
20324
20325 2005-12-07  Jackson Harper  <jackson@ximian.com>
20326
20327         * MdiChildContext.cs: reenable the sizing code.
20328         - When the mouse leaves a window reset its cursor.
20329
20330 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
20331
20332         * ThemeClearlooks.cs: Reflect latest Hwnd changes
20333
20334 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20335
20336         * Hwnd.cs: Now using the theme 3d bordersize to calculate
20337           widths of Fixed3D borders
20338
20339 2005-12-07  Jackson Harper  <jackson@ximian.com>
20340
20341         * MdiClient.cs: Fix warnings. Earn Mike's love.
20342
20343 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
20344
20345         * ThemeClearlooks.cs:
20346           - Adjusted mouse over button color
20347           - Added first parts of CheckBox drawing
20348           - Added correct color for selected text background
20349           - Fixed ComboBox drawing
20350           - Added CPDrawBorder3D and CPDrawBorder
20351
20352 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
20353
20354         * XplatUIX11.cs: Added call to XBell for AudibleAlert
20355
20356 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
20357
20358         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
20359           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
20360           alert users via sound. We could add an enum arg with different
20361           types of alerts in the future
20362
20363 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
20364
20365         * Control.cs: Fix behaviour problems pointed out by Mike
20366
20367 2005-12-05  Mike Kestner  <mkestner@novell.com>
20368
20369         * StatusBarPanel.cs: add Invalidate method and hook it into all the
20370         prop setters.  Calls parent.Refresh for now, but could be maybe be
20371         optimized with an internal method on StatusBar at some point.
20372         [Fixes #76513]
20373
20374 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
20375
20376         * RichTextBox.cs: Implemented get_SelectionColor
20377
20378 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
20379
20380         * ThemeClearlooks.cs:
20381           - Removed dead code
20382           - Draw black button border only if button is Form.AcceptButton
20383           - Draw correct button color for pressed RadioButton if the mouse 
20384             has entered the button
20385           - Updated ProgressBar drawing!
20386           - Updated CPDrawSizeGrip drawing
20387           - Updated StatusBarPanel drawing
20388
20389 2005-12-05  Mike Kestner  <mkestner@novell.com>
20390
20391         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
20392         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
20393
20394 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
20395
20396         * ThemeClearlooks.cs: Initial check-in, activate with
20397           export MONO_THEME=clearlooks
20398         * ThemeEngine.cs: Added ThemeClearlooks
20399
20400 2005-12-03  Mike Kestner  <mkestner@novell.com>
20401
20402         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
20403         [Fixes #76897]
20404
20405 2005-12-02  Jackson Harper  <jackson@ximian.com>
20406
20407         * Form.cs: If the child form has no menu the default main menu is
20408         used as the active menu.
20409
20410 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
20411
20412         * ListBox.cs: Check if any items exist before trying to resolve 
20413           coordinates into items
20414
20415 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
20416
20417         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
20418           as the second color for the background hatch
20419
20420 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
20421
20422         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
20423         * RichTextBox.cs: FormatText position arguments are 1-based, now making
20424           sure that what we pass to FormatText is always 1-based. Fixes #76885
20425
20426 2005-11-29  Miguel de Icaza  <miguel@novell.com>
20427
20428         * NumericUpDown.cs (EndInit): When we are done initializing,
20429         reflect any updates on the UI.
20430
20431 2005-12-02  Jackson Harper  <jackson@ximian.com>
20432
20433         * ImplicitHScrollBar.cs:
20434         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
20435         their container controls.
20436         * TreeView.cs: Use the new implicit scrollbars.
20437
20438 2005-12-02  Jackson Harper  <jackson@ximian.com>
20439
20440         * TreeView.cs: Make top_node internal so the TreeNodeCollections
20441         can play with it.
20442         * TreeNodeCollection.cs: If we remove the topnode we need to
20443         update topnode to the next node in line.
20444         - When clearing nodes go through the same process as removing
20445         them, so they get depareneted and checked if they are top node.
20446
20447 2005-12-01  Jackson Harper  <jackson@ximian.com>
20448
20449         * TreeView.cs: When imagelists are used the image area is
20450         selectable as well as the text.
20451         - If there are no selected nodes select the first one.
20452         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
20453         so don't do it more then we need to.
20454
20455 2005-12-01  Jackson Harper  <jackson@ximian.com>
20456
20457         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
20458         that arrows can be scaled.
20459
20460 2005-12-01  Jackson Harper  <jackson@ximian.com>
20461
20462         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
20463         fail. Patch by Dieter Bremes
20464
20465 2005-11-30  Jackson Harper  <jackson@ximian.com>
20466
20467         * Form.cs: Property is 2.0 only
20468         * PrintDialog.cs: Signature fix.
20469
20470 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
20471
20472         * TextControl.cs: 
20473           - No longer artificially moves text 2 pixels down (now that we have
20474             borders this is no longer needed)
20475           - Added calcs for left, hanging and right indent
20476
20477 2005-11-23  Mike Kestner  <mkestner@novell.com>
20478
20479         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
20480
20481 2005-11-30  Jackson Harper  <jackson@ximian.com>
20482
20483         * MdiChildContext.cs: Set the cloned menus forms, as these don't
20484         get cloned as part of CloneMenu ().
20485         * Menu.cs: Make sure the parent of the items get set correctly
20486         when they are added.  And the owners are notified of the changes.
20487         * Form.cs: Create an ActiveMenu property, so that when MDI is used
20488         we can change the menu being displayed/handled by the form without
20489         changing the menu assosciated with the form.
20490         - Don't let Mdi children draw/handle menus.
20491         
20492 2005-11-30  Jackson Harper  <jackson@ximian.com>
20493
20494         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
20495         a MenuChanged event. Just to make the API a little more
20496         consistent.
20497         * MainMenu.cs:
20498         * MenuItem.cs: Use the new OnMenuChanged
20499         * MdiChildContext.cs: Handle menu merging.
20500         * Form.cs: Implement MergedMenu.
20501         
20502 2005-11-30  Jackson Harper  <jackson@ximian.com>
20503
20504         * Menu.cs: We were misusing Add. Add goes behind the specified
20505         index according to the docs, and does not replace the specified
20506         index. So I added an Insert method.
20507
20508 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
20509
20510         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
20511           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
20512           is for Jackson
20513         * RichTextBox.cs: Added calls to base for DnD events
20514
20515 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
20516
20517         * TextControl.cs:
20518           - Fixed drag-selection related crash; style fixes
20519           - Implemented undo class
20520             o Implemented method to capture document state for specified
20521               range in document tree
20522             o Implemented method to restore captured document state
20523             o Implemented cursor tracking
20524             o Implemented basic undo stack
20525           - Added undo cursor tracking to methods altering cursor location
20526           - Added undo tracking to selection deletion (still missing
20527             other text-altering hookups)
20528         * RichTextBox.cs:
20529           - Added SelectionLength property
20530           - Implemented CanPaste()
20531           - Implemented Paste()
20532           - Added missing protected methods
20533           - Fixed RTF->Document conversion; now uses font index 0 and color 
20534             index 0 as the default font for the parsed text
20535           - Fixed RTF<->Document font size translation
20536           - Fixed RTF generation, now properly handles cross-tag boundaries
20537             for single line selection
20538           - No longer always appends blank line to generated RTF
20539           - Removed TODOs
20540           - Added missing attributes
20541           - Hooked up undo-related methods
20542         * TextBoxBase.cs:
20543           - Implemented Copy()
20544           - Implemented Paste()
20545           - Implemented Cut()
20546           - Fixed caret mis-behaviour on backspace across line-boundaries
20547
20548 2005-11-29  Jackson Harper  <jackson@ximian.com>
20549
20550         * MdiClient.cs: Add a method for activating mdi children. Very
20551         basic right now. I imagine someday it might need more girth.
20552         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
20553         children windows names are added to the menu item.
20554         * ThemeWin32Classic.cs: Draw the arrow if the item is an
20555         mdilist. This happens regardless of whether or not there are any
20556         mdi windows to see in the list, and according to my tests happens
20557         before the items are even added. Also happens if there isn't even
20558         an mdi client to get windows from.
20559
20560 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
20561
20562         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
20563         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
20564
20565 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
20566
20567         * DataGridTableStyle.cs:
20568           - Create always the styles for the missing columns even if they are
20569             provided by the user (not default table style)
20570         * DataGrid.cs:
20571           - Fixes bug 76770
20572           - Fixes SetDataBinding (always re-attach source)
20573           - Fixes SetNewDataSource (only clear styles if they are not for 
20574             this source)
20575          -  Expands OnTableStylesCollectionChanged to handle style refresh 
20576             and remove properly
20577
20578 2005-11-29  Jackson Harper  <jackson@ximian.com>
20579
20580         * FileDialog.cs: Implement missing bits, remove some dead
20581         code.
20582         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
20583         creation of the panel so that the options set on the dialog are
20584         seen when the panel is created.
20585         * TreeView.cs: raise a click when items are clicked.
20586         
20587 2005-11-29  Jackson Harper  <jackson@ximian.com>
20588
20589         * MdiClient.cs: Pass some signature methods through to base.
20590
20591 2005-11-28  Jackson Harper  <jackson@ximian.com>
20592
20593         * ListView.cs: Raise the click event when items are clicked.
20594
20595 2005-11-28  Jackson Harper  <jackson@ximian.com>
20596
20597         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
20598         a nullref.
20599
20600 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
20601
20602         * ThemeNice.cs: - Removed 1 pixel bitmaps
20603           - Use SmoothingMode.AntiAlias where it makes sense
20604             (ScrollButton arrow for example)
20605           - Enhanced Button focus drawing
20606           - Fixed ComboBox drawing (no artefacts anymore, focus
20607             rectangle is back again, reduced size of ComboButton, etc.)
20608           - Fixed RadioButton focus drawing for Appearence.Button
20609           - Slight ScrollButton redesign
20610           - Some LinearGradientBrush size fixes
20611           - GroupBoxes have now rounded edges
20612           - Fixed StatusBar drawing
20613
20614 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
20615
20616         * ThemeNice.cs: - Remove dead code
20617           - use correct background colors for menus, etc.
20618           - Fake pixel drawing with 1 pixel bitmaps
20619
20620 2005-11-24  Jackson Harper  <jackson@ximian.com>
20621
20622         * MdiClient.cs: Size the scrollbars when resizing the window.
20623         - Resize the maximized windows when the client is resized
20624         * Form.cs: Make the child context available
20625         
20626 2005-11-23  Jackson Harper  <jackson@ximian.com>
20627
20628         * MdiChildContext.cs: Don't size windows if they are maximized.
20629
20630 2005-11-23  Mike Kestner  <mkestner@novell.com>
20631
20632         * ContextMenu.cs: use MenuTracker.
20633         * Control.cs: remove menu handle usage.
20634         * Form.cs: remove menu handle usage.
20635         * Hwnd.cs: remove menu handle usage.
20636         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
20637         motion and clicks to the new Tracker handlers.
20638         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
20639         and handle usage.
20640         * MenuAPI.cs: refactored to combine popup and menubar event handling.
20641         Killed the MENU and MENUITEM data types and associated collections
20642         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
20643         MenuTracker class that exposes the leftovers from the old MenuAPI
20644         static methods. Restructured Capture handling so that only one grab is
20645         done for the entire menu hierarchy instead of handing off grabs to
20646         submenus. Tracker now has an invisible control to Capture when active.
20647         * MenuItem.cs: add sizing accessors, kill Create
20648         and handle usage.
20649         * Theme.cs: remove menu handle and MENU(ITEM) usage.
20650         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
20651         MENU(ITEM). remove menu handle usage, use Menu directly.
20652         * XplatUIDriver.cs: remove menu handle usage.
20653         * XplatUIOSX.cs: remove menu handle usage.
20654         * XplatUIWin32.cs: remove menu handle usage.
20655         * XplatUIX11.cs: remove menu handle usage.
20656
20657 2005-11-22  Jackson Harper  <jackson@ximian.com>
20658
20659         * Hwnd.cs: Don't compute the menu size for
20660         DefaultClientRectangle.
20661         - Reenable menu sizes being computed for GetClienRectangle.
20662         * Form.cs: Remove comment of trechery
20663         
20664 2005-11-22  Jackson Harper  <jackson@ximian.com>
20665
20666         * Hwnd.cs: The adjustments for the menu bar are made when it is
20667         attached to the form.
20668
20669 2005-11-19  Jackson Harper  <jackson@ximian.com>
20670
20671         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
20672         (just like on windows).
20673
20674 2005-11-19  Jackson Harper  <jackson@ximian.com>
20675
20676         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
20677         use real buttons anymore because they are in non client area. The
20678         one TODO here is that I need to somehow invalidate a section of
20679         the non client area.
20680
20681 2005-11-18  Jackson Harper  <jackson@ximian.com>
20682
20683         * Control.cs: Put the enum check back in now that MDI doesnt have
20684         to use this to set border styles.
20685         * Form.cs: Only set mdi child windows borders if the handle has
20686         been created.
20687         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
20688         this directly on to the driver.
20689         - Get the move start position before adjusting for the titlebar
20690         height, this fixes the windows "skipping" when they are first
20691         moved.
20692
20693 2005-11-18  Jackson Harper  <jackson@ximian.com>
20694
20695         * XplatUIX11.cs: Just compute the mdi borders separately as they
20696         don't totally match up with normal form borders.
20697
20698 2005-11-18  Jackson Harper  <jackson@ximian.com>
20699
20700         * Control.cs: Set WS_ styles for borders, so that the driver does
20701         not have to retrieve the control instance to figure out what kind
20702         of borders it should have.
20703         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
20704         driver can know its an mdi child easily.
20705         * XplatUIX11.cs: Get the border styles and whether the window is
20706         MDI from the Styles and ExStyles params instead of having to get a
20707         control. This prevents a chicken and egg problem.       
20708
20709 2005-11-18  Jackson Harper  <jackson@ximian.com>
20710
20711         * MdiClient.cs: Fix typo so scrollbars show up correctly.
20712
20713 2005-11-18  Jackson Harper  <jackson@ximian.com>
20714
20715         * MdiClient.cs: Calculate when to add and remove scrollbars
20716         correctly.
20717         * MdiChildContext.cs: Adjust the y position to take the titlebar
20718         into account.
20719         - No height for FormBorderStyle.None
20720
20721 2005-11-18  Jackson Harper  <jackson@ximian.com>
20722
20723         * Control.cs: Allow non enum values to be used for
20724         InternalBorderStyle.  MDI does this to set a special border style.
20725         - New utility methods for converting points to/from client coords
20726         - Add the newly created control to the Controls collection before
20727         updating its style. This way UpdateStyle can walk the control
20728         heirarchy to find the control if needed.
20729         so I don't need to create a new Point object all the time.
20730         * Form.cs: Let MDI windows handle their border styles.
20731         - Set styles on MDI windows so the correct title style is derived.
20732         * MdiChildContext.cs: Move all the painting and window handling
20733         into the non client area.
20734         - Use correct sizing and put correct buttons on frames based on
20735         the FormBorderStyle.
20736         - Notify the mdi client about scrolling
20737         - Need to handle the buttons ourselves now, because they are all
20738         in non client areas and we can't add controls there.
20739         * MdiClient.cs: Halfway to scrolling, this implementation is
20740         somewhat broken though, we need to check to make sure other
20741         windows aren't causing scrolling before removing the bars. Also
20742         the bars need to be drawn on top, maybe I can switch implicit
20743         controls to be on top.
20744         * Hwnd.cs: caption_height and tool_caption_height are now
20745         properties of an hwnd, this way they can be set by the driver
20746         based on the type of window they are.  In X11 the window manager
20747         handles the decorations so caption_height is zero unless its an
20748         MDI window.
20749         - Add 3 pixel borders for MDI windows (0xFFFF).
20750         - Get rid of some code duplication, have DefaultClientRectanle
20751         just call GetClientRectangle.
20752         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
20753         Hwnd now.
20754         - Set border styles differently for mdi windows.
20755         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
20756         Hwnd now.
20757         
20758 2005-11-15  Mike Kestner  <mkestner@novell.com>
20759
20760         * Menu.cs: when adding an item to the collection, if item is already 
20761         parented, remove it from the parent.
20762
20763 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
20764
20765         * X11DesktopColors.cs: Added KDE support
20766
20767 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
20768
20769         * XplatUIWin32.cs: 
20770           - Clipboard methods now can translate Rtf format
20771           - No longer removes clipboard contents whenever a new format is added
20772             to allow placing multiple formats on the clipboard
20773         * Clipboard.cs: Clipboard now supports getting a IDataObject and
20774           will place all formats contained in it onto the clipboard. Also
20775           now cleans the clipboard before placing a new object onto it
20776         * RichTextBox.cs:
20777           - Implemented set_Rtf
20778           - Implemented set_SelectedRtf
20779           - Created InsertRTFFromStream() method to allow single code base
20780             for all properties and methods that insert RTF into document
20781           - Removed debug output
20782         * TextControl.cs:
20783           - Fixed Delete(int) to fix up line numbers
20784           - Fixed ReplaceSelection to combine start and end line
20785           - Fixed serious DeleteChars bug that would leave the document tree
20786             broken
20787           - Improved DumpTree with several logic checks to detect broken
20788             document trees
20789           - Removed debug lines
20790           - Fixed Caret.WordForward/WordBack moving code, now always also 
20791             updates caret.tag (fixes crash when word-selecting across tag
20792             boundaries via keyboard)
20793           - Added Insert() method for inserting multiline text into documents
20794           - Fixed DeleteChars() calculation errors that would cause a broken
20795             tag chain with multiple tag lines
20796           - DeleteChars() no longer crashes on multi-tag lines if not all tags
20797           - Split() no longer moves caret if split is at caret location
20798           - ReplaceSelection() now updates the cursor and re-displays it
20799           - ReplaceSelection() now uses new Insert() method to avoid code
20800             duplication
20801           - FormatText() can now handle formatting partial lines
20802         * TextBoxBase.cs:
20803           - Append now uses new TextControl.Insert() method (this avoids 
20804             duplicate code)
20805           - Implemented Ctrl-X (Cut) (
20806           - Implemented Ctrl-C (Copy)
20807           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
20808             regeneration when pasting text; roundtripping Copy&Paste within
20809             edit control still fails due to some calculation bugs in GenerateRTF)
20810           - The Delete key will now remove the current selection if it is visible
20811         * TextBox.cs: Removed debug lines
20812         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
20813           driver to be initialized and can't therefore be done via a static ctor)
20814
20815 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
20816
20817         * TextControl.cs: Added backend code for finding char arrays and strings
20818         * TextBoxBase.cs:
20819           - Added mouse wheel scroll support
20820           - Added support for VScroll and HScroll events
20821         * RichTextBox.cs:
20822           - Implemented all seven Find() variants
20823           - Implemented GetCharFromPosition()
20824           - Implemented GetCharIndexFromPosition()
20825           - Implemented GetLineFromIndex()
20826           - Implemented GetPositionFromCharIndex();
20827           - Implemented SaveFile for PlainText and UnicodeText
20828           - Fixed set_Font, now setting a new font applies that font to
20829             the whole document
20830           - Implemented generic Document to RTF converter
20831           - Implemented SaveFile for RichText format (still missing unicode
20832             conversion for non-ansi chars)
20833           - Implemented get_Rtf
20834           - Implemented get_SelectedRtf
20835
20836 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
20837
20838         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
20839           to allow any captures to be released before triggering OnClick. This
20840           way a click handler may capture the mouse without interference.
20841         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
20842           This way we send them even though X may not allow a grab (if the window
20843           isn't visible, for example)
20844
20845 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
20846
20847         * DataGridViewRowEventArgs.cs: DataGridView implementation
20848         * DataGridViewElement.cs: DataGridView implementation
20849         * DataGridViewComboBoxCell.cs: DataGridView implementation
20850         * DataGridViewDataErrorContexts.cs: DataGridView implementation
20851         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
20852         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
20853         * ImageLayout.cs: DataGridView implementation
20854         * DataGridViewComboBoxColumn.cs: DataGridView implementation
20855         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
20856         * DataGridViewSelectionMode.cs: DataGridView implementation
20857         * IDataGridViewEditingControl.cs: DataGridView implementation
20858         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
20859         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
20860         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
20861         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
20862         * DataGridViewColumnSortMode.cs: DataGridView implementation
20863         * DataGridView.cs: DataGridView implementation
20864         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
20865         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
20866         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
20867         * Padding.cs: DataGridView implementation
20868         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
20869         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
20870         * DataGridViewRowEventHandler.cs: DataGridView implementation
20871         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
20872         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
20873         * DataGridViewButtonCell.cs: DataGridView implementation
20874         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
20875         * DataGridViewEditMode.cs: DataGridView implementation
20876         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
20877         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
20878         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
20879         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
20880         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
20881         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
20882         * DataGridViewCellEventHandler.cs: DataGridView implementation
20883         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
20884         * DataGridViewCellStyleConverter.cs: DataGridView implementation
20885         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
20886         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
20887         * DataGridViewColumnEventArgs.cs: DataGridView implementation
20888         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
20889         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
20890         * QuestionEventArgs.cs: DataGridView implementation
20891         * IDataGridViewEditingCell.cs: DataGridView implementation
20892         * DataGridViewTriState.cs: DataGridView implementation
20893         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
20894         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
20895         * DataGridViewColumnCollection.cs: DataGridView implementation
20896         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
20897         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
20898         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
20899         * DataGridViewColumn.cs: DataGridView implementation
20900         * DataGridViewCellBorderStyle.cs: DataGridView implementation
20901         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
20902         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
20903         * DataGridViewRow.cs: DataGridView implementation
20904         * DataGridViewImageCellLayout.cs: DataGridView implementation
20905         * DataGridViewImageCell.cs: DataGridView implementation
20906         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
20907         * DataGridViewCheckBoxCell.cs: DataGridView implementation
20908         * DataGridViewHeaderCell.cs: DataGridView implementation
20909         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
20910         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
20911         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
20912         * DataGridViewTextBoxColumn.cs: DataGridView implementation
20913         * QuestionEventHandler.cs: DataGridView implementation
20914         * DataGridViewCellStyleScopes.cs: DataGridView implementation
20915         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
20916         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
20917         * DataGridViewCell.cs: DataGridView implementation
20918         * DataGridViewCellEventArgs.cs: DataGridView implementation
20919         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
20920         * DataGridViewCellStyle.cs: DataGridView implementation
20921         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
20922         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
20923         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
20924         * TextFormatFlags.cs: DataGridView implementation
20925         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
20926         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
20927         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
20928         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
20929         * DataGridViewButtonColumn.cs: DataGridView implementation
20930         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
20931         * HandledMouseEventArgs.cs: DataGridView implementation
20932         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
20933         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
20934         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
20935         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
20936         * DataGridViewRowCollection.cs: DataGridView implementation
20937         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
20938         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
20939         * DataGridViewHitTestType.cs: DataGridView implementation
20940         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
20941         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
20942         * DataGridViewColumnEventHandler.cs: DataGridView implementation
20943         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
20944         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
20945         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
20946         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
20947         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
20948         * DataGridViewContentAlignment.cs: DataGridView implementation
20949         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
20950         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
20951         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
20952         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
20953         * DataGridViewPaintParts.cs: DataGridView implementation
20954         * DataGridViewCellCollection.cs: DataGridView implementation
20955         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
20956         * DataGridViewImageColumn.cs: DataGridView implementation
20957         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
20958         * DataGridViewElementStates.cs: DataGridView implementation
20959         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
20960         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
20961         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
20962         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
20963         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
20964         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
20965         * DataGridViewRowHeaderCell.cs: DataGridView implementation
20966         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
20967         * DataGridViewTextBoxCell.cs: DataGridView implementation
20968         * DataGridViewBand.cs: DataGridView implementation
20969         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
20970         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
20971         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
20972         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
20973         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
20974         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
20975         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
20976         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
20977         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
20978         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
20979         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
20980
20981 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
20982
20983         * ThemeWin32Classic.cs: 
20984           - Draw the outside focus rectangle around buttons
20985           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
20986             doesn't use end caps for every dash of a line anymore. This
20987             workaround ignores the forecolor.
20988
20989 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
20990
20991         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
20992           endian safe.
20993
20994 2005-11-07  Jackson Harper  <jackson@ximian.com>
20995
20996         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
20997
20998 2005-11-07  Jackson Harper  <jackson@ximian.com>
20999
21000         * ScrollableControl.cs: Calculate the maximum and change vars
21001         (more) correctly so that scrollbars appear as a sensible size.
21002
21003 2005-11-04  Jackson Harper  <jackson@ximian.com>
21004
21005         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
21006         collection.
21007         * TreeView.cs: When the tree is sorted null out the top_node so
21008         that it is recalculated.
21009         - Use dotted lines instead of dashed lines to match MS better.
21010
21011 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
21012
21013         * ListView.cs: 
21014           - Implements key search for items. Useful when browsing files with FileDialog
21015           - When changing view mode or when clear the items reset scrollbar positions
21016
21017 2005-11-04  Jackson Harper  <jackson@ximian.com>
21018
21019         * CurrencyManager.cs: Implement the MetaDataChanged event, the
21020         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
21021         as to what the method may do as there is no real way of creating a
21022         derived CurrencyManager and calling the method. 
21023
21024 2005-11-03  Jackson Harper  <jackson@ximian.com>
21025
21026         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
21027         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
21028         method which seems to just be used internally to refresh the tabs.
21029
21030 2005-11-03  Jackson Harper  <jackson@ximian.com>
21031
21032         * TabControl.cs: Implement the remove method. Fix some broken
21033         comments.
21034
21035 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
21036
21037         * DateTimePicker.cs:
21038           - Added missing DateTimePickerAccessibleObject class
21039           - Added missing events
21040           - Added OnFontChanged method
21041         * Form.cs: Added missing attributes
21042         * TreeView.cs: Added missing attributes
21043
21044 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
21045
21046         * GridItemCollection.cs: Fix signatures
21047
21048 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
21049
21050         * XplatUI.cs: Updated build rev/date
21051         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
21052           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
21053         * Application.cs: Trigger context-specific ExitThread events
21054
21055 2005-11-03  Jackson Harper  <jackson@ximian.com>
21056
21057         * Menu.cs:
21058         * MainMenu.cs:
21059         * GridTableStylesCollection.cs:
21060         * Timer.cs:
21061         * TabPage.cs:
21062         * HelpProvider.cs:
21063         * StatusBar.cs:
21064         * MonthCalendar.cs: Signature fixes
21065
21066 2005-11-03  Jackson Harper  <jackson@ximian.com>
21067
21068         * TreeNodeCollection.cs: Remove should not be virtual.
21069         * TreeView.cs: Implement the last of the missing methods.
21070
21071 2005-11-03  Jackson Harper  <jackson@ximian.com>
21072
21073         * TreeNodeConverter.cs: Implement to get off my class-status back.
21074
21075 2005-11-03  Jackson Harper  <jackson@ximian.com>
21076
21077         * TreeView.cs: Hookup the bits for drag and drop.
21078         * TreeNode.cs: Don't cache the tree_view or index anymore, now
21079         that nodes can be moved from tree to tree easily this just causes
21080         all sorts of problems.
21081         * TreeNodeCollection: Don't need to give treenodes an index and
21082         treeview anymore when they are added, these are computed on the
21083         fly. Also make sure to remove a node before its added.
21084
21085 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
21086
21087         * TextControl.cs:
21088           - Added CaretSelection enum
21089           - Added comparison methods to Marker struct, makes selection code
21090             more readable
21091           - Added SelectionStart and SelectionEnd as 'moveable' location for
21092             the CaretDirection enum and handler
21093           - Added selection_prev variable to track optimized invalidation for
21094             word and line selection
21095           - Added SelectionVisible property (returns true if there is a valid 
21096             selection)
21097           - Switched CaretHasFocus to only display the caret if there is no
21098             visible selection
21099           - Avoiding StringBuilder.ToString to retrieve a single char, instead
21100             using the direct character index; should be much faster
21101           - Added various conditional debug statements
21102           - Fixed invalidation calculation for selection ranges
21103           - Added ExpandSelection() method to support word and line selection
21104           - Switched SetSelectionToCaret to use new Marker compare overloads
21105           - Added central IsWordSeparator() method to determine word 
21106             separators/whitespace and FindWordSeparator() to streamline common
21107             usage of IsWordSeparator()
21108         * TextBoxBase.cs:
21109           - Removed unneeded grabbed variable, it was just mirroring
21110             Control.Capture
21111           - No longer firing OnTextChanged event when Text setter is called,
21112             since the base will fire the event for us
21113           - Added handling of Ctrl-Up/Down selection
21114           - Added handling of Shift-Cursorkey selection
21115           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
21116             words
21117           - Added handling of Shift and Ctrl-Shift-Home/End selection
21118           - Removed some debug output
21119           - Added handling for single/double/tripple-click to place caret/
21120             select word/select line respectively (Fixes bug #76031)
21121           - Added support for drag expansion of word/line selection
21122         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
21123           current selection
21124
21125 2005-11-02  Jackson Harper  <jackson@ximian.com>
21126
21127         * X11Dnd.cs: If the drag is going to and from a MWF window just
21128         copy the data instead of sending it out through the X Selection
21129         mechanism.
21130
21131 2005-11-02  Jackson Harper  <jackson@ximian.com>
21132
21133         * X11Dnd.cs:
21134         * XplatUIX11.cs: When in a drag we don't want motion notify
21135         messages to get passed on to the other controls. This prevents
21136         mouse move messages from showing up in the drag source.
21137
21138 2005-11-02  Jackson Harper  <jackson@ximian.com>
21139
21140         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
21141         the correct button is release to end a drag.
21142         * XplatUIX11.cs: Make the button state internal so the drag system
21143         can access it.  Dragging needs to know about all button releases,
21144         not just left button.
21145
21146 2005-11-02  Miguel de Icaza  <miguel@novell.com>
21147
21148         * Form.cs (Icon): If the icon is null, reset the icon to the
21149         default value. 
21150
21151         * Cursor.cs: When writing the AND-mask bitmap do not include the
21152         number of colors, but hardcode those to two (black and white),
21153         fixes the loading of color cursors (Paint Dot Net).
21154
21155         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
21156         turn off autoscaling.
21157
21158         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
21159
21160 2005-11-02  Jackson Harper  <jackson@ximian.com>
21161
21162         * X11Dnd.cs: Make sure to send a status message if the pointer
21163         enters a control that can not accept a drop, otherwise the cursor
21164         isn't updated correctly. Also tried to compress the lines of code
21165         a bit.
21166
21167 2005-11-02  Jackson Harper  <jackson@ximian.com>
21168
21169         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
21170         set actions correctly.  This isn't perfect as XDND and win32 have
21171         some differences on how you allow actions. I'll clear this up by
21172         adding a path for drag from MWF to MWF windows.
21173         * XplatUIX11.cs: Hook into the dnd system.
21174
21175 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
21176
21177         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
21178         previously shown but they are no longer need it. Very obvious when 
21179         browsing files with FileDialog.
21180
21181 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
21182
21183         * Control.cs: We always need to call OnPaintBackground. We pretty much
21184           ignore AllPaintingInWmPaint and always do the painting there, whether 
21185           it's set or not, since we always ignore the WM_ERASEBKGND message 
21186           (which we don't generate on X11). This fixes #76616.
21187         * Panel.cs: Removed unneeded background painting. This happens properly
21188           in Control.cs already
21189
21190 2005-10-31  Mike Kestner  <mkestner@novell.com>
21191
21192         * Menu.cs: Add items to collection before setting their index.
21193         * MenuItem.cs : add range checking with ArgumentException like MS.
21194         [Fixes #76510]
21195
21196 2005-10-31  Jackson Harper  <jackson@ximian.com>
21197
21198         * ListBox.cs: Invalidate if the area is visible at all not just
21199         contained in the visible rect. Fixes unselection of semi visible
21200         items.
21201
21202 2005-10-31  Jackson Harper  <jackson@ximian.com>
21203
21204         * Control.cs: Consistently name the dnd methods. Make them
21205         internal so we can override them to match some MS behavoir
21206         internally.
21207         * Win32DnD.cs: Use the new consistent names.
21208
21209 2005-10-31  Jackson Harper  <jackson@ximian.com>
21210
21211         * TreeView.cs: Don't draw the selected node when we lose focus.
21212
21213 2005-10-31  Jackson Harper  <jackson@ximian.com>
21214
21215         * X11Dnd.cs: We still need to reset the state even though a full
21216         reset isn't being done, otherwise status's still get sent all over
21217         the place.
21218
21219 2005-10-31  Jackson Harper  <jackson@ximian.com>
21220
21221         * Control.cs: Make the dnd_aware flag internal so the dnd
21222         subsystem can check it. Catch exceptions thrown in dnd handlers to
21223         match MS behavoir.
21224         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
21225         * X11Dnd.cs: Handle null data in the converters. Set the XDND
21226         version when sending a XdndEnter. Use the control/hwnd dnd_aware
21227         flags to reduce the number of dnd enters/status's sent.
21228
21229 2005-10-31  Jackson Harper  <jackson@ximian.com>
21230
21231         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
21232
21233 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
21234
21235         * PictureBox.cs: Fixes 76512
21236
21237 2005-10-28  Jackson Harper  <jackson@ximian.com>
21238
21239         * X11Dnd.cs: Early implementation to support winforms being a drag
21240         source for data on X11. Also restructured the converters so they
21241         can go both ways now.
21242         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
21243         
21244 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
21245
21246         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
21247           clipboard requests
21248
21249 2005-10-27  Jackson Harper  <jackson@ximian.com>
21250
21251         * TreeNode.cs: Implement serialization so my DnD examples will work.
21252
21253 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
21254
21255         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
21256           TreeView.cs: Don't dispose objects that are not owned.
21257           
21258 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
21259
21260         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
21261           should retrieve the current cursor and report that, but XplatUI
21262           doesn't (yet) have an interface for that (and I'm not sure I even
21263           can, on X11)
21264         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
21265           until any message loop processing is done (and the WM_SETCURSOR
21266           replaces the cursor to the proper one)
21267         * XplatUIX11.cs: 
21268           - Fixed override behaviour, we can't set the cursor globally on X11, 
21269             just for our windows.
21270           - Invalidating the System.Drawing X11 display handle when we are
21271             shutting down
21272         * Control.cs: Fix to make csc happy
21273
21274 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
21275
21276         * TextBoxBase.cs: 
21277           - get_Text: Add last line (without trailing newline) to returned
21278             value (Fixes 76212)
21279           - get_TextLength: Count last line in returned length
21280           - ToString: Call Text property instead of duplicating code
21281
21282 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
21283
21284         * ImageList.cs: Dispose ImageAttributes objects.
21285
21286 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
21287
21288         * ImageList.cs: Use attribute constructors with less arguments where
21289           possible.
21290
21291 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
21292
21293         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
21294           Use typeof instead of strings when assembly is referenced. Added
21295           some more comments.
21296
21297 2005-10-21  Jackson Harper  <jackson@ximian.com>
21298
21299         * ListView.cs: Raise a double click event. Also tried to somewhat
21300         fix when the selectedindexchanged event is raised. Its still
21301         broken though.
21302
21303 2005-10-21  Jackson Harper  <jackson@ximian.com>
21304
21305         * TreeView.cs: New method to invalidate the plus minus area of a
21306         node without invalidating the whole node (maybe this can be used
21307         in some more places).
21308         * TreeNodeCollection.cs: When adding to an empty node we need to
21309         invalidate its plus minus area so the little block shows up.
21310         
21311 2005-10-21  Jackson Harper  <jackson@ximian.com>
21312
21313         * TreeView.cs: Make sure that when we invalidate a node the bounds
21314         are big enough to cover the selected box and the focus
21315         rectangle. Use a different colour for the lines connecting nodes
21316         so they show up with all themes.
21317
21318 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
21319
21320         * NativeWindow.cs: Don't call anything that could call into the driver,
21321           we might be on a different thread.
21322
21323 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
21324
21325         * Control.cs(Dispose): Since Dispose might run on a different thread,
21326           make sure that we call methods that could call into the driver via
21327           invoke, to avoid thread issues
21328
21329 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
21330
21331         * XplatUI.cs: Removed finalizer
21332         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
21333           not allowing to be called on the finalizer thread.
21334
21335 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
21336
21337         * ImageList.cs:
21338           - Reverted r51889 and r51891.
21339           - Added ImageListItem class that stores unmodified image items and image
21340             properties required to create list images until handle is created.
21341           - Added AddItem and moved image creation logic to AddItemInternal.
21342           - Added CreateHandle method that creates images based on unmodified items.
21343           - Added DestroyHandle that changes state to store unmodified items.
21344           - Add and AddStrip methods no more create handle.
21345           - ReduceColorDepth has no return value.
21346           - Dispose destroys handle.
21347           - Modified other methods to reflect the above changes.
21348           - Implemented key support.
21349           - Added profile 2.0 members and attributes.
21350           - Added private Reset and ShouldSerialize methods that provide the same
21351             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
21352             them as they are private.
21353           - Added some more comments about implementation details.
21354
21355 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
21356
21357         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
21358
21359 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
21360
21361         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
21362
21363 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
21364
21365         * DataGridDrawingLogic.cs: Fixes column hit calcultation
21366         * DataGridColumnStyle.cs: Remove debug message
21367
21368 2005-10-20  Jackson Harper  <jackson@ximian.com>
21369
21370         * TreeView.cs: We can always get input keys regardless of whether
21371         or not editing is enabled. They are used for navigation.
21372
21373 2005-10-20  Jackson Harper  <jackson@ximian.com>
21374
21375         * TreeNode.cs: Use the viewport rect for determining if a node
21376         needs to be moved for visibility. Don't use Begin/End edit. This
21377         calls a full refresh when its done.
21378         * TreeView.cs: New SetBottom works correctly.  Make the viewport
21379         rect property internal so the treenodes can see it. When clicking
21380         on a node we need to ensure that its visible because it might just
21381         be partly visible when clicked.
21382
21383 2005-10-20  Jackson Harper  <jackson@ximian.com>
21384
21385         * TreeNodeCollection.cs: Remove debug code.
21386
21387 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
21388
21389         * Datagrid.cs: Implements column sorting in Datagrid
21390         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
21391
21392 2005-10-20  Jackson Harper  <jackson@ximian.com>
21393
21394         * TreeNodeCollection.cs: Remove items properly. Update the correct
21395         area after removing them.
21396
21397 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
21398
21399         * Datagrid.cs: Should not call base.OnPaintBackground
21400
21401 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
21402
21403         * XplatUIX11.cs (GetMessage):
21404           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
21405             window instead of client window
21406           - Now properly calculates NC_xBUTTONUP message coordinates
21407           - ScreenToMenu now properly calculates it's coordinates of whole 
21408             window, since menus are in the whole window, not in the client
21409             window
21410           - Added WholeToScreen coordinate translation method
21411
21412 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
21413
21414         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
21415           want to return a message, loop back to the beginning of the function
21416           and grab the next real message to process instead.
21417
21418 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
21419
21420         * Splitter.cs: Properly set limits if no filler control is used
21421
21422 2005-10-19  Jackson Harper  <jackson@ximian.com>
21423
21424         * ColorDialog.cs: Don't show the help button if it is not enabled
21425         instead of disabling it (this is what MS does). Don't create the
21426         panel until the dialog is run, otherwise the vars (such as
21427         ShowHelp) are not set yet.
21428
21429 2005-10-19  Jackson Harper  <jackson@ximian.com>
21430
21431         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
21432         are reduced when adding nodes.
21433         * TreeNode.cs:
21434         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
21435         tree.
21436         
21437 2005-10-19  Jackson Harper  <jackson@ximian.com>
21438
21439         * FolderBrowserDialog.cs: End editing our treeview so the window
21440         actually gets refreshed.
21441
21442 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
21443
21444         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
21445           Obsoleted handling of WM_ERASEBKGND, now always draws our background
21446           inside of WM_PAINT
21447
21448 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
21449
21450         * MenuAPI.cs: Returns after Hidding window
21451         * XplatUIX11.cs: Added TODO found while debugging menu issues
21452
21453 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
21454
21455         * XplatUIX11.cs: Do not re-map the whole window when it's size
21456           becomes non-zero unless it's supposed to be actually visible
21457
21458 2005-10-18  Jackson Harper  <jackson@ximian.com>
21459
21460         * TreeView.cs: We don't need to keep a count anymore.
21461         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
21462         use the Grow method.
21463
21464 2005-10-18  Jackson Harper  <jackson@ximian.com>
21465
21466         * TreeNodeCollection.cs: Insert is not supported on arrays, so
21467         implement it manually here.
21468
21469 2005-10-18  Jackson Harper  <jackson@ximian.com>
21470
21471         * ImageList.cs: Dont kill the list when the colour depth is
21472         changed, just change the colour depth of all the images.
21473         - Same goes for setting the image size. Just resize them all
21474         instead of killing the list softly.
21475
21476 2005-10-18  Jackson Harper  <jackson@ximian.com>
21477
21478         * Control.cs: Don't invalidate empty rectangles.
21479
21480 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
21481
21482         * ListViewItem.cs:
21483           - Adds checked item to the Checked/Item lists (where empty before)
21484           - Do not add items to the Selected lists if they are already present
21485         * ListView.cs:
21486           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
21487           - When deleting items make sure that we delete them for the Selected
21488           and Checked list also.
21489
21490 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
21491
21492         * Label.cs: Dispose objects no longer used
21493         * ThemeWin32Classic.cs: Dispose objects no longer used
21494
21495 2005-10-18  Jackson Harper  <jackson@ximian.com>
21496
21497         * TabControl.cs: Don't refresh the whole control when the tabs are
21498         scrolled, we just need to refresh the tab area.
21499
21500 2005-10-17  Jackson Harper  <jackson@ximian.com>
21501
21502         * XplatUIX11.cs: Compress code a little bit. Only calculate the
21503         after handle when we need it.
21504
21505 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
21506
21507         * Control.cs: When the parent size changes, recalculate anchor 
21508           positions. Partial fix for #76462
21509
21510 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
21511
21512         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
21513           drawn. Fixes #76462
21514
21515 2005-10-17  Jackson Harper  <jackson@ximian.com>
21516
21517         * MonthCalendar.cs: Don't create the numeric up down until our
21518         handle is created. Otherwise our handle is created in the
21519         constructor and we don't know if we are a WS_CHILD or WS_POPUP
21520         yet.
21521
21522 2005-10-17  Jackson Harper  <jackson@ximian.com>
21523
21524         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
21525         correctly.
21526
21527 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
21528         * TreeNode.cs : small logical fix (was using local var instead of field)
21529         
21530 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
21531
21532         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
21533
21534 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
21535
21536         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
21537
21538 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
21539
21540         * Control.cs: 
21541           - Re-implemented anchoring code. My first version was really broken.
21542             This fixes bug #76033. Unlike the previous implementation we will
21543             no longer have round errors since all numbers are calculated from
21544             scratch every time. Removed various anchor-related obsolete vars.
21545           - InitLayout no longer causes layout event firing and layout to be 
21546             performed
21547
21548 2005-10-16  Jackson Harper  <jackson@ximian.com>
21549
21550         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
21551         which was broken).
21552
21553 2005-10-16  Jackson Harper  <jackson@ximian.com>
21554
21555         * TabControl.cs: Remove debug code.
21556
21557 2005-10-16  Jackson Harper  <jackson@ximian.com>
21558
21559         * XEventQueue.cs: Increase the default queue size (very simple
21560         apps needed to grow the queue).
21561         * Hwnd.cs: No finalizer so we don't need to suppress
21562         finalization. Compute the invalid area manually so a new rectangle
21563         does not newto be created.
21564         * ScrollableControl.cs: Don't set any params (otherwise visibility
21565         isn't set correctly).
21566         * MdiChildContext.cs: New constructor takes the mdi parent so it
21567         doesn't have to be computed and avoids a crash on windows. Draw
21568         the window icon properly, and allow the text to be seen.
21569         * Form.cs: Use new MdiChildContext constructor. Make sure the
21570         child context isn't null in wndproc.
21571         * TabControl.cs: Don't set focus, this is muddling keyboard
21572         behavoir. Expand the tab rows when a window size increase will
21573         allow extra tabs to be seen. Don't allow tabs smaller than the
21574         width of a window to be scrolled out of view.
21575         * TreeNode.cs:
21576         * TreeView.cs: Use measure string to calculate a nodes width, the
21577         width is cached and only updated when the text or the font is
21578         changed. Don't check for expand/collapse clicks on the first level
21579         nodes if root lines are disabled.
21580         
21581 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
21582
21583         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
21584
21585 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
21586
21587         * DataGridBoolColumn.cs: fixes warning
21588
21589 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
21590
21591         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
21592         to match more to match more precisely the MS Net behavior
21593
21594 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
21595
21596         * Hwnd.cs: Added field to track if window is mapped
21597         * XplatUIX11.cs: 
21598           - Unmap windows if they become 0-size, re-map when 
21599             they are >0 again; fixes #76035
21600           - Re-set our error handler after initializing X11Desktop
21601             to override any error handlers Gtk or whatever was called
21602             may have set.
21603
21604 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
21605
21606         * CheckedListBox.cs: Removed unused vars
21607         * ListView.cs: Fixed signatures
21608         * RichTextBox.cs: Removed unused vars
21609         * TextBoxBase.cs: Removed unused vars
21610         * XplatUIWin32.cs: Removed unused vars
21611         * XplatUIX11.cs: Removed unused vars
21612         * XplatUI.cs: Updated version and date to latest published
21613
21614 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
21615
21616         * Cursor.cs: Added private .ctor to work around a bug in
21617           resourceset (Thanks to Geoff Norton for the help on this)
21618         * SplitterEventArgs.cs: Made fields accessible so we don't
21619           waste boatloads of objects and can reuse the same one
21620           in Splitter
21621         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
21622           any captions and borders when generating screen coordinates
21623         * Splitter.cs: Reimplemented control, now fully complete, uses
21624           rubberband drawing, supports and obeys all properties, has
21625           proper cursors
21626
21627 2005-10-13  Miguel de Icaza  <miguel@novell.com>
21628
21629         * Form.cs (Form): Setup default values for autoscale and
21630         autoscale_base_size;  Make these instance variables, not static
21631         variables. 
21632
21633         (OnLoad): on the first load, adjust the size of the form.
21634
21635 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
21636
21637         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
21638           width argument to DrawReversibleRectangle()
21639         * XplatUIWin32.cs, XplatUIX11.cs: 
21640           - Implemented width for DrawReversibleRectangle()
21641           - Added logic to DrawReversibleRectangle that recognizes a zero
21642             width or height and only draws a line in that situation
21643         
21644 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
21645
21646         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
21647         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
21648         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
21649           method (it uses our FosterParent window to get a graphics context)
21650
21651 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
21652
21653         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
21654           and SetWindowBackground methods
21655         * Control.cs:
21656           - Setting proper ControlStyles
21657           - We no longer call XplatUI.SetWindowBackground and XplatUI.
21658             EraseWindowBackground, instead we draw the window background
21659             ourselves in PaintControlBackground. This behaviour is
21660             required to match MS, where, when OnPaintBackground is not
21661             called, the background is not drawn.
21662           - Removed unneeded Refresh() in set_Text
21663         * Hwnd.cs: Dropped the ErasePending support. No longer needed
21664         * XplatUIX11.cs:
21665           - Created DeriveStyles method to translate from CreateParams to
21666             FormBorderStyle and TitleStyle, also handles BorderStyle (which
21667             matches FormBorderStyle enum values)
21668           - Consolidated SetHwndStyles and CalculateWindowRect border/title
21669             style calculations into single DeriveStyles method
21670           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
21671             from redrawing the whole window on any resize or expose.
21672           - Fixed CreateWindow usage of SetWindowValuemask. Before not
21673             all styles were applied to our whole/client window appropriately
21674           - Removed EraseWindowBackground() and SetWindowBackground() methods
21675           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
21676             no longer clear/redraw the background through X
21677           - Removed handling of erase_pending bit, we have no use for it (or
21678             so it seems)
21679         * XplatUIOSX.cs:
21680           - Removed generation and handling of WM_ERASEBKGND message
21681           - Removed EraseWindowBackground() and SetWindowBackground() methods
21682           - Removed handling of hwnd.ErasePending flag
21683         * XplatUIWin32.cs:
21684           - Removed EraseWindowBackground() and SetWindowBackground() methods
21685           - We no longer call EraseWindowBackground on PaintEventStart, we 
21686             ignore the fErase flag, erasing is handled in Control in the
21687             background handler
21688         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
21689           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
21690           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
21691           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
21692           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
21693           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
21694           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
21695
21696 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
21697
21698         * PropertyGrids.cs: Get sub properties
21699         * PropertyGridView.cs: Fix drawing code
21700
21701 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
21702
21703         * ListBox.cs: Fixes 76383
21704
21705 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
21706
21707         * DataGridTextBoxColumn.cs: Sets location and size before attachment
21708         * ThemeWin32Classic.cs: Fixes border drawing and calculations
21709         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
21710
21711
21712 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
21713
21714         * ComboBox.cs: Fixes border drawing
21715
21716 2005-10-10  Miguel de Icaza  <miguel@novell.com>
21717
21718         * MimeIcon.cs: Ignore errors if the file can not be read.
21719
21720 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
21721
21722         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
21723          - Fixed border calculations
21724          - Fixed horizontal scrolling in single column listboxes
21725          - Fixed drawing issues
21726
21727 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
21728
21729         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
21730           FormBorderStyle enum
21731         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
21732           code to determine FormBorderStyles from CreateParams
21733         * Form.cs:
21734           - Fixed bug where we'd set the wrong window styles if we were
21735             not creating an MDI window
21736           - Added call to XplatUI.SetBorderStyle when form borders are set
21737         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
21738         * Hwnd.cs:
21739           - Removed obsolete edge style
21740           - Switched from BorderStyle to FormBorderStyle
21741         
21742 2005-10-10  Jackson Harper  <jackson@ximian.com>
21743
21744         * Form.cs: Use the property to get the window handle instead of
21745         accessing it directly. Prevents a null reference exception.
21746
21747 2005-10-10  Jackson Harper  <jackson@ximian.com>
21748
21749         * TreeView.cs: Don't adjust the rect given to DrawString now that
21750         our libgdiplus draws correctly.
21751
21752 2005-10-08  Jackson Harper  <jackson@ximian.com>
21753
21754         * TreeView.cs: Don't try to find the clicked on node if there are
21755         no nodes in the tree.
21756
21757 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
21758
21759         * RichTextBox.cs:
21760
21761           restore
21762
21763 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
21764
21765         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
21766           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
21767           ErrorProvider.cs:
21768           Use ResPool for brushes and dispose System.Drawing objects that
21769           are not used anymore.
21770
21771 2005-10-07  Jackson Harper  <jackson@ximian.com>
21772
21773         * MdiChildContext.cs: Use the new borders instead of drawing them
21774         ourselves.
21775
21776 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
21777
21778         * Calling UpdateBounds after changing the window's BorderStyle 
21779         since the style can change the ClientSize
21780
21781 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21782
21783         * Control.cs: Made PaintControlBackground virtual
21784         * Panel.cs: Overriding PaintControlBackground instead of using paint
21785           event; paint event method was interfering with 'real' users of the
21786           event.
21787
21788 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
21789
21790         * ThemeWin32Classic.cs: remove border drawing since it is handled
21791         by the base control class now and was causing double border drawing.
21792
21793 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21794
21795         * Panel.cs: Redraw our background on paint. Not a pretty solution,
21796           but it does seem to match MS behaviour. This fixes bug #75324
21797
21798 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21799
21800         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
21801           somewhat hackish looking
21802
21803 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
21804
21805         * TextBoxBase.cs:
21806           - We now accept Enter even if AcceptEnter is false, if the containing
21807             form does not have an AcceptButton configured (fixes bug #76355)
21808           - Calculations are now fixed to no longer use Width/Height, but
21809             ClientSize.Width/Height, since we now support borders (this was
21810             a result of fixing borders and therefore bug #76166)
21811           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
21812             true (fixes bug #76354)
21813         
21814 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21815
21816         * Control.cs: 
21817           - Defaulting BorderStyle and setting it in XplatUI when our window 
21818             is created
21819           - Added enum check to InternalBorderStyle setter
21820         * XplatUIX11.cs: 
21821           - Added drawing of window borders
21822           - Now properly calculates WM decorations offset for toplevel 
21823             windows (fixes bug #74763)
21824         * XplatUIWin32.cs: 
21825           - Implemented BorderStyles for windows (we're letting win32 draw 
21826             the border for us)
21827           - Fixed the signature for SetWindowLong
21828         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
21829           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
21830           setting borders
21831         * UpDownBase.cs: Remove drawing of borders, this is handled by
21832           the driver, outside the client area
21833         * ListView.cs: Removed bogus border calculations. The control should
21834           be oblivious to borders, since those are not part of the client
21835           area. 
21836         * X11DesktopColors.cs: Commented out (currently) unneeded variables
21837         * ThemeWin32Classic.cs: Removed border calculations from ListView 
21838           drawing code
21839
21840 2005-10-06  Jackson Harper  <jackson@ximian.com>
21841
21842         * MdiChildContext.cs: Clear out the old virtual position remove
21843         all the unneeded calls to CreateGraphics.
21844
21845 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
21846
21847         * TextControl.cs: Use proper color for highlighted text; fixes #76350
21848
21849 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
21850
21851         * Form.cs: 
21852           - Added loading and setting of our new default icon
21853           - Only set icon if window is already created
21854
21855 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21856
21857         * Label.cs:
21858           - Do not explicitly set the foreground and background colors, to
21859             allow inheriting from parents (fixes #76302)
21860           - Use Control's InternalBorderStyle property to deal with borders
21861
21862 2005-10-06  Jackson Harper  <jackson@ximian.com>
21863
21864         * MdiChildContext.cs: Use the new xplatui function to draw a
21865         reversible rect.
21866
21867 2005-10-06  Jackson Harper  <jackson@ximian.com>
21868
21869         * Form.cs: Add the parent before creating the child context cause
21870         we need the parent when setting up the child.
21871
21872 2005-10-06  Jackson Harper  <jackson@ximian.com>
21873
21874         * FolderBrowserDialog.cs: redo the tree population code so a
21875         second thread isn't used. Should be a lot faster and more stable
21876         now.
21877
21878 2005-10-05  Jackson Harper  <jackson@ximian.com>
21879
21880         * TreeView.cs: There are no expand/collapse boxes if the node has
21881         no children.
21882
21883 2005-10-05  Jackson Harper  <jackson@ximian.com>
21884
21885         * X11DesktopColors.cs: Get menu colours for the gtk theme.
21886
21887 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
21888
21889         * FileDialog.cs: Fix InitialDirectory
21890
21891 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
21892
21893         * ComboBox.cs:
21894                 - Fixes changing between styles
21895                 - Fixes simple mode
21896                 - Fixes last item crashing when navigating with keyboard
21897
21898 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
21899
21900         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
21901
21902 2005-10-05  Jackson Harper  <jackson@ximian.com>
21903
21904         * TreeView.cs: If updating the root node do a full refresh.
21905         * TreeNode.cs: The root node should be expanded by default. Also
21906         added a utility prop to tell if we are the root node.
21907         * TreeNodeCollection.cs: Only refresh if the node we are being
21908         added to is expanded. Also added a comment on a potential
21909         optimization.
21910         
21911 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
21912
21913         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
21914           in dispose method. Fixes #76330
21915
21916 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
21917
21918         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
21919
21920                 - Implements vertical and horizontal scrolling using XplatUI
21921                 - Fixes keyboard navagation
21922                 - Fixes EnsureVisible
21923                 - Drawing fixes
21924                 - Handles and draws focus properly
21925
21926
21927 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
21928
21929         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
21930           Create handle. NET_2_0: Destroy handle when value is null.
21931
21932 2005-10-03  Jackson Harper  <jackson@ximian.com>
21933
21934         * ScrollBar.cs: My last scrollbar patch was broken. This is a
21935         revert and a new patch to prevent the thumb from refreshing so
21936         much.
21937
21938 2005-10-02  Jackson Harper  <jackson@ximian.com>
21939
21940         * ScrollBar.cs: Don't update position if it hasn't actually
21941         changed. This occurs when you hold down the increment/decrement
21942         buttons and the thumb gets to the max/min.
21943
21944 2005-10-01  Jackson Harper  <jackson@ximian.com>
21945
21946         * Form.cs:
21947         * MdiChildContext.cs:
21948         * MdiClient.cs: Implement ActiveMdiChild in Form.
21949
21950 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
21951
21952         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
21953
21954 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
21955
21956         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
21957           be found
21958
21959 2005-09-30  Jackson Harper  <jackson@ximian.com>
21960
21961         * ListBox.cs: Don't do a full refresh unless some data has
21962         actually changed.
21963
21964 2005-09-30  Jackson Harper  <jackson@ximian.com>
21965
21966         * TreeView.cs: Make sure that the checkboxes size is factored in
21967         even when not visible.
21968
21969 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
21970
21971         * FileDialog.cs: Fix Jordi's build break
21972
21973 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
21974
21975         * FileDialog.cs: 
21976                 - Use standard the Windows colours for the combobox as espected
21977                 - Dispose objects that use resouces when no longer need them
21978
21979 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
21980
21981         * X11DesktopColors.cs: Initial incomplete implementation
21982         * XplatUIX11.cs: Added call to initialize X11DesktopColors
21983
21984 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
21985
21986         * Theme.cs: 
21987           - Switched Theme color names to match the names defined in 
21988             System.Drawing.KnownColors. Life's hard enough, no need to make 
21989             it harder.
21990           - Added setters to all theme color properties so themes can set
21991             their color schemes. The setters also propagate the color changes
21992             to System.Drawing.KnownColors via reflection
21993         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
21994           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
21995           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
21996           use the new, more logical theme color names
21997         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
21998           post-NT colors
21999         * ThemeWin32Classic.cs:
22000           - Removed code to set the old classic Windows colors. Instead it
22001             now relies on the colors returned by System.Drawing.KnownColors
22002             which will be either modern static colors (Unix) or colors
22003             read from the user's configuration (Win32)
22004           - Updated to use the new, more logical theme color names
22005           - Switched DataGrid drawing code to use only Theme colors instead of
22006             a mix of System.Drawing.KnownColors and Theme colors
22007           - DrawFrameControl(): Removed code that fills the button area, the
22008             fill would overwrite any previous fill done by a control. This
22009             fixes bug #75338 
22010           - Added DrawReversibleRectangle() stub
22011         * ScrollableControl.cs: Set visible state to false when scrollbars
22012           are removed (pdn fix)
22013         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
22014           DrawReversibleRectangle() method to allow drawing primitive 
22015           'rubber bands'
22016         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
22017
22018 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22019
22020         * ImageList.cs: Add(Icon): Create handle.
22021
22022 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
22023
22024         * ListView.cs:
22025         * ThemeWin32Classic.cs:
22026                 - Fixes detail mode
22027                 - Sets clippings
22028                 - Issues with drawing
22029
22030 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22031
22032         * ImageList.cs: Moved RecreateHandle back to ImageList as event
22033           source has to be the ImageList.
22034
22035 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22036
22037         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
22038
22039 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22040
22041         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
22042
22043 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22044
22045         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
22046
22047 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
22048         * GridItem.cs: Fixed TODOs
22049         * GridItemCollection.cs: Added ICollection interface
22050
22051 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22052
22053         * ImageList.cs: Resize icons when needed.
22054
22055 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
22056
22057         * ListViewItem.cs
22058                 - Fixes GetBounds and returns on screen rects
22059         * ListView.cs:
22060                 - Fixes vertical and horzintal scrolling of items
22061         * ThemeWin32Classic.cs:
22062                 - Fixes drawing
22063                 
22064 2005-09-29  Raja R Harinath  <harinath@gmail.com>
22065
22066         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
22067
22068 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
22069
22070         * ImageList.cs: Added comments about handle creation. Moved Handle,
22071           HandleCreated and OnRecreateHandle implementations to ImageCollection.
22072           Handle is created in Add methods.
22073
22074 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
22075          
22076         * DataGridDrawingLogic.cs: 
22077                 - Takes rows into account on Colum calculations
22078                 - Returns the column when clickig
22079         * DataGrid.cs:
22080                 - Fixes default HitTestInfo values
22081                 - Fixes HitTestInfo.ToString
22082                 - Fixes ResetBackColor          
22083         
22084 2005-09-28  Jackson Harper  <jackson@ximian.com>
22085
22086         * MdiChildContext.cs: Obey rules for fixed sized windows (no
22087         sizing or cursor changes). Also added some temp code to draw the
22088         titlebars text (Makes dev a little easier).
22089
22090 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
22091
22092         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
22093
22094 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
22095          
22096         * ListBox.cs: Fixes bug 76253
22097
22098 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
22099
22100         * ImageList.cs: Added comments about the current implementation. Added
22101           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
22102           Format32bppArgb to preserve transparency and can use Graphics.FromImage
22103           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
22104           with Bitmap.LockBits for better performance. Revised the whole file to
22105           match MS.NET behaviour and provide better performance. Non-public
22106           interface members are calling public members even when they throw
22107           NotSupportedException for better maintainability. Moved ColorDepth,
22108           ImageSize, ImageStream and TransparentColor implementations to
22109           ImageCollection for better performance as these properties are not used
22110           by ImageList.
22111         * ImageListStreamer.cs: Added a new internal constructor that takes an
22112           ImageList.ImageCollection and serializes Images based on
22113           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
22114           match ImageList property name.
22115
22116 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
22117
22118         * ListBox.cs: Fixes IndexFromPoint for last item
22119
22120 2005-09-27  Jackson Harper  <jackson@ximian.com>
22121
22122         * Form.cs: Set the position of new mdi children correctly.
22123
22124 2005-09-27  Jackson Harper  <jackson@ximian.com>
22125
22126         * MdiClient.cs: New mdi children need to be added to the back of
22127         the controls collection so the zorder is set correctly. Also add a
22128         count of all the child windows that have been created.
22129
22130 2005-09-27  Jackson Harper  <jackson@ximian.com>
22131
22132         * Form.cs (CreateParams): Setup MDI forms correctly.
22133
22134 2005-09-27  Jackson Harper  <jackson@ximian.com>
22135
22136         * MdiChildContext.cs:
22137         * MonthCalendar.cs:
22138         * UpDownBase.cs:
22139         * ListBox.cs:
22140         * ListView.cs:
22141         * TextBoxBase.cs:
22142         * TreeView.cs:
22143         * ScrollableControl.cs:
22144         * ComboBox.cs: Add implicit controls using the new implict control
22145         functionality in ControlCollection. Also try to block multiple
22146         control add in a suspend/resume layout to save some cycles.
22147         
22148 2005-09-27  Jackson Harper  <jackson@ximian.com>
22149
22150         * Control.cs: Add functionality to the controls collection to add
22151         'implicit controls' these are controls that are created by the
22152         containing control but should not be exposed to the user. Such as
22153         scrollbars in the treeview.
22154         * Form.cs: The list var of the ControlsCollection is no longer
22155         available because of the potential of implicit controls getting
22156         ignored by someone accessing the list directly.
22157
22158 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
22159
22160         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
22161           loose it's parent. (Fixed bug introduced in r49103 when we added
22162           setting the child parent to null on Remove)
22163
22164 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
22165
22166         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
22167         * Splitter.cs: Added missing attributes for BorderStyle property.
22168         * TextBoxBase.cs: Marked Calculate* methods internal.
22169         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
22170         MS.NET.
22171
22172 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
22173          
22174         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
22175
22176 2005-09-25  Jackson Harper  <jackson@ximian.com>
22177
22178         * TreeView.cs: Update the node bounds correctly regardless of
22179         whether the node is visible.
22180
22181 2005-09-25  Jackson Harper  <jackson@ximian.com>
22182
22183         * ImageList.cs: Don't dispose the image after it is added to the
22184         image list. Only reformat images that need to be resized.
22185
22186 2005-09-25  Jackson Harper  <jackson@ximian.com>
22187
22188         * ImageList.cs: Don't set the format when changing the image.
22189
22190 2005-09-25  Jackson Harper  <jackson@ximian.com>
22191
22192         * TreeView.cs: We can't just assume the node has a font. Use the
22193         treeviews font if no node font is available.
22194
22195 2005-09-25  Jackson Harper  <jackson@ximian.com>
22196
22197         * TreeView.cs: Allow the scrollbars to be reset with negative
22198         values.
22199         - Don't add scrollbars to negative sized windows.
22200
22201 2005-09-23  Jackson Harper  <jackson@ximian.com>
22202
22203         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
22204         old Mono.Posix. Also remove some stray code that shouldn't have
22205         been committed.
22206
22207 2005-09-23  Jackson Harper  <jackson@ximian.com>
22208
22209         * TreeView.cs: Attempt at proper sizing of the horizontal
22210         scrollbar. Also don't resize the scrollbars unless they are
22211         visible.
22212
22213 2005-09-23  Jackson Harper  <jackson@ximian.com>
22214
22215         * TreeView.cs: We don't need to expand the invalid area when the
22216         selection changes, as this is all drawn in the node's bounding
22217         box. The area needs to be expanded (previous typo was contracting
22218         it) when the focus rect moves.
22219
22220 2005-09-23  Jackson Harper  <jackson@ximian.com>
22221
22222         * TreeView.cs: Display the selection box under the correct
22223         circumstances. We were rendering white text with no selection box
22224         before.
22225
22226 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
22227
22228         * TextControl.cs(Split): Now updates selection start/end if it points 
22229           into a line that's being split. Fixes a FIXME and bug #75258
22230
22231 2005-09-23  Jackson Harper  <jackson@ximian.com>
22232
22233         * Binding.cs:
22234         * ListControl.cs: Don't use the path when retrieving binding
22235         managers from the binding context. My bat sense tells me that the
22236         path is only used on insertion.
22237
22238 2005-09-22  Jackson Harper  <jackson@ximian.com>
22239
22240         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
22241
22242 2005-09-22  Jackson Harper  <jackson@ximian.com>
22243
22244         * Splitter.cs: There are special cursors used for splitting.
22245         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
22246
22247 2005-09-22  Jackson Harper  <jackson@ximian.com>
22248
22249         * Splitter.cs: Change the cursor appropriately when the splitter
22250         is moused over, so the user actually knows there is a splitter
22251         there.
22252
22253 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
22254
22255        * Label.cs : Fix ToString method to give same output as MS.NET
22256
22257 2005-09-22  Jackson Harper  <jackson@ximian.com>
22258
22259         * TreeView.cs: Create the scrollbars when the handle is created
22260         and add them right away, just make them invisble. Also account for
22261         the window being shrunk vertically to the point that the vert
22262         scrollbar needs to be added.
22263         - Remove some 0.5 adjustments to get around anti aliasing issues.
22264         
22265 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
22266          
22267         * MainMenu.cs: Fixes default value
22268         * MenuItem.cs: Fixes default value
22269
22270 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
22271
22272         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
22273
22274 2005-09-21  Jackson Harper  <jackson@ximian.com>
22275
22276         * Control.cs: Don't try to set the border style on the window if
22277         it hasn't been created. When the window is created the border
22278         style will be used.
22279
22280 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
22281
22282         * Control.cs (Update): Don't call XplatUI if we don't have a
22283           window handle yet
22284
22285 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
22286
22287         * ContainerControl.cs: Instead of throwing an exception, print
22288           a one-time warning about Validate not being implemented
22289         * XplatUIWin32.cs: Removed debug output
22290
22291 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
22292
22293         * Control.cs: Only set XplatUI background if we expect the windowing
22294           system to handle the background. This stops controls that draw their
22295           own background from flickering
22296
22297         * XplatUIX11.cs: Support custom visuals and colormaps for window 
22298           creation. This allows, amongst other things, using MWF X11 windows 
22299           with OpenGL.
22300
22301 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
22302
22303         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
22304           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
22305           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
22306           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
22307           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
22308           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
22309           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
22310           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
22311           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
22312           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
22313           GridColumnStylesCollection.cs, 
22314           IDataGridColumnStyleEditingNotificationService.cs,
22315           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
22316           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
22317           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
22318           TreeNodeCollection.cs, AmbientProperties.cs, 
22319           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
22320           DataObject.cs, ErrorProvider.cs, Splitter.cs,
22321           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
22322           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
22323           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
22324           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
22325           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
22326           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
22327           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
22328           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
22329           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
22330           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
22331           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
22332           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
22333           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
22334           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
22335           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
22336           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
22337           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
22338           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
22339           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
22340           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
22341           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
22342           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
22343           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
22344           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
22345           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
22346           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
22347           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
22348           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
22349           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
22350           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
22351           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
22352           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
22353           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
22354           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
22355           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
22356
22357 2005-09-21  Jackson Harper  <jackson@ximian.com>
22358
22359         * TreeNode.cs: Call Before/After Expand not Collapse when
22360         expanding.
22361
22362 2005-09-20  Jackson Harper  <jackson@ximian.com>
22363         
22364         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
22365
22366 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
22367          
22368         * ListViewItem.cs:
22369                 - Fixes bug 76120
22370                 - Fixes proper storing of subitems
22371                 - Fixes not updated items
22372
22373 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
22374
22375         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
22376           things if our window handle isn't created yet. Also disabled 
22377           debug for TextBoxBase
22378
22379 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
22380
22381         * MenuAPI.cs: Remove filtering of events to allow menu usage
22382
22383 2005-09-20  Miguel de Icaza  <miguel@novell.com>
22384
22385         * Cursor.cs: Allow null to be passed to Cursor.Current.
22386
22387 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
22388
22389         * ThemeWin32Classic.cs:
22390           - Change some private methods/fields to protected virtual so that 
22391             they can be accessed and overriden in derived classes
22392           - First refactoring of some methods. Derived themes now don't 
22393             need to duplicate the complete code from ThemeWin32Classic
22394         * ThemeNice.cs:
22395           - Added nice StatusBar
22396           - Derive from ThemeWin32Classic and not Theme
22397           - Removed duplicate ThemeWin32Classic code
22398
22399 2005-09-20  Miguel de Icaza  <miguel@novell.com>
22400
22401         * Control.cs (ControlCollection.Add): If the value null is passed
22402         the control is ignored. 
22403
22404         Optimize this loop.
22405
22406 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
22407
22408         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
22409           PostQuitMessage state.
22410         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
22411
22412 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
22413
22414         * Application.cs: Our constructor will never get called, move 
22415           initialization to fields; fixes bug #75933
22416
22417 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
22418
22419         * FileDialog.cs :
22420                 - Allow files to be selected properly using file name
22421                 combo box.
22422                 - Add ability to change diretory (absolute / relative)
22423                 using file name combo box.
22424
22425 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
22426          
22427         * ListBox.cs: 
22428                 - Fixes Multicolumn listboxes item wrong calculations
22429                 - Allows to click when only one item is in the listbox
22430                 - Fixes crash when no items using keyboard navigation
22431
22432 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
22433
22434         * ComboBox.cs: Reverted almost everything from the latest patch which
22435           broke ComboBox
22436
22437 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
22438         
22439         * ToolTip.cs:
22440                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
22441         * ComboBox.cs:
22442                 - When DropDownStyle is Simple, it does not show scrollbar 
22443                 to the last item of the list.
22444                 - When DropDownStyle is Simple, it crashed when the list was 
22445                 scrolled down with the down cursor key.
22446                 - Fixed a bug that when DropDownStyle is DropDownList, the 
22447                 selected item was not shown.
22448                 - The position of the selected item was not preserved when 
22449                 the next dropdown happened.
22450         * ThemeWin32Classic.cs:
22451                 - Items were wrapped at the right end.
22452         * CheckedListBox.cs:
22453                 - Fixed Add method
22454         * ListBox.cs:
22455                 - Items should be fully shown.
22456                 - When resizing and vertical scrollbar disappeared, the item 
22457                 of index 0 should be on the top of the list.
22458                 - GetItemRectangle should consider the size of ver. scrollbar
22459         * StatusBar.cs:
22460                 - SizingGrip area should not be allocated when it is not 
22461                 displayed.
22462                 - Now it reflects MinWidth of the containing panel and 
22463                 fixed a crash that happens when its width becomes so small.
22464
22465 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
22466
22467         * CheckedListBox.cs: Fixes bug 76028
22468         * ListBox.cs: Fixes bug 76028
22469
22470 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
22471
22472         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
22473         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
22474
22475 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
22476
22477         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
22478
22479 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
22480
22481         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
22482
22483 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
22484
22485         * IRootGridEntry.cs: Added
22486         * PropertyGridCommands.cs: Added
22487         * PropertiesTab.cs: Added missing methods and property
22488         * PropertyGridView.cs: Made class internal
22489         * PropertyGridTextBox.cs: Made class internal
22490
22491 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
22492
22493         * MimeIcon.cs: Try to check some other environment variables
22494           if "DESKTOP_SESSION" returns "default"
22495
22496 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
22497
22498         * ThemeNice.cs: Corrected background colors (e.g. menus)
22499         * ColorDialog.cs: Use correct background colors for controls
22500
22501 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
22502
22503         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
22504
22505 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
22506
22507         * RichTextBox.cs: Added initial implementation
22508         * lang.cs: Removed. Was accidentally checked in long time ago
22509         * TODO: Removed. Contents were obsolete
22510
22511 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
22512                                                                                 
22513         * PropertiesTab.cs : Added
22514
22515 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
22516                                                                                 
22517         * PropertyGrid.cs : Update
22518         * PropertyGridView.cs : Update
22519         * System.Windows.Forms.resx : Added images and strings
22520
22521 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
22522
22523         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
22524  
22525 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
22526
22527         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
22528           a busy loop right after the Ungrab the X11 display is otherwise 
22529           blocked
22530
22531 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
22532
22533         * ThemeWin32Classic.cs: Optimise the use of clipping
22534
22535 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
22536
22537         * DataGrid.cs: fixes recursion bug
22538
22539 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
22540
22541         * ThemeNice.cs: 
22542           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
22543           - Cleanup
22544
22545 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
22546
22547         * ThemeNice.cs: Draw nice ProgressBars
22548
22549 2005-09-01  Miguel de Icaza  <miguel@novell.com>
22550
22551         * VScrollBar.cs: Another buglet found by Aaron's tool. 
22552
22553         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
22554         bug finder.
22555
22556 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
22557
22558         * ThemeNice.cs:
22559           - Added nicer menu drawing
22560           - Updated DrawTab
22561           - some refactoring
22562
22563 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
22564
22565         * CreateParams.cs (ToString): Made output match MS
22566         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
22567             handle is already created (to avoid forcing window creation)
22568         * XplatUIX11.cs: Set window text to caption after creating window,
22569           in case Text was set before window was created
22570         * Form.cs: Use this.Text instead of a static string as caption
22571
22572 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
22573
22574         * NotifyIcon.cs: Don't set the window to visible; this screws
22575           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
22576           OnPaint without a bitmap)
22577         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
22578           happen very often anyway; we could add the check to the WM_PAINT 
22579           event generation code
22580
22581 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
22582
22583         * NotifyIcon.cs: Fill the icon area with a background color, to 
22584           avoid 'residue' when transparent icons are drawn
22585         * XplatUIX11.cs:
22586           - Handle whole_window == client_window when destroying windows
22587           - SystrayAdd(): Set client_window to whole_window value to
22588             get mouse and other events passed to NotifyIcon
22589
22590 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
22591
22592         * Form.cs: Set proper default for Opacity property
22593         * NotifyIcon.cs:
22594           - ShowSystray(): Don't bother creating telling the OS
22595             about the systray item if no icon is provided
22596           - Now handles WM_NCPAINT message to deal with whole/client window
22597             split
22598           - Create window as visible to not get caught by Expose optimization
22599         * Hwnd.cs: Removed debug message
22600         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
22601           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
22602             PaintEventStart/End to use new client argument
22603         * TextBoxBase.cs:
22604           - Commented out debug messages
22605           - Switched PaintEventStart/End to use new client argument
22606         * XplatUI.cs: Added client window bool to PaintEventStart()/
22607           PaintEventEnd() calls, to support drawing in non-client areas
22608         * XplatUIDriver.cs: 
22609           - Added client window bool to PaintEventStart()/PaintEventEnd() 
22610             calls, to support drawing in non-client areas
22611           - Added conditional compile to allow using MWF BeginInvoke 
22612             on MS runtime
22613         * XplatUIX11.cs:
22614           - Added some conditional debug output
22615           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
22616             whole/client window split
22617           - Implemented handling of client argument to PaintEventStart()/End()
22618         * Control.cs:
22619           - Throw exception if BeginInvoke() is called and the window handle
22620             or one of the window's parent handles is not created
22621           - Added conditional compile to allow using MWF BeginInvoke on
22622             MS runtime
22623           - get_Parent(): Only sets parent if handle is created. This avoids
22624             forcing window handle creation when parent is set.
22625           - Now fires Layout and Parent changed events in proper order
22626           - Switched to use Handle instead of window.Handle for Z-Order setting,
22627             the get_Parent() patch above causes us to possibly get null for 'window'
22628           - Implemented handling of client argument to PaintEventStart()/End()
22629           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
22630             default handling)
22631           - Now sends a Refresh() to all child windows when Refresh() is called
22632
22633 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
22634
22635         * Form.cs: Added (non-functional) Opacity property
22636         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
22637
22638 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
22639         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
22640           use export MONO_THEME=nice to activate it.
22641           Currently supported controls:
22642           - Button
22643           - ComboBox
22644           - ScrollBar
22645           - TabControl (TabAlignment.Top only, other will follow)
22646         * ThemeEngine.cs: Add theme nice
22647         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
22648           if enabled
22649
22650 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
22651
22652         * Splitter.cs: Resize docked control and its neighbor.
22653
22654 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
22655         -- Making Windows with Menus layout correctly --
22656         * Form.cs : The first leg of the fix
22657                 Menu setter - adjust Client Size as needed to make space for the menu
22658                 SetClientSizeCore - doesn't call base version to be able to pass the 
22659                         menu handle to XplatUI.CalculateWindowRect
22660         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
22661         * XplatUIX11.cs: The critical second leg of the fix
22662                 GetWindowPos needs to use a recalculated client_rect
22663                 so that resizing the window doesn't break layout of child controls. 
22664                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
22665                 Lots of \t\n killed
22666
22667 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
22668
22669         * Label.cs: Now properly recalculates width and height on Font and Text
22670           changes if AutoSize is set
22671
22672 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
22673         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
22674
22675 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
22676
22677         * ImageList.cs: Makes ToString method compatible with MS
22678
22679 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
22680
22681         * MenuAPI.cs: fixes bug 75716
22682
22683 2005-08-11 Umadevi S <sumadevi@novell.com>
22684         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
22685
22686 2005-08-11 Umadevi S <sumadevi@novell.com>
22687         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
22688
22689 2005-08-10  Umadevi S <sumadevi@novell.com>
22690         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
22691
22692 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
22693
22694         * Menu.cs: fixes bug 75700
22695         * MenuAPI.cs: fixes navigation issues
22696
22697 2005-08-09  Umadevi S <sumadevi@novell.com>
22698         * CheckedListBox.cs - simple fix for GetItemChecked.
22699
22700 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
22701
22702         * ComboBox.cs: Serveral fixes
22703         * ListBox.cs: Serveral fixes
22704
22705 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
22706
22707         * ComboBox.cs: Fixes FindString methods and GetItemHeight
22708         * ListBox.cs: Fixes FindString methods
22709
22710 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
22711
22712         * DataGrid.cs: fixes bugs exposed by new tests
22713
22714 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
22715
22716         * Mime.cs: Compile Mono assembly references only if compiling
22717           with Mono (Allows to build with VS.Net again)
22718
22719 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
22720
22721         * Control.cs (PaintControlBackground): Draw background image
22722         corrrectly.
22723         (CheckForIllegalCrossThreadCalls): Stubbed.
22724         
22725         * Form.cs (OnCreateControl): Center when should be centered.
22726         
22727         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
22728
22729 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
22730
22731         * Binding.cs: Binding to properties should be case unsensitive
22732
22733 2005-07-18 vlindos@nucleusys.com
22734
22735         * DataGrid.cs: fixes setmember order
22736
22737 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
22738
22739         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
22740         * FileDialog.cs: FileDialog is now resizable and uses the new
22741           MimeIconEngine
22742
22743 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
22744
22745         * DataGridTextBoxColumn.cs: default value
22746         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
22747         * GridTableStylesCollection.cs: fixes checking MappingName
22748         * DataGridDrawingLogic.cs: fixes drawing logic issues
22749         * DataSourceHelper.cs: rewritten to make compatible with more data sources
22750         * DataGrid.cs: fixes    
22751
22752 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
22753
22754         * MimeGenerated.cs: Use case sensitive comparer for
22755           NameValueCollections
22756
22757 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
22758
22759         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
22760         * ThemeWin32Classic.cs: bug fixes, code refactoring
22761         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
22762         * DataGrid.cs: bug fixes, code refactoring
22763         * DataGridTextBox.cs: bug fixes, code refactoring
22764         * DataGridColumnStyle.cs:  bug fixes, code refactoring
22765         * Theme.cs:  bug fixes, code refactoring
22766
22767 2005-07-01  Peter Bartok  <pbartok@novell.com> 
22768
22769         * TextControl.cs: Quick fix for the reported crash on ColorDialog
22770           and other text box usage
22771
22772 2005-07-01  Jackson Harper  <jackson@ximian.com>
22773
22774         * TabControl.cs: Make sure the bottom of the tab covers the pages
22775         border.
22776
22777 2005-06-30  Peter Bartok  <pbartok@novell.com> 
22778
22779         * Form.cs (ShowDialog): Assign owner of the dialog
22780         * TextBoxBase.cs: Always refresh caret size when deleting, caret
22781           might have been moved to a tag with different height
22782
22783 2005-06-30  Jackson Harper  <jackson@ximian.com>
22784
22785         * Form.cs: Don't create an infinite loop when setting focus
22786         * MenuItem.cs: Don't dirty the parents if we don't have any
22787
22788 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
22789
22790         * LibSupport.cs: Rename
22791
22792 2005-06-29  Peter Bartok  <pbartok@novell.com>
22793
22794         * TextBoxBase.cs: Re-align caret after deleting a character
22795         * TextControl.cs:
22796           - DeleteChars(): Ensure that tag covers the provided position
22797           - StreamLine(): Drop reference for dropped tag
22798
22799 2005-06-29  Peter Bartok  <pbartok@novell.com> 
22800
22801         * TextControl.cs: 
22802           - Selections now work properly, anchoring at the initial location
22803             and properly extending in either direction (SetSelectionToCaret(),
22804             SetSelectionStart() and SetSelectionEnd())
22805           - No longer redraws the whole control on selection change, now
22806             calculates delta between previous and new selection and only
22807             invalidates/redraws that area
22808           - Fixed FindPos() math off-by-one errors
22809           - Changed DeleteChars() to verify the provided tag covers the
22810             provided position, selections may have a tag that doesn't cover
22811             the position if the selection is at a tag border
22812           - Fixed off-by-one errors in DeleteChars()
22813           - Added missing streamlining check in DeleteChars() to remove
22814             zero-length tags
22815           - Implemented Invalidate() method, now properly calculates exposures
22816             between two given lines/positions
22817           - Implemented SetSelection()
22818           - Obsoleted and removed FixupSelection()
22819           - Improved RecalculateDocument() logic, removing code duplication
22820
22821 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22822
22823         * LibSupport.cs: changes to match different input/output arguments.
22824
22825 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22826
22827         * LibSupport.cs: added libsupport.so init routine.
22828
22829 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
22830         
22831         * ControlBindingsCollection.cs
22832                 - Throws an exception on null datasource when adding
22833                 - Checks for duplicated bindings when adding
22834
22835 2005-06-28  Jackson Harper  <jackson@ximian.com>
22836
22837         * TreeView.cs (OnKeyDown): Support left and right properly
22838         (navigates as well as expanding and collapsing.
22839         - Add support for Multiply, this expands all the selected nodes
22840         children.
22841         - Fix some tabbing.
22842
22843 2005-06-28  Jackson Harper  <jackson@ximian.com>
22844
22845         * TreeView.cs: Implement keyboard navigation, currently supports,
22846         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
22847         support for toggling checkboxes with the space bar.
22848
22849 2005-06-28  Jackson Harper  <jackson@ximian.com>
22850
22851         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
22852         tree.
22853
22854 2005-06-28  Jackson Harper  <jackson@ximian.com>
22855
22856         * TreeView.cs: Add missing event.
22857
22858 2005-06-27  Peter Bartok  <pbartok@novell.com> 
22859
22860         * TextControl.cs:
22861           - Made line ending size configurable (now allows for counting 
22862             lineendings as \n or \r\n)
22863           - Added margin to viewport to keep caret visible on right side
22864           - Fixed translation routines for line/pos to documentpos to consider
22865             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
22866           - Fixed some line-endings to be unix style
22867           - Fixed Document.FormatText to perform it's calculations 1-based
22868           - Added descriptions for a few methods that might otherwise get 
22869             used wrong
22870           - Added NOTE section with some basic conventions to remember at 
22871             the top of the file
22872           - Major fixup for RichTextBox selection drawing:
22873             * Fixed crashes when multiple tags on a single line were selected
22874             * fixed selection box drawing not overlaying text
22875             * fixed bogus offset calculation for tags not starting at index 1
22876             * Switched behaviour from using multiple Substrings of a 
22877               StringBuilder.ToString() to using multiple 
22878               StringBuilder.ToString(start, length) statements, hoping this is
22879               faster (kept original version commented out in the code, in case
22880               original version was faster)
22881         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
22882           alignment != Left
22883         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
22884           call it as well
22885
22886 2005-06-27  Jackson Harper  <jackson@ximian.com>
22887
22888         * TabControl.cs: Move to the left and right with the arrow
22889         keys. These keys don't cycle beyond first and last like
22890         tab. Refresh all the tabs when scrolling them to the left or
22891         right.
22892
22893 2005-06-27  Jackson Harper  <jackson@ximian.com>
22894
22895         * TabControl.cs:
22896           - ToString: Added method
22897           - CreateParams: Remove TODO and comment
22898           - OnKeyDown: Cycle through bounds properly.
22899           - SelectedIndex: Scroll to the right or left if we need to
22900           display the newly selected tab.
22901
22902 2005-06-23  Jackson Harper  <jackson@ximian.com>
22903
22904         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
22905         set.
22906
22907 2005-06-23  Jackson Harper  <jackson@ximian.com>
22908
22909         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
22910         CTRL-SHIFT-TAB, and HOME, END are there any others?
22911
22912 2005-06-23  Jackson Harper  <jackson@ximian.com>
22913
22914         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
22915
22916 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
22917         
22918         * DataGridTextBoxColumn.cs: fixes and enhancements
22919         * ThemeWin32Classic.cs: fixes and enhancements
22920         * DataGridBoolColumn.cs:  fixes and enhancements
22921         * DataGridDrawingLogic.cs:  fixes and enhancements
22922         * CurrencyManager.cs: fixes and enhancements
22923         * DataGrid.cs: fixes and enhancements
22924         * DataGridColumnStyle.cs:  fixes and enhancements
22925
22926 2005-06-22  Jackson Harper  <jackson@ximian.com>
22927
22928         * TabControl.cs: Add some missing methods that just call into the
22929         base. Make the TabPageCollection's IList interface behave in the
22930         same manner as the MS implementation.
22931
22932 2005-06-22  Peter Bartok  <pbartok@novell.com> 
22933
22934         * TextControl.cs: Added sanity check
22935         * TextBoxBase.cs: 
22936           - Fixed wrapping behaviour, don't set wrap on single line controls
22937             (this fixes the breakage of colordialog introduced in an earlier
22938              checkin)
22939           - Added rudimentary support for autoscrolling right-aligned controls
22940             (still needs fixing, also, center alignment scroll is missing)
22941
22942 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
22943         
22944         * ScrollBar.cs: Fixes thumbpos on Maximum values
22945
22946 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
22947         
22948         * PropertyGridView.cs: Pass context information to UITypeEditors 
22949
22950 2005-06-21  Peter Bartok  <pbartok@novell.com> 
22951
22952         * TextBoxBase.cs:
22953           - Now calling PositionCaret with absolute space coordinates
22954           - Enabled vertical scrolling
22955           - Better tracking of scrollbar changes, tied into WidthChange
22956             event
22957           - Improved cursor tracking
22958           - Removed debug output
22959         * TextControl.cs:
22960           - PositionCaret coordinates are now works in absolute space, not 
22961             the canvas
22962           - Improved tracking of document size
22963           - Added events for width and height changes
22964
22965 2005-06-21  Peter Bartok  <pbartok@novell.com>
22966
22967         * Form.cs: Set focus to active control when form is activated
22968         * TextControl.cs: 
22969           - Added word-wrap functionality to RecalculateLine() 
22970           - Added some short function descriptions for VS.Net to aid in
22971             writing dependent controls
22972           - Added Caret property, returning the current coords of the caret
22973           - Added ViewPortWidth and ViewPortHeight properties
22974           - Added Wrap property
22975           - Added CaretMoved event
22976           - Removed some old debug code
22977           - Split() can now create soft splits
22978           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
22979           - Added method to format existing text
22980           - Fixed size/alignment calculations to use viewport
22981           - RecalculateDocument now can handle changing line-numbers while
22982             calculating lines
22983
22984         * TextBox.cs:
22985           - Added some wrap logic, we don't wrap if alignment is not left
22986           - Added casts for scrollbar var, base class switched types to
22987             also support RichTextBoxA
22988           - Implemented handling of scrollbar visibility flags
22989
22990         * TextBoxBase.cs:
22991           - Switched scrollbars type to RichTextBoxScrollBars to support
22992             RichTextBox
22993           - Added tracking of canvas width/height
22994           - Switched scrollbars to be not selectable (to keep focus on text)
22995           - Added central CalculateDocument() method to handle all redraw
22996             requirements
22997           - Added ReadOnly support
22998           - Added WordWrap support
22999           - Fixed handling of Enter key (we now treat it as a DialogKey)
23000           - Fixed caret positioning when h or v scroll is not zero
23001           - Fixed placing/generation of vertical scrollbar
23002           - Added CalculateScrollBars() method to allow updating scrollbar
23003             limits and visibility
23004           - Fixed handling of horizontal scroll
23005           - Added handling of vertical scroll
23006           - Implemented auto-'jump' when caret moves to close to a left or
23007             right border and there is text to be scrolled into view (currently
23008             there's the potential for a stack overflow, until a bug in
23009             scrollbar is fixed)
23010
23011 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
23012         
23013         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
23014
23015 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
23016
23017         * Mime.cs:
23018         - added inodes.
23019         - return application/x-zerosize for files with size zero
23020           (if no extension pattern matches).
23021         - check matches collection for strings too.
23022         - return only the first mime type if the name value
23023           collection has more than one mime type.
23024
23025 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
23026         
23027         * PropertyGrid.cs: Cleaned up some TODOs
23028         * PropertyGridView.cs: Added support for UITypeEditors
23029
23030 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
23031         
23032         * DataGrid.cs: clears cached value
23033
23034 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
23035
23036         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
23037         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
23038         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
23039         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
23040         
23041 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
23042
23043         * ThemeWin32Classic.cs: fixes colour
23044
23045 2005-06-15  Peter Bartok  <pbartok@novell.com>
23046
23047         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
23048         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
23049         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
23050         * Control.cs: Added some MWFCategory and MWFDescription attributes
23051         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
23052
23053 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
23054
23055         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
23056         usage
23057
23058 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
23059
23060         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
23061         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
23062         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
23063         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
23064         * DataGrid.cs: default datagrid settings for Default Styles, fixes
23065         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
23066
23067 2005-06-13  Jackson Harper  <jackson@ximian.com>
23068
23069         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
23070         isn't printed when the user enables dropping. (X11 does accept
23071         drops).
23072         
23073 2005-06-13  Jackson Harper  <jackson@ximian.com>
23074
23075         * TreeView.cs: Remove some TODOS.
23076
23077 2005-06-13  Jackson Harper  <jackson@ximian.com>
23078
23079         * Form.cs: Hook into the mdi framework.
23080         * MdiClient.cs: Use the base control collections add method so
23081         parents get setup correctly. Set the default back colour and dock
23082         style.
23083         * MdiChildContext.cs: New class, this bad actor handles an
23084         instance of an MDI window. Right now there is only basic
23085         support. You can drag, close, and resize windows. Minimize and
23086         Maximize are partially implemented.
23087
23088 2005-06-13  Jackson Harper  <jackson@ximian.com>
23089
23090         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
23091         freaky when both vals are negative. NOTE: There are probably other
23092         places in XplatUIX11 that this needs to be done.
23093
23094 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
23095
23096         * DataGrid.cs: implement missing methods, move KeyboardNavigation
23097         * DataGridColumnStyle.cs: fixes signature
23098
23099 2005-06-12  Jackson Harper  <jackson@ximian.com>
23100
23101         * XplatUIX11.cs: Use sizing cursors similar to the ones on
23102         windows.
23103
23104 2005-06-11  Jackson Harper  <jackson@ximian.com>
23105
23106         * StatusBarPanel.cs: Signature cleanups. Implement
23107         BeginInit/EndInit.
23108
23109 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
23110
23111         * DataGridTextBoxColumn.cs: Honors aligment
23112         * GridColumnStylesCollection.cs: Contains is case unsensitive
23113         * GridTableStylesCollection.cs: several fixes
23114         * DataGridTableStyle.cs: default column creation
23115         * DataGridDrawingLogic.cs: fixes
23116         * CurrencyManager.cs: ListName property
23117         * DataGrid.cs: multiple styles support
23118         * DataGridColumnStyle.cs: fixes
23119         
23120
23121 2005-06-10  Peter Bartok  <pbartok@novell.com>
23122
23123         * Control.cs(Select): Moved SetFocus call to avoid potential
23124           loops if controls change the active control when getting focus
23125         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
23126           the up/down buttons
23127
23128 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
23129
23130         * ImageListConverter.cs: Implemented
23131
23132 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
23133
23134         * MonthCalendar.cs: Wired in NumericUpDown control for year
23135
23136 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
23137
23138         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
23139           DoubleClick events, since they are not meant to be fired.
23140
23141 2005-06-09  Peter Bartok  <pbartok@novell.com>
23142
23143         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
23144           Jonathan's standalone controls into MWF, implemented missing
23145           events, attributes and methods; added xxxAccessible classes
23146         * AccessibleObject.cs: Made fields internal so other classes
23147           can change them if needed
23148
23149 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
23150
23151         * UpDownBase.cs: Complete implementation
23152         * NumericUpDown.cs: Complete implementation
23153         * DomainUpDown.cs: Complete implementation
23154
23155 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
23156
23157         * DataGridTextBoxColumn.cs: drawing fixes
23158         * DataGridCell.cs: fixes ToString method to match MSNet
23159         * DataGridTableStyle.cs: fixes
23160         * DataGridBoolColumn.cs: fixes, drawing
23161         * DataGridDrawingLogic.cs: fixes, new methods
23162         * DataGridTextBox.cs: Keyboard and fixes
23163         * DataGrid.cs:
23164                 - Keyboard navigation
23165                 - Scrolling fixes
23166                 - Row selection (single, multiple, deletion, etc)
23167                 - Lots of fixes
23168         
23169 2005-06-07  Jackson Harper  <jackson@ximian.com>
23170
23171         * ThemeWin32Classic.cs: Clear the background area when drawing
23172         buttons.
23173
23174 2005-06-06  Peter Bartok  <pbartok@novell.com>
23175
23176         * ImageListStreamer.cs: Fixed signature for GetData
23177         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
23178         * ComboBox.cs:
23179           - Added missing ChildAccessibleObject class
23180           - Added missing OnXXXFocus overrides, switched to using those
23181             instead of the event handler
23182         * Control.cs:
23183           - Added Parent property for ControlAccessibleObject
23184           - Fixed signatures
23185           - Fixed attributes
23186           - Added ResetBindings()
23187         * ListBindingConverter.cs: Implemented some methods
23188         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
23189         * ImageList.cs: Implemented basic handle scheme, removed TODOs
23190         * ContainerControl.cs: Fixed signature, now subscribing to the
23191           ControlRemoved event instead of overriding the handler, LAMESPEC
23192         * CurrencyManager.cs: Added missing attribute
23193         * MonthCalendar.cs: Added missing properties
23194
23195 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
23196
23197         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
23198         
23199 2005-06-06  Gaurav Vaish and Ankit Jain
23200
23201         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
23202         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
23203         
23204 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
23205
23206         * Control.cs: fixes CreateParams Width / Height.
23207
23208 2005-06-05  Peter Bartok  <pbartok@novell.com>
23209
23210         * Win32DnD.cs: Removed compilation warnings
23211
23212 2005-06-05  Peter Bartok  <pbartok@novell.com>
23213
23214         * Control.cs (CreateParams): Since we don't know if one of the
23215           properties we use is overridden, lets make sure if we fail accessing
23216           we continue with a backup plan
23217
23218 2005-06-05  Peter Bartok  <pbartok@novell.com>
23219
23220         * Win32DnD.cs:
23221           - Removed debug output
23222           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
23223             struct
23224           - Plugged resource leak
23225         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
23226           MS size
23227
23228 2005-06-05  Peter Bartok  <pbartok@novell.com>
23229
23230         * XplatUIWin32.cs: Removed DnD code
23231         * Win32DnD.cs: Implemented drop source and drop target functionality
23232
23233 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23234
23235         * UpDownBase.cs: remove duplicate addition of event, enable some code
23236         that was commented out.
23237         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
23238         Validate input when a key is pressed. It works fine now for every
23239         combination of Hexadecimal. Only missing some drawing love when sharing
23240         space with other controls.
23241
23242 2005-06-04  Peter Bartok  <pbartok@novell.com>
23243
23244         * Control.cs:
23245           - We need to pass a window for DragDrop, so enable callback events
23246           - Added DnD callback events when being a DragSource
23247         * XplatUI.cs (StartDrag): Added window handle argument
23248         * XplatUIDriver.cs (StartDrag): Added window handle argument
23249         * QueryContinueDragEventArgs: Made fields internally accessible so
23250           drivers can set them
23251         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
23252           can set them
23253
23254 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
23255
23256         * DataGridTextBoxColumn.cs: column text editing
23257         * DataGridTableStyle.cs: Respect columns styles created by the user
23258         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
23259         * DataGridBoolColumn.cs: bool column editing
23260         * DataGrid.cs: fixes to scrolling, properties, etc
23261         * DataGridTextBox.cs: handle keyboard
23262         * DataGridColumnStyle.cs: fixes
23263
23264 2005-06-02  Jackson Harper  <jackson@ximian.com>
23265
23266         * ImageListStreamer.cs: Somewhat broken implementation of
23267         GetObjectData. The RLE needs some work to match MS properly.
23268
23269 2005-06-02  Jackson Harper  <jackson@ximian.com>
23270
23271         * X11Dnd.cs: Attempting to keep at least one file in MWF
23272         monostyled.
23273
23274 2005-06-02  Peter Bartok  <pbartok@novell.com>
23275
23276         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
23277           that way
23278
23279 2005-06-02  Peter Bartok  <pbartok@novell.com>
23280
23281         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
23282         * XplatUI.cs: Added DoDragDrop() method
23283         * XplatUIDriver.cs: Added DoDragDrop() method
23284
23285 2005-06-02  Jackson Harper  <jackson@ximian.com>
23286
23287         * Splitter.cs: Implement BorderStyle.
23288
23289 2005-06-02  Jackson Harper  <jackson@ximian.com>
23290
23291         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
23292         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
23293         X11 using XDND.
23294
23295 2005-06-02  Peter Bartok  <pbartok@novell.com>
23296
23297         * DataObject.cs:
23298           - Added Data setter
23299           - Fixed broken insertion code for SetData, now also
23300             overwrites any existing entry of the same format name
23301         * Hwnd.cs: Added list of pointers that automatically gets
23302           freed when the window is disposed
23303         * XplatUI.cs: Call driver initialization method when loading
23304           a driver
23305         * Control.cs:
23306           - OnDragLeave takes EventArgs, not DragEventArgs
23307           - Added setting of WS_EX_ACCEPTFILES style when dropping is
23308             supported
23309           - Forces style update when drop state changes
23310         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
23311           not perfect since we cannot (yet) call the IDataObject.GetData()
23312           method, we keep getting 0x80004005 error, dunno why)
23313
23314 2005-06-02  Peter Bartok  <pbartok@novell.com>
23315
23316         * DragEventArgs.cs: Make fields internal so we can cache the
23317           object and re-set the fields from XplatUI
23318
23319 2005-06-02  Jackson Harper  <jackson@ximian.com>
23320
23321         * Control.cs: Add some internal methods so the DnD subsystem can
23322         raise DnD events. Also call into the driver when AllowDrop is set.
23323         * XplatUI.cs:
23324         * XplatUIDriver.cs: New method for setting whether or not a window
23325         is allowed to accept drag and drop messages.
23326                 
23327 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
23328         
23329         * ScrollBar.cs: Make sure that values sent in Scroll events
23330         are always between Maximum and Minimum.
23331
23332 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
23333
23334         * Menu.cs: Call MenuChanged when menuitem visibility has been
23335         changed.
23336         * MenuItem.cs: Rebuild menu when item is (not) visible.
23337         * MainMenu.cs: MainMenu has special MenuChanged.
23338         * Theme.cs: Caption and FrameBorderSize are not fixed.
23339         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
23340         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
23341         * XplatUIX11.cs,
23342         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
23343         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
23344
23345 2005-05-30  Jackson Harper  <jackson@ximian.com>
23346
23347         * DataFormat.cs: We can't statically initialize this stuff because
23348         it calls into the xplatui and could create a loop. So we lazy init
23349         it.
23350
23351 2005-05-28  Jackson Harper  <jackson@ximian.com>
23352
23353         * Control.cs: Proper implementation of Product(Name/Version).
23354
23355 2005-05-27  Jackson Harper  <jackson@ximian.com>
23356
23357         * DataObject.cs: Dont crash if no data is found.
23358
23359 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
23360         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
23361                 as per status page, guessing it should be set to true
23362
23363 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
23364
23365         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
23366         * DataGridTableStyle.cs: set proper formatting text, def header text
23367         * ThemeWin32Classic.cs: new themable paramaters
23368         * DataGridBoolColumn.cs: paint check box, get data, fixes
23369         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
23370         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
23371         * DataGridColumnStyle.cs: fixes
23372         * Theme.cs: new themable paramaters
23373                 
23374 2005-05-26  Peter Bartok  <pbartok@novell.com>
23375
23376         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
23377
23378 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
23379         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
23380
23381 2005-05-24  Peter Bartok  <pbartok@novell.com>
23382
23383         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
23384           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
23385           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
23386           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
23387           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
23388           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
23389           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
23390           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
23391           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
23392           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
23393           missing attributes, etc
23394         * DataGridPreferredColumnWidthTypeConverter.cs: Added
23395
23396 2005-05-24  Peter Bartok  <pbartok@novell.com>
23397
23398         * Help.cs: Added, implemented trivial functions, throws up MessageBox
23399           when user tries to get help
23400         * DataObject.cs, DataFormats.cs, LinkArea.cs,
23401           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
23402           to suppress warnings
23403         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
23404           avoid unreachable code warning
23405
23406 2005-05-20  Peter Bartok  <pbartok@novell.com>
23407
23408         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
23409
23410 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
23411
23412         * DataGridTextBoxColumn.cs: Basic painting methods
23413         * DataGridTableStyle.cs: Set table style in the column
23414         * ThemeWin32Classic.cs: Use Theme for colors
23415         * DataGridDrawingLogic.cs: Implement more drawing
23416         * DataGrid.cs: drawing, theming, enhacements, fixes
23417         * DataGridColumnStyle.cs: fixes, drawing
23418         * Theme.cs: theming for Datagrid
23419
23420 2005-05-20  Peter Bartok  <pbartok@novell.com>
23421
23422         * Cursor.cs: Implemented GetObjectData() method
23423
23424 2005-05-20  Peter Bartok  <pbartok@novell.com>
23425
23426         * Cursors.cs: Added setting of cursor name
23427         * Cursor.cs:
23428           - Implemented constructors
23429           - Implemented Draw and DrawStretched
23430           - Implemented Current property
23431           - Implemented == and != operators
23432           - Implemented Dispose()
23433           - Implemented ToString
23434           - Added missing attributes
23435         * XplatUIX11.cs:
23436           - Added missing reset for OverrideCursor when DoEvents is called
23437           - Fixed creation of cursor, logic was wrong
23438         * XplatUIWin32.cs:
23439           - Added missing reset for OverrideCursor when DoEvents is called
23440           - Fixed creation of cursor, bit arrays were swapped
23441         * Clipboard.cs: Removed obsolete MonoTODO attribute
23442
23443 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
23444
23445         * ComboBox.cs: fixes OnSelectedItemChanged
23446         * ControlBindingsCollection.cs: fixes item range check
23447
23448 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
23449
23450         * UpDownBase.cs:
23451                 - Calc preferred height properly
23452                 - Implement missing properties
23453                 
23454         * NumericUpDown.cs: Implement missing events
23455
23456 2005-05-19  Jackson Harper  <jackson@ximian.com>
23457
23458         * TabControl.cs: New method that resizes the tab pages before
23459         redrawing them. This as needed as the control is double buffered
23460         and sizing will not be recalculated unless ResizeTabPages is
23461         called.
23462         * TabPage.cs: Set base.Text instead of Text in the constructor so
23463         that UpdateOwner does not get called. Use the new Redraw method of
23464         TabControl instead of Refresh so the sizing is recalculated.
23465         * ThemeWin32Classic.cs: Draw the text for button tabs.
23466
23467 2005-05-19  Jackson Harper  <jackson@ximian.com>
23468
23469         * Control.cs: Paint control background images. Fix typo where
23470         PaintControlBackground was not getting called correctly.
23471
23472 2005-05-19  Peter Bartok  <pbartok@novell.com>
23473
23474         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
23475           I can investigate, apparently I broke FileDialog
23476
23477 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
23478
23479         * AxHost.cs: Some simple properties.
23480         * Control.cs: window must be accessible after ctor.
23481         * Form.cs: Added TransparencyKey property.
23482         * TextBoxBase.cs: Implemented Clear. Text property can be null.
23483         * XplatUIWin32.cs: SetBorderStyle implemented.
23484
23485 2005-05-18  Peter Bartok  <pbartok@novell.com>
23486
23487         * DataObject.cs: Entries are not global but particular to the
23488           DataObject, now it behaves that way
23489         * XplatUIWin32.cs: Implemented Clipboard methods
23490         * Clipboard.cs: Implemented
23491         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
23492         * XplatUIOSX.cs: Updated to final clipboard prototypes
23493         * XplatUIX11.cs: Implemented Clipboard methods
23494         * XplatUIDriver.cs: Updated to final clipboard prototypes
23495         * XplatUIStructs.cs:
23496           - Added BITMAPINFOHEADER struct
23497           - Added ClipboardFormats enum
23498         * X11Structs.cs:
23499           - Added ClipboardStruct
23500           - Added Atom enum items for clipboard types
23501           - Fixed atom types for Selection event structures
23502         * DataFormats.cs:
23503           - Added internal properties and methods for drivers to enumerate
23504             all known formats
23505           - Switched initialization method to allow drivers to assign their
23506             own IDs even for the MS predefined clipboard IDs
23507         * XplatUI.cs: Updated to final clipboard interface
23508
23509 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
23510         * PropertyGridView.cs: Fixed compiler warnings.
23511
23512 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
23513         * PropertyGrid.cs: Added some event calls
23514         * PropertyGridView.cs: Change drawing code to use double buffering
23515         * PropertyGridTextBox.cs: Changed Text property name
23516         * GridItem.cs: Added Bounds property.
23517         * GridEntry.cs: Added Bounds property.
23518
23519 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
23520
23521         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
23522         since GetType() may not return the correct type if the object is
23523         a remoting proxy.
23524
23525 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
23526
23527         * TreeNodeCollection.cs: fixes get/set item ranges
23528         
23529 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
23530
23531         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
23532                 
23533 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
23534
23535         * ComboBox.cs: Fix item range comparation
23536         * ListView.cs: Fix item range comparation
23537
23538 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
23539
23540         * FontDialog.cs:
23541           - Clear example panel when OnPaint is called
23542           - Better solution for displaying the example panel text
23543           - Select default indexes in the ListBoxes
23544
23545 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
23546
23547         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
23548
23549 2005-05-11  Peter Bartok  <pbartok@novell.com>
23550
23551         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
23552         * SelectionRangeConverter.cs: Implemented
23553         * PropertyGrid.cs: Fixed attribute value
23554         * Control.cs:
23555           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
23556           - Added Sebastien Pouliot's CAS Stack Propagation fixes
23557         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
23558           that's common to all drivers. First methods to go there are
23559           Sebastien Pouliot's CAS Stack Propagation helper methods
23560         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
23561           Sebastien Pouliot for CAS Stack Propagation
23562
23563 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
23564
23565         * OSXStructs.cs:
23566           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
23567
23568 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
23569
23570         * DataGridTextBoxColumn.cs: fixed some members
23571         * GridColumnStylesCollection.cs: indexed column is case insensitive
23572         * DataGridTableStyle.cs: fixes
23573         * ThemeWin32Classic.cs: add new theme parameter
23574         * Theme.cs: add new theme parameter
23575         * DataGridDrawingLogic.cs: Datagrid's drawing logic
23576         * DataGrid.cs: fixes, new internal properties, etc.
23577         * DataGridColumnStyle.cs: allows to set grid value
23578         *
23579
23580 2005-05-10  Peter Bartok  <pbartok@novell.com>
23581
23582         * AccessibleObject.cs:
23583           - Removed MonoTODO attribute on help, method is correct
23584           - Fixed Bounds property
23585         * AxHost.cs: Moved MonoTODO
23586         * ButtonBase.cs: Now setting AccessibleObject properties
23587         * RadioButton.cs: Setting proper AccessibleObject role
23588         * CheckBox.cs: Setting proper AccessibleObject role
23589         * ControlBindingsCollection.cs: Added properties, methods and attributes
23590         * DataFormats.cs: Fixed awkward internal API, and changed to enable
23591           userdefined DataFormats.Format items as well
23592         * ListControl.cs: Removed data_member from the public eye
23593         * OpenFileDialog.cs:
23594           - Made class sealed
23595           - Added missing attributes
23596         * SaveFileDialog.cs: Added missing attributes
23597         * ImageListStreamer.cs: Fixed code that caused warnings
23598         * LinkLabel.cs: Removed unreachable code
23599         * TreeView.cs: Fixed code that caused warnings
23600         * PropertyGridView.cs: Fixed code that caused warnings
23601         * GridColumnStylesCollection.cs: Added missing attributes
23602         * GridTableStylesCollection: Added missing attribute
23603         * PropertyManager: Added .ctor
23604         * SecurityIDType: Added
23605         * DataObject.cs: Implemented class
23606         * LinkArea.cs: Added missing attribute
23607
23608 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
23609
23610         * RadioButton.cs: call base method to allow to fire OnClick event
23611         * UpDownBase.cs: OnMouseUp call base method
23612         * CheckedListBox.cs: call base method before returning
23613         * TrackBar.cs: call base method before returning
23614         
23615
23616 2005-05-10  Peter Bartok  <pbartok@novell.com>
23617
23618         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
23619           for messages
23620
23621 2005-05-10  Peter Bartok  <pbartok@novell.com>
23622
23623         * DataFormats.cs: Implemented
23624         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
23625           XplatUIX11.cs: Added Clipboard APIs
23626         * XplatUIWin32.cs: Implemented Clipboard APIs
23627         * FolderBrowserDialog.cs: Added missing event, attributes
23628
23629 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
23630
23631         * CheckBox.cs: call base method to allow to fire OnClick event
23632
23633 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
23634
23635         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
23636
23637 2005-05-06  Peter Bartok  <pbartok@novell.com>
23638
23639         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
23640         * Screen.cs: Implemented
23641         * HelpNavigator.cs: Added
23642         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
23643           property
23644         * HelpProvider.cs: Implemented all we can do until we have a CHM
23645           help library (which means that "What's This" does work now)
23646
23647 2005-05-06  Jackson Harper  <jackson@ximian.com>
23648
23649         * XplatUIX11.cs: Fix waking up the main loop.
23650                 
23651 2005-05-05  Peter Bartok  <pbartok@novell.com>
23652
23653         * XplatUI.cs: Updated revision
23654         * Form.cs: Removed enless loop
23655         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
23656         * Label.cs (OnPaint): Added call to base.OnPaint()
23657         * ToolTip.cs: Made ToolTipWindow reusable for other controls
23658         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
23659         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
23660         * AxHost.cs: Added
23661         * ButtonBase.cs: Moved base.OnPaint() call to end of method
23662         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
23663           to ToolTip.ToolTipWindow for drawing and size methods; this allows
23664           reuse of ToolTipWindow by other controls
23665         * SizeGrip.cs: Moved base.OnPaint() call to end of method
23666         * XplatUIX11.cs: Now clipping drawing area (experimental)
23667         * PictureBox.cs: Moved base.OnPaint() call to end of method
23668         * Theme.cs: Fixed ToolTip abstracts to match new format
23669         * ErrorProvider.cs: Implemented
23670
23671 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
23672
23673         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
23674         * LinkLabel.cs:
23675                 - Adds cursors
23676                 - Handles focus
23677                 - Implements LinkBehavior
23678                 - Fixes many issues
23679
23680 2005-05-03  Jackson Harper  <jackson@ximian.com>
23681
23682         * ListView.cs: Calculate the scrollbar positioning on resize and
23683         paint, so they get put in the correct place.
23684
23685 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
23686
23687         * ColorDialogs.cs: The small color panels are now handled by
23688           SmallColorControl. This fixes drawing of the focus rectangle
23689           and adds a 3D border.
23690
23691 2005-05-03  Peter Bartok  <pbartok@novell.com>
23692
23693         * Control.cs: Modified version of Jonathan Chamber's fix for
23694           double-buffering
23695
23696 2005-05-03  Jackson Harper  <jackson@ximian.com>
23697
23698         * ListView.cs: Remove redraw variable. Control now handles whether
23699         or not a redraw needs to be done, and will only raise the paint
23700         event if redrawing is needed.
23701
23702 2005-05-03  Jackson Harper  <jackson@ximian.com>
23703
23704         * Splitter.cs: No decorations for the splitter form. Cache the
23705         hatch brush.
23706
23707 2005-05-03  Jackson Harper  <jackson@ximian.com>
23708
23709         * TreeView.cs: Use dashed lines to connect nodes. Use the
23710         ControlPaint method for drawing the focus rect instead of doing
23711         that in treeview.
23712
23713 2005-05-02  Peter Bartok  <pbartok@novell.com>
23714
23715         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
23716
23717 2005-04-29  Jackson Harper  <jackson@ximian.com>
23718
23719         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
23720         entire image buffer. Just clear the clipping rectangle.
23721
23722 2005-04-29  Jackson Harper  <jackson@ximian.com>
23723
23724         * ThemeWin32Classic.cs: Don't draw list view items that are
23725         outside the clipping rectangle.
23726
23727 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
23728
23729         * ListBox.cs: added horizontal item scroll
23730
23731 2005-04-29  Jackson Harper  <jackson@ximian.com>
23732
23733         * ThemeWin32Classic.cs: Remove some old debug code that was
23734         causing flicker with the new double buffering code.
23735
23736 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
23737
23738         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
23739         behave like combobox and comboboxlist (still not sure if this is
23740         correct though).
23741
23742 2005-04-28  Jackson Harper  <jackson@ximian.com>
23743
23744         * ThemeWin32Classic.cs: Don't fill the middle of progress
23745         bars. This fills areas outside of the clip bounds that don't need
23746         to be filled.
23747
23748 2005-04-28  Jackson Harper  <jackson@ximian.com>
23749
23750         * Control.cs: Don't expose functionality to touch the image buffers.
23751         * ProgressBar.cs:
23752         * ListView.cs: We do not need to (and no longer can) manipulate
23753         the image buffers directly. All of this is handled by Control.
23754
23755 2005-04-28  Peter Bartok  <pbartok@novell.com>
23756
23757         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
23758           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
23759           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
23760
23761 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
23762
23763         * Combobox:
23764                 - Adjust control's height for non-simple comboboxes (bug fix)
23765                 - Remove dead code
23766         * MenuAPI.cs: remove unused var
23767         * ScrollBar.cs: remove unsed var
23768                  
23769         * ListBox.cs: unselect items when clearing
23770
23771 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
23772
23773         * ListControl.cs: honors OnPositionChanged and default Selected Item
23774         * ListBox.cs: unselect items when clearing
23775
23776 2005-04-27  Jackson Harper  <jackson@ximian.com>
23777
23778         * X11Keyboard.cs: Initialize a default keyboard and give a warning
23779         if a "correct" keyboard is not found. This will make us not crash,
23780         but might give some users bad keyboard layouts...seems to be the
23781         same thing rewind does.
23782
23783 2005-04-27  Jackson Harper  <jackson@ximian.com>
23784
23785         * BindingManagerBase.cs: Attach the current/position changed
23786         handlers to their respective events.
23787
23788 2005-04-27  Jackson Harper  <jackson@ximian.com>
23789
23790         * Control.cs: Make sure that the first WM_PAINT does a full draw,
23791         not just a blit.
23792         * ThemeWin32Classic.cs: Don't fill the background for picture
23793         boxes. This could overright user drawing.
23794         * ComboBox.cs: Just fill the clipping rect not the entire client
23795         rect when drawing the background. This prevents pieces of the
23796         image buffer from getting overwritten and is theoretically faster.
23797
23798 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
23799
23800         * ComboBox.cs: Databinding support fixes, fire missing events
23801         * ListControl.cs: implement missing methods and properties, fixes
23802         * ThemeWin32Classic.cs: Databiding support on Drawing
23803         * CheckedListBox.cs: Databinding support fixes, fire missing events
23804         * ListBox.cs: Databinding support fixes, fire missing events
23805         
23806 2005-04-25  Peter Bartok  <pbartok@novell.com>
23807
23808         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
23809
23810 2005-04-25  Jackson Harper  <jackson@ximian.com>
23811
23812         * TreeView.cs: Use the horizontal scrollbars height not width when
23813         determining how much of the client area is available.
23814
23815 2005-04-25  Jackson Harper  <jackson@ximian.com>
23816
23817         * Control.cs: Double buffering is handled differently now. As per
23818         the spec, the extra buffer is created in the WM_PAINT message and
23819         passed down to the control's drawing code.
23820         * GroupBox.cs:
23821         * Label.cs:
23822         * CheckBox.cs:
23823         * ProgressBar.cs:
23824         * RadioButton.cs:
23825         * ColorDialog.cs:
23826         * ComboBox.cs:
23827         * PropertyGridView.cs:
23828         * UpDownBase.cs:
23829         * MessageBox.cs:
23830         * MenuAPI.cs:
23831         * ListView.cs:
23832         * ButtonBase.cs:
23833         * SizeGrip.cs:
23834         * ScrollBar.cs:
23835         * ListBox.cs:
23836         * TrackBar.cs:
23837         * ToolBar.cs:
23838         * PictureBox.cs:
23839         * DateTimePicker.cs:
23840         * StatusBar.cs:
23841         * TreeView.cs: Update to new double buffering system.
23842         * MonthCalendar.cs: Uncomment block, as Capture is now
23843         working. Update to new double buffering
23844         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
23845         * PaintEventArgs.cs: New internal method allows us to set the
23846         graphics object. This is used for double buffering.
23847         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
23848         rectangle. The internal paint_area var has been removed from
23849         StatusBar. The clipping rect should be used instead.
23850         * Theme.cs: Give the PictureBox drawing method a clipping rect.
23851         * TabPage.cs: The RefreshTabs method was removed, so just call the
23852         tab controls Refresh method now.
23853         * TabControl.cs: Update to new double buffering. Make sure the
23854         handle is created before sizing the tab pages, otherwise we will
23855         get stuck in a loop.
23856
23857 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
23858
23859         * LinkLabel.cs: Fix typo, bug #74719; patch
23860           from Borja Sanchez Zamorano
23861
23862 2005-04-22  Jackson Harper  <jackson@ximian.com>
23863
23864         * TreeNode.cs: Implement Handle stuff.
23865         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
23866
23867 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
23868
23869         * DataGridTextBoxColumn.cs: call base constructors, fixes
23870         * GridColumnStylesCollection.cs: missing events, methods, and functionality
23871         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
23872         * DataGridTableStyle.cs: implements create default column styles
23873         * DataGridBoolColumn.cs: which types can handle
23874         * DataGrid.cs: missing methods, fixes, new functionality
23875         * DataGridColumnStyle.cs: fixes
23876
23877 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
23878         * FolderBrowserDialog.cs:
23879         - Use a thread to fill the TreeView
23880         - Adjusted some sizes
23881
23882 2005-04-19  Peter Bartok  <pbartok@novell.com>
23883
23884         * LinkLabel.cs: (Re-)create the pieces when setting the Text
23885           property. Fixes #74360.
23886
23887 2005-04-19  Jackson Harper  <jackson@ximian.com>
23888
23889         * XEventQueue.cs: Lock when getting the lockqueue size.
23890         * PictureBox.cs: Call base OnPaint
23891         
23892 2005-04-19  Peter Bartok  <pbartok@novell.com>
23893
23894         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
23895           messages were no longer being processed (this broke BeginInvoke)
23896
23897           
23898 2005-04-18  Jackson Harper  <jackson@ximian.com>
23899
23900         * TreeView.cs: buglet that caused node images to get drawn
23901         regardless of whether or not they were in the clipping rectangle.
23902
23903 2005-04-18  Jackson Harper  <jackson@ximian.com>
23904
23905         * CurrencyManager.cs: There are four rules for GetItemProperties:
23906         - If the type is an array use the element type of the array
23907         - If the type is a typed list, use the type
23908         - If the list contains an Item property that is not an object, use
23909         that property
23910         - use the first element of the list if there are any elements in
23911         the list.
23912         
23913 2005-04-17  Jackson Harper  <jackson@ximian.oom>
23914
23915         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
23916         click. This handles offsets for scrolling properly and reduces
23917         memory. Also fixed GetNode to not offset now that TopNode works
23918         properly.
23919         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
23920         
23921 2005-04-17  Jackson Harper  <jackson@ximian.com>
23922
23923         * CursorConverter.cs: Initial implementation.
23924
23925 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
23926
23927         * ListControl.cs: work towards complex data binding support on ListControl
23928         * CurrencyManager.cs: work towards complex data binding support on ListControl
23929         * ListBox.cs: work towards complex data binding support on ListControl
23930
23931
23932 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
23933
23934         * GridTableStylesCollection.cs: fixes name and constructor
23935         * DataGridTableStyle.cs: fixes
23936         * DataGridBoolColumn.cs: fixes names and constructors
23937         * DataGrid.cs: define methods and properties. Some init implementations
23938         * DataGridCell.cs: define methods and properties. Some init implementations
23939         * GridTablesFactory.cs: Define methods and properties
23940
23941 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
23942
23943         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
23944         graphics port changes.  We still want the coordinates in global screen
23945         coordinates.
23946
23947 2005-04-14  Jackson Harper  <jackson@ximian.com>
23948
23949         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
23950         check plus minus or checkbox clicks unless those features are enabled.
23951
23952 2005-04-14  Jackson Harper  <jackson@ximian.com>
23953
23954         * TreeView.cs: Add methods for setting the top and bottom visible
23955         nodes. TreeNode::EnsureVisible uses these methods.
23956         * TreeNode.cs: Implement EnsureVisible
23957
23958 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
23959
23960         * Form.cs: Pospone menu assignation if the window has not been created yet
23961         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
23962         size and position
23963
23964 2005-04-12  Jackson Harper  <jackson@ximian.com>
23965
23966         * TreeView.cs: Set the TopNode properly when scrolling
23967         occurs. This has the added benifit of reducing the amount of
23968         walking that needs to be done when drawing. Also removed an old
23969         misleading TODO.
23970         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
23971         
23972 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
23973
23974         * Timer.cs: fixes interval setting when the timer is already enabled
23975         
23976 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
23977
23978         * FolderBrowserDialog.cs: First approach
23979
23980 2005-04-09  Peter Bartok  <pbartok@novell.com>
23981
23982         * FolderBrowserDialog: Added
23983
23984 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
23985
23986         * LinkLabel.cs: move drawing code into the theme
23987         * ThemeWin32Classic.cs: drawing code and painting background bugfix
23988         * Theme.cs: define DrawLinkLabel method
23989
23990 2005-04-05  Jackson Harper  <jackson@ximian.com>
23991
23992         * BindingContext.cs: Use weak references so these bad actors don't
23993         stay alive longer then they need to.
23994
23995 2005-04-05  Jackson Harper  <jackson@ximian.com>
23996
23997         * ListControl.cs: Basic implementation of complex databinding.
23998         * ComboBox.cs:
23999         * ListBox.cs: Add calls to ListControl databinding methods.
24000
24001 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
24002
24003         * FileDialog.cs:
24004           - Don't change PopupButtonState to Normal when the
24005             PopupButton gets pressed several times.
24006           - Renamed ButtonPanel to PopupButtonPanel
24007
24008 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
24009
24010         * ColorDialog.cs: Use cached objects instead of creating them
24011         * LinkLabel.cs: Use cached objects instead of creating them
24012         * Splitter.cs: Use cached objects instead of creating them
24013         * FontDialog.cs: Use cached objects instead of creating them
24014         * PropertyGridView.cs: Use cached objects instead of creating them
24015         * MessageBox.cs: Use cached objects instead of creating them
24016         * FileDialog.cs: Use cached objects instead of creating them
24017         * ThemeWin32Classic.cs: Use cached objects instead of creating them
24018         * TreeView.cs: Use cached objects instead of creating them
24019         
24020 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
24021
24022         * Control.cs: use Equals to compare the font since no == op
24023         * ScrollBar.cs: use Equals to compare the font since no == op
24024
24025 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
24026
24027         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
24028
24029 2005-04-01  Jackson Harper  <jackson@ximian.com>
24030
24031         * Binding.cs: Implement IsBinding.
24032         * BindingManagerBase.cs:
24033         * PropertyManager.cs:
24034         * CurrencyManager.cs: Add IsSuspended property.
24035
24036 2005-04-01  Jackson Harper  <jackson@ximian.com>
24037
24038         * Binding.cs: Had some IsAssignableFrom calls backwards.
24039
24040 2005-04-01  Jackson Harper  <jackson@ximian.com>
24041
24042         * Binding.cs: Handle null data members when pulling data.
24043         * PropertyManager.cs: Handle the data member being a property that
24044         does not exist.
24045
24046 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
24047
24048         * DataGridTextBoxColumn.cs: fixes signature
24049         * DataGrid.cs: calls right constructor
24050
24051 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
24052
24053         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
24054         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
24055         * GridTableStylesCollection.cs: implements GridTableStylesCollection
24056         * DataGridTableStyle.cs: implements DataGridTableStyle
24057         * DataGridBoolColumn.cs: implements DataGridBoolColumn
24058         * DataGridTextBox.cs: implements DataGridTextBox
24059         * DataGridColumnStyle.cs: implements DataGridColumnStyle
24060
24061 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
24062
24063         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
24064
24065 2005-03-29  Peter Bartok  <pbartok@novell.com>
24066
24067         * Application.cs:
24068           - Properly implemented CompanyName property
24069           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
24070             returns a path that includes CompanyName, ProductName and
24071             Version (fixes bug #70330)
24072
24073 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
24074
24075         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
24076           fixes bug #72588.
24077
24078 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
24079
24080         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
24081         
24082           - Added ReadOnly CheckBox
24083           - Further refactoring: moved some code from Open-/SaveFileDialog
24084             to FileDialog
24085
24086 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
24087
24088         * OpenFileDialog.cs: Fixed CheckFileExists
24089         * FileDialog.cs:
24090           Moved FileView and DirComboBox outside FileDialog class.
24091           They can now be used outside FileDialog
24092
24093 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
24094
24095         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
24096         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
24097
24098 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
24099
24100         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
24101           - Added missing CreatePrompt property in SaveDialog
24102           - Overall SaveDialog handling should be better now
24103           - Added non standard ShowHiddenFiles property
24104           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
24105           - Added InitialDirectory and RestoreDirectory support
24106
24107 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
24108
24109         * FileDialog.cs: Made dirComboBox usable
24110
24111 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
24112
24113         * FileDialog.cs: Added Filter support (case sensitiv)
24114
24115 2005-03-24  Jackson Harper  <jackson@ximian.com>
24116
24117         * TabControl.cs: Need a couple more pixels for the lines.
24118
24119 2005-03-23  Jackson Harper  <jackson@ximian.com>
24120
24121         * TabControl.cs: Give the tab page focus when it is selected.
24122
24123 2005-03-23  Jackson Harper  <jackson@ximian.com>
24124
24125         * TabControl.cs: Account for the drawing of tabs borders when
24126         invalidating. If the slider was clicked dont do click detection on
24127         the tabs.
24128
24129 2005-03-23  Jackson Harper  <jackson@ximian.com>
24130
24131         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
24132
24133 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
24134
24135         * CategoryGridEntry.cs: Added
24136         * GridItem.cs: Added helper properties
24137         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
24138         * GridEntry.cs: Updated code for collection
24139         * PropertyGrid.cs: Cleaned up some formatting
24140         * PropertyGridView.cs: Added drop down functionality for enums.
24141         * GridItemCollection.cs: Added enumerator logic
24142         * PropertyGridEntry.cs: Added
24143
24144 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
24145
24146         * FileDialog.cs:
24147           - Removed unnecessary commented code
24148           - Fixed handling for entering the filename manually in the combobox
24149
24150 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
24151
24152         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
24153
24154 2005-03-18  Peter Bartok  <pbartok@novell.com>
24155
24156         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
24157           them being touching the border
24158
24159 2005-03-18  Peter Bartok  <pbartok@novell.com>
24160
24161         * TextControl.cs: Quick hack to center text better
24162
24163 2005-03-18  Peter Bartok  <pbartok@novell.com>
24164
24165         * ControlPaint.cs:
24166           - Don't throw NotImplemented exceptions, just print a notice once
24167             instead (requested by Miguel). This makes running existing SWF
24168             apps a bit easier
24169         * Control.cs:
24170           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
24171           - Added context menu trigger on right click
24172         * Panel.cs: Trigger invalidate on resize
24173         * StatusBar.cs:
24174           - Removed old double-buffer drawing
24175           - Added ResizeRedraw style to force proper update of statusbar
24176         * ListView.cs:
24177           - Removed debug output
24178         * ThemeWin32Classic.cs:
24179           - Fixed drawing of status bar, now draws Text property if there
24180             are no defined panels
24181
24182 2005-03-18  Jackson Harper  <jackson@ximian.com>
24183
24184         * ImageList.cs: When the image stream is set pull all the images
24185         from it.
24186         * ImageListStreamer.cs: Implement reading image list streams.
24187
24188 2005-03-18  Peter Bartok  <pbartok@novell.com>
24189
24190         * ThemeWin32Classic.cs (DrawPictureBox):
24191           - Fixed calculations for centered drawing
24192           - Fixed drawing for normal mode, not scaling the image on normal
24193
24194 2005-03-18  Peter Bartok  <pbartok@novell.com>
24195
24196         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
24197           textbox
24198         * FileDialog.cs:
24199           - Made Open/Save button the accept button for FileDialog
24200           - Tied the cancel button to the IButtonControl cancel button
24201           - Save/Open now properly builds the pathname
24202           - Now handles user-entered text
24203           - Preventing crash on right-click if no item is selected
24204           - Fixed Text property, now uses contents of textbox
24205           - Fixed SelectedText property, now just returns the text part that
24206             is selected in the text box
24207
24208 2005-03-18  Jackson Harper  <jackson@ximian.com>
24209
24210         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
24211         rect, make sure to de-adjust the interior rect after drawing the
24212         tab text.
24213
24214 2005-03-18  Peter Bartok  <pbartok@novell.com>
24215
24216         * MenuAPI.cs: Remove menu *before* executing selected action to
24217           prevent the menu from 'hanging around'
24218           
24219 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
24220
24221         * XplatUIOSX.cs: Implemented WorkingArea property
24222
24223 2005-03-17  Peter Bartok  <pbartok@novell.com>
24224
24225         * XplatUIX11.cs: Fixed menu coord calculations
24226         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
24227           for calculating offsets
24228
24229 2005-03-17  Peter Bartok  <pbartok@novell.com>
24230
24231         * Hwnd.cs: Do not consider menu presence for default client
24232           rectangle location/size
24233         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
24234           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
24235           translation functions
24236         * FileDialog.cs: Fixed (what I presume is a) typo
24237
24238 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
24239
24240         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
24241           X access (avoids X-Async errors)
24242
24243 2005-03-16  Jackson Harper  <jackson@ximian.com>
24244
24245         * TabControl.cs: Raise the SelectedIndexChanged event.
24246
24247 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
24248
24249         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
24250           - Removed vertical ToolBar and replaced it with a custom panel
24251             (desktop and home button already work)
24252           - Added Help button (some controls get resized or relocated then)
24253           - Draw correct text depending on Open or Save.
24254           - Fixed some typos...
24255
24256 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
24257
24258         * ScrollBar.cs:
24259           - Only change Maximum and Minimum when need it (bug fix)
24260
24261 2005-03-15  Peter Bartok  <pbartok@novell.com>
24262
24263         * Form.cs: Use Handle for icon, to trigger creation if
24264           the window does not yet exist
24265         * Control.cs:
24266           - CanSelect: Slight performance improvement
24267           - Focus(): Preventing possible recursion
24268           - Invalidate(): Removed ControlStyle based clear flag setting
24269           - WM_PAINT: fixed logic for calling OnPaintBackground
24270           - WM_ERASEBKGND: Fixed logic, added call to new driver method
24271             EraseWindowBackground if the control doesn't paint background
24272         * XplatUIWin32.cs:
24273           - Moved EraseWindowBackground() method to internal methods
24274           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
24275             is sent via SendMessage on BeginPaint call on Win32
24276         * XplatUIX11.cs:
24277           - Added EraseWindowBackground() method
24278           - No longer sends WM_ERASEBKGND on .Expose, but on call to
24279             PaintEventStart, which more closely matches Win32 behaviour
24280           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
24281           - Fixed SetFocus() to properly deal with client and whole windows
24282         * Hwnd.cs: Added ErasePending property
24283         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
24284         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
24285
24286 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
24287
24288         * XplatUIOSX.cs:
24289           - Fix hard loop when timers exist.
24290           - Fix bugs with middle and right click for 3 button mice.
24291
24292 2005-03-11  Peter Bartok  <pbartok@novell.com>
24293
24294         * XplatUIX11.cs:
24295           - get_WorkingArea: Need to call X directly, GetWindowPos only
24296             returns cached data now
24297           - Added sanity check to GetWindowPos hwnd usage
24298
24299 2005-03-11  Jackson Harper  <jackson@ximian.com>
24300
24301         * BindingManagerBase.cs: This method isn't used anymore as
24302         PullData now updates the data in the control.
24303
24304 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
24305
24306         * Form.cs: fixes menu drawing on X11
24307         * MenuAPI.cs:  fixes menu drawing on X11
24308
24309 2005-03-11  Peter Bartok  <pbartok@novell.com>
24310
24311         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
24312           from Jonathan Gilbert; should fix bug #73606
24313         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
24314           in Screen coordinates. Thanks, Jordi.
24315         * Form.cs: Added missing attribute
24316
24317 2005-03-11  Peter Bartok  <pbartok@novell.com>
24318
24319         * Form.cs:
24320           - Rudimentary Mdi support
24321           - Removed outdated FormParent code
24322           - Implemented lots of missing properties and methods, still missing
24323             transparency support
24324           - Added missing attributes
24325           - Implemented support for MaximumBounds
24326           - Added firing of various events
24327         * XplatUI.cs: Added SetIcon() method
24328         * XplatUIDriver.cs: Added SetIcon() abstract
24329         * XplatUIOSX.cs: Stubbed out SetIcon() method
24330         * XplatUIX11.cs:
24331           - Implemented SetIcon() support
24332           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
24333           - Switched to unix line endings
24334         * XplatUIWin32.cs:
24335           - Made POINT internal so for can access it as part of MINMAX
24336           - Implemented SetIcon() support
24337           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
24338             native Mdi support again, might have to go managed)
24339         * Control.cs: Now fires the StyleChanged event
24340         * MdiClient.cs: Added; still mostly empty
24341
24342 2005-03-10  Peter Bartok  <pbartok@novell.com>
24343
24344         * SaveFileDialog.cs: Added emtpy file
24345
24346 2005-03-08  Peter Bartok  <pbartok@novell.com>
24347
24348         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
24349           in turn triggers OnCreateContro) when creating a handle for the
24350           first time.
24351         * TextControl.cs: Fixed endless loop in certain cases when
24352           replacing the current selection
24353
24354 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
24355
24356         * ScrollBar.cs:
24357           - Honors NewValue changes in Scroll events allowing apps to change it
24358           - Adds First and Last Scroll events
24359           - Fixes Thumb events
24360
24361 2005-03-07  Peter Bartok  <pbartok@novell.com>
24362
24363         * Hwnd.cs: Added DefaultClientRectangle property
24364         * XplatUI.cs: Now using the X11 driver Where() method, which provides
24365           more detailed debug information
24366         * XplatUIX11.cs:
24367           - Fixed size-change feedback loop, where we would pull an old size
24368             off the queue and mistakenly change our window's size to an
24369             earlier value
24370           - Now compressing ConfigureNotify events, to reduce looping and
24371             redraw issues
24372         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
24373           is called
24374
24375 2005-03-07  Jackson Harper  <jackson@ximian.com>
24376
24377         * Binding.cs: Push data pushes from data -> property. Check if the
24378         property is readonly when attempting to set it.
24379
24380 2005-03-07  Jackson Harper  <jackson@ximian.com>
24381
24382         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
24383         instead of IsSubclassOf. Pulling data now sets the value on the
24384         control.
24385         * PropertyManager.cs:
24386         * CurrencyManager.cs: Just need to pull data when updating now,
24387         because PullData will set the value on the control.
24388
24389 2005-03-04  Jackson Harper  <jackson@ximian.com>
24390
24391         * Binding.cs: Implement data type parsing and converting on pulled
24392         data. TODO: Are there more ways the data can be converted?
24393
24394 2005-03-04  Jackson Harper  <jackson@ximian.com>
24395
24396         * Binding.cs: Support <Property>IsNull checks. Also bind to the
24397         controls Validating method so we can repull the data when the
24398         control loses focus.
24399
24400 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
24401
24402         * ColumnHeader.cs:
24403           - Fixes null string format
24404           
24405         * ListView.cs:
24406           - Adds enum type checks
24407           - Fixes redrawing and recalc need after changing some properties
24408           - Fixes on focus_item set after the event
24409           - Fixes adding columns after the control has been created
24410           
24411         * ThemeWin32Classic.cs:
24412           - Fixes CheckBox focus rectangle
24413           - Fixes ColumnHeader drawing
24414
24415
24416 2005-03-03  Jackson Harper  <jackson@ximian.com>
24417
24418         * Binding.cs: Bind to <Property>Changed events so we can detect
24419         when properties are changed and update the data.
24420
24421 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
24422
24423         * ImageList.cs:
24424           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
24425           - Fixes ImageList constructor with ImageList container
24426           - Fixes image scaling (wrong parameters at DrawImage)
24427
24428 2005-02-02  Jackson Harper  <jackson@ximian.com>
24429
24430         * Binding.cs: Make property searches case-insensitive. Eliminate
24431         some duplicated code.
24432
24433 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
24434
24435         * ComboBox.cs:
24436                 - Handle focus event
24437                 - Fix scrollbar events
24438                 - Discard highlighted item if remove it
24439                 - Fixes SelectedItem with strings
24440
24441 2005-03-01  Peter Bartok  <pbartok@novell.com>
24442
24443         * Control.cs:
24444           - Fixed Visible property, now follows (once again) parent chain
24445             to return false if any control in the chain is visible=false
24446           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
24447           - Fixed several places where is_visible instead of Visible was used
24448           - Implemented FIXME related to focus selection when setting focused
24449             control to be invisible
24450
24451         * XplatUIWin32.cs: Now using proper method to find out if window is
24452           visible. Thanks to Jordi for pointing it out
24453
24454 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
24455
24456         * ComboBox.cs: show/hide scrollbar instead of creating it
24457
24458 2005-02-27  Jackson Harper  <jackson@ximian.com>
24459
24460         * CurrencyManager.cs: Add PositionChanged stuff.
24461
24462 2005-02-27  Peter Bartok  <pbartok@novell.com>
24463
24464         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
24465         * XplatUIOSX.cs: Added GetMenuOrigin() stub
24466         * XplatUIWin32.cs: Implemented GetMenuOrigin()
24467         * XplatUIX11.cs:
24468           - Implemented GetMenuDC()
24469           - Implemented GetMenuOrigin()
24470           - Implemented ReleaseMenuDC()
24471           - Implemented generation of WM_NCPAINT message
24472           - Implemented generation and handling of WM_NCCALCSIZE message
24473         * Form.cs: Added debug helper message for Jordi's menu work
24474         * Hwnd.cs:
24475           - Modified ClientRect property; added setter, fixed getter to handle
24476             setting of ClientRect
24477           - Added MenuOrigin property
24478
24479 2005-02-26  Peter Bartok  <pbartok@novell.com>
24480
24481         * XplatUIX11.cs:
24482           - Destroys the caret if a window that's being destroyed contains it
24483           - Ignores expose events coming from the X11 queue for windows that
24484             already are destroyed
24485           - Now uses the proper variable for handling DestroyNotify, before we
24486             marked the wrong window as destroyed
24487           - Improved/added some debug output
24488
24489 2005-02-26  Peter Bartok  <pbartok@novell.com>
24490
24491         * X11Keyboard.cs: Fixes to work on 64bit systems
24492
24493 2005-02-26  Peter Bartok  <pbartok@novell.com>
24494
24495         * Control.cs:
24496           - Now calling OnHandleDestroyed from DestroyHandle()
24497             instead of Dispose()
24498           - Removed bogus call to controls.Remove() from DestroyHandle()
24499
24500 2005-02-26  Peter Bartok  <pbartok@novell.com>
24501
24502         * Control.cs: Properly destroy child windows when our handle is
24503           destroyed
24504
24505 2005-02-25  Peter Bartok  <pbartok@novell.com>
24506
24507         * XplatUI.cs:
24508           - Added 'DriverDebug' define to allow tracing XplatUI API calls
24509           - Alphabetized Static Methods and Subclasses
24510
24511         * XplatUIX11.cs:
24512           - Added XException class to allow custom handling of X11 exceptions
24513           - Created custom X11 error handler, tied into XException class
24514           - Added support for MONO_XEXCEPTIONS env var to allow the user
24515             to either throw an exception on X errors or continue running
24516             after displaying the error
24517           - Added handling of DestroyNotify message
24518           - Added handler for CreateNotify message (still disabled)
24519           - Improved (tried to at least) Where method to provide file and lineno
24520         * X11Structs.cs:
24521           - Added XErrorHandler delegate
24522           - Added XRequest enumeration (to suppor translation of errors)
24523
24524 2005-02-25  Jackson Harper  <jackson@ximian.com>
24525
24526         * PropertyManager.cs: Implement editing features
24527         * CurrencyManager.cs:
24528         * Binding.cs: First attempt at UpdateIsBinding
24529         * BindingManagerBase.cs: Call UpdateIsBinding before
24530         pushing/pulling data.
24531
24532 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
24533
24534         * MenuAPI.cs: Respect disabled items
24535         * ThemeWin32Classic.cs
24536                 - Caches ImageAttributes creation for DrawImageDisabled
24537                 - Fixes vertical menu line drawing
24538                 - Draws disabled arrows in disable menu items
24539
24540 2005-02-24  Peter Bartok  <pbartok@novell.com>
24541
24542         * Hwnd.cs:
24543           - Added UserData property to allow associating arbitrary objects
24544             with the handle
24545           - Fixed leak; now removing Hwnd references from static windows array
24546         * XplatUIWin32.cs:
24547           - Fixed Graphics leak in PaintEventEnd
24548           - Removed usage of HandleData, switched over to Hwnd class
24549         * HandleData.cs: Removed, obsoleted by Hwnd.cs
24550
24551 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
24552
24553         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
24554         * ScrollBar.cs: Fixes bug
24555         * TrackBar.cs: removes death code, clipping, mimize refreshes,
24556          keyboard navigation enhancements
24557
24558 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
24559
24560         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
24561         * GroupBox.cs: Add control styles
24562         * Label.cs: Add control styles
24563         * UpDownBase.cs: Add control styles
24564         * ListBox.cs: Add control styles
24565         * XplatUIWin32.cs: Fixes wrong parameter order
24566
24567
24568 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
24569
24570         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
24571
24572 2005-02-23  Jackson Harper  <jackson@ximian.com>
24573
24574         * PropertyManager.cs: Implement property binding. This doesn't
24575         seem to work yet though as (I think) there are some bugs in
24576         System.ComponentModel.PropertyDescriptor.
24577         * BindingContext.cs: Use new PropertyManager constructor.
24578
24579 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
24580
24581         * ProgressBar.cs: use clip region in ProgressBar
24582         * ThemeWin32Classic.cs: use clip region in ProgressBar
24583
24584 2004-02-22  Jackson Harper  <jackson@ximian.com>
24585
24586         * BindingsCollection.cs: Remove some debug code.
24587
24588 2005-02-22  Jackson Harper  <jackson@ximian.com>
24589
24590         * BindingContext.cs:
24591         * ControlBindingsCollection.cs:
24592         * CurrencyManager.cs:
24593         * Binding.cs:
24594         * BindingManagerBase.cs: Initial implementation
24595         * BindingsCollection.cs: Add an internal contains method that the
24596         BindingManagerBase uses to ensure bindings aren't added twice to
24597         the collection.
24598         * PropertyManager.cs: Stubbed out.
24599         * Control.cs:
24600         * ContainerControl.cs: Hook up databinding
24601         
24602 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
24603
24604         * XplatUIOSX.cs:
24605           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
24606           Fixed Invalidate/Update chain.
24607           Fixed tons of other minor bugs (this is almost a complete rewrite).
24608
24609 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
24610
24611         * ComboBox.cs: do subcontrol creation when the control is created
24612
24613 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
24614
24615         * Label.cs: fixes image drawing (image and imagelist)
24616         * ThemeWin32Classic.cs: cache brushes
24617         
24618 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
24619
24620         * Form.cs: Move menu drawing code to Theme class
24621         * ComboBox.cs: Move ComboBox drawing code to Theme class
24622         * MenuItem.cs: Move menu drawing code to Theme class
24623         * MenuAPI.cs: Move menu drawing code to Theme class
24624         * ThemeWin32Classic.cs: New methods
24625         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
24626         * ListBox.cs: Move Listbox drawing code to Theme class
24627         * Theme.cs: New methods
24628
24629 2005-02-20  Peter Bartok  <pbartok@novell.com>
24630
24631         * Control.cs:
24632           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
24633             only process mnemonics on those)
24634           - Fixed event sequence for key handling; first calling
24635             ProcessKeyEventArgs now
24636         * TextBoxBase.cs:
24637           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
24638             for processing non-character keys
24639           - Fixed WM_CHAR to generate proper event sequence before processing
24640         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
24641           generation
24642
24643 2005-02-19  Peter Bartok  <pbartok@novell.com>
24644
24645         * UserControl.cs: Added TextChanged event; added attributes
24646         * SizeGrip.cs: Implemented resizing and optional display of grip
24647         * Form.cs: Fixed attribute
24648         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
24649           Changed meaning of ScrollWindow bool argument; instead of the
24650           clear attribute (which will be true usually anyway), it gives the
24651           option of moving child controls as well.
24652         * XplatUIX11.cs:
24653           - Changed to match new ScrollWindow argument
24654           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
24655             now handles the implicit parent window a WM puts around us
24656         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
24657           to work)
24658         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
24659         * TreeView.cs: Adjusted to new ScrollWindow arguments
24660
24661 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
24662
24663         * Form.cs: Menu integration with non-client area
24664         * MenuItem.cs: Menu integration with non-client area
24665         * MenuAPI.cs: Menu integration with non-client area
24666
24667 2005-02-18  Peter Bartok  <pbartok@novell.com>
24668
24669         * MethodInvoker.cs: Added
24670         * MdiLayout.cs: Added
24671         * SendKeys.cs: Started implementation
24672         * ErrorIconAlignment.cs: Added
24673
24674 2005-02-18  Peter Bartok  <pbartok@novell.com>
24675
24676         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
24677         * Form.cs: Added handling for Menu-related Non-client messages
24678
24679 2005-02-17  Peter Bartok  <pbartok@novell.com>
24680
24681         * UpDownBase.cs: Fixed typo, compilation errors
24682         * DomainUpDown.cs: Fixed attribute value
24683
24684 2005-02-16  Miguel de Icaza  <miguel@novell.com>
24685
24686         * UpDownBase.cs: Attach entry events.
24687         Propagate events.
24688         Add ForeColor property, Focused, InterceptArrowKeys (interception
24689         does not work yet).
24690
24691 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
24692
24693         * Form.cs:
24694                 - Redraw non client are on Setmenu
24695                 - Calc proper menu starting point
24696
24697 2005-02-17  Peter Bartok  <pbartok@novell.com>
24698
24699         * Application.cs: Fixed message_filter check
24700
24701 2005-02-17  Peter Bartok  <pbartok@novell.com>
24702
24703         * Application.cs: Now calls registered message filters
24704         * DockStyle.cs: Fixed attribute
24705         * Form.cs: Fixed attribute
24706         * Menu.cs: Fixed attribute
24707         * ToolTip.cs: Fixed attribute
24708         * TreeNode.cs: Added missing attributes and arranged in regions
24709         * PropertyGrid.cs: Fixed signatures
24710         * TreeNodeCollection.cs: Added attributes
24711         * Splitter.cs: Added missing attributes; arranged into regions
24712         * TabPage.cs: Added missing attributes; arranged into regions
24713         * TextBoxBase.cs: Added missing attributes
24714         * TextBox.cs: Added missing attributes
24715         * ArrangeDirection.cs: Added missing attributes
24716         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
24717         * ToolBarButton.cs: Fixed attributes
24718         * AnchorStyles.cs: Fixed attribute
24719         * TrackBar.cs: Fixed attributes
24720         * TabControl.cs: Added missing attributes and arranged into regions
24721         * ToolBar.cs: Fixed attribute
24722         * StatusBar.cs: Fixed signature, organized into regions and added
24723           attributes
24724         * StatusBarPanel.cs: Fixed attributes
24725         * ContentsResizedEventArgs.cs: Implemented
24726         * ContentsResizedEventHandler.cs: Implemented
24727         * DateBoldEventArgs.cs: Implemented
24728         * DateBoldEventHandler.cs: Implemented
24729         * UpDownEventArgs.cs: Implemented
24730         * UpDownEventHandler.cs: Implemented
24731         
24732 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
24733
24734         * Form.cs: first Menu NC refactoring
24735         * MenuAPI.cs: first Menu NC refactoring
24736         
24737 2005-02-16  Peter Bartok  <pbartok@novell.com>
24738
24739         * ImeMode.cs: Added missing attributes
24740         * Menu.cs: Fixed attribute
24741         * GroupBox.cs: Fixed attribute
24742         * Label.cs: Fixed attribute
24743         * ColorDialog.cs (RunDialog): Removed TODO attribute
24744         * ComboBox.cs: Fixed attributes
24745         * ListControl.cs: Added missing attributes
24746         * PropertyGrid.cs: Fixed attributes
24747         * Control.cs: Fixed attributes
24748         * ListViewItem.cs: Added TypeConverter attribute
24749         * NotifyIcon.cs: Fixed attributes
24750         * ListView.cs: Fixed attributes
24751         * ButtonBase.cs: Fixed attribute
24752         * ImageList.cs: Added missing attributes
24753         * ContainerControl.cs: Fixed signature
24754         * CheckedListBox.cs: Fixed attribute; added missing attributes
24755         * Panel.cs: Fixed attributes
24756         * PropertyTabChangedEventArgs.cs: Added missing attribute
24757         * PropertyValueChangedEventArgs.cs: Added missing attribute
24758         * Binding.cs: Fixed attribute
24759         * ListViewItemConverter: Implemented ListViewSubItemConverter class
24760         * ListBox.cs: Fixed attribute; added missing attributes;
24761         * ScrollableControl.cs: Added missing attributes
24762         * PictureBox.cs: Added missing attributes; implemented missing property
24763         * DateTimePicker.cs: Added missing attributes
24764         * Theme.cs (ToolWindowCaptionHeight): Fixed type
24765         * MonthCalendar.cs: Fixed attributes
24766         * StatusBarPanel.cs: Added missing attributes
24767         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
24768
24769 2005-02-16  Peter Bartok  <pbartok@novell.com>
24770
24771         * TextBoxBase.cs: The previous method to enforce height yet remember
24772           the requested high was less than ideal, this is an attempt to do
24773           it better.
24774         * Control.cs: Added comment about possible problem
24775         * Copyright: Updated format
24776         * GridItemType.cs: Fixed swapped values
24777
24778 2005-02-15  Jackson Harper  <jackson@ximian.com>
24779
24780         * BaseCollection.cs: Use property so we never access an
24781         uninitialized list. Also initialize the list in the property.
24782
24783 2005-02-15  Peter Bartok  <pbartok@novell.com>
24784
24785         * GroupBox.cs (ProcessMnemonic): Implemented
24786         * Label.cs (ProcessMnemonic): Implemented
24787         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
24788           hotkeys
24789
24790 2005-02-15  Peter Bartok  <pbartok@novell.com>
24791
24792         * RadioButton.cs (ProcessMnemonic): Implemented
24793         * CheckBox.cs (ProcessMnemonic): Implemented
24794         * Control.cs:
24795           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
24796             handling
24797           - Added internal method to allow calling ProcessMnemonic from other
24798             controls
24799         * ContainerControl.cs:
24800           - Started support for handling validation chain handling
24801           - Implemented ProcessMnemonic support
24802           - Added Select() call to Active, to make sure the active control
24803             receives focus
24804         * Form.cs: Setting toplevel flag for Forms (this was lost in the
24805           FormParent rewrite)
24806         * ThemeWin32Classic.cs:
24807           - DrawCheckBox(): Fixed stringformat to show hotkeys
24808           - DrawRadioButton(): Fixed stringformat to show hotkeys
24809         * CommonDialog.cs: Removed WndProc override, not needed
24810
24811 2005-02-14  Peter Bartok  <pbartok@novell.com>
24812
24813         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
24814           missed those in the rewrite
24815
24816 2005-02-14  Miguel de Icaza  <miguel@novell.com>
24817
24818         * NumericUpDown.cs (Increment, ToString): Add.
24819         (DecimalPlaces): implement.
24820         
24821         Add attributes.
24822         
24823         * UpDownBase.cs: Add the designer attributes.
24824
24825 2005-02-13  Peter Bartok  <pbartok@novell.com>
24826
24827         * Panel.cs: Removed border_style, now in Control
24828         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
24829           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
24830
24831 2005-02-13  Peter Bartok  <pbartok@novell.com>
24832
24833         * MouseButtons.cs: Added missing attributes
24834         * XplatUIStructs.cs: Added enumeration for title styles
24835         * LeftRightAlignment.cs: Added missing attributes
24836         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
24837           it compatible with Graphics.FromHwnd()
24838         * SelectedGridItemChangedEventArgs.cs: Fixed property type
24839         * Keys.cs: Added missing attributes
24840         * SelectionRange.cs: Added missing attributes
24841         * SelectionRangeConverter.cs: Added
24842         * XplatUI.cs:
24843           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
24844             ReleaseMenuDC methods
24845           - Renamed ReleaseWindow to UngrabWindow
24846           - Added proper startup notice to allow version identification
24847         * Form.cs:
24848           - Added missing attributes
24849           - Removed FormParent concept
24850         * Label.cs: Removed border_style field, now in Control
24851         * RadioButton.cs: Now properly selects RadioButton when focus is
24852           received
24853         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
24854         * Control.cs:
24855           - Added missing attributes
24856           - Added borderstyle handling
24857           - Removed FormParent concept support
24858           - Fixed calls to XplatUI to match changed APIs
24859           - Fixed bug that would case us to use disposed Graphics objects
24860           - Removed unneeded internal methods
24861           - PerformLayout(): Fixed to handle DockStyle.Fill properly
24862           - SelectNextControl(): Fixed to properly check common parents
24863         * TextBoxBase.cs: Removed border_style field (now in Control)
24864         * MessageBox.cs:
24865           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
24866             fixed calculations for form size
24867           - Added support for localized strings and icons
24868           - Improved form size calculations, added border
24869         * ListView.cs: Removed border_style field (now in Control)
24870         * X11Structs.cs: Moved several structs from X11 driver here
24871         * X11Keyboard.cs: Changed debug message
24872         * Application.cs: Removed FormParent concept support
24873         * CommonDialog.cs:
24874           - Resetting end_modal flag
24875           - Removed FormParent concept support
24876         * NativeWindow.cs: Removed FormParent concept support
24877         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
24878           Client area and Non-Client whole window to allow support for WM_NC
24879           messages
24880         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
24881           prevent using it until it supports Hwnd as per Geoff Norton's request
24882         * ToolBar.cs: Fixed drawing, was not doing proper drawing
24883         * PictureBox.cs: Removed border_style field, now in Control
24884         * XplatUIWin32.cs: Added new driver methods
24885
24886 2005-02-12  Peter Bartok  <pbartok@novell.com>
24887
24888         * OpacityConverter.cs: Implemented
24889         * Hwnd.cs: Internal class to support drivers that need to emulate
24890           client area/non-client area window behaviour
24891
24892 2005-02-11  Peter Bartok  <pbartok@novell.com>
24893
24894         * KeysConverter.cs: Implemented
24895
24896 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
24897
24898         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
24899         * LinkLabel: Added missing attributes
24900         * MainMenu.cs: fixes ToString
24901         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
24902         * ListBox.cs: fixes event position
24903         * TrackBar.cs: adds missing attributes and events
24904         
24905 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
24906
24907         * MenuItem.cs: Use SystemInformation and bug fixes
24908         * MenuAPI.cs: Use SystemInformation and bug fixes
24909
24910 2005-02-09  Jackson Harper  <jackson@ximian.com>
24911
24912         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
24913         their keystate otherwise things like VK_MENU get stuck "on".
24914
24915 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
24916
24917         * ListBox.cs: Fixes AddRange bug
24918         
24919 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
24920
24921         * ProgressBar.cs
24922                 - Add missing attributes
24923                 - Add missing method
24924                 
24925         * CheckedListBox.cs: Added missing attributes
24926                 - Add missing attributes
24927                 - Remove extra method
24928         
24929         * ComboBox.cs: Added missing attributes
24930         * VScrollBar.cs: Added missing attributes
24931         * ScrollBar.cs:  Added missing attributes
24932         * ListBox.cs: Fixes signature, add missing consts
24933         * LinkArea.cs:   Added missing attributes
24934         
24935
24936 2005-02-08  Peter Bartok  <pbartok@novell.com>
24937
24938         * Menu.cs: Added missing attributes
24939         * MainMenu.cs: Added missing attributes
24940         * GroupBox.cs: Added missing attributes
24941         * Label.cs: Added missing attributes
24942         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
24943         * ColorDialog.cs:
24944           - Added Instance and Options properties
24945           - Added missing attributes
24946         * Cursor.cs: Made Serializable
24947         * NotifyIcon: Added missing attributes
24948         * MenuItem.cs: Added missing attributes
24949         * TextBoxBase.cs: Implemented AppendText() and Select() methods
24950         * Panel.cs: Added Missing attributes
24951         * MonthCalendar.cs: Fixed CreateParams
24952
24953 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
24954         
24955         * LinkLabel.cs:
24956                 - Fixes signature
24957                 - Fixes issues with links
24958                 - Adds the class attributes
24959
24960 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
24961         
24962         * ComboBox.cs:
24963                 - Fixes button when no items available in dropdown
24964                 - Fixes repainting problems
24965                 - Adds the class attributes
24966                 
24967 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
24968
24969         * XplatUIOSX.cs: Detect the menu bar and title bar height from
24970         the current theme.  Cache these on startup.
24971
24972 2005-02-07  Jackson Harper  <jackson@ximian.com>
24973
24974         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
24975         the scrollbar buttons when they are depressed.
24976
24977 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
24978
24979         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
24980         Get the display size from the main displayid.  We currently dont
24981         support multiple display configurations.
24982
24983 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
24984
24985         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
24986
24987 2005-02-07  Miguel de Icaza  <miguel@novell.com>
24988
24989         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
24990
24991 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
24992
24993         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
24994
24995 2005-02-04  Jackson Harper  <jackson@ximian.com>
24996
24997         * ThemeWin32Classic.cs: Respect the clipping rect when
24998         drawing. Only fill the intersection of clips and rects so there
24999         isn't a lot of large fills.
25000         * ScrollBar.cs: Pass the correct clipping rect to the theme
25001         engine. Remove some debug code.
25002
25003 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
25004         
25005         * DateTimePicker.cs:
25006                 - Fixed crash on DateTime.Parse, use Constructor instead
25007
25008 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
25009         
25010         * MenuItem.cs:
25011         * MenuAPI.cs:
25012                 - Owner draw support (MeasureItem and DrawItem)
25013
25014 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
25015         
25016         *  Menu.cs:
25017                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
25018                 - Fixes MenuItems.Add range
25019         * MenuItem.cs:
25020                 - MergeMenu and Clone and CloneMenu functions
25021
25022 2005-02-03  Jackson Harper  <jackson@ximian.com>
25023
25024         * ScrollBar.cs: Make abstract
25025         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
25026         is abstract.
25027
25028 2005-02-03  Jackson Harper  <jackson@ximian.com>
25029
25030         * ScrollBar.cs: First part of my scrollbar fixups. This removes
25031         all the unneeded refreshes and uses invalidates with properly
25032         computed rects.
25033
25034 2005-02-03  Peter Bartok  <pbartok@novell.com>
25035
25036         * ComponentModel.cs: Added
25037         * IDataGridEditingService.cs: Added
25038         * Timer.cs: Added missing attributes
25039         * ToolTip.cs: Added missing attributes
25040
25041 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
25042
25043         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
25044
25045 2005-02-03  Peter Bartok  <pbartok@novell.com>
25046
25047         * ListBox.cs: Added missing attributes
25048
25049 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
25050         
25051         * ListBox.cs:
25052                 - Fixes font height after font change
25053                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
25054                 
25055 2005-02-02  Peter Bartok  <pbartok@novell.com>
25056
25057         * HandleData.cs: Introduced static methods to allow class
25058           to be more self-contained and track it's own HandleData objects
25059         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
25060           HandleData to use new static methods
25061
25062 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
25063
25064         * Combobox.cs:
25065                 - Fixes default size and PreferredHeight
25066                 - Missing events
25067                 - ObjectCollection.Insert implementation
25068                 
25069         * ListControl.cs
25070                 - Fixes signature
25071         * ListBox.cs:
25072                 - Several fixes
25073                 - ObjectCollection.Insert implementation
25074                 - No selection after clean
25075                 - Small fixes
25076
25077 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
25078
25079         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
25080
25081 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
25082
25083         * Combobox.cs:
25084                 - Caches ItemHeight calculation for OwnerDrawVariable
25085                 - Handles dropdown properly
25086                 - Fixes several minor bugs
25087
25088 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
25089
25090         * ListBox.cs:
25091                 - Fixes 71946 and 71950
25092                 - Fixes changing Multicolumn on the fly
25093                 - Fixes keyboard navigation on Multicolumn listboxes
25094
25095 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
25096         
25097         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
25098         crash reporter log.
25099
25100 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
25101
25102         * XplatUIOSX.cs: Allow applications to actually exit.
25103
25104 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
25105
25106         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
25107         their parent at creation time rather than lazily later.  Fixes a major
25108         regression we were experiencing.
25109
25110 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
25111
25112         * ThemeWin32Classic.cs: more date time picker painting fixes
25113         * DateTimePicker.cs: more monthcalendar drop down fixes
25114         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
25115
25116 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
25117
25118         * ScrollBar.cs:
25119                 - When moving the thumb going outside the control should stop the moving
25120                 - Adds the firing of missing events
25121                 - Fixes no button show if Size is not specified
25122                 - End / Home keys for keyboard navigation
25123
25124 2005-01-30  Peter Bartok  <pbartok@novell.com>
25125
25126         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
25127           sanity check to prevent theoretical loop
25128         * XplatUIWin32.cs (SetVisible): Removed debug output
25129         * XplatUIX11.cs (SystrayChange): Added sanity check
25130         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
25131         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
25132           behaviour, valid until the X11 client window rewrite is done
25133         * TextBox.cs (ctor): Setting proper default foreground and background
25134           colors
25135
25136 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
25137
25138         * Theme: Added DrawDateTimePicker to interface
25139         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
25140         * DateTimePicker.cs: Created (still needs keys and painting code)
25141         * DateTimePickerFormat.cs: added
25142         * MonthCalendar.cs: fixed CreateParams for popup window mode
25143           
25144 2005-01-29  Peter Bartok  <pbartok@novell.com>
25145
25146         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
25147           this should also the calculations for ligher/darker
25148         * Theme.cs: Fixed defaults for ScrollBar widths/heights
25149
25150 2005-01-29  Peter Bartok  <pbartok@novell.com>
25151
25152         * ArrangeDirection.cs: Added
25153         * ArrangeStartingPositon.cs: Added
25154         * SystemInformation.cs: Implemented
25155         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
25156           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
25157           used by SystemInformation class
25158         * X11Strucs.cs: Added XSizeHints structure
25159         * MenuAPI.cs:
25160           - Fixed CreateParams to make sure the menu window is always visible
25161           - TrackPopupMenu: Added check to make sure we don't draw the
25162             menu offscreen
25163
25164 2005-01-29  Peter Bartok  <pbartok@novell.com>
25165
25166         * HandleData.cs: Added method for altering invalid area
25167         * TextBoxBase.cs: Implemented TextLength
25168
25169 2005-01-28  Peter Bartok  <pbartok@novell.com>
25170
25171         * XplatUIX11.cs: Improvement over last patch, not sending
25172           the WM_PAINT directly anymore, instead we scroll any pending
25173           exposed areas and let the system pick out the WM_PAINT later
25174
25175 2005-01-28  Peter Bartok  <pbartok@novell.com>
25176
25177         * SWF.csproj: Deleted, no longer used. Instead,
25178           Managed.Windows.Forms/SWF.csproj should be used
25179         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
25180           directly, to avoid a potential race condition with the next
25181           scroll
25182
25183 2005-01-28  Peter Bartok  <pbartok@novell.com>
25184
25185         * XplatUI.cs: Made class internal
25186
25187 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
25188
25189         * CheckedListBox.cs:
25190                 - Draw focus
25191                 - Fixed Drawing
25192                 - Missing methods and events
25193
25194 2005-01-27  Peter Bartok  <pbartok@novell.com>
25195
25196         * Application.cs (Run): Don't use form if we don't have one
25197
25198 2005-01-27  Peter Bartok  <pbartok@novell.com>
25199
25200         * TextBoxBase.cs (get_Lines): Fixed index off by one error
25201
25202 2005-01-27  Peter Bartok  <pbartok@novell.com>
25203
25204         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
25205         * GridItem.cs: Added; Patch by Jonathan S. Chambers
25206         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
25207         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
25208         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
25209         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
25210         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25211         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
25212         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25213         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25214         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25215         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
25216
25217 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
25218
25219         * Combobox.cs:
25220                 - Draw focus on Simple Combobox
25221                 - Fixes drawing issues
25222                 - fixes 71834
25223
25224 2005-01-27  Peter Bartok  <pbartok@novell.com>
25225
25226         * Form.cs:
25227           - Place window in default location, instead of hardcoded 0/0
25228           - Send initial LocationChanged event
25229         * Control.cs:
25230           - UpdateBounds after creation to find out where the WM placed us
25231           - Make sure that if the ParentForm changes location the Form
25232             is notified
25233         * XplatUIX11.cs: XGetGeometry will not return the coords relative
25234             to the root, but to whatever the WM placed around us.
25235             Translate to root coordinates before returning toplevel
25236             coordinates
25237         * XplatUIWin32.cs: Removed debug output
25238         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
25239           flag to GetWindowPos, to allow translation of coordinates on X11
25240
25241 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
25242
25243         * ListBox.cs: connect LostFocus Event
25244
25245 2005-01-27  Peter Bartok  <pbartok@novell.com>
25246
25247         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
25248           XplatUIX11.cs: Extended the Systray API
25249         * Form.cs: Removed debug output
25250         * Application.cs: Fixed focus assignment, always need to call
25251           XplatUI.Activate() since Form.Activate() has rules that may
25252           prevent activation
25253         * NotifyIcon.cs: Should be complete now
25254         * ToolTip.cs: Worked around possible timer bug
25255
25256 2005-01-27  Jackson Harper  <jackson@ximian.com>
25257
25258         * TabControl.cs:
25259         - Only invalidate the effected tabs when the
25260         selected index changes. This reduces drawing and gets rid of some
25261         flicker.
25262         - Only refresh if the tabs need to be shifted, otherwise only
25263         invalidate the slider button.
25264         - On windows the tabs are not filled to right if the slider is
25265         visible.
25266         
25267 2005-01-27  Jackson Harper  <jackson@ximian.com>
25268
25269         * TabControl.cs: Only refresh on mouseup if we are showing the
25270         slider. Also only invalidate the button whose state has changed.
25271
25272 2005-01-26  Peter Bartok  <pbartok@novell.com>
25273
25274         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
25275         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
25276           and SystrayRemove() methods
25277         * XplatUIOSX.cs: Stubbed Systray methods
25278         * XplatUIX11.cs:
25279           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
25280             methods
25281           - Fixed broken XChangeProperty calls (marshalling messed up things)
25282         * X11Structs.cs: Added enums and structs required for Size hinting
25283         * NotifyIcon.cs: Added & implemented
25284
25285 2005-01-26  Jackson Harper  <jackson@ximian.com>
25286
25287         * TabControl.cs: Space vertically layed out tabs properly.
25288
25289 2005-01-26  Peter Bartok  <pbartok@novell.com>
25290
25291         * Form.cs (CreateClientParams): Always set the location to 0,0
25292           since we're a child window.
25293
25294         * Control.cs (SetVisibleCore): Always explicitly setting the location
25295           of a toplevel window, apparently X11 doesn't like to move windows
25296           while they're not mapped.
25297
25298 2005-01-26  Jackson Harper  <jackson@ximian.com>
25299
25300         * TabControl.cs: Implement FillToRight size mode with vertically
25301         rendered tabs.
25302
25303 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
25304
25305         * ControlPaint.cs, ThemeWin32Classic.cs
25306                 - Fixes DrawFocusRectangle
25307
25308 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
25309
25310         * MenuAPI.cs:
25311                 - MenuBar tracking only starts when item is first clicked
25312                 - Fixes menu hidding for multiple subitems
25313                 - Unselect item in MenuBar when item Executed
25314                 - Fixes bug 71495
25315
25316 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
25317
25318         * ListControl.cs:
25319                 - IsInputKey for ListBox
25320         * ListBox.cs:
25321                 - Focus item
25322                 - Shift and Control item selection
25323                 - Implement SelectionMode.MultiExtended
25324                 - Fixes RightToLeft
25325         * ComboBox.cs:
25326                 - IsInputKey implemented
25327                 - Do not generate OnTextChangedEdit on internal txt changes
25328                 
25329 2005-01-23  Peter Bartok  <pbartok@novell.com>
25330
25331         * AccessibleObject.cs: Partially implemented Select()
25332         * MonthCalendar.cs: Added missing attributes and events
25333         * Form.cs: Fixed CreateParams behaviour, now controls derived from
25334           form can properly override CreateParams.
25335         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
25336           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
25337           Control performs Invalidate & Update
25338         * NativeWindow (CreateHandle): Added special handling for Form
25339           and Form.FormParent classes to allow overriding of From.CreateParams
25340         * Control.cs:
25341           - ControlNativeWindow: Renamed 'control' variable to more intuitive
25342             name 'owner'
25343           - ControlNativeWindow: Added Owner property
25344           - Removed usage of Refresh() on property changes, changed into
25345             Invalidate(), we need to wait until the queue is processed for
25346             updates, direct calls might cause problems if not all vars for
25347             Paint are initialized
25348           - Added call to UpdateStyles() when creating the window, to set any
25349             styles that CreateWindow might have ignored.
25350           - Added support for Form CreateParent overrides to UpdateStyles()
25351         * MessageBox.cs: Removed no longer needed FormParent override stuff,
25352           CreateParams are now properly overridable
25353         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
25354           CreateParams are now properly overridable
25355
25356 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
25357
25358         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
25359         OnTextBoxChanged.
25360
25361         Capture LostFocus and OnTextBoxChanged.  The later introduces a
25362         recursive invocation that I have not figured out yet.
25363
25364         Reset the timer when not using (it was accumulating).
25365
25366
25367         (OnTextBoxChanged): Set UserEdit to true here to track whether the
25368         user has made changes that require validation.
25369
25370         Reset changing to avoid loops.
25371
25372 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
25373
25374         * NumericUpDown.cs: Display value at startup.
25375
25376         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
25377         ValidateEditText.
25378
25379         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
25380         filled in.  Added some basic parsing of text.
25381
25382         Still missing the OnXXX method overrides, and figuring out the
25383         events that must be emitted.
25384
25385         * UpDownBase.cs: Handle UserEdit on the Text property.
25386         
25387 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
25388
25389         * ComboBox.cs:
25390           - Fixes IntegralHeight
25391           - ToString method
25392
25393 2005-01-21  Jackson Harper  <jackson@ximian.com>
25394
25395         * TabControl.cs: Set the SelectedIndex property when SelectedTab
25396         is set so that the page visibility is updated and the tabs are
25397         sized correctly.
25398
25399 2005-01-21  Jackson Harper  <jackson@ximian.com>
25400
25401         * TabControl.cs: Use cliping rectangle for blitting. Give the
25402         theme the clipping rect so we can do clipping while
25403         drawing. Remove some debug code.
25404
25405 2005-01-21  Jackson Harper  <jackson@ximian.com>
25406
25407         * TabPage.cs: Add a new method so tab pages can force the tab
25408         control to recalculate the tab page sizes.
25409         * TabControl.cs: UpdateOwner needs to make the tab control recalc
25410         sizes.
25411
25412 2005-01-20  Jackson Harper  <jackson@ximian.com>
25413
25414         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
25415
25416 2005-01-20  Jackson Harper  <jackson@ximian.com>
25417
25418         * TreeView.cs: Set the bounds for nodes properly. They were
25419         getting screwed up when checkboxes were not enabled, but images
25420         were.
25421
25422 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
25423
25424         * ListBox.cs:
25425                 - Owner draw support
25426                 - Fixes
25427                 
25428 2005-01-20  Jackson Harper  <jackson@ximian.com>
25429
25430         * XplatUIStructs.cs: More misc keys
25431         * X11Keyboard.cs: Ignore some control keys.
25432
25433 2005-01-20  Jackson Harper  <jackson@ximian.com>
25434
25435         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
25436         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
25437
25438 2005-01-19  Peter Bartok  <pbartok@novell.com>
25439
25440         * Control.cs: Un-selecting the control when it is loosing focus
25441
25442 2005-01-19  Jackson Harper  <jackson@ximian.com>
25443
25444         * TreeView.cs: Hook up to the text controls leave event so we can
25445         end editing when the users clicks outside the text box.
25446         
25447 2005-01-19  Jackson Harper  <jackson@ximian.com>
25448
25449         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
25450         get set in the conversion array.
25451
25452 2005-01-19  Peter Bartok  <pbartok@novell.com>
25453
25454         * Application.cs (ModalRun): Added a call to CreateControl to ensure
25455           focus is properly set
25456         * Button.cs:
25457           - Added missing attributes
25458           - removed styles, those are already set in the base class
25459         * ButtonBase.cs:
25460           - Added missing attributes
25461           - Added clip window styles
25462         * CheckBox.cs: Added missing attributes
25463         * CommonDialog.cs:
25464           - FormParentWindow.CreateParams: Added required clip styles
25465         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
25466           also filters modifier keys
25467         * MessageBox.cs:
25468           - Added assignment of Accept and Cancel button to enable Enter
25469             and Esc keys in MessageBox dialogs
25470           - FormParentWindow.CreateParams: Added required clip styles
25471         * RadioButton.cs: Added missing attributes
25472         * TextControl.cs: No longer draws selection if control does not
25473           have focus
25474         * TextBoxBase.cs:
25475           - Now draws simple rectangle around test area to make it obvious
25476             there's a control. This is a hack until we properly support borders
25477           - A few simple fixes to support selections better, now erases selected
25478             text when typing, and resets selection when using movement keys
25479
25480 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
25481
25482         * UpDownBase.cs: Added some new properties.
25483
25484         * DomainUpDown.cs: Implement a lot to get my test working.
25485
25486 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
25487
25488         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
25489
25490 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
25491
25492         * OSXStructs (WindowAttributes): Fixed csc complaints
25493
25494 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
25495
25496         * XplayUIOSX.cs:
25497           OSXStructs.cs: Initial refactor to move enums and consts into
25498           OSXStructs and use them in the driver for greater readability.
25499
25500 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
25501
25502         * XplatUIOSX.cs: Initial support for Standard Cursors.
25503         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
25504
25505 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
25506
25507         * ComboBox.cs: ability to change style when the ctrl is already
25508         created, missing methods and events, bug fixes, signature fixes
25509
25510 2005-01-19  Peter Bartok  <pbartok@novell.com>
25511
25512         * Cursors.cs (ctor): Added ctor to fix signature
25513
25514 2005-01-18  Peter Bartok  <pbartok@novell.com>
25515
25516         * Button.cs: Implemented DoubleClick event
25517         * ButtonBase.cs:
25518           - Fixed keyboard handling to behave like MS, where the press of
25519             Spacebar is equivalent to a mousedown, and the key release is
25520             equivalent to mouseup. Now a spacebar push will give the same
25521             visual feedback like a mouse click.
25522           - Added missing attributes
25523           - Added ImeModeChanged event
25524           - Added support for generating DoubleClick event for derived classes
25525         * CheckBox.cs:
25526           - Implemented DoubleClick event
25527           - Added missing attributes
25528         * CommonDialog.cs: Added missing attribute
25529         * ContextMenu.cs: Added missing attributes
25530         * RadioButton.cs:
25531           - AutoChecked buttons do not allow to be unselected when clicked
25532             (otherwise we might end up with no selected buttons in a group)
25533           - Added missing attributes
25534           - Implemented DoubleClickEvent
25535         * ThreadExceptionDialog.cs: Enabled TextBox code
25536
25537 2005-01-18  Peter Bartok  <pbartok@novell.com>
25538
25539         * Form.cs: Removed debug output
25540         * Button.cs: Added support for DoubleClick method
25541
25542 2005-01-18  Peter Bartok  <pbartok@novell.com>
25543
25544         * Form.cs:
25545           - Added method to parent window that allows triggering size
25546             calculations when a menu is added/removed
25547           - set_Menu: Cleaned up mess from early days of Form and Control,
25548             now properly triggers a recalc when a menu is added/removed
25549           - Added case to select form itself as focused form if no child
25550             controls exist
25551           - Added PerformLayout call when showing dialog, to ensure properly
25552             placed controls
25553         * Control.cs:
25554           - Select(): Made internal so Form can access it
25555           - Focus(): Only call Xplat layer if required (avoids loop), and sets
25556             status
25557         * Application.cs (Run): Removed hack and calls PerformLayout instead
25558           to trigger calculation when Form becomes visible
25559
25560 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
25561
25562         * ComboBox.cs: fixes for ownerdraw
25563
25564 2005-01-18  Peter Bartok  <pbartok@novell.com>
25565
25566         * TextControl.cs:
25567           - Sentinel is no longer static, each Document gets it's own, this
25568             avoids locking or alternatively overwrite problems when more
25569             than one text control is used simultaneously.
25570           - Switched to use Hilight and HilightText brushes for text selection
25571
25572         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
25573
25574 2005-01-18  Peter Bartok  <pbartok@novell.com>
25575
25576         * Control.cs:
25577           - Hooked up the following events:
25578                 o ControlAdded
25579                 o ControlRemoved
25580                 o HandleDestroyed
25581                 o ImeModeChanged
25582                 o ParentChanged
25583                 o TabStopChanged
25584                 o Invalidated
25585                 o SystemColorsChanged
25586                 o ParentFontChanged
25587                 o Move
25588           - Removed debug output
25589           - Added a call to the current theme's ResetDefaults when a color change
25590             is detected
25591         * Form.cs: Now setting the proper ImeMode
25592         * Theme.cs: Defined a method to force recreation of cached resources
25593           and rereading of system defaults (ResetDefaults())
25594         * ThemeWin32Classic.cs: Added ResetDefaults() stub
25595
25596 2005-01-17  Peter Bartok  <pbartok@novell.com>
25597
25598         * Control.cs: Added missing attributes
25599
25600 2005-01-17  Jackson Harper  <jackson@ximian.com>
25601
25602         * TreeNode.cs: Implement editing. Add missing properties selected
25603         and visible.
25604         * TreeView.cs: Implement node editing. Also some fixes to use
25605         Invalidate (invalid area) instead of Refresh when selecting.
25606
25607 2005-01-17  Peter Bartok  <pbartok@novell.com>
25608
25609         * Control.cs:
25610           - Implemented InvokeGotFocus() method
25611           - Implemented InvokeLostFocus() method
25612           - Implemented InvokePaint() method
25613           - Implemented InvokePaintBackground() method
25614           - Implemented InvokeClick() method
25615           - Implemented FindForm() method
25616           - Implemented RectangleToClient() method
25617           - Implemented ClientToRectangle() method
25618           - Implemented ResetBackColor() method
25619           - Implemented ResetCursor() method
25620           - Implemented ResetFont() method
25621           - Implemented ResteForeColor() method
25622           - Implemented ResetImeMode() method
25623           - Implemented ResetLeftToRight() method
25624           - Implemented ResetText() method
25625           - Implemented Scale() methods
25626           - Implemented ScaleCore() method
25627           - Implemented Update() method
25628           - Removed unused variables
25629           - Stubbed AccessibilityNotifyClients and
25630             ControlAccessibleObject.NotifyClients() methods (dunno what to do
25631             with those yet)
25632           - Now setting proper default for RightToLeft property
25633           - Fixed bug in SetClientSizeCore that would cause windows to get
25634             really big
25635           - Now sending Click/DoubleClick events
25636           - Now selecting controls when left mouse button is clicked on
25637             selectable control
25638         * AccessibleEvents.cs: Added
25639         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
25640         * XplatUIOSX.cs: Stubbed UpdateWindow() method
25641         * XplatUIWin32.cs: Implemented UpdateWindow() method
25642         * XplatUIX11.cs: Implemented UpdateWindow() method
25643         * Form.cs: Removed stray semicolon causing CS0162 warning
25644         * ThemeWin32Classic.cs: Fixed unused variable warnings
25645         * ScrollableControl.cs: Now calls base method for ScaleCore
25646         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
25647           style to avoid interference with internal click handler (which is
25648           different than standard Control click handling)
25649         * RadioButton.cs:
25650           - Now unchecks all sibling radio buttons when control is
25651             selected (Fixes #68756)
25652           - Removed internal tabstop variable, using the one inherited from
25653             Control
25654
25655 2005-01-17  Jackson Harper  <jackson@ximian.com>
25656
25657         * NavigateEventArgs.cs: Fix base type.
25658         * LinkLabel.cs: Sig fix
25659         
25660 2005-01-17  Jackson Harper  <jackson@ximian.com>
25661
25662         * TreeView.cs: Only invalidate the effected nodes bounds when
25663         selecting nodes.
25664
25665 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
25666
25667         * XplatUIWin32.cs: fixes Win32 marshaling
25668         * XplatUIX11.cs: fixes method signature
25669
25670 2005-01-17  Peter Bartok  <pbartok@novell.com>
25671
25672         * XplatUIX11.cs: Clean up resources when we no longer need them
25673
25674 2005-01-17  Peter Bartok  <pbartok@novell.com>
25675
25676         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
25677           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
25678           and DestroyCursor() methods.
25679         * Cursor.cs: Partially implemented, now supports standard cursors;
25680           still contains some debug code
25681         * Cursors.cs: Implemented class
25682         * Control.cs:
25683           - WndProc(): Added handling of WM_SETCURSOR message, setting the
25684             appropriate cursor
25685           - Implemented Cursor property
25686           - Replaced break; with return; more straightforwar and possibly
25687             faster
25688           - Now properly setting the result for WM_HELP
25689         * X11Structs.cs: Added CursorFontShape enum
25690         * XplatUIStructs.cs:
25691           - Added StdCursor enum (to support DefineStdCursor() method)
25692           - Added HitTest enum (to support sending WM_SETCURSOR message)
25693         * XplatUIX11.cs:
25694           - Now sends the WM_SETCURSOR message
25695           - Implemented new cursor methods
25696         * XplatUIOSX.cs: Stubbed new cursor methods
25697         * XplatUIWin32.cs:
25698           - Implemented new cursor methods
25699           - Added GetSystemMetrics function and associated enumeration
25700
25701 2005-01-15  Peter Bartok  <pbartok@novell.com>
25702
25703         * Control.cs:
25704           - WndProc(): Now handles EnableNotifyMessage
25705           - SelectNextControl(): Fixed bug where if no child or sibling
25706             controls exist we looped endlessly
25707
25708 2005-01-14  Jackson Harper  <jackson@ximian.com>
25709
25710         * TreeView.cs: Recalculate the tab pages when a new one is added
25711         so that the proper bounding rects are created.
25712
25713 2005-01-14  Jackson Harper  <jackson@ximian.com>
25714
25715         * TreeView.cs: Draw a gray box instead of a grip in the lower
25716         right hand corner when there are both horizontal and vertical
25717         scroll bars.
25718
25719 2005-01-14  Jackson Harper  <jackson@ximian.com>
25720
25721         * Control.cs: When erasing backgrounds use FromHwnd instead of
25722         FromHdc when there is a NULL wparam. This occurs on the X driver.
25723         * XplatUIX11.cs: Set the wparam to NULL.
25724
25725 2005-01-13  Jackson Harper  <jackson@ximian.com>
25726
25727         * PictureBox.cs: Implement missing methods (except ToString, need
25728         to test that on windows) and events. When visibility is changed we
25729         need to redraw the image because the buffers are killed. When size
25730         is changed refresh if the sizemode needs it.
25731
25732 2005-01-13  Peter Bartok  <pbartok@novell.com>
25733
25734         * Control.cs (SelectNextControl): Was using wrong method to select
25735           a control
25736
25737 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
25738
25739         * ComboBox.cs: fixes dropstyle
25740
25741 2005-01-13  Peter Bartok  <pbartok@novell.com>
25742
25743         * Form.cs:
25744           - Implemented Select() override
25745           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
25746           - Now sets keyboard focus on startup
25747         * Control.cs (SelectNextControl): Now properly handles directed=true
25748         * TextBoxBase.cs:
25749           - WndProc: Now passes tab key on to base if AcceptTabChar=false
25750           - Added (really bad) focus rectangle (mostly for testing)
25751         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
25752           to enforce redraw on focus changes
25753         * ContainerControl.cs:
25754           - Fixed detection of Shift-Tab key presses
25755           - Fixed traversal with arrow keys
25756         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
25757           gonna keep this or if it's complete yet
25758         
25759 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
25760
25761         * ComboBox.cs: missing properties, fixes
25762
25763 2005-01-13  Peter Bartok  <pbartok@novell.com>
25764
25765         * Panel.cs (ctor): Setting Selectable window style to off
25766         * Splitter.cs (ctor): Setting Selectable window style to off
25767         * GroupBox.cs (ctor): Setting Selectable window style to off
25768         * Label.cs (ctor): Setting Selectable window style to off
25769
25770 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
25771
25772         * UpDownBase.cs (InitTimer): If the timer has been already
25773         created, enable it.
25774
25775         Use a TextBox instead of a Label.
25776
25777 2005-01-12  Jackson Harper  <jackson@ximian.com>
25778
25779         * TreeView.cs: Refresh the tree after sorting the nodes. Always
25780         draw the connecting node lines (when ShowLines is true).
25781         * TreeNode.cs: The nodes index can now be updated. This is used
25782         when a node collection is sorted.
25783         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
25784         insert or an existing unsorted node collection can be sorted.
25785         
25786 2005-01-12  Peter Bartok  <pbartok@novell.com>
25787
25788         * ContainerControl.cs: Implemented ProcessDialogKeys()
25789
25790 2005-01-12  Peter Bartok  <pbartok@novell.com>
25791
25792         * Control.cs:
25793           - Implemented SelectNextControl() method
25794           - Several focus related bug fixes
25795           - Fixed Docking calculations to match MS documentation and
25796             behaviour
25797
25798 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
25799
25800         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
25801         bug fixes
25802
25803 2005-01-12  Peter Bartok  <pbartok@novell.com>
25804
25805         * Control.cs:
25806           - Fixed broken Contains() method
25807           - Implemented GetNextControl() method. Finally. This is the pre-
25808             requisite for focus handling.
25809
25810 2005-01-12  Peter Bartok  <pbartok@novell.com>
25811
25812         * OSXStrucs.cs: Added
25813
25814 2005-01-12  Peter Bartok  <pbartok@novell.com>
25815
25816         * XplatUIWin32.cs:
25817           - Removed PeekMessageFlags
25818           - Implemented SetWindowStyle() method
25819         * XplatUIStructs.cs: Added PeekMessageFlags
25820         * X11Structs: Added missing border_width field to XWindowChanges struct
25821         * XplatUIX11.cs:
25822           - PeekMessage: Now throws exception if flags which are not yet
25823             supported are passed
25824           - Implemented SetWindowStyle() method
25825           - Fixed SetZOrder to handle AfterHwnd properly
25826         * XplatUI.cs: Added SetWindowStyle() method
25827         * XplatUIDriver.cs: Added SetWindowStyle() abstract
25828         * Control.cs:
25829           - Implemented UpdateStyles() method
25830           - Implemented UpdateZOrder() method
25831         * XplatUIOSX.cs: Added SetWindowStyle() stub
25832
25833 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
25834
25835         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
25836         button mouse).
25837
25838
25839 2005-01-11  Jackson Harper  <jackson@ximian.com>
25840
25841         * TreeView.cs: Still need to draw lines to siblings even if out of
25842         the current node is out of the clip.
25843
25844 2005-01-11  Jackson Harper  <jackson@ximian.com>
25845
25846         * TreeView.cs: When setting the hbar/vbar/grip position use
25847         SetBounds so that perform layout is only called once. Also suspend
25848         and resume layout so layout is only done once for all controls.
25849         - Removed some debug fluff
25850         * SizeGrip.cs: Call base implmentation in overriding methods.
25851         - When visibility is changed the drawing buffers are killed so we
25852         need to redraw.
25853
25854 2005-01-11  Jackson Harper  <jackson@ximian.com>
25855
25856         * TreeView.cs: Calculate the open node count while drawing. This
25857         saves us an entire tree traversal for every paint operation. Use
25858         a member var for the open node count so less vars are passed around.
25859
25860 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
25861
25862         * MonthCalendar.cs:
25863         - fixed selection to use mousemove, not mouse polling on timer
25864         * ThemeWin32Classic.cs
25865         - removed redundant unused variable "no_more_content"
25866         
25867 2005-01-11  Peter Bartok  <pbartok@novell.com>
25868
25869         * XplatUIX11.cs (DoEvents): Needs to return when no more events
25870           are pending, so it now calls PeekMessage instead of GetMessage;
25871           implemented a incomplete version of PeekMessage
25872         
25873 2005-01-11  Peter Bartok  <pbartok@novell.com>
25874
25875         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
25876           I18n issues
25877         * TextBoxBase.cs: Added sending of TextChanged event
25878
25879 2005-01-10  Jackson Harper  <jackson@ximian.com>
25880
25881         * TreeView.cs: Try not to draw outside the clipping rectangle on
25882         each node element.
25883
25884 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
25885
25886         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
25887
25888 2005-01-10  Jackson Harper  <jackson@ximian.com>
25889
25890         * TreeView.cs:
25891         - Implement fast scrolling. Now only the newly
25892         exposed nodes are drawn and the old image is moved using the
25893         XplatUI::ScrollWindow method.
25894         - Factor in height of nodes when calculating whether or not the
25895         node is in the clipping rect.
25896
25897 2005-01-10  Jackson Harper  <jackson@ximian.com>
25898
25899         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
25900
25901 2005-01-10  Peter Bartok  <pbartok@novell.com>
25902
25903         * Application.cs: Added temporary hack to resolve all our resize
25904           required issues on startup. This will get fixed properly at
25905           some point in the future
25906
25907 2005-01-10  Jackson Harper  <jackson@ximian.com>
25908
25909         * SizeGrip.cs: New internal class that is used as a sizing
25910         grip control...hence the name.
25911
25912 2005-01-10  Peter Bartok  <pbartok@novell.com>
25913
25914         * Control.cs: Implemented proper TabIndex handling, now assigning
25915           a tabindex when a control is added to a container
25916         * GroupBox.cs (ctor): Now sets the Container style bit, required
25917           for Control.GetNextControl()
25918
25919 2005-01-09  Jackson Harper  <jackson@ximian.com>
25920
25921         * TextBoxBase.cs: Clear window when scrolling (fixes build).
25922
25923 2005-01-09  Peter Bartok <pbartok@novell.com>
25924
25925         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
25926           XplatUIX11.cs: Added ability to control ScrollWindow expose and
25927           an overload for ScrollWindow to allow only scrolling a rectangle
25928
25929 2005-01-09  Peter Bartok <pbartok@novell.com>
25930
25931         * Form.cs:
25932           - Implemented SetDesktopBounds method
25933           - Implemented SetDesktopLocation method
25934
25935 2005-01-08  Jackson Harper  <jackson@ximian.com>
25936
25937         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
25938         the node count has changed, this removes to VScroll::Refresh calls
25939         when drawing.
25940
25941 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
25942
25943         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
25944
25945 2005-01-07  Jackson Harper  <jackson@ximian.com>
25946
25947         * TreeNode.cs: Just update the single node when it is
25948         checked. Don't refresh after toggling, the Expand/Collapse already
25949         handles this.
25950         * TreeView.cs: Respect clipping a little more when drawing. Try
25951         not to redraw things that don't need to be redrawn. Just hide the
25952         scrollbars when they are no longer needed instead of removing
25953         them, so they don't have to be created again and again.
25954         
25955 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
25956
25957         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
25958         coordinates to window space to place the caret properly, FIXED.
25959         Implement GetWindowState & SetWindowState
25960
25961 2005-01-06  Peter Bartok <pbartok@novell.com>
25962
25963         * Form.cs:
25964           - Implemented ClientSize property
25965           - Implemented DesktopBounds property
25966           - Implemented DesktopLocation property
25967           - Implemented IsRestrictedWindow property
25968           - Implemented Size property
25969           - Implemented TopLevel property
25970           - Implemented FormWindowState property
25971         * Control.cs:
25972           - Implemented GetTopLevel() method
25973           - Implemented SetTopLevel() method
25974         * X11Structs.cs (Atom):
25975           - Added AnyPropertyType definition
25976           - Added MapState definiton and updated XWindowAttribute struct
25977         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
25978         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
25979         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
25980         * XplatUIWin32.cs:
25981           - Implemented GetWindowState() and SetWindowState() methods
25982           - Fixed Win32GetWindowLong return type
25983         * XplatUIX11.cs:
25984           - Introduced central function for sending NET_WM messages
25985           - Implemented GetWindowState() and SetWindowState() methods
25986         * TextBoxBase.cs (set_Lines):
25987           - Now uses Foreground color for text added via Text property (Duh!)
25988           - Added code to remember programmatically requested size (fixes
25989             behaviour when Multiline is set after Size)
25990           - Added AutoSize logic
25991
25992 2005-01-06  Jackson Harper  <jackson@ximian.com>
25993
25994         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
25995
25996 2005-01-06  Jackson Harper  <jackson@ximian.com>
25997
25998         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
25999         set to less then 0.
26000
26001 2005-01-06  Jackson Harper  <jackson@ximian.com>
26002
26003         * ScrollableControl.cs: Lazy init the scrollbars.
26004         
26005 2005-01-06  Jackson Harper  <jackson@ximian.com>
26006
26007         * Theme.cs: Speed up getting pens and solid brushes, by using
26008         their ARGB as a hash instead of tostring and not calling Contains.
26009
26010 2005-01-06  Peter Bartok <pbartok@novell.com>
26011
26012         * Form.cs:
26013           - Implemented OnActivated and OnDeactivate event trigger
26014           - Implemented Activate() method
26015           - Fixed ShowDialog() to activate the form that was active before
26016             the dialog was shown
26017         * XplatUIX11.cs:
26018           - Added global active_window var that tracks the currently active
26019             X11 window
26020           - Now always grabs Property changes from the root window to always
26021             catch changes on the active window property
26022           - Added code to PropertyNotify handler to send Active/Inactive
26023             messages when state changes. This puts X11 and Win32 en par on
26024             WM_ACTIVATE notifications (except for double notifications when
26025             the user clicks away from our modal window to another one of our
26026             windows)
26027
26028 2005-01-05  Jackson Harper  <jackson@ximian.com>
26029
26030         * ImageList.cs: Implment ctor
26031
26032 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
26033
26034         * XplatUIOSX.cs: Implement Activate/SetTopmost
26035
26036 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
26037
26038         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
26039
26040 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
26041
26042         * XplatUIOSX.cs: Implement GetActive/SetFocus.
26043
26044 2005-01-05  Peter Bartok <pbartok@novell.com>
26045
26046         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
26047           XplatUIOSX.cs: Added GetActive method to return the currently
26048           active window for the application (or null, if none is active)
26049         * Form.cs:
26050           - Implemented ActiveForm
26051           - Commented out owner assignment for modal dialogs (causes problems
26052             on Win32, since the owner will be disabled)
26053           - Reworked some Active/Focus handling (still incomplete)
26054         * CommonDialog.cs: Commented out owner assignment for modal dialogs
26055           (causes problems on Win32, since the owner will be disabled)
26056         * IWin32Window: Added ComVisible attribute
26057
26058 2005-01-05  Peter Bartok <pbartok@novell.com>
26059
26060         * ToolTip.cs (WndProc): Enable setting focus now that we have the
26061           required XplatUI functions.
26062
26063 2005-01-05  Peter Bartok <pbartok@novell.com>
26064
26065         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
26066           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
26067           to implement focus and activation handling; still incomplete and
26068           with debug output
26069
26070 2005-01-04  Peter Bartok <pbartok@novell.com>
26071
26072         * TextBoxBase.cs: Changed access level for Document property to
26073           match switch to internal for TextControl
26074
26075 2005-01-04  Peter Bartok <pbartok@novell.com>
26076
26077         * AccessibleObject: Added ComVisible attribute
26078
26079 2005-01-04  Jackson Harper  <jackson@ximian.com>
26080
26081         * X11Keyboard.cs: Remove unneeded var.
26082
26083 2005-01-04  Jackson Harper  <jackson@ximian.com>
26084
26085         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
26086         but PAINT.
26087         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
26088         ClientMessage. This makes apps exit cleanly (more often).
26089         
26090 2005-01-04  Jackson Harper  <jackson@ximian.com>
26091
26092         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
26093         handling focus, return correct colors and fonts,
26094         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
26095         handle selection, horizontal scrolling, and mouse interaction.
26096
26097 2005-01-04  Peter Bartok <pbartok@novell.com>
26098
26099         * ICommandExecutor.cs: Added
26100         * IDataGridColumnStyleEditingNotificationService.cs: Added
26101         * IFeatureSupport.cs: Added
26102         * IFileReaderService.cs: Added
26103         * IDataObject.cs: Added ComVisible attribute
26104         * AmbientProperties.cs: Added
26105         * BaseCollection.cs: Added missing attributes
26106         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
26107         * BaseCollection.cs: Added missing attributes
26108         * Binding.cs: Added TypeConverter attribute
26109         * BindingContext.cs: Added DefaultEvent attribute
26110         * BindingsCollection.cs: Added DefaultEvent attribute
26111         * Button.cs: Added DefaultValue attribute
26112         * DragEventArgs.cs: Added ComVisible attribute
26113         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
26114         * KeyEventArgs.cs: Added ComVisible attribute
26115         * KeyPressEventArgs.cs: Added ComVisible attribute
26116         * MouseEventArgs.cs: Added ComVisible attribute
26117         * NavigateEventArgs.cs: Added
26118         * NavigateEventHandler.cs: Added
26119         * FeatureSupport.cs: Added
26120         * OSFeature.cs: Added
26121         * Theme.cs: Added abstract Version property to support OSFeature
26122         * ThemeWin32Classic.cs: Added Version property to
26123           support OSFeature.Themes
26124         * ProgressBar.cs: Removed OnPaintBackground override, not required since
26125           the proper styles to avoid background drawing are set, also doesn't
26126           match MS signature
26127         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
26128         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
26129         * ScrollEventArgs.cs: Added ComVisible attribute
26130         * SplitterEventArgs.cs: Added ComVisible attribute
26131         * AccessibleSelection.cs: Added Flags attribute
26132         * Appearance.cs: Added ComVisible attribute
26133         * Border3DSide.cs: Added ComVisible attribute
26134         * Border3DStyle.cs: Added ComVisible attribute
26135         * BorderStyle.cs: Added ComVisible attribute
26136         * DragAction.cs: Added ComVisible attribute
26137         * ErrorBlinkStyle.cs: Added
26138         * ScrollEventType.cs: Added ComVisible attribute
26139         * AnchorStyles.cs: Added Editor attribute
26140         * DockStyle.cs: Added Editor attribute
26141         * HorizontalAlignment.cs: Added ComVisible attribute
26142         * HelpEventArgs.cs: Added ComVisible attribute
26143         * PaintEventArgs.cs: Added IDisposable
26144
26145 2005-01-04  Peter Bartok <pbartok@novell.com>
26146
26147         * TextControl.cs: Switched Line, LineTag and Document classes to
26148           internal
26149
26150 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
26151
26152         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
26153         Simple mode, fixes, IntegralHeight, etc.
26154
26155 2005-01-04  Peter Bartok <pbartok@novell.com>
26156
26157         * TextBoxBase.cs: Using proper font variable now
26158
26159 2005-01-04  Peter Bartok <pbartok@novell.com>
26160
26161         * Form.cs (ShowDialog): Set parent to owner, if provided
26162         * GroupBox.cs: Removed unused vars
26163         * TextControl.cs:
26164           - Added GetHashCode() for Document and LineTag classes
26165           - Removed unused variables
26166           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
26167             to allow translation between continuous char position and line/pos
26168         * CheckBox.cs: Removed vars that are provided by base class
26169         * RadioButton.cs: Removed vars that are provided by base class, added
26170           new keyword where required
26171         * LinkLabel.cs: Added new keyword where required
26172         * Control.cs (WndProc): Removed unused variable
26173         * TextBoxBase.cs:
26174           - Finished SelectionLength property
26175           - Implemented SelectionStart property
26176           - Implemented Text property
26177           - Removed unused vars
26178         * MessageBox.cs: Added new keyword where required
26179         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
26180           WndProc signature
26181         * MenuAPI.cs: Added new keyword where required
26182         * ButtonBase.cs: Removed vars that are provided by base class, added
26183           new keyword where required
26184         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
26185           argument to double, to allow compiling with csc 2.0 (Atsushi ran
26186           into this)
26187         * Application.cs (Run): Now triggers the ThreadExit event
26188         * CommonDialog.cs: Added new keyword where required; now properly sets
26189           parent (owner) for dialog
26190         * XplatUIX11.cs: Commented out unused vars
26191         * StatusBar.cs: Fixed signature for Text property
26192         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
26193
26194 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
26195
26196         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
26197         TrackBar.cs, MonthCalendar.cs: remove unused vars
26198
26199 2005-01-03  Jackson Harper  <jackson@ximian.com>
26200
26201         * ThemeWin32Classic.cs:
26202         * X11Keyboard.cs: Remove unused vars.
26203
26204 2005-01-03  Peter Bartok  <pbartok@novell.com>
26205
26206         * TextBox.cs:
26207           - set_Text: Tied into TextControl
26208           - set_TextAlignment: Tied into TextControl
26209         * TextControl.cs:
26210           - Added alignment properties and implemented alignment handling
26211             and drawing (still has a bug, not generating proper expose events)
26212           - Added new Line() constructor to allow passing the line alignment
26213           - Fixed selection setting, properly handling end<start now
26214           - Added aligment considerations to RecalculateDocument()
26215         * TextBoxBase.cs:
26216           - Now properly enforces control height for single line controls
26217           - Added support for CharacterCasing
26218           - Added IsInputKey override
26219           - Fixed Keys.Enter logic
26220           - Added SetBoundsCore override
26221           - Fixed mouse selection handling
26222
26223 2005-01-03  Jackson Harper  <jackson@ximian.com>
26224
26225         * TreeView.cs:
26226           - Collapse and uncheck all nodes when CheckBoxes is disabled.
26227           - Checkboxes are always aligned to the bottom of the node,
26228           regardless of item height.
26229           - Use the node bounds to draw the text so we can center it when
26230           the item height is greater then the font height.
26231           - Node::Bounds are only the text part of the node.
26232         * TreeNode.cs: New method to combine collapsing and unchecking all
26233           nodes recursively.
26234
26235 2005-01-02  Jackson Harper  <jackson@ximian.com>
26236
26237         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
26238         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
26239         tree when a check is changed. TODO: Only refresh the checked node.
26240
26241 2004-12-30  Jackson Harper  <jackson@ximian.com>
26242
26243         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
26244         * TreeNode.cs: When collapsing make sure to never collapse the
26245         root node.
26246
26247 2004-12-29  Jackson Harper  <jackson@ximian.com>
26248
26249         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
26250         
26251 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
26252
26253         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
26254
26255 2004-12-28  Peter Bartok  <pbartok@novell.com>
26256
26257         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
26258           not yet assigned
26259
26260 2004-12-28  Peter Bartok  <pbartok@novell.com>
26261
26262         * Control.cs (WndProc): Added WM_HELP handler, now generates
26263           HelpRequested event
26264         * Form.cs: Added HelpButton property and required support code
26265         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
26266
26267 2004-12-28  Peter Bartok  <pbartok@novell.com>
26268
26269         * CommonDialog.cs:
26270           - Made DialogForm.owner variable internal
26271           - Added check to ensure owner form is set before setting
26272             owner properties in CreateParams
26273
26274 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
26275
26276         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
26277           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
26278           GetCursorPos.  Fix major visibility issues.  Rework the windowing
26279           system to support borderless/titleless windows (implements menus).
26280           Fix GetWindowPos.  Implement initial background color support for
26281           views.
26282
26283 2004-12-28  Peter Bartok  <pbartok@novell.com>
26284
26285         * Form.cs (get_CreateParams): Make sure we have an owner before using
26286           the owner variable. Implement proper default if no owner exists
26287
26288 2004-12-28  Peter Bartok  <pbartok@novell.com>
26289
26290         * In preparation for making Managed.Windows.Forms the default build target
26291           for System.Windows.Forms, the following stubbed files were added.
26292           Dialogs are currently being implemented by contributors and are only
26293           short-term place holders.
26294         * ColorDialog.cs: Initial check-in (minmal stub)
26295         * DataGrid.cs: Initial check-in (minimal stub)
26296         * DataGridLineStyle.cs: Initial check-in (minimal stub)
26297         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
26298         * DataGridTableStyle.cs: Initial check-in (minimal stub)
26299         * FontDialog.cs: Initial check-in (minimal stub)
26300         * FileDialog.cs: Initial check-in (minimal stub)
26301         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
26302         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
26303         * OpenFileDialog: Initial check-in (minimal stub)
26304         * IComponentEditorPageSite.cs: Initial check-in
26305         * Splitter.cs: Initial check-in (for Jackson)
26306         * SplitterEventArgs.cs: Initial check-in (for Jackson)
26307         * SplitterEventHandler.cs: Initial check-in (for Jackson)
26308         * TextBox.cs: Initial check-in; still needs some wiring to
26309           TextControl backend
26310         * Form.cs: Implemented ControlBox property
26311         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
26312         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
26313         * TextControl.cs: Added selection functionality; added todo header
26314         * TextBoxBase.cs:
26315           - Implemented Lines property
26316           - Implemented TextHeight property
26317           - Implemented SelectedText property
26318           - Implemented SelectionLength property
26319           - Implemented SelectAll method
26320           - Implemented ToString method
26321           - Removed and cleaned up some debug code
26322           - Implemented (still buggy) mouse text selection
26323
26324 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
26325
26326         * ComboBox.cs: Complete DropDownList implementation, fixes.
26327
26328 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
26329
26330         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
26331         * ComboBoxStyle.cs: ComboBoxStyle enum
26332         * ComboBox.cs: Initial work on ComboBox control
26333
26334 2004-12-21  Peter Bartok  <pbartok@novell.com>
26335
26336         * Control.cs (ctor, CreateParams): Moved setting of is_visible
26337           forward so that anything that creates a window gets the default,
26338           also no longer uses Visible property in CreateParams to avoid
26339           walking up the parent chain and possibly get the wrong visible
26340           status. Fixed IsVisible to no longer walk up to the parent.
26341
26342 2004-12-21  Peter Bartok  <pbartok@novell.com>
26343
26344         * Form.cs (ShowDialog): Unset modality for the proper window
26345  
26346 2004-12-20  Peter Bartok  <pbartok@novell.com>
26347
26348         * CommonDialog.cs: Initial check-in
26349
26350 2004-12-20  Peter Bartok  <pbartok@novell.com>
26351
26352         * Control.cs (Visible): Now uses the parent window instead of the
26353           client area window for the property
26354
26355         * Form.cs
26356           - ShowDialog(): Now uses the proper window for modality
26357           - The default visibility state for the form parent is now false. This
26358             will prevent the user from seeing all the changes to the form and
26359             its controls before the application hits Application.Run()
26360           - Removed some stale commented out code
26361
26362         * NativeWindow.cs:
26363           - Added FindWindow() method to have a method to check for existence
26364             of a window handle
26365           - Added ability to override default exception handling (for example
26366             when debugging with VS.Net; to do this the ExternalExceptionHandler
26367             define must be set
26368           - Removed some useless debug output
26369
26370         * XplatUIX11.cs:
26371           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
26372             not working as expected
26373           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
26374             property to allow switching back to the modal window if focus is
26375             given to another one of our windows (Application Modal)
26376           - Now only sets override_redirect if we create a window
26377             without WS_CAPTION
26378           - Moved EventMask selection before mapping of newly created window
26379             so we can catch the map event as well
26380           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
26381           - Added various Atom related DllImports
26382           - Implemented Exit() method
26383           - .ctor() : No longer shows window if WS_VISIBLE is not defined
26384             in the CreateParams
26385
26386         * MessageBox.cs: Now properly deals with the FormParent window by
26387           providing an override the FormParent CreateParams property to
26388           set as POPUP instead of OVERLAPPED window.
26389
26390 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
26391
26392         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
26393         Minor code cleanup.
26394
26395 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
26396         
26397         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
26398
26399 2004-12-18  Peter Bartok  <pbartok@novell.com>
26400
26401         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
26402           implementing SetModal() method
26403
26404 2004-12-18  Peter Bartok  <pbartok@novell.com>
26405
26406         * X11Structs.cs (XGCValues): Fixed type of function element
26407         * XplatUI.cs: Added ScrollWindow() method
26408         * XplatUIDriver.cs: Added ScrollWindow() abstract
26409         * XplatUIWin32.cs: Implemented ScrollWindow() method
26410         * XplatUIX11.cs: Implemented ScrollWindow() method
26411         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
26412
26413 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
26414
26415         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
26416         Some more keyboard support (INCOMPLETE)
26417
26418 2004-12-17  Peter Bartok  <pbartok@novell.com>
26419
26420         * TextControl.cs:
26421         - Added color attribute to line tags.
26422         - Added color argument to all functions dealing with tags
26423         - Added color argument support to various functions
26424         - Fixed miss-calculation of baseline/shift in certain circumstances
26425
26426         * TextBoxBase.cs: Added new color option to test code
26427
26428 2004-12-17  Jackson Harper  <jackson@ximian.com>
26429
26430         * TreeNode.cs:
26431         * MonthCalendar.cs: Signature fixes
26432
26433 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
26434
26435         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
26436         keyboard event moved it.  Create a new graphics context for each paint resolves this
26437
26438 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
26439
26440         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
26441         Make caret exist and go blink blink.  Initial keyboard support.
26442         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
26443         works.
26444
26445 2004-12-17  Jackson Harper  <jackson@ximian.com>
26446
26447         * XplatUIStructs.cs: Updated set of virtual keycodes.
26448         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
26449
26450 2004-12-17  Jackson Harper  <jackson@ximian.com>
26451
26452         * XplatUIX11.cs: Prune old keyboard code.
26453
26454 2004-12-17  Jackson Harper  <jackson@ximian.com>
26455
26456         * XplatUIX11.cs: When generating mouse wparams get the modifier
26457         keys from the ModifierKeys property.
26458
26459 2004-12-17  Jackson Harper  <jackson@ximian.com>
26460
26461         * X11Keyboard.cs: Send up/down input when generating
26462         messages. Remove some unused vars.
26463
26464 2004-12-17  Jackson Harper  <jackson@ximian.com>
26465
26466         * TabControl.cs:
26467         * TreeView.cs: get rid of warnings.
26468
26469 2004-12-17  Jackson Harper  <jackson@ximian.com>
26470
26471         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
26472
26473 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
26474
26475         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
26476           CheckedListBox.cs: Implementation
26477
26478 2004-12-17  Peter Bartok  <pbartok@novell.com>
26479
26480         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
26481
26482 2004-12-16  Peter Bartok  <pbartok@novell.com>
26483
26484         * TextControl.cs:
26485           - InsertCharAtCaret(): Fixed start pos fixup
26486           - CaretLine_get: No longer derives the line from the tag, the tag
26487             could be stale if lines in the document have been added or deleted
26488           - RebalanceAfterDelete(): Fixed bug in balancing code
26489           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
26490           - Line.Streamline(): Now can also elminate leading empty tags
26491           - DumpTree(): Added a few more tests and prevented exception on
26492             uninitialized data
26493           - Added Debug section for Combining lines
26494           - Delete(): Now copies all remaining properties of a line
26495           
26496         * TextBoxBase.cs:
26497           - Left mousebutton now sets the caret (and middle button still acts
26498             as formatting tester, which must go away soon)
26499           - Added Debug section for Deleting/Combining lines
26500           - Fixed calculations for UpdateView after Combining lines
26501
26502 2004-12-16  Peter Bartok  <pbartok@novell.com>
26503
26504         * TextControl.cs: Now properly aligns text on a baseline, using the
26505           new XplatUI.GetFontMetrics() method. Simplified several calculations
26506         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
26507           defined
26508
26509 2004-12-16  Peter Bartok  <pbartok@novell.com>
26510
26511         * XplatUI.cs: Added GetFontMetrics() method
26512         * XplatUIDriver.cs: Added GetFontMetrics() abstract
26513         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
26514           into libgdiplus, our private GetFontMetrics function
26515         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
26516         * XplatUIWin32.cs: Implemented GetFontMetrics() method
26517
26518 2004-12-16  Jackson Harper  <jackson@ximain.com>
26519
26520         * XplatUIStruct.cs: Add enum for dead keys
26521         * X11Keyboard.cs: Map and unmap dead keys.
26522
26523 2004-12-16  Jackson Harper  <jackson@ximian.com>
26524
26525         * X11Keyboard.cs: Detect and use the num lock mask.
26526
26527 2004-12-16  Peter Bartok  <pbartok@novell.com>
26528
26529         * Control.cs (CreateGraphics): Added check to make sure the
26530           handle of the window exists before calling Graphics.FromHwnd()
26531
26532 2004-12-16  Peter Bartok  <pbartok@novell.com>
26533
26534         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
26535           contains a lot of code that's not supposed to be there for the
26536           real thing, but required for developing/testing the textbox
26537           backend.
26538
26539 2004-12-16  Peter Bartok  <pbartok@novell.com>
26540
26541         * TextControl.cs:
26542         - Fixed Streamline method
26543         - Added FindTag method to Line
26544         - Added DumpTree method for debugging
26545         - Added DecrementLines() method for deleting lines
26546         - Fixed UpdateView to update the cursor to end-of-line on single-line
26547           updates
26548         - Added PositionCaret() method
26549         - Fixed MoveCaret(LineDown) to move into the last line, too
26550         - Added InsertChar overload
26551         - Fixed InsertChar tag offset calculations
26552         - Added DeleteChar() method
26553         - Added Combine() method for folding lines
26554         - Fixed Delete() method, no longer allocates wasted Line object and
26555           now copies all properties when swapping nodes
26556         - Delete() method now updates document line counter
26557
26558 2004-12-15  Jackson Harper  <jackson@ximian.com>
26559
26560         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
26561         * X11Keyboard.cs: Expose the currently selected modifier keys
26562         through a property.
26563
26564 2004-12-15  Peter Bartok  <pbartok@novell.com>
26565
26566         * TextControl.cs: Initial check-in. Still incomplete
26567
26568 2004-12-15  Jackson Harper  <jackson@ximian.com>
26569
26570         * TreeNode.cs:
26571         * TreeView.cs: Fix build on csc (second time today ;-))
26572
26573 2004-12-15  Jackson Harper  <jackson@ximian.com>
26574
26575         * TreeView.cs: Store the treenodes plus/minus box bounds when it
26576         is calculated and use this for click testing.
26577         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
26578
26579 2004-12-15  Jackson Harper  <jackson@ximian.com>
26580
26581         * TreeView.cs: Pass the nodes image index to the image list when
26582         drawing that image.
26583
26584 2004-12-15  Jackson Harper  <jackson@ximian.com>
26585
26586         * X11Keyboard.cs: Set messages hwnd.
26587         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
26588         post_message calls.
26589
26590 2004-12-15  Jackson Harper  <jackson@ximian.com>
26591
26592         * X11Keyboard.cs: Fix to compile with csc.
26593         
26594 2004-12-15  Jackson Harper  <jackson@ximian.com>
26595
26596         * X11Structs.cs: Add key mask values
26597         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
26598         * X11Keyboard.cs: New file - Extrapolates and interpolates key
26599         down/up foo into WM_CHAR foo
26600         * KeyboardLayouts.cs: Common keyboard layouts
26601         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
26602         post messages into the main queue.
26603
26604 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
26605
26606         * Button.cs: implement ProcessMnemonic
26607         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
26608           brushes everytime
26609         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
26610         * ButtonBase.cs: Show HotkeyPrefix (not the &)
26611
26612 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
26613         
26614         * MonthCalendar.cs: Implemented click-hold for next/previous month
26615           and date selection
26616           
26617 2004-12-11  Peter Bartok  <pbartok@novell.com>
26618
26619         * X11Structs.cs:
26620           - Added XKeyboardState (moved from XplatUIX11.cs)
26621           - Added XCreateGC related enums and structures
26622           - Added GXFunction for XSetFunction
26623
26624         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
26625
26626         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
26627           CaretVisible() calls
26628
26629         * ToolTip.cs: Added code to prevent stealing focus from app windows
26630
26631         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
26632           DestroyCaret, SetCaretPos and CaretVisible)
26633
26634         * XplatUIX11.cs:
26635           - Added implementation for caret functions
26636           - Moved hover variables into a struct, to make it a bit easier
26637             on the eyes and to debug
26638           - Removed XKeyboardState (moved to XplatUIX11.cs)
26639           - Moved Keyboard properties into the properties region
26640
26641         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
26642           call to get a graphics context for our control
26643
26644         * XplatUIOSX.cs: Added empty overrides for the new caret functions
26645
26646         * TreeView.cs: Fixed bug. No matter what color was set it would always
26647           return SystemColors.Window
26648
26649         * XplatUIWin32.cs: Implemented caret overrides
26650
26651 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
26652
26653         * ListBox.cs: fire events, implement missing methods and properties,
26654         sorting.
26655
26656 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
26657
26658         * MonthCalendar.cs: invalidation bug fixing
26659         * ThemeWin32Classic.cs: paint fixing
26660
26661 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
26662
26663         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
26664         prepare the CGContextRef there now.
26665
26666 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
26667
26668         * MonthCalendar.cs:
26669           - optimisationL only invalidate areas that have changed
26670         * ThemeWin32Classic.cs:
26671           - only paint parts that intersect with clip_area
26672
26673 2004-12-09  Peter Bartok  <pbartok@novell.com>
26674
26675         * Application.cs: Undid changes from r37004 which cause problems
26676         on X11
26677
26678 2004-12-09  Ravindra  <rkumar@novell.com>
26679
26680         * ToolBar.cs: Added support for displaying ContextMenu
26681         attached to a button on ToolBar.
26682         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
26683         property.
26684
26685 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
26686
26687         * Label.cs: autosize works in text change and removes unnecessary
26688         invalidate
26689
26690 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
26691
26692         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
26693         remove warnings
26694
26695 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
26696
26697         * XplatUIOSX.cs: Added mouse move/click/grab support
26698         Remove some debugging WriteLines not needed anymore.
26699         Add window resizing/positioning.
26700         Fix visibility on reparenting.
26701
26702 2004-12-08  Peter Bartok  <pbartok@novell.com>
26703
26704         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
26705
26706 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
26707
26708         * XplatUIOSX.cs: Initial checkin
26709         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
26710
26711 2004-12-03  Ravindra <rkumar@novell.com>
26712
26713         * ListView.cs: Added some keybindings and fixed scrolling.
26714         ScrollBars listen to ValueChanged event instead of Scroll
26715         Event. This would let us take care of all changes being
26716         done in the scrollbars' values programmatically or manually.
26717         * ListView.cs (CanMultiselect): Added a check for shift key.
26718         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
26719         * ListViewItem.cs (Clone): Fixed. We need to make a copy
26720         of ListViewSubItemCollection as well.
26721
26722 2004-12-06  Peter Bartok <pbartok@novell.com>
26723
26724         * Control.cs (Parent): Added check and exception to prevent
26725         circular parenting
26726
26727 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
26728
26729         * ListBox.cs: implemented clipping, selection single and multiple,
26730         bug fixing
26731
26732 2004-12-03  Ravindra <rkumar@novell.com>
26733
26734         * ListView.cs (ListView_KeyDown):
26735         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
26736         when CTRL key is pressed.
26737         * ListViewItem.cs (Selected): Fixed setting the property.
26738
26739 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
26740
26741         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
26742
26743         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
26744         MinimizeBox, ShowInTaskbar, TopMost properties.
26745
26746         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
26747         will be implemented).
26748
26749 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
26750
26751         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
26752
26753         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
26754         tests.
26755         
26756         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
26757         
26758         * TreeView.cs: BackColor is Colors.Window.
26759
26760 2004-12-01  Jackson Harper  <jackson@ximian.com>
26761
26762         * TreeView.cs: When resizing the tree if the user is making it
26763         smaller we don't get expose events, so we need to handle adding
26764         the horizontal scrollbar in the size changed handler as well as
26765         the expose handler.
26766
26767 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
26768
26769         * DrawItemState.cs: fixes wrong enum values
26770
26771 2004-12-01  Jackson Harper  <jackson@ximian.com>
26772
26773         * TreeView.cs: Resize the hbar as well as the vbar on resize.
26774
26775 2004-12-01  Jackson Harper  <jackson@ximian.com>
26776
26777         * NodeLabelEditEventArgs.cs:
26778         * NodeLabelEditEventHandler.cs:
26779         * OpenTreeNodeEnumerator.cs:
26780         * TreeNode.cs:
26781         * TreeNodeCollection.cs:
26782         * TreeView.cs:
26783         * TreeViewAction.cs:
26784         * TreeViewCancelEventArgs.cs:
26785         * TreeViewCancelEventHandler.cs:
26786         * TreeViewEventArgs.cs:
26787         * TreeViewEventHandler.cs: Initial implementation.
26788
26789 2004-12-01  Ravindra <rkumar@novell.com>
26790
26791         * ListView.cs (CalculateListView): Fixed scrolling related
26792         calculations. Also, removed some debug statements from other
26793         places.
26794         * ListViewItem.cs: Changed access to 'selected' instance variable
26795         from private to internal.
26796         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
26797
26798 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
26799
26800         * ThemeWin32Classic.cs: remove cache of brush and pens for
26801         specific controls and use the global system, fixes scrollbutton
26802         bugs (for small sizes, disabled, etc)
26803         
26804         * ScrollBar.cs: does not show the thumb for very small controls
26805         (as MS) and allow smaller buttons that the regular size
26806
26807 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
26808
26809         * UpDownBase.cs: Add abstract methods for the interface.
26810         Add new virtual methods (need to be hooked up to TextEntry when it
26811         exists).
26812         Add override methods for most features.
26813         Computes the size, forces the height of the text entry.
26814
26815         * NumericUpDown.cs: Put here the current testing code.
26816
26817         * Set eol-style property on all files that do not have mixed line
26818         endings, to minimize the future problems.  There are still a few
26819         files with mixed endings, and someone should choose whether they
26820         want to move it or not.
26821
26822 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
26823
26824         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
26825         System.Colors
26826         
26827 2004-11-30  Ravindra <rkumar@novell.com>
26828
26829         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
26830         drawing and replaced use of SystemColors by theme colors.
26831         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
26832         * ListView.cs (ListViewItemCollection.Add): Throw exception when
26833         same ListViewItem is being added more than once.
26834
26835 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
26836
26837         * MonthCalendar.cs:
26838           - ControlStyles love to make the control not flicker
26839           
26840 2004-11-30  Peter Bartok  <pbartok@novell.com>
26841
26842         * CharacterCasing.cs: Added
26843
26844 2004-11-29  Peter Bartok  <pbartok@novell.com>
26845
26846         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
26847           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
26848           I am removing these files as they conflict with already completed
26849           work. While it is fantastic to get contributions to MWF, I
26850           respectfully ask that everyone please coordinate their contributions
26851           through mono-winforms-list or #mono-winforms at this time. We're
26852           explicitly avoiding stubbing and don't want controls that don't have
26853           their basic functionality implemented in svn. Please also see
26854           http://www.mono-project.com/contributing/winforms.html
26855
26856
26857 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
26858
26859         * Application.cs (ModalRun): Don't hang after exit.
26860
26861         * Theme.cs: New TreeViewDefaultSize property.
26862
26863         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
26864         with less hardcoded SystemColors constant.
26865         Implemented TreeViewDefaultSize.
26866
26867         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
26868         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
26869
26870
26871 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
26872
26873         * MonthCalendar.cs:
26874           - Fix NextMonthDate and PrevMonthDate click moving calendar
26875
26876 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
26877
26878         * MonthCalendar.cs:
26879           - Fix usage of ScrollChange Property when scrolling months
26880
26881 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
26882
26883         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
26884          - Fixes menu destroying
26885          - Support adding and removing items on already created menus
26886
26887 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
26888
26889         * MonthCalendar.cs:
26890           - Re-worked all bolded dates handling to match win32
26891         * ThemeWin32Classic.cs:
26892           - Fixed rendering with bolded dates
26893
26894 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
26895
26896         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
26897         - Horizontal scroolbar
26898         - Multicolumn
26899         - Fixes
26900
26901
26902 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
26903
26904         * MonthCalendar.cs:
26905           - Fix Usage of MaxSelectionCount from SelectionRange
26906           - Fixed Shift + Cursor Selection
26907           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
26908           - Fixed normal cursor selection to be compat with win32
26909           - Fixed Shift + Mouse Click selection
26910
26911 2004-11-24  Peter Bartok <pbartok@novell.com>
26912
26913         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
26914         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
26915         * XplatUIX11.cs:
26916           - CreatedKeyBoardMsg now updates keystate with Alt key
26917           - Added workaround for timer crash to CheckTimers, Jackson will
26918             develop a proper fix and check in later
26919           - Implemented DispatchMessage
26920           - Removed calling the native window proc from GetMessage (call
26921             now moved to DispatchMessage)
26922
26923         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
26924           the keydata (Fixes bug #69831)
26925
26926         * XplatUIWin32.cs:
26927           - (DispatchMessage): Switched to return IntPtr
26928           - Added DllImport for SetFocus
26929
26930 2004-11-24  Ravindra <rkumar@novell.com>
26931
26932         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
26933         background drawing.
26934         * ListViewItem.cs: Fixed various properties, calculations
26935         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
26936         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
26937         and some internal properties. Fixed MouseDown handler and Paint
26938         method.
26939
26940 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
26941
26942         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
26943
26944 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
26945
26946         * ContainerControl.cs: correct accidental check in of local changes
26947
26948 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
26949
26950         * ThemeWin32Classic.cs:
26951                 - Fixed Drawing Last month in grid (sometimes not showing)
26952         * MonthCalendar.cs:
26953                 - Fixed title width calculation bug (makeing title small)
26954
26955 2004-11-23  Peter Bartok <pbartok@novell.com>
26956
26957         * XplatUIX11.cs:
26958           - Added generation of WM_MOUSEHOVER event
26959           - Added missing assignment of async_method atom
26960           - Fixed WM_ERASEBKGND; now only redraws the exposed area
26961
26962 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
26963
26964         * ThemeWin32Classic.cs:
26965                 - Fixed Drawing of today circle when showtodaycircle not set
26966                 - fixed drawing of first and last month in the grid (gay dates)
26967         * MonthCalendar.cs:
26968                 - Fixed Drawing of today circle
26969                 - Fixed drawing of grady dates
26970                 - Fixed HitTest for today link when ShowToday set to false
26971                 - Fixed DefaultSize to obey ShowToday
26972
26973 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
26974
26975         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
26976         * System.Windows.Forms/Theme.cs
26977         * MonthCalendar.cs: added for MonthCalendar
26978         * SelectionRange.cs: added for MonthCalendar
26979         * Day.cs: added for MonthCalendar: added for MonthCalendar
26980         * DateRangeEventArgs.cs: added for MonthCalendar
26981         * DateRangeEventHandler.cs: added for MonthCalendar
26982
26983 2004-11-22  Ravindra <rkumar@novell.com>
26984
26985         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
26986         property.
26987
26988 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
26989
26990         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
26991         event handler.
26992         
26993         * NumericUpDown.cs: Added new implementation.
26994         * UpDownBase.cs: Added new implementation.
26995
26996         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
26997         implementations.
26998         
26999         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
27000         implementations.
27001
27002         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
27003         methods.
27004
27005 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
27006
27007         * Timer.cs  (Dispose): Should call the base dispose when
27008         overriding.
27009
27010 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
27011
27012         * ScrollBar.cs: updates thumb position when max, min or increment
27013         is changed
27014
27015 2004-11-21  Ravindra <rkumar@novell.com>
27016
27017         * ListView.cs: Implemented item selection, activation and
27018         column header style. Fixed properties to do a redraw, if
27019         required. Added support for MouseHover, DoubleClick, KeyDown
27020         and KeyUp event handling and some minor fixes.
27021         * ListViewItem.cs: Fixed constructor.
27022         * ThemeWin32Classic.cs: Improved drawing for ListView.
27023
27024 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
27025
27026         * ThemeWin32Classic.cs: initial listbox drawing code
27027         * DrawMode.cs: new enumerator
27028         * ListControl.cs: stubbed class
27029         * ListBox.cs: initial implementation
27030         * Theme.cs: new methods definitions
27031         * SelectionMode.cs: new enumerator
27032
27033 2004-11-17  Peter Bartok  <pbartok@novell.com>
27034
27035         * XplatUIWin32.cs: Added double-click events to the class style
27036         * Control.cs (WndProc):
27037           - Added handling of click-count to MouseDown/ MouseUp events.
27038           - Added handling of middle and right mouse buttons
27039           - Removed old debug code
27040
27041 2004-11-17  Jackson Harper  <jackson@ximian.com>
27042
27043         * XplatUIX11.cs: Use the new Mono.Unix namespace.
27044
27045 2004-11-17  Ravindra <rkumar@novell.com>
27046
27047         * ListView.cs: Added event handling for MouseMove/Up/Down.
27048         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
27049         * ThemeWin32Classic.cs: We need to clear the graphics context and
27050         draw column header in a proper state.
27051
27052
27053 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
27054
27055         *  Menu.cs: fixes signature
27056
27057 2004-11-16  Peter Bartok  <pbartok@novell.com>
27058
27059         * XplatUIX11.cs (GetMessage): Implemented generation of
27060           double click mouse messages
27061
27062 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
27063
27064         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
27065         not by menu
27066
27067 2004-11-11  Peter Bartok  <pbartok@novell.com>
27068
27069         * HandleData.cs: Added Visible property
27070         * XplatUIX11.cs (IsVisible): Now uses Visible property from
27071           HandleData
27072         * XplatUIX11.cs: Removed old debug leftovers
27073         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
27074         * Control.cs (WndProc): Removed old debug leftovers,
27075           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
27076           needed WM_SIZE handling
27077
27078 2004-11-11  Jackson Harper  <jackson@ximian.com>
27079
27080         * OwnerDrawPropertyBag.cs:
27081         * TreeViewImageIndexConverter.cs: Initial implementation
27082
27083 2004-11-10  Jackson Harper  <jackson@ximian.com>
27084
27085         * ThemeWin32Classic.cs:
27086         * TabControl.cs: instead of moving tabs by the slider pos just
27087         start drawing at the tab that is offset by the slider. This way
27088         scrolling always moves by exactly one tab.
27089
27090 2004-11-10  Jackson Harper  <jackson@ximian.com>
27091
27092         * TabControl.cs: You can only scroll left when the slider has
27093         already ben moved right.
27094         
27095 2004-11-10  Jackson Harper  <jackson@ximian.com>
27096
27097         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
27098         the clip area.
27099         
27100 2004-11-10  Jackson Harper  <jackson@ximian.com>
27101
27102         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
27103         clip area.
27104         
27105 2004-11-09  Jackson Harper  <jackson@ximian.com>
27106
27107         * TabControl.cs (CalcXPos): New helper method so we can determine
27108         the proper place to start drawing vertical tabs.
27109         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
27110         
27111 2004-11-09  Jackson Harper  <jackson@ximian.com>
27112
27113         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
27114         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
27115         and Bottom, left and right are illegal values for this and
27116         multiline is enabled when the alignment is set to left or right.
27117         (DrawTab): Each alignment block should draw the text itself now
27118         because Left requires special love. Also add rendering for Left
27119         aligned tabs.
27120         
27121 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
27122
27123         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
27124         does not destroy the windows, removes debugging messages
27125
27126 2004-11-09  jba  <jba-mono@optusnet.com.au>
27127
27128         * ThemeWin32Classic.cs
27129         (DrawButtonBase): Fix verticle text rect clipping in windows
27130         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
27131         rendering and incorrect text rect clipping
27132         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
27133         rendering and incorrect text rect clipping
27134         
27135 2004-11-08  Jackson Harper  <jackson@ximian.com>
27136
27137         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
27138         bottom when they are bottom aligned so the bottoms of the tabs get
27139         displayed.
27140         * TabControl.cs (DropRow): Move rows up instead of down when the
27141         tab control is bottom aligned.
27142
27143 2004-11-08 13:59  pbartok
27144
27145         * XplatUIX11.cs:
27146           - Added handling for various window styles
27147           - Added handling for popup windows
27148           - Added SetTopmost handling
27149
27150 2004-11-08 13:55  pbartok
27151
27152         * XplatUIWin32.cs:
27153           - Added argument to SetTopmost method
27154           - Fixed broken ClientToScreen function
27155
27156 2004-11-08 13:53  pbartok
27157
27158         * XplatUIStructs.cs:
27159           - Added missing WS_EX styles
27160
27161 2004-11-08 13:53  pbartok
27162
27163         * XplatUI.cs, XplatUIDriver.cs:
27164           - Added argument to SetTopmost
27165
27166 2004-11-08 13:52  pbartok
27167
27168         * X11Structs.cs:
27169           - Added XSetWindowAttributes structure
27170           - Improved XWindowAttributes structure
27171           - Added SetWindowValuemask enum
27172           - Added window creation arguments enum
27173           - Added gravity enum
27174           - Added Motif hints structure
27175           - Added various Motif flags and enums
27176           - Added PropertyMode enum for property functions
27177
27178 2004-11-08 13:50  pbartok
27179
27180         * Form.cs:
27181           - Fixed arguments for updated SetTopmost method
27182
27183 2004-11-08 13:49  pbartok
27184
27185         * ToolTip.cs:
27186           - Fixed arguments for updated SetTopmost function
27187           - Fixed usage of PointToClient
27188
27189 2004-11-08 13:44  pbartok
27190
27191         * MenuAPI.cs:
27192           - Added Clipping of children and siblings
27193
27194 2004-11-08 13:41  pbartok
27195
27196         * MainMenu.cs:
27197           - Removed SetMenuBarWindow call. We do this in Form.cs
27198
27199 2004-11-08 13:40  jackson
27200
27201         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
27202           scrolling jimmi in the correct location with bottom aligned tabs
27203
27204 2004-11-08 13:36  pbartok
27205
27206         * ContainerControl.cs:
27207           - Implemented BindingContext
27208           - Implemented ParentForm
27209
27210 2004-11-08 12:46  jackson
27211
27212         * TabControl.cs: Put bottom rendered tabs in the right location
27213
27214 2004-11-08 07:15  jordi
27215
27216         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
27217           removes dead code
27218
27219 2004-11-05 17:30  jackson
27220
27221         * TabControl.cs: When selected tabs are expanded make sure they
27222           don't go beyond the edges of the tab control
27223
27224 2004-11-05 14:57  jackson
27225
27226         * TabControl.cs: Reset show_slider so if the control is resized to
27227           a size where it is no longer needed it's not displayed anymore
27228
27229 2004-11-05 13:16  jackson
27230
27231         * TabControl.cs: Make tab pages non visible when added to the
27232           control
27233
27234 2004-11-05 12:42  jackson
27235
27236         * TabControl.cs: Implement SizeMode.FillToRight
27237
27238 2004-11-05 12:16  jackson
27239
27240         * Control.cs: Do not call CreateHandle if the handle is already
27241           created
27242
27243 2004-11-05 11:46  jackson
27244
27245         * TabControl.cs: Remove superflous call to CalcTabRows
27246
27247 2004-11-05 09:07  jackson
27248
27249         * XplatUIX11.cs: Update for Mono.Posix changes
27250
27251 2004-11-05 07:00  ravindra
27252
27253         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
27254           scrolling.
27255
27256 2004-11-04 22:47  jba
27257
27258         * ThemeWin32Classic.cs:
27259           - Fix Button rendering for FlatStyle = Flat or Popup
27260           - Fix RadioButton and CheckBox rendering when Appearance = Button
27261             (normal and flatstyle).
27262           - Correct outer rectangle color when drawing focus rectangle
27263           - Adjust button bounds to be 1 px smaller when focused
27264           - Make button not draw sunken 3d border when pushed (windows compat)
27265           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
27266           - Offset the text in RadioButton and Checkbox when being rendered as
27267           a button.
27268           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
27269           radiobuttons
27270           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
27271           - Fixed disabled text rendering for normally rendered radiobuttons
27272
27273 2004-11-04 10:26  jackson
27274
27275         * TabControl.cs: Recalculate tab rows when resizing
27276
27277 2004-11-04 07:47  jordi
27278
27279         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
27280           collection completion, drawing issues, missing features
27281
27282 2004-11-04 05:03  ravindra
27283
27284         * ScrollBar.cs:
27285                 - We need to recalculate the Thumb area when
27286                 LargeChange/maximum/minimum values are changed.
27287           - We set the 'pos' in UpdatePos() method to minimum, if it's less
27288                 than minimum. This is required to handle the case if large_change is
27289                 more than max, and use LargeChange property instead of large_change
27290                 variable.
27291           - We return max+1 when large_change is more than max, like MS does.
27292
27293 2004-11-04 04:29  ravindra
27294
27295         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
27296                 - Changed default value signatures (prefixed all with ListView).
27297                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
27298                 ListView.
27299           - Fixed calculations for ListViewItem and implemented Clone()
27300           method.
27301
27302 2004-11-04 04:26  ravindra
27303
27304         * Theme.cs, ThemeWin32Classic.cs:
27305                 - Changed default ListView values signatures (prefixed all with
27306                 ListView).
27307           - Fixed default size values for VScrollBar and HScrollBar.
27308                 - Fixed DrawListViewItem method.
27309
27310 2004-11-04 04:05  ravindra
27311
27312         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
27313
27314 2004-11-04 04:04  ravindra
27315
27316         * ImageList.cs: Implemented the missing overload for Draw method.
27317
27318 2004-11-03 19:29  jackson
27319
27320         * TabControl.cs: Handle dropping rows on selection properly
27321
27322 2004-11-03 11:59  jackson
27323
27324         * TabControl.cs: remove debug code
27325
27326 2004-11-03 11:52  jackson
27327
27328         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
27329           the scrolly widgerywoo
27330
27331 2004-11-02 13:52  jackson
27332
27333         * TabControl.cs: Resize the tab pages and tabs when the tab control
27334           is resized
27335
27336 2004-11-02 13:40  jackson
27337
27338         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
27339           selected tab to the bottom
27340
27341 2004-11-02 13:39  jackson
27342
27343         * TabPage.cs: Store the tab pages row
27344
27345 2004-11-02 12:33  jordi
27346
27347         * MenuItem.cs: fixes handle creation
27348
27349 2004-11-02 11:42  jackson
27350
27351         * TabControl.cs: signature fix
27352
27353 2004-11-02 08:56  jackson
27354
27355         * TabControl.cs: Calculate whether the tab is on an edge properly.
27356           Remove top secret debugging code
27357
27358 2004-11-01 19:57  jackson
27359
27360         * TabControl.cs: Add click handling, and proper sizing
27361
27362 2004-11-01 19:47  jackson
27363
27364         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
27365           tab controls
27366
27367 2004-11-01 19:39  jackson
27368
27369         * TabPage.cs: add internal property to store the bounds of a tab
27370           page
27371
27372 2004-10-30 04:23  ravindra
27373
27374         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
27375           values.
27376
27377 2004-10-30 04:21  ravindra
27378
27379         * ListView.cs, ListViewItem.cs: Added support for scrolling and
27380           fixed calculations.
27381
27382 2004-10-30 03:06  pbartok
27383
27384         * XplatUIX11.cs:
27385           - Removed extension of DllImported libs
27386
27387 2004-10-29 09:55  jordi
27388
27389         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
27390           navigation, itemcollection completion, menu fixes
27391
27392 2004-10-27 22:58  pbartok
27393
27394         * XplatUIX11.cs:
27395           - Now throws a nice error message when no X display could be opened
27396
27397 2004-10-26 13:51  jordi
27398
27399         * ListView.cs: removes warning
27400
27401 2004-10-26 03:55  ravindra
27402
27403         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
27404           ThemeWin32Classic.cs: Some formatting for my last checkins.
27405
27406 2004-10-26 03:36  ravindra
27407
27408         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
27409           control and default values.
27410
27411 2004-10-26 03:35  ravindra
27412
27413         * Theme.cs: Added some default values for ListView control.
27414
27415 2004-10-26 03:33  ravindra
27416
27417         * ToolBar.cs: ToolBar should use the user specified button size, if
27418           there is any. Added a size_specified flag for the same.
27419
27420 2004-10-26 03:33  ravindra
27421
27422         * ColumnHeader.cs: Added some internal members and calculations for
27423           ColumnHeader.
27424
27425 2004-10-26 03:32  ravindra
27426
27427         * ListViewItem.cs: Calculations for ListViewItem.
27428
27429 2004-10-26 03:31  ravindra
27430
27431         * ListView.cs: Added some internal members and calculations for
27432           ListView.
27433
27434 2004-10-22 13:31  jordi
27435
27436         * MenuAPI.cs: speedup menus drawing
27437
27438 2004-10-22 13:16  jackson
27439
27440         * XplatUIX11.cs: Make sure to update exposed regions when adding an
27441           expose event
27442
27443 2004-10-22 11:49  jackson
27444
27445         * Control.cs: oops
27446
27447 2004-10-22 11:41  jackson
27448
27449         * Control.cs: Check to see if the window should have its background
27450           repainted by X when drawing.
27451
27452 2004-10-22 11:31  jackson
27453
27454         * XplatUIX11.cs: When invalidating areas only use XClearArea if
27455           clear is true, this way we do not get flicker from X repainting the
27456           background
27457
27458 2004-10-22 11:28  jackson
27459
27460         * XEventQueue.cs: Queue properly
27461
27462 2004-10-21 09:38  jackson
27463
27464         * XEventQueue.cs: Fix access modifier
27465
27466 2004-10-21 09:36  jackson
27467
27468         * XEventQueue.cs: Don't loose messages
27469
27470 2004-10-21 09:22  jackson
27471
27472         * XEventQueue.cs: Don't loose messages
27473
27474 2004-10-20 04:15  jordi
27475
27476         * BootMode.cs: enum need it by SystemInfo
27477
27478 2004-10-19 21:58  pbartok
27479
27480         * XplatUIWin32.cs:
27481           - Small sanity check
27482
27483 2004-10-19 21:56  pbartok
27484
27485         * Form.cs:
27486           - Added private FormParentWindow class which acts as the container
27487             for our form and as the non-client area where menus are drawn
27488           - Added/Moved required tie-ins to Jordi's menus
27489           - Fixed/Implemented the FormStartPosition functionality
27490
27491 2004-10-19 21:52  pbartok
27492
27493         * Control.cs:
27494           - Removed unneeded locals
27495           - Added code to all size and location properties to understand and
27496             deal with the parent container of Form
27497
27498 2004-10-19 21:33  pbartok
27499
27500         * Application.cs:
27501           - Fixed to deal with new Form subclasses for menus
27502
27503 2004-10-19 17:48  jackson
27504
27505         * XEventQueue.cs: commit correct version of file
27506
27507 2004-10-19 16:50  jackson
27508
27509         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
27510
27511 2004-10-19 16:15  jordi
27512
27513         * MenuAPI.cs: MenuBarCalcSize returns the height
27514
27515 2004-10-19 08:31  pbartok
27516
27517         * Control.cs:
27518           - Added missing call to PreProcessMessage before calling OnXXXKey
27519           methods
27520
27521 2004-10-19 00:04  ravindra
27522
27523         * ToolTip.cs: Fixed constructor.
27524
27525 2004-10-18 09:31  jordi
27526
27527         * MenuAPI.cs: menuitems in menubars do not have shortcuts
27528
27529 2004-10-18 09:26  jordi
27530
27531         * MenuItem.cs: fixes MenuItem class signature
27532
27533 2004-10-18 08:56  jordi
27534
27535         * MenuAPI.cs: prevents windows from showing in the taskbar
27536
27537 2004-10-18 00:28  ravindra
27538
27539         * ToolTip.cs: Suppressed a warning message.
27540
27541 2004-10-18 00:27  ravindra
27542
27543         * Control.cs: Default value of visible property must be true.
27544
27545 2004-10-17 23:19  pbartok
27546
27547         * ToolTip.cs:
27548           - Complete implementation
27549
27550 2004-10-17 23:19  pbartok
27551
27552         * XplatUIX11.cs:
27553           - Added EnableWindow method
27554           - Added SetModal stub
27555           - Added generation of WM_ACTIVATE message (still needs testing)
27556           - Added SetTopMost stub
27557           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
27558
27559 2004-10-17 23:17  pbartok
27560
27561         * XplatUIWin32.cs:
27562           - Removed VirtualKeys to XplatUIStructs
27563           - Implemented SetTopMost method
27564           - Implemented EnableWindow method
27565           - Bugfix in ScreenToClient()
27566           - Bugfixes in ClientToScreen()
27567
27568 2004-10-17 22:51  pbartok
27569
27570         * XplatUIStructs.cs:
27571           - Added WS_EX styles to WindowStyles enumeration
27572
27573 2004-10-17 22:50  pbartok
27574
27575         * XplatUI.cs, XplatUIDriver.cs:
27576           - Added method for enabling/disabling windows
27577           - Added method for setting window modality
27578           - Added method for setting topmost window
27579
27580 2004-10-17 22:49  pbartok
27581
27582         * ThemeWin32Classic.cs:
27583           - Added ToolTip drawing code
27584
27585 2004-10-17 22:49  pbartok
27586
27587         * Theme.cs:
27588           - Added ToolTip abstracts
27589
27590 2004-10-17 22:47  pbartok
27591
27592         * Form.cs:
27593           - Fixed Form.ControlCollection to handle owner relations
27594           - Added Owner/OwnedForms handling
27595           - Implemented Z-Ordering for owned forms
27596           - Removed unneeded private overload of ShowDialog
27597           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
27598             so I hope)
27599           - Fixed Close(), had wrong default
27600           - Added firing of OnLoad event
27601           - Added some commented out debug code for Ownership handling
27602
27603 2004-10-17 22:16  pbartok
27604
27605         * Control.cs:
27606           - Fixed/implemented flat list of controls
27607
27608 2004-10-17 22:14  pbartok
27609
27610         * Application.cs:
27611           - Added code to simulate modal dialogs on Win32
27612
27613 2004-10-17 16:11  jordi
27614
27615         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
27616           mouse event
27617
27618 2004-10-17 13:39  jordi
27619
27620         * MenuAPI.cs: menu drawing fixes
27621
27622 2004-10-15 09:10  ravindra
27623
27624         * StructFormat.cs: General Enum.
27625
27626 2004-10-15 09:09  ravindra
27627
27628         * SizeGripStyle.cs: Enum for Form.
27629
27630 2004-10-15 09:08  ravindra
27631
27632         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
27633           in Theme for ListView.
27634
27635 2004-10-15 09:06  ravindra
27636
27637         * ColumnHeader.cs: Flushing some formatting changes.
27638
27639 2004-10-15 09:05  ravindra
27640
27641         * ListViewItem.cs: Implemented GetBounds method and fixed coding
27642           style.
27643
27644 2004-10-15 09:03  ravindra
27645
27646         * ListView.cs: Implemented Paint method and fixed coding style.
27647
27648 2004-10-15 07:34  jordi
27649
27650         * MenuAPI.cs: fix for X11
27651
27652 2004-10-15 07:32  ravindra
27653
27654         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
27655                 - Renamed Paint() method to Draw() for clarity. Also, moved
27656                 DrawImage() to OnPaint().
27657
27658 2004-10-15 07:25  ravindra
27659
27660         * CheckBox.cs, RadioButton.cs:
27661                 - Removed Redraw (), we get it from ButtonBase.
27662                 - Implemented Paint (), to do class specific painting.
27663
27664 2004-10-15 07:16  ravindra
27665
27666         * ButtonBase.cs:
27667                 - Redraw () is not virtual now.
27668                 - Added an internal virtual method Paint (), so that
27669                 derived classes can do their painting on their own.
27670                 - Modified OnPaint () to call Paint ().
27671
27672 2004-10-15 06:43  jordi
27673
27674         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
27675           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
27676
27677 2004-10-15 00:30  ravindra
27678
27679         * MessageBox.cs:
27680                 - MessageBox on windows does not have min/max buttons.
27681                 This change in CreateParams fixes this on Windows. We
27682                 still need to implement this windowstyle behavior in
27683                 our X11 driver.
27684
27685 2004-10-14 05:14  ravindra
27686
27687         * ToolBar.cs:
27688                 - Changed Redraw () to do a Refresh () always.
27689                 - Fixed the MouseMove event handling when mouse is pressed,
27690                 ie drag event handling.
27691                 - Replaced the usage of ToolBarButton.Pressed property to
27692                 ToolBarButton.pressed internal variable.
27693
27694 2004-10-14 05:10  ravindra
27695
27696         * ToolBarButton.cs:
27697                 - Added an internal member 'inside' to handle mouse move
27698                 with mouse pressed ie mouse drag event.
27699                 - Changed 'Pressed' property to return true only when
27700                 'inside' and 'pressed' are both true.
27701                 - Some coding style love.
27702
27703 2004-10-14 00:17  ravindra
27704
27705         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
27706           public method.
27707
27708 2004-10-14 00:15  ravindra
27709
27710         * ButtonBase.cs: Redraw () related improvements.
27711
27712 2004-10-14 00:14  ravindra
27713
27714         * MessageBox.cs: Moved InitFormSize () out of Paint method and
27715           removed unnecessary calls to Button.Show () method.
27716
27717 2004-10-13 17:50  pbartok
27718
27719         * XplatUIX11.cs:
27720           - Formatting fix
27721           - Removed destroying of window until we solve the problem of X
27722             destroying the window before us on shutdown
27723
27724 2004-10-13 16:32  pbartok
27725
27726         * ButtonBase.cs:
27727           - Now Redraws on MouseUp for FlatStyle Flat and Popup
27728
27729 2004-10-13 14:18  pbartok
27730
27731         * XplatUIX11.cs:
27732           - Added code to destroy the X window
27733
27734 2004-10-13 14:18  pbartok
27735
27736         * XplatUIWin32.cs:
27737           - Added code to destroy a window
27738
27739 2004-10-13 14:12  pbartok
27740
27741         * ButtonBase.cs:
27742           - Added the Redraw on Resize that got dropped in the last rev
27743
27744 2004-10-13 09:06  pbartok
27745
27746         * ThemeWin32Classic.cs:
27747           - Path from John BouAntoun:
27748             * Fix check rendering (centre correctly for normal style, offset
27749               correctly for FlatStyle).
27750             * Fix border color usage (use backcolor) for FlatStyle.Popup
27751             * Use checkbox.Capture instead of checkbox.is_pressed when
27752               rendering flatstyle states.
27753
27754 2004-10-12 21:48  pbartok
27755
27756         * ThemeWin32Classic.cs:
27757           - Removed all occurences of SystemColors and replaced them with the
27758             matching theme color
27759
27760 2004-10-12 21:41  pbartok
27761
27762         * ThemeWin32Classic.cs:
27763           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
27764             him using the function for flatstyle drawing
27765           - Changed functions to use the new version of CPDrawBorder3D
27766
27767 2004-10-12 21:15  pbartok
27768
27769         * ControlPaint.cs:
27770           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
27771             match MS documentation. They need to return defined colors if the
27772             passed color matches the configured control color. Thanks to John
27773             BouAntoun for pointing this out.
27774
27775 2004-10-12 20:57  pbartok
27776
27777         * Control.cs:
27778           - Fix from John BouAntoun: Raise ForeColorChanged event when text
27779             color is changed
27780
27781 2004-10-12 20:46  pbartok
27782
27783         * CheckBox.cs:
27784           - Fix from John BouAntoun: Now properly sets the Appearance property
27785
27786 2004-10-12 20:45  pbartok
27787
27788         * ThemeWin32Classic.cs:
27789           - Fixes from John BouAntoun: now handles forecolors and backcolors
27790             for flatstyle rendered controls much better; It also fixes normal
27791             checkbox rendering when pushed or disabled.
27792
27793 2004-10-08 02:50  jordi
27794
27795         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
27796           work
27797
27798 2004-10-07 08:56  jordi
27799
27800         * ThemeWin32Classic.cs: Removes deletion of cached brushes
27801
27802 2004-10-06 03:59  jordi
27803
27804         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
27805           XplatUIWin32.cs: removes warnings from compilation
27806
27807 2004-10-05 12:23  jackson
27808
27809         * RadioButton.cs: Fix ctor
27810
27811 2004-10-05 11:10  pbartok
27812
27813         * MessageBox.cs:
27814           - Partial implementation by Benjamin Dasnois
27815
27816 2004-10-05 10:15  jackson
27817
27818         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
27819           by John BouAntoun
27820
27821 2004-10-05 03:07  ravindra
27822
27823         * ToolBar.cs:
27824                 - Removed a private method, Draw ().
27825                 - Fixed the ButtonDropDown event handling.
27826                 - Fixed MouseMove event handling.
27827
27828 2004-10-05 03:04  ravindra
27829
27830         * ThemeWin32Classic.cs:
27831                 - Added DrawListView method and ListViewDefaultSize property.
27832                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
27833                 - Changed DOS style CRLF to Unix format (dos2unix).
27834
27835 2004-10-05 03:03  ravindra
27836
27837         * Theme.cs:
27838                 - Added DrawListView method and ListViewDefaultSize property.
27839
27840 2004-10-05 02:42  ravindra
27841
27842         * ToolBarButton.cs: Added an internal member dd_pressed to handle
27843           clicks on DropDown arrow.
27844
27845 2004-10-04 22:56  jackson
27846
27847         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
27848           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
27849           Control handle the buffers, derived classes should not have to
27850           CreateBuffers themselves.
27851
27852 2004-10-04 21:20  jackson
27853
27854         * StatusBar.cs: The control handles resizing the buffers now.
27855
27856 2004-10-04 21:18  jackson
27857
27858         * Control.cs: When resizing the buffers should be invalidated. This
27859           should be handled in Control not in derived classes.
27860
27861 2004-10-04 14:45  jackson
27862
27863         * TabPage.cs: oops
27864
27865 2004-10-04 02:14  pbartok
27866
27867         * LeftRightAlignment.cs:
27868           - Initial check-in
27869
27870 2004-10-04 01:09  jordi
27871
27872         * ThemeWin32Classic.cs: fixes right button position causing right
27873           button not showing on horizontal scrollbars
27874
27875 2004-10-02 13:12  pbartok
27876
27877         * XplatUIX11.cs:
27878           - Simplified the Invalidate method by using an X call instead of
27879             generating the expose ourselves
27880           - Added an expose when the window background is changed
27881           - Implemented ClientToScreen method
27882
27883 2004-10-02 13:08  pbartok
27884
27885         * XplatUIWin32.cs:
27886           - Added Win32EnableWindow method (test for implementing modal
27887           dialogs)
27888           - Added ClientToScreen method and imports
27889
27890 2004-10-02 13:07  pbartok
27891
27892         * XplatUI.cs, XplatUIDriver.cs:
27893           - Added ClientToScreen coordinate translation method
27894
27895 2004-10-02 13:06  pbartok
27896
27897         * KeyPressEventArgs.cs:
27898           - Fixed access level for constructor
27899
27900 2004-10-02 13:06  pbartok
27901
27902         * NativeWindow.cs:
27903           - Changed access level for the window_collection hash table
27904
27905 2004-10-02 13:05  pbartok
27906
27907         * Form.cs:
27908           - Added KeyPreview property
27909           - Added Menu property (still incomplete, pending Jordi's menu work)
27910           - Implemented ProcessCmdKey
27911           - Implemented ProcessDialogKey
27912           - Implemented ProcessKeyPreview
27913
27914 2004-10-02 13:02  pbartok
27915
27916         * Control.cs:
27917           - Added private method to get the Control object from the window
27918           handle
27919           - Implemented ContextMenu property
27920           - Implemented PointToScreen
27921           - Implemented PreProcessMessage
27922           - Implemented IsInputChar
27923           - Implemented IsInputKey
27924           - Implemented ProcessCmdKey
27925           - Completed ProcessKeyEventArgs
27926           - Fixed message loop to call the proper chain of functions on key
27927           events
27928           - Implemented ProcessDialogChar
27929           - Implemented ProcessDialogKey
27930           - Implemented ProcessKeyMessage
27931           - Implemented ProcessKeyPreview
27932           - Added RaiseDragEvent stub (MS internal method)
27933           - Added RaiseKeyEvent stub (MS internal method)
27934           - Added RaiseMouseEvent stub (MS Internal method)
27935           - Added RaisePaintEvent stub (MS Internal method)
27936           - Added ResetMouseEventArgs stub (MS Internal method)
27937           - Implemented RtlTranslateAlignment
27938           - Implemented RtlTranslateContent
27939           - Implemented RtlTranslateHorizontal
27940           - Implemented RtlTranslateLeftRight
27941           - Added generation of KeyPress event
27942
27943 2004-10-02 05:57  ravindra
27944
27945         * ListViewItem.cs: Added attributes.
27946
27947 2004-10-02 05:32  ravindra
27948
27949         * ListView.cs: Added attributes.
27950
27951 2004-10-01 11:53  jackson
27952
27953         * Form.cs: Implement the Close method so work on MessageBox can
27954           continue.
27955
27956 2004-09-30 14:06  pbartok
27957
27958         * XplatUIX11.cs:
27959           - Bug fixes
27960
27961 2004-09-30 11:34  jackson
27962
27963         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
27964
27965 2004-09-30 07:26  ravindra
27966
27967         * ListViewItemConverter.cs: Converter for ListViewItem.
27968
27969 2004-09-30 07:26  ravindra
27970
27971         * SortOrder.cs: Enum for ListView control.
27972
27973 2004-09-30 07:25  ravindra
27974
27975         * ColumnHeader.cs: Supporting class for ListView control.
27976
27977 2004-09-30 07:24  ravindra
27978
27979         * ListView.cs, ListViewItem.cs: Initial implementation.
27980
27981 2004-09-30 07:20  ravindra
27982
27983         * ItemActivation.cs: Enum for ListView Control.
27984
27985 2004-09-29 20:29  pbartok
27986
27987         * XplatUIX11.cs:
27988           - Added lookup of pixel value for background color; tries to get a
27989             color 'close' to the requested color, it avoids having to create a
27990             colormap.  Depending on the display this could mean the used color
27991             is slightly off the desired color. Might have to change it to a more
27992             resource intensive colormap approach, but it will work as a
27993           workaround to avoid red screens.
27994
27995 2004-09-29 14:27  jackson
27996
27997         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
27998
27999 2004-09-28 12:44  pbartok
28000
28001         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
28002           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
28003           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
28004           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
28005           TrackBar.cs, VScrollBar.cs:
28006           - Streamlined Theme interfaces:
28007             * Each DrawXXX method for a control now is passed the object for
28008               the control to be drawn in order to allow accessing any state the
28009               theme might require
28010
28011             * ControlPaint methods for the theme now have a CP prefix to avoid
28012               name clashes with the Draw methods for controls
28013
28014             * Every control now retrieves it's DefaultSize from the current
28015             theme
28016
28017 2004-09-28 12:17  jackson
28018
28019         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
28020           drawing
28021
28022 2004-09-24 14:57  jackson
28023
28024         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
28025           Gives us a nice little performance boost.
28026
28027 2004-09-24 12:02  jackson
28028
28029         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
28030           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
28031           Control and supporting classes. Initial checkin
28032
28033 2004-09-23 13:08  jackson
28034
28035         * Form.cs: Temp build fixage
28036
28037 2004-09-23 01:39  ravindra
28038
28039         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
28040           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
28041           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
28042           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
28043           EventHandlers needed by ListView Control.
28044
28045 2004-09-22 14:12  pbartok
28046
28047         * ScrollableControl.cs:
28048           - Implemented DockPadding property
28049           - Implemented AutoScroll property
28050           - Implemented AutoScrollMargin property
28051           - Implemented AutoScrollMinSize property
28052           - Implemented AutoScrollPosition property
28053           - Implemented DisplayRectangle property (still incomplete)
28054           - Implemented CreateParams property
28055           - Implemented HScroll property
28056           - Implemented VScroll property
28057           - Implemented OnVisibleChanged property
28058
28059 2004-09-22 14:09  pbartok
28060
28061         * Form.cs:
28062           - Added Form.ControllCollection class
28063           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
28064             RemoveOwnedForm (still incomplete, missing on-top and common
28065             minimize/maximize behaviour)
28066           - Added StartPosition property (still incomplete, does not use when
28067             creating the form)
28068           - Added ShowDialog() methods (still incomplete, missing forcing the
28069             dialog modal)
28070
28071 2004-09-22 14:05  pbartok
28072
28073         * Application.cs:
28074           - Added message loop for modal dialogs
28075
28076 2004-09-22 14:02  pbartok
28077
28078         * GroupBox.cs:
28079           - Fixed wrong types for events
28080
28081 2004-09-22 14:00  pbartok
28082
28083         * Shortcut.cs, FormWindowState.cs:
28084           - Fixed wrong values
28085
28086 2004-09-22 12:01  jackson
28087
28088         * Control.cs: Text is never null
28089
28090 2004-09-20 22:14  pbartok
28091
28092         * XplatUIWin32.cs:
28093           - Fixed accessibility level for Idle handler
28094
28095 2004-09-20 18:54  jackson
28096
28097         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28098           XplatUIX11.cs: New message loop that uses poll so we don't get a
28099           busy loop
28100
28101 2004-09-17 10:43  pbartok
28102
28103         * ScrollBar.cs:
28104           - Fixed behaviour of arrow buttons. Now properly behaves like
28105             Buttons (and like Microsoft's scrollbar arrow buttons)
28106
28107 2004-09-17 10:14  pbartok
28108
28109         * ScrollBar.cs:
28110           - Added missing release of keyboard/mouse capture
28111
28112 2004-09-17 06:18  jordi
28113
28114         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
28115           Theme.cs: Very early menu support
28116
28117 2004-09-16 17:45  pbartok
28118
28119         * XplatUIWin32.cs:
28120           - Fixed sending a window to the front
28121           - Added overload for SetWindowPos to avoid casting
28122
28123 2004-09-16 17:44  pbartok
28124
28125         * Control.cs:
28126           - Added SendToBack and BringToFront methods
28127
28128 2004-09-16 07:00  ravindra
28129
28130         * Copyright: Added Novell URL.
28131
28132 2004-09-16 07:00  ravindra
28133
28134         * ToolBar.cs: Invalidate should be done before redrawing.
28135
28136 2004-09-15 21:19  ravindra
28137
28138         * ColumnHeaderStyle.cs: Enum for ListView Control.
28139
28140 2004-09-15 21:18  ravindra
28141
28142         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
28143           ListView Control.
28144
28145 2004-09-13 18:26  jackson
28146
28147         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
28148           properly
28149
28150 2004-09-13 18:13  jackson
28151
28152         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
28153           a second thread and post messages into the main threads message
28154           queue. This makes timing much more consistent. Both win2K and XP
28155           have a minimum timer value of 15 milliseconds, so we now do this
28156           too.
28157
28158 2004-09-13 15:18  pbartok
28159
28160         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28161           XplatUIX11.cs:
28162           - Added Z-Ordering methods
28163
28164 2004-09-13 10:56  pbartok
28165
28166         * Form.cs:
28167           - Fixed #region names
28168           - Moved properties and methods into their proper #regions
28169
28170 2004-09-13 10:51  pbartok
28171
28172         * Form.cs:
28173           - Added Accept and CancelButton properties
28174           - Added ProcessDialogKey() method
28175
28176 2004-09-13 08:18  pbartok
28177
28178         * IWindowTarget.cs:
28179           - Initial check-in
28180
28181 2004-09-10 21:50  pbartok
28182
28183         * Control.cs:
28184           - Added DoDragDrop() [incomplete]
28185           - Properly implemented 'Visible' handling
28186           - Added SetVisibleCore()
28187           - Implemented FindChildAtPoint()
28188           - Implemented GetContainerControl()
28189           - Implemented Hide()
28190
28191 2004-09-10 19:28  pbartok
28192
28193         * Control.cs:
28194           - Moved methods into their appropriate #regions
28195           - Reordered methods within regions alphabetically
28196
28197 2004-09-10 18:57  pbartok
28198
28199         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
28200           - Added method to retrieve text from window
28201
28202 2004-09-10 18:56  pbartok
28203
28204         * Control.cs:
28205           - Moved some internal functions into the internal region
28206           - Implemented FontHeight
28207           - Implemented RenderRightToLeft
28208           - Implemented ResizeRedraw
28209           - Implemented ShowFocusCues
28210           - Implemented ShowKeyboardCues
28211           - Implemented FromChildHandle
28212           - Implemented FromHandle
28213           - Implemented IsMnemonic
28214           - Implemented ReflectMessage
28215           - All public and protected Static Methods are now complete
28216
28217 2004-09-10 16:54  pbartok
28218
28219         * Control.cs:
28220           - Implemented remaining missing public instance properties
28221           - Alphabetized some out of order properties
28222
28223 2004-09-10 05:51  ravindra
28224
28225         * PictureBox.cs: Added a check for null image.
28226
28227 2004-09-10 00:59  jordi
28228
28229         * GroupBox.cs: remove cvs tag
28230
28231 2004-09-09 05:25  ravindra
28232
28233         * ToolBar.cs: Make redraw accessible from ToolBarButton.
28234
28235 2004-09-09 05:23  ravindra
28236
28237         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
28238           parent redraw.
28239
28240 2004-09-09 02:28  pbartok
28241
28242         * ThemeWin32Classic.cs:
28243           - Improve disabled string look
28244
28245 2004-09-09 01:15  jordi
28246
28247         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
28248           args and handler
28249
28250 2004-09-08 23:56  ravindra
28251
28252         * ItemBoundsPortion.cs: It's enum, not a class!
28253
28254 2004-09-08 23:47  ravindra
28255
28256         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
28257           Enums for Form.
28258
28259 2004-09-08 21:13  ravindra
28260
28261         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
28262           ListView control.
28263
28264 2004-09-08 21:03  ravindra
28265
28266         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
28267           avoid crash.
28268
28269 2004-09-08 21:01  ravindra
28270
28271         * ScrollableControl.cs: Removed unreachable code.
28272
28273 2004-09-08 06:45  jordi
28274
28275         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
28276
28277 2004-09-08 01:00  jackson
28278
28279         * XplatUIX11.cs: Only run the timers when updating the message
28280           queue. This effectively gives X messages a higher priority then
28281           timer messages. Timers still need love though
28282
28283 2004-09-07 14:01  jackson
28284
28285         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
28286           this for us and the handle is no longer valid.
28287
28288 2004-09-07 13:59  jackson
28289
28290         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
28291           loop that manages to not crash. TODO: Add poll and cleanup timers
28292
28293 2004-09-07 11:12  jordi
28294
28295         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
28296
28297 2004-09-07 03:40  jordi
28298
28299         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
28300           fixes, methods, multiple links
28301
28302 2004-09-06 06:55  jordi
28303
28304         * Control.cs: Caches ClientRectangle rectangle value
28305
28306 2004-09-05 02:03  jordi
28307
28308         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
28309           certain situations
28310
28311 2004-09-04 11:10  jordi
28312
28313         * Label.cs: Refresh when font changed
28314
28315 2004-09-02 16:24  pbartok
28316
28317         * Control.cs:
28318           - Added sanity check to creation of double buffer bitmap
28319
28320 2004-09-02 16:24  pbartok
28321
28322         * ButtonBase.cs:
28323           - Fixed selection of text color
28324           - Fixed handling of resize event; now properly recreates double
28325             buffering bitmap
28326           - Added missing assignment of TextAlignment
28327           - Added proper default for TextAlignment
28328
28329 2004-09-02 14:26  pbartok
28330
28331         * RadioButton.cs:
28332           - Added missing RadioButton.RadioButtonAccessibleObject class
28333
28334 2004-09-02 14:26  pbartok
28335
28336         * Control.cs:
28337           - Added missing Control.ControlAccessibleObject class
28338           - Started to implement Select()ion mechanisms, still very incomplete
28339
28340 2004-09-02 14:25  pbartok
28341
28342         * AccessibleObject.cs:
28343           - Added missing methods
28344
28345 2004-09-02 14:23  pbartok
28346
28347         * AccessibleNavigation.cs, AccessibleSelection.cs:
28348           - Initial check-in
28349
28350 2004-09-02 10:32  jordi
28351
28352         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
28353           pool for pens, brushes, and hatchbruses
28354
28355 2004-09-01 15:30  jackson
28356
28357         * StatusBar.cs: Fix typo
28358
28359 2004-09-01 14:44  pbartok
28360
28361         * RadioButton.cs:
28362           - Fixed state
28363
28364 2004-09-01 14:39  pbartok
28365
28366         * Button.cs, RadioButton.cs:
28367           - Functional initial check-in
28368
28369 2004-09-01 14:01  pbartok
28370
28371         * CheckBox.cs:
28372           - Added missing default
28373           - Added missing region mark
28374
28375 2004-09-01 09:10  jordi
28376
28377         * Label.cs: fixes method signatures, new methods, events, fixes
28378           autosize
28379
28380 2004-09-01 07:19  jordi
28381
28382         * Control.cs: Init string variables with an empty object
28383
28384 2004-09-01 04:20  jordi
28385
28386         * Control.cs: fires OnFontChanged event
28387
28388 2004-08-31 20:07  pbartok
28389
28390         * ButtonBase.cs:
28391           - Enabled display of strings
28392
28393 2004-08-31 20:05  pbartok
28394
28395         * Form.cs:
28396           - Added (partial) implementation of DialogResult; rest needs to be
28397             implemented when the modal loop code is done
28398
28399 2004-08-31 19:55  pbartok
28400
28401         * CheckBox.cs:
28402           - Fixed to match the removal of the needs_redraw concept
28403
28404 2004-08-31 19:55  pbartok
28405
28406         * ButtonBase.cs:
28407           - Removed the rather odd split between 'needs redraw' and redrawing
28408           - Now handles the events that require regeneration (ambient
28409             properties and size)
28410
28411 2004-08-31 19:41  pbartok
28412
28413         * Control.cs:
28414           - Added firing of BackColorChanged event
28415           - Added TopLevelControl property
28416           - Fixed handling of WM_ERASEBKGRND message
28417
28418 2004-08-31 12:49  pbartok
28419
28420         * ButtonBase.cs:
28421           - Removed debug
28422           - Minor fixes
28423
28424 2004-08-31 12:48  pbartok
28425
28426         * CheckBox.cs:
28427           - Finished (famous last words)
28428
28429 2004-08-31 04:35  jordi
28430
28431         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
28432           scrolling bugs, adds new methods
28433
28434 2004-08-30 14:42  pbartok
28435
28436         * CheckBox.cs:
28437           - Implemented CheckBox drawing code
28438
28439 2004-08-30 14:42  pbartok
28440
28441         * ButtonBase.cs:
28442           - Made Redraw() and CheckRedraw() virtual
28443           - Improved mouse up/down/move logic to properly track buttons
28444
28445 2004-08-30 09:44  pbartok
28446
28447         * CheckBox.cs:
28448           - Updated to fix broken build. Not complete yet.
28449
28450 2004-08-30 09:28  pbartok
28451
28452         * CheckState.cs:
28453           - Initial checkin
28454
28455 2004-08-30 09:17  pbartok
28456
28457         * Appearance.cs:
28458           - Initial check-in
28459
28460 2004-08-27 16:12  ravindra
28461
28462         * ToolBarButton.cs: Added TypeConverter attribute.
28463
28464 2004-08-27 16:07  ravindra
28465
28466         * ImageIndexConverter.cs: Implemented.
28467
28468 2004-08-27 14:17  pbartok
28469
28470         * Control.cs:
28471           - Removed unneeded stack vars
28472           - First attempt to fix sizing issues when layout is suspended
28473
28474 2004-08-25 15:35  jordi
28475
28476         * ScrollBar.cs: more fixes to scrollbar
28477
28478 2004-08-25 14:04  ravindra
28479
28480         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
28481           Added the missing divider code and grip for ToolBar Control.
28482
28483 2004-08-25 13:20  pbartok
28484
28485         * Control.cs:
28486           - Control now properly passes the ambient background color to child
28487             controls
28488
28489 2004-08-25 13:20  jordi
28490
28491         * ScrollBar.cs: small bug fix regarding bar position
28492
28493 2004-08-25 12:33  pbartok
28494
28495         * Timer.cs:
28496           - Now only calls SetTimer or KillTimer if the enabled state has
28497           changed
28498
28499 2004-08-25 12:33  pbartok
28500
28501         * XplatUIWin32.cs:
28502           - Fixed timer handling, now seems to work
28503           - Improved error message for window creation
28504
28505 2004-08-25 12:32  pbartok
28506
28507         * Control.cs:
28508           - Fixed generation of MouseUp message
28509
28510 2004-08-25 12:29  jordi
28511
28512         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
28513           and fixes for progressbar
28514
28515 2004-08-24 18:43  ravindra
28516
28517         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
28518           in ToolBar control.
28519
28520 2004-08-24 17:15  pbartok
28521
28522         * Panel.cs:
28523           - Added #region
28524           - Added missing events
28525           - Alphabetized
28526
28527 2004-08-24 17:14  pbartok
28528
28529         * StatusBar.cs, PictureBox.cs:
28530           - Now uses Control's CreateParams
28531
28532 2004-08-24 16:36  pbartok
28533
28534         * XplatUIX11.cs:
28535           - Fixed background color handling
28536           - Fixed sending of enter/leave events on a grab
28537
28538 2004-08-24 16:35  pbartok
28539
28540         * X11Structs.cs:
28541           - Refined definitions for CrossingEvent
28542
28543 2004-08-24 12:37  jordi
28544
28545         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
28546           formmating, methods signature, and adds missing events
28547
28548 2004-08-24 12:24  jordi
28549
28550         * Control.cs: fire OnEnabledChanged event
28551
28552 2004-08-24 11:17  pbartok
28553
28554         * XplatUIWin32.cs:
28555           - Implemented SetTimer() and KillTimer()
28556
28557 2004-08-24 11:16  pbartok
28558
28559         * XplatUIX11.cs:
28560           - Now uses Remove instead of Add to kill the timer
28561
28562 2004-08-24 10:16  jackson
28563
28564         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
28565           picture boxes in the theme now. Draw picture box borders and obey
28566           sizing modes
28567
28568 2004-08-24 05:49  jackson
28569
28570         * Timer.cs: Remove top secret debugging code
28571
28572 2004-08-24 05:34  jackson
28573
28574         * PictureBox.cs: Temp hack to make picture boxes draw their full
28575           image
28576
28577 2004-08-24 05:29  jackson
28578
28579         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28580           XplatUIX11.cs: Move timers to the driver level. On X they are
28581           queued by the driver and checked on idle.
28582
28583 2004-08-24 01:07  jackson
28584
28585         * XplatUIX11.cs: Use a queue for async messages instead of passing
28586           them as ClientMessages since that was totally broken. Also simply
28587           check for events and return an idle message if none are found. This
28588           gives us an idle handler, and prevents deadlocking when no messages
28589           are in the queue.
28590
28591 2004-08-23 18:19  ravindra
28592
28593         * XplatUIWin32.cs: Removed the unwanted destructor.
28594
28595 2004-08-23 17:27  pbartok
28596
28597         * ButtonBase.cs:
28598           - Finishing touches. Works now, just needs some optimizations.
28599
28600 2004-08-23 16:53  jordi
28601
28602         * ScrollBar.cs: small fix
28603
28604 2004-08-23 16:45  pbartok
28605
28606         * Application.cs:
28607           - Removed debug output
28608           - Simplifications
28609
28610 2004-08-23 16:43  jordi
28611
28612         * ScrollBar.cs: [no log message]
28613
28614 2004-08-23 16:10  pbartok
28615
28616         * Form.cs:
28617           - Fixed handling of WM_CLOSE message
28618           - Removed debug output
28619
28620 2004-08-23 16:09  pbartok
28621
28622         * Application.cs:
28623           - Added handling of Idle event
28624           - Added handling of form closing
28625           - Fixed reporting of MessageLoop property
28626           - Removed some unneeded code, should provide a bit of a speedup
28627
28628 2004-08-23 15:22  pbartok
28629
28630         * Control.cs:
28631           - Added InitLayout() method
28632           - Added code to properly perform layout when Anchor or Dock property
28633             is changed
28634           - Changed 'interpretation' of ResumeLayout. MS seems to have a
28635             LAMESPEC, tried to do it in a way that makes sense
28636
28637 2004-08-23 14:10  jordi
28638
28639         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
28640           properties and methods
28641
28642 2004-08-23 13:55  pbartok
28643
28644         * Control.cs:
28645           - Properly fixed Jordi's last fix
28646           - Now uses Cursor's Position property instead of calling XplatUI
28647           directly
28648
28649 2004-08-23 13:44  jordi
28650
28651         * PaintEventHandler.cs: Adding missing attribute
28652
28653 2004-08-23 13:39  pbartok
28654
28655         * Cursor.cs:
28656           - Implemented Position property
28657
28658 2004-08-23 13:39  pbartok
28659
28660         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
28661           - Added method to move mouse cursor
28662
28663 2004-08-23 13:39  pbartok
28664
28665         * XplatUIX11.cs:
28666           - Fixed setting of background color
28667           - Added method to move mouse cursor
28668
28669 2004-08-23 13:16  jordi
28670
28671         * Control.cs: avoids null exception
28672
28673 2004-08-22 17:46  jackson
28674
28675         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
28676           PictureBox
28677
28678 2004-08-22 17:40  jackson
28679
28680         * XplatUIX11.cs: Add some missing locks
28681
28682 2004-08-22 15:10  pbartok
28683
28684         * Control.cs, Form.cs:
28685           - Removed OverlappedWindow style from Control, instead it's default
28686             now is child
28687           - Made form windows OverlappedWindow by default
28688
28689 2004-08-22 13:34  jackson
28690
28691         * ScrollBar.cs: Update the position through the Value property so
28692           the OnValueChanged event is raised.
28693
28694 2004-08-22 12:04  pbartok
28695
28696         * SWF.csproj:
28697           - Added Cursor.cs and UserControl.cs
28698
28699 2004-08-22 12:03  pbartok
28700
28701         * Cursor.cs:
28702           - Started implementation, not usable yet
28703
28704 2004-08-22 12:00  pbartok
28705
28706         * UserControl.cs:
28707           - Implemented UserControl (complete)
28708
28709 2004-08-21 19:20  ravindra
28710
28711         * ToolBar.cs: Correcting the formatting mess of VS.NET.
28712
28713 2004-08-21 18:49  ravindra
28714
28715         * ToolBar.cs: Probably this completes the missing attributes in
28716           toolbar control.
28717
28718 2004-08-21 18:03  ravindra
28719
28720         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
28721           Fixed toolbar control signatures.
28722
28723 2004-08-21 16:32  pbartok
28724
28725         * LinkLabel.cs:
28726           - Signature Fixes
28727
28728 2004-08-21 16:30  pbartok
28729
28730         * Label.cs:
28731           - Signature fixes
28732
28733 2004-08-21 16:19  pbartok
28734
28735         * Control.cs, Label.cs:
28736           - Signature fixes
28737
28738 2004-08-21 15:57  pbartok
28739
28740         * ButtonBase.cs:
28741           - Added loads of debug output for development
28742           - Fixed typo in method name
28743
28744 2004-08-21 15:52  pbartok
28745
28746         * ToolBarButtonClickEventArgs.cs:
28747           - Added missing base class
28748
28749 2004-08-21 14:53  pbartok
28750
28751         * Control.cs:
28752           - Updated to match new GrabWindow signature
28753
28754 2004-08-21 14:51  pbartok
28755
28756         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28757           - Added method to get default display size
28758
28759 2004-08-21 14:23  pbartok
28760
28761         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28762           - Added method to query current grab state
28763           - Added argument to allow confining a grab to a window
28764
28765 2004-08-21 14:22  pbartok
28766
28767         * Keys.cs:
28768           - Added [Flags] attribute so that modifiers can be used in bitwise
28769           ops
28770
28771 2004-08-21 14:21  pbartok
28772
28773         * TrackBar.cs, ScrollBar.cs:
28774           - Replaced direct XplatUI calls with their Control counterpart
28775
28776 2004-08-21 13:32  pbartok
28777
28778         * Control.cs:
28779           - Implemented Created property
28780
28781 2004-08-21 13:28  pbartok
28782
28783         * Control.cs:
28784           - Implemented ContainsFocus
28785
28786 2004-08-21 13:26  pbartok
28787
28788         * Control.cs:
28789           - Implemented CausesValidation
28790
28791 2004-08-21 13:21  pbartok
28792
28793         * Control.cs:
28794           - Implemented CanFocus
28795           - Implemented CanSelect
28796           - Implemented Capture
28797
28798 2004-08-21 12:35  pbartok
28799
28800         * XplatUIWin32.cs:
28801           - Fixed bug with Async message handling
28802           - Implemented getting the ModifierKeys
28803
28804 2004-08-21 12:32  jackson
28805
28806         * AsyncMethodResult.cs: Make sure we have the mutex before we
28807           release it. Fixes BeginInvoke on windows
28808
28809 2004-08-21 11:31  pbartok
28810
28811         * XplatUIWin32.cs, XplatUIX11.cs:
28812           - Drivers now return proper mouse state
28813
28814 2004-08-21 10:54  jackson
28815
28816         * Control.cs: Implement EndInvoke
28817
28818 2004-08-21 10:48  jackson
28819
28820         * Timer.cs: Remove unneeded finalizer
28821
28822 2004-08-20 19:52  ravindra
28823
28824         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
28825           in mouse event handling in the ToolBar control.
28826
28827 2004-08-20 19:50  ravindra
28828
28829         * ImageList.cs: Changed draw method to use the arguments passed in
28830           to draw the image.
28831
28832 2004-08-20 18:58  pbartok
28833
28834         * XplatUIStructs.cs:
28835           - Added private message for async communication
28836
28837 2004-08-20 17:38  ravindra
28838
28839         * Control.cs: Made RightToLeft property virtual and removed a
28840           Console.WriteLine.
28841
28842 2004-08-20 14:39  jordi
28843
28844         * ThemeGtk.cs: use style_attach
28845
28846 2004-08-20 14:39  pbartok
28847
28848         * XplatUIWin32.cs:
28849           - Added jackson's Async code from X11 to Win32
28850
28851 2004-08-20 14:09  pbartok
28852
28853         * SWF.csproj:
28854           - Added all new files
28855
28856 2004-08-20 14:09  pbartok
28857
28858         * Control.cs:
28859           - Added call to set window background color
28860
28861 2004-08-20 14:03  pbartok
28862
28863         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
28864           - Added method for setting the window background
28865
28866 2004-08-20 14:02  pbartok
28867
28868         * XplatUIWin32.cs:
28869           - Added method for setting the background color
28870           - Added handling for erasing the window background
28871
28872 2004-08-20 13:45  jordi
28873
28874         * TrackBar.cs: fixes timer, new properties and methods
28875
28876 2004-08-20 13:34  jackson
28877
28878         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
28879           correct thread
28880
28881 2004-08-20 13:22  jackson
28882
28883         * Timer.cs: Timer Tick events are now handed through Controls Async
28884           mechanism so the callbacks are executed in the same thread as X
28885
28886 2004-08-20 13:19  jackson
28887
28888         * XplatUIDriver.cs: Expose functionality to send async messages
28889           through the driver
28890
28891 2004-08-20 13:18  jackson
28892
28893         * Control.cs: Implement Begininvoke
28894
28895 2004-08-20 13:14  jackson
28896
28897         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
28898           messages through the driver
28899
28900 2004-08-20 13:12  jackson
28901
28902         * XplatUIX11.cs: Lock before all X operations. Also added Async
28903           method functionality through XSendEvent
28904
28905 2004-08-20 13:11  jackson
28906
28907         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
28908           This will screw up on 64 bit systems)
28909
28910 2004-08-20 13:10  jackson
28911
28912         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
28913           Async messages through X/Win32
28914
28915 2004-08-19 19:39  pbartok
28916
28917         * XplatUIX11.cs:
28918           - Updated code to match new HandleData.DeviceContext type
28919
28920 2004-08-19 19:38  pbartok
28921
28922         * HandleData.cs:
28923           - Made DeviceContext a generic object to allow usage from various
28924           drivers
28925           - Added support for queueing Windows messages
28926
28927 2004-08-19 19:37  pbartok
28928
28929         * XplatUIWin32.cs:
28930           - Added generation of MouseEnter, MouseLeave and MouseHover events
28931           - Added cleanup on EndPaint
28932
28933 2004-08-19 19:17  pbartok
28934
28935         * Control.cs:
28936           - Added handling of WM_MOUSEHOVER
28937           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
28938           code
28939
28940 2004-08-19 18:55  jordi
28941
28942         * ThemeGtk.cs: fixes button order
28943
28944 2004-08-19 18:12  jordi
28945
28946         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
28947
28948 2004-08-19 17:09  pbartok
28949
28950         * Control.cs:
28951           - Added Right property
28952           - Added RightToLeft property
28953
28954 2004-08-19 16:27  jordi
28955
28956         * ThemeGtk.cs: experimental GTK theme support
28957
28958 2004-08-19 16:26  jordi
28959
28960         * ITheme.cs, Theme.cs: move themes from an interface to a class
28961
28962 2004-08-19 16:25  jordi
28963
28964         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
28965           theme enhancaments
28966
28967 2004-08-19 16:04  pbartok
28968
28969         * XplatUIX11.cs:
28970           - Added colormap basics
28971           - Added a way to re-initialize with a different display handle
28972           - Fixed setting of the window background color
28973           - Added various X11 imports related to colors and colormaps
28974
28975 2004-08-19 15:51  pbartok
28976
28977         * X11Structs.cs:
28978           - Removed packing hints (Paolo suggested this a while back)
28979           - fixed colormap type
28980           - Added default Atom types
28981           - Added Screen and color structs and enums
28982
28983 2004-08-19 15:39  pbartok
28984
28985         * ImageList.cs:
28986           - Added missing Draw() method
28987           - Added missing RecreateHandle event
28988
28989 2004-08-19 15:30  pbartok
28990
28991         * Form.cs:
28992           - Added handling of WM_CLOSE
28993
28994 2004-08-18 13:16  jordi
28995
28996         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
28997           a table
28998
28999 2004-08-18 09:56  jordi
29000
29001         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
29002
29003 2004-08-17 15:31  ravindra
29004
29005         * SWF.csproj: Updated project.
29006
29007 2004-08-17 15:25  pbartok
29008
29009         * Control.cs:
29010           - Drawing improvement; don't call UpdateBounds if we are not visible
29011             (or have been minimized)
29012
29013 2004-08-17 15:24  pbartok
29014
29015         * XplatUIWin32.cs:
29016           - Finished IsVisible
29017           - Added Win32GetWindowPlacement
29018
29019 2004-08-17 15:08  jackson
29020
29021         * Panel.cs: Initial checkin of the Panel
29022
29023 2004-08-17 14:25  pbartok
29024
29025         * Control.cs:
29026           - Fixed broken handling of default window sizes
29027
29028 2004-08-17 13:29  jackson
29029
29030         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
29031           has a large startup time.
29032
29033 2004-08-17 10:25  jackson
29034
29035         * HandleData.cs: union areas properly
29036
29037 2004-08-17 10:12  jackson
29038
29039         * HandleData.cs: union areas properly
29040
29041 2004-08-16 20:00  ravindra
29042
29043         * ToolBar.cs, ToolBarButton.cs: Added attributes.
29044
29045 2004-08-16 18:48  ravindra
29046
29047         * ToolBar.cs: Added attributes.
29048
29049 2004-08-16 17:17  ravindra
29050
29051         * SWF.csproj: Updated project.
29052
29053 2004-08-16 17:16  jackson
29054
29055         * XplatUIX11.cs: Check for more expose events before sending a
29056           WM_PAINT so they can all be grouped together. This makes dragging a
29057           window across another window redraw in a sane way.
29058
29059 2004-08-16 15:47  pbartok
29060
29061         * Control.cs:
29062           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
29063             support OnMouseEnter/Leave()
29064           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
29065             exposure handling
29066
29067 2004-08-16 15:46  pbartok
29068
29069         * XplatUIStructs.cs, XplatUIX11.cs:
29070           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
29071           OnMouseEnter/Leave()
29072
29073 2004-08-16 15:34  jackson
29074
29075         * XplatUIX11.cs: Group multiple expose events in HandleData, make
29076           sure messages get the message field set to WM_NULL if they are not
29077           handled.
29078
29079 2004-08-16 15:24  jackson
29080
29081         * HandleData.cs: HandleData is used for storing message information
29082           for window handles
29083
29084 2004-08-15 17:23  ravindra
29085
29086         * ColorDepth.cs: Added attribute.
29087
29088 2004-08-15 17:23  ravindra
29089
29090         * SWF.csproj: Updated project for ToolBar Control.
29091
29092 2004-08-15 17:20  ravindra
29093
29094         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
29095           control and also dos2unix format.
29096
29097 2004-08-15 17:13  ravindra
29098
29099         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
29100           ToolBarButtonClickEventArgs.cs,
29101           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
29102           ToolBarTextAlign.cs: First Implementation of ToolBar control.
29103
29104 2004-08-15 15:31  pbartok
29105
29106         * ButtonBase.cs:
29107           - First (mostly) working version
29108
29109 2004-08-13 16:15  pbartok
29110
29111         * Control.cs:
29112           - Fixed Anchor default
29113
29114 2004-08-13 15:43  pbartok
29115
29116         * Control.cs:
29117           - Changed GetCursorPos signature
29118
29119 2004-08-13 15:42  pbartok
29120
29121         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
29122           - Changed signature for GetCursorPos
29123
29124 2004-08-13 15:25  pbartok
29125
29126         * XplatUIX11.cs:
29127           - Cleanup
29128           - Fixed resizing/exposure handling
29129
29130 2004-08-13 15:22  jordi
29131
29132         * ThemeWin32Classic.cs: removes redundant code and fixes issues
29133           with tickposition
29134
29135 2004-08-13 14:55  jordi
29136
29137         * TrackBar.cs: change from wndproc to events
29138
29139 2004-08-13 13:00  jordi
29140
29141         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29142           XplatUIX11.cs: implements PointToClient (ScreenToClient)
29143
29144 2004-08-13 12:53  pbartok
29145
29146         * XplatUIWin32.cs:
29147           - Changed GetWindowPos to also provide client area size
29148           - Fixed broken prototypes for several win32 functions
29149
29150 2004-08-13 12:53  pbartok
29151
29152         * XplatUI.cs, XplatUIDriver.cs:
29153           - Changed GetWindowPos to also provide client area size
29154
29155 2004-08-13 12:52  pbartok
29156
29157         * XplatUIX11.cs:
29158           - Added generation of WM_POSCHANGED
29159           - Changed GetWindowPos to also provide client area size
29160
29161 2004-08-13 12:52  pbartok
29162
29163         * Control.cs:
29164           - Added Dispose() and destructor
29165           - Fixed resizing and bounds calculation
29166           - Fixed Layout
29167           - Added memory savings for invisible windows
29168
29169 2004-08-13 12:46  jordi
29170
29171         * TrackBar.cs: adds timer and grap window
29172
29173 2004-08-13 10:25  jackson
29174
29175         * Timer.cs: SWF Timer
29176
29177 2004-08-12 16:59  pbartok
29178
29179         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29180           - Implemented method to get current mouse position
29181
29182 2004-08-12 14:29  jordi
29183
29184         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
29185           enhancement, fix mouse problems, highli thumb, etc
29186
29187 2004-08-12 13:31  pbartok
29188
29189         * Control.cs:
29190           - Fixed Anchoring bugs
29191
29192 2004-08-12 13:01  jackson
29193
29194         * StatusBar.cs: Don't forget things
29195
29196 2004-08-12 12:54  jackson
29197
29198         * ThemeWin32Classic.cs: Handle owner draw status bars
29199
29200 2004-08-12 12:54  jackson
29201
29202         * StatusBar.cs: Implement missing properties, events, and methods.
29203           Handle mouse clicking
29204
29205 2004-08-12 10:19  jackson
29206
29207         * StatusBarPanelClickEventArgs.cs,
29208           StatusBarPanelClickEventHandler.cs: Classes for handling status
29209           bar panel click events
29210
29211 2004-08-12 10:10  jackson
29212
29213         * Control.cs: Add missing properties
29214
29215 2004-08-12 09:46  pbartok
29216
29217         * BindingsManagerBase.cs:
29218           - Name changed to BindingManagerBase.cs
29219
29220 2004-08-12 09:25  jordi
29221
29222         * ScrollableControl.cs: calls ctrlbase instead of exeception
29223
29224 2004-08-11 16:28  pbartok
29225
29226         * InputLanguageChangingEventArgs.cs:
29227           - Never check in before compiling. Fixes the last check-in
29228
29229 2004-08-11 16:26  pbartok
29230
29231         * InputLanguageChangingEventArgs.cs:
29232           - More signature fixes
29233
29234 2004-08-11 16:20  pbartok
29235
29236         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
29237           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
29238           ImageListStreamer.cs, InputLanguage.cs,
29239           InputLanguageChangedEventArgs.cs,
29240           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
29241           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
29242           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
29243           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29244           - Signature fixes
29245
29246 2004-08-11 16:16  pbartok
29247
29248         * Application.cs:
29249           - Fixed Signature
29250           - Added .Net 1.1 method
29251
29252 2004-08-11 15:25  pbartok
29253
29254         * SWF.csproj:
29255           - Fixed BindingManagerBase.cs filename
29256
29257 2004-08-11 15:22  pbartok
29258
29259         * BindingManagerBase.cs:
29260           - Was checked in with wrong filename
29261
29262 2004-08-11 14:50  pbartok
29263
29264         * SWF.csproj:
29265           - Updated
29266
29267 2004-08-11 13:41  jordi
29268
29269         * XplatUIWin32.cs: Fixes ClientRect
29270
29271 2004-08-11 13:19  pbartok
29272
29273         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29274           XplatUIX11.cs:
29275           - We had SetWindowPos and MoveWindow to set window positions and
29276             size, removed MoveWindow. We have GetWindowPos, so it made sense to
29277             keep SetWindowPos as matching counterpart
29278           - Added some X11 sanity checking
29279
29280 2004-08-11 12:59  pbartok
29281
29282         * Control.cs:
29283           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
29284             (It seems that SetBounds is just a front for SetBoundsCore and
29285              SetBoundsCore updates the underlying window system and
29286              UpdateBounds is responsible for updating the variables associated
29287              with the Control and sending the events)
29288           - Major cleanup of Size handling; we now have two sizes, client_size
29289             and bounds. Bounds defines the window with decorations, client_size
29290             without them.
29291
29292 2004-08-11 12:55  pbartok
29293
29294         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29295           - Added method to calculate difference between decorated window and
29296             raw client area
29297
29298 2004-08-11 12:54  pbartok
29299
29300         * Label.cs:
29301           - Forcing redraw on resize
29302
29303 2004-08-11 11:43  pbartok
29304
29305         * ImageList.cs:
29306           - Removed disposing of the actual images when the list is disposed
29307
29308 2004-08-11 09:13  pbartok
29309
29310         * Control.cs:
29311           - Now properly reparents windows
29312
29313 2004-08-11 08:37  pbartok
29314
29315         * Control.cs:
29316           - Duh!
29317
29318 2004-08-11 07:47  pbartok
29319
29320         * Control.cs:
29321           - Rewrote the collection stuff. Might not be as fast now, not
29322             keeping the number of children around and accessible directly, but
29323             it's more straightforward
29324
29325 2004-08-11 07:44  pbartok
29326
29327         * AccessibleObject.cs:
29328           - Fixed to match ControlCollection rewrite
29329
29330 2004-08-11 07:43  pbartok
29331
29332         * ImageList.cs:
29333           - Added missing creation of the collection list
29334
29335 2004-08-10 20:08  jackson
29336
29337         * StatusBar.cs: Get the paint message from WndProc
29338
29339 2004-08-10 19:31  jackson
29340
29341         * ThemeWin32Classic.cs: Create Brushes as little as possible
29342
29343 2004-08-10 19:20  jackson
29344
29345         * UICues.cs: Add Flags attribute
29346
29347 2004-08-10 19:19  jackson
29348
29349         * StatusBarPanel.cs: Signature cleanup
29350
29351 2004-08-10 19:10  jackson
29352
29353         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
29354           Initial implementation of status bar item drawing
29355
29356 2004-08-10 17:27  jordi
29357
29358         * TrackBar.cs: add missing methods, properties, and restructure to
29359           hide extra ones
29360
29361 2004-08-10 16:24  jackson
29362
29363         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
29364           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
29365           attribute
29366
29367 2004-08-10 13:21  jordi
29368
29369         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
29370           enhancements and standarize on win colors defaults
29371
29372 2004-08-10 12:52  jackson
29373
29374         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
29375           ThemeWin32Classic.cs: Implement DrawItem functionality
29376
29377 2004-08-10 12:47  jordi
29378
29379         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
29380
29381 2004-08-10 12:32  jordi
29382
29383         * Control.cs: throw ontextchange event
29384
29385 2004-08-10 11:43  pbartok
29386
29387         * Control.cs:
29388           - Added more to the still unfinished Dock/Anchor layout code
29389
29390 2004-08-10 11:39  pbartok
29391
29392         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
29393           - Added GetWindowPos method
29394
29395 2004-08-10 11:36  pbartok
29396
29397         * XplatUIWin32.cs:
29398           - Implemented several methods
29399
29400 2004-08-10 09:47  jackson
29401
29402         * TrackBar.cs: Allow control to handle buffering
29403
29404 2004-08-10 09:41  jackson
29405
29406         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
29407
29408 2004-08-10 09:24  jackson
29409
29410         * Label.cs, LinkLabel.cs: Let Control handle buffering.
29411
29412 2004-08-10 09:09  jackson
29413
29414         * StatusBar.cs: Let Control handle all the buffering.
29415
29416 2004-08-10 09:08  jackson
29417
29418         * Control.cs: Control will now handle the buffering code, so each
29419           control does not have to implement this.
29420
29421 2004-08-10 08:34  jackson
29422
29423         * XplatUIDriver.cs: Use default colors from the theme
29424
29425 2004-08-09 17:12  pbartok
29426
29427         * ImageList.cs:
29428           - Fixed several bugs Ravindra pointed out
29429
29430 2004-08-09 16:11  pbartok
29431
29432         * Control.cs:
29433           - Added incomplete dock layout code
29434           - Added support for mouse wheel
29435
29436 2004-08-09 16:09  pbartok
29437
29438         * XplatUIX11.cs:
29439           - Added handling for middle and right mousebutton
29440           - Added handling for mouse wheel
29441           - Added handling for key state and mouse state and position
29442           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
29443           messages
29444
29445 2004-08-09 15:40  jackson
29446
29447         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
29448           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
29449           checkin
29450
29451 2004-08-09 15:37  jackson
29452
29453         * StatusBar.cs: Initial implementation of StatusBar
29454
29455 2004-08-09 15:36  jackson
29456
29457         * ITheme.cs: Add support for drawing status bar and getting status
29458           bar item sizes
29459
29460 2004-08-09 15:35  pbartok
29461
29462         * MouseButtons.cs:
29463           - Fixed values
29464
29465 2004-08-09 15:34  jackson
29466
29467         * ThemeWin32Classic.cs: Add support for drawing status bar and get
29468           status bar item sizes
29469
29470 2004-08-09 15:21  jackson
29471
29472         * ThemeWin32Classic.cs: Use known colors for default control
29473           colours
29474
29475 2004-08-09 15:12  jackson
29476
29477         * ThemeWin32Classic.cs: Make the default font static, it is static
29478           in control so this doesn't change functionality and creating fonts
29479           is sloooooow.
29480
29481 2004-08-09 14:56  pbartok
29482
29483         * X11Structs.cs:
29484           - Added GrabMode enum
29485
29486 2004-08-09 14:55  pbartok
29487
29488         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29489           - Removed Run method, was only required for initial development
29490
29491 2004-08-09 14:51  pbartok
29492
29493         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29494           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
29495           capture
29496
29497 2004-08-09 13:48  pbartok
29498
29499         * XplatUIX11.cs:
29500           - Fixed default sizing for child windows
29501
29502 2004-08-09 12:56  pbartok
29503
29504         * XplatUIX11.cs:
29505           - Added generation of WM_DESTROY message
29506           - Added handling of window manager induced shutdown
29507
29508 2004-08-09 11:31  jackson
29509
29510         * ThemeWin32Classic.cs: New names for control properties
29511
29512 2004-08-09 11:25  jackson
29513
29514         * Control.cs: Use new color names
29515
29516 2004-08-09 11:02  jackson
29517
29518         * XplatUI.cs: Get default window properties from the theme
29519
29520 2004-08-09 11:01  jackson
29521
29522         * ITheme.cs: The theme engine now controls default window
29523           properties
29524
29525 2004-08-09 11:00  jackson
29526
29527         * ThemeWin32Classic.cs: Add default window color properties
29528
29529 2004-08-09 10:17  jackson
29530
29531         * ThemeWin32Classic.cs: Use correct default back color
29532
29533 2004-08-09 10:05  jackson
29534
29535         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
29536           the theme now.
29537
29538 2004-08-09 09:56  jackson
29539
29540         * XplatUI.cs: Remove defaults, these are handled by the theme now.
29541
29542 2004-08-09 09:54  jackson
29543
29544         * Control.cs: Get default properties from the theme.
29545
29546 2004-08-09 09:53  jackson
29547
29548         * ITheme.cs: Themes now handle default control properties
29549
29550 2004-08-09 09:53  jackson
29551
29552         * ThemeWin32Classic.cs: Themes now handle default control
29553           properties so coloring will be consistent
29554
29555 2004-08-08 16:54  jordi
29556
29557         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
29558
29559 2004-08-08 15:08  jordi
29560
29561         * XplatUIX11.cs: fixes keyboard crash
29562
29563 2004-08-08 13:47  jordi
29564
29565         * Label.cs: add cvs header info
29566
29567 2004-08-08 12:09  jackson
29568
29569         * ThemeWin32Classic.cs: Add pen_buttonface
29570
29571 2004-08-08 11:52  jordi
29572
29573         * Label.cs, LinkLabel.cs: [no log message]
29574
29575 2004-08-08 11:34  jordi
29576
29577         * ThemeWin32Classic.cs: Use Windows Standard Colours
29578
29579 2004-08-07 17:32  jordi
29580
29581         * TrackBar.cs: throw exceptions of invalid enums values
29582
29583 2004-08-07 17:31  jordi
29584
29585         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
29586           draw method name
29587
29588 2004-08-07 16:56  jackson
29589
29590         * HorizontalAlignment.cs: Initial checkin
29591
29592 2004-08-07 13:16  jordi
29593
29594         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
29595           methods
29596
29597 2004-08-07 13:05  jordi
29598
29599         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
29600           GetSysColor defines
29601
29602 2004-08-06 18:01  pbartok
29603
29604         * ThemeWin32Classic.cs:
29605           - Fixed some rounding issues with float/int
29606
29607 2004-08-06 18:00  jackson
29608
29609         * DockStyle.cs, AnchorStyles.cs:
29610
29611                   Add flags and serializable attributes.
29612
29613 2004-08-06 17:46  pbartok
29614
29615         * XplatUIX11.cs:
29616           - Implemented GetParent
29617
29618 2004-08-06 17:18  pbartok
29619
29620         * TrackBar.cs:
29621           - Fixed some rounding issues with float/int
29622
29623 2004-08-06 17:17  pbartok
29624
29625         * X11Structs.cs, XplatUIX11.cs:
29626           - Fixed Refresh and Invalidate
29627
29628 2004-08-06 15:30  pbartok
29629
29630         * Control.cs, X11Structs.cs, XplatUIX11.cs:
29631           - Fixed recursive loop when resizing
29632           - Improved/fixed redrawing on expose messages
29633
29634 2004-08-06 09:53  jordi
29635
29636         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
29637           keyboard navigation
29638
29639 2004-08-06 08:02  pbartok
29640
29641         * X11Structs.cs, XplatUIX11.cs:
29642           - Fixed reparenting
29643           - Fixed window border creation
29644
29645 2004-08-05 15:38  pbartok
29646
29647         * XplatUIX11.cs:
29648           - Attempted fix for reparenting problems
29649
29650 2004-08-04 15:14  pbartok
29651
29652         * Control.cs:
29653           - Fixed Invalidation bug (calculated wrong client area)
29654           - Added ClientSize setter
29655
29656 2004-08-04 15:13  pbartok
29657
29658         * Form.cs:
29659           - Added AutoScale properties
29660
29661 2004-08-04 15:13  pbartok
29662
29663         * SWF.csproj:
29664           - Added latest files
29665
29666 2004-08-04 14:11  pbartok
29667
29668         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29669           XplatUIX11.cs:
29670           - Added Invalidate handling
29671
29672 2004-08-03 17:09  jordi
29673
29674         * XplatUIDriver.cs: fixes spelling mistake
29675
29676 2004-07-27 09:53  jordi
29677
29678         * TrackBar.cs: fixes trackbar events, def classname, methods
29679           signature
29680
29681 2004-07-27 09:29  jordi
29682
29683         * ScrollBar.cs: fixes scrollbar events
29684
29685 2004-07-27 04:38  jordi
29686
29687         * Control.cs: changes to be able to run winforms samples
29688
29689 2004-07-26 11:42  jordi
29690
29691         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
29692           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
29693
29694 2004-07-26 05:41  jordi
29695
29696         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
29697           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
29698           implementation
29699
29700 2004-07-22 09:22  jordi
29701
29702         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
29703           check link overlapping, implement events, and fixes
29704
29705 2004-07-21 10:28  jordi
29706
29707         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
29708
29709 2004-07-21 10:19  jordi
29710
29711         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
29712           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
29713           LinkLabelLinkClickedEventArgs.cs,
29714           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
29715           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
29716           implementation
29717
29718 2004-07-19 13:09  jordi
29719
29720         * Control.cs, Label.cs: label control re-written: added missing
29721           functionlity, events, and properties
29722
29723 2004-07-19 10:49  jordi
29724
29725         * Control.cs: fixes SetBounds logic
29726
29727 2004-07-19 01:29  jordi
29728
29729         * Control.cs: Call RefreshWindow only if the window has created
29730
29731 2004-07-15 14:05  pbartok
29732
29733         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
29734           - Implemented ImageList and ImageList.ImageCollection classes
29735           - Added ColorDepth enumeration
29736           - Updated SWF VS.Net project
29737
29738 2004-07-15 11:06  jordi
29739
29740         * XplatUIStructs.cs: added MsgButons enum
29741
29742 2004-07-15 11:03  jordi
29743
29744         * Control.cs: added basic mouse handeling events
29745
29746 2004-07-15 03:38  jordi
29747
29748         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
29749           Vertical TrackBar control implementation
29750
29751 2004-07-13 09:33  jordi
29752
29753         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
29754
29755 2004-07-13 09:31  jordi
29756
29757         * Control.cs, Form.cs: commit: new properties and fixes form size
29758           problems
29759
29760 2004-07-09 14:13  miguel
29761
29762         * ProgressBar.cs: Spelling
29763
29764 2004-07-09 11:25  pbartok
29765
29766         * ProgressBar.cs:
29767           - Removed usage of Rectangle for drawing. Miguel pointed out it's
29768           faster
29769
29770 2004-07-09 11:17  miguel
29771
29772         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
29773
29774                 * ProgressBar.cs: Fixed spelling for `block'
29775
29776                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
29777                 style guidelines.
29778
29779                 Avoid using the += on rect.X, that exposed a bug in the compiler.
29780
29781 2004-07-08 23:21  pbartok
29782
29783         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
29784           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
29785           BaseCollection.cs, Binding.cs, BindingContext.cs,
29786           BindingMemberInfo.cs, BindingsCollection.cs,
29787           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
29788           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
29789           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
29790           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
29791           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
29792           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
29793           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
29794           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
29795           FrameStyle.cs, GiveFeedbackEventArgs.cs,
29796           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
29797           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
29798           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
29799           InputLanguageChangedEventArgs.cs,
29800           InputLanguageChangedEventHandler.cs,
29801           InputLanguageChangingEventArgs.cs,
29802           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
29803           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
29804           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
29805           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
29806           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
29807           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
29808           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
29809           QueryAccessibilityHelpEventArgs.cs,
29810           QueryAccessibilityHelpEventHandler.cs,
29811           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
29812           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
29813           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
29814           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
29815           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
29816           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
29817           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
29818           XplatUIX11.cs, lang.cs:
29819           - Initial check-in
29820
29821