2006-10-05 Carlos Alberto Cortez <calberto.cortez@gmail.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2006-10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2
3         * TreeView.cs: Move the previous change to the general case (to
4         call Application.DoEvents in cases where the method was called by
5         different places).
6
7 2007_10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8
9         * TreeView.cs: When calling EndEdit and we need to hide the textbox,
10         call Application.DoEvents. This is neccessary when we get a call to
11         BeginEdit from an AfterLabelEdit handler, because the focus always
12         goes to the TreeView, even if we try to give it to our
13         LabelEditTextBox. The call do Application.DoEvents seems to
14         synchronize the focus, basically.
15         Fixes #325244.
16
17 2007-10-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18
19         * TreeView.cs: When AfterLabelEdit event is fired, TreeNode.IsEditing
20         should be false. This also removes some nasty recursive paths. Fixes
21         part of #325244.
22
23 2007-10-04  Everaldo Canuto  <ecanuto@novell.com>
24
25         * MdiClient.cs: When cascade (layout) mdi window that is maximized, set the
26         state to normal. Also resize window when cascading. Fixes #325433. 
27
28 2007-10-04  Jonathan Pobst  <monkey@jpobst.com>
29
30         * RichTextBox.cs: When SelectionColor is set to Color.Empty, use
31         DefaultForeColor, as drawing empty colored lines isn't very useful.
32         [Fixes the not drawn lines part of bug #324358]
33
34 2007-10-04  Jonathan Pobst  <monkey@jpobst.com>
35
36         * TextControl.cs: Move Line and LineTag classes into separate files to
37         make things easier to find.
38         * Line.cs, LineTag.cs: Bring coding standards up to Mono's guidelines.
39         * RichTextBox.cs: Capitalize LineTag.Length property access.
40         - This is purely an organizational/formatting change, no logic changed. -
41
42 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
43
44         * ThemeWin32Classic.cs: Do not show focus rectangle in radio buttons when
45         text is empty.
46
47 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
48
49         * ThemeWin32Classic.cs: Do not show focus rectangle in checkboxes when
50         text is empty.
51
52 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
53
54         * ComboBox.cs: On contructor use backgound_color instead of BackColor to
55         prevent calling of OnBackColorChanged. Fixes #325321.
56
57 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
58
59         * TextBox.cs: When check enabled uses Enabled property instead of is_enabled
60         because control can be disabled because owner is disabled.
61
62 2007-10-02  Jonathan Pobst  <monkey@jpobst.com>
63
64         * ComboBox.cs: For the 1.1 profile, the default SelectedText is
65         string.Empty, test failed from previous change.
66
67 2007-10-02  Jonathan Pobst  <monkey@jpobst.com>
68
69         * TextBoxBase.cs: For the 1.1 profile, the default SelectedText
70         is null, not String.Empty.  See bug #323038.
71
72 2007-10-01  Jonathan Pobst  <monkey@jpobst.com>
73
74         * TextControl.cs: Change the margins to match MS a little better.
75         Still not perfect for X11 due to some DrawString differences, but
76         is still an improvement over the old stuff.
77         Partially fixes #324467.
78
79 2007-09-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
80
81         * FolderBrowserDialog.cs: When using MyComputer as 
82         RootFolder, let absolute paths be considered as valid ones. Also, use
83         Path.DirectorySeparatorChar instead of Path.AltDirectorySeparatorChar,
84         for Windows compatibility.
85         Partially fixes #325247.
86
87 2007-09-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
88
89         * FolderBrowserDialog.cs: Fix the recursive FindPathInNodes method.
90         Also remove the stack.Count > 0 check in FBTreeView.SetSelectedNode
91         method, since it causes the dialog to not select folders directly
92         under the root path (when setting SelectedPath property).
93
94 2007-09-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
95
96         * TreeNode.cs: When calling Expand/Collapse and need to call 
97         ExpandBelow/CollapseBelow respectively, take into account
98         partially visible nodes (previously Expanding/Collapsing
99         a partially visible node in the bottom was not updating its +- sign).
100
101 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
102
103         * TreeView.cs: When calling Expand on a TreeNode, and we need to
104         expand nodes below (ExpandBelow), scroll the entire Viewport
105         area if the node is above it and not visible (instead of scrolling
106         the area from node's Bottom, which applies only when the node is
107         visible).
108         Fixes #325266.
109
110 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
111
112         * TreeView.cs: When calling ExpandAll, set SelectedNode to the top
113         node in the bottom area (as .Net does). This is done to preserve the
114         scroll position when ExpandAll is called before handle is created for
115         the 1.1 profile (bottom area, as opposed to top area in 2.0).
116         Fixes #324103.
117
118 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
119
120         * TreeView.cs: When calling ExpandAll, don't move the scroll to the 
121         bottom area if we are in fact not using the vertical scroll bar.
122         Fixes #324824.
123
124 2007-09-27  Jonathan Pobst  <monkey@jpobst.com>
125
126         * Control.cs: Comment out a double buffering optimization that doesn't
127         take into account invalidates created in OnPaint, causing the control
128         to never be redrawn.  It would take quite a bit of work to work around
129         this, but I left it commented with an explanation for later possible
130         optimization.
131         [Fixes bug #328681]
132
133 2007-09-27  Jonathan Pobst  <monkey@jpobst.com>
134
135         * Control.cs: Ask parent to perform a layout if control is AutoSize and
136         the text changes.
137         * RadioButton.cs: Implement GetPreferredSizeCore.
138         [Fixes bug #328672]
139
140 2007-09-26  Jonathan Pobst  <monkey@jpobst.com>
141
142         * RichTextBox.cs, TextBoxBase.cs, WindowsFormsSynchronizationContext.cs:
143         corcompare stuffs.
144
145 2007-09-26  Jonathan Pobst  <monkey@jpobst.com>
146
147         * Application.cs: Move the sync context stuff to Run instead of RunLoop
148         so that it doesn't get uninstalled on modal forms.
149         * Control.cs: Install a sync context when a control is created.
150         * WindowsFormsSyncronizationContext.cs: Create a private static control
151         to invoke on.  This is easier than trying to find a created control we
152         can use.
153         [Fixes bug #327608]
154
155 2007-09-25  Jonathan Pobst  <monkey@jpobst.com>
156
157         * Application.cs: Install a WindowsFormsSynchronizationContext in the
158         run loop, and uninstall it when done.
159         * WindowsFormsSynchronizationContext.cs: Implement.
160         [Fixes the common case in bug #327608]
161
162 2007-09-23  Gert Driesen  <drieseng@users.sourceforge.net>
163
164         * DataGridViewCellCollection.cs: Added argument checks for indexers.
165         Use case-insensitive lookup of column name in indexer. Code
166         formatting.
167
168 2007-09-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
169
170         * TreeNode.cs: When collapsing or expanding a node, check whether its
171         change will affect the visible area (we were previously doing a
172         IsVisible check, but that check is not enough since children nodes
173         could be still visible). Fixes part of #325266.
174
175 2007-09-21  Jonathan Pobst  <monkey@jpobst.com>
176
177         * TreeView.cs: Always select the first node when the TreeView gets
178         focus if there is no currently selected node.
179         [Fixes bug #324279]
180
181 2007-09-21  Jonathan Pobst  <monkey@jpobst.com>
182
183         * TreeView.cs: Do not raise BeforeSelect or AfterSelect when the
184         node being selected is null.
185         [Patch from Yves Bastide fixes bug #326858]
186
187 2007-09-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
188
189         * TreeNode.cs: Add an internal ArePreviousNodesExpanded, to know
190         whether all the parent nodes are expanded.
191         * TreeNodeCollection.cs: When adding a new node an calling SetupNode,
192         call RecalculateVisibleOrder if all previous nodes are expanded.
193         Before that we were doing a IsVisible check, but sometimes the node
194         is not in the visible area, but _should_already be ready, because of
195         all previous nodes are expanded. Fixes #325259.
196
197 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
198
199         * ToolStripSplitButton.cs: Call the ButtonClick event if the button
200         portion of the item is clicked.
201
202 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
203
204         * TextControl.cs: Do not tell the system to move the cursor if the
205         textbox isn't focused.  Fixes part of bug #322668.
206
207 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
208
209         * ComboBox.cs: When there are no items, do not show the dropdown if
210         the down arrow is clicked.  Fixes part of bug #322668.
211
212 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
213
214         * ToolStripComboBox.cs: Manually set the size of this control in the
215         constructor, as it doesn't seem to be the same as DefaultSize.
216         Fixes a failing monobuild test.
217
218 2007-09-19  Jonathan Pobst  <monkey@jpobst.com>
219
220         * DateTimePicker.cs: If the user sets MinDate to DateTime.MinValue,
221         change it to DateTimePicker.MinDateTime.  [Fixes bug #326609]
222
223 2007-09-19  Jonathan Pobst  <monkey@jpobst.com>
224
225         * Theme.cs: FileDialogs should be using DesktopDirectory instead of
226         Desktop.  This lets it work for people who have moved their desktops
227         from the default location on windows.  For people who have not, both
228         values are the same, so it shouldn't hurt anything.  [Fixes bug #325270]
229
230 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
231
232         * ToolStripControlHostTest.cs: DefaultSize is based off hosted control,
233         but when the base constructor sets this, the control is null.  Set it
234         again in the constructor.  Fixes a failing monobuild test.
235
236 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
237
238         * ToolStripDropDownItem.cs: Make sure Click and DropDownOpened events
239         get called.
240         * ToolStripSplitButton.cs: Make sure MouseDown and MouseUp events get
241         called.
242
243 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
244
245         * ToolStrip.cs: Don't show tooltips for ToolStripTextBoxes, they
246         will handle it themselves.
247         * ToolStripItem.cs: When deciding what the text of a tooltip should
248         be, use the Text property instead of the text field.
249         * ToolStripTextBox.cs: Handle tooltips.
250         [Fixes bugs #325417 and #325973]
251
252 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
253
254         * ToolStripDropDownButton.cs: Only drop down overflow menu with a
255         left click.  Fixes the easy part of bug #325969.
256
257 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
258
259         * ToolStrip.cs: Set AutoSizeMode back to GrowAndShrink to refix
260         bug #325406, but set a minimum for StatusStrip to 22 to keep
261         bug #325390 fixed.  I think this minimum would have been figured
262         up automatically if the grip was actually a ToolStripItem, but it
263         currently is not.
264
265 2007-09-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
266
267         * ListView.cs: max_label_wrapping is now 30 pixels instead of 38,
268         as this is apparently the actual value used by .Net. Also apply
269         ItemPadding in Details view only, and decrease the general width padding,
270         to have only the needed. This should fix #324340 in Windows too.
271
272 2007-09-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
273
274         * ListViewItem.cs: Don't Invalidate item if parent is inside
275         a BeginUpdate/EndUpdate block. This prevents to have differences
276         between the ListView and items state, as well as avoid some exceptions
277         there.
278         * ListView.cs: Make 'updating' field internal.
279
280 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
281
282         * ToolStripControlHost.cs: Realign control when ControlAlign changes.
283         * ToolStripItem.cs: Use ImageScalingSize when calculating preferred
284         size if appropriate.
285         Fixes reopened bug #325414.
286
287 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
288
289         * ToolStrip.cs: Set AutoSizeMode back to GrowOnly.
290         * ToolStripItem.cs: Invalidate before and after our new autosize when
291         text changes.
292         Fixes reopened bug #325390.
293
294 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
295
296         * ToolStripMenuItem.cs: Make sure we invalidate when clicked so
297         mnemonics can be drawn or undrawn correctly.  Fixes reopened bug 
298         #325044.
299
300 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
301
302         * Control.cs: Do WM_CONTEXTMENU before OnMouseUp.  [Fixes bug #325535]
303
304 2007-09-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
305
306         * ColumnHeader.cs: When drawing column text, use EllipsisCharacter
307         instead of EllipsisWord (by equistango at gmail.com). Fixes part of
308         #82734.
309
310 2007-09-14  Jonathan Pobst  <monkey@jpobst.com>
311
312         * ToolStrip.cs: Make ToolStrip selectable when TabStop = true.  Find an
313         item to select when the ToolStrip is selected.
314         * ToolStripControlHost: Realign the control when the bounds or visibility
315         change.
316         * ToolStripItem.cs: When selected, if it's a control host, focus the control.
317         * ToolStripOverflow.cs: When laying out the drop down, respect the item's
318         preferred height.
319         * ToolStripTextBox.cs: OnPaintInternal should call base.OnPaintInternal, not
320         base.OnPaint.  Was causing text not to be drawn.
321
322 2007-09-14  Jonathan Pobst  <monkey@jpobst.com>
323
324         * SplitterPanel.cs: Ignore attempts to set AutoSizeMode.
325
326 2007-09-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
327
328         * TreeView.cs: When creating the label edit text box,
329         set is initially to Visible = false. This is done to
330         prevent a confusion in the layout which makes it to lose
331         focus when shown the first time. Fixes part of #82592.
332
333 2007-09-13 Andreia Gaita <avidigal@novell.com>
334
335         * WebBrowserBase.cs: add FocusOption enumeration for finer focus control
336
337 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
338
339         * ToolStrip.cs: Take Margin into account when calculating preferred
340         size.  Also, allow preferred size to get smaller than the explicit
341         size.
342         * ToolStripTextBox.cs: Don't change the GetPreferredSize implementation.
343         First step towards fixing bug #82747.
344
345 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
346
347         * TreeView.cs: Applied patch from latency@gmx.de to not paint the
348         full row select background over the plus/minus glyph.  Also, turn
349         off the focus rectangle for full row select since MS doesn't seem
350         to ever paint it.  [Fixes bug #81839]
351
352 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
353
354         * ToolStrip.cs: Don't FocusInternal if there is no selected item.
355         This was causing keyboard opened dropdowns to lose focus.
356         [Fixes bug #82803]
357
358 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
359
360         * Control.cs: If Rectangle.Empty is passed to Invalidate, use
361         ClientRectangle instead.  [Fixes bug #82838]
362
363 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
364
365         * SplitContainer.cs: We can't reset Visible on every layout because
366         someone may have set Visible = false explicitly on a SplitterPanel.
367         Make sure when we switch orientation the SplitterDistance does not
368         change.  Fixes two failing tests.
369
370 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
371
372         * TreeView.cs: Use MeasureTextInternal instead of MeasureText in
373         TextRenderer, since the latter is only available in 2.0.
374
375 2007-09-13  Ivan N. Zlatev <contact@i-nz.net>
376
377         * Cursor.cs: Fix Cursor.Current to apply Cursor.Default.
378         * SplitContainer.cs: Implement FixedPanel layouting.
379
380 2007-09-12  Andreia Gaita  <avidigal@novell.com>
381
382         * WebBrowserBase.cs: setup shutdown routine
383
384 2007-09-12  Andreia Gaita  <avidigal@novell.com>
385
386         * Application.cs: Let keyboard events that are targetted 
387                 to non-mwf windows hosted inside mwf (as in, webbrowser),
388                 propagate properly. Fixes keyboard handling on the webbrowser.
389
390 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
391
392         * ListView.cs: When handling MouseUp event and we are 
393         highligting a node with the mouse right button, don't trigger
394         Before/AfterSelecting event, since we are not actually selecting
395         the node.
396
397 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
398
399         * TreeView.cs: When editing a node, modify the edit text box
400         depending on the text length (as you are typing), like MS does.
401
402 2007-09-12  Jonathan Pobst  <monkey@jpobst.com>
403
404         * ToolStrip.cs: Fixup preferred size calculations for vertical toolbars. 
405         Override GetPreferredSizeCore to perform calculations.  Remove custom
406         autosize logic.  [Fixes bug #82739]
407
408 2007-09-12  Jonathan Pobst  <monkey@jpobst.com>
409
410         * TextBoxBase.cs: Modified should default to false.
411
412 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
413
414         * Control.cs: Update the anchoring distances even when layout is supspended.
415         Patch provided by George fixes bug #82805.
416
417 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
418
419         * Control.cs: Provide a setter for ExplicitHeight.
420         * TextBoxBase.cs: Now that we have the implementation for explicit heights,
421         remove the hacks in here for requested_height.
422         [Fixes bug #82749]
423
424 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
425
426         * ScrollBar.cs: Fix an issue reported on the lists where setting a scrollbar's
427         Maximum to lower that its current Value caused an ArgumentException by setting
428         the Value to the new Maximum.
429
430 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
431
432         * ThemeWin32Classic.cs: Math is hard!  Fix some math so that the TrackBar
433         handle moves to the closest tick when it is being dragged.
434         [Fixes bug #82751]
435
436 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
437
438         * ToolStripManager.cs: When we have added MDI buttons onto a MenuStrip, we
439         can't let them count as real items when calculating where to merge in the
440         user's items.  [Fixed bug #82786]
441
442 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
443
444         * ToolStripMenuItem.cs: Add a parent type check so we don't crash on people
445         who want to add a menu item directly onto a toolstrip.
446         [Fixes bug #82775, part II]
447
448 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
449
450         * StatusStrip.cs: Synchronize SetDisplayedItems with the ToolStrip version.
451         * ToolStrip.cs: If a ToolStripItem set to not visible is added to a ToolStrip,
452         don't set it to available.
453         * ToolStripItem.cs: When Visible is changed, tell the owner to perform a layout.
454         [Fixes bug #82727, part II]
455
456 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
457
458         * StatusStrip.cs: Change item placement to None if not visible.
459         * ToolStripItem.cs: Invalidate when InternalVisible changes.
460         These should have been committed to fix 82723, but I missed them.
461
462 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
463
464         * ToolStrip.cs: Make sure ItemClicked is raised before the ToolStripItem's
465         Click, and that it is only called once.
466         * ToolStripMenuItem.cs: Call OnClick even when there are dropdown items.
467         * ToolStripDropDownItem.cs: Override HandleItemClick so dropdowns stay
468         dropped down.
469         [Fixes bug #82775]
470
471 2007-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
472
473         * ColumnHeaderSample.cs: Use 5 pixels as extra height instead of 8
474         to match .Net.
475         * ThemeWin32Classic.cs: For the columns text, use 5 pixels as left padding
476         instead of 8, just like above. Partially fixes #82734.
477
478 2007-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
479
480         Patch by Ernesto Carrea <equistango at gmail.com>. Partially 
481         fixes #82734.
482
483         * ListView.cs: Remove extra space between rows in Details view (match
484         .Net). 
485         * ThemeWin32Classic.cs: Header text should use ListView.Font, not
486         the DefaultFont.
487
488 2007-09-08  Gert Driesen  <drieseng@users.sourceforge.net>
489
490         * Application.cs: Modified ProductVersion to return value of
491         AssemblyInformationVersion if available, and fallback to assembly
492         version. Fixes bug #82746. Code formatting.
493         * BindingSource.cs: Remove NIE from Dispose, and mark it MonoTODO
494         instead.
495
496 2007-09-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
497
498         * Control.cs: When updating ZOrder for a child control,
499         take into account the implicit ones (we need it in our controls
500         using them). Fixes #82642.
501
502 2007-09-07  Jonathan Pobst  <monkey@jpobst.com>
503
504         * ToolStripItem.cs: Add support for animated images.
505         [Fixes bug #82726]
506
507 2007-09-07  Jonathan Pobst  <monkey@jpobst.com>
508
509         * ToolStrip.cs: Make sure we aren't drawing anything that isn't 
510         visible.  [Fixes bug #82727]
511
512 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
513
514         * ToolStripItem.cs: If AutoSize changes the size of our item, invalidate
515         so we repaint using the new size.  [Fixes bug #82723]
516
517 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
518
519         * TreeView.cs: If ShowLines is true, we should ignore the FullRowSelect
520         option.  [Fixes bug #81779]
521
522 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
523
524         * TreeView.cs: Override HandleClick because the StandardClick style is
525         set to false.  According to MSDN (and testing), the click events should
526         only be raised when the click occurs on a TreeNode.  [Fixes bug #81739]
527
528 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
529
530         * ToolStripTextBox.cs: Invalidate our textbox when it loses focus, so
531         the border will disappear.  Fixes reopened #82653.
532
533 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
534
535         * Control.cs: If the control is autosize, and its preferred size changes
536         when it lays out its children, tell its parent so it can be re-layed out.
537         Fixing some of the fallout from r85433.
538
539 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
540
541         * ThemeWin32Classic.cs: Fix a NRE caused by r85427 because RadioButton
542         and CheckBox share some code.
543
544 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
545
546         * TrackBar.cs: Only call OnScroll if we actually changed the Value of
547         the TrackBar, not every mouse move.  [Fixed bug #82718]
548
549 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
550
551         * ThemeWin32Classic.cs: Allow a CheckBox to be rendered like a Button
552         under 2.0 rendering.  [Fixes bug #82657]
553
554 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
555
556         * TreeView.cs: If we found a TreeNode to display a context menu, but
557         it doesn't have one to show, let the TreeView display its menu
558         instead.  [Fixes bug #82680]
559
560 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
561
562         * ToolStripTextBox.cs: TextBox no longer call OnPaint, we need to use
563         OnPaintInternal instead.  Give the internal TextBox a Border property
564         so it can draw itself more correctly.  [Fixes bug #82653]
565
566 2007-09-06  Zoltan Varga  <vargaz@gmail.com>
567
568         * HtmlHistory.cs HtmlWindow.cs HtmlWindowCollection.cs ListBindingHelper.cs WindowsFormsSection.cs WindowsFormsSynchronizationContext.cs: Stubs for missing 2.0 classes.
569
570 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
571
572         * ComboBox.cs: Adjust combobox button state to reflect current state when
573         back to enabled = true. Fixes first issue of #82654.
574
575 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
576
577         * Control.cs: Fix last patch regression, prevent forms to update zorder when
578         setting visible property.
579
580 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
581
582         * Control.cs: Update zorder after control creation in SetVisibleCore, it 
583         fix zorder for controls initially created as non visible. Fixes #82667.
584
585 2007-09-04  Everaldo Canuto  <everaldo@simios.org>
586
587         * ThemeWin32Classic.cs: Adjust checkbox light color to ControlLightLight to
588         mimic win32 look. Fixes #82656.
589
590 2007-09-01  Zoltan Varga  <vargaz@gmail.com>
591
592         * FileDialogCustomPlace.cs FileDialogCustomPlacesCollection.cs: 
593         Stubs for new net 3.5 classes.
594
595 2007-08-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
596
597         * ListViewItem.cs: In ListViewItemCollection operations calculate
598         Layout for owner as well as invalidate it. Fixes part of #82642.
599
600 2007-08-31  Jonathan Pobst  <monkey@jpobst.com>
601
602         * ToolStripItem.cs: Take Parent/Owner's Enabled state in to account
603         when returning Enabled.  [Fixes bug #82651]
604
605 2007-08-30  Everaldo Canuto  <everaldo@simios.org>
606
607         * ToolBar.cs: Fix button size for non flat toolbars. Fixes #82368.
608
609 2007-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
610
611         * ListView.cs: Put item padding info in a single place
612         (Theme.ListViewItemPaddingWidth) to have working AutoResize on
613         columns again.
614         * ThemeWin32Classic.cs:
615         * Theme.cs: Likewise.
616
617 2007-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
618
619         * ListView.cs: When a ListViewSubItem instance is invalidated,
620         invoke Invalidate on parent ListViewItem, not parent ListView.
621         Fixes #81570.
622
623 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
624
625         * ListView.cs, ListViewItem.cs: corcompare stuffs.
626
627 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
628
629         * BindingMemberInfo.cs: Implement == and != operators.
630
631 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
632
633         * HtmlElementEventArgs.cs: Implement properties.
634
635 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
636
637         * HtmlElementErrorEventArgs.cs, HtmlElementErrorEventHandler.cs: Added.
638
639 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
640
641         * TabControl.cs: I was looking into the MonoTODO on TabPageCollection.
642         Add (string,string,string) to implement the imagekey.  It turns out, we
643         use the requested imagekey whereas .Net does not.  So I broke ours to match
644         theirs.  :(
645
646 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
647
648         * Form.cs, UserControl.cs: Override ValidateChildren, AutoValidate.
649
650 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
651
652         * ContainerControl.cs: Implement ValidateChildren and new Validate overload.
653
654 2007-08-29  Gert Driesen  <drieseng@users.sourceforge.net>
655
656         * FolderBrowserDialog.cs: Set Tag of newly created node, and keep it
657         up-to-date. Fixes bug #82618.
658
659 2007-08-29  Everaldo Canuto  <everaldo@simios.org>
660
661         * TextBoxBase.cs: Call CalculateDocument after changes Lines property to
662         reflect document changes. Fixes #82367.
663
664 2007-08-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
665
666         * ListView.cs: Add/fix some override differences between 1.1 and 2.0,
667         as well as add new ones. This should make work the BackgroundImage
668         property for ListView again.
669
670 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
671
672         * DataGrid.cs, DataGridViewButtonColumn.cs, DataGridViewCheckBoxColumn.cs,
673         DataGridViewComboBoxColumn.cs, DataGridViewImageColumn.cs, DataGridViewLinkColumn.cs,
674         DataGridViewTextBoxColumn.cs, ToolTip.cs: corcompare stuffs.
675
676 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
677
678         * Control.cs, XPlatUI.cs, XPlatUIDriver.cs, XPlatUIWin32.cs: Implement
679         IsKeyLocked.
680
681 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
682
683         * Cursor.cs: Add HotSpot, hook into XPlatUI.GetCursorInfo.
684         * XPlatUIWin32.cs: Implement hotspot lookup in GetCursorInfo.
685
686 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
687
688         * RadioButton.cs: Use 2.0 rendering.  Use base implementation of TextAlign.
689         * Theme.cs, ThemeWin32Classic.cs: Implement 2.0 rendering for RadioButton.
690
691 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
692
693         * CursorConverter.cs: Implement conversion to InstanceDescriptor.
694
695 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
696
697         * GridEntry.cs: Implement GetService.
698
699 2007-08-27  Jonathan Pobst  <monkey@jpobst.com>
700
701         * LabelEditTextBox.cs, TreeView.cs: After hiding the textbox used
702         for label editting, make sure we focus back on the TreeView.
703         [Fixes bug #82590]
704
705 2007-08-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
706
707         * ListView.cs: Add some 2.0 overrides.
708
709 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
710
711         * Form.cs: Uses opacity var instead of Opacity property in CreateHandle
712         because getter dont returns right value before handle creation. Thanks 
713         to George. Fixes #82569.  
714
715 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
716
717         * Theme.cs: Revert last patch, it causes error under win32. 
718
719 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
720
721         * Theme.cs: Uses Environment.SpecialFolder.DesktopDirectory instead of 
722         Environment.SpecialFolder.Desktop in Places method, Desktop returns the 
723         logical Desktop rather than the physical file system location. Fixes #82603. 
724
725 2007-08-26  Everaldo Canuto  <ecanuto@novell.com>
726
727         * MessageBox.cs: Add clipboard copy (ctrl+c) to messagebox. Thanks Andy Hume
728         for the patch. Fixes #82568.
729
730 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
731
732         * ListView.cs: Add a pair of missing 2.0 ListViewItemCollection.Insert
733         methods.
734
735 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
736
737         * ListViewInsertionMark.cs: New stubbed class.
738
739 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
740
741         * FolderBrowserDialog.cs: When adding folder, immediately create the
742         directory with temporary name and rename the directory when editing
743         finishes. This matches MS. Ensure the node for the new folder is 
744         selected and LabelEdit is disabled, when editing is either finished
745         or cancelled.
746
747 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
748
749         * TreeView.cs: When editing label of node, ensure node is visible.
750
751 2007-08-25  Ivan N. Zlatev  <contact@i-nz.net>
752
753         * PropertyGridView.cs: Set the value only if it has changed.
754
755 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
756
757         * ListView.cs: Some more code refactoring to add support sorting
758         with groups (now for Details view). Remove unused code also.
759
760 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
761
762         * NodeLabelEditEventArgs.cs: EndEdit immediately when CancelEdit is called.
763         Not a big fan of reacting immediately to a field in an EventArg, but that's
764         the way it's done.  (This is part of the previous commit that got left out.)
765
766 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
767
768         * FolderBrowserDialog.cs: Removed need for separate description field.
769         Replaced "" with string.Empty. Fixed tabindex. Ensure OK button
770         has focus when dialog box is displayed again, regardless of what
771         button was pressed the previous time. Set RootFolder and SelectedPath
772         each time dialog box is displayed. This ensures the treeview is
773         refreshed, and fixes bug #82579. Do no hide selected node in TreeView
774         when it does not have focus. Added support for more special folders.
775
776 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
777
778         * TreeView.cs: Create a CancelEdit method.  Clone the edit_args in EndEdit
779         before calling AfterLabelEdit.  If the user calls BeginEdit in that event,
780         it resets the edit_args.
781         * TreeNode.cs: Call CancelEdit if the user passes cancel = true to EndEdit.
782         [Fixes bug #82577]
783
784 2007-08-24  Gert Driesen  <drieseng@users.sourceforge.net>
785
786         * FolderBrowserDialog.cs: Modifies form caption and text of new folder
787         button to match MS. Provide more meaningful exception message for
788         invalid RootFolder value. Use zero-length string when SelectedPath
789         is set to null. Allow non-rooted paths in SelectedPath, but ignore
790         them in FolderBrowserTreeView. Allow folders to be created in
791         RootFolder. Fixes bug #82576.
792
793 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
794
795         * ListView.cs: Correctly compute the layout_ht (height) when using groups,
796         since we need to take into account the group headers and the margin
797         between them.
798         * ListViewGroup.cs: Add a rows field to store the number of rows per
799         group.
800
801 2007-08-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
802
803         * DateTimePicker.cs: The MS' MTB has a really stupid year formatting.
804           Anyways, let's just follow the lead.
805
806 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
807
808         * CheckBox.cs: Set the AutoSizeMode to GrowAndShrink.
809         * Form.cs, GroupBox.cs: Don't skip Right or Bottom anchored 
810         controls in GetPreferredSizeCore.
811         * ThemeWin32Classic.cs: Tweak text drawing of CheckBoxes.
812         [Fixes bug #82488]
813
814 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
815
816         * PrintDialog.cs: Need to instantiate the form variable here too.
817
818 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
819
820         * ListView.cs: Do some reorganization to support sorting in groups,
821         by doing the layout sequentially in ListView.Items. Also add support
822         for the Default Group, which should be available for items with no
823         group assigned.
824         * ListViewGroup.cs: Add support for DefaultGroup. Include new members
825         for storing layout info also.
826         * ListViewGroupCollection.cs: Add a DefaultGroup as part of the
827         collection, as well as providing internal members to do a traversal
828         including the default group (needed when doing layout/drawing).
829         * ThemeWin32Classic.cs: When drawing group headers use internal
830         ListViewGroupCollection members to take into account the default
831         group.
832
833 2007-08-23  George Giolfan  <georgegiolfan@yahoo.com>
834
835         * FlowLayoutPanel.cs: Add GetPreferredSizeCore.  [Fixes bug #82537]
836
837 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
838
839         * TreeView.cs: IsInputKey: don't ask for any keys if the handle hasn't
840         been created.  If handle is created, we want arror keys.  If we are editing
841         a node, we want things like enter, esc, home, end, page up, page down.
842         Allows Esc to work for FolderBrowserDialog.
843
844 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
845
846         * ColorDialog.cs, FontDialog.cs: Set the form's CancelButton so that
847         they close when ESC is pressed.  Thanks Andy!
848
849 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
850
851         * CommonDialog.cs: Do not instantiate form, leave that for derived classes.
852         This way we can tell if this is a CommonDialog provided with mono, or one
853         that is being implemented outside by a developer.  If it is an external one,
854         the developer is responsible for showing their own form.  We were showing
855         our blank form after the developer showed his.
856         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs, FontDialog.cs,
857         PageSetupDialog.cs: Instantiate form variable in our constructor.
858         [Fixes bug #82531]
859
860 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
861
862         * ListBox.cs, ListView.cs, TreeView.cs: Override IsInputCharInternal
863         and always return true.  [Fixes bug #81616]
864
865 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
866
867         * TextBoxBase.cs: Allow 2.0 AutoSize to change the height of the
868         TextBox.  [Fixes bug #82549]
869
870 2007-08-23  Gert Driesen  <drieseng@users.sourceforge.net>
871
872         * FileDialog.cs: When Save/Open is clicked and no filename is selected
873         or entered then do not close the dialog. Fixes bug #82539. Removed
874         CWLs.
875
876 2007-08-22  Everaldo Canuto  <ecanuto@novell.com>
877
878         * FileDialog.cs: Create UpdateRecentFiles and move the recent files refresh
879         code to this method. It is calling every time filter changes. This method
880         will help to fix the bug #80887.
881
882 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
883
884         * CheckBox.cs: Implement AutoSize calculation.
885
886 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
887
888         * CheckBox.cs: Use new 2.0 rendering for 2.0.
889         * Theme.cs: Method declarations for 2.0 rendering path.
890         * ThemeWin32Classic.cs: 2.0 rendering implementation for CheckBox.
891
892 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
893
894         * ListViewGroupCollection.cs: Fix a typo of the previous patch.
895
896 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
897
898         * ListViewGroupCollection.cs: Implement AddRange the right way, to
899         only call Redraw on the parent one time.
900
901 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
902
903         * DataGridViewRowHeaderCell.cs, DataGridViewColumnHeaderCell.cs: Implemented
904           GetClipboardContent.
905         * DataGridViewCell.cs: Implemented GetClipboardContent,
906           GetEditedFormattedValue, GetFormattedValue.
907         * DataGridView.cs: Implemented GetClipboardContent, TopLeftHeaderCell.
908
909 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
910
911         * TableLayoutStyleCollection.cs: corcompare fix.
912
913 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
914
915         * DataObject.cs: Implemented retrieval of convertible / not convertible
916           objects.
917
918 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
919
920         * ToolStripItem.cs: When changing the item's text, invalidate before we resize
921         ourselves.  This ensures the entire old bounds are repainted, in case our new
922         size is smaller.  [Fixes bug #82518]
923
924 2007-08-20  Everaldo Canuto  <ecanuto@novell.com>
925
926         * XplatUIX11.cs: Apply patch from #81588, it makes use of PointerMotionHintMask
927         flag to make fast handle of mouse events, without this the mouse move is
928         handled in some manner, whether it is a mouse move or not. Fixes #81588.
929
930 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
931
932         * ListView.cs: When doing layout calculations don't use a ref
933         param to keep the current item; instead use its Index value (this 
934         is specially important when doing the layout with Groups
935         and Items being sparse). Also don't take into account items added to
936         the Group but not yet added to the main ListView.Items collection.
937
938 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
939
940         * ListViewGroupCollection.cs: Forgot to mimic an issue
941         in the indexer (don't assign the ListView owner for new values).
942
943 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
944
945         * ListViewGroupCollection.cs: Make the string indexer use
946         the int based indexer to re-use code, instead of duplicate the code.
947         Also Redraw as needed and take into account null values.
948
949 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
950
951         * StatusStrip.cs: Make sure the item's parent gets set in SetDisplayedItems.
952         [Fixes bug #82481]
953
954 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
955
956         * ToolStrip.cs: Add some logic to un-focus controls in ToolStripControlHosts
957         when other buttons are clicked or navigated to.
958
959 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
960
961         * XplatUIX11.cs: Treat toolwindows as if they had no window manager, since
962           it's XplatUIX11 that attaches them.
963
964 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
965
966         * DataGridView.cs: If a column has been added, recreate the editing row.
967           Fixes #82226.
968
969 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
970
971         * TextControl.cs: Use Math.Max instead of Math.Min when deciding the length
972           of the tag to draw. Makes disappearing text show up again.
973
974 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
975
976         * StatusBar.cs: Take into account any icons when a panel has AutoSize =
977           Contents. Fixes #82487.
978
979 2007-08-19  Andreia Gaita  <avidigal@novell.com>
980
981         * Added HtmlElement.cs, HtmlElementCollection.cs, 
982           HtmlElementEventArgs.cs, HtmlElementEventHandler.cs
983           
984 2007-08-19  Andreia Gaita  <avidigal@novell.com>
985
986         * BindingSource.cs: Implement this, dispose and getenumerator.
987         * DataGridViewRowCollection.cs: Move the InvalidOperationException
988         out of AddInternal, throw it only on public Add calls. The 
989         UsingWebBrowser sample was blowing up with this when setting the
990         DataSource after adding DataBindings, so it's likely that .net
991         only throws this exception when Add is called directly. 
992         
993         * ToolStripControlHost.cs: Return the hosted control's text
994         property, and not the ToolStripItem one (it would always return
995         the initial value).
996         
997         * HtmlDocument.cs: Implement GetElementById and All
998         * WebBrowser.cs: Remove exception on set_DocumentStream.        
999
1000 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1001
1002         * Form.cs: Fix the max and min value for opacity (0~1).
1003
1004 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1005
1006         [Fixes #80118]
1007         * DataGridTableStyle.cs: Default header font is now null, on getter it 
1008         returns datagrid font when is null. On setter permits null.
1009
1010         * DataGrid.cs:
1011         - When ResetHeaderFont set header font to null.
1012         - On EndInit set grid_style.DataGrid.
1013
1014 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1015
1016         * TabControl.cs: Fix regression in default padding x.
1017
1018 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1019
1020         * TabControl.cs: Fix tab page text area removing padding. Fixes #82471.
1021
1022 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
1023
1024         * TabControl.cs: Fix first tab drawing, when selected it must have x = 0
1025         not 2. Fixes #82229.
1026
1027 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1028
1029         * TabControl.cs: Fix tab size when image height is less than text height.
1030         Partially fixes #81837.
1031
1032 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1033
1034         * Form.cs: Add WS_EX_CONTROLPARENT to forms to make it selectable using 
1035         "alt + tab". It works only for Win32, for X11 theres no way to remove window
1036         from taskbar and keep it on "alt_tab". Fixes #81722.
1037
1038 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1039
1040         * XplatUIX11.cs: Apply patch from Jurek Bartuszek to fix DrawReversibleFrame
1041         and DrawReversibleLine, also apply same behavior to FillReversibleRectangle. 
1042         Fixes #80877 and #79418.
1043
1044 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1045
1046         * MenuAPI.cs: Fix popup menu position when the size is larger than distance 
1047         between position and one of the screen borders. Fixes #82349.
1048
1049 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1050
1051         * MessageBox.cs: When there is no form that invoked the MessageBox, shows
1052         the MessageBox in the taskbar. Fixes #82457.
1053
1054 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
1055
1056         * MessageBox.cs: Fix form size when icon is set and text height is bigger
1057         than icon. Fixes #82468.
1058
1059 2007-08-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1060
1061         * ThemeWin32Classic.cs: A FixedToolWindow has border size 3.
1062         * InternalWindowManager.cs: Change HandleCalcSize to return a boolean value
1063           if handled or not. Implement WM_NCCALCSIZE for WParam == 0 as well.
1064           Refactored HandleNCCalcSize somewhat to avoid code duplication.
1065         * Form.cs: Add is_clientsize_set, set in set_ClientSize, used by
1066           FormBorderStyle to decide if we're calculating a new size from the
1067           client size or not. CreateParams: Don't fake tool windows, only the X11
1068           backend manages toolwindows manually.
1069
1070 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1071
1072         * Form.cs: Only reset is_visible if !IsDisposed to prevent an
1073         ObjectDisposedException.
1074
1075 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1076
1077         * Form.cs: Reset is_visible back to true after OnLoad.  Setting this
1078         in OnLoad should not have any effect.  [Fixes bug #82470]
1079
1080 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1081
1082         * ToolTip.cs: Add a hack to ToolTipWindow so it will still size and
1083         paint for controls that create their own ToolTipWindow instead of
1084         going through ToolTip.
1085
1086 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1087
1088         * ToolTip.cs: Make Hide internal instead of public to match MS API.
1089
1090 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1091
1092         * ListViewGroupCollection.cs: Use generic List instead of an
1093         ArrayList, since this collection is 2.0 only.
1094
1095 2007-08-17  Jeffrey Stedfast  <fejj@novell.com>
1096
1097         * ToolTip.cs (Hide): Made public to make the build work (should
1098         this not be public?).
1099
1100 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1101
1102         * ToolBar.cs, ToolStrip.cs, TreeView.cs: Use a ToolTip instead of a
1103         ToolTipWindow.
1104         * ToolTip.cs: Add an internal Visible property to facilitate transition.
1105
1106 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
1107
1108         * DrawToolTipEventArgs.cs, DrawToolTipEventHandler.cs, PopupEventArgs.cs,
1109         PopupEventHandler.cs: Make these internal for 1.1.
1110         * ThemeClearlooks.cs, ThemeWin32Classic.cs: Use TextRenderer, and modify to not
1111         use ToolTipWindow internals.
1112         * ToolTip.cs: Add 2.0 modal Show methods.  Had to move a lot of stuff around to
1113         support this.  A lot of stuff in the ToolTipWindow got moved to the ToolTip.
1114
1115 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1116
1117         * X11Dnd.cs: Add a null check.
1118
1119 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1120
1121         * X11Dnd.cs: MwfWindow: Try to load the control directly from the handle if
1122           nothing else succeeds. Fixes #82453.
1123
1124 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1125
1126         * XplatUIWin32.cs: PaintEventStart: validate the entire source client
1127           rectangle if we're painting to another window than the one the paint
1128           message was generated on. Simplify the code somewhat, which makes
1129           PaintEventEnd also simpler.
1130
1131 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1132
1133         * Control.cs: When changing parent of a form, let the form decide whether
1134           XplatUI.SetParent should be called or not.
1135         * Form.cs: ChangingParent: only call XplatUI.SetParent if we're not
1136           recreating the handle. If the new parent's handle isn't created, don't
1137           recreate our handle, just destroy it. CreateParams: Check if the
1138           parent's handle is created before fetching it.
1139
1140 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1141
1142         * Control.cs, Form.cs, InternalWindowManager.cs, MainMenu.cs, MdiClient.cs:
1143           Update calls to PaintEventStart/End to take a Message argument.
1144         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Update PaintEventStart/End to
1145           take a Message argument.
1146         * XplatUIWin32.cs, XplatUIX11.cs: Update PaintEventStart/End to take a
1147           Message argument, and handle the case where we don't paint to the window
1148           for which the paint message was generated.
1149
1150 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1151
1152         * XplatUIWin32.cs: Don't call Win32GetLastError directly, use
1153           Marshal.GetLastWin32Error. Plug nasty memory leak in
1154           PaintEventStart/End, we were creating a DC we weren't releasing.
1155
1156 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1157
1158         * ListView.cs: Add Groups support in Details view. Also have a small
1159         method to do the layout of the group header. Don't use a separate
1160         method to do the groups calculation in Icons view, since our methods
1161         are now a little simpler.
1162         * ListViewGroup.cs: Use the more accurate `HeaderBounds' name than
1163         `Bounds'.
1164         * ThemeWin32Classic.cs: Likewise.
1165
1166 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
1167
1168         * Application.cs: Add FilterMessage method and rework our message loop
1169         logic to use it.
1170
1171 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
1172
1173         * Application.cs: Add some methods and stub a few methods that are
1174         pretty much never used.
1175
1176 2007-08-15  Jonathan Pobst  <monkey@jpobst.com>
1177
1178         * TreeNode.cs: Add some serialization methods.
1179
1180 2007-08-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1181
1182         * ListView.cs: In ListViewItemCollection have a 
1183         'is_main_collection' field to not modify ListViewItem.ListView
1184         when using it as ListViewGroup.Items (and not ListView.Items)
1185         and also don't modify selection state (.Net behaviour). 
1186         Instead, set group for items contained in a ListViewGroup.Items collection.
1187         * ListViewItem.cs: Simplify some code in Group setter.
1188         * ListViewGroup.cs: use the new .ctor to pass the current instance
1189         to the ItemsCollection.
1190         * ListViewGroup.cs: Set the ListView property for ListViewGroup
1191         instances when adding/removing. Also make Remove use RemoveAt, which
1192         should perform better.
1193
1194 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
1195
1196         * Message.cs, TabControl.cs, TextBox.cs, TextBoxBase.cs: Hide some 2.0 API
1197         that crept into the 1.1 profile.
1198
1199 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
1200
1201         * ToolBarButton.cs: Implement ImageKey.
1202
1203 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
1204
1205         * ToolBar.cs: Implement ScaleControl/ScaleCore.
1206
1207 2007-08-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1208
1209         * PictureBox.cs: OnAnimateImage/UpdateAnimateImage: Check if handle is still
1210           created, it might have gotten destroyed since we last checked. Fixes
1211           #82405.
1212
1213 2007-08-11  Jonathan Pobst  <monkey@jpobst.com>
1214
1215         * ToolTip.cs: Remove mouse in control check from mouseleave handler so
1216         tooltip will hide when mouse is moved off the control.
1217         [Fixes bug #82407]
1218
1219 2007-08-11 Andreia Gaita <avidigal@novell.com>
1220
1221         * WebBrowserBase.cs, WebBrowser.cs: add implementation
1222         using Mono.Mozilla for loading and navigating webcontrol
1223         with xulrunner.
1224         The initial implementation was done on 
1225         /trunk/mozembed/tests/browser , and copied here.
1226
1227 2007-08-11  Gert Driesen  <drieseng@users.sourceforge.net>
1228
1229         * ThemeWin32Classic.cs: On 2.0 profile, use ForeColor and BackColor of
1230         ToolTipWindow for drawing the tooltip. Fixes bug #82408.
1231
1232 2007-08-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1233
1234         * DataGridView.cs: Add support for an editing row. Fixes #82226.
1235           RowTemplateFull: throw an exception if a column doesn't have a template.
1236         * DataGridViewRowCollection.cs: AddInternal: if there are any editing rows,
1237           add the row just before it.
1238         * DataGridViewTextBoxCell.cs: Don't paint cells which are in edit mode as
1239           selected.
1240         * DataGridViewSelectedRowCollection.cs: Don't return the editing row. Add a
1241           DataGridView field to be able to reach the grid's editing row.
1242
1243 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
1244
1245         * ToolTip.cs: If the control's handle hasn't been created when it has a
1246         tooltip set on it, don't check to see if we need to show the tooltip.  This
1247         check was causing the control's handle to be created.
1248         [Fixes bug #82399]
1249
1250 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
1251
1252         * TextBoxBase.cs: Fix SelectionLength when no text selected to match MS:
1253                                         1.1             2.0
1254         Handle Not Created      -1              0
1255         Handle Created          0               0
1256         [Fixes bug #82371]
1257
1258 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
1259
1260         * ToolTip.cs: Hide the tooltip if the control is clicked to match MS behavior.
1261         [Fixes bug #82348]
1262
1263 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
1264
1265         * DrawToolTipEventArgs.cs: Don't dispose a brush we got from the respool.
1266         * ToolTip.cs: Implement some properties and owner draw.
1267
1268 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1269
1270         * DataGridView.cs: OnPaint: don't set scrollbar visibility to false then
1271           show them again, since setting visibility causes a paint, causing an
1272           endless loop (instead use a temporary and set it all when it's known if
1273           they should be shown or not). Fixes #79265.
1274
1275 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1276
1277         * DataGridView.cs: Only do a full column/row selection if a header was
1278           clicked and we're in Column/RowHeader selection mode. If shift and ctrl
1279           isn't pressed, deselect everything before selecting something.
1280
1281 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1282
1283         * DataGridView.cs: Fix SelectedRows and SelectedColumns to match MS
1284           behaviour according to bug #81075 - they are returned in the order they
1285           are selected. Fix HitTest to check if the point is within any of the
1286           headers. Allow for row/column selection when in ColumnHeader or
1287           RowHeader selection mode. Add SetSelected[Column|Row]CoreInternal for
1288           the row and column to call when their selected state changes, and
1289           updated selected_[rows|columns] whenever SetSelected* is called.
1290         * DataGridViewBand.cs: Initialize isRow correctly. Call
1291           SetSelected[Row|Column]CoreInternal when the selected state changes, and
1292           add a SelectedInternal to avoid StackOverflows.
1293         * DataGridViewColumn.cs, DataGridViewRow.cs: If DGV is ReadOnly, we're also
1294           ReadOnly no matter what.
1295         * DataGridViewSelectedColumnCollection.cs,
1296           DataGridViewSelectedRowCollection.cs: Add an InternalAddRange that adds
1297           the items in reverse order (just as MS does...)
1298
1299 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
1300
1301         * Application.cs: Only release menustrips if Alt (MenuKey) is pressed by
1302         itself, not part of a mnemonic.  [Fixes bug #82378]
1303
1304 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1305
1306         * DataGridView.cs: BeginEdit: don't allow editing of readonly cells.
1307         * DataGridViewCell.cs: Implement ReadOnly better: the cell is ReadOnly if
1308           the DGV, the column, the row, or the cell itself is readonly.
1309
1310 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
1311
1312         * ThemeNice.cs: Use XplatUI.RunningOnUnix instead of checking
1313         OSVersion.Platform.
1314         * FileDialog.cs: Same.
1315         * TextRendered.cs: Same.
1316         * FolderBrowserDialog.cs: Same.
1317         * TextBoxBase.cs: Same.
1318         * Application.cs: Same.
1319         * Cursors.cs: Same.
1320         * ThemeClearLooks.cs: Same.
1321
1322 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
1323
1324         * XplatUI.cs: Added RunningOnUnix property to be used by controls
1325         instead of duplicating these checks everywhere.
1326         * FileDialog.cs: Use case-insensitive comparison for populating the
1327         DirComboBox when not running on unix. Fixes bug #82385.
1328         * OpenFileDialog.cs: to match MS, change label of DirComboBox to 
1329         "Look in".
1330
1331 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1332
1333         * DataGridView.cs: SelectedRows: we need to check if selectionMode is
1334           FullRowSelect (not FullColumnSelect). Fixes #81075. Implemented
1335           BeginEdit, EndEdit, SetSelected<Cell|Row|Column>Core. Implemented row,
1336           cell and column selection with ctrl and shift pressed. Call the correct
1337           BeginEdit/EndEdit whenever we start/end editing. Move painting code to
1338           the corresponding virtual method (PaintBackground to paint background,
1339           etc).
1340         * DataGridViewCell.cs: Implement Selected correctly, we're selected if
1341           either the column, row or the cell itself is selected.
1342         * DataGridViewRowCollection.cs: Use DGV.OnRowsAddedInternal instead of
1343           OnRowsAdded.
1344         * DataGridViewRow.cs: Moved some of the painting code from DataGridView
1345           here. When the row is selected, don't select all cells. Each cell now
1346           queries the row to see if the row is selected.
1347
1348 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1349
1350         * DataGridViewColumn.cs: Throw if the SortMode conflicts with DataGridView's
1351           SelectionMode.
1352
1353 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1354
1355         * ListView.cs: In ListViewItemsCollection check that owner is
1356         not null before trying to access it (this happens quite often
1357         using Groups). Also don't duplicate calls by calling CollectionChanged
1358         method.
1359
1360 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
1361
1362         * ToolStrip.cs: Record if we were activated by mouse or keyboard.  Redraw
1363         when we are dismissed to clear keyboard mnemonics.
1364         * MenuStrip.cs, ToolStripDropDown.cs, ToolStripItem.cs, 
1365         ToolStripMenuItem.cs: Record if we were activated by mouse or keyboard.
1366         * ToolStripItemTextRenderEventArgs.cs: Draw mnemonic underlines if menu
1367         was activated by keyboard or the OS tells us to always draw them.
1368         * ToolStripManager.cs: Setup storage for activated by mouse or keyboard.
1369         [Fixes bugs #82376, #82377]
1370
1371 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
1372
1373         * Control.cs: If no one accepts a mnemonic, let the MenuStrip have a 
1374         shot at having it because Alt was pressed.
1375         * MenuStrip.cs: When handling Alt, don't select a SystemMenuItem, select
1376         the first real menu item.
1377         * ToolStrip.cs: Don't crash when looking for a ToolStripItem to handle
1378         a mnemonic if Text is null.
1379         [Fixes bug #82374]
1380
1381 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1382
1383         * ListView.cs: In ListViewItemCollection.AddItem, don't do a linear
1384         search do check whether the item is already contained in the
1385         collection or not; instead check if the owner of the item is the same
1386         as ours. Also, remove a redundant check in the same method. 
1387
1388 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
1389
1390         * Control.cs: Allow the clip region to be set back to null.
1391         * XplatUIWin32.cs: If we are sent a null clip region, use IntPtr.Zero.
1392         [Fixes button still showing up in bug #82370 when Show Through is turned off]
1393
1394 2007-08-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1395
1396         * GridEntry.cs: Add a null check.
1397         * PropertyGrid.cs: When checking for existing grid entries, ignore category
1398           entries. Fixes #82297.
1399
1400 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
1401
1402         * OwnerDrawPropertyBag.cs: Make the serialization constructor protected
1403         for 2.0.
1404
1405 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
1406
1407         * ListBox.cs: Implement ScaleControl.
1408
1409 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1410
1411         * Form.cs: Add a few ActiveMenu null checks. ActiveMenu might be null if we
1412           have a menu strip.
1413         * MdiWindowManager.cs: Don't create a maximized menu if the child or it's
1414           parent has a menu strip. Fixes #81689.
1415
1416 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1417
1418         * ToolTip.cs: We don't get mouse events on all platforms in the exact same
1419           moments, so apply some fuzzy logic to determine if the mouse is still
1420           inside a control or not. Fixes #82288 (for the third time).
1421
1422 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1423
1424         * Control.cs: CreateControl: create implicit children as well. Fixes #82344.
1425           Don't create the child if it has been disposed already (may happen if
1426           the user closes the form the Load event).
1427
1428 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1429
1430         * ToolTip.cs: If ReshowDelay is 0, show the tooltip immediately. Fixes
1431           #82288.
1432
1433 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1434
1435         * Control.cs: Add a null check in OnParentBindingContextChanged. The parent
1436           might call us after we've been destroyed, in which case our own private
1437           parent field is null. Fixes #82326.
1438
1439 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
1440
1441         * ToolStripDropDown.cs: Fix a failing test on X11 by adding a null
1442         check for setting the dropdown's owner.
1443
1444 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
1445
1446         * MdiClient.cs: Fix some failing tests on X11 by adding a null check
1447         before removing system menu items.
1448
1449 2007-08-02  Jonathan Pobst  <monkey@jpobst.com>
1450
1451         * MdiClient.cs, MdiWindowManager.cs: Support 2.0 Mdi MenuStrip
1452         folding.
1453         * MdiControlStrip.cs: Added.  These are the menu items used in mdi
1454         folding.
1455         * ToolStrip.cs: Add a null check to mnemonics.
1456         * ToolStripDropDownMenu.cs: When using a SystemMenuItem, there is
1457         no ConnectedArea.
1458         [Fixes most of bug #81689]
1459
1460 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1461
1462         * PropertyGrid.cs: Add a null-check. Fixes #82289/SVGPad.
1463
1464 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1465
1466         Use InitialDelay if ReshowDelay is zero. Fixes #82288.
1467
1468 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1469
1470         * DataGridViewCell.cs: EditType: returns
1471           DataGridViewTextBoxEditingControl always.
1472
1473 2007-08-01  Jonathan Pobst  <monkey@jpobst.com>
1474
1475         * TextRenderer.cs: Remove the LineLimit string format flag from the
1476         DrawString fallback method so that things like buttons that aren't
1477         tall enough to draw a full line will still draw part of the text.
1478         [Fixes part of bug #82272]
1479
1480 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1481
1482         * DataGridView.cs: Implemented AutoResizeColumn(s).
1483         * DataGridViewCellStyle.cs: Added SetAlignment, fills in a StringFormat
1484           according to the Alignment.
1485         * DataGridViewColumnHeaderCell.cs, DataGridViewTextBoxCell.cs:
1486           Implement alignment and padding when painting.
1487         * DataGridViewRow.cs: SetValues: Don't create a cell if it already
1488           exists.
1489         * DataGridViewCell.cs: Implement BorderWidths in the most primitive
1490           way.
1491         * DataGridViewColumnCollection.cs: Raise OnColumnAdded on the DGV when
1492           a column is added.
1493
1494 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
1495
1496         * TextBoxBase.cs: Use Control.ExplicitBounds instead of explicit_bounds,
1497         which is internal.
1498
1499 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
1500
1501         * ToolStrip.cs: Stub out drag and drop methods, fix some corcompare stuff,
1502         hide GetPreferredSize from public API.
1503         * ToolStripDropDown.cs: Override AllowItemReorder, fix AccessibleObject.
1504         * ToolStripItem.cs: Stub out drag and drop methods and events.
1505         * ToolStripManager.cs: Stub out Save/LoadSettings.
1506         * ToolStripOverflow.cs: Use renamed ToolStrip.GetPreferredSize.
1507         * ToolStripPanel.cs: Fix corcompare error.
1508         * ToolStripPanelRow.cs: Use renamed ToolStrip.GetPreferredSize.
1509         * ToolStripSplitButton.cs: Fix AccessibleObject stuff.
1510         * ToolStripSplitStackLayout.cs: Use renamed ToolStrip.GetPreferredSize.
1511
1512 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
1513
1514         * TextBoxBase.cs: In our new GetPreferredSizeCore, return the explicit
1515         bounds height instead of PreferredHeight.  Puts things back the way 
1516         they were for height while still fixing the width.  Fixes broken unit
1517         tests.
1518
1519 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1520
1521         * Binding.cs: Implement 2.0 constructors and add a null check.
1522
1523 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1524
1525         * DataGridViewRowCollection.cs: Allow a null DGV in the constructor,
1526           and fix row index (off by one).
1527
1528 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1529
1530         * PropertyGridView.cs: Remove debug output.
1531
1532 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1533
1534         * Control.cs: We need to reset the is_created flags when the handle is
1535           destroyed. Fixes #82187.
1536         * XplatUIWin32.cs: In GetWindowRect don't offset screen coordinates to
1537           client coordinates if the window doesn't have a parent.
1538           Win32GetParent returns the parent or the owner, and for top-level
1539           windows with no parent (but with an owner) we were calculating the
1540           location from the location of the owner.
1541         * Form.cs: Remove incorrect fix for #82187. Don't raise OnLoad if the
1542           form has been disposed.
1543         * MdiClient.cs: Add a null-check.
1544
1545 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
1546
1547         * TextBoxBase.cs: TextBoxBase reports itself at AutoSize, but doesn't
1548         actually do auto-sizing.  Override the internal GetPreferredSizeCore 
1549         so we can provide an implementation that returns the current width
1550         and preferred height.  Allows anchor = right to work with TextBox 2.0.
1551         [Fixes bug #82233]
1552
1553 2007-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1554
1555         * ListView.cs: Add support for navigating items in Groups mode, by
1556         creating a big matrix containing all rows and cols of all groups. When
1557         are in other mode than Details, pressing Up should have a similar
1558         behaviour as that one of Down (moving to the next available column if
1559         current one doesn't have an item in the requested row). Also, don't
1560         proceed to use groups if ShowGroups is false.
1561         * ListViewGroup.cs: Add an internal int field to store the starting
1562         row of the group (used by the big matrix used for navigating the
1563         ListView).
1564         * ThemeWin32Classic.cs: Don't draw headers if ListView.ShowGroups is
1565         false.
1566
1567 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
1568
1569         * ToolStripDropDown.cs: When we do Show, start with the 
1570         DefaultDropDownDirection, but if our popup menu is going to off-screen,
1571         modify the direction to keep it on screen.  [Fixes bug #82210]
1572
1573 2007-07-29  Gert Driesen  <drieseng@users.sourceforge.net>
1574
1575         * FileDialog.cs: Accept any FilterIndex value, and store it
1576         unmodified. When FilterIndex is less than 1, or greater than number
1577         of filters, then default to first filter. Only add filter extension to
1578         file if user did not specifiy an extension. When type of dialog is
1579         OpenFileDialog and DefaultExt is set, then only use filter extension
1580         if: CheckFileExists is true and no file wih the default extension
1581         exists, or CheckFileExists is false, and user specified file does not
1582         exist. When CheckFileExists is true, then add first extension of 
1583         selected filter that matches existing file. Perform checks for
1584         existing file, overwrite and create after extension has been added to
1585         file name. When CheckFileExists is true and type is SaveFileDialog,
1586         then only consider first filter extension if DefaultExt is set.
1587         When CheckFileExists is true, then ignore DefaultExt if file with that
1588         extension does not exist. Also perform check for existing file when
1589         type is SaveFileDialog. Changed some field to constants.
1590
1591 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1592
1593         * ListView.cs: Take into account the region used by header
1594         control when doing the vertical scroll (this way we invalidate
1595         the precise area, and don't get any dirty one).
1596
1597 2007-07-27  Everaldo Canuto  <ecanuto@novell.com>
1598
1599         * FileDialog.cs: Check for valid filterIndex on button open/save. 
1600         Fixes #82184.
1601
1602 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1603
1604         * ListView.cs: Update some layout calculations in details view
1605         and clean the code in a pair of assignations.
1606
1607 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
1608
1609         * ComboBox.cs, ContainerControl.cs, DataGrid.cs, FontDialog.cs, Label.cs,
1610         LinkLabel.cs, ListBox.cs, ListView.cs, ListViewItem.cs, MessageBox.cs,
1611         MonthCalender.cs, StatusBar.cs, ThemeClearlooks.cs, ThemeWin32Class.cs,
1612         ToolBar.cs, TreeView.cs: First pass at using thread-safe string measuring.
1613
1614 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
1615
1616         * TextRenderer.cs: Use [ThreadStatic] instead of locks to improve
1617         performance of thread-safe Graphic methods.  (Thanks rolf!)
1618
1619 2007-07-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1620
1621         * ListView.cs: When doing the layout calculations, don't calculate
1622         scroll bars before handle is created. This is unnecessary and also
1623         calculating them before handle creation item causes a number of random
1624         bugs (which begin to appear after Chris' big patch for handle creation
1625         fixes). 
1626
1627 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
1628
1629         * TextRenderer.cs: Create thread-safe versions of Graphics.MeasureString
1630         for things that don't have a Graphics object.  Currently, things just use
1631         the static Hwnd.bmp_g which is not thread safe.
1632
1633 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1634
1635         * Form.cs: ShowDialog: don't destroy handles if the dialog is a common
1636           dialog. Fixes #82187.
1637
1638 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1639
1640         * DataGridViewElement.cs: Initialize state.
1641         * DataGridView.cs: Forward a few Mouse events to cells. Add
1642           GetRowInternal and GetCellInternal that doesn't unshare rows.
1643           Implement GetCellDisplayRectangle. HitTest: if the row is shared,
1644           don't use the index, but look it up. Add
1645           DataGridViewControlCollection.RemoveInternal to remove controls
1646           that Remove won't remove (scrollbars, edit control).
1647         * DataGridViewColumn.cs: Initialize State correctly.
1648         * DataGridViewColumnHeaderCell.cs, DataGridViewComboBoxCell.cs,
1649           DataGridViewHeaderCell.cs, DataGridViewRowHeaderCell.cs: Started
1650           implementing this.
1651         * DataGridViewRowCollection.cs: Implemented shared rows.
1652         * DataGridViewRow.cs: Throw exceptions as MS do.
1653         * DataGridViewCell.cs: A few properties are implemented by a
1654           Get<Property> method, so move implementation there and remove the
1655           NIEX in the method. Add a bunch of OnXInternal that DataGridView
1656           calls when necessary.
1657         * DataGridViewComboBoxEditingControl.cs: Remove a few NIEX'es that just
1658           complicates matters.
1659         * DataGridViewCellCollection.cs: Add a GetCellInternal that doesn't
1660           unshare any rows.
1661
1662 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
1663
1664         * UpDownBase.cs: We cannot override SetBoundsCore for 2.0, which was relayout-ing
1665         the children controls.  Instead, we will just set up the proper docking for the
1666         children controls so we don't have to worry about it.  [Fixes bug #82188]
1667
1668 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
1669
1670         * TreeView.cs, NodeLabelEditEventArgs.cs, LabelEditTextBox.cs: Support edit
1671         canceling and correct Before/AfterLabelEdit properties as layed out in bug
1672         81847.  [Fixes bug #81847]
1673
1674 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
1675
1676         * Label.cs: If AutoSize = true and a width or height is set, ignore it and
1677         redo the autosize.  VS2005 defaults to setting the AutoSize, and then setting
1678         an explicit size based on the design-time size of the text.  Since our fonts
1679         may not match this explicit size, we tend to cut off the ends of people's labels.
1680
1681 2007-07-24  Jonathan Pobst  <monkey@jpobst.com>
1682
1683         * Menu.cs: Add some missing methods to MenuItemCollection.
1684
1685 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1686
1687         * DataGridView.cs: Added RowTemplateFull, creates a row from the templates in the columns.
1688         * DataGridViewBand.cs: DefaultHeaderCellType: initialize correctly. Resizable: if not set, check DGV.
1689         * DataGridViewColumn.cs: InheritedAutoSizeMode: if not set, check DGV. Resizable: delegate to base class. ToolTipText: Never return null. Initialize a few other properties correctly.
1690         * DataGridViewColumnCollection.cs: Add: Default column is a TextBoxColumn.
1691         * DataGridViewComboBoxCell.cs: Started implementing this, lots left still.
1692         * DataGridViewElement.cs: State defaults to Visible.
1693         * DataGridViewRowCollection.cs: Add: creates the new row based on a template.
1694         * DataGridViewTextBoxColumn.cs: SortMode: delegate to base class, but initialize to Automatic. ToString: implement correctly.
1695
1696 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1697
1698         * Control.cs: Minor 1.1 corcompare fix.
1699
1700 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
1701
1702         * LinkLabel.cs, PrintPreviewDialog.cs, TabPage.cs, TextBox.cs,
1703         TextBoxBase.cs, ToolBar.cs: 2.0 corcompare work.
1704
1705 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1706
1707         * DataGridViewLinkColumn.cs, DataGridViewRowCollection.cs,
1708           DataGridViewImageColumn.cs, DataGridViewSelectedCellCollection.cs,
1709           DataGridViewComboBoxCell.cs, DataGridViewLinkCell.cs,
1710           DataGridViewSelectedColumnCollection.cs,
1711           DataGridViewSelectedRowCollection.cs: Corcompare work.
1712
1713 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
1714
1715         * PrintDialog.cs: Stub UseEXDialog.  I chose to stub this because
1716         it is autoset by VS2005 designer and the effect is barely noticeable.
1717
1718 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
1719
1720         * TreeView.cs: Implement HitTest.
1721
1722 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1723
1724         * DataGridViewTextBoxCell.cs: Use DGV.EditControlInternal instead of
1725           manually adding and removing the control from the Controls
1726           collecftion.
1727         * DataGridView.cs: Implement DataGridViewControlCollection. Add an
1728           EditingControlInternal property that tracks the editing control.
1729           Always keeping the scrollbars in the Controls collection, as MS
1730           testing confirms is the right behaviour.
1731
1732 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1733
1734         * ScrollableControl.cs: Fix implementation of AutoScrollPosition
1735           according to MSDN and new test.
1736
1737 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1738
1739         * TreeNode.cs: Implement ToolTipText.
1740         * TreeView.cs: Implement tooltips, NodeMouse* events.
1741
1742 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1743
1744         * TreeView.cs: Implement OnNodeMouseClick and OnNodeMouseDoubleClick.
1745
1746 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1747
1748         * TreeNode.cs: Implement ContextMenu, ContextMenuStrip, and Level.
1749         * TreeView.cs: Use the node's contextmenu[strip] if applicable.
1750
1751 2007-07-20  Ivan N. Zlatev  <contact@i-nz.net>
1752
1753         * Control.cs, Form.cs, ContainerControl.cs,
1754         ScrollableControl.cs, ButtonBase.cs:  Added ShouldSerialize
1755         for misc properties.
1756
1757 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1758
1759         * TreeNode.cs: Implement StateImageIndex and StateImageKey.
1760         * TreeView.cs: Implement StateImageList.
1761
1762 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1763
1764         * Form.cs: Don't check if the current form is the active form before
1765           activating it. Fixes #81904.
1766
1767 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1768
1769         * Form.cs: Don't check if the current form is the active form before
1770           activating it. Fixes #81904.
1771
1772 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1773
1774         * TreeView.cs: Apply patch from Tyron (tmm@aon.at). Fixes #81847.
1775
1776 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1777
1778         * Form.cs: Don't try to position the form after loading if the form was
1779           disposed. Fixes #81969.
1780
1781 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1782
1783         * PropertyGrid.cs, PropertyGridView.cs: Implemented 2.0 methods and
1784           properties. Had to change ToolBar into ToolStrip, which required a
1785           few #ifs.
1786
1787 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1788
1789         * PropertyGrid.cs: PropertyToolBar: Redraw the entire toolbar when it's
1790           resized, fixes part of #79829 (vertical lines in toolbar).
1791           PropertyGrid: Refactored Populate* to something that's easier to
1792           follow at least for me, as well as splitting it up into several new
1793           methods, required to update only subitems when something has
1794           changed by a popup editor or listbox. Don't use events to check
1795           when any values are changed, since the events are unreliable (we're
1796           changing the objects the events are registered with, and if the
1797           event handling requires the objects to be immutable (objects stored
1798           in hashtables for instance), the events will never be raised).
1799         * PropertyGridView.cs: Call PropertyGrid.PropertyValueChangedInternal
1800           everytime we change a value, since events are unreliable.
1801           DropDownButtonClicked: For the same reason don't compare objects to
1802           check if it has changed or not, it would require all objects to
1803           derive Equals. Fix dialog location on windows, MS is doing weird
1804           things when creating parented forms.
1805         * GridEntry.cs: Add a SelectedObject setter.
1806
1807 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
1808
1809         * TreeNode.cs: Add some corcompare attributes.
1810         * TreeNodeCollection.cs: Implement 2.0 stuffs.
1811         * TreeView.cs: Implement some 2.0 stuffs.
1812
1813 2007-07-18  Andreia Gaita  <avidigal@novell.com>
1814
1815         * WebBrowser.cs, WebBrowserBase.cs: add some more MonoTODOs now
1816         for moma.
1817
1818 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
1819
1820         * ListBox.cs: Implement custom tab offsets.
1821
1822 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1823
1824         * ToolStripContentPanel.cs: Support System renderer.
1825         * ToolStripControlHost.cs: Set RightToLeft to default to No.
1826
1827 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1828
1829         * ScrollableControl.cs: Don't mess up the user's explicit bounds.
1830
1831 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1832
1833         * CheckBox.cs: Chain TextAlign to base implementation instead of
1834         maintaining another one.
1835
1836 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1837
1838         * ButtonBase.cs: Fix an incorrect string constant.
1839
1840 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1841
1842         * TextRenderer.cs: Use the static Graphics context in Hwnd instead
1843         of creating one for measuring strings.
1844
1845 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1846
1847         * ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownMenu.cs: 
1848         Implement MaxItemSize.
1849
1850 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
1851
1852         * Control.cs: Remove per-control 1x1 Bitmap and Graphics context used
1853         for DeviceContext.  Instead, use the static one available in Hwnd.
1854         Informal tests show this saves about 500k on formtest.exe.
1855
1856 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
1857
1858         * ContainerControl.cs: Implement 2.0 AutoScaling.
1859
1860 2007-07-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1861
1862         * ComboBox.cs: Work around bug #82120 (bug in mcs).
1863
1864 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
1865
1866         * ThemeWin32Classic.cs: Allow a Flat button to be Focused and Entered.
1867         Darken the focus color.
1868
1869 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
1870
1871         * ListBox.cs: When measuring items, if it's a CheckedListBox, add room
1872         for the checkbox.
1873         * ThemeWin32Classic.cs: Make the checkbox bigger in a CheckedListBox and use
1874         X, Y instead of a rect for drawing text.
1875         - For ControlPaint.DrawCheckBox, center the check a little better when the
1876         checkbox is odd width.  When drawing a flat checkbox, use a white background
1877         when state != inactive.
1878         [Fixes bugs #82097, 82100]
1879
1880 2007-07-16  Gert Driesen  <drieseng@users.sourceforge.net>
1881
1882         * ListControl.cs: When changing CurrencyManager, disconnect event
1883         handlers from previous one. Fixes bug #81771. Code formatting.
1884
1885 2007-07-15  Andreia Gaita <avidigal@novell.com>
1886
1887         * PrintPreviewControl.cs: Remove extraneous Invalidate calls. Separate
1888         full preview invalidation from layout invalidation, and only invalidate
1889         the layout when setting zoom or other properties. Invalidation should
1890         always be done even when resetting properties with the same values as
1891         what is there. Fixes #81744 and #79830.
1892
1893 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1894
1895         * ListView.cs: Implement initial support for Groups. Split some of the
1896         LayoutIcons code to render a partial list of the items (needed by
1897         items contained in ListViewGroup instances). Let the
1898         ListViewItemsCollection.ListView property be modifiable (needed when
1899         using Groups, too).
1900         * ListViewGroup.cs: Use a Bounds property rather than a Location
1901         one. Also invalidate the bounds when they get changed.
1902         * ThemeWin32Classic.cs: When drawing items, also draw the group header
1903         if ListView.Groups.Count is bigger than 0. Add a DrawListViewGroupHeader
1904         method as well.
1905
1906 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1907
1908         * ListView.cs: When space gets pressed and CheckBoxes is true, 
1909         don't invoke the Begin and EndUpdate methods. We are generating 
1910         a redraw of the entire control without need to do so.
1911
1912 2007-07-13  William Holmes <billholmes54@gmail.com> 
1913
1914         * Control.cs: Changing logic in FindFlatForward and 
1915           FindFlatBackward to handle multiple Controls with 
1916           the same TabIndex.  
1917           This fixes bug 81687.
1918
1919 2007-07-13  Jonathan Pobst  <monkey@jpobst.com>
1920
1921         * OSFeature.cs: Enable IsPresent.
1922
1923 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1924
1925         * Control.cs: Don't do anything in WmShowWindow if the control has been
1926           disposed. We can get WM_SHOWWINDOW after a control is disposed: a
1927           control is created, put on a form, the control is disposed (the
1928           form is never shown), and then we get a MapNotify, triggering a
1929           WM_SHOWWINDOW.
1930         * Form.cs: Exclude the current form when sending Deactivate to all
1931           MdiChildren.
1932         * NativeWindow.cs: Set WindowCreating to null as soon as possible,
1933           there was a race condition because assigning the handle raises
1934           events, we can get more messages, therefore trying to assign the
1935           handle again, which would fail if any of those event handlers
1936           closed/disposed the control.
1937
1938 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1939
1940         * Form.cs: Make the fix for #80775 windows-only (fixes #81957).
1941
1942 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
1943
1944         * SystemInformation.cs, Theme.cs, XplatUI.cs, XplatUIDriver.cs,
1945         XplatUIWin32.cs: Implement SystemInformation 2.0 properties.
1946
1947 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1948
1949         * DateTimePicker.cs: If there's no part format specifier, return an
1950           empty string.
1951
1952 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
1953
1954         * FlatButtonAppearance.cs: Throw NotSupportedException for a
1955         Transparent BorderColor.
1956
1957 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1958
1959         * DataGridView.cs, TextControl.cs, ProgressBar.cs, PrintDialog.cs,
1960           MessageBox.cs, ButtonBase.cs, PageSetupDialog.cs, NumericUpDown.cs,
1961           X11Dnd.cs, Binding.cs, DataGrid.cs, AxHost.cs,
1962           LinkLabelLinkClickedEventArgs.cs, TextRenderer.cs, Label.cs,
1963           LinkLabel.cs, TreeNode.cs, BindingSource.cs, TabPage.cs,
1964           TextBoxBase.cs, BindingNavigator.cs, Application.cs,
1965           ToolStripPanel.cs, TabControl.cs, ThemeClearlooks.cs, TreeView.cs:
1966           Remove warnings.
1967         * X11Structs.cs: Remove warnings, add ToString implementations.
1968
1969 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1970
1971         * XplatUIX11.cs: Translate min/max size according to the actual min/max
1972           size, and not the current size. Fixes #81798.
1973
1974 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1975
1976         * XplatUIX11.cs: Fix #80822 again (DefWndProc can be reached before
1977           XplatUI.CreateWindow returns, in which case the hwnd isn't assigned
1978           to the control yet).
1979
1980 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1981
1982         * PropertyGridTextBox.cs: Add a method that sends any forwarded
1983           mousedowns to the contained textbox.
1984         * X11Structs.cs: More ToString implementation.
1985         * PropertyGridView.cs: Forward any mousedowns to the textbox, fixes
1986           #81791.
1987
1988 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1989
1990         * PropertyGridView.cs: Add a null-check, fixes a few tests.
1991
1992 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
1993
1994         * TableLayoutPanelCellPosition.cs: TypeConverter.
1995
1996 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1997
1998         [ Fixes #79761]
1999         
2000         * PropertyGridTextBox.cs: Propagate any color changes to all contained
2001           controls.
2002         * PropertyGridView.cs: A few color fixes.
2003
2004 2007-07-10  Jackson Harper  <jackson@ximian.com>
2005
2006         * TextControl.cs: Remove some old unused text formatting stuff.
2007
2008 2007-07-10  Jackson Harper  <jackson@ximian.com>
2009
2010         * TreeView.cs: Update full row select invalidation to match the
2011         newer DrawSelection... method.
2012         - Make sure to invalidate the entire width when selecting a new
2013         node, if we have full row selection enabled.
2014
2015 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2016
2017         * PropertyGridView.cs: Fix for #81800, makes text show up on initial
2018           display of properties again.
2019
2020 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
2021
2022         * ListBox.cs: Add IntegerCollection and Add, Clear, Remove
2023         to existing collections.
2024
2025 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2026
2027         * AccessibleObject.cs, RadioButton.cs: Fix some base classes
2028         that changed between 1.1 and 2.0.
2029
2030 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2031
2032         * PowerStatus.cs: Added.  This is just a data class, it is filled
2033         in by SystemInformation.
2034
2035 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2036
2037         * Message.cs: Add op_Equality and op_Inequality.
2038
2039 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2040
2041         * MenuStrip.cs: Finish corcompare work.
2042
2043 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2044
2045         * LinkArea.cs: Add op_Equality and op_Inequality.
2046
2047 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2048
2049         * Application.cs: Add MessageLoopCallback delegate.
2050
2051 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2052
2053         * ListBox.cs: First set of 2.0 stuffs.
2054
2055 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
2056
2057         * Control.cs: Make an internal Height property we can override
2058         without messing up the public API.
2059         * ListBox.cs: Override HeightInternal to always return the size
2060         the user set.  [Fixes bug #80466]
2061
2062 2007-07-08  Jonathan Pobst  <monkey@jpobst.com>
2063
2064         * TableLayoutPanel.cs: Add a null check so we don't NRE trying to
2065         paint cell borders if we haven't calculated where they go yet.
2066         [Fixes bugs #82040 and #82041]
2067
2068 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2069
2070         * ListView.cs: In Details view, set the location of item_control
2071         in the (0,0) position (and the header_control is thus on the
2072         item_control). This way the Bounds of the Items are relative to the
2073         ListView control (before this, they had a Bounds value without the
2074         header_control offset, which wasn't matching .Net). Fixes #82004.
2075
2076 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2077
2078         * ListControl.cs: When DataSource is set to null, pass an empty
2079         array of object to SetItemsCore. This is done to clean the items
2080         in the ListContol children. Fixes #81788.
2081
2082 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2083
2084         * ListControl.cs: Add 2.0 stuffs.
2085
2086 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2087
2088         * Label.cs: Finish up 2.0 stuffs.  Replace calls to Refresh with Invalidate,
2089         Refresh is overkill for just about every repaint request.
2090
2091 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2092
2093         * ToolStripItem.cs: TextDirection getter handles looking up Inherit for us,
2094         so remove my custom Get method and fix the property getter.
2095
2096 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2097
2098         * Label.cs: DefaultMargin for 2.0.
2099
2100 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2101
2102         * ComboBox.cs: Override IsInputCharInternal and return true.  Fixes 
2103         reported issue where other controls with mnemonics would steal strokes
2104         from a selected ComboBox.
2105
2106 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
2107
2108         * ScrollOrientation.cs: Make internal for 1.1.
2109         * ScrollEventArgs.cs: Add 2.0 stuffs.
2110
2111 2007-07-05  Jonathan Pobst  <monkey@jpobst.com>
2112
2113         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
2114         ToolStripItem.cs, ToolStripItem.cs, ToolStripItemTextRenderEventArgs.cs,
2115         ToolStripRenderer.cs, ToolStripSeparator.cs: Implement TextDirection.
2116
2117 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2118
2119         * ListViewItem.cs: Implement the small 2.0 GetSubItemAt method.
2120
2121 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2122
2123         * ListView.cs: Implement the so-incredibly broken 2.0 
2124         VirtualItemsSelectionRangeChanged event.
2125
2126 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2127
2128         * ListView.cs: When enter is pressed and selection is non empty,
2129         an OnItemActivate event must be fired.
2130
2131 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2132
2133         * ListView.cs: Store the FocusedItem information as an
2134         int instead of a ListViewItem (needed by VirtualMode).
2135         Update the calls to SetFocusedItem to pass an index instead of
2136         an item.
2137         * ListViewItem.cs: Likewise. Also, in VirtualMode retrieve
2138         the Focused state from the owner ListView. 
2139
2140 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2141
2142         * ListView.cs: Set ListView.focused_item from ListViewItem.Focused
2143         property. Also, invalidate previous focused item in the mentioned
2144         property (match .Net).
2145
2146 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2147
2148         * ListView.cs: Implement 2.0 FocusedItem property setter.
2149
2150 2007-07-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2151
2152         * ListView.cs: Implement 2.0 TopItem property setter.
2153
2154 2007-07-03  Jonathan Pobst  <monkey@jpobst.com>
2155
2156         * StatusStrip.cs: The default renderer is System.
2157         * ToolStrip.cs, ToolStripManager: Now that we have System renderer, use it 
2158         if the user specifies it.
2159         * ToolStripDropDown.cs: Don't reset our Renderer on changing OwnerItem
2160         if we are ManagerRenderMode.
2161         * ToolStripMenuItem.cs: Calculate our text color better.
2162         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Move some stuff
2163         from Professional to the base class based off working with the System renderer.
2164         * ToolStripSystemRenderer.cs: Added.
2165
2166 2007-07-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2167
2168         * ListView.cs: I'm so lame - the real name is HitTest, not HitInfo.
2169
2170 2007-07-02  Jonathan Pobst  <monkey@jpobst.com>
2171
2172         * ToolTip.cs: Implement 2.0 Tag property.
2173
2174 2007-06-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2175
2176         * ListView.cs: Implement 2.0 HitTest methods.
2177
2178 2007-06-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2179
2180         * ListViewItem.cs: Add a 2.0 bool Hot property, to tell whether the
2181         item is under the pointer or not (sugar). Also remove the TODO
2182         regarding to the cursor changes in OneClick activation.
2183         * ThemeWin32Classic.cs: When HotTracking is true and we are drawing
2184         the subitems use the parent's HotFont if UseItemStyleForSubItems is
2185         true; otherwise don't show the underline style.
2186
2187 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2188
2189         * ListView.cs: In ItemControl.ItemsMouseMove, refactor
2190         the code to retrieve the item at position only one time. Also
2191         change cursor when Activation is ItemActivation.OneClick as well
2192         as invalidate the item if HotTracking is true (to show/hide the
2193         underline style). Add an internal HotItemIndex property to retrieve
2194         the current hot item's index.
2195         * ListViewItem.cs: Add an internal HotFont property to cache the
2196         font used when HotTracking is true and the pointer moves within the
2197         item's borders.
2198         * ThemeWin32Classic.cs: When drawing the item's text, use Font or
2199         HotFont depending on the hot state of the item.
2200
2201 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2202
2203         * ListView.cs: Implement 2.0 HotTracking property.
2204
2205 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
2206
2207         * ToolStripControlHost.cs: If our hosted control never got created,
2208         don't try to dispose it.  [Fixes bug #81909]
2209
2210 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
2211
2212         * TableLayoutPanel.cs: Implement ScaleCore, ScaleControl.
2213
2214 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
2215
2216         * TableLayoutPanel.cs: Implement CellBorderStyle.  [Fixes bug #81884]
2217
2218 2007-06-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2219
2220         * ThemeWin32Classic.cs: In OwnerDraw mode draw subitems only for 
2221         Details view.
2222         * DrawListViewColumnHeaderEventArgs.cs:
2223         * DrawListViewSubItemEventArgs.cs: Add padding to the bounds when drawing text
2224         using the DrawText () methods.
2225
2226 2007-06-19  Jonathan Pobst  <monkey@jpobst.com>
2227
2228         * ToolStripProfessionalRenderer.cs: Put back clearing a ToolStripDropDown's
2229         background which got erased in my changes yesterday.
2230
2231 2007-06-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2232
2233         * ListViewItem.cs: Actually set bounds for subitems in Details view
2234         (2.0 feature).
2235         * ThemeWin32Classic.cs: Refactor the drawing code for subitems, so we
2236         can invoke from the owner draw routines if we need it. Also, add
2237         support for Owner draw in Details view.
2238
2239 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
2240
2241         * ToolStripDropDownMenu.cs, ToolStripItem.cs, ToolStripLabel.cs,
2242         ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs: Respect the
2243         ShowImageMargin setting, properly align text in a ToolStripLabel
2244         hosted on a ToolStripDropDown.
2245
2246 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
2247
2248         * ToolStrip.cs, ToolStripContentPanel.cs, ToolStripDropDownMenu.cs,
2249         ToolStripProfessionalRenderer.cs: Refactor and clean up some rendering code.
2250
2251 2007-06-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2252
2253         * DrawListViewSubItemEventArgs.cs: Actually implement its methods.
2254
2255 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
2256
2257         * ToolStripLabel.cs: If the label is on a dropdown, adjust the text
2258         location to match ToolStripMenuItems.
2259
2260 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2261
2262         * DrawListViewColumnHeaderEventArgs.cs:
2263         * ThemeWin32Classic.cs: Implement 2.0 OwnerDraw support for
2264         column headers in ListView. 
2265
2266 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
2267
2268         * UserControl.cs: Implement AutoSize.
2269
2270 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2271
2272         * DrawListViewItemEventArgs.cs:
2273         * ListView.cs:
2274         * ThemeWin32Classic.cs: Implement basic support for 2.0 OwnerDraw in
2275         ListView.
2276
2277 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
2278
2279         * ToolStripDropDownItemAccessibleObject.cs: Added.
2280         * ToolStripDropDownItem.cs, ToolStripItem.cs, ToolStripMenuItem.cs,
2281         ToolStripOverflow.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
2282         ToolStripProgressBar.cs, ToolStripSeparator.cs, ToolStripSplitButton.cs,
2283         ToolStripTextBox.cs: corcompare work.
2284
2285 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
2286
2287         * OSFeature.cs, StatusStrip.cs, TabControl.cs, TableLayoutSettings.cs,
2288         TableLayoutStyle.cs, TableLayoutCollection.cs, ToolStripContentPanel.cs,
2289         ToolStripControlHost.cs, ToolStripDropDown.cs, ToolStripDropDownButton.cs:
2290                 corcompare.
2291
2292 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
2293
2294         * OSFeature.cs: Add IsPresent.
2295         * PrintPreviewControl.cs: Add RightToLeft.
2296         * SplitContainer.cs: Add AutoScrollOffset, ScaleControl.
2297         * SplitterPanel.cs: Add AutoSizeMode.
2298
2299 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
2300
2301         * LayoutEventArgs.cs: Add 2.0 AffectedComponent.
2302         * MdiClient.cs: Add 2.0 ScaleControl.
2303         * NativeWindow.cs: Implement 2.0 interface IWin32Window.
2304         * NumericUpDownAccelerationCollection.cs: Add [ListBinding].
2305
2306 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
2307
2308         * Form.cs: Implement some scaling methods, stub some RTL methods,
2309         corcompare work.
2310
2311 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
2312
2313         * Control.cs: corcompare work.
2314         * FlatButtonAppearance.cs, FolderBrowserDialog.cs: Add TypeConverters.
2315
2316 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
2317
2318         * ControlPaint.cs, Theme.cs, ThemeWin32Classic.cs: Implement
2319         ControlPaint 2.0 stuffs.
2320
2321 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2322
2323         * ThreadExceptionDialog.cs: Add 2.0 stuffs.
2324
2325 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2326
2327         * UpDownBase.cs: Add 2.0 stuffs.
2328
2329 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2330
2331         * NumericUpDown.cs: Add 2.0 stuffs.
2332
2333 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2334
2335         * NotfiyIcon.cs: Add MouseDoubleClick event, hook up MouseClick event.
2336
2337 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2338
2339         * ErrorProvider.cs: Implement 2.0 stuffs.
2340
2341 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2342
2343         * DomainUpDown.cs: Implement 2.0 stuffs.
2344
2345 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2346
2347         * CheckedListBox.cs: Fix RefreshItems signature.
2348
2349 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2350
2351         * PictureBox.cs: Implement 2.0 stuffs.
2352
2353 2007-06-12  Andreia Gaita  <avidigal@novell.com>
2354         
2355         * TabControl.cs: Check if there are tabpages before checking
2356         the selected index - fix #81802 (font changes raise a ResizeTabs
2357         call on controls.add, which blew up nicely with no tabpages)
2358
2359 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2360
2361         * ListView.cs:
2362         * ListViewItem.cs: Implement 2.0 ItemSelectionChanged event.
2363
2364 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2365
2366         * ListView.cs:
2367         * ListViewItem.cs: In VirtualMode the selection information
2368         resides in the ListView, rather than in the Items. Also, throw
2369         InvalidOperationExceptions when VirtualMode is being used and
2370         CheckedItemCollection is accessed.
2371
2372 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
2373
2374         * ComboBox.cs: Add ScaleControl.
2375
2376 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
2377
2378         * ButtonBase.cs: ButtonBaseAccessibleObject.State should not be visible to 1.1.
2379
2380 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
2381
2382         * GroupBox.cs: Add 2.0 stuffs.
2383
2384 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
2385
2386         * Panel.cs: Add autosize properties/event.
2387
2388 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
2389
2390         * Control.cs:
2391         - When we remove a control, remove it from the collection before performing the layout.
2392         - Setup an internal property for explicit_bounds.
2393         - Don't let the UpdateBounds in CreateHandle overwrite our explicit bounds.
2394         - Perform a layout when we set a new AutoSizeMode.
2395
2396 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
2397
2398         * ScrollableControl.cs: Add 2.0 stuffs.
2399
2400 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
2401
2402         * ScrollBar.cs: Add 2.0 stuffs.
2403
2404 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
2405
2406         * Splitter.cs: Add 2.0 stuffs.
2407
2408 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
2409
2410         * SplitContainer.cs: Apply patch from Neil Cawse <neilcawse@geotab.com>
2411         to have BindingContext simply use base implementation.
2412
2413 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
2414
2415         * ColumnHeader.cs: corcompare fix.
2416
2417 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
2418
2419         * Button.cs: corcompare fixes.
2420         * ButtonBase.cs: corcompare fixes, add ButtonBaseAccessibleObject.State.
2421
2422 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
2423
2424         * Button.cs: Override GetPreferredSizeCore.
2425         * ButtonBase.cs: PerformLayout after changing properties that can affect
2426         AutoSize.  Simplify some mouse/keyboard code.
2427         * Control.cs: PerformLayout after changing Padding if AutoSize = true.
2428         * MouseEventArgs.cs: Make Location internal for 1.1.
2429         * TextRenderer.cs: Make MeasureTextInternal (string, Font, bool) internal for 1.1.
2430         * Theme.cs: Add CalculateButtonAutoSize.
2431         * ThemeWin32Classic.cs: Implement CalculateButtonAutoSize.
2432
2433 2007-06-05  Miguel de Icaza  <miguel@novell.com>
2434
2435         * TreeNodeCollection.cs: Applied patch from Neil Cawse <neilcawse@geotab.com>
2436
2437 2007-06-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2438
2439         * ListViewItem.cs: We can't cache Bounds in VirtualMode 
2440         since we can get different item instances every time we retrieve it.
2441
2442 2007-06-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2443
2444         * ListView.cs: Work around for #81602, since an unkown an pretty
2445         infrequent condition appears only in some systems (old linux boxes, it
2446         seems).
2447
2448 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
2449
2450         * Button.cs: Completely reformat and a little refactor to bring
2451         this closer to Mono circa 2007.
2452
2453 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
2454
2455         * CheckBox.cs, Form.cs, RadioButton.cs: Change call to ButtonBase.Redraw
2456         to be ButtonBase.Invalidate.
2457
2458 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
2459
2460         * ButtonBase.cs: GetPreferredSize is 2.0 only.  Fixes build.
2461
2462 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
2463
2464         * ButtonBase.cs: Completely reformat and a little refactor to bring
2465         this closer to Mono circa 2007.
2466
2467 2007-06-01  Everaldo Canuto  <ecanuto@novell.com>
2468
2469         * Label.cs: Fixes preferred sizes for 2.0 profile, also adjust some
2470         values for autosize. Fixes #80137.
2471
2472 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
2473
2474         * Control.cs: Don't perform layout when AutoSize changes.
2475         * Form.cs: Perform layout in AutoSize override.  Don't set ClientSize
2476         directly when autosizing, use SetBounds with BoundsSpecified.None.
2477         Fixes unit tests my last commit broke.
2478
2479 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
2480
2481         * Control.cs: Perform layout when AutoSize changes.
2482         * Form.cs: Implement AutoSizing.
2483
2484 2007-06-01  Chris Toshok  <toshok@ximian.com>
2485
2486         * DataGrid.cs: remove the XXX'ed check at the top of
2487         ProcessGridKey.  fixes #80464.
2488
2489 2007-06-01  Chris Toshok  <toshok@ximian.com>
2490
2491         * DataGridTextBoxColumn.cs: TextBox.TextChanged event handler
2492         adding idempotent (add/remove in Edit()), and also make sure we
2493         don't add it until after we set the text, so it's not tripped in
2494         Edit().  Fixes unit test regression.
2495
2496 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
2497
2498         * Control.cs: In UpdateBounds, only recalculate anchor distances if the
2499         change is user explicit, not when the layout engine moves stuff.  Fixes
2500         anchoring to bottom and right.  [Fixes bug #81790]
2501
2502 2007-06-01  Andreia Gaita  <avidigal@novell.com>
2503
2504         * PrintDialog.cs: Add collation preview thumbnails. Fixes #80726.
2505
2506 2007-06-01  Andreia Gaita  <avidigal@novell.com>
2507
2508         * ContainerControl.cs: 
2509         Fire enter event for common ancestor if it is not a ContainerControl.
2510         Send focus to the active_control and not the 'value', the active 
2511         control might have been changed in one of the events fired.     
2512         Definitely fixes #80159.
2513
2514 2007-06-01  Andreia Gaita  <avidigal@novell.com>
2515
2516         * DataGrid.cs: Finish editing when focus leave the datagrid. Fixes #80159.
2517
2518 2007-06-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2519
2520         * PropertyGrid.cs: Anchor the help description to the bottom of the
2521           help panel and refactor SelectGridItem into a
2522           SelectGridItemInternal that can be set to null (and update it to
2523           clear the help texts when it is set to null). Set root item to null
2524           when there's no SelectedObject. Fixes #80438.
2525         * ScrollableControl.cs: In Recalculate we need to ResumeLayout(true)
2526           when we're recalculating after a resize (only).
2527
2528 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2529
2530         * ListView.cs: Implement 2.0 RedrawItems method.
2531
2532 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2533
2534         * ListControl.cs: Disconnect PositionChanged and ItemChanged
2535         handlers from previous data manager when DataSource is set to
2536         null. Fixes #81771.
2537
2538 2007-05-31  Jackson Harper  <jackson@ximian.com>
2539
2540         * TextBoxBase.cs: These seem to be the correct values.
2541
2542 2007-05-31  Everaldo Canuto  <ecanuto@novell.com>
2543
2544         * FileDialog.cs: When close dialog with ok set filterindex using combobox
2545         value. Fixes #81784.
2546
2547 2007-05-31  Jonathan Pobst  <monkey@jpobst.com>
2548
2549         * Control.cs: Implement 2.0 scaling methods.
2550
2551 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2552
2553         * ProgressBar.cs, WebBrowserBase.cs, Control.cs, MaskedTextBox.cs,
2554           MessageBox.cs, PropertyGrid.cs, RichTextBox.cs: Fix warnings and
2555           corcompare issues.
2556
2557 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2558
2559         * ProgressBar.cs: Implemented missing 2.0 members.
2560
2561 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2562
2563         * Control.cs: Corcompare issues.
2564         * MessageBox.cs: Implemented missing 2.0 functions.
2565
2566 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2567
2568         * CheckedListBox.cs, ListBox.cs, ListControl.cs, ComboBox.cs:
2569           Implemented more 2.0 members.
2570
2571 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2572
2573         * Application.cs: Try to avoid NRE when Assembly.GetEntryAssembly is
2574           null (strange, but it seems to happen when running unit tests).
2575
2576 2007-05-30  Andreia Gaita  <avidigal@novell.com>
2577
2578         * ContainerControl.cs: Set active_control even earlier, before 
2579         firing any events, and undo it if validation returns false.
2580
2581 2007-05-30  Andreia Gaita  <avidigal@novell.com>
2582
2583         * ContainerControl.cs: Raise Validation and Enter/Leave events
2584         even if there is no Form and set active_control earlier, just
2585         before firing Enter events (toshok's patches). Fixes #80647.
2586
2587 2007-05-30  Jackson Harper  <jackson@ximian.com>
2588
2589         * TextControl.cs: Redid the pageup/pagedown a little to simplify
2590         things and fix bug #81311.
2591
2592 2007-05-30  Jackson Harper  <jackson@ximian.com>
2593
2594         * X11Dnd.cs: Now that we have our own event loop, we need to
2595         cancel when we get a mouseup but it won't be accepted.
2596
2597 2007-05-30  Chris Toshok  <toshok@ximian.com>
2598
2599         * DataGrid.cs (set_CurrentCell): guard against negative
2600         column/row.
2601
2602         * DataGridColumnStyle.cs (CheckValidDataSource): just use the
2603         array index syntax instead of looping over the property names.
2604
2605         * DataGridTextBoxColumn.cs: add a changed handler on the textbox,
2606         and set IsInEditOrNavigateMode to false there.
2607
2608 2007-05-30  Jackson Harper  <jackson@ximian.com>
2609
2610         * TreeView.cs: Make sure we don't get a bad visible order when
2611         setting to the top node.  Fixes some misc crashing in
2612         ControlInspector.
2613
2614 2007-05-30  Andreia Gaita  <avidigal@novell.com>
2615
2616         * UserControl.cs: Add 2.0 AutoSizeMode
2617
2618 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
2619
2620         * DataGridTextBoxColumn.cs: Fix textbox horizontal offset.
2621
2622 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
2623
2624         * DataGridTextBoxColumn.cs: Fix textbox position to prevent override grid
2625         lines. Fixes #80285. 
2626
2627 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
2628
2629         * DataGridColumnStyle.cs: Add char trimming column header text format. 
2630
2631 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
2632
2633         * DataGridColumnStyle.cs: Fix grid header arrow drawing over column name. 
2634         Fixes #80147.
2635
2636 2007-05-29  Jackson Harper  <jackson@ximian.com>
2637
2638         * TreeNode.cs: Fix off by one on calculating whether or not a node
2639         is visible.
2640
2641 2007-05-29  Jonathan Pobst  <monkey@jpobst.com>
2642
2643         * Control.cs: ResumeLayout(false) should recalculate anchor distances.
2644         * ScrollableControl.cs: Force an UpdateDistances when we move the
2645         scrollbars.
2646         [Fixes bug #80605]
2647
2648 2007-05-29  Andreia Gaita  <avidigal@novell.com>
2649
2650         * PageSetupDialog.cs: Fix #80728 - Changing the printer doesn't
2651         update the page setup screen.
2652
2653 2007-05-29  Andreia Gaita  <avidigal@novell.com>
2654
2655         * PageSetupDialog.cs: Fix landscape mode.
2656
2657 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2658
2659         * SystemInformation.cs: Add 2.0 IconSizeVerticalSpacing and
2660         IconSizeHorizontalSpacing.
2661
2662 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2663
2664         * ListView.cs: The declaration of prev_tooltip_item should be inside
2665         a NET_2_0 conditional (avoid a warning).
2666
2667 2007-05-28  Andreia Gaita  <avidigal@novell.com>
2668
2669         * PageSetupDialog.cs: Implement PrintPreview control to display
2670         the preview thumbnail. Change unit conversion to use 
2671         PrinterUnitConvert methods.
2672         
2673         Note: there is a huge bug in ms.net where the default margins are 
2674         interpreted as centimeters (?), when in fact they are set in inches. When 
2675         loading the page setup dialog initially (ms.net), the default margins 
2676         are set to 1 inch, and the dialog shows them with value 10, when in fact 
2677         it should be 25 (properly converted). Our dialog doesn't have this bug.
2678         
2679         * Theme.cs, ThemeWin32Classic.cs: Add a CPDrawBorder override for 
2680         RectangleF.
2681         * ControlPaint.cs: Add a DrawBorder internal method for RectangleF.
2682
2683 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2684
2685         * ListView.cs:
2686         * ListViewItem.cs: Implement 2.0 ToolTipText support for listview
2687         items.
2688
2689 2007-05-28  Andreia Gaita  <avidigal@novell.com>
2690
2691         * X11Dnd.cs: A direct cast to VirtualKeys is not allowed from
2692         an IntPtr on csc (it builds fine on mcs, could it be a compiler
2693         bug?), convert the ptr to Int32 first.
2694
2695 2007-05-28  Jackson Harper  <jackson@ximian.com>
2696
2697         * X11Dnd.cs: Add a timer, so after drop, if a finish is not
2698         recieved, we will exit the dnd tracking loop.
2699
2700 2007-05-28  Jackson Harper  <jackson@ximian.com>
2701
2702         * X11Dnd.cs: Keep tracking until the xdnd finished event is
2703         recieved. TODO: I should probably stick a timer on the dropped
2704         event, and finish the drag if the XDND Finished event never shows
2705         (because some apps don't seem to send it).
2706
2707 2007-05-28  Everaldo Canuto  <ecanuto@novell.com>
2708
2709         * ToolBar.cs: Fix toolbar default width for button with image. Fixes
2710         #81733.
2711
2712 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2713
2714         * MonthCalendar.cs: Only mark the keypresses we actually handle as
2715           handled.
2716
2717 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2718
2719         * MonthCalendar.cs: Set the size after initializing all the relevant
2720           variables. Fixes #81742.
2721
2722 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2723
2724         * KeyEventArgs.cs: Fix typo.
2725
2726 2007-05-28  Gert Driesen  <drieseng@users.sourceforge.net>
2727
2728         * DateTimePicker.cs: Changed exceptions thrown by MinDate and MaxDate
2729         to match MS. Fixed MinDate to only accept value less than or equal
2730         to MaxDate on 2.0 profile and less than MaxDate on 1.0 profile.
2731         Removed TODO's that are now verified by unit tests.
2732
2733 2007-05-27  Gert Driesen  <drieseng@users.sourceforge.net>
2734
2735         * TreeNodeCollection.cs: Minor corrections to exceptions to match
2736         MS.
2737
2738 2007-05-25  Jackson Harper  <jackson@ximian.com>
2739
2740         * X11Dnd.cs: Rework to make StartDrag a blocking call that runs
2741         it's own message loop.
2742         * XplatUIX11.cs: Remove some of the dnd hooks
2743
2744 2007-05-25  Gert Driesen  <drieseng@users.sourceforge.net>
2745
2746         * XplatUIX11.cs: Change MinimumWindowSize to {Width=0,Height=0}
2747         instead of MinimizedWindowSize.
2748
2749 2007-05-25  Jackson Harper  <jackson@ximian.com>
2750
2751         * TextBoxBase.cs: Raise textchanged when cutting and pasting text.
2752
2753 2007-05-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2754
2755         * KeyEventArgs.cs: Added SuppressKeyPress.
2756         * Control.cs: Added support for SuppressKeyPress.
2757
2758 2007-05-24  Andreia Gaita  <avidigal@novell.com>
2759
2760         * NumericUpDown.cs: Refactor code to fix regressions on #79950 and
2761         problems with PieChart. suppress_validation should not be a counter,
2762         if there are several BeginInit calls, the first EndInit will 
2763         activate validation. Fix exceptions thrown by set_Value.
2764         * UpDownBase.cs: ValidateText only if it's the user editing it.
2765
2766 2007-05-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2767
2768         * ListControl.cs: FilterItemOnProperty should return the filtered
2769         item proeprty even if DataSource is null. The same applies for
2770         GetItemText. Fixes #80427.
2771
2772 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
2773
2774         * Control.cs: If a control doesn't have a parent when it's Dock is
2775         set, but it has children, it needs to do a layout.  Fixes some nested
2776         controls issues.  [Fixes bug #81199]
2777
2778 2007-05-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2779
2780         * ComboBox.cs: If there are few items in the drop down list, make it
2781           the exact size the items need, no bigger. Fixes #81612.
2782
2783 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
2784
2785         * Application.cs: When we have captured the keyboard for a menu,
2786         check for mouse down events in case we need to close the menu.
2787         * Control.cs, Form.cs: Remove mouse down checks for menus.
2788
2789 2007-05-24  Jackson Harper  <jackson@ximian.com>
2790
2791         * TextControl.cs: Handle tabs in non multiline mode a little
2792         differently.
2793
2794 2007-05-24  Jackson Harper  <jackson@ximian.com>
2795
2796         * TextControl.cs: We need to manually break apart tabbed text and
2797         move the tabs, since the system.drawing tabbing mechanism relies
2798         on tab stops.
2799         * TextBoxBase.cs: Move the caret properly when the user enters a
2800         tab.
2801
2802 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
2803
2804         * ContainerControl.cs: Don't check CanSelect before calling
2805         ProcessMnemonic.
2806         * ToolStrip.cs: Only do implicit mnemonics on MenuStrips.  Don't
2807         release a KeyboardActive on click if it's not ours.
2808
2809 2007-05-23  Andreia Gaita  <avidigal@novell.com>
2810
2811         * ColumnHeader.cs: Add TypeConverter
2812
2813 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2814
2815         * LinkLabel.cs: Implement LinkCollection.Add with Link parameter (2.0).
2816
2817 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2818
2819         * LinkLabelLinkClickedEventArgs.cs, LinkLabel.cs: Implement Button property.
2820
2821 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2822
2823         * LinkLabel.cs: Implement public Padding property.
2824
2825 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2826
2827         * LinkLabel.cs: Implement public FlatStyle.
2828
2829 2007-05-23  Jonathan Pobst  <monkey@jpobst.com>
2830
2831         * Control.cs: Apply patch from George to call parent.PerformLayout
2832         when Visible is changed.  [Fixes bugs #81118, 81718]
2833
2834 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2835
2836         * MainMenu.cs, MenuAPI.cs: Implement Collapse event for MainMenu (2.0).
2837
2838 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2839
2840         * ContextMenu.cs: Implement ProcessCmdKey with control parameter.
2841
2842 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2843
2844         * ContextMenu.cs: Implement Collapse.
2845
2846 2007-05-23  Rolf Bjarne Kvinge <RKvinge@novell.com>
2847
2848         * ToolBarButton.cs: Implement Name.
2849
2850 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
2851
2852         * ToolBar.cs: Fix OnButtonDropDown to save item used in dropdown instead of
2853         use current_item, it prevents some NRE. Fixes #81675.  
2854
2855 2007-05-22  Andreia Gaita  <avidigal@novell.com>
2856
2857         * NumericUpDown.cs: Fix PieChart by not returning from UpdateEditText
2858         without updating the text.
2859
2860 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
2861
2862         * XplatUIWin32.cs: Plug a GDI leak caused by calling Font.ToHfont ()
2863         without calling DeleteObject.  [Should fix bug #81709]
2864
2865 2007-05-22  Jackson Harper  <jackson@ximian.com>
2866
2867         * RichTextBox.cs: Set the line endings correctly, when flushing
2868         RTF text.
2869
2870 2007-05-22  Gert Driesen  <drieseng@users.sourceforge.net>
2871
2872         * XplatUIX11.cs: MinimumWindowSize on X11 is actually
2873          {Width=0,Height=0}.
2874
2875 2007-05-22  Jackson Harper  <jackson@ximian.com>
2876
2877         * TreeView.cs: Setting top with a null node should set to the very
2878         top.
2879
2880 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2881
2882         * Form.cs: ShowDialog: destroy the handle when message loop is
2883           finished, matches MS behaviour. Refactor parts of WmClose into
2884           RaiseCloseEvents, that only raises events if they haven't already
2885           been raised. Fixes #81688 and #81521.
2886         * Application.cs: Don't call close on the form when exiting a modal
2887           loop, it will raise all the (Form)Closed/Closing events again if
2888           WM_CLOSE has been sent earlier on, instead call RaiseCloseEvent,
2889           which doesn'r raise any events it they have been raised before.
2890
2891 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
2892
2893         * Control.cs: Add OnPrint.
2894         * ToolStrip.cs: Add GetChildAtPoint.
2895         * ToolStripContainer.cs: Add OnRightToLeftChanged.
2896         * ToolStripRenderer.cs: Make CreateMirrorImage internal.
2897
2898 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
2899
2900         * MenuAPI.cs: Prevent context menu to be typed as MainMenu. Fixes #81509.  
2901
2902 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2903
2904         * InternalWindowManager.cs: ToolTipShow: Don't show tooltip if the form
2905           isn't visible anymore. Fixes #81651.
2906
2907 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2908
2909         * Control.cs: WmShowWindow: Update children's z-order after setting
2910           their parent. SetParent may show the window, thereby corrupting
2911           z-order, since the window will be shown on top.
2912         * XplatUIWin32.cs: SetParent: don't call SetVisible on forms. Prevents
2913           multiple (and redundant) WM_SHOWWINDOW messages.
2914         * MdiWindowManager.cs: RaiseDeactivate: only raise after an Activate
2915           event has already been raised.
2916         * Form.cs: Change is_changing_visible_state to a counter, since
2917           SetVisibleCore can be called recursively. CreateHandle: when
2918           creating mdi children, send (De)Activated events.
2919         * MdiClient.cs: Update use of is_changing_visible_state.
2920         * Application.cs: OnThreadException: Surround exception handling with
2921           try/finally to ensure we always reset the error-handling state
2922           before leaving.
2923
2924 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2925
2926         * ThemeWin32Classic.cs: DrawProgressBar: Avoid a DivideByZero exception
2927           (#81704).
2928
2929 2007-05-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2930
2931         * ListView.cs: Use Theme.ListViewHorizontalSpacing for List and
2932         SmallIcon views, now that we have a standarized horizontal spacing.
2933
2934         * ThemeWin32Classic.cs: ListViewHorizontalSpacing now has a value of
2935         4, just like the other views (Match .Net).
2936
2937 2007-05-21  Jonathan Pobst  <monkey@jpobst.com>
2938
2939         * Control.cs: Delay calculating anchor distances until we actually layout.
2940         Always query the WM for the actual size and location it put us at instead of
2941         only when we send negative values.
2942         [Fixes bugs #81694, 81695]
2943
2944 2007-05-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2945
2946         * Application.cs: Avoid a possible stack overflow when trying to exit
2947           the application.
2948
2949 2007-05-19  Marek Safar  <marek.safar@gmail.com>
2950
2951         * Theme.cs (GetHatchBrush): A key uses internal value instead of formated
2952         enum value.
2953
2954 2007-05-19  Andreia Gaita  <avidigal@novell.com>
2955
2956         * NumericUpDown.cs: Added 2.0 methods (spin acceleration)
2957         * NumericUpDownAcceleration.cs, 
2958           NumericUpDownAccelerationCollection.cs: Added 2.0
2959           implementation.
2960
2961 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
2962
2963         * RichTextBox.cs: Recalculate the document after the ScrollBars
2964         property is changed. Fixes bug #81681.
2965
2966 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
2967
2968         * DataObject.cs: Implement 2.0 methods.
2969
2970 2007-05-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2971
2972         * ThemeWin32Classic.cs: Draw the check marks in ListViewItems
2973         in the center of the checkbox, not in the left-top corner. 
2974         Fixes #80037.
2975
2976 2007-05-18  Jackson Harper  <jackson@ximian.com>
2977
2978         * RichTextBox.cs: Recalculate the document after the scrollbars
2979         property is changed.
2980         * TextBoxBase.cs: ScrollBars is not a flags enum...This fixes
2981         81486.
2982
2983 2007-05-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2984
2985         * CreateParams.cs: Make HasWindowManager marginally faster.
2986         * XplatUIX11.cs, Hwnd.cs: CreateWindow: Move the default location code
2987           into Hwnd so that other drivers can use it as well.
2988         * XplatUIWin32.cs: CreateWindow: If the window has a window manager get
2989           the default location from Hwnd. Fixes MDI client windows always
2990           showing up at (0,0) in Windows (Win32 won't set the default
2991           location since the window styles aren't correct).
2992
2993 2007-05-18  Gert Driesen  <drieseng@users.sourceforge.net>
2994
2995         * TreeView.cs: Modified DoubleBuffered to just use the base
2996         implementation.
2997
2998 2007-05-18  Jackson Harper  <jackson@ximian.com>
2999
3000         * TreeView.cs: Set the top node to the last child node when
3001         expanding all
3002         - When we get focus, if there is no selected node, use the top
3003         node.
3004
3005 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
3006
3007         * KeysConverter.cs: Add CanConvertTo.
3008         * LinkLabel.cs: Add some 2.0 constructors and properties to LinkLabel.Link.
3009         * LinkConverter.cs: Added.
3010
3011 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3012
3013         * Cursor.cs: Apply Sebastien patch from #81669 to open file in read mode,
3014         it prevents error when file dont have write access. Fixes #81669 and #81667.  
3015
3016 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3017
3018         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw toolbar 
3019         button text. Fixes #79640.  
3020
3021 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3022
3023         * Control.cs: According to MSDN controls created in the designer theres 
3024         keyboard accelerators visible by default. So included check for design
3025         in ShowKeyboardCuesInternal.  
3026
3027 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3028
3029         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw combobox 
3030         text. Fixes #81621.  
3031
3032 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
3033
3034         * Control.cs: ShowKeyboardCuesInternal add to expose ShowKeyboardCues
3035         for 1.0, becuse ShowKeyboardCues is protected on 1.0.  
3036
3037 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
3038
3039         * Control.cs: Finish implementation of UI State using WmChangeUIState
3040         to send WM_UPDATEUISTATE to all child controls. Some hack will be needed
3041         in some controls to check for show_keyboard_cues to draw accell keys "_".  
3042
3043 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3044
3045         * ListBox.cs: When calculating the horizontal scrollbar
3046         in single column mode, don't use values less than 0 for
3047         Maximum. Fixes #81474.
3048
3049 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3050
3051         * ListBox.cs: Throw the some missing exceptions in
3052         ListBox.ObjectCollection methods.
3053
3054 2007-05-17  Jackson Harper  <jackson@ximian.com>
3055
3056         * TextBoxBase.cs: Recalculate the document when the word wrap
3057         value has changed. This fixes 81488.
3058
3059 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
3060
3061         * Clipboard.cs: Implement missing GetText overload.
3062
3063 2007-05-17  Chris Toshok  <toshok@ximian.com>
3064
3065         * Control.cs (CheckDataBindings): remove the binding_context arg
3066         to binding.Check.
3067
3068         * CurrencyManager.cs (OnItemChanged): fix this now that
3069         BindingManagerBase is fixed. also remove the comment telling where
3070         the fix should go.  We set transfering_data to true/false around
3071         the call to PushData to keep UpdateIsBinding from being called.
3072         (ListChangedHandler): remove the extra OnMetaDataChanged call for
3073         PropertyDescriptorAdded in the 1.1 case.  The extra call is
3074         actually generated by System.Data generating 2 metadata changed
3075         events of its own per column add.  The fix should go there.  Add a
3076         comment to that affect in our test's Assert.Ignore.
3077
3078         * BindingManagerBase.cs: Rework PullData and PushData slightly.
3079         we keep a boolean flag (transfering_data) that keeps us from
3080         calling UpdateIsBinding multiple times if we re-enter either of
3081         them.
3082
3083         * ControlBindingsCollection.cs (AddCore): remove the
3084         binding_context arg to binding.Check.
3085
3086         * Binding.cs (IsBinding): don't check if we're binding here, just
3087         return our cached value.  we update it in UpdateIsBinding.
3088         (Check): don't take the binding_context arg, we'll just use our
3089         control's.  Also, for some reason MS doesn't use the data member
3090         field when getting the bindingmanager for this binding.  it just
3091         uses the datasource.  Make this method callable multiple times,
3092         and only do the is_null_desc stuff if manager.Position != -1 (so
3093         we don't get an exception accessing manager.Current).
3094         (UpdateIsBinding): move the code from IsBinding here.
3095         (PositionChangedHandler): call Check here to we can initialize
3096         things that require a non- -1 position.
3097
3098 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
3099
3100         * Form.cs: When alt keys is pressed send WM_CHANGEUISTATE to top level
3101         control.
3102
3103 2007-05-17  Andreia Gaita  <avidigal@novell.com>
3104
3105         * TabControl.cs: Add 2.0 methods and events, including
3106         OnEnter / OnLeave and raises it for tabpages (fixes #79869)
3107         * TabPage.cs: Add 2.0 methods
3108
3109 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
3110
3111         * Control.cs: Implement WmUpdateUIState, show_focus_cues and
3112         keyboard_cues is properly handled by message method.  
3113
3114 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
3115
3116         * TreeViewImageIndexConverter.cs: Add 2.0 methods.
3117
3118 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
3119
3120         * ToolStripTextBox.cs: Wire up new 2.0 Textbox methods/properties.
3121
3122 2007-05-16  Everaldo Canuto  <ecanuto@novell.com>
3123
3124         * Control.cs: 
3125         - WmUpdateUIState added to handle state changes, it make call to
3126         OnChangeUICues event.
3127         - Fixed ShowKeyboardCues to check for MenuAccessKeysUnderlined in
3128         SystemInformation.
3129
3130 2007-05-16  Jonathan Pobst  <monkey@jpobst.com>
3131
3132         * ImageKeyConverter.cs: Added.
3133         * TreeViewImageKeyConverter.cs: Added.
3134
3135 2007-05-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3136         
3137         * ToolTips.cs: Update Text if SetToolTip is called for a control
3138         already showing the tooltip, as well as restarting its timer; show
3139         tooltip if we are inside the control bounds by the time of calling
3140         SetToolTip. Inside ShowTooltip remove the check to not show the 
3141         tooltip again for the active control (it is allowed by .Net to 
3142         show the tooltip on the same control multiple times).
3143
3144 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3145
3146         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
3147
3148 2007-05-16  Andreia Gaita <avidigal@novell.com> 
3149
3150         * ContainerControl.cs: only process tab key if there are no 
3151         modifier keys present, otherwise the control does the 
3152         tab processing, if it needs to. Fixes #81622
3153         * TabControl.cs: Fixes calculation for which tab to select on
3154         shift+ctrl+tab.
3155
3156 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3157
3158         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
3159
3160 2007-05-15  Jonathan Pobst  <monkey@jpobst.com>
3161
3162         * Control.cs: Make IsInputCharInternal to allow controls to
3163         override it and still match MS API.
3164         * TextBoxBase.cs: Override IsInputCharInternal and always
3165         return true.
3166         [Fixes bug #81616]
3167
3168 2007-05-15  Jackson Harper  <jackson@ximian.com>
3169
3170         * TextBox.cs: Disable some of the menu options when using a
3171         readonly textbox.
3172
3173 2007-05-15  Jackson Harper  <jackson@ximian.com>
3174
3175         * TextBox.cs:
3176         * TextBoxBase.cs:
3177         * RichTextBox.cs: Some new 2.0 methods
3178
3179 2007-05-15  Gert Driesen  <drieseng@users.sourceforge.net>
3180
3181         * FileDialog.cs: On 1.0 profile, do not support multidotted 
3182         extensions.
3183
3184 2007-05-14  Jackson Harper  <jackson@ximian.com>
3185
3186         * TextBoxBase.cs: Implement some of the new 2.0 methods.
3187         * RichTextBox.cs: We need to override these methods on 2.0.
3188         * MaskedTextBox.cs: These are implemented now
3189         * TextControl.cs: This was off by one.
3190
3191 2007-05-14  Jackson Harper  <jackson@ximian.com>
3192
3193         * TextControl.cs: Because the line endings are including in the
3194         text, we don't need to add them in anymore.
3195
3196 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3197
3198         * ToolBar.cs: Fix autosize and get it working only after hadle is created,
3199         also prevent redraw in set_autosize if handle is not created. Fixes #81523.
3200
3201 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3202
3203         * ToolBar.cs: Adjust size to default size when button theres no text and
3204         image, it fixes remaining issues from #81524.
3205
3206 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3207
3208         * ToolBar.cs: 
3209         - When not flat call redraw to recalculate sizes on creare handle to match
3210         win32 behavior.
3211         - Revert 77220 because it causes some regressions in toobar
3212         button.
3213
3214 2007-05-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3215
3216         * MaskedTextBox.cs: Update the base text whenever the text changes. MTB
3217           now actually enters a usable state.
3218
3219 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3220
3221         * ToolBar.cs: Check for handle created in redraw to prevent unneeded size
3222         calculations, it reduces the size cauculation from 7 to 3 on a toolbar with
3223         3 buttons.
3224
3225 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3226
3227         * ToolBar.cs: Save default_size on create handle to use later for buttons
3228         without text, needed to mimic win32 behavior.
3229
3230 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
3231
3232         * ToolBar.cs: Fix button layour to best fit width or height according to
3233         vertical or not. Fixes #81524.
3234
3235 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
3236
3237         * ToolBarButton.cs: When change style call ToolBar.Redraw to update
3238         toolbar size info because different styles theres different sizes.
3239         Fixes #81522.
3240
3241 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3242
3243         * ThemeWinClassic.cs: For .Net 2.0 don't draw any image
3244         if we are using checkboxes, checked is true, and we have less
3245         than two images in StateImageList; for the 1.1 in the same scenario
3246         draw the first image if we have at least one image in StateImageList.
3247         Fixes part of #81191.
3248
3249 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
3250
3251         * ToolStrip.cs, ToolStripManager.cs: We need to remove items from
3252         the owner's Items collection on merge.
3253
3254 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
3255
3256         * ToolStrip.cs: Use new internal ToolStripItemCollection constructor.
3257         * ToolStripItemCollection.cs: Lots of fixes to when events get called
3258         and parent/owner gets changed based on gert's unit tests.
3259
3260 2007-05-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3261
3262         * MaskedTextBox.cs: Started implementing parts of it.
3263
3264 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3265
3266         * ListView.cs: When clicking the checkbox on the items
3267         take into account the double clicks even if we have only
3268         one image in StateImageList (only for 1.0/1.1). Also 
3269         generate an extra change of checked state when we receive
3270         the second click on checkbox (match .Net behaviour). 
3271         Fixes part of #81191.
3272
3273 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
3274
3275         * ThemeWin32Classic.cs: Fix text rectangles in Tooltips.
3276
3277 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
3278
3279         * Form.cs: Move some of OnLoad to OnLoadInternal so it gets called
3280         even if OnLoad is overriden and base.OnLoad is not called.
3281         [Fixes bug #81582]
3282
3283 2007-05-10  Andreia Gaita  <avidigal@novell.com>
3284
3285         * TableLayoutSettings.cs: A big doh! fix and bowing down of head in 
3286         shame. (I blame my ever-persisting and annoying cold)
3287
3288 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
3289
3290         * ListView.cs: Don't eat navigation keys.  Let them flow through to
3291         KeyDown/KeyPress routines.  [Fixes bug #81569]
3292
3293 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
3294
3295         * ListView.cs: When handling keys for selecting the item based off
3296         keyboard input, do not consider keys pressed with Alt or Control.  Also,
3297         correctly handle keys when the Shift key is down. [Fixes bug #81578]
3298
3299 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
3300
3301         * Control.cs: When using UseWaitCursor, we have to store the requested
3302         Cursor to use when UseWaitCursor is turned off.
3303
3304 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
3305
3306         * Control.cs: Implement PreProcessControlMessage.  Default IsInputChar
3307         to false.
3308         * Application.cs: Use PreProcessControlMessage instead of
3309         PreProcessMessage.
3310         * PreProcessControlMessage.cs: Make internal for 1.1.
3311
3312 2007-05-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3313
3314         * Control.cs: Add InternalContains focus property, which hast the same
3315         functionality of ContainsFocus, but also including implicit controls.
3316         * ListViewItem.cs: Use InternalContainsFocus instead of ContainsFocus,
3317         since we need to know if the focus is contained in our implicit
3318         ItemControl when calculating Layout. Fixes part of #80888.
3319
3320 2007-05-08  Everaldo Canuto  <everaldo@simios.org>
3321
3322         * ToolTip.cs: Remove center form string alignment as it must be align to
3323         left.
3324
3325 2007-05-08  Jonathan Pobst  <monkey@jpobst.com>
3326
3327         * ToolStripItemCollection.cs: Set the new item's parent and owner
3328         in Insert like we do in Add.  [Fixes bug #81568]
3329
3330 2007-05-08  Jackson Harper  <jackson@ximian.com>
3331
3332         * TreeView.cs: GotFocus differences between 1.1 and 2.0.
3333         - Off by one error in SetTop
3334         - Disable DoubeBuffering
3335         
3336 2007-05-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3337
3338         * ScrollableControl.cs: ScrollIControlntoView: we now only move the
3339           control as much as necessary in order to make it entirely visible,
3340           instead of centering the control in the container (matches MS
3341           behaviour). CalculateCanvasSize: we need to take the current scroll
3342           position into account when calculating the maximum canvas,
3343           otherwise the following scenario will fail: resize so that the
3344           scrollbars appear, use the scrollbars to scroll, resize again
3345           smaller, and now the canvas size is too small. Recalculate: when
3346           showing scrollbars make sure they start off at 0, and try to scroll
3347           the active control into view. Fixes #79540. HandleScrollBar: don't
3348           scroll anywhere if the scrollbar isn't visible.
3349
3350 2007-05-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3351
3352         * ListView.cs: When focus changed, call Layout/Invalidate
3353         in the focused item to update the selected state (should show
3354         entire label when ListView is focused, and a part of it if is not).
3355         * ListViewItem.cs: When doing layout for LargeIcon, take into account
3356         for displaying the entire label not only the Focused state of the
3357         item, but also the Focused state of the ListView (match .Net
3358         behaviour).
3359
3360 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
3361
3362         * Control.cs: Stub CanRaiseEvents, IsMirrored, and NotifyClients.
3363         Implement UseWaitCursor. 
3364
3365 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
3366         Applying contributed patch from Sergey Volk.
3367
3368         * Clipboard.cs: Implement SetDataObject retry logic and new overload
3369         of SetDataObject.
3370         * XplatUIWin32.cs: Throw an ExternalException if the clipboard set fails.
3371
3372 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
3373
3374         * Control.cs: Implement DrawToBitmap.
3375
3376 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
3377         Applying contributed patch from Stefan Noack.
3378         
3379         * Control.cs: Add [Get|Set]AutoSizeMode.
3380
3381 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
3382
3383         * MdiClient.cs: Unmerge menus when the last child is closed.
3384
3385 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
3386
3387         * ToolStrip.cs: Do not call BeginMerge on DropDowns.
3388         * ToolStripManager.cs: Call Merge on DropDowns.
3389         [Fixes bug #81477]
3390
3391 2007-05-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3392
3393         * XplatUIWin32.cs: Changed Win32CreateWindow to take enums instead of
3394           uints.
3395         * Form.cs: CreateParams: don't set WS_VISIBLE if we're changing
3396           visibility. We can't create forms visible, since we have to set the
3397           owner before making the form visible (otherwise Win32 will do
3398           strange things with task bar icons). The problem is that we set the
3399           internal is_visible to true before creating the control, so
3400           is_changing_visible_state is the only way of determining if we're
3401           in the process of creating the form due to setting Visible=true -
3402           this works because SetVisibleCore explicitly makes the form
3403           visibile afterwards anyways. Fixes #80775.
3404
3405 2007-05-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3406
3407         * ThemeWin32Classic.cs: When drawing ListViewItems,
3408         use StringTrimming.EllipsisCharacter if the view is Tile, Details,
3409         or LargeIcon _and_ item is not focused (match .Net behaviour).
3410
3411 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
3412
3413         * Control.cs, Form.cs: Fix some obsolete method warnings.
3414
3415 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
3416
3417         * Control.cs: Implement GetChildAtPoint and OnParentCursorChanged.
3418         * GetChildAtPointSkip.cs: Make internal for 1.1 profile.
3419
3420 2007-05-04  Andreia Gaita  <avidigal@novell.com>
3421
3422         * ContainerControl.cs: Fix active_control attribution when going
3423         up the parent chain so that the first parent container gets the control
3424         and the rest of the parent containers get the child containers (skips
3425         non-containers). Fixes #80729
3426
3427 2007-05-04  Randolph Chung  <tausq@debian.org>
3428
3429         * FileDialog.cs: Implement the SupportMultiDottedExtensions property.
3430         [Fixes bug #81499]
3431
3432 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3433
3434         * XplatUIX11.cs: Add a TranslateWindowSizeToXWindowSize overload that
3435           takes a size parameter, since the CreateParam's size isn't true for
3436           minimized forms. Fixes #81518,
3437
3438 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3439
3440         * Form.cs: Add OnDeactivateInternal.
3441         * MdiClient.cs: Raise Deactivate event. Fixes #81409.
3442
3443 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3444
3445         * DateTimePicker.cs: CalculateDropDownLocation: do a null check before
3446           accessing the parent. Fixes #81508.
3447
3448 2007-05-03  Chris Toshok  <toshok@ximian.com>
3449
3450         * CurrencyManager.cs (CurrencyManager.ListChangeHandler): in the
3451         2.0 block, pass listposition + 1 to ChangeRecordState when a row
3452         was added before the current listposition.  Fixes the
3453         TestInsertRowBeforeCurrent unit test.
3454
3455 2007-05-03  Jonathan Pobst  <monkey@jpobst.com>
3456
3457         * Application.cs: Add RaiseIdle.
3458         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
3459         XplatUIX11.cs: Implement RaiseIdle.
3460
3461 2007-05-02  Jonathan Pobst  <monkey@jpobst.com>
3462         corcompare work: N - Z
3463         * NotifyIcon.cs
3464         * ProgressBar.cs
3465         * RadionButton.cs
3466         * ScrollableControl.cs
3467         * SplitContainer.cs
3468         * SplitterPanel.cs
3469         * StatusBar.cs
3470         * SystemInformation.cs
3471         * TabControl.cs
3472         * TableLayoutControlCollection.cs
3473         * TableLayoutPanel.cs
3474         * TabPage.cs
3475         * ToolBar.cs
3476         * ToolBarButton.cs
3477         * ToolStrip.cs
3478         * ToolStripComboBox.cs
3479         * ToolStripContainer.cs
3480         * ToolStripContentPanel.cs
3481         * ToolStripDropDown.cs
3482         * ToolStripDropDownItem.cs
3483         * ToolStripDropDownMenu.cs
3484         * ToolStripItem.cs
3485         * ToolStripItemCollection.cs
3486         * ToolStripMenuItem.cs
3487         * ToolStripPanel.cs
3488         * ToolStripSplitButton.cs
3489         * ToolTip.cs
3490         * TreeNode.cs
3491         * TreeNodeCollection.cs
3492         * TreeNodeMouseHoverEventArgs.cs
3493         * TreeView.cs
3494
3495 2007-05-01  Everaldo Canuto  <everaldo@simios.org>
3496
3497         * ContextMenu.cs: Add public method Show with alignment property to 2.0
3498         stuff. Thanks aatdark for the patch. 
3499
3500 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
3501
3502         * GridItem.cs: Implement 2.0 Tag property.
3503
3504 2007-05-01  Frederik Carlier <frederik.carlier@carlier-online.be> 
3505
3506         * TreeNodeCollection.cs: Fix ContainsKey and IndexOfKey methods to use
3507         count instead of Nodes.Length.  [Fixes bug #81448]
3508
3509 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
3510
3511         * ComboBox.cs: Fix paramName sent to ArgumentOutOfRangeException's.
3512         [Fixes bug #81506]
3513
3514 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
3515         corcompare work: A - M
3516         * BindingNavigator.cs
3517         * Button.cs
3518         * ButtonBase.cs
3519         * CheckBox.cs
3520         * Control.cs
3521         * FlowLayoutPanel.cs
3522         * Form.cs
3523         * Label.cs
3524         * LinkLabel.cs
3525         * ListView.cs
3526
3527 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
3528
3529         * Application.cs: Give toolstrips a chance to process mnemonics.
3530         * ToolStrip.cs, ToolStripDropDownButton.cs, ToolStripItem.cs,
3531         ToolStripItemTextRenderEventArgs.cs, ToolStripLabel.cs,
3532         ToolStripMenuItem.cs, ToolStripSplitButton.cs: Implement keyboard mnemonics.
3533
3534 2007-05-01  Jackson Harper  <jackson@ximian.com>
3535
3536         * TextBoxBase.cs: Better preferred height, FixedSingle gets the
3537         wider area too.
3538         - Don't set the BoundsSpecified
3539
3540 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
3541
3542         * Application.cs: When using the toolstrip shortcut mechanism, allow the
3543         message to pass through to a regular control if it hosted by a toolstrip.
3544         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
3545         ToolStripManager.cs: Enable keyboard navigation for ToolStrips.
3546
3547 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
3548
3549         * TextRenderer.cs: Use the flags argument when using the MeasureString
3550         fallback algorithm.
3551
3552 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
3553
3554         * MenuStrip.cs: Don't let multiple ToolStripSeparators get added to
3555         the MDI menu item.  [Fixes bug #81483]
3556
3557 2007-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
3558
3559         * DataGridViewColumn.cs: Initialize value of headercell to zero-length
3560         string. When setting Name to null, use zero-length string instead.
3561
3562 2007-04-29  Andreia Gaita  <avidigal@novell.com>
3563
3564         * TabControl.cs: Implement missing 2.0 methods (SelectTab, 
3565         DeselectTab). Implement missing 2.0 TabPageCollection methods
3566         (Add, ContainsKey, RemoveByKey, IndexOfKey)
3567
3568 2007-04-29  Pedro Martínez Juliá  <pedromj@gmail.com>
3569
3570         * DataGridViewColumn.cs: Make HeaderText take preference over Name.
3571
3572 2007-04-29  Gert Driesen  <drieseng@users.sourceforge.net>
3573
3574         * RichTextBox.cs: In LoadFile, use StreamReader to read plain text.
3575         Fixes bug #81479. Include details of exception when LoadFile fails.
3576
3577 2007-04-28  Alan McGovern <alan.mcgovern@gmail.com>
3578
3579         * DrawListViewSubItemEventArgs.cs: Added missing setter
3580
3581 2007-04-27  Andreia Gaita  <avidigal@novell.com>
3582
3583         * ToolTip.cs: Add missing 2.0 properties. Implement 2.0 Show and 
3584         Hide methods (not complete). Implement missing 2.0 OnPopup event.
3585
3586 2007-04-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3587
3588         * ListView.cs: In ItemControl.OnMouseDown restore a pair of braces I
3589         removed in ly last commit (it was breaking the Label edit feature).
3590
3591         * ThemeWin32Classic.cs: When drawing a ListViewItem use
3592         StringAlignment.Near for LineAlignment (match .Net).
3593
3594 2007-04-27  Andreia Gaita  <avidigal@novell.com>
3595
3596         * TabControl.cs: Change SetTab so it adds the tabpage to the list
3597         of controls if it isn't already there - was blowing up when doing
3598         tabcontrol.TabPages[i]=new TabPage(). 
3599         SetTab now does a replace by removing the page at the index. 
3600         Add a new InsertTab method that inserts a page in a given index 
3601         instead of replacing. 
3602         Implements TabPageCollection.Insert(int, TabPage).
3603
3604 2007-04-27  Chris Toshok  <toshok@ximian.com>
3605
3606         * BindingManagerBase.cs: fill in CurrentItemChanged (and have an
3607         internal handler that can be invoked from our subclasses.)  Also,
3608         add a comment to PushData about how we need to fix it.
3609
3610         * CurrencyManager.cs: tons of changes here.  trying to get things
3611         matching the behavior of .net wrt event orders (ItemChanged,
3612         CurrentChanged, PositionChanged.)  I've implemented a private .net
3613         symbol (ChangeRecordState) that appears in stack traces because
3614         it's actually easier to do this than to effective inline all its
3615         various behaviors at every call site.
3616
3617         * RelatedPropertyManager.cs: guard against an exception here by
3618         not using parent.Current if the position is set to -1 (if the
3619         parent datasource is cleared, for instance).
3620
3621         * Binding.cs: don't parse data in PushData (this might be wrong,
3622         but it jives with MS's behavior.)  Also, don't call PushData when
3623         we get a CurrentChanged event.
3624
3625 2007-04-27  Andreia Gaita  <avidigal@novell.com>
3626
3627         * WebBrowser.cs,
3628           WebBrowserBase.cs,
3629           WebBrowserSiteBase.cs,
3630           HtmlDocument.cs: Added stubbed out classes, no real implementations 
3631           yet.
3632
3633 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
3634
3635         * MainMenu.cs: In draw method without parameters call draw method with 
3636         PaintEvent, another one (just rect) adjust rectangle and we dont need it
3637         as Rect property is already adjusted. Fixes #80694.
3638
3639 2007-04-27  Jonathan Pobst  <monkey@jpobst.com>
3640
3641         * Application.cs: Need to handle keyboard menu deselection here.
3642         * Control.cs: Use WM_SYSKEYUP instead of WM_SYSCOMMAND to start menu keyboard
3643         navigation, allowing keyboard to work on X11.
3644         * ToolStrip.cs: Don't worry about handling the Menu key here anymore.
3645
3646 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
3647
3648         * MenuAPI.cs: When deactivate menu verify if hotkey (_) is active and redraw
3649         menu bar. It fixes some drawing issues in menu bar.
3650
3651 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
3652
3653         * MenuAPI.cs: Remove unneeded "keynav_state = KeyNavState.Idle" before 
3654         Deactivate calls, Deactivate method already do it. Also ser ActiveTracker
3655         when <alt> key is pressed.
3656
3657 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
3658
3659         * XplatUIX11.cs: Simplify SystrayRemove to be like other libraries,     Gtk as 
3660         example just set visible to false and make this prevent from other problems.
3661         In SystrayAdd always remove pending expose. Fixes #81072.
3662
3663 2007-04-26  Marek Safar  <marek.safar@gmail.com>
3664
3665         * TextBoxBase.cs (CaretMoved): Consider scroll maximum when scroll
3666         value is set.
3667
3668 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
3669
3670         * ListView.cs: Added three missing 2.0 events and corresponding
3671         EventHandlers. Added the OwnerDraw property.
3672         * DrawListViewColumnHeaderEventHandler.cs: fixed typo
3673
3674 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
3675
3676         * DrawListViewItemEventArgs.cs
3677         * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
3678
3679 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
3680
3681         * TextControl.cs: Fixed typo in constructor
3682
3683 2007-04-26  Jonathan Pobst  <monkey@jpobst.com>
3684
3685         * Application.cs: Create a shortcut path so that currently selected
3686         MenuStrips can intercept keyboard events without having focus.
3687         * Control.cs: Handle WM_SYSCOMMAND message to activate MenuStrips.
3688         * MenuStrip.cs, ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownItem.cs,
3689         ToolStripItem.cs, ToolStripManager.cs, ToolStripMenuItem.cs: Support
3690         keyboard navigation (arrows, tab, enter, esc) on Windows.  Still need to
3691         generate WM_SYSCOMMAND message in X11 for other platforms.
3692         * ToolStripProfessionalRenderer.cs: ToolStripMenuItems need to be painted
3693         in OnRenderMenuItemBackground instead of OnRenderButtonBackground.
3694         * ToolStripSplitButton.cs: Add DefaultItem property.
3695         
3696 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
3697
3698         * MainMenu.cs: In OnMenuChanged pass PaintEventArgs to Draw method, it
3699         fixes some menu draw problem on Windows with border diferent from default
3700         it also fixes #81403.
3701
3702 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3703
3704         * Form.cs: Refactor WndProc into separate methods, just like Control is
3705           doing it.
3706
3707 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3708
3709         * Control.cs: set_Text: move the call to the driver into a seperate
3710           virtual method so that Form can override it.
3711         * MaskedTextBox.cs: Corcompare fixes.
3712         * Form.cs: Override UpdateWindowText and only update the styles if the
3713           form has been shown (fixes #81405).
3714
3715 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
3716
3717         * Control.cs, Form.cs: Use the better supported WM_?BUTTONDOWN and
3718         WM_ACTIVATE messages instead of WM_MOUSEACTIVATE and
3719         WM_ACTIVATEAPP.  This fixes menus not disappearing on X11 when
3720         the form lost focus or another control was clicked.
3721
3722 2007-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
3723
3724         * DataGrid.cs: Uncomment MakeTransparent calls since bug #80151 is
3725         fixed.
3726
3727 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3728
3729         * DrawListViewColumnHeaderEventHandler.cs, DrawToolTipEventArgs.cs,
3730           DrawListViewItemEventHandler.cs,
3731           DrawListViewSubItemEventHandler.cs, DrawToolTipEventHandler.cs:
3732           Added.
3733         * X11Structs.cs: More ToString implementation.
3734
3735 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
3736
3737         * ToolStripDropDownItem.cs: Don't lazy create a DropDown in Dispose.
3738         * ToolStripOverflowButton.cs: Don't lazy create a DropDown in HasDropDownItems.
3739
3740 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3741
3742         * Control.cs: Only raise OnVisibleChanged if we're not recreating the
3743           handle.
3744         * FormCollection.cs: Don't add a form if it's already in the
3745           collection.
3746         * Form.cs: Change ShowDialog () to call ShowDialog (owner) with a null
3747           according to behaviour and MSDN. The ownerWin32 is the active
3748           window at the moment when we call ShowDialog, not the context's
3749           main form (the context's main form may open another form that opens
3750           a form with ShowDialog, the win32 owner is the second form). Add
3751           and remove forms to the Application.OpenForms in other places to
3752           better match MS behaviour. Add an IsActive property that raises
3753           On(de)Activated only if the active state has changed (we were
3754           raising OnDeactivated before OnActivated while creating forms).
3755         * Application.cs: Refactor Enabling/Disabling of windows for modal
3756           dialog loops out to separate methods, and restore the thread
3757           context when we quit the method. Fixes #81407.
3758
3759 2007-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3760
3761         * ListView.cs: In ItemControl.HandleClicks, also fire 
3762         2.0 MouseClick or MouseDoubleClick events on the parent,
3763         not only the Click/DoubleClick events.
3764
3765 2007-04-24  Andreia Gaita  <avidigal@novell.com>
3766
3767         * TableLayoutSettings.cs: 
3768         - Added a GetControls method and a support structure to help the 
3769         TypeConverter to enumerate the controls for     serialization. 
3770         - Added a new serialization constructor. 
3771         - Added a isSerialized flag initialized to true on the 
3772         serialization constructor so that the TableLayoutPanel.LayoutSettings 
3773         setter does not throw the designed NotSupportedOperation exception
3774         when the object is built through deserialization.
3775         - Implemented GetObjectData
3776         
3777         * TableLayoutPanel.cs: Added check on LayoutSettings.
3778
3779 2007-04-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3780
3781         * ListView.cs: Report Click and DoubleClick events to the parent
3782         from ItemsMouseUp, instead of ItemsMouseDown. This prevents us
3783         from breaking the click count state when using dialog forms (Control
3784         reports the clicks in a similar fashion). In the previous behaviour
3785         the last WM_LBUTTONUP message in a  double click was sent to the
3786         ListView's form, instead of the ListView, which was breaking the click
3787         count for it. Fixes #80387.
3788
3789 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
3790
3791         * BindingNavigator.cs : fixed bugs revealed by new nunit tests
3792
3793 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
3794
3795         * ToolStripDropDownItem.cs: Lazy initialize the DropDown.  This prevents
3796         us from created dropdowns for menu items that do not have subitems.
3797         * ToolStripItem.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs:
3798         Check HasDropDownItems before calling DropDown so a dropdown will not be
3799         created if it isn't needed.
3800
3801 2007-04-24  Jackson Harper  <jackson@ximian.com>
3802
3803         * TreeView.cs: Set the first node to the selected node when we get
3804         focus if there is no selected node.
3805
3806 2007-04-24  Andreia Gaita  <avidigal@novell.com>
3807
3808         * MimeIcon.cs: remove using blocks so that image streams are
3809         not disposed of. Fixes #80151
3810
3811 2007-04-24  Jackson Harper  <jackson@ximian.com>
3812
3813         * TextBoxBase.cs: Fixup the height of textboxes when the control
3814         is created.
3815
3816 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
3817
3818         * ToolStrip.cs: Fully implement GetNextItem.  Call OnParentRightToLeftChanged
3819         for each ToolStripItem when the parent's RightToLeftChanged is called.
3820
3821 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3822
3823         * ComboBox.cs: Forward ContextMenu to the underlying textbox, if any.
3824           Fixes #80163.
3825         * Control.cs: Replace GetContextMenuInternal() with ContextMenuInternal
3826           property, so that the setter can be overriden too.
3827         * TextBox.cs: Change GetContextMenuInternal() to use
3828           ContextMenuInternal.
3829
3830 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3831
3832         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
3833           #81406.
3834
3835 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3836
3837         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
3838           #81406.
3839
3840 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3841
3842         * MaskedTextBox.cs: Commit this so nobody else starts working on it and
3843           avoid duplicate work. Mostily skeleton code, it's not working at
3844           all yet.
3845
3846 2007-04-20  Leszek Ciesielski <skolima@gmail.com>
3847
3848         * NotifyIcon.cs : stub for MouseClick event
3849         * Application.cs: stub for SetUnhandledExceptionMode
3850
3851 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
3852
3853         * BindingNavigator.cs : Initial (partial) implementation
3854
3855 2007-04-23  Jackson Harper  <jackson@ximian.com>
3856
3857         * TreeView.cs: Do not create the treeview's handle when setting
3858         the scroll position.
3859         - ExpandAll needs to compute the scrollbars so it knows which
3860         position to set the bar too.
3861         * TreeNode.cs: 
3862         * TreeNodeCollection.cs: Pass new flag to UpdateScrollBars
3863
3864 2007-04-23  Jackson Harper  <jackson@ximian.com>
3865
3866         * TextBoxBase.cs: Non multiline textboxes shouldn't take the enter
3867         key. Fixes #81408.
3868
3869 2007-04-23  Jonathan Pobst  <monkey@jpobst.com>
3870
3871         * ToolStripItem.cs: Make GetImageSize internal.
3872         * ToolStripMenuItem.cs: Use GetImageSize to determine the size we
3873         need to draw an item.  Fixes a reported issue where images on menus
3874         that were not 16x16 were drawing incorrectly.
3875
3876 2007-04-21  Miguel de Icaza  <miguel@novell.com>
3877
3878         * Padding.cs: Use the converter, fixes the resgen2 issue with
3879         XMLNotePad. 
3880
3881 2007-04-21  Jackson Harper  <jackson@ximian.com>
3882
3883         * TreeView.cs: Dont try to unhighlight the selected node if there
3884         isn't a selected node.
3885
3886 2007-04-21  Jackson Harper  <jackson@ximian.com>
3887
3888         * UpDownBase.cs:
3889         * TextBoxBase.cs:
3890         * ListView.cs:
3891         * ListBox.cs:
3892         * TreeView.cs: Use the InternalBorderStyle property to set the
3893         initial border style, this forces the client rectangle to be sized
3894         correctly.
3895
3896 2007-04-20  Jackson Harper  <jackson@ximian.com>
3897
3898         * TreeView.cs: Simplify scrolling to the last node after expanding
3899         all.
3900         - Fix some off by ones with setting the bottom.
3901
3902 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
3903
3904         * Control.cs: Use DefaultSize for Size, calculate ClientSize from
3905         that.  We were incorrectly doing it the other way around.  Also,
3906         update ClientSize if we change the BorderStyle before the control
3907         is created.
3908
3909 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
3910
3911         * XplatUI.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
3912         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
3913         XplatUIDriver.Caption to CaptionHeight. Spaces to tabs.
3914         * XplatUIDriver.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
3915         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
3916         Caption to CaptionHeight.
3917         * XplatUIX11.cs: Renamed Caption to CaptionHeight.
3918         * Theme.cs: Modified Border3DSize, BorderSize, CaptionButtonSize
3919         and FixedFrameBorderSize to return value from current XplatUI driver.
3920         * XplatUIWin32.cs: Implemented Border3DSize, BorderSize,
3921         CaptionButtonSize, DragFullWindows, DoubleClickSize, DoubleClickTime
3922         and FixedFrameBorderSize using win32 API. Renamed Caption to
3923         CaptionHeight.
3924         * XplatUIOSX.cs: Renamed Caption to CaptionHeight.
3925         * SystemInformation.cs: Fixed typo in BorderSize.
3926
3927 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
3928
3929         * XplatUI.cs: Added MenuAccessKeysUnderlined.
3930         * XplatUIDriver.cs: Added MenuAccessKeysUnderlined.
3931         * XplatUIX11.cs: Implemented MenuAccessKeysUnderlined by always
3932         returning false.
3933         * Theme.cs: Modified MenuAccessKeysUnderlined to return corresponding
3934         value from XplatUI driver.
3935         * XplatUIWin32.cs: Implemented MenuAccessKeysUnderlined using
3936         SystemParametersInfo.
3937         * ThemeWin32Classic.cs: Remove obsolete MenuAccessKeysUnderlined
3938         override.
3939         * XplatUIOSX.cs: Implemented MenuAccessKeysUnderlind by always
3940         returning false.
3941
3942 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3943
3944         * XplatUIX11.cs, Hwnd.cs: Remove warnings.
3945
3946 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3947
3948         * MessageBox.cs, XplatUIX11.cs, Hwnd.cs: Remove warnings.
3949
3950 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
3951
3952         * ToolStripManager.cs: Fix a reported InvalidCastException when unmerging
3953         MenuStrips that contain ToolStripSeparators.
3954
3955 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3956
3957         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Add
3958           DefineStdCursorBitmap.
3959         * Cursor.cs: Add an internal constructor so that the Cursor knows if it
3960           has been created off a standard cursor. This is used to get a
3961           bitmap of the standard cursor when Draw or DrawStretched is called
3962           in order to draw the cursor.
3963         * X11Structs.cs: Added XcursorImage and XcursorImages.
3964         * XplatUIX11.cs, XplatUIWin32.cs: Add and implement
3965           DefineStdCursorBitmap.
3966         * Cursors.cs: Update all relevant creations of Cursor to use the new
3967           internal constructor.
3968
3969 2007-04-19  Jackson Harper  <jackson@ximian.com>
3970
3971         * TextBox.cs: Move the has_been_focused into the base control, so
3972         some of the text adding methods can manipulate it (probably time
3973         for a better name for this flag too).
3974         - Call a new version of selectall that doesn't scroll
3975         * TextBoxBase.cs: When we append text, if the document is empty,
3976         don't scroll.  If the document has text already, we scroll to the
3977         end of the appended text.
3978         - When the text is changed, we reset the has_been_focused, so the
3979         next time the control gets focused, all the text is selected.
3980
3981 2007-04-19  Jackson Harper  <jackson@ximian.com>
3982
3983         * TextControl.cs: Move the margins to the document, add a method
3984         so the margin sizes can be updated.
3985         * TextBoxBase.cs: When the border style is changed, update the
3986         border sizes.
3987
3988 2007-04-19  Jonathan Pobst  <monkey@jpobst.com>
3989
3990         * Control.cs: Respect DefaultPadding.
3991         * GroupBox.cs: Implement DefaultPadding, DisplayRectangle takes
3992         padding into account.
3993         * ToolStrip.cs: Remove setting padding to DefaultPadding in constructor.        
3994
3995 2007-04-19  Jackson Harper  <jackson@ximian.com>
3996
3997         * TextControl.cs: Oops, we need to use the ClientRect not the
3998         bounds here.
3999
4000 2007-04-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4001
4002         * ListView.cs: In ItemControl.ItemsMouseDown, take into
4003         account the double clicks when CheckBoxes are used and
4004         the pointer is inside the checkbox. Fixes part of #81191.
4005
4006 2007-04-18  Jackson Harper  <jackson@ximian.com>
4007
4008         * TextControl.cs: Pressing the end key shouldn't move the caret
4009         past the line ending.
4010         * TextBoxBase.cs: We can still delete if we are in the line
4011         ending and the combine will just kill the existing line ending.
4012
4013 2007-04-18  Jackson Harper  <jackson@ximian.com>
4014
4015         * TextControl.cs: We can't move lines, then invalidate their
4016         bounds, we need to get the old bounds and combine that with the
4017         new bounds.
4018         * TextBoxBase.cs: Before combining two lines for a delete, we need
4019         to invalidate the area of the old line, since that will be moved
4020         in the combine operation.
4021
4022 2007-04-18  Everaldo Canuto  <everaldo@simios.org>
4023
4024         * LinkLabel.cs: In OnPaint invoke draw background to fix problems
4025         with transparent background. Fixes #80482.
4026
4027 2007-04-18  Jonathan Pobst  <monkey@jpobst.com>
4028
4029         * PictureBox.cs: Refresh on resize when SizeMode = Zoom.
4030         * ThemeWin32Classic.cs: Implement PictureBox.SizeMode = Zoom.
4031         [Fixes bug #81391]
4032
4033 2007-04-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4034
4035         * CreateParams.cs: Add a couple of helper methods and do a less string
4036           concatenation in ToString.
4037         * XplatUIX11.cs: Add an TranslateClientRectangleToXClientRectangle
4038           overload that takes a Control parameter, since this method may be
4039           called before a control is assigned to the hwnd (from
4040           CreateWindow), and update CreateWindow to use the new overload. In
4041           GetMenuOrigin subtract the title bar from the y position if the
4042           form has a window manager (since we're painting it and not X).
4043         * XplatUIWin32.cs: If we can get a form in GetMenuOrigin use the form's
4044           CreateParams to calculate the origin (since border sizes may vary).
4045           In ScreenToMenu only subtract the title height if we actually have
4046           a title.
4047         * MdiWindowManager.cs: Override MenuHeight to always return 0, since
4048           mdi children never have menus of themselves.
4049         * InternalWindowManager.cs: Implement menu handling like form does.
4050           Added GetMenuOrigin to calculate the menu origin, can't use the
4051           CreateParams from the form like normally since it's lying.
4052         * Hwnd.cs: Implement GetBorderSize better (in the sense more
4053           windows-like) and add Inflate and comparison operators to the
4054           Borders type. When calculating MenuOrigin and it's a form with a
4055           window manager, use the window manager to calculate it.
4056
4057 2007-04-17  Chris Toshok  <toshok@ximian.com>
4058
4059         * Control.cs (CreateControl): turns out in 2.0 we don't need this
4060         OnBindingContextChanged thing here.  It's only generated from
4061         ContainerControl.OnCreateControl.  Fixes a newly written unit test
4062         - BindingTest.BindingContextChangedTest4.
4063         
4064 2007-04-17  Jackson Harper  <jackson@ximian.com>
4065
4066         * ScrollBar.cs: When setting values, make sure the current
4067         position stays within the new values range.
4068
4069 2007-04-17  Chris Toshok  <toshok@ximian.com>
4070
4071         * Control.cs (CreateControl): talk about a bizarre corner case.
4072         Don't emit OnBindingContextChanged here if we're a parentless
4073         control (i.e. if we're a form.).  Fixes
4074         BindingTest.BindingContextChangedTest2.
4075
4076 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
4077
4078         * ButtonBase.cs: Remove TextFormatFlags.WordBreak to mimic same behavior 
4079         from win32. Fixes #81255.
4080
4081 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
4082
4083         * ThemeWin32Classic.cs: Remove text offset from DrawButtonText as it is
4084         already present in CalculateButtonTextAndImageLayout.
4085
4086 2007-04-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4087
4088         * XplatUIX11.cs: When setting min/max size for a window we need to
4089           translate the coordinates to x coordinates. Create an overload of
4090           SetWindowMinMax that takes a CreateParams handling this, and change
4091           SetWMStyles to call this function (can't use Control.FromHandle in
4092           the SetWindowMinMax to get the control/CreateParams from the handle
4093           because the handle might not have been assigned to the control
4094           yet). Fixes #81371.
4095
4096 2007-04-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4097
4098         * ListView.cs: In ItemControl.ItemMouseDown, don't change check state
4099         if StateImageList is non-null and it has less than two items (match MS
4100         behaviour). Also, in HandleNavKeys handle the Space key, calling
4101         the new ToggleItemsCheckState method, which tries to change the
4102         checked state of the selected items. Fixes part of #81191.
4103
4104 2007-04-16  Jackson Harper  <jackson@ximian.com>
4105
4106         * RichTextBox.cs: namespace cleanup.
4107
4108 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
4109
4110         * XplatUIWin32.cs: Back last parameter to true in SetClipRegion.
4111
4112 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
4113
4114         [Fixes #79447]
4115         * Control.cs: Call invalidate in set_Region.
4116
4117         * XplatUIX11.cs, XplatUIWin32.cs: Remove invalidate from SetClipRegion as
4118         it dont works here.
4119
4120 2007-04-16  Jackson Harper  <jackson@ximian.com>
4121
4122         * TextBoxBase.cs: When enter is pressed, we need to update all
4123         lines below the current.
4124
4125 2007-04-16  Jonathan Pobst  <jpobst@monkey.com>
4126
4127         * MdiClient.cs: Implement implicit menu merging for MDI
4128         children.  When a child form is active, if it has a menustrip
4129         and the parent form has a MainMenuStrip, automatically merge
4130         the menus.
4131
4132 2007-04-15  Andreia Gaita  <avidigal@novell.com>
4133
4134         * TabControl.cs: Refactored sizing methods to not repeat
4135         code all over the place. Tab bounds are now calculated
4136         as if alignment is top and single line, and only when 
4137         setting the bounds are the positions adjusted according
4138         to alignment. Replaced hardcoded positions, spacings and
4139         paddings by getting the values the ThemeEngine. 
4140         Fixes #79619.
4141         
4142         * Theme.cs: Change TabControl properties and methods so
4143         that all start with TabControl*. Added more properties
4144         to help remove hardcoded values on tabcontrol.
4145         Add CPDrawBorder3D declaration so the Theming classes
4146         can access it.
4147         
4148         * ThemeClearlooks.cs, ThemeNice.cs: Method signature changes from Theme.
4149
4150         * ThemeWin32Classic.cs: Rector TabControl out to the TabControlPainter
4151         on the Theming namespace, and call the appropriate methods here.
4152         Change CPDrawBorder3D to public.
4153
4154 2007-04-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4155
4156         * Control.cs: In WmRButtonUp, send the WM_CONTEXTMENU message to
4157         the control after firing the OnMouseUp event, instead of sending
4158         the message before the mentioned event. This is so we can match the
4159         MS behaviour. Fixes part of #80385.
4160
4161 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
4162
4163         * ToolStripItem.cs: Call the RightToLeftChanged event when setting the
4164         RightToLeft property.
4165
4166 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
4167
4168         * ToolStrip.cs: Add properties and internal methods to support merging.
4169         * ToolStripItem.cs: Add MergeAction and MergeIndex.
4170         * ToolStripItemCollection.cs: Add Insert and Remove methods that do
4171         not trigger reparenting or layouts.
4172         * ToolStripManager.cs: Add Merge and RevertMerge methods.
4173         * ToolStripOverflow.cs: Add a convenience method to find the ToolStrip that
4174         is hosting the overflow menu.
4175
4176 2007-04-13  Jackson Harper  <jackson@ximian.com>
4177
4178         * TextControl.cs: Set the line ending correctly for the first
4179         inserted line.
4180
4181 2007-04-13  Sebastien Pouliot  <sebastien@ximian.com>
4182
4183         * Theme.cs: Update GetMethod to get the new definition for 
4184         KnownColors.Update (and fix theme color updates).
4185
4186 2007-04-12  Everaldo Canuto  <everaldo@simios.org>
4187
4188         * MessageBox.cs: Fix some test and button position.
4189
4190 2007-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4191
4192         * Form.cs: Consider the implicit controls in
4193         GetRealChildAtPoint. We need it since this method
4194         is called on Form when handling the some messages in
4195         WndProc, and need to consider those implicit ones too.
4196         Fixes #80385.
4197
4198 2007-04-12  Jonathan Pobst  <monkey@jpobst.com>
4199
4200         * ToolStripMenuItem.cs: Display the ShortcutKeyDisplayString even
4201         if there are no ShortcutKeys set.
4202         * ToolStripProfessionalRenderer.cs: If an item has had its BackColor
4203         set, use it when painting.
4204
4205 2007-04-12  Jackson Harper  <jackson@ximian.com>
4206
4207         * TextControl.cs: Fix some off-by-one issues in line duplication
4208         and insertion in the undo manager. Also, overwrite the first tag
4209         of a line on insert, if it is just a zero lengthed tag. This
4210         prevents us from getting an extra stranded tag at the beginning of
4211         the first line.
4212
4213 2007-04-11  Everaldo Canuto  <everaldo@simios.org>
4214
4215         * Label.cs: Remove check for handle created in CalcAutoSize, we need 
4216         to calculated proper size including when handle was not created yet.
4217
4218 2007-04-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4219
4220         * MdiWindowManager.cs: When moving a form, allow the form to be moved
4221           when the mouse is outside of it's parent's client rectangle. Fixes
4222           #79982 (take 3, part 2).
4223
4224 2007-04-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4225
4226         * X11Structs.cs: Add a few ToString() overrides.
4227         * XplatUIX11.cs: Added GetTopLevelWindowLocation to try to calculate
4228           the window location in a window-manager independent way. Reworked
4229           FrameExtents, it now actually works. Reworked AddConfigureNotify
4230           and ReparentNotify handling to use GetTopLevelWindowLocation
4231           instead of the earlier, more hacky solution. Reworked SetWMStyles,
4232           hopefully for the better: we now set _NET_WM_WINDOW_TYPE* for all
4233           windows, DIALOG for modal windows, UTILITY for toolboxes and NORMAL
4234           for all other windows (fixes #81281 part 1), a toolwindow is hidden
4235           from the taskbar if it has a parent (fixes #81281 part 2 for kwin),
4236           and generally refactored to do as few calculations as possible
4237           inside the lock.
4238
4239 2007-04-09  Sebastien Pouliot  <sebastien@ximian.com>
4240
4241         * Theme.cs: Change "reflective-contract" between MWF and SD to 
4242         minimize # of calls, avoid Color serialization and avoid updating 
4243         every "known colors" each time a single one is updated.
4244
4245 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
4246
4247         * DataGridTextBoxColumn.cs: Only set IsInEditOrNavigateMode to false
4248         when not readonly and the text is explicitly set. Code style updates.
4249         * DataGridTableStyle.cs: Removed extra line.
4250         * DataGrid.cs: Code style updates. Removed extra whitespace.
4251         * DataGridColumnStyle.cs: Code style updates. Removed extra 
4252         whitespace.
4253
4254 2007-04-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4255
4256         * XplatUIX11.cs: Added comment that "fixes" #80021.
4257
4258 2007-04-09  Jackson Harper  <jackson@ximian.com>
4259
4260         * TextControl.cs: We don't need this -1 on the line count anymore.
4261
4262 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
4263
4264         * DataGridTextBoxColumn.cs: In Commit, use TypeConverter to convert
4265         entered value to underlying type, and convert it back to a string to
4266         apply formatting. Modified GetFormattedValue to use TypeConverter
4267         if available.
4268
4269 2007-04-08  Gert Driesen  <drieseng@users.sourceforge.net>
4270
4271         * ListViewItem.cs: Added null checks. Avoid duplicating code in ctors.
4272         Use SubItems property when we want to ensure there's at least one
4273         subitem. Modified SubItems property to ensure there's always at least
4274         one subitem. Avoid using ListViewSubItemCollection.AddRange to match
4275         the NRE's reported by MS.
4276
4277 2007-04-07  Gert Driesen  <drieseng@users.sourceforge.net>
4278
4279         * ProgressBar.cs: On 2.0 profile, default forecolor is Highlight. Added
4280         ResetForeColor override on 2.0. Fixed a few API compatibility issues.
4281         Spaces to tabs. Removed extra tabs.
4282
4283 2007-04-06  Jonathan Pobst  <monkey@jpobst.com>
4284
4285         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
4286         infinite loop.  (Forgot to copy to the horizontal toolstrip case.)
4287
4288 2007-04-06  Jackson Harper  <jackson@ximian.com>
4289
4290         * TextBoxBase.cs: When a delete removes a line, recalculate all
4291         lines below that line (they need to get offsets setup correctly)
4292         and invalidate.
4293
4294 2007-04-05  Jackson Harper  <jackson@ximian.com>
4295
4296         * TextControl.cs: We need to invalidate across the width of the
4297         document when we are invalidating multiple lines.
4298         * TextBoxBase.cs: Don't delete into the line ending.
4299
4300 2007-04-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4301
4302         * ListView.cs: Restore the check for the MouseHover event
4303         in ListView. It looks like the ListView fires more than one MouseHover
4304         event when HoverSelection is true  _only_ in weird-corner scenarios, but
4305         in most of the cases it only fires one. Also, add the 2.0 ItemMouseHover
4306         event.
4307
4308 2007-04-05  Mike Kestner  <mkestner@novell.com>
4309
4310         * ListView.cs : raise MouseDown before updating selection.
4311         [Fixes #80373 tab 1&3]
4312
4313 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
4314
4315         * ToolStripRenderer.cs: Add static method to mirror image.
4316         * ToolStripProfessionalRenderer.cs: Support ImageTransparentColor
4317         and RightToLeftAutoMirrorImage.
4318         * ToolStripItem.cs: Remove MonoTODO from ImageTransparentColor.
4319
4320 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
4321
4322         * ToolStripSplitStackLayout.cs: Support Alignment property.
4323         * ToolStripItem.cs: Remove MonoTODO from the Alignment property.
4324
4325 2007-04-05  Jackson Harper  <jackson@ximian.com>
4326
4327         * TextControl.cs: Move around the line endings when crossing line
4328         boundaries.
4329         - When combining lines, strip the ending text off the first line.
4330
4331 2007-04-05  Jackson Harper  <jackson@ximian.com>
4332
4333         * TextControl.cs:
4334         * TextBoxBase.cs: Try to never move the cursor into the line
4335         ending.
4336         
4337 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
4338
4339         * ToolStripItem.cs: Make sure we aren't firing mouse events when
4340         the item is disabled.  Also add a few missing methods.
4341
4342 2007-04-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4343
4344         * ListView.cs: We don't need the MouseEnter/MouseLeave check
4345         to fire just one MouseHover event when HoverSelection is true, since
4346         .Net does fire more than one MouseHover event in that scenario. Also,
4347         fix the selection in HoverSelection, by invoking UpdateMultiSelect
4348         if MultiSelect is true, instead of only setting ListViewItem.Selected.
4349         Finally, we need to reset the Hover logic in MouseMove, even when we
4350         don't have a selected item.
4351
4352 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
4353
4354         * ToolStrip.cs: Add several missing methods, properties, and events.
4355
4356 2007-04-04  Chris Toshok  <toshok@ximian.com>
4357
4358         * DataGridTextBoxColumn.cs: set the bounds of the text box to
4359         (0,0,0,0) in Commit, as MS does.
4360
4361         * DataGrid.cs: call EndEdit() from Select() as microsoft does, and
4362         make sure we set CurrentRow on a row header click *before* calling
4363         Select.  This moves the current cell (and the textbox) to the new
4364         row.  The call to Select then hides the textbox, giving us the
4365         correct behavior.  Fixes #80362.
4366
4367         * CurrencyManager.cs (UpdateIsBinding): raise ItemChanged (-1).
4368         (ListChangedHandler): reorder the position/current changed events,
4369         and call UpdateIsBinding in the ItemAdded case.
4370
4371         * GridColumnStylesCollection.cs: add some columns events, one of
4372         which raises the CollectionChanged event.
4373
4374 2007-04-04  Jackson Harper  <jackson@ximian.com>
4375
4376         * TextControl.cs: When we delete multiple selection lines
4377         invalidate the selection area, don't need to do that for single
4378         lines because the final update view will handle it.
4379
4380 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
4381
4382         * Control.cs: When we CreateControl, we need to also create all of the
4383         control's children.  The child's OnLoad must also fire before the parent's
4384         OnLoad.  Fixes the toolbox size in PDN.
4385
4386 2007-04-04  Jackson Harper  <jackson@ximian.com>
4387
4388         * TextBoxBase.cs: When the user presses enter, insert a line
4389         ending into the text. (Maybe this would be a good spot for
4390         Environment.NewLine).
4391         * TextControl.cs: Remove undo manager hack, line endings get
4392         inserted properly now.
4393         
4394 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
4395
4396         * MenuAPI.cs: 
4397         - Remove unneeded parameters in UpdateCursor.
4398         - Fix UpdateCursor to check if menu is active.
4399         - Call UpdateCursor when menu deactivate my click.
4400         [Fixes remaining issues from #80410]
4401
4402 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
4403
4404         * Control.cs: GetRealChildAtPoint method added, it make an
4405         recursive child control search for the point. 
4406
4407         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
4408         menu.
4409
4410         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
4411
4412 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
4413
4414         * Form.cs: Fix mouse position when send back mouse event after closes
4415         menu.
4416
4417 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
4418
4419         * Form.cs: Simplify the BUTTONDOWN for active tracker.
4420
4421 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
4422
4423         * Control.cs: Fix an issue where if a user resized a control inside
4424         a sizing method like OnResize, we would overwrite their explicit
4425         value.  Also, only call DefaultSize once in the constructor instead
4426         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
4427         nothing actually changed.
4428
4429 2007-04-03  Jackson Harper  <jackson@ximian.com>
4430
4431         * TextControl.cs: Don't attempt to copy text for lines with no
4432         text in them (technically this shouldn't happen, but we aren't
4433         always inserting line endings when we should be).
4434
4435 2007-04-03  Jackson Harper  <jackson@ximian.com>
4436
4437         * TextBoxBase.cs: Calculate the scrollbars before calculating the
4438         document, because this sets some of the document size properties
4439         that are needed.
4440
4441 2007-04-03  Jackson Harper  <jackson@ximian.com>
4442
4443         * TextBoxBase.cs: We need to calculate maximums even if this is
4444         not a multiline control, because the maxs are used for scrolling.
4445         - Display the caret after doing a page up/down, we need to
4446         manually display it because a proper CaretMoved event isn't
4447         triggered (this is because of the way the math is done to
4448         determine how far to scroll).
4449
4450 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
4451
4452         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
4453         (ToolBar was relying on SetBoundsCore to default the values sent 
4454         base off of BoundsSpecified.)
4455
4456 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4457
4458         * DateTimePicker.cs: Change Text so that when a null value or empty
4459           string is assigned to the test we always raise ValueChanged and
4460           TextChanged (earlier implementation would only raise ValueChanged
4461           if the current date value was different from DateTime.Now).
4462
4463 2007-04-03  Andreia Gaita <avidigal@novell.com> 
4464
4465         * ButtonBase: Call update after invalidation, fixes #80194
4466
4467 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4468
4469         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
4470           #79335.
4471
4472 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4473
4474         * XplatUIX11.cs: SetWMStyles: If the control is a form with
4475           FormBorderStyle = None, don't give the window any decorations.
4476           Fixes #81276.
4477
4478 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4479
4480         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
4481         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
4482           to check for is a mix of several styles (such as WS_CAPTION for
4483           instance).
4484         * Control.cs: Don't paint an area bigger than the client area when
4485           painting the background colour. Add an internal GetCreateParams.
4486           Update calls to XplatUI.CalculateWindowRect due to API change.
4487         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
4488           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
4489           the size if it hasn't been handled by any windows. When creating
4490           and moving windows, X wants the location of the entire window, but
4491           the size of the client window, so add
4492           TranslateClientRectangleToXClientRectangle,
4493           TranslateWindowSizeToXWindowSIze and
4494           TranslatedXWindowSizeToWindowSize to cope with this, and call them
4495           before every window creation and move. Update CalculateWIndowRect
4496           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
4497           In AddConfigureNotify don't do anything if the hwnd is a zombie
4498           (fixes the BadWindow we were getting while running the tests),
4499           always calculate the offsets when it's a parentless window, not
4500           only when reparented, and translate the window size, since we're
4501           getting the client size of the whole window, excluding entire
4502           window.
4503         * Theme.cs: Added BorderSizableSize.
4504         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
4505           anymore. Update calls to XplatUI.CalculateWindowRect due to API
4506           chang
4507         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
4508           change. Fake the window styles here instead of in XplatUIWin32 so
4509           that all back-ends get the same window styles (and it's Form that's
4510           deciding when to use wm, not the Win32 backend anyways)
4511         * Hwnd.cs: Completely reworked GetWindowRectangle and
4512           GetClientRectangle - they are now passed a CreateParams and they
4513           only use Style and ExStyle to determine the rectangles (they should
4514           now work just like Win32AdjustWindowRectEx - though quite a few
4515           special cases are probably missing). They should also be 100%
4516           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
4517           == rect), and all numbers (borders, menu sizes) are taken from the
4518           current theme. Added a GetBorders helper function that will return
4519           the borders for any given CreateParams (including captions and
4520           menus), and GetBorderSize that returns the given border size only.
4521         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
4522           Hwnd.GetClientRectangle.
4523
4524 2007-04-02  Chris Toshok  <toshok@ximian.com>
4525
4526         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
4527         logic between the values we present to the user and the values
4528         which are stored in the column's property.  Also, don't call
4529         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
4530
4531 2007-04-02  Jackson Harper  <jackson@ximian.com>
4532
4533         * TextBoxBase.cs: Scroll faster!
4534
4535 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
4536
4537         * StatusStrip.cs: Layout fixes for PDN.
4538         * ToolStrip.cs: Set item's available to true, and placement to main when
4539         added.
4540         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
4541         changing in setter before doing any work, add InternalVisible.
4542         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
4543         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
4544         infinite loop.
4545
4546 2007-04-02  Jackson Harper  <jackson@ximian.com>
4547
4548         * TextBox.cs: LBUTTON does not make the textbox select all of it's
4549         text on focus.
4550
4551 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4552
4553         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
4554           Makes ToolStripComboBoxes show up again.
4555
4556 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4557
4558         * ListView.cs: Add a hover_pending field in ListView
4559         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
4560         cycle (we are resetting the MouseHover logic in XplatUI
4561         to handle HoverSelection). Fixes #80429.
4562
4563 2007-04-02  Jackson Harper  <jackson@ximian.com>
4564
4565         * TextControl.cs: Make sure the attributes get set on the last
4566         tag.
4567         - Still have to do the end tag if we have stepped all the ways to
4568         the end.
4569
4570 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4571
4572         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
4573         on an internal libgdiplus call when the information is already 
4574         available via the public API.
4575
4576 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4577
4578         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
4579           control is removed from a control collecftion.
4580         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
4581           Fixes FormPropertyTest (failed on rare occasions).
4582         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
4583           of Win32SetParent (when changing from no parent to a parent it
4584           might add the new parent's location in screen coordinates to this
4585           window's location).
4586         * Form.cs: Rework ChangingParent once again, now the handle is
4587           recreated whenever a FormWindowManager is added or removed (that is
4588           whenever a normal form is parented or abandoned). Also change
4589           CreateParams so that all non-toplevel windows always get the
4590           specified sice (StartupPosition is never considered for
4591           non-TopLevel forms).
4592         * ContainerControl.cs: Add ChildControlRemoved, the container control
4593           needs to be notified when a control is removed from it's
4594           collection, in the case the removed control is the active control.
4595
4596 2007-04-02  Jackson Harper  <jackson@ximian.com>
4597
4598         * RichTextBox.cs: Use the new methods for setting the font and
4599         color, these methods set the specified attribute without
4600         overriding the other attributes.
4601
4602 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
4603
4604         * ToolStripPanel.cs: Fixes for better layouts in PDN.
4605
4606 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
4607
4608         * TextBox.cs: Added internal ChangeBackColor method to special-case
4609         Color.Empty. Added check for invalid ScrollBars value.
4610         * TextBoxBase.cs: Added internal ChangeBackColor method.
4611         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
4612         internal ChangeBackColor method to special-case Color.Empty. Added
4613         check for invalid ScrollBars value.
4614
4615 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
4616
4617         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
4618
4619 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
4620
4621         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
4622         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
4623         [Based on submitted patch from Olivier Duff.]
4624
4625 2007-03-30  Jackson Harper  <jackson@ximian.com>
4626
4627         * TextBox.cs: Only select all on initial focus if the user has not
4628         specified a selection area.
4629
4630 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
4631
4632         * UserControl.cs: Override CreateParams.
4633
4634 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4635
4636         [ Fixes #80995 ]
4637
4638         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
4639         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
4640           check for is a mix of several styles (such as WS_CAPTION for instance).
4641         * Control.cs: Don't paint an area bigger than the client area when painting
4642           the background colour. Add an internal GetCreateParams. Update calls to
4643           XplatUI.CalculateWindowRect due to API change.
4644         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
4645           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
4646           hasn't been handled by any windows. When creating and moving windows, X
4647           wants the location of the entire window, but the size of the client
4648           window, so add TranslateClientRectangleToXClientRectangle,
4649           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
4650           to cope with this, and call them before every window creation and move.
4651           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
4652           removing DeriveStyles). In AddConfigureNotify don't do anything if the
4653           hwnd is a zombie (fixes the BadWindow we were getting while running the
4654           tests), always calculate the offsets when it's a parentless window, not
4655           only when reparented, and translate the window size, since we're getting
4656           the client size of the whole window, excluding entire window.
4657         * Theme.cs: Added BorderSizableSize.
4658         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
4659           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
4660         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
4661           Fake the window styles here instead of in XplatUIWin32 so that all
4662           back-ends get the same window styles (and it's Form that's deciding when
4663           to use wm, not the Win32 backend anyways)
4664         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
4665           they are now passed a CreateParams and they only use Style and ExStyle
4666           to determine the rectangles (they should now work just like
4667           Win32AdjustWindowRectEx - though quite a few special cases are probably
4668           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
4669           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
4670           sizes) are taken from the current theme. Added a GetBorders helper
4671           function that will return the borders for any given CreateParams
4672           (including captions and menus), and GetBorderSize that returns the given
4673           border size only.
4674         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
4675           Hwnd.GetClientRectangle.
4676
4677 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4678
4679         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
4680           layout of the mdi children is handled by CreateParams. Fixes
4681           #79964,
4682
4683 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4684
4685         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
4686         processed.
4687
4688         * Form.cs: When active tracker mouse down is not processed, send event 
4689         back to control inside mouse position. [Fixes #81227]
4690
4691 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
4692
4693         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
4694         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
4695         stealing focus from the active form on Windows.  (Control will be made
4696         visible in ShowWindow.)
4697
4698 2007-03-29  Mike Kestner  <mkestner@novell.com>
4699
4700         * ImageList.cs : add internal Changed event.
4701         * ListView.cs : hook up to StateImageList.Changed to perform
4702         invalidations when the the state icon list changes. [Fixes #81191]
4703
4704 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
4705
4706         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
4707         to prevent tooltips from stealing focus from the active form on Windows.
4708
4709 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4710
4711         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
4712
4713         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
4714
4715 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4716
4717         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
4718         balloons.
4719
4720 2007-03-29  Jackson Harper  <jackson@ximian.com>
4721
4722         * TextControl.cs: When deleting text from non multiline textboxes,
4723         we need to update the entire document, because line offsets will
4724         be shifting.
4725
4726 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4727
4728         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
4729         added to theme, now we can create themes that uses diferent notify engines
4730         like notification-daemon from galago project or growl for Mac OS.
4731
4732 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
4733
4734         * NotifyIcon.cs: Prevent Balloon to show in task bar.
4735
4736 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
4737
4738         * XplatUIX11.cs: Prevent system to open more than one balloon.
4739
4740         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
4741         some compiler warning messages.
4742
4743 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
4744
4745         [Fixes #79149]
4746
4747         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
4748
4749         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
4750         implemented, this methods is used by NotifyIcon.BalloonWindow class.
4751
4752         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
4753         systems.
4754
4755 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4756
4757         * ListViewItem.cs: Forgot to make Invalidate internal.
4758
4759 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4760
4761         * ListView.cs: Add a InvalidateSelection method to
4762         invalidate methods which are currently selected, and call
4763         it when setting FullRowSelect and HideSelection, instead of
4764         calling Redraw.
4765
4766 2007-03-28  Chris Toshok  <toshok@ximian.com>
4767
4768         * XplatUIX11.cs (UnmapWindow): reindent this block.
4769
4770         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
4771         the selection_start if we're moving the selection (that is, not
4772         extending it). Fixes bug #80461.
4773
4774 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4775
4776         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
4777         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
4778         create private ControlCollection.
4779
4780 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4781
4782         * Control.cs: We need to call OnVisibleChanged for our implicit
4783         children as well as our normal children.  Fixes scrollbars in
4784         comboboxes not showing up.
4785
4786 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4787
4788         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
4789         the check for IsHandleCreated first.  The check in CreateHandle is not
4790         good enough because CreateHandle can be overriden, and the override 
4791         should not be called if the handle is already created.
4792
4793 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4794
4795         * ToolStrip.cs: Remove MonoTODO for tooltips.
4796         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
4797         * ToolStripContainer.cs: Add custom ControlCollection class.
4798         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
4799         * ToolStripDropDown.cs: Add some missing properties/methods.
4800         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
4801         * ToolStripItem.cs: Remove MonoTODO for tooltips.
4802         * ToolStripManager.cs: Add IsShortcutDefined.
4803         * ToolStripOverflow.cs: Override LayoutEngine.
4804         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
4805         * ToolStripSeparator.cs: Add ImageKey.
4806
4807 2007-03-28  Jackson Harper  <jackson@ximian.com>
4808
4809         * TextControl.cs: If a char delete removes a line ending, we need
4810         to update the ending style.
4811         - Make sure the line ending calcs get called.
4812
4813 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4814
4815         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
4816           it was making the new code not work. Fixed a typo in the new code
4817           as well. Fixes #79826.
4818
4819 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4820
4821         * XplatUIWin32.cs:
4822         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
4823         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
4824         - SystrayBalloon method implemented.
4825         [Add support for notifyicon balloon on win32, #79149]
4826
4827 2007-03-27  Mike Kestner  <mkestner@novell.com>
4828
4829         * ThemeWin32Classic.cs : update StateImageList selection to mirror
4830         the ms behavior when only one image is added to the list.
4831         [Fixes #81191]
4832
4833 2007-03-27  Jackson Harper  <jackson@ximian.com>
4834
4835         * TextControl.cs: Improvements to non multiline line ending
4836         drawing/measuing.
4837
4838 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4839
4840         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
4841
4842 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4843
4844         * NotifyIcon.cs: 
4845         - Balloon message handling added.
4846         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
4847
4848         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
4849         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
4850         to SystrayBalloon to me like other Systray method, also a
4851         handle parameter added.
4852
4853 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4854
4855         * ListView.cs: Show scrollbars even when items.Count == 0
4856         but the columns Width is bigger than the ListView.Width.
4857         Also, when columns.Count == 0 set layout_wd and layout_ht
4858         to the ClientRectangle values, so we don't show any scrollbar
4859         in that case.
4860
4861 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4862
4863         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
4864
4865 2007-03-27  Jackson Harper  <jackson@ximian.com>
4866
4867         * RichTextBox.cs: The RTF library decodes the text properly for us
4868         now.
4869
4870 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4871
4872         * ListView.cs: Display HeaderControl even when columns.Count == 0.
4873         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
4874         ListView header (HeaderControl), instead of Control.BackColor.
4875
4876 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
4877
4878         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
4879         Fixes tab control issues where controls would not show up because they
4880         never received their OnVisibleChanged call.
4881
4882 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4883
4884         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
4885         BalloonTipShown).
4886
4887 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
4888
4889         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
4890         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
4891         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
4892         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
4893         the handle.  Fix WindowState by using the internal variable until we are 
4894         sure that we've been shown.
4895         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
4896         max or min.
4897         [Fixes bug #81198]
4898
4899 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4900
4901         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
4902           (at least borders). Fixes #79386 on Linux (with a small difference
4903           in behaviour: when trying to resize a caption-less window metacity
4904           shows the sysmenu. Resizing is still possible though).
4905         * XplatUIWin32.cs: When setting window styles send request an extra
4906           WM_NCCALCSIZE when it's a form without title (due to no text and no
4907           caption), since Win32 seems to calculate it wrong the first time we
4908           get the message, though the second time things work as they should.
4909         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
4910           newly reparented window might show up unparented. Update
4911           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
4912           there's no title text. Fixes #79386.
4913
4914 2007-03-27  Mike Kestner  <mkestner@novell.com>
4915
4916         * ListBox.cs : don't perform invalidations if the handle hasn't been
4917         created.  [Fixes #80753]
4918
4919 2007-03-27  Mike Kestner  <mkestner@novell.com>
4920
4921         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
4922         [Fixes #80428]
4923
4924 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
4925
4926         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
4927         needed to implement Balloon.
4928
4929 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4930
4931         * ListViewItem.cs: In the constructors that take
4932         an array of strings, don't use ListViewSubItemCollection.AddRange
4933         method to add items, since we need to have a different behaviour (in
4934         the constructors we add an item for each null string, opposed to
4935         the behaviour of AddRange, which adds nothing).
4936
4937 2007-03-26  Andreia Gaita  <avidigal@novell.com>
4938
4939         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
4940
4941 2007-03-26  Jackson Harper  <jackson@ximian.com>
4942
4943         * TextControl.cs: Draw and measure line endings when in non
4944         multiline mode.
4945         - When searching the text, count the end of the last line as a
4946         word boundary.
4947
4948 2007-03-26  Jackson Harper  <jackson@ximian.com>
4949
4950         * RichTextBox.cs: The selection_start and selection_end don't
4951         really track the correct tags for the selection. So we'll manually
4952         compute the correct tag here.
4953
4954 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4955
4956         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
4957           and Continuous styles. Fixes #79469.
4958
4959 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
4960
4961         * ToolStrip.cs: Implement Tooltips.
4962         * ToolStripItem.cs: Create internal method for determining tooltip.
4963
4964 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
4965
4966         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
4967
4968 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
4969
4970         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
4971         it prevents a problem thak keeps icon visible after application 
4972         closes on win32.
4973
4974 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
4975
4976         * NotifyIcon.cs: Balloon properties and methods created.
4977
4978         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
4979         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
4980
4981 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
4982
4983         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
4984
4985 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
4986
4987         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
4988         parameter indicates which aspects were explicit/user-set.
4989         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
4990
4991 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
4992
4993         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
4994         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
4995         SmallChange, and Value (2.0).
4996         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
4997
4998 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4999
5000         * ListView.cs: Always set item_control.Width in LayoutDetails
5001         if View is Details. Setting it later in CalculateScrollBars
5002         in a not-so-corner scenario (the sum of columns width is
5003         not bigger than the ListView width when handle is created, and then
5004         that sum gets bigger by increasing the width of the columns)
5005         causes a very weird recursion path (which shouldn't be happening,
5006         since header_control sets it in CalculateScrollBars too). This bug
5007         appeared after Chris' fixes for handle created issues, so probably
5008         it's related to some handle-creation time.
5009
5010 2007-03-23  Chris Toshok  <toshok@ximian.com>
5011
5012         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
5013         case where there's an add row, just so we don't end up in a case
5014         where it's not displayed (this happens when the row is partially
5015         obscured).  Fixes bug #79574.
5016
5017 2007-03-23  Jackson Harper  <jackson@ximian.com>
5018
5019         * TextControl.cs:
5020         * TextBoxBase.cs:
5021         * RichTextBox.cs: Preserve line endings in the lines text buffer,
5022         also added an enum that represents the line ending type. 
5023
5024 2007-03-23  Andreia Gaita  <avidigal@novell.com>
5025
5026         * NumericUpDown.cs: Fix logic so Text and Value properties are not
5027         messed with in every method call, but only from DownButton, 
5028         UpButton, UpdateEditText() and ValidateText. Fixes #80346
5029
5030 2007-03-23  Chris Toshok  <toshok@ximian.com>
5031
5032         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
5033         format objects if the format spec is "".  Fixes bug #80889.
5034
5035 2007-03-22  Miguel de Icaza  <miguel@novell.com>
5036
5037         * ToolStripPanel.cs (Join): added stubs to build PDN3
5038
5039         * Control.cs (AutoScrollOffset): Add.
5040
5041         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
5042         property, its only implemented for Win32, on X11 it defaults to
5043         some hardcoded value.
5044
5045         * ToolStripItem.cs (AllowDrop): Add property
5046
5047 2007-03-22  Mike Kestner  <mkestner@novell.com>
5048
5049         * ListView.cs : in FullRowSelect Details mode, only enable box
5050         selection if the user clicks over the "item" column outside of the
5051         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
5052
5053 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5054
5055         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
5056           handle is not created yet.
5057         * Form.cs: Select: Don't call CreateHandle if the handle is already
5058           created, avoids a stack overflow on Windows when we are recreating
5059           controls.
5060         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
5061           they are made visible, and override AfterTopMostControl to keep
5062           them on top when other controls are brought to front.
5063           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
5064           or force_*scroll_visible is true (old implementation always shows
5065           scrollbars when needed, no matter what auto_scroll was set to).
5066         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
5067           IsHandleCreated check.
5068
5069 2007-03-22  Andreia Gaita  <avidigal@novell.com>
5070
5071         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
5072         row or col separator.
5073         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
5074
5075 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
5076
5077         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
5078
5079 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
5080
5081         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
5082         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
5083         every time. Fixes #80410.
5084
5085 2007-03-22  Chris Toshok  <toshok@ximian.com>
5086
5087         * BindingSource.cs (AddNew): partially implement.
5088
5089         remove a couple of NotImplementedException's
5090         to get bug #81148 closed.
5091
5092 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
5093
5094         [Fixes #80380]
5095         
5096         * Control.cs:
5097         - UpdateCursor method added to update the screen cursor.
5098         - GetAvailableCursor method added to return cursor for enabled tree,
5099         it searches for cursor on control and it's parent's for enabled control.
5100         - Call UpdateCursor method on setter of Cursor property.
5101         - On setter of Enabled call UpdateCursor when it is false, we need to
5102         change cursor to normal (or to this parent cursor) because cursor 
5103         setting theres no effect to disabled controls.
5104         - Some minor source changes to follow the coding style guidelines.
5105
5106         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
5107         controls.
5108
5109 2007-03-22  Chris Toshok  <toshok@ximian.com>
5110
5111         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
5112         generates.
5113
5114 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5115
5116         * XplatUIX11.cs: Implement default locations for forms.
5117         * Form.cs: Completely rework startup location for forms. Fixes #79964.
5118         * Hwnd.cs: Add previous_child_startup_location (to track the current
5119           startup location for any child forms of the current form) and
5120           previous_main_startup_location (to track the startup location for
5121           the current toplevel form).
5122
5123 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
5124
5125         * Control.cs: Don't trigger a layout if an implicit control is added
5126         that isn't visible.  Also, don't notify the owner when an implicit control
5127         is added.  (Owners shouldn't even know about their implicit controls.)
5128
5129 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
5130
5131         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
5132         to save some re-layouts.
5133
5134 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
5135
5136         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
5137         [Fixes #81203]
5138
5139 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
5140
5141         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
5142         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
5143
5144 2007-03-21  Mike Kestner  <mkestner@novell.com>
5145
5146         * ListView.cs : disable selection update for non-left button clicks
5147         with mods and over selected items.  [Fixes #80524]
5148
5149 2007-03-20  Jackson Harper  <jackson@ximian.com>
5150
5151         * TextControl.cs:
5152         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
5153         \r\r\n, \n.
5154
5155 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5156
5157         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
5158           very probably a more complicated calculation there. Update the
5159           textbox' ForeColor and BackColor when the ComboBox' colors are
5160           changed. Change the border change in LayoutComboBox to only affect
5161           the textbox, not all the calculations there. Seems to fix most of
5162           #79436.
5163
5164 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5165
5166         * ComboBox.cs: Handle Home and End keys as well as all combinations of
5167           modifiers + navigation keys as input keys, enables advanced text
5168           selection in the combobox (like Shift+Left Arrow for instance).
5169           ComboTextBox now overrides Focused and returns whatever
5170           ComboBox.Focused returns, since it really should be focused
5171           whenever the ComboBox is. Fixes #80795. Also make the border around
5172           the text box one pixel bigger, as mentioned in #79436.
5173
5174 2007-03-20  Jackson Harper  <jackson@ximian.com>
5175
5176         * TreeView.cs: Don't offset the images, this was causing some
5177         artifacts when expanding/collapsing with images that were the
5178         exact height of the treenode.
5179
5180 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5181
5182         * TrackBar.cs: Query the theme for the correct value when the mouse
5183           moves and the thumb is pressed. 
5184         * Theme.cs: Added TrackBarValueFromMousePosition
5185         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
5186           implementation was updating the trackbar value when drawing, now
5187           the drawing methods only draw. Fixes #80900. Refactored the
5188           calculations out to TrackBarValueFromMousePosition and
5189           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
5190           according to the mouse position whenever it wants to. Changed the
5191           light coloured pen when drawing the thumb from ControlLight to
5192           ControlLightLight, because the ControlLight is the same colour as
5193           the background so the 3D effect is lost. 
5194
5195 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5196
5197         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
5198         defined. Fixes #80784.
5199
5200 2007-03-20  Marek Habersack  <mhabersack@novell.com>
5201
5202         * ContextMenuStrip.cs: align with the change introduced in
5203         revision 74664.
5204
5205 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5206
5207         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
5208         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
5209         in SetTopmost.
5210
5211 2007-03-19  Chris Toshok  <toshok@ximian.com>
5212
5213         * Control.cs (WmPaint): don't make use of the Handle property
5214         after an event is emitted, as the user could have closed the
5215         form/destroyed the control.  Store the Handle in a local variable
5216         and make use of that.  Fixes bug #80768.
5217
5218 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5219
5220         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
5221         behavior in X11 environments.
5222
5223 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5224
5225         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
5226         because on setter of topmost we dont call SetTopmost when handle is not
5227         created.
5228
5229 2007-03-20  Jackson Harper  <jackson@ximian.com>
5230
5231         * TextControl.cs: Need to use SelectionLength () not
5232         selection_length, since that var is reset to -1.
5233         - Draw the caret when we don't have focus.
5234         * TextBox.cs: The selectall actually doesn't occur until the first
5235         focus.
5236         * TextBoxBase.cs: Need to update the caret position after a
5237         selectall.
5238         
5239 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5240
5241         * ListView.cs: Enable scrolling when using Tile view.
5242
5243 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
5244
5245         [Fixes #80902]
5246
5247         * XplatUIDriver.cs: Abstract SetOwner method created.
5248
5249         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
5250         must be implemented and was masked as todo.
5251
5252         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
5253         GWL_HWNDPARENT.
5254
5255         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
5256         cheking for null owner to remove transient. The SetTopmost will be change
5257         on a decond step.
5258
5259         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
5260         SetTopmost. Now owned forms will work properly in win32 and X11.
5261
5262 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5263
5264         * MdiWindowManager.cs: Update function name.
5265         * Form.cs: After closing a form MdiParent is always null.
5266         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
5267           better what it should do: necessary book-keeping when the form is
5268           closed, it should not close the form itself.
5269
5270 2007-03-19  Andreia Gaita  <avidigal@novell.com>
5271
5272         * ListViewItem.cs: Fix back and fore color. The subitems only
5273         use their own colors if they are set, otherwise use the listview's
5274         colors. Don't set default colors on constructor for subitem.
5275         Fixes #79315.
5276
5277 2007-03-19  Mike Kestner  <mkestner@novell.com>
5278
5279         * ListView.cs : make box selection for Details views with 
5280         FullRowSelect conform to MS behavior when clicking in the "item" 
5281         column and clicking outside the defined columns.
5282         [Fixes case 5-6 of #80374]
5283
5284 2007-03-19  Chris Toshok  <toshok@ximian.com>
5285
5286         * ScrollableControl.cs: create the controls from within the ctor,
5287         but don't actually add them until our handle is created.  this
5288         fixes a NRE possibility jpobst found (if you override OnLayout in
5289         a subclass, it's called before your ctor).  Also, add a
5290         IsHandleCreated guard to UpdateSizeGripVisibility as well.
5291
5292 2007-03-19  Jackson Harper  <jackson@ximian.com>
5293
5294         * TextBox.cs: Reduce the amount of invalidation we do.
5295         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
5296         some of them are true by default on MS.
5297         - Add some functions to reduce the amount of invalidates we do.
5298         * TextControl.cs: Less invalidation.
5299
5300 2007-03-19  Chris Toshok  <toshok@ximian.com>
5301
5302         [ Fixes #81773, and *seems* to fix #81553 as well ]
5303
5304         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
5305         AccumulateDestroyedHandles.  We need to do it *after* we send
5306         WM_DESTROY, as the user's code can access Control.Handle in
5307         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
5308         move the WM_DESTROY/zombie handling to before the call to
5309         XDestroyWindow.  For some reason without this ordering
5310         FormTest.RecreateHandle hangs.  This ordering is semantically
5311         equivalent, however, as XDestroyWindow is async anyway.
5312
5313 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
5314
5315         * RichTextBox.cs: Reset backcolor_set after setting default.
5316
5317 2007-03-19  Chris Toshok  <toshok@ximian.com>
5318
5319         * ScrollableControl.cs: the scroll position should not effect the
5320         canvas size.  commit patch from georgegiolfan@yahoo.com, which
5321         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
5322         
5323 2007-03-19  Chris Toshok  <toshok@ximian.com>
5324
5325         * ScrollableControl.cs: clean this up a bit.  create the
5326         scrollbars in the ctor and just show/hide them as needed.  Also,
5327         make hscroll_visible/vscroll_visible internal to Recalculate, and
5328         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
5329         everywhere else.  This seems to fix the scrollbars appearing
5330         beneath the content for me (i have *no* idea why that is,
5331         however.)
5332
5333 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
5334
5335         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
5336         some redundacy for stuff in Anchor and Dock that base will take care of.
5337         [Fixes #80762]
5338
5339 2007-03-19  Mike Kestner  <mkestner@novell.com>
5340
5341         * ListView.cs : make box selection for Details views without 
5342         FullRowSelect dependent on the text bounds, not item bounds.
5343         * ListViewItem.cs : add an internal property to obtain the TextBounds
5344         in Details view.  [Fixes case 1-4 of #80374]
5345
5346 2007-03-19  Andreia Gaita  <avidigal@novell.com>
5347
5348         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
5349         we're < 2.0. #78448 && #80316
5350
5351 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
5352
5353         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
5354         have the same style available as the previously selected one.  Also,
5355         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
5356
5357 2007-03-19  Jackson Harper  <jackson@ximian.com>
5358
5359         * TextControl.cs: Add an alignment property that all new lines
5360         will be given.
5361         - Make sure to use the align shift when calculating the line's X
5362         position.
5363         * TextBox.cs: Set the alignment on the document as well as on all
5364         the document lines.
5365
5366 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5367
5368         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
5369           throw if setting the parent of an mdichild that already has an
5370           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
5371           AssemblyProductAttribute in the assembly, use the type's namespace (as
5372           MS seems to do). CreateControl: don't create the handle if the control
5373           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
5374           create handle if the control is not a form. Change FocusInternal to
5375           virtual so that it can be overriden by Form.
5376         * TextBox.cs: Update call to FocusInternal.
5377         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
5378           form is not a toplevel form when it's a mdi child, so update is_toplevel
5379           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
5380           hasn't been created. Show (IWin32Window): Don't allow this overload for
5381           toplevel windows. CenterToParent/CenterToScreen/Select: create the
5382           handle as MS does. SetVisibleCore: if called on a MdiChild and the
5383           parent isn't visible yet, save the visibility and restore it when the
5384           parent is made visible.
5385         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
5386           methods, since the visibility of the scrollbars can be changed from
5387           several places, not only from AutoScroll.
5388           [Fixes #81179]
5389
5390 2007-03-19  Jackson Harper  <jackson@ximian.com>
5391
5392         * RichTextBox.cs: Enable shortcuts by default.
5393         * TextBoxBase.cs: Add conditional shortcuts.  
5394
5395 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
5396
5397         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
5398
5399 2007-03-19  Chris Toshok  <toshok@ximian.com>
5400
5401         [ Fixes bug #80604]
5402         
5403         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
5404         swallow the message we're waiting on, instead of delivering it, as
5405         this is only used for the WM_SHOWWINDOW raised from
5406         MapWindow/UnmapWindow, and the message needs to be generated
5407         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
5408         before doing the Map/Unmap.  Also make sure that the Hwnd is still
5409         alive after the message has been handled.
5410
5411         *before* the window is shown.
5412
5413         * Control.cs (CreateControl): guard a few more things inside the
5414         if (!is_created) block, as we might end up being called again -
5415         yay .net.
5416         (WmShowWindow): call CreateControl if we're showing the control.
5417
5418 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5419
5420         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
5421           controls without a handle if they have any parent with a handle. In
5422           Dispose add a check whether the handle is created or not before
5423           calling BeginInvoke, this removes the need of the extra disposing
5424           parameter (which was bogus anyway since it didn't prevent the
5425           invoke from happening, it only skipped the check for an existing
5426           handle, meaning that the invoke would call on an inexistent
5427           handle).
5428
5429 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
5430
5431         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
5432         appears in taskbar.
5433
5434 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
5435
5436         * MessageBox.cs:
5437         - Fixed a problem that dont show help button for messages with 3 buttons.
5438         - Refactory button size and position calculations, now dont use fixed 
5439         values, also fixed button sizes (#80043) and form's border space.
5440         - AddButton method created, now all other AddButton methods call this one.
5441         - Some other source code cosmetic changes.
5442
5443 2007-03-18  Jackson Harper  <jackson@ximian.com>
5444
5445         * RichTextBox.cs: Don't do this all fonts must match check if
5446         there is only one char selected.
5447
5448 2007-03-18  Jackson Harper  <jackson@ximian.com>
5449
5450         * TreeView.cs: ScrollWindow works properly now, so we don't need
5451         to screw around with the scroll area.  This fixes some artifacts
5452         when expanding and collapsing.
5453
5454 2007-03-18  Jackson Harper  <jackson@ximian.com>
5455
5456         * TextBoxBase.cs: Allow updating the selection position when the
5457         cursor is outside the textarea, but we have a capture.
5458         * TextControl.cs: A special case for when the cursor is outside
5459         the bounds of the TB.
5460         
5461 2007-03-18  Jackson Harper  <jackson@ximian.com>
5462
5463         * TextBoxBase.cs: Remove image pasting code for now.  There is no
5464         way to get an image on the clipboard right now anyways.
5465         * TextControl.cs:
5466         * RichTextBox.cs: Use the new RTF Picture class for pictures.
5467
5468 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
5469
5470         * MessageBox.cs:
5471         - Set window properties in constructor intead of on CreateParams.
5472         - Remove topmost from Window ExStyle.
5473         - Set ShowInTaskbar to false.
5474         - Set form border to FixedDialog.
5475         - Some cosmetic changes and remove unneeded comments.
5476         - It fixes itens 2,3 and 4 of bug #80043.
5477
5478 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
5479
5480         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
5481         none was explicitly set. Fixes part of bug #79949.
5482
5483 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
5484
5485         * ToolStripComboBox.cs: Add AutoComplete*.
5486
5487 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
5488
5489         * ToolStripComboBox.cs: Add FlatStyle.
5490
5491 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
5492
5493         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
5494         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
5495
5496 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5497
5498         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
5499           CheckBox.cs, RadioButton.cs, BindingSource.cs,
5500           DataGridColumnStyle.cs: Remove warnings.
5501
5502 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5503
5504         * Menu.cs: MergeMenu: Check menu argument for null before looping over
5505           it.
5506         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
5507           visibility of mdi child forms. FormSizeChangedHandler: update the
5508           maximized size if size has changed while maximized.
5509         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
5510           creating the handle.
5511         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
5512           avoid creating the handle if not created.
5513         * XplatUI.cs: Update debug output.
5514         * XplatUIStructs.cs: Added ToString's for a couple of structs.
5515
5516 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
5517
5518         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
5519         ProcessCmdKey().
5520         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
5521         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
5522         Implement keyboard shortcuts.
5523
5524 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
5525
5526         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
5527         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
5528         ColorDialog and all derived classes.
5529
5530 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
5531
5532         [ Fixes bug #79828 ]
5533
5534         * ToolBar.cs:
5535         - Rename ToolBarButtonInfor to ToolBarItem.
5536         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
5537         - Maintain an array of ToolBarItem, used instead of ToolBarButton
5538         collection to be able add same button more than one time on a toolbar.
5539         - Refactory all properties and methods to use ToolBarItem. 
5540
5541         * ToolBarButton.cs: 
5542         - Remove all propeties and methods that is now in ToolBarItem.
5543         - Rectangle propery now gets the rectangle from first ToolBarItem to
5544         mimic win32 behavior.
5545         - Size calculation and layout methods also removed.
5546
5547         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
5548         ToolBarItem instead of ToolBarButton to right drawing buttons when
5549         same button/separator was added more than one time to ToolBar.
5550
5551         * ThemeNice.cs: Same as above. 
5552
5553 2007-03-15  Andreia Gaita  <avidigal@novell.com>
5554
5555         * XplatUIX11.cs: Fire extra MouseMove events right after
5556         MouseDown and MouseUp, emulating win32's <censored> behaviour
5557         for apps that rely on it.
5558
5559 2007-03-15  Jackson Harper  <jackson@ximian.com>
5560
5561         * TextControl.cs:
5562         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
5563         it is drawn on the controls client window and there is no NC
5564         area.
5565         - Set the background color to gray on 2.0 when we are readonly.
5566
5567 2007-03-15  Chris Toshok  <toshok@ximian.com>
5568
5569         [ Fixes bug #81144 ]
5570         
5571         * XplatUIX11.cs: implement VirtualScreen independently of
5572         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
5573         property.
5574
5575 2007-03-15  Chris Toshok  <toshok@ximian.com>
5576
5577         * Hwnd.cs: add an internal field for the cached_window_state.
5578
5579         * XplatUIX11.cs: cache the window state, invalidating the cache
5580         (and thus re-querying the X server) only when we see an update to
5581         the _NET_WM_STATE property.
5582
5583 2007-03-15  Chris Toshok  <toshok@ximian.com>
5584
5585         * BindingSource.cs: get a lot of the unit tests working.
5586
5587 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
5588
5589         * Control.cs: Modify UpdateStyles to store distances when bounds >=
5590         0 instead of just bounds > 0.  [Fixes bug #80912]
5591
5592 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
5593
5594         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
5595         and methods.
5596
5597 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
5598         
5599         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
5600         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
5601         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
5602         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
5603
5604 2007-03-15  Chris Toshok  <toshok@ximian.com>
5605
5606         [ Fixes #81101 ]
5607         
5608         * Control.cs: add Ivan's fix for 81101, with a slight modification
5609         - you can set control.Target to null.
5610
5611 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
5612
5613         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
5614         HideDropDown, use Hide instead to prevent an NRE.
5615         [Fixes bug #81147]
5616
5617 2007-03-14  Jackson Harper  <jackson@ximian.com>
5618
5619         * TextBoxBase.cs: Mess with the creation stuff a little. We need
5620         to calculate the document before the handle is created, in some
5621         cases. (Actually just one case).
5622
5623 2007-03-14  Jackson Harper  <jackson@ximian.com>
5624
5625         * TextBoxBase.cs: Need to display the caret after letting the base
5626         wndproc handle the focus methods, because the caret display
5627         methods check the focus state.
5628         - Try to display the caret after updating it's position with SelectWord.
5629         - Don't need to do an immediate update on this recalc, since there
5630         will be an invalidate anyways.
5631
5632 2007-03-14  Jackson Harper  <jackson@ximian.com>
5633
5634         * TreeView.cs: Some workarounds so that we can match event order a
5635         little better.
5636
5637 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
5638
5639         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
5640         #80803. Avoid NullReferenceException when Control does not have
5641         parent. Fixed different blinkstyle issues. Only subscribe to Tick
5642         event a single time. Only draw error icon when control is created and
5643         visible. Fixes failing unit tests.
5644
5645 2007-03-14  Andreia Gaita  <avidigal@novell.com>
5646
5647         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
5648         Selecting events. Fire Leave and Enter events when changing tabs.
5649
5650 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
5651
5652         * TreeView.cs: Add TreeViewNodeSorter.
5653         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
5654
5655 2007-03-14  Chris Toshok  <toshok@ximian.com>
5656
5657         * Form.cs: go ahead and remove the RecreateHandles that jpobst
5658         removed earlier and I had him add back it.  It turns out metacity
5659         *does* in fact handle the MOTIF_WM_HINTS property changing, it
5660         just doesn't redraw the window titlebar until you resize the
5661         window.  This also means we aren't recreating the entire window
5662         hierarchy on X when you change this property.  And it looks better
5663         on windows, too.
5664
5665 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5666
5667         * ListViewItem.cs:
5668         * ListView.cs: Collecting selection information
5669         is now done in SelectedIndexCollection rather than in
5670         SelectedListViewItemCollection. This is done so we can
5671         have the selection information code in one single place
5672         (virtual mode selection information entirely depends on
5673         SelectedIndexCollection).
5674
5675 2007-03-13  Miguel de Icaza  <miguel@novell.com>
5676
5677         * ErrorProvider.cs: Add stubs for ISupportInitialize
5678
5679 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5680
5681         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
5682         in the right order with the right values, from the Checked property, 
5683         just as MS does (instead of triggering them from ListView).
5684
5685         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
5686
5687 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5688
5689         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
5690         the correct handler in OnItemCheck method (ItemCheckEventHandler 
5691         instead of EventHandler). This used to throw an InvalidCastException.
5692
5693 2007-03-13  Jackson Harper  <jackson@ximian.com>
5694
5695         * TextBoxBase.cs: Calculate the document before the handle is
5696         created, so there isn't an extra invalidate called.
5697
5698 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
5699
5700         * Form.cs: Don't set owner in ShowDialog until we are sure
5701         that we aren't going to throw an exception.  [Fixes bug #80773]
5702
5703 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
5704
5705         * TreeView.cs: Make it compile.
5706
5707 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5708
5709         * Control.cs: Another place we don't call SizeFromClientSize.
5710         * Form.cs: Another place we don't call SizeFromClientSize.
5711         [Fixes bug #81125]
5712
5713 2007-03-12  Jackson Harper  <jackson@ximian.com>
5714
5715         * TreeView.cs: Basically emulating some strangness here with
5716         exanding nodes and setting node positions when windows aren't
5717         created.
5718         - Also attempting to walk the node tree less than previously, and
5719         just use visible order calculations for determining offsets.
5720         - oops made scrolling backwards.
5721         * TreeNode.cs: We need to start nodes with a zero visible order,
5722         because the order calcs are based on the first nodes order.
5723
5724 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5725
5726         * Form.cs: Don't exit the program if RecreateHandle is called on
5727         the main form.
5728
5729 2007-03-12  Chris Toshok  <toshok@ximian.com>
5730
5731         * XEventQueue.cs: remove the use of PostQuitState.
5732
5733         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
5734         WM_QUIT message in GetMessage, return false (and if we're in the
5735         nested WaitForHwndMessage, repost the WM_QUIT message).
5736
5737 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5738
5739         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
5740         or the MaximizeBox properties.  [Part of bug #80640]
5741
5742 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
5743
5744         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
5745         no links.
5746
5747 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5748
5749         * ToolStripItem.cs: Fix some tests I broke by checking Visible
5750         instead of visible.
5751
5752 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
5753
5754         * FileDialog.cs: Use text of File name combobox to determine what
5755         files the user selected. Added tokenizer to parse the file names.
5756         Fixes bug #81123.
5757
5758 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5759
5760         * Control.cs: We can't call SizeFromClientSize in the constructor,
5761         but we still need to do the same work, so make an internal version.
5762         [Fixes bug #80621]
5763
5764 2007-03-12  Jackson Harper  <jackson@ximian.com>
5765
5766         * TreeView.cs:
5767         * TreeNode.cs:
5768         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
5769         IsExpanded.
5770
5771 2007-03-12  Jackson Harper  <jackson@ximian.com>
5772
5773         * TextBoxBase.cs: Now that the handles are being created a little
5774         later, we need to make sure that the document is recalculated when
5775         the handle is created.
5776
5777 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
5778
5779         * Theme.cs: GetLinkFont abstract method added.
5780         
5781         * LinkLabel.cs: 
5782         - Remove CalcTrimRectangle, no longer needed.
5783         - Factor also remove, position issues must be fixed in libgdiplus.
5784         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
5785         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
5786         care about font used to draw links.
5787         - Set TabStop to true when control is "Selectable", control is selectable
5788         when have one or more links. Fixes #80501 (test case is also added).
5789         - Set the LinkArea values after links change, LinkArea values must be
5790         based in first link position and size, a test case was created.
5791         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
5792         the attribute must be true LinkArea.Length > 0. The same was applied to
5793         TabStop.
5794         
5795         * ThemeWin32Classic.cs: 
5796         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
5797         in draw method.
5798         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
5799         color change.
5800         - Draw focus rectangle for every parts focused, including parts that 
5801         is on another line, its because regions returns various rectangles
5802         and not only one. Needed to mimic W32 look.
5803         - Uses Graphics.Clip to delimite region painted, it mean that now 
5804         complete text is passed to DrawString, with this we solve layout
5805         issues without create another text renderer.
5806         - Uses Region.Intersect to fix some flickers problems, now only needed
5807         parts will redrawed.
5808         - This changes fixes #79614 and some other unreported issues, on Linux 
5809         some layout problems still remain, the problem is under 
5810         MeasureCharacterRanges but it is an libgdiplus bug.
5811
5812 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
5813
5814         * TextBox.cs: Set for foreground color.
5815         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
5816         this is already done in Control.
5817
5818 2007-03-10  Jackson Harper  <jackson@ximian.com>
5819
5820         * TextBox.cs: Set the background color, but reset the
5821         backcolor_set flag which is just for the user setting the
5822         background color.
5823
5824 2007-03-09  Chris Toshok  <toshok@ximian.com>
5825
5826         * Control.cs: really remove the call to XplatUI.SetVisible from
5827         CreateHandle(), like I said I did when I merged the branch.
5828
5829         * BindingSource.cs: implement some more of this stuff.
5830
5831 2007-03-09  Jackson Harper  <jackson@ximian.com>
5832
5833         * TextBox.cs: Don't explicitly set our background colors.
5834         * TextControl.cs:
5835         * TextBoxBase.cs: Draw readonly text.
5836         - Need to invalidate when backcolor or readonly are changed.
5837         
5838 2007-03-09  Jackson Harper  <jackson@ximian.com>
5839
5840         * TextBoxBase.cs: Don't set the forecolor until the handle is
5841         created.
5842         - Do not raise OnPaint, and removed some old debug code.
5843
5844 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
5845
5846         * ScrollableControl.cs: Fix mouse wheel scrolling.
5847
5848 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
5849
5850         * Control.cs: Wire up MouseDoubleClick event.
5851
5852 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
5853
5854         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
5855         top or bottom.
5856         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
5857         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
5858         item is added.  This logic was moved to ToolStrip.OnItemAdded.
5859         [Fixes bug #81090]
5860
5861 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5862
5863         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
5864
5865 2007-03-08  Jackson Harper  <jackson@ximian.com>
5866
5867         * TreeView.cs: Show the correct image for selected node (this used
5868         to work, not sure how the code got deleted). Also implemented 2.0 feature
5869         SelectedImageKey.
5870
5871 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5872
5873         * ListView.cs:
5874         * ListViewItem.cs: Cache index in items when retrieving them
5875         in VirtualMode.
5876
5877 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
5878
5879         * ToolStripItem.cs: Don't return the explicit_size if we are using 
5880         AutoSize.  Fixes invalidation issue when user has explicitly set a
5881         size and has AutoSize = true.
5882
5883 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
5884
5885         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
5886
5887 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5888
5889         * DataGridView.cs: Remove event handler from DataView when a
5890         DataTable is used as DataSource.
5891
5892 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
5893
5894         * Control.cs: Create internal setter for client_size to allow it to be
5895         set without triggering resizing code.
5896         * Form.cs: Calculate client_size in constructor, only change client_size
5897         in FormBorderStyle property if Handle has been created.
5898         [Fixes #80574, #80791]
5899
5900 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
5901
5902         * SystemInformation.cs: Add TerminalServerSession.
5903
5904 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
5905
5906         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
5907         TreeView code.
5908
5909 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
5910
5911         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
5912         Handle before we were supposed to.  Now checks ActivateOnShow property
5913         in Control.
5914         * Control.cs: Add internal ActivateOnShow property.
5915         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
5916         for ActivateOnShow.
5917         * Hwnd.cs Remove no longer needed no_activate field.
5918
5919 2007-03-07  Jackson Harper  <jackson@ximian.com>
5920
5921         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
5922         2.0 properties
5923         * DrawTreeNodeEventHandler.cs: Add
5924         * DrawTreeNodeEventArgs.cs: Correct default value.
5925         
5926 2007-03-07  Chris Toshok  <toshok@ximian.com>
5927
5928         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
5929         to be called before NativeWindow.WndProc.  Put the HwndCreating
5930         magic there to hook up our Hwnd's to handles.
5931
5932 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
5933
5934         * DataGridView.cs: Comment out debug code.
5935
5936 2007-03-07  Chris Toshok  <toshok@ximian.com>
5937
5938         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
5939         to make the rest of the world happy]
5940
5941         * Control.cs (CreateHandle): there's no need to call
5942         XplatUI.SetVisible here, it's effectively done by
5943         XplatUI.CreateWindow on X now, and always was on windows.
5944
5945         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
5946         shortcircuit out of the loop if we have a message loop running on
5947         this thread.
5948
5949         [Changelog from merge]
5950
5951         2007-03-05  Chris Toshok  <toshok@ximian.com>
5952
5953                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
5954                 causes handle creation.
5955
5956         2007-02-28  Chris Toshok  <toshok@ximian.com>
5957
5958                 * ApplicationContext.cs: Add a flag to make sure we only raise the
5959                 ThreadExit event once (ExitThreadCore can be indirectly called
5960                 from a few places.)  I don't like the additional flag, but it
5961                 makes the event ordering/count correct.
5962
5963                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
5964                 without locking the collection.  An enumerator doesn't give us any
5965                 protection from modification anyway.  Lock the thread hash and
5966                 replace the complicated enumerator loop with a foreach.
5967                 (Application.CloseForms): make internal so it can be called from
5968                 ApplicationContext.  This should probably be moved to MWFThread.
5969                 (Application.ExitThread): don't call MWFThread.Current.Exit()
5970                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
5971                 when the runloop exits (in response to WM_QUIT.)
5972                 (Application.RunLoop): add a comment (and check) for
5973                 context.MainForm being null after setting context.MainForm.Visible
5974                 = true.  This is because you're perfectly free to dispose of a
5975                 form in VisibilityChanged.  Chalk this up to another case where we
5976                 need to synchronously generate WM_ACTIVATE from Control.Show.
5977                 Also, add handling for WM_QUIT here so we'll exit the loop.
5978                 
5979                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
5980                 fact that we don't wait if we're only unmapping the whole_window
5981                 makes me a bit nervous, but it doesn't seem to cause any problems
5982                 yet.
5983
5984                 also, add a comment about the stupid, broken and wrong resetting
5985                 of PostQuitState to false in GetMessage().
5986
5987                 In PostQuitMessage, we need to add a WM_QUIT message to the
5988                 thread's queue.  We use the FosterParent to get the right
5989                 handle/hwnd/queue.
5990
5991                 Lastly, in SetVisible, we need to unmap both windows, since the
5992                 waiting only happens when we're unmapping the client window.  So
5993                 now, the *only* time we unmap just the whole_window is in the hack
5994                 for resizing a control to 0,0.
5995                 
5996         2007-02-21  Chris Toshok  <toshok@ximian.com>
5997
5998                 * Application.cs (CloseForms): rewrite this so that we don't
5999                 modify the list while we're traversing it.
6000
6001         2007-02-20  Chris Toshok  <toshok@ximian.com>
6002
6003                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
6004                 of OnHandleCreated.
6005                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
6006                 handle is created.  otherwise we'll create it here.
6007                 (VerticalScrollEvent): same here.
6008
6009                 * Application.cs (CloseForms): call Form.Dispose, don't post
6010                 WM_CLOSE_INTERNAL.
6011
6012                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
6013                 here. Application should Dispose() of the Form's.
6014
6015                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
6016                 WM_DESTROY as well.
6017                 (MapWindow,UnmapWindow): only actually do the waiting for
6018                 SHOWWINDOW if the control we're dealing with is a Form.
6019                 (CreateWindow): if the control isn't a form, SendMessage
6020                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
6021
6022                 * Control.cs (SetVisibleCore): always use is_visible here, not
6023                 value.  If we use value, we can end up re-setting something
6024                 visible if, for instance, you do Control.Hide() in a delegate
6025                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
6026
6027         2007-02-20  Chris Toshok  <toshok@ximian.com>
6028
6029                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
6030                 the message we need.  PeekMessage returning false should not be a
6031                 condition under which we exit the loop.
6032
6033         2007-02-15  Chris Toshok  <toshok@ximian.com>
6034
6035                 * Control.cs (Refresh): only refresh if we've got a handle and are
6036                 visible.
6037                 (CreateAccessibilityInstance): CreateControl() here.
6038                 (UpdateChildrenZOrder): complicate the code loop even more by
6039                 taking into account controls that haven't had their handle
6040                 created, and those that aren't visible.  But on the flip side,
6041                 simplify the code by splitting it into two loops.  one which
6042                 builds up the list of child controls we're interested in, and the
6043                 other that sets the z order of those children.
6044
6045         2007-02-14  Chris Toshok  <toshok@ximian.com>
6046
6047                 * Control.cs: Control.AccessibilityObject causes the control to be
6048                 created, not just the handle.
6049
6050         2007-02-14  Chris Toshok  <toshok@ximian.com>
6051
6052                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
6053                 problem on X where a window might have its handle created (and be
6054                 visible) while the window is unmapped.  calling XConfigureWindow
6055                 on an unmapped window is bad, and generates X errors.
6056
6057         2007-02-13  Chris Toshok  <toshok@ximian.com>
6058
6059                 * Control.cs (CreateHandle): don't loop over our children setting
6060                 their parent here.  do it when in WndProc when we're shown.
6061                 (UpdateChildrenZOrder): make this internal so we can call it from
6062                 ScrollableControl.
6063                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
6064                 creating its handle.  Also, remove the calls to PerformLayout from
6065                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
6066                 OnVisibleChanged only seems to be called directly here for the
6067                 toplevel control.  It's propagated down the window hierarchy by
6068                 calls to child.OnParentVisibleChanged.
6069                 (OnVisibleChanged): don't do layout here - it's done (oddly
6070                 enough, according to a glance at stack traces on ms.net..) in
6071                 ScrollableControl.
6072                 
6073                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
6074                 z order of our children before calling PerformLayout.
6075
6076         2007-02-12  Chris Toshok  <toshok@ximian.com>
6077
6078                 [big change, fixes #80020]
6079                 
6080                 * AccessibleObject.cs: we need to make owner internal again to fix
6081                 some of ControlAccessibleObject.
6082
6083                 * Control.cs: lots of changes here.  add support for WM_CREATE,
6084                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
6085                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
6086                 we create child controls.  leave the MonoTODO's for the
6087                 accessibility calls, but fix the exceptions so the tests pass.
6088
6089                 Add the InvalidOperationExceptions to Invoke methods, and remove a
6090                 couple of InvokeInternal methods we aren't using.
6091                 
6092                 Also, add a couple of CreateHandle calls in places where we know
6093                 the handles are being created but our code doesn't reference
6094                 .Handle.
6095
6096                 Make SetVisibleCore call OnVisibleChange if the handle isn't
6097                 created.  If the handle is created, we rely on XplatUI.SetVisible
6098                 generating the event synchronously.
6099                 
6100                 Lastly, make sure we don't use this.Handle inside CreateHandle,
6101                 because we can call back into client (and that code can dispose of
6102                 the control).
6103
6104                 * XplatUIStructs.cs: misc/cleanup.
6105
6106                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
6107                 although we don't populate the wParam properly.
6108                 (CreateWindow): generate WM_CREATE.
6109                 (MapWindow,UnmapWindow): make these calls synchronous, at great
6110                 performance expense (particularly in the unmap case), to match
6111                 win32 behavior.
6112
6113                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
6114                 to call it.
6115                 (set_MdiParent): don't recreate the handle unless it's been
6116                 created already.
6117                 
6118                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
6119                 it's created.
6120
6121                 * NativeWindow.cs: this is probably the weirdest part of the
6122                 patch.  We need a way to link up the window being created to the
6123                 WM_CREATE message.  Since we can only be creating one window at a
6124                 time on a given thread, we keep track of a per-thread reference so
6125                 we can dispatch it properly.  We also need to keep track of the
6126                 Hwnd currently being created so that the win32 backend doesn't
6127                 have problems.
6128                 
6129                 * XplatUIWin32.cs: a similar change to the one we made in
6130                 NativeWindow.cs.
6131
6132 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
6133
6134         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
6135         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
6136         to draw the menu shortcut string.
6137
6138 2007-03-07  Jackson Harper  <jackson@ximian.com>
6139
6140         * TreeNode.cs: Add the 2.0 collapse method.
6141
6142 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6143
6144         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
6145
6146 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6147
6148         * DataGridView.cs: Change DataSource will clear column and row
6149         lists. Call Invalidate() to reflect DataSource change.
6150
6151 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6152
6153         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
6154         and a new row is added to it.
6155
6156 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
6157
6158         * DataGridView.cs: Add columns when DataSource is en empty list but
6159         is a System.Data.DataView (from a System.Data.DataTable).
6160
6161 2007-03-06  Andreia Gaita  <avidigal@novell.com>
6162
6163         * Label.cs: Implement AutoEllipsis (2.0)
6164
6165 2007-03-06  Jackson Harper  <jackson@ximian.com>
6166
6167         * TreeView.cs: Implement 2.0 TopNode setter property.
6168         - Use a local var instead of the skipped_nodes field for computing
6169         how many nodes to skip.  Otherwise we won't scroll because the
6170         valuechanged handler checks if skipped_nodes is equal to the new
6171         value.
6172         - Implement 2.0 Sort method.
6173         - Add useless 2.0 DoubleBuffer property
6174         - Implement 2.0 LineColors property.  Lets you change the color of
6175         the lines in the tree. Terribly useful for creating non cohesive
6176         desktops.
6177         - Implement 2.0 image key feature.
6178
6179 2007-03-06  Jackson Harper  <jackson@ximian.com>
6180
6181         * TreeView.cs: We can't get the bounds of the nodes before raising
6182         the AfterSelect event, because that event could change the node's
6183         bounds (scrolling, font change, etc).
6184
6185 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6186
6187         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
6188         * Form.cs: Don't recreate handle when creating FormWindowManager, just
6189           update window styles. In CreateParams us VisibleInternal instead of
6190           VIsible to get the actual visible flag set for this form.
6191         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
6192           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
6193           handle the case when the form is already maximized, in which case
6194           it should be restored. Fixes #81043.
6195
6196 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6197
6198         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
6199
6200 2007-03-05  Jackson Harper  <jackson@ximian.com>
6201
6202         * TreeViewHitTestInfo.cs: implement.
6203
6204 2007-03-05  Jackson Harper  <jackson@ximian.com>
6205
6206         * InternalWindowManager.cs: class status fix.
6207
6208 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6209
6210         * InternalWindowManager.cs: All windows that have a parent
6211         are confined to their parent when they're being moved.
6212         Fixes #80822.
6213
6214 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
6215
6216         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
6217         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
6218
6219 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6220
6221         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
6222           buttons invisible before deciding which ones should be visible
6223           (fixes minimize/maximize buttons showing up in toolwindows). Remove
6224           an unused variable.
6225         * InternalWindowManager.cs: Remove warning.
6226
6227 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6228
6229         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
6230         to throw an InvalidOperationException is virtual mode is being used.
6231
6232 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
6233
6234         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
6235         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
6236         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
6237         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
6238         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
6239         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
6240
6241 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6242
6243         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
6244           driver.KeyboardDelay from XplatUI.KeyboardDelay 
6245         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
6246           (patch by Sergey Volk)
6247
6248 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6249
6250         * ToolWindowManager.cs: Added, contains logic for
6251           tool windows.
6252         * CreateParams.cs: Add a few helper methods and an
6253           internal variable to know which control the CreateParams belongs
6254           to.
6255         * Control.cs: Call Form.ChangingParent when the
6256           parent is about to be changed.
6257         * XplatUIX11.cs: DeriveStyles (): Set
6258           caption_height for all windows that have captions and are children.
6259           Update to use ToolWindowManager instead of InternalWindowManager
6260           for ToolWindows.
6261         * XplatUIWin32.cs: Set fake window styles for all
6262           windows that have window managers.
6263         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
6264           now duplicated for mdi windows when they are
6265           maximized, first for the buttons the window itself has, then for
6266           the buttons that appear in the menu bar. Makes things a little
6267           easier). Updated UpdateWindowDecorations, SetWindowState and the
6268           mouse eventhandlers accordingly.
6269         * Form.cs: Add ChangingParent (), contains the
6270           logic of what should happen when the parent changes. In MdiParent
6271           don't set things that ChangingParent () is doing. When handling
6272           WM_CLOSE, we can close the form if there are any other modal forms
6273           and the current form is a descendent of the modal form.
6274         * InternalWindowManager.cs: A lot of refactoring,
6275           the title buttons are now extracted to a separate container class
6276           that takes care of all button code (clicks, tooltips, etc). Moved
6277           Iconic|Maximized|Normal Bounds properties to this class from
6278           MdiWindowManager, so that the window state logic can succeed for
6279           other than mdi wm's. Implemented general window state change logic.
6280           Moved CreateButtons to ThemeWin32Classic, since the theme might
6281           override which buttons are available when as well as the exact
6282           location.
6283         * FormWindowManager.cs: Added, contains logic for
6284           normal forms.
6285         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
6286           which buttons go where (and if they are at all visible). 
6287           Removed special handling of maximized windows, since they aren't special. 
6288           In DrawManagedWindowDecorations don't try to draw the text if it is
6289           empty.
6290         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
6291           use whatever the wm gives us.
6292
6293 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
6294
6295         * ButtonBase.cs: Add 2.0 properties.
6296         * Button.cs: Override Draw for 2.0.
6297         * Control.cs: Add Entered and Selected properties.
6298         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
6299         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
6300         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
6301         buttons.
6302         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
6303
6304 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
6305
6306         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
6307
6308 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
6309
6310         * XplatUIWin32.cs: Register a new class with Windows each time we get
6311         a new ClassStyle.  [Fixes bugs #79432, #80817]
6312         * Controls.cs: Set the correct ClassStyle in CreateParams.
6313         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
6314
6315 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
6316
6317         * ListView.cs: Add fireEvent argument to ReorderColumn since the
6318         ColumnReordered event must not be signaled when modifying DisplayIndex
6319         of a ColumnHeader. Added internal ReorderColumns method which takes
6320         care of drawing, and updating the internal DisplayIndex of the
6321         ColumnHeader. Added AddColumn method which is invoked from
6322         ColumnHeaderCollection when adding or inserting columns, and which
6323         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
6324         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
6325         Recalculated dispay indices after removing a ColumnHeader.
6326         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
6327         match MS. Allows last display index to be returned after ListView
6328         is disposed. Update actual location of ColumnHeader when DisplayIndex
6329         is modified.
6330
6331 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
6332
6333         * LinkLabel.cs: Improve CalcTrimRectangle.
6334         
6335         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
6336
6337 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
6338
6339         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
6340         get rectangle as a result value.
6341
6342 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
6343
6344         * LinkLabel.cs: Theres some diferences between rectangle return from 
6345         MeasureCharacterRanges and the area used for DrawString to fix this 
6346         CalcMeasurementFactor method was created, it calcules the diferences
6347         to be use later to adjust rectangle in draw operations. Fixes #80473.
6348         
6349         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
6350         to adjust draw rectangle.
6351
6352 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
6353
6354         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
6355         text and some other changes to reduce and optimize source code.
6356
6357 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
6358
6359         * RadioButton.cs: Implement 2.0 event.
6360         * RelatedImageListAttribute.cs: Implement new class.
6361
6362 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
6363
6364         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
6365
6366 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
6367
6368         * CheckBox.cs: Implement 2.0 functionality.
6369
6370 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6371
6372         * ListView.cs: Refactor Add and AddRange methods of
6373         ListViewItemCollection, to not update the ListView
6374         everytime an item is added in AddRange. Also move the update
6375         code to a new CollectionChanged method, and call it
6376         from other methods that need it as well (this should also fix some
6377         bugs when Sorting is used).
6378
6379 2007-02-27  Jackson Harper  <jackson@ximian.com>
6380
6381         * TextControl.cs: Try to never let the caret stay in a non-text
6382         tag.
6383         * TextBoxBase.cs: Update the caret.
6384
6385 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
6386
6387         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
6388         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
6389         delete POINT structure, duplicate of one in XplatUIStructs.
6390         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
6391
6392 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
6393
6394         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
6395         edit box since otherwise the Label would immediately be set (even if
6396         the user did not modify the label). In OnKeyDown set Handled to true
6397         if Return or Escape was pressed. In ColumnHeaderCollection unlink
6398         columns that are to be removed. In ListViewItemCollection unlink items
6399         that are to be removed.
6400
6401 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
6402
6403         * TextRenderer.cs: If we set a GDI clip region, we need to clear
6404         it when we are done.  [Fixes bug #80949]
6405
6406 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
6407
6408         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
6409
6410 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6411
6412         * ListView.cs: I forgot to commit the changes for ListView 
6413         in my previous patch.
6414
6415 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
6416
6417         * Clipboard.cs: Partially implement an overload of SetDataObject.
6418         * Form.cs: Implement ShowWithoutActivation.
6419         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
6420
6421 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6422
6423         This is a first set of changes to make the Virtual mode works,
6424         by avoiding the retrieval of ListViewItem instances until
6425         draw time.
6426
6427         * ListView.cs: Store item position in the ListView instead of the
6428         ListViewItem, this way we don't request the Bounds property of
6429         ListViewItem inside the ListView calculations, as well as cache the item
6430         size in item_size field. Store indexes instead of ListViewItem
6431         instances in the matrix used by icon view. Add a ItemMatrixLocation
6432         struct to hold the row and col info of the matrix info.
6433
6434         * ListViewItem.cs: Don't store the location anymore, and only cache
6435         the rectangles for GetBounds. Use the ListView.GetItemLocation
6436         method to retrieve the actual location.
6437
6438 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
6439
6440         * TextRenderer.cs: Add clipping support, thanks to George.
6441         [Fixes bug #80949]
6442
6443 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
6444
6445         * ListViewItem.cs: Cancel label edit when item is removed from 
6446         ListView.
6447         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
6448         event before the edit textbox is displayed.  Added CancelEdit method
6449         which is used end to editing while ignoring the value set by the
6450         user. In EndEdit, set focus to ListView to avoid losing focus to
6451         other controls. In ListViewItemCollection.Clear, cancel editing of
6452         any of the items.  In Remove, cancel editing of item being removed.
6453         Avoid udplicate code by modifing RemoveAt to invoke Remove.
6454
6455 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
6456
6457         * FileDialog.cs: Update FSEntry when move is successful. Fixes
6458         bug #80948.  
6459
6460 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
6461
6462         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
6463         compatible with non X11 systems. Fixes #80901.
6464
6465 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
6466
6467         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
6468         whether the item should be unselected and reselect. We do no want this
6469         when we're starting to edit the label. Do not fire the 
6470         SelectedIndexChanged event from ListView when its already been fired
6471         by modifying ListViewItem.Selected. Fixes bug #80943.
6472
6473 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
6474
6475         * TextRenderer.cs: Previos commit logic was backwards.
6476
6477 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
6478
6479         * TextRenderer.cs: Don't add padding on MeasureText if we were
6480         sent the NoPadding flag.
6481
6482 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
6483
6484         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
6485         after DrawButton. To prevent image overlaps button borders SetClip and 
6486         ResetClip added before and after draw image. Fixes #79129.
6487
6488 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
6489
6490         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
6491         window size, it fix problem when you run under win32 that theres
6492         Size diferent than ClientSize. Also fix controls size and positions
6493         to mimic Win32. Fixes #80837.
6494
6495 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
6496
6497         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
6498         menu area to fix some problems for non X11 systems. Fixes #80613.
6499
6500 2007-02-22  Jackson Harper  <jackson@ximian.com>
6501
6502         * TreeNode.cs: When a node is expanded, set its is_expanded flag
6503         even if it doesn't have any children.
6504
6505 2007-02-22  Jackson Harper  <jackson@ximian.com>
6506
6507         * TreeView.cs: Calculate the top node 'on the fly', this
6508         eliminates issues where you need to click on the tree before
6509         scrolling it to get the top node computed correctly.
6510         * TreeNodeCollection.cs: We don't need to mess with the top node
6511         anymore.
6512
6513 2007-02-22  Jackson Harper  <jackson@ximian.com>
6514
6515         * DataGridViewRow.cs: Fix typo so height can actually be set.
6516         Patch by Peter Grimm.
6517
6518 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
6519
6520         * FileDialog.cs: Fixed support for renaming files and directories.
6521         * ListView.cs: Do not lose focus when edit is canceled. Process
6522         Escape as regular key (to prevent closing of dialogs).
6523
6524 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
6525
6526         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
6527         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
6528
6529 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
6530
6531         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
6532         did not modify label.
6533         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
6534         modified the text. Reset Label when user presses Escape in edit mode.
6535         Move focus to ListView after having cancelled or finished editing the
6536         label.
6537
6538 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
6539
6540         * ComboBox.cs: Removed unnecessary initializations. Marked items field
6541         private. Clear textbox when Text is set to null and SelectedIndex is
6542         already -1.
6543         * FileDialog.cs: Removed unnecessary initializations. Removed 
6544         workarounds for ComboBox bugs that are now fixed. Modified
6545         DefaultExt, InitialDirectory and Title property to change null to
6546         zero-length string in getters. Avoid directly accessing fields.
6547
6548 2007-02-20  Jackson Harper  <jackson@ximian.com>
6549
6550         * TextControl.cs: Remove RecalAlignments call, that was some
6551         debugging leftovers.
6552         - Don't use the line indent when we shouldn't.
6553         * RichTextBox.cs: Add support for paragraph left indents.
6554
6555 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6556
6557         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
6558         Seems like the class status pages doesn't catch params differences.
6559
6560 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
6561
6562         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
6563
6564 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
6565
6566         * ComboBox.cs: Setting Text should have no effect if item text of
6567         selected item exactly matches value. First lookup text using
6568         case-sensitive comparison, and fallback to case-insensitive comparison.
6569         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
6570         allow startIndex to be last index. Changed ArgumentOutOfRangeException
6571         paramname to match MS. Restart from first item if string is not found
6572         after startIndex. Fixed paramname of ArgumentNullException that is
6573         thrown for null value in ObjectCollection.Contains.
6574
6575 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
6576
6577         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
6578
6579 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6580
6581         * ListControl.cs: In SelectedValue use value.Equals to compare for
6582         equality instead of ==, otherwise it will fail for strings.
6583         Fixes #80794.
6584
6585 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6586         
6587         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
6588         since the caret won't show up unless ShowSelection is true. 
6589         Fixes #80795.
6590
6591 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6592
6593         * Application.cs: When disabling all forms but the main form, do not
6594           disable any descendants of the main form (such as mdi children or
6595           other parented forms). Fixes #80822 on Windows.
6596         * Form.cs: If we have a parent, set the WS_CHILD style.
6597         * Control.cs: Update the window styles if the control whose parent has
6598           changed is a form (the WS_CHILD style has to be switched).
6599
6600 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
6601
6602         * XplatUIStructs.cs: MsgUIState structure added.
6603
6604 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
6605
6606         * FileDialog.cs: Removed need for separate fileName field. On 2.0
6607         profile, do not check filename(s) for illegal character if filename(s)
6608         were set non-interactively but always check on 1.0 profile. Fixed NRE
6609          in DefaultExt and only strip off first leading dot. Improve exception
6610         message when invalid Filter is set. Do not ignore InitialDirectory if
6611         it does no exist. Store specified Title, and if empty use default
6612         title (depending on type of dialog). Added an internal DialogTitle 
6613         property for retrieving dialog title. Fixed logic of displayed dir to
6614         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
6615         string as its buggy.
6616         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
6617         FileName is a zero-length string (it can never be null). Override 
6618         DialogTitle property to set default title of dialog box.
6619         * SaveFileDialog.cs: Override DialogTitle property to set default
6620         title of dialog box.
6621
6622 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
6623
6624         * FileDialog.cs: Modify default text of filename and filetype labels
6625         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
6626         after we've updated the SelectedIndex. Fixes part of bug #80887.
6627         * SaveFileDialog.cs: Set text of filetype label.
6628
6629 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6630
6631         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
6632         label field. Needed by latest Jackson's fixes for ListView.
6633
6634 2007-02-16  Andreia Gaita  <avidigal@novell.com>
6635
6636         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
6637         print preview images.
6638
6639 2007-02-16  Jackson Harper  <jackson@ximian.com>
6640
6641         * ListView.cs: Make AfterLabelEdit work correctly.
6642         * FileDialog.cs: After changing the name of the folder, we have to
6643         make sure that it is created, or that we pop up an error because
6644         it already exists.
6645
6646 2007-02-16  Jackson Harper  <jackson@ximian.com>
6647
6648         * X11Dnd.cs: Implement aliases on mime handlers, so things like
6649         System.String are mapped to text.
6650         - Handle dataobjects, getting all the possible formats out of them
6651         - We dont need the drag event args before we give feedback. This
6652         allows feedback cursors to be immediate before selections have
6653         been converted.
6654
6655 2007-02-16  Jackson Harper  <jackson@ximian.com>
6656
6657         * TextBoxBase.cs: Modified the method for inserting images to
6658         taking a line and position instead of tag and position.
6659         * RichTextBox.cs: Handle PngBlip data by inserting the png image
6660         into the RTF file.
6661         * TextControl.cs: Allow images to be inserted as the first tag of
6662         a line.
6663         - Fix some off by one issues when we assume the first tag is a
6664         text tag, not an image tag.
6665
6666 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6667
6668         * ListView.cs: Set focus to ListView when ItemControl gets a
6669         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
6670         Fixes part of #80467.
6671
6672 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6673
6674         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
6675           validate Text input (if null or empty string reset Value to default
6676           value). Fixes #80830.
6677
6678 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6679
6680         * ListView.cs: Set owner as null for columns and items when
6681         Dispose is invoked. Fixes #80607.
6682
6683 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
6684
6685         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
6686         showing DropDowns, don't show a Grip when doing Flow layout.
6687         [This fixes the toolbox in PDN 2.72.]
6688         * ToolStripItem.cs: Add Anchor property and some internal properties to
6689         reduces needed changes to FlowLayout.
6690         * ToolStripOverflow.cs: Remove unused variable.
6691         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
6692         use it in the layout calculations.
6693
6694 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6695
6696         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
6697         reported in #79640.
6698         
6699         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
6700         size calculation.
6701
6702 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6703
6704         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
6705         MeasureString format, it can make button very large in some cases, it is
6706         strange but is what win32 do.
6707
6708 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6709
6710         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
6711         size calculation.
6712
6713         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
6714         rendering, the value is based on MenuAccessKeysUnderlined.
6715
6716 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6717
6718         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
6719         for most themes.
6720         
6721         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
6722         
6723         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
6724         and use MenuAccessKeysUnderlined instead.
6725
6726 2007-02-13  Andreia Gaita  <avidigal@novell.com>
6727
6728         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
6729         A selected control would not get a Focus call if:
6730                 - the default active control of the container is the same as
6731                   the one that was selected
6732                 - we are switching from one container to another
6733         Under these conditions, the container being selected already has
6734         an active_control, which is the same as the one being activated, 
6735         so set_ActiveControl would always return and not send the Focus
6736         call. Fix to check if the currently active control of the container
6737         is actually focused.
6738
6739 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
6740
6741         * StatusStrip.cs: Implement the spring layout.
6742         * ToolStripControlHost.cs: Make sure the hosted control's visibility
6743         always matches the host.
6744         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
6745         and TextAfterImage.
6746
6747 2007-02-13  Andreia Gaita  <avidigal@novell.com>
6748
6749         * Control.cs: Code reorganization only.
6750           - Reorganize the WndProc cases so that each case has it's own handling method, 
6751           to help with the no-line-numbering stack traces.
6752           - Formatting changes (it's vstudio's fault, really :p)
6753
6754 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6755
6756         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
6757           Thread.CurrentUICulture to match DateTimePicker's (and MS)
6758           behaviour.
6759
6760 2007-02-12  Jackson Harper  <jackson@ximian.com>
6761
6762         * RichTextBox.cs:
6763         * TextBox.cs: By default we have a non multiline document
6764         - use the multiline property instead of the internal variable
6765         * TextBoxBase.cs: Treat multiline and non multiline the same in
6766         most places.
6767         - Use the documents multiline flag instead of tracking it ourself
6768         * TextControl.cs: Attempt at getting multiline to match MS
6769         behavior.  Lines now track an offset, which is either their X or Y
6770         offset depending on whether or not we are in multiline mode.
6771         - Update all the methods to understand that lines have an X value.
6772         - Fix crash in Undo::Duplicate when empty lines are deleted.
6773
6774 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
6775
6776         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
6777         code moved to properties PreferredHeight and PreferredWidth. It solve the
6778         all problems when preferred sizes must be recalculated. Fixes #80801.
6779
6780 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
6781
6782         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
6783         font height when compatible_text_rendering is false. Partially fix #80801.
6784
6785 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
6786
6787         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
6788
6789 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
6790
6791         * Form.cs: Improved exception messages in ShowDialog.
6792
6793 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
6794
6795         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
6796         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
6797         if not set. Fixes bug #80764. Avoid accessing current_settings field
6798         directly.
6799
6800 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
6801
6802         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
6803         false.
6804
6805         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
6806         public in 2.0 and for easy maintenance and dont break compatibility it is 
6807         internal in 1.1.
6808         
6809 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
6810
6811         * ToolStripItem.cs: Implement using images from ImageList.
6812
6813 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6814
6815         * DateTimePicker.cs: Change default date-formatting culture from
6816           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
6817           seems to be the way MS does it.
6818
6819 2007-02-08  Andreia Gaita  <avidigal@novell.com>
6820
6821         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
6822         (the 6 was cut off on the right side)
6823
6824 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
6825
6826         * Form.cs: Tell MenuStrips to close when the form is clicked.
6827         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
6828         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
6829         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
6830         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
6831         support for Overflow, where items that do not fit are automatically
6832         reparented to a drop down menu.
6833         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
6834         Also: fixes bug #80747.
6835
6836 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6837
6838         * ComboBox.cs: Remove warning (unused code).
6839         * ScrollableControl.cs: Remove warning for 1.1 profile.
6840
6841 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6842
6843         * Form.cs: Remove a warning.
6844
6845 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6846
6847         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
6848           'g' specifier, not documented anywhere, but seems to always show up
6849           as a single space (might have something to do with the DateTime 'g'
6850           specifier, which is the era format, but since DateTimePicker can't
6851           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
6852           won't crash if the format has an unmatched quote. Now shows
6853           single-character formats correctly. Fixes #80744.
6854
6855 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
6856
6857         * StatusStrip.cs: Stretch property needs to call base.Stretch,
6858         not this.Stretch to fix stack overflow. [Fixes bug #80760]
6859
6860 2007-02-07  Chris Toshok  <toshok@ximian.com>
6861
6862         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
6863         background color.  it overwrites the background image we've
6864         already painted.  Fixes #80599.
6865
6866 2007-02-07  Chris Toshok  <toshok@ximian.com>
6867
6868         * DataGrid.cs: return immediately from Edit() when there are no
6869         columns.  Fixes #80662.
6870
6871 2007-02-07  Chris Toshok  <toshok@ximian.com>
6872
6873         * MessageBox.cs: fix #80625.  don't always show the Help button in
6874         2.0.  use the displayHelpButton parameter to determine if we
6875         should show it. Also, make the internal show_help field private.
6876
6877 2007-02-07  Chris Toshok  <toshok@ximian.com>
6878
6879         * Control.cs (SetVisibleCore): check in the proposed patch for
6880         80604, and set is_visible before calling CreateControl.
6881
6882 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
6883
6884         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
6885         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
6886         on it.
6887
6888 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
6889
6890         * MenuAPI.cs: hotkey_active internal field added, it is required because
6891         we need to know when hotkeys must be draw, before this change a keystate
6892         Navigating was used but we can have menu in navigating state without
6893         hotkeys. Fixes #80694.
6894         
6895         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
6896
6897 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6898
6899         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
6900           corresponding events and methods to be internal for 1.1 profile and
6901           public for 2.0 profile (required by SizeGrip).
6902         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
6903           implicit control list). Don't set the size nor the location of the
6904           SizeGrip anymore as it's not needed.
6905         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
6906           draw directly on the captured control (fixes #80656). Removed
6907           ShowGrip (it wasn't used anywhere), redraw (always true), added
6908           GetDefaultSize and GetDefaultRectangle to calculate defaults.
6909         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
6910           be called from SizeGrip.
6911
6912 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6913
6914         * Timer.cs: Throw ArgumentException if Interval <= 0.
6915
6916 2007-02-05  Jackson Harper  <jackson@ximian.com>
6917
6918         * TreeView.cs: We need to check scrollbar visibility when window
6919         visibility is updated, because non visible trees don't ever add
6920         scrollbars.
6921         * Cursor.cs: We want the override cursor to be reset to NULL when
6922         we set current cursor to the default cursor.
6923
6924 2007-02-05  Jackson Harper  <jackson@ximian.com>
6925
6926         * TextControl.cs: Don't have crlfs when we are non multiline.
6927         - Consolidate the line position.
6928
6929 2007-02-05  Jackson Harper  <jackson@ximian.com>
6930
6931         * X11Keyboard.cs: BACK+CTRL gets a special char code.
6932
6933 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6934
6935         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
6936           handling LeaveNotify->NotifyUngrab in order to send
6937           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
6938           after calling XUngrabPointer, so we call WindowUngrabbed directly
6939           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
6940         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
6941           MouseCaptureChanged correctly. Also create handles if changing
6942           Capture (matches MS behaviour).
6943
6944 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6945
6946         * SizeGrip.cs: Make the last change 2.0 only.
6947
6948 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6949
6950         * SizeGrip.cs: If resizing and the capture is lost, revert any size
6951           changes to initial size (fixes #80597).
6952
6953 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6954
6955         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
6956
6957 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6958
6959         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
6960           background) and only allow dragging if enabled. This way the
6961           sizegrip can be used to fill the open square that otherwise would
6962           have been shown in the bottom right corner of ScrollableControl
6963           when ScrollableControl is not suppose to support sizing.
6964         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
6965           sizegrip is shown and enabled, and hook up with necessary events.
6966
6967 2007-02-01  Chris Toshok  <toshok@ximian.com>
6968
6969         * DataGridTextBoxColumn.cs: clean up the
6970         GetFormattedString/GetColumnValueAtRow combination of functions.
6971         Also fix UpdateUI, and the initial state of
6972         IsInEditOrNavigateMode.
6973
6974         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
6975         aren't supposed to scroll the textbox here, we're supposed to
6976         scroll the datagrid.
6977
6978 2007-02-01  Chris Toshok  <toshok@ximian.com>
6979
6980         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
6981         setting the position.
6982
6983 2007-02-01  Chris Toshok  <toshok@ximian.com>
6984
6985         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
6986         here, since the most recent focus fixes keep us from generating
6987         the Leave event when our textbox gets focus.
6988         (Edit): we should be passing null for the column style's
6989         instantText parameter.
6990         
6991 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
6992
6993         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
6994         raised.  Fixes menu text/icons not showing up in PDN.
6995
6996 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6997
6998         * Control.cs: Remove code in constructor that makes every
6999         control with WS_CHILD set have initial location -1, -1.
7000
7001 2007-01-31  Jackson Harper  <jackson@ximian.com>
7002
7003         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
7004         XplatUIX11.
7005         * XplatUIX11.cs: Give teh keyboard to teh dnd.
7006
7007 2007-01-31  Jackson Harper  <jackson@ximian.com>
7008
7009         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
7010         - Remove some debug code.
7011
7012 2007-01-31  Jackson Harper  <jackson@ximian.com>
7013
7014         * XplatUIX11.cs: If you set the override cursor during a grab, it
7015         should actually override the grab cursor.  This comes into play
7016         when you are setting custom cursors in a DND feedback method.
7017
7018 2007-01-31  Jackson Harper  <jackson@ximian.com>
7019
7020         * X11Dnd.cs: Add support for handling the QueryContinue and
7021         GiveFeedback events.
7022         - Cancel drag and drop actions when the escape key is clicked.
7023         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
7024         can handle the ESCAPE key.
7025         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
7026         done when dnd events are continued after the button is released.
7027         - Add a new helper method so that dnd can translate key events.
7028
7029 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
7030
7031         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
7032         make it more obvious what is happening.
7033
7034 2007-01-30  Jackson Harper  <jackson@ximian.com>
7035
7036         * XplatUIX11.cs: Don't break when handling button release in drag
7037         and drop operations. We need that BUTTONUP message to get through
7038         so capture is released.
7039         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
7040         this is handled automatically when the mouse is down.
7041
7042 2007-01-30  Jackson Harper  <jackson@ximian.com>
7043
7044         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
7045         is closed, so we need to make sure that we aren't changing the
7046         dialog result when the OK (Open or Save) button has been clicked
7047         and we are closing the window ourselves.  Note we don't need to
7048         worry about the cache being written in this case, because it was
7049         already done in the previous FilOk call.
7050
7051 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7052         
7053         * DateTimePicker.cs: Remove a warning.
7054         * ComboBox.cs: Remove a couple of warnings.
7055
7056 2007-01-29  Chris Toshok  <toshok@ximian.com>
7057
7058         * XplatUIX11.cs: don't crash, and remove the icon if the user has
7059         set one, if SetIcon is passed a null icon.
7060
7061 2007-01-29  Andreia Gaita  <avidigal@novell.com>
7062
7063         * TextBox.cs: Redraw when the password characters changes
7064         * TextControl.cs: Check if textbox has a password char and draw 
7065         a line of password chars instead of the text in the line. LineTag gets 
7066         an extra Draw() method which allows document.Draw to override the text 
7067         that will be drawn. Removes 1024 char limitation on length of passworded 
7068         lines.
7069
7070 2007-01-29  Jackson Harper  <jackson@ximian.com>
7071
7072         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
7073         single chars is not.
7074
7075 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
7076
7077         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
7078         one pixel.  Fix a StackOverflowException caused by an overload wrongly
7079         calling itself.
7080
7081 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
7082
7083         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
7084         also remove ProcessArrowKey and put the code inside ProcessKeys.
7085
7086 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
7087
7088         * PaddingConverter.cs: Added.
7089
7090 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7091         
7092         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
7093         ShowPanels is false (fixes #80600). Only draw up to 127 characters
7094         of text (fixes #80601). For panels clip the text to draw to the
7095         panel (fixes #80603).
7096
7097 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7098
7099         * ComboBox.cs: Fixed implementation of ResetText.
7100
7101 2007-01-25  Jackson Harper  <jackson@ximian.com>
7102
7103         * TextControl.cs: For the last char of a line we need to use the
7104         line size, not that chars width, since it won't actually be
7105         computed since the right side of a char is based on the start of
7106         the left side of the next char, and the next char does not exist.
7107
7108 2007-01-25  Chris Toshok  <toshok@ximian.com>
7109
7110         * Splitter.cs: fix the new unit tests, and reindent some switch
7111         statements.
7112
7113 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7114
7115         * ComboBox.cs: Implemented 2.0 methods and events.
7116         * TextBoxBase.cs: Added OnTextUpdate, so that
7117         ComboBox.ComboTextBox can inform ComboBox of it.
7118
7119 2007-01-25  Jackson Harper  <jackson@ximian.com>
7120
7121         * TextControl.cs: Respect ShowSelection when deciding whether or
7122         not to display the caret, this allows comboboxes to have carets
7123         when the combotextbox does not have focus.
7124
7125 2007-01-25  Jackson Harper  <jackson@ximian.com>
7126
7127         * TextControl.cs: Add a Suspend/Resume for updating, basically the
7128         same as the Suspend/Resume for recalc, except this will do actual
7129         Invalidates.
7130         - New Undo manager, works much like the MS version.
7131         - Implemented Redo
7132         * TextBoxBase.cs: The Cut operation is undoable.
7133
7134 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7135         
7136         * TextBoxBase.cs: Don't antialias text. Makes it look way better
7137         on Windows (no difference on Linux).    
7138
7139 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7140
7141         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
7142         we don't want to activate any windows. Fixes #79433.
7143
7144 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
7145
7146         - ButtonBase.cs: Fix capitalization of parameter: disposing.
7147         [Fixes bug #80609]
7148
7149 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
7150
7151         * FileDialog.cs:
7152         - Move to using System.ComponentModel.EventHandlerList
7153         - Replace Refresh with Invalidate
7154         - Clear the mime filecache on closing
7155         - Some other memory reducing work. After beeing closed FD now uses
7156           only about 300 KB for the fdo mime stuff plus the memory of the
7157           cached icons.
7158         * Mime.cs: Changed coding style and removed unnecessary commented
7159         code. Some more memory memory reducing work.
7160
7161 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7162
7163         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
7164         a few other missing 2.0 properties.
7165         * Theme.cs: Added DrawFlatStyleComboBox.
7166         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
7167
7168 2007-01-24  Chris Toshok  <toshok@ximian.com>
7169
7170         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
7171         wake_waiting flag, not just when there's data to be read.  if we
7172         don't, then future wakeup's won't reach us and we'll be doomed to
7173         wait for the entire 1 second timeout forever (unless there are X
7174         events to be had).
7175
7176 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
7177
7178         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
7179         until you pass Items.Count, not Items.Count - 1 like 1.1.
7180
7181 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
7182
7183         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
7184
7185 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
7186
7187         * ToolStripContainer.cs: The recent Dock fix exposed that I was
7188         adding the panels in the wrong order.
7189
7190 2007-01-24  Jackson Harper  <jackson@ximian.com>
7191
7192         * TextBoxBase.cs: When we move the caret we also need to move the
7193         selection, this fixes some random crashing after doing select
7194         text, unselect, delete a char, paste.
7195
7196 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7197
7198         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
7199
7200 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
7201
7202         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
7203         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
7204         * ToolBar.cs: Force redraw in BackgroundImageChanged.
7205
7206 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
7207
7208         * ToolBar.cs:
7209         - Implement support for vertical toolbars. Fixes #80539;
7210         - Call LayoutToolBar when resize, it fix some other problems in layout.
7211         - Rename requested_height to requested_size, as we can have width on it
7212         when toolbar is vertical.
7213         - Create a private property "Vertical" that uses Dock to verify when 
7214         toolbar is vertical or not.
7215         - Set ControlStyles when change Dock property.
7216         - Refactory in LayoutToolBar to have better variables names and to support
7217         vertical toolbars.
7218         - Fixes default value for ButtonSize when button count is equal zero, size
7219         must be (39, 36) test case writed.
7220
7221 2007-01-23  Chris Toshok  <toshok@ximian.com>
7222
7223         * Control.cs: fix the checks so that they work correctly for mdi
7224         parents/children.
7225
7226 2007-01-23  Chris Toshok  <toshok@ximian.com>
7227
7228         * Control.cs: ControlCollection seems to have super-secret
7229         abstraction breaking knowledge of Mdi containers.  allow MdiClient
7230         to add toplevel controls.
7231
7232 2007-01-23  Chris Toshok  <toshok@ximian.com>
7233
7234         * Control.cs: throw an ArgumentException if a toplevel control is
7235         added to our control collection from ControlCollection.Add, as
7236         well as from ControlCollection.IList.Add.  This fixes the
7237         ControlSetTopLevelTest.TestTopLevelAdd unit test.
7238
7239         Also, in ControlCollection.IList.Add, don't through an
7240         ArgumentNullException, throw an ArgumentException, when value ==
7241         null.  This matches MS.
7242
7243 2007-01-23  Chris Toshok  <toshok@ximian.com>
7244
7245         * BindingSource.cs: initial, incomplete, implementation of
7246         BindingSource.
7247
7248 2007-01-23  Jackson Harper  <jackson@ximian.com>
7249
7250         * TextControl.cs:
7251         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
7252         that I can fix a broken unit test (TextBoxTest::ClearUndo)
7253         
7254 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
7255
7256         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
7257
7258 2007-01-23  Andreia Gaita  <avidigal@novell.com>
7259
7260         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
7261         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
7262         IndexOfKey() for 2.0
7263
7264 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7265
7266         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
7267         to prevent it from changing z-order.
7268         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
7269         leave UI updates in MdiWindowManager.
7270         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
7271         1 sized (NC handling goes weird on Linux otherwise).
7272         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
7273         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
7274         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
7275         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
7276         and SetWindowState(s) to allow for changing the size of an activated child
7277         before activating it (reduces a lot of flicker).
7278
7279 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
7280
7281         * Form.cs: Changing FormBorderStyle has different semantics based
7282         on whether the Form is visible or not.  If not visible, don't change
7283         the Size.  But InvalidateNC needs to be called to force the window
7284         to pick up the changes and redraw itself.  [Fixes bug #80574]
7285
7286 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
7287
7288         [Moma work]
7289         * ContainerControl.cs: ProcessCmdKey.
7290         * ErrorProvider.cs: new constructor.
7291         * Form.cs: fix AutoValidateEvent compiler warning.
7292         * Label.cs: fix OnAutoSizeChanged compiler warning.
7293         * MenuStrip.cs: fix CanOverflow compiler warning.
7294         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
7295         * TextBox.cs: Dispose.
7296         * ToolStrip.cs: CanOverflow, re-enable double buffering.
7297         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
7298         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
7299         * ToolStripItem.cs: Overflow, RightToLeft properties.
7300
7301 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7302
7303         * Form.cs: Move the layout of the main form to MdiWindowManager.
7304         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
7305         do a layout of the main window to update MdiClient's client area to
7306         the right area. Fixes #80533. Remove the calculation of nc size, 
7307         it was just wrong and the correct one is the same as for 
7308         InternalWindowManager. 
7309
7310 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
7311
7312         * Control.cs: Setting Anchor or Dock needs to reset the other
7313         to its default.  [Fixes bug #80556]
7314
7315 2007-01-20  Chris Toshok  <toshok@ximian.com>
7316
7317         * CheckedListBox.cs: class status changes.
7318
7319         * ScrollableControl.cs: same.
7320
7321         * RichTextBox.cs: same.
7322
7323         * ContainerControl.cs: same.
7324
7325         * ListView.cs: same.
7326
7327         * NotifyIcon.cs: same.
7328
7329         * MenuStrip.cs: same.
7330
7331         * RadioButton.cs: same.
7332
7333         * CheckBox.cs: same.
7334
7335         * PrintPreviewDialog.cs: same.
7336
7337         * Form.cs: same.
7338
7339 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
7340
7341         * TreeNode.cs: Apply Alan's patch for Name property.
7342
7343 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7344         
7345         * Form.cs: Implemented SizeGripStyle.
7346         * SizeGrip.cs: Check for minimum and maximum size for the
7347         control being resized and only resize if size has actually
7348         changed.
7349
7350 2007-01-19  Chris Toshok  <toshok@ximian.com>
7351
7352         * DataGridColumnStyle.cs: stop setting _readonly in the
7353         PropertyDescriptor setter.  fixes a unit test failure.
7354
7355         also, rename ParentReadOnly to TableStyleReadOnly, and have it
7356         just consult our table style (if we have one).  We don't need to
7357         consult the datagrid readonly attribute because that's passed in
7358         as the _ro arg to Edit.  this simplifies things a little.
7359         
7360         * DataGrid.cs: use CurrentColumn instead of
7361         current_cell.ColumnNumber just to simplify some of the code.
7362
7363         switch the order of some things in the CurrentCell setter to keep
7364         the previous cell from getting a textbox again -
7365         EnsureCellVisibility causes scrolling to happen, which calls Edit.
7366         So we need to set the new cell before calling it.
7367         
7368         call Edit in OnEnter, as does Microsoft.
7369         
7370         also, make sure the current table style isn't the one we create
7371         initially when checking to see if it's different than the one
7372         we're setting it to in BindColumns (this fixes #80421).
7373
7374         * GridTableStylesCollection.cs: table styles can have "" for a
7375         mapping name.  part of the fix for #80421.
7376
7377         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
7378         Edit significantly.
7379
7380 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
7381
7382         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
7383         and less GDI object leaky-er.
7384
7385 2007-01-18  Andreia Gaita  <avidigal@novell.com>
7386
7387         * LinkLabel.cs: Add opaque control style
7388
7389 2007-01-18  Jackson Harper  <jackson@ximian.com>
7390
7391         * TextControl.cs: Calculate width properly.
7392         - Don't store the tag's X offset, this can be figured out very
7393         easily.
7394         - When getting the caret tag make sure to get the last empty tag.
7395
7396 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
7397
7398         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
7399         [Fixes bug #79959]
7400
7401         * Control.cs: Color.Empty shouldn't count for previous transparent
7402         redraw changes.
7403
7404 2007-01-18  Jackson Harper  <jackson@ximian.com>
7405
7406         * TextBox.cs:
7407         * RichTextBox.cs:
7408         * TextControl.cs: Starting to merge in some pieces of my older
7409         undo work.  Basically just some slight cleanup of the undo API.
7410
7411 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7412
7413         * TrackBar.cs: Fix signature of RightToLeftLayout.
7414         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
7415         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
7416         * Application.cs: Implemented UseWaitCursor.
7417
7418 2007-01-18  Jackson Harper  <jackson@ximian.com>
7419
7420         * TextControl.cs: We can't skip tags if any part of the tag is
7421         visible.
7422
7423 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
7424
7425         * ContainerControl.cs: Override OnLayout.
7426
7427 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
7428
7429         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
7430
7431         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
7432         everything else.
7433
7434 2007-01-18  Chris Toshok  <toshok@ximian.com>
7435
7436         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
7437         (leftover from the container_selected days, I'd wager).  fixes bug
7438         #80546.
7439
7440 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
7441
7442         * Control.cs: Apply patch from George to fix the new testcase on
7443         bug #80451.  We can't just check for Color.Transparent, we need 
7444         to check if the back color's alpha channel is < 255.
7445
7446 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
7447
7448         * Form.cs: Move setting show_icon = true to before the constructor
7449         so that the base constructor has that information when it calculates
7450         the form's size.  Was causing forms to be (6, 6) bigger than they
7451         were supposed to be.  Thanks for catching this Rolf!
7452
7453 2007-01-18  Jackson Harper  <jackson@ximian.com>
7454
7455         * TextControl.cs: When replacing a selection we need to invalidate
7456         from the initial selection start, because selection start is moved
7457         to the end of the replacement.
7458
7459 2007-01-18  Andreia Gaita  <avidigal@novell.com>
7460
7461         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
7462
7463 2007-01-18  Chris Toshok  <toshok@ximian.com>
7464
7465         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
7466         I just added.
7467
7468 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
7469
7470         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
7471         layout methods and properties from ToolBarButton must be available
7472         into ToolBarButtonInfo.
7473
7474 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
7475
7476         * Control.cs: If the control has a transparent background, we
7477         need to refresh it when it moves and when it's parent's background
7478         image changes.  [Fixes bug #80451]
7479
7480 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
7481
7482         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
7483
7484 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
7485
7486         * XplatUIWin32.cs: Implement proper double buffering for Windows.
7487         [Fixes bug #80447, and probably speeds up things as well]
7488
7489 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7490
7491         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
7492         * XplatUIWin32.cs: We need to recalculate NC size after changing 
7493         window style to toolwindow (otherwise the client rectangle will be
7494         3 pixels to small for some reason).
7495         * MdiWindowManager.cs: Revert NC size calculations to match how
7496         they are calculated only based on window styles (to match
7497         Win32AdjustWindowRectEx, since otherwise when setting size or 
7498         location, Control will call Win32AdjustWindowRectEx to update client 
7499         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
7500         calculate a different value of client size causing another paint 
7501         (and flickering))
7502         * InternalWindowManager.cs: When moving or resizing a window only
7503         update size or location if they actually changed.
7504         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
7505         (seems to match Windows behaviour better). Cleaned up 
7506         ManagedWindowDecorations to draw what's needed and nothing else
7507         (was drawing borders and lines where they shouldn't be)
7508         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
7509         (style = 0xFFFF) and takes into account caption height when 
7510         calculating window rectangle.   
7511
7512 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
7513
7514         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
7515         can be added to toolbar multiple times, we need to maintain a list of 
7516         button information for each positions.
7517
7518 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
7519
7520         * ToolBar.cs: Some small stetic changes.
7521
7522 2007-01-16  Jackson Harper  <jackson@ximian.com>
7523
7524         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
7525         that allow us to have nested recalc = false blocks.
7526         - Add paste support for images in the RichTextBox
7527         * RichTextBox.cs: flush the text after the color is changed, so
7528         the change takes effect.
7529         - Use SuspendRecalc
7530         - Some extra debugging info
7531         * TextControl.cs: Tags no longer track their length, it is just
7532         computed from the next tags length, this makes things a little
7533         simpler and reduces places that we have to track length changes.
7534         - Refactored the linetag class a little so we could make it
7535         a base class for different kinds of tags
7536         - Created a image tag, a tag that can have a single image inserted
7537         into it
7538         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
7539         that we can call suspend multiple times.
7540         - Add some debugging methods
7541
7542 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7543
7544         * MdiClient.cs: Add ActivatePreviousChild for 
7545         mdi child window navigation.
7546         * Form.cs: Use MdiClient.ActivateNextChild/
7547         ActivatePreviousChild instead of Form.SelectNextControl
7548         to select the next/previous child since 
7549         SelectNextControl doesn't do it in the same order
7550         as mdi children should do it.
7551
7552 2007-01-16  Chris Toshok  <toshok@ximian.com>
7553
7554         * Control.cs: remove container_selected field.
7555
7556 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7557
7558         * MdiClient.cs: Update main form's ActiveChild when
7559         updating keyboard focus for the mdi child.
7560
7561 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
7562
7563         * Control.cs: PreferredSize fix.
7564
7565         * Form.cs: Add several 2.0 events, properties, and methods.
7566
7567 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
7568
7569         * Form.cs: Provide meaningful message when MdiParent is assigned a
7570         Form that is not an MdiContainer.
7571
7572 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7573
7574         * MdiClient.cs: Update main form's ActiveChild when
7575         activating a mdi child.
7576
7577 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7578
7579         * MdiWindowManager.cs: Fix NRE when merging menus and main form
7580         doesn't have a menu.
7581
7582         * Form.cs: Request NCRecalc after creating a mdi child window.
7583         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
7584         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
7585         
7586         * MdiClient.cs: Add new method SendFocusToActiveChild that either
7587         sends keyboard focus to the active child, or to the MdiClient
7588         if there are no child forms.
7589         
7590 2007-01-15  Chris Toshok  <toshok@ximian.com>
7591
7592         * ListView.cs: drop the *Internal overrides, just do our work in
7593         ItemControl's WndProc instead.
7594
7595         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
7596         of the various controls, and forward the events properly (in the
7597         same manner as MS) from the textbox to the UpDown.  Also the
7598         ActiveControl of the UpDownBase gets set properly now.  Finally,
7599         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
7600
7601         * NumericUpDown.cs: set Text in the ctor.
7602
7603         * DomainUpDown.cs: call UpdateEditText in the ctor.
7604         
7605         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
7606         so even a Selectable = false textbox can be focused if you click
7607         in it.  Go figure.
7608
7609         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
7610         just add their handling in their respective WndProc's.  Also add
7611         an explicit FocusInternal method that doesn't consult CanFocus
7612         before calling Select(this).
7613
7614         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
7615         do our work in WndProc instead.
7616
7617         * TabControl.cs: same.
7618
7619         * ComboBox.cs: same.
7620
7621 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
7622
7623         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
7624         Fixes #80006.
7625
7626 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
7627
7628         * ListViewItem.cs:
7629         * ThemeWin32Classic.cs: Don't draw the item text outside
7630         item bounds in Details view, as well as use trimming.
7631         Fixes bug #80376.
7632
7633 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
7634
7635         * Form.cs: Implement Form.ShowIcon.
7636         
7637         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
7638         null, which when combined with the DlgModalFrame window style removes
7639         the icon from the title bar.
7640
7641 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
7642
7643         * Control.cs: Call OnMouseClick after OnClick. (2.0)
7644
7645 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
7646
7647         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
7648         menu when mdi child windows theres a menu, uses insert to get icon
7649         at first position. Partially fix #80006.
7650
7651 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
7652
7653         * Clipboard.cs: Implement 2.0 methods.
7654
7655 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
7656
7657         * Menu.cs: Implement Insert method of MenuItemCollection class
7658         to fix MenuMerge.
7659
7660 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7661
7662         * ListView.cs: Implement 2.0 FindItemWithText method.
7663
7664 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
7665
7666         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
7667         to calculate menu bar size. Fixes #80290.
7668
7669 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
7670
7671         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
7672
7673 2007-01-11  Chris Toshok  <toshok@ximian.com>
7674
7675         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
7676         initial form.
7677
7678 2007-01-11  Chris Toshok  <toshok@ximian.com>
7679
7680         * LinkLabel.cs: make sure to call base.Select in our Select method
7681         if it turns out we're going to be selected (i.e. if we have a link
7682         that is going to receive focus).  That way our container's
7683         ActiveControl is updated properly.
7684
7685 2007-01-11  Chris Toshok  <toshok@ximian.com>
7686
7687         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
7688         they have 1 or more links.  this fixes the crash gert reported.
7689
7690 2007-01-11  Andreia Gaita  <avidigal@novell.com>
7691
7692         * ContainerControl.cs: Remove ContainerSelected flag, not needed
7693         anymore.
7694
7695         * Control.cs (Controls.Add): Check if control to be added to the collection
7696         is a top level control, and throw an ArgumentException if it is.
7697         Remove ContainerSelectedFlag, not needed anymore.
7698
7699         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
7700         top most control doesn't activate the form. This fixes a problem in the
7701         MessageBox, where the default button wouldn't get focus because the form
7702         was activated before being Loaded - when the Owner is set, SetTopMost is
7703         called, and it would activate it.
7704
7705 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
7706
7707         * Button.cs: When clicked and setting the parent form's DialogResult,
7708         use FindForm instead of Parent, since parent could be a container
7709         control and not the Form.  Fixes bug #80495.
7710
7711 2007-01-10  Chris Toshok  <toshok@ximian.com>
7712
7713         * Form.cs: move the call to SendControlFocus into the same
7714         is_loaded check.
7715
7716 2007-01-10  Chris Toshok  <toshok@ximian.com>
7717
7718         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
7719         It breaks in the face of the new ActiveControl stuff, and should
7720         be unnecessary.
7721
7722         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
7723         activecontrol's focus if it's not already set, after we set
7724         ActiveControl, but before we call OnActivated.  Re-fixes #79667
7725         after the previous focus/active control fixes regressed it.
7726
7727         * Control.cs: reindent some code.
7728         
7729 2007-01-10  Chris Toshok  <toshok@ximian.com>
7730
7731         * Splitter.cs: clearing some outstanding changes from my tree.
7732         Replace all accesses (not writes) to the internal dock_style field
7733         with the Dock property.
7734
7735 2007-01-10  Chris Toshok  <toshok@ximian.com>
7736
7737         * Control.cs: make FireEnter, FireLeave, FireValidating, and
7738         FireValidated virtual.
7739
7740         * Form.cs: override and don't chain up calls to FireEnter and
7741         FireLeave.
7742
7743 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7744
7745         * ListView.cs: Add more text padding space when using
7746         auto resize for columns (the previous value didn't work fine).
7747
7748         * ThemeWin32Classic.cs: Update text position inside columns,
7749         to match the appeareance of .Net.
7750
7751         * ColumnHeader.cs: When using auto resize, only the Width should
7752         depend on the sub items, not the Height. Also, set width after
7753         auto resizing (the value of Width should never remain as -1 or -2).
7754
7755 2007-01-10  Chris Toshok  <toshok@ximian.com>
7756
7757         * Application.cs: fix compilation errors when debug is enabled.
7758
7759 2007-01-10  Chris Toshok  <toshok@ximian.com>
7760
7761         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
7762         add some nice ascii art pictures and explanation of the process).
7763         (GetMostDeeplyNestedActiveControl): new utility function we need
7764         because our ActiveControl can refer to a child container with its
7765         own ActiveControl.
7766
7767         * Form.cs (OnActivated): remove the call to SelectActiveControl
7768         from here, since you can override this method and not chain up,
7769         and winforms still sets the active control.
7770         (OnCreateControl): also remove the unnecessary SelectActiveControl
7771         call from here.
7772         (WndProc): it's actually called from the WM_ACTIVATE block, just
7773         before calling OnActivated.
7774
7775         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
7776         inside the else.  the ActiveControl setter will end up setting
7777         focus on @control.  This keeps us from setting it again (and
7778         generating an extra LostFocus/GotFocus pair).
7779         (Select (bool, bool)): reindent.
7780
7781 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
7782
7783         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
7784         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
7785         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
7786         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
7787         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
7788         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
7789         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
7790         ToolStripTextBox.cs: Another wave of corcompare work.
7791
7792 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7793
7794         * ColumnHeader.cs: Implement 2.0 AutoResize method using
7795         the Width property.
7796
7797         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
7798         methods by callling Column.AutoResize method on columns.
7799
7800 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
7801
7802         * Control.cs: Provide proper implementations of PreferredSize
7803         and GetPreferredSize (2.0).
7804
7805 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
7806
7807         * Form.cs: Remove one character (!) to make my previous OnClosing
7808         stuff work for modal windows like MessageBox.
7809
7810 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7811
7812         * ListView.cs:
7813         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
7814         ListView.Columns to get the last displayed column. Fixes #80452.
7815
7816 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
7817
7818         * Label.cs, LinkLabel.cs: Source code identation fixes.
7819
7820 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
7821
7822         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
7823         we dont need to invalidate only borders because when we invalidate four
7824         border lines the invalidate's generates a complete redraw of button, 
7825         because it now invalidate a complete rect some other redraws operations
7826         are fixed. Fixes #80196.
7827         
7828         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
7829         Remove ToolBarInvalidateEntireButton as it is not used.
7830
7831 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
7832         
7833         * Form.cs: Make sure that both OnClosing and OnFormClosing are
7834         called for 2.0 profile.
7835         * CloseReason.cs: Make class internal for 1.1.
7836
7837 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
7838
7839         * ToolStripManager.cs: Implement FindToolStrip functionality.
7840         * ToolStrip.cs: Register and unregister with ToolStripManager.
7841
7842 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
7843
7844         * Control.cs: This was messy.  2.0 moves much of ControlCollection
7845         to ArrangedElementCollection.  Implemented this with as few #if's as 
7846         possible (which is still too many).
7847
7848 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
7849
7850         * Control.cs: Implement SizeFromClientSize() [2.0].
7851
7852 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
7853
7854         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
7855         use Theme.BorderSize to calculate area instead of static value 1, 
7856         by the way use new BorderStaticSize instead     Border3DSize when 
7857         border_static is true. Fixes #79537.
7858         
7859         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
7860         
7861         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
7862         it is not needed.
7863
7864 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
7865
7866         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
7867
7868 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
7869
7870         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
7871         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
7872         
7873         * Hwnd.cs: 
7874         - border_static field added, it will used to define when a control 
7875         theres 3D border but it must be static (thin).
7876         - In GetWindowRectangle use Theme.BorderSize to calculate area 
7877         instead of static value 1, by the way use new BorderStaticSize instead
7878         Border3DSize when border_static is true.
7879
7880         * XplatUIX11.cs, XplatUIOSX.cs: 
7881         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
7882         
7883         * Theme.cs: BorderStaticSize field added.
7884
7885 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
7886
7887         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
7888
7889 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
7890
7891         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
7892         mimic same behavior than win32 that set border only in CreateParams,
7893         it fix problems under CreateParams overrides. Fix #79442 and partial
7894         fix #79537.
7895         
7896         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
7897         of thi control you must call recreate handle. 
7898         
7899         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
7900         need to do anything as RecreateHangle will take care about borders.
7901
7902 2007-01-05  Mike Kestner  <mkestner@novell.com>
7903
7904         * ListView.cs: hack to eliminate Lost/Got focus notifications on
7905         cycles between the ItemControl and parent.  Fixes #80388.
7906
7907 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
7908
7909         * Control.cs: Lazy init layout engine. Do not directly use 
7910         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
7911
7912 2007-01-05  Chris Toshok  <toshok@ximian.com>
7913
7914         * DataGrid.cs: don't forceably rebind columns in SetDataSource
7915         unless our list manager has changed (i.e. unless we have reason to
7916         believe our columns have changed).  Fixes #80422.
7917         
7918         also, disable the call do BindColumns in
7919         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
7920         1.1 the event isn't raised in response to a column addition on a
7921         table.)
7922
7923 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
7924
7925         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
7926         that inheritors can not call it if they choose.  Fixes bug #80456.
7927
7928 2007-01-05  Andreia Gaita  <avidigal@novell.com>
7929
7930         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
7931         doesn't blow up with a null exception on marshalling.
7932         
7933 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
7934
7935         * Control.cs: Implement several 2.0 protected properties and methods.
7936         Ensure that all necessary events are being called when properties
7937         are set.
7938
7939 2007-01-05  Mike Kestner  <mkestner@novell.com>
7940
7941         * ListView.cs: implement PgUp/PgDn for Details view.  Also
7942         fixes First/LastVisibleIndex to use the item_control.ClientRect 
7943         instead of the parent control.  Fixes #80378.
7944
7945 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
7946
7947         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
7948           determine whether to use yard-pound or not (bug #78399).
7949
7950 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
7951
7952         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
7953         problems. So it is time to bring back the old popupbutton colors.
7954
7955 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7956
7957         * ColumnHeader.cs:
7958         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
7959         property by using the internal information of the
7960         columns order in ListView.
7961
7962 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
7963
7964         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
7965         Add 2.0 Tag properties.
7966
7967         * LinkArea.cs: Add 2.0 ToString method.
7968
7969 2007-01-03  Chris Toshok  <toshok@ximian.com>
7970
7971         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
7972         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
7973         when we're editing, which fixes #80047.
7974
7975 2007-01-03  Chris Toshok  <toshok@ximian.com>
7976
7977         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
7978         #80404.
7979
7980 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
7981
7982         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
7983         property and implementation.
7984
7985         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
7986         for MdiWindowListItem property.
7987
7988         * ToolStripDropDown.cs: Don't consider hidden menu items while
7989         laying out the menu.
7990
7991 2007-01-03  Andreia Gaita  <avidigal@novell.com>
7992
7993         * SendKeys.cs: window handle is not needed in win32, so just
7994         get the active window for X after parsing keys and don't use
7995         it when building the message; it is passed by parameter to the 
7996         Xplat method and used there to build the message instead. Also,
7997         wait for events to be processed on SendWait, as opposed to Send,
7998         which doesn't wait :) Playing with threads and Send() completely 
7999         hangs on ms.net, only SendWait() works.
8000         
8001         XplatUIX11.cs
8002         X11Display.cs: Check for valid window handle.
8003
8004 2007-01-03  Jackson Harper  <jackson@ximian.com>
8005
8006         * TextControl.cs: Need to prevent wrap calculations when replacing
8007         text (this was there before i removed it accidently).
8008         - Don't update the cursor during the positioning, just set it to
8009         selection_start at the end of the operaion.
8010
8011 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8012
8013         * Control.cs:
8014         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
8015         
8016 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8017
8018         * MonthCalendar.cs: Added Click and DoubleClick events again,
8019         but this time they only hide Control's Click and DoubleClick.
8020         
8021 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
8022
8023         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
8024         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
8025
8026 2007-01-02  Jackson Harper  <jackson@ximian.com>
8027
8028         * TextBoxBase.cs: We move the caret with the split now, so we
8029         don't need to explicitly move the caret after splitting.  This
8030         fixes the caret bumping down an extra line on Enter.
8031
8032 2007-01-02  Miguel de Icaza  <miguel@novell.com>
8033
8034         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
8035         2.72). 
8036
8037         * ScrollableControl.cs: Add Scroll event.
8038
8039 2007-01-02  Mike Kestner  <mkestner@novell.com>
8040
8041         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
8042         to fix all hdr height padding codepaths.  Fixes #80207.
8043
8044 2007-01-02  Chris Toshok  <toshok@ximian.com>
8045
8046         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
8047         setting it to the Control defaults anyway, and it being after the
8048         Dock set was screwing up layout.
8049         (set_Dock): don't short circuit out of setting base.Dock.  Also,
8050         no need to call UpdateStatusBar here, as it'll be re-layed out if
8051         it needs to be.
8052
8053 2007-01-02  Mike Kestner  <mkestner@novell.com>
8054
8055         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
8056         to header height for width == -1. Fixes the rest of #80207.
8057
8058 2007-01-02  Mike Kestner  <mkestner@novell.com>
8059
8060         * ListView.cs: rework the mouse event forwarding everaldo added
8061         to translate the coordinates to the parent control not
8062         raise the parent events until after we've done our work. Hover
8063         needs more work, in the case where HoverSelection is on, because
8064         the item control receives more than one MouseHover per Enter
8065         event, so we need to ensure only the "first" hover gets forwarded.
8066         Opening a minor bug for that.
8067
8068 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
8069
8070         * CheckedListBox.cs: Fixed SelectionMode to match MS.
8071         * ListControl.cs: Implemented AllowSelection property. Removed extra
8072         tabs.
8073         * ListBox.cs: Implemented AllowSelection property.
8074
8075 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8076
8077         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
8078         SelectedItem, it prevent for errors when you must disable item
8079         before perform click. Fixes #80409.
8080
8081 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8082
8083         * MenuAPI.cs: Prevent second level and beyond submenus to close
8084         until first level when move out side of popup.
8085         
8086 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8087
8088         * MenuAPI.cs:
8089         - Down submenu positin in three pixels.
8090         - Closes sub menu when mouse leaves from menu. Fixes #80402.
8091
8092 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
8093
8094         * ThemeWin32Classic.cs:
8095         - Fix popup menu size adding one pixel on the top.
8096         - Down menu item border from two to one to mimic Win32.
8097         - Some source identation fixes. 
8098
8099 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
8100
8101         * ThemeWin32Classic.cs: Use float numbers to calculate size and
8102         position of menu arrows, it fix wrong arrow size.
8103
8104 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
8105
8106         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
8107         instead of line, it simplify draw operation and fix it using 3D
8108         borders to mimic Win32.
8109
8110 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
8111
8112         * StatusStrip.cs: Add implementation of the sizing grip.
8113
8114         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
8115         StatusStrip rendering.
8116
8117 2006-12-31  Chris Toshok  <toshok@ximian.com>
8118
8119         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
8120         override the layout style (anchor/dock) of the control.  assign to
8121         Dock instead.  Fixes bug #80416.
8122
8123         * ToolStrip.cs: same.
8124
8125 2006-12-31  Andreia Gaita  <avidigal@novell.com>
8126
8127         * ContainerControl.cs: Use ContainerSelected flag to check if 
8128         a Container is directly selected, or if Select is called on a 
8129         non-container. If a container is directly selected, focus events 
8130         should not be raised.
8131         Apply #80411 patch to throw exception on set_ActiveControl if 
8132         control is the same as the current one.
8133         
8134         * Control.cs: Use ContainerSelected flag (see above).
8135         Add invalidation check to raise event but not invalidate if 
8136         dimensions are 0.       
8137         Apply #80411 patch.
8138         
8139
8140 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
8141
8142         * MenuAPI.cs: After click, dont close popup menu when menu is
8143         ContextMenu. Fixes #80399.
8144
8145 2006-12-30  Chris Toshok  <toshok@ximian.com>
8146
8147         * ContainerControl.cs: make sure we throw the exception if the
8148         container control doesn't contain the control we're setting
8149         ActiveControl to.
8150
8151 2006-12-30  Chris Toshok  <toshok@ximian.com>
8152
8153         * Control.cs (SetTopLevel): fix the exception raised by
8154         SetTopLevel for child controls.
8155         (set_Anchor): call UpdateDistances when setting the anchor type.
8156         This fixes bug #80336.
8157
8158 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
8159
8160         * Theme.cs: For now, revert back to 8pt font.
8161
8162 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
8163
8164         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
8165         Fixes #80395.
8166
8167 2006-12-29  Chris Toshok  <toshok@ximian.com>
8168
8169         * Control.cs: reorder the code in OnResize to give the same event
8170         ordering as MS.
8171
8172 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8173
8174         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
8175         TileHorizontally and TileVertically.
8176         
8177 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
8178
8179         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
8180         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
8181         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
8182         Corrected copyright and email adress.
8183
8184 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
8185
8186         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
8187         of Exception in FullPath property if no TreeView is associated with
8188         the TreeNode.
8189
8190 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
8191
8192         * Theme.cs: Marked default_font as private, and initialize it in ctor
8193         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
8194         on 2.0 profile.
8195         * ThemeGtk.cs: Removed default_font intialization.
8196         * ThemeWin32Classic.cs: Removed default_font initialization.
8197
8198 2006-12-28  Chris Toshok  <toshok@ximian.com>
8199
8200         * Control.cs: fix a couple of place where we were creating handles
8201         more aggressively than we should be.  Fixes ControlRefresh unit
8202         tests.
8203
8204 2006-12-28  Chris Toshok  <toshok@ximian.com>
8205
8206         * Control.cs: contrary to what the comment said, Control.Dock does
8207         not supercede Control.Anchor - the last one you assign to decides
8208         the layout behavior.  so we need to keep track of which was the
8209         last set.  Also, fix some of the affected property arguments in
8210         PerformLayout calls, and remove an redundant parent.PerformLayout
8211         call in OnResized.
8212
8213         Add a VisibleInternal property, which returns is_visible.  We
8214         can/should get rid of all the usage of this field elsewhere.
8215
8216 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8217         
8218         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
8219         control style, not DoubleBuffer. Added UseDoubleBuffering property
8220         that indicates whether doublebuffering is enabled and supported.
8221         (comment from and code based on Gert Driesen's patch in #80324).
8222         Fixes #80324.
8223
8224 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8225         
8226         * Control.cs: Fixed a NRE.
8227
8228 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8229
8230         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
8231         for 2.0.
8232
8233 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8234
8235         * Control.cs: Rewrote double buffering, now a seperate
8236         class handles all the buffering, no Graphics is disposed of
8237         until the painting is finished (earlier implementation 
8238         would crash if the control was resized in the OnPaint, 
8239         since it would cause the double buffer to be recreated
8240         and the old one disposed), a separate Graphics is 
8241         created for every paint (MS behaviour and anyways the state
8242         of the Graphics would have to be saved and restored otherwise)
8243         
8244         * XplatUIDriver.cs: 
8245         * XplatUIX11.cs:
8246         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
8247         so that we can get the graphics for the back buffer without
8248         having to create a new one and remove the offscreen_dc parameter
8249         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
8250         
8251 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8252
8253         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
8254         Also make virtual all the key-related methods.
8255
8256         * ListViewItem.cs: Make virtual the key related methods for
8257         ListViewSubItemCollection.
8258
8259 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8260
8261         * ListView.cs:
8262         * ListViewItem.cs:
8263         * ThemeWin32Classic.cs:
8264         * Theme.cs: Initial support for Tile view in ListView,
8265         as well as the implementation of the required bits for it (Item
8266         and Subitem).
8267
8268 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8269
8270         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
8271         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
8272         Provide useful exception messages.
8273
8274 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8275
8276         * TrackBar.cs: Remove a warning.
8277         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
8278         when used by DateTimePicker, fixes #80287. This also requires that 
8279         MonthCalendar implements it's own drawing for the yearly updown control,
8280         otherwise the Capture tracking would be too complicated. Removed the Click 
8281         and DoubleClick events (according to comments they were hiding the base class
8282         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
8283         raise these events, not that they cannot be raised. It is possible to raise 
8284         them by calling OnClick and OnDoubleClick). Added two internal fields in 
8285         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
8286         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
8287         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
8288         event, no longer needed.
8289         
8290 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8291
8292         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
8293         true if new value differs from current value.
8294
8295 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8296
8297         * Control.cs: ControlCollection.Count must be public. Fixed build of
8298         unit tests.
8299
8300 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8301
8302         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
8303
8304 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
8305
8306         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
8307
8308 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
8309
8310         * Control.cs: Invalidates control including when Width and Height is 
8311         equal zero or is not visible, only Paint event must be care about 
8312         this. Fixes #79913.
8313
8314 2006-12-26  Chris Toshok  <toshok@ximian.com>
8315
8316         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
8317         more corcompare work.
8318
8319         * DataGridView.cs: fix compiler warning.
8320
8321         * ColumnHeader.cs: some corcompare work, and also take the
8322         opportunity to make the internal fields private.
8323
8324         * ListView.cs: fix the fallout from the above field change.
8325
8326 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
8327
8328         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
8329         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
8330         ToolStripTextBox.cs: Fixes to events and corcompare.
8331
8332 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
8333
8334         * ListView.cs: Call owner.OnMousexx event to propagate events from
8335         item to ListView. Fixes #80367.
8336
8337 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
8338
8339         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
8340         if value is less than one. ItemHeight should not be set to a value
8341         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
8342         Removed extra tabs.
8343
8344 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
8345
8346         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
8347         * ToolStripStatusLabel.cs: Add Spring for Moma.
8348
8349 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
8350
8351         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
8352         Fixed code formatting. Removed debug code.
8353         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
8354
8355 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
8356
8357         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
8358         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
8359         ArgumentOutOfRangeException if ColumnCount is negative. In 
8360         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
8361         less than 4 or higher than 32768.
8362         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
8363         Fixed FormatProvider to return CurrentCulture unless explicitly set.
8364         Fixed IsFormatProviderDefault to return true if FormatProvider has
8365         not been explicitly set.
8366
8367 2006-12-25  Chris Toshok  <toshok@ximian.com>
8368
8369         * Application.cs: add a couple of 2.0 events.
8370
8371 2006-12-25  Chris Toshok  <toshok@ximian.com>
8372
8373         * Control.cs: fix compiler warning.
8374
8375         * AxHost.cs: corcompare fixes.
8376
8377         * ApplicationContext.cs: corcompare fixes.
8378
8379 2006-12-25  Chris Toshok  <toshok@ximian.com>
8380
8381         * Control.cs: only update dist_right/dist_bottom if the
8382         width/height is > 0.  this fixes anchored controls being resized
8383         smaller until they disappear and then resized larger again.
8384
8385 2006-12-25  Chris Toshok  <toshok@ximian.com>
8386
8387         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
8388         since they're nothing more than X/Left and Y/Top, respectively.
8389
8390         Also, move back to a per-control Bitmap/Graphics for
8391         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
8392         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
8393         Height.
8394
8395 2006-12-25  Miguel de Icaza  <miguel@novell.com>
8396
8397         * MessageBox.cs: Implemented overload that takes a new "bool
8398         displayHelpButton" by adding a new internal field "show_help".
8399         When clicked this will raise the HelpRequested on the owner or the
8400         main form. 
8401
8402         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
8403         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
8404
8405         * ListView.cs: Add support ColumnWidthChanged and
8406         ColumnWidthChanging. 
8407
8408         Add support for ColumnReordered event.
8409         (ReorderColumn): Add NET_2_0 specific support for cancelling the
8410         reorder.
8411
8412         Very nice codebase!
8413
8414         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
8415
8416         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
8417
8418 2006-12-24  Chris Toshok  <toshok@ximian.com>
8419
8420         * GridTablesFactory.cs: 2.0 corcompare work.
8421
8422         * ToolStripContainer.cs: add "override" to
8423         ContextMenuStripChanged, and remove the local event object.
8424
8425         * ToolStripDropDown.cs: same with a couple properties.
8426
8427         * ToolStripPanel.cs: same with AutoSizeChanged event.
8428
8429         * TextBoxBase.cs: add "override" to AutoSizeChanged.
8430
8431         * Form.cs: add the remaining 2.0 events, and do some corcompare
8432         attribute work.
8433
8434         * DateTimePicker.cs: add "new" to padding.
8435
8436         * ButtonBase.cs: use Control's use_compatible_text_rendering.
8437
8438         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
8439
8440         * DataGridView.cs: PaddingChanged is overridden.
8441
8442 2006-12-24  Chris Toshok  <toshok@ximian.com>
8443
8444         * Control.cs: corecompare work here too.
8445
8446         * DataGridViewElement.cs, DataGridView.cs,
8447         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
8448         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
8449         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
8450         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
8451         work.
8452
8453 2006-12-24  Miguel de Icaza  <miguel@novell.com>
8454
8455         * Control.cs: Switched the error message on the console for a
8456         todo.  A review of the code will have to cope with this anyways
8457         (since its a large feature, it is in our radar) and it was
8458         producing too much output when running PDN.
8459
8460         * ToolStripComboBox.cs: Set the text when the SelectedIndex
8461         changes.  Applications depend on this (PDN 2.72)
8462
8463 2006-12-23  Chris Toshok  <toshok@ximian.com>
8464
8465         * TableLayoutSettings.cs: finish up the corcompare work for this
8466         class.
8467
8468 2006-12-23  Chris Toshok  <toshok@ximian.com>
8469
8470         * Control.cs: make SetImplicitBounds internal, do some futzing
8471         with LayoutEngine so that it's available in 1.1, and remove the
8472         entire duplicated code mess from PerformLayout.  Use
8473         System.Windows.Forms.Layout.DefaultLayout instead.
8474
8475         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
8476
8477 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
8478
8479         * Form.cs: Add MainMenuStrip property.
8480
8481 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
8482
8483         * Control.cs: Add ContextMenuStrip property and implementation.
8484         Fix ContextMenu implementation to show menu centered on control when
8485         activated using the keyboard instead of showing at screen (0,0).
8486
8487         * ToolStripDropDown.cs: Fix needed overload of Show ().
8488
8489 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
8490
8491         * Menu.cs: Name property added for 2.0 profile.
8492         
8493 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
8494
8495         * Menu.cs: Update information about FindMenuItem, method to be
8496         implemented soon.
8497
8498 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
8499
8500         * MenuAPI.cs: When deselect items deselect also selected subitems.
8501         
8502 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
8503
8504         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
8505         FindSubItemByCoord to found itens that is not active, also an
8506         cheking added to FindSubItemByCoord to search for items only 
8507         in visible popup windows. Fixes #80274.
8508
8509 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
8510
8511         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
8512         internal property, it be care about change ExStyle. 
8513
8514 2006-12-22  Andreia Gaita  <avidigal@novell.com>
8515
8516         * ContainerControl.cs: set activeControl for parent forms up the 
8517         tree when the new activecontrol is a container.
8518         When validating the active control, if it is a container, also
8519         raise up the validation for it's active control. Fixes #80280
8520         
8521         * Control.cs: Add internal property flag and check to prevent
8522         Focus events from getting raised when Select() is called for
8523         a ContainerControl. There are still too many focus events being
8524         raised at the moment though.
8525         Cleaned up the code a bit.
8526
8527 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8528
8529         * Control.cs: Added all missing 2.0 events.and
8530         fixed a couple of corcompare issues.
8531         * TrackBar.cs: Implemented missing 2.0 bits.
8532         * MonthCalendar.cs, 
8533         * DateTimePicker.cs, 
8534         * MdiClient.cs: Fixed some corcompare issues.
8535
8536 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
8537
8538         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
8539         SplitterPanel.cs: corecompare work.
8540
8541 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
8542
8543         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
8544         Clean up warnings for BackgroundImageChanged and PaddingChanged
8545         events now that they are implemented in Control.cs.
8546
8547 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
8548
8549         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
8550         
8551         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
8552         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
8553         of TableLayoutPanel and supporting cast.
8554
8555 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8556
8557         * XplatUIWin32.cs: 
8558         - GrabWindow now confines the mouse pointer to the confine window.
8559         - Added Win32ClipCursor and Win32GetClipCursor.
8560
8561         * Control.cs: 
8562         - Added CaptureWithConfine to be able to capture and confine 
8563         mouse pointer.
8564         
8565         * InternalWindowManager.cs: 
8566         - Call CaptureWithConfine instead of Capture if we're an
8567         MdiChild (fixes #79982).
8568
8569 2006-12-21  Chris Toshok  <toshok@ximian.com>
8570
8571         * DataGrid.cs: guard against the initial state of selection, where
8572         selection_start == -1.  make sure we only select from index >= 0.
8573         Fixes bug #80291.
8574
8575 2006-12-21  Chris Toshok  <toshok@ximian.com>
8576
8577         * Control.cs: we don't need to be so draconian with
8578         UpdateDistances, and we thusly don't need to call it before
8579         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
8580
8581 2006-12-21  Daniel Nauck  <dna@mono-project.de>
8582
8583         * ComboBox.cs,
8584         TextBox.cs: Implemented AutoComplete properties.
8585
8586 2006-12-20  Chris Toshok  <toshok@ximian.com>
8587
8588         * DataGridView*.cs: some corecompare work.
8589
8590 2006-12-20  Jackson Harper  <jackson@ximian.com>
8591
8592         * XplatUIX11.cs: We need to hide the caret when deleting it,
8593         otherwise you get carets left lying around everywhere.
8594         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
8595         prevents getting some weird half drawn caret tracers when
8596         scrolling.
8597         * TextControl.cs: Attempt to reduce the number of times we need to
8598         recreate the caret.
8599
8600 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
8601
8602         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
8603
8604 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8605
8606         * DateTimePicker.cs:
8607         - Implemented missing 2.0 bits.
8608         - Changed some default values to match MS.
8609         
8610 2006-12-20  Jackson Harper  <jackson@ximian.com>
8611
8612         * TextBoxBase.cs: When changing the font across the document we
8613         can't recalculate after changing each line, since that will cahnge
8614         the line count.
8615         - PreferredHeight is a little different than i thought.
8616         - When backspacing, move the caret before we do the actual char
8617         delete, because when that delete crosses a wrap boundary the
8618         positional information will change.
8619
8620 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8621
8622         * Control.cs: Added some missing 2.0 bits: 
8623         BackgroundImageLayout, BackgroundImageLayoutChanged, 
8624         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
8625         add IBindableComponent and IDropTarget implementation.
8626         
8627         * MonthCalendar.cs: 
8628         - Added all missing 2.0 features:
8629         BackgroundImageLayout, RightToLeftLayout, 
8630         OnHandleDestroyed, RightToLeftLayoutChanged, 
8631         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
8632         PaddingChanged.
8633         - Rewrote all the BoldDate code, it was completely broken.
8634         - Fixed all the tests (the tests can now be re-enabled, the
8635         problems were not with the tests, but with the control, it was
8636         mostly broken).
8637         
8638         * DateTimePicker.cs: Changed the location where the 
8639         MonthCalendar is shown.
8640         
8641 2006-12-19  Chris Toshok  <toshok@ximian.com>
8642
8643         * DataGridView.cs: add IDropTarget implementation.
8644
8645         * ToolStripPanel.cs: add IDropTarget implementation.
8646
8647 2006-12-19  Jackson Harper  <jackson@ximian.com>
8648
8649         * TextControl.cs: soft now means something different than what it
8650         used to mean, we want to move the caret regardless of whether or
8651         not this break was soft (would we really have wanted the caret
8652         to not move with the break in the old context?)
8653         * TreeView.cs: Make sure we factor in the vert scrollbar when
8654         calculating the horizontal scrollbar's maximum.
8655
8656 2006-12-19  Andreia Gaita  <avidigal@novell.org>
8657
8658         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
8659         check for keywords in alternate casing, close bug #80049.
8660
8661 2006-12-19  Chris Toshok  <toshok@ximian.com>
8662
8663         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
8664         methods (which all do nothing).
8665
8666         * IDropTarget.cs: add the 4 missing methods.
8667
8668 2006-12-19  Chris Toshok  <toshok@ximian.com>
8669
8670         * TableLayoutRowStyleCollection.cs: corcompare work.
8671         
8672         * TableLayoutSettings.cs: same.
8673
8674         * TableLayoutStyle.cs: same.
8675
8676         * TableLayoutColumnStyleCollection.cs: same.
8677
8678 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
8679
8680         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
8681         TableLayoutPanel I've had in my local tree for way too long.
8682
8683 2006-12-19  Miguel de Icaza  <miguel@novell.com>
8684
8685         * TableLayoutSettings.cs: Finish the public API (still needs all
8686         the logic to update on changes). 
8687
8688         * TableLayoutPanelCellPosition.cs: new file.
8689         
8690         * TableLayoutRowStyleCollection.cs,
8691         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
8692         TableLayoutSettings.cs: Track the final 2.0 table api.
8693
8694 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8695
8696         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
8697         and Image List 2.0 members for ColummnHeader.
8698         * ListView.cs: Add key-related 2.0 methods for
8699         ColumnHeaderCollection.
8700
8701 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
8702
8703         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
8704         ArgumentNullException if items argument is null. Ignore null item in
8705         arrays. Removed extra tabs.
8706
8707 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
8708
8709         * MonthCalendar.cs: Fixed InvalidCastException.
8710
8711 2006-12-19  Jackson Harper  <jackson@ximian.com>
8712
8713         * TextControl.cs: Don't increment the position here.
8714         - When calculating char positions only add in the line break size
8715         for hard line breaks.
8716
8717 2006-12-19  Andreia Gaita  <avidigal@novell.org>
8718
8719         * SendKeys.cs: Changed some things to match ms.net behaviour
8720         when parsing shifted capital letters.
8721         
8722         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
8723         Add window handle as parameter to SendInput. X11 needs the 
8724         window handle, and the handle being passed      to it in the keys 
8725         queue is the active control handle (which windows needs), not 
8726         the window handle.
8727         
8728         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
8729         to support SendKeys on X.       
8730         
8731         * X11Keyboard: Implement helper method to lookup a linux keycode
8732         given the virtual keycode. Added table of keycode-2-virtualkey
8733         values to support this.
8734
8735 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8736
8737         * ListView.cs: Add support for SelectedIndexCollection
8738         and SelectedItemCollection 2.0 methods. Implement support
8739         for ImageKey too.
8740         * ListViewItem.cs: Add support for ListViewSubItemCollection
8741         2.0 methods. Also, fix an incorrect behavior of AddRange method
8742         (it shouldn't call Clear).
8743         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
8744
8745 2006-12-19  Jackson Harper  <jackson@ximian.com>
8746
8747         * RichTextBox.cs: 
8748         * TextBoxBase.cs: New args for FormatText
8749         * TextControl.cs: Rewrote the main drawing method, this version
8750         feels a little easier to understand and debug to me.  Hopefully it
8751         does to others also
8752         - Fix FormatText to OR in the new formating values.  Added
8753         FormatSpecified param, basically this works in the same way as
8754         BoundsSpecified in Control.
8755         - Set the caret properties when the caret is positioned.
8756         - When wrapping text make sure that we calculate the width of the
8757         last character
8758         - when calculating alignments we might have wrapped down to the
8759         next line, so don't search for an individual tag, search for the
8760         end of the line
8761         - We need to invalidate the selection area when we replace the
8762         selection.
8763         
8764 2006-12-19  Daniel Nauck  <dna@mono-project.de>
8765
8766         * Application.cs: add Restart () 2.0 support
8767
8768 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8769
8770         * MenuItem.cs: Invalidate menu item rectangle after change Enable
8771         property. Fixes #80268.
8772         
8773 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8774
8775         * MenuAPI.cs: Dont trigger select event when closes top menu
8776         item. Fixes #80270.
8777
8778 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8779
8780         * MenuAPI.cs: When you click on menuitem only trigger onselect
8781         event for top menu itens. Fixes #80271.
8782         
8783 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8784
8785         * MdiWindowManager.cs: Make IconicBounds depend on
8786         the bottom of MdiClient, not the top (fixes #80267)
8787         
8788 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8789
8790         * MdiClient.cs: Added missing 2.0 attribute
8791
8792 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8793
8794         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
8795         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
8796
8797 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8798
8799         * MenuAPI.cs: Fix click when menuitem is not popup,
8800         this regression was caused by last commit (#80272).
8801
8802 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
8803
8804         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
8805         fire click event or close menu. Fixes #80272.
8806
8807 2006-12-17  Daniel Nauck  <dna@mono-project.de>
8808
8809         * ListViewHitTestInfo.cs: add
8810
8811 2006-12-17  Daniel Nauck  <dna@mono-project.de>
8812
8813         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
8814         * FlatButtonAppearance.cs: add
8815         * DockingAttribute.cs: add
8816
8817 2006-12-17  Chris Toshok  <toshok@ximian.com>
8818
8819         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
8820         and rebind our columns when it does - this way, if you make
8821         changes to the DataTable (or set the Table attribute on a DataView
8822         after setting it as the DataGrid's DataSource, the changes are
8823         made visible.)  Fixes bug #80107.
8824
8825 2006-12-17  Daniel Nauck  <dna@mono-project.de>
8826
8827         * ListViewGroup.cs: add internal Location property for layouting.
8828         * Theme.cs: add abstract ListViewGroupHeight function.
8829         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
8830
8831 2006-12-16  Andreia Gaita  <avidigal@novell.com>
8832
8833         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
8834         Added reset of selected index to 0 when adding first tab page.
8835         Fixes #80264
8836         
8837         * NumericUpDown.cs: Fix NET_2_0 check
8838
8839 2006-12-16  Daniel Nauck  <dna@mono-project.de>
8840
8841         * ListViewGroup.cs: fixed DefaultValueAttribute value
8842
8843 2006-12-16  Daniel Nauck  <dna@mono-project.de>
8844
8845         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
8846
8847 2006-12-15  Miguel de Icaza  <miguel@novell.com>
8848
8849         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
8850         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
8851         ScrollableControl.cs: Add a handful of methods that are
8852         overwritten in 2.0 
8853
8854 2006-12-15  Chris Toshok  <toshok@ximian.com>
8855
8856         * XplatUIWin32.cs: initial implementation of the Reversible
8857         drawing functions.  there are some problems.  DrawReversibleFrame
8858         doesn't seem to work at all for Dashed FrameStyle, and in the
8859         Thick case there are drawing errors at the corners (we probably
8860         need to bind Rectangle instead of doing moveto/lineto's.)
8861
8862 2006-12-16  Andreia Gaita  <avidigal@novell.com>
8863         
8864         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
8865         to send blocks of key messages. Send accumulates keys to send with Flush, 
8866         while SendWait sends all keys immediately.
8867                 
8868         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
8869         XplatUIX11.cs,  XplatUIX11-new.cs:
8870         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
8871         to Win32 SendInput.
8872         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
8873         
8874         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
8875         testing for ms.net on this class is very tricky, as the tests run too fast 
8876         to allow the hook to release, essentially freezing the keyboard and the 
8877         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
8878         category :p
8879
8880 2006-12-16  Daniel Nauck  <dna@mono-project.de>
8881
8882         * Padding.cs: fixed serialization compability to MS ("_var" field names),
8883                         added missing attributes.
8884  
8885 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8886
8887         * ListViewGroup.cs: Added missing attributes.
8888         * ListViewGroupCollection.cs: Added missing attributes.
8889
8890 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8891
8892         * ListViewItem.cs: fixed ListViewSubItem text property.
8893
8894 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8895         
8896         * Control.cs: Added missing 2.0 attributes
8897         
8898 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8899         
8900         * MdiClient.cs: Added missing 2.0 attribute.
8901         * MonthCalendar.cs: Added some missing 2.0 attributes 
8902         and properties.
8903         
8904 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8905
8906         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
8907
8908 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
8909
8910         * MainMenu.cs: Add the new 2.0 constructor to help out people
8911         using the MainMenu in VS2005.
8912
8913 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8914         
8915         * MdiChildContext.cs: Removed it, no longer used.
8916         * MdiClient.cs: Added missing 2.0 attributes.
8917         
8918 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8919         
8920         * InternalWindowManager.cs: Fix a NullRef with previous 
8921         changes for toolwindows.
8922         
8923 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8924
8925         * Control.cs: 
8926         - Added AfterTopMostControl to allow for certain controls 
8927         to always stay on top when normal controls are brought to 
8928         front.
8929         
8930         * XplatUIWin32.cs: 
8931         - (DrawInversibleRectangle): Get window rectangle from Win32 
8932         in stead of from control, since Win32 doesn't calculate
8933         screen coords correctly from control's Location if it 
8934         have docked siblings.
8935         
8936         * MdiWindowManager.cs:
8937         - Correct the control menu popup location when clicked on
8938         the maximized form icon. (fixes #80223.1)
8939         - Don't show moving rectangle if mouse hasn't moved from
8940         the original clicked point.
8941         - Removed FormGotFocus handler (not used).
8942         - Calculate the control buttons location from the main
8943         window's size and not client size (fixes #79770).
8944         - Form is now closed when the form icon is double-clicked
8945         (fixes #79775). 
8946         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
8947         
8948         * InternalWindowManager.cs:
8949         - Moved some MDI-only methods to MdiWindowManager.
8950         - Removed unused properties and methods.
8951         - Unified method naming for methods handling wm messages.
8952         - Moved all message handling to seperate methods for
8953         each message.
8954         
8955         * ThemeWin32Classic.cs:
8956         - DrawManagedWindowDecorations now draws the title bar 
8957         with a gradient brush.
8958         - Add a CPDrawButtonInternal that allows us to specify
8959         light, normal and dark colors for the buttons (control 
8960         buttons for MDI children were drawn with the same light
8961         color as the background, therefore loosing the 3D effect).
8962         
8963         * SizeGrip.cs:
8964         - Add a CapturedControl property that is used to 
8965         determine the control to resize (defaults to parent). 
8966         Needed for MdiClient, since its SizeGrip's parent is
8967         MdiClient, but the control to resize is the main form.
8968         
8969         * MdiClient.cs:
8970         - Set SizeGrip's CapturedControl to the main form in order
8971         to resize the main form and not the MdiClient.
8972         - Override AfterTopMostControl to leave the scrollbars 
8973         always on top.
8974
8975 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8976
8977         * ListView.cs: fixed ListViewItemCollection AddRange and
8978                         implemented ListViewItemCollection AddRange 2.0 support.
8979
8980 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8981
8982         * ListViewGroup.cs: Add.
8983         * ListViewGroupCollection.cs: Add
8984         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
8985         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
8986                                 stub for ImageKey 2.0 support.
8987
8988 2006-12-14  Mike Kestner  <mkestner@novell.com>
8989
8990         * ListView.cs: add text padding to the autocalculation for columns
8991         of width -2.  Fixes #80207.
8992  
8993 2006-12-14  Mike Kestner  <mkestner@novell.com>
8994
8995         * ListView.cs: add some index guarding for partial row navigation 
8996         logic.  Fixes #80250.
8997
8998 2006-12-14  Mike Kestner  <mkestner@novell.com>
8999
9000         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
9001         are added or inserted to the collection.  Fixes #81099.
9002
9003 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
9004
9005         * MenuAPI.cs: Closes menu when right click out side of popup
9006         it fix problem in ContextMenu and MainMenu. Fixes #80252.
9007
9008 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9009
9010         * ListViewItem.cs: Fix dumb error.
9011
9012         * ListView.cs: Add Find and ContainsKey methods in 
9013         ListViewItemCollection, and also return true for IsReadOnly
9014         and IsFixedSize (changes for 2.0). 
9015
9016 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
9017
9018         * Control.cs: Allow Region to be set to null.
9019
9020 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9021
9022         * MdiWindowManager.cs: Remove unused (commented out) code.
9023         * Form.cs: When the MdiChild is maximized, the form needs 
9024         WM_NCMOUSELEAVE, so request it.
9025         * InternalWindowManager.cs: 
9026         - Added tooltips to control buttons.
9027         - Removed duplicated control button handling code.
9028         - Removed unused (commented out) code.
9029         
9030 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
9031
9032         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
9033         was used because we must set cursor without trigger ChangeCursor event
9034         and without change Cursor control property. Fixes #79963.
9035
9036 2006-12-12  Andreia Gaita  <avidigal@novell.com>
9037         
9038         * Control.cs: Check if Region setter value is null, and ignore
9039
9040 2006-12-12  Jackson Harper  <jackson@ximian.com>
9041
9042         * TextControl.cs: We were almost always drawing one more line then
9043         needed, since the GetLineByPixel will return the last line found
9044         at that pixel. In most cases though, we were invalidating up to
9045         the junction between two lines.
9046         - Improve debug code.
9047
9048 2006-12-12  Chris Toshok  <toshok@ximian.com>
9049
9050         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
9051         and FillReversibleRectangle.
9052
9053         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
9054         and FillReversibleRectangle.
9055
9056         * XplatUIWin32.cs: add stubs which do nothing for
9057         DrawReversibleFrame, DrawReversibleLine, and
9058         FillReversibleRectangle.
9059
9060         * XplatUIOSX.cs: add stubs which raise NIE for
9061         DrawReversibleFrame, DrawReversibleLine, and
9062         FillReversibleRectangle.
9063
9064         * XplatUIX11.cs: add working implementation for
9065         DrawReversibleFrame, DrawReversibleLine, and
9066         FillReversibleRectangle.
9067         
9068         * ControlPaint.cs: implement DrawReversibleFrame,
9069         DrawReversibleLine, and FillReversibleRectangle, by calling into
9070         the appropriate XplatUI method.
9071
9072 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9073
9074         * Form.cs: Make MdiClient have the focus even if it's
9075         not selectable, since it should receive WM_KEY* and WM_MOUSE 
9076         messages. Fixes #79907.
9077         
9078 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9079
9080         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
9081         queried after the window is created.
9082         
9083         * XplatUIX11.cs: Added SendParentNotify to implement 
9084         WM_PARENTNOTIFY logic. Fixes #79965.
9085         
9086         * Control.cs: Added MakeParam.
9087         
9088 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9089
9090         * MdiClient.cs: Resume Layout before setting window
9091         states (fixes #80201).
9092
9093 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9094
9095         * MenuAPI.cs: Deselect a menu item after performing
9096         the click (fixes #80197).
9097
9098 2006-12-11  Jackson Harper  <jackson@ximian.com>
9099
9100         * TextBoxBase.cs: We need to cap this value, since Maximum -
9101         ViewPortHeight can be less than zero.
9102         - Only do selection with the left mouse button.
9103         * TextBox.cs: Don't tell the world that we have a context menu.
9104         * Control.cs: New method so that we can control whether or not the
9105         context menu is visible outside MWF.
9106
9107 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
9108
9109         * ToolBarButton.cs: Fix text positon. 
9110
9111 2006-12-11  Miguel de Icaza  <miguel@novell.com>
9112
9113         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
9114
9115         * Control.cs (DoubleBuffered): Add implementation.
9116
9117         * Application.cs (OpenForms): Add.
9118
9119 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
9120
9121         * Form.cs: Use opacity instead of Opactiy to determine if we need
9122         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
9123
9124 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
9125
9126         * Control.cs: Fix NRE if Control.Site was set to null.
9127
9128 2006-12-11  Chris Toshok  <toshok@ximian.com>
9129
9130         * Control.cs: ControlCollection.Remove should return if the arg is
9131         null, and ControlCollection.SetChildIndex should raise a ANE.
9132
9133 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
9134
9135         * Control.cs: Verify value set for Dock property. Code formatting
9136         updates.
9137
9138 2006-12-11  Jackson Harper  <jackson@ximian.com>
9139
9140         * TextControl.cs: Draw the caret and the selection when a flag is
9141         set on the owner.
9142         * TextBoxBase.cs: We want to draw the caret and the selection for
9143         TextBox but not for TextBoxBase.
9144         - If the window is resized and scrolling is no longer needed (the
9145         whole doc is visible) set the scroll position to zero.
9146         - The default SelectWord (the one TextBox uses) should move the
9147         caret to the end of the word.
9148         - SelectAll moves the caret to the end of the selection.
9149         * TextBox.cs: We don't selectall on focus, we just do it when the
9150         control is created.
9151         
9152 2006-12-11  Mike Kestner  <mkestner@novell.com>
9153
9154         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
9155
9156 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9157
9158         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
9159         2.0 support.
9160         * ListViewItem.cs: Add Name 2.0 property.
9161
9162 2006-12-11  Andreia Gaita  <avidigal@novell.com>
9163
9164         * TabControl.cs: Set visibility on selected or default tab 
9165         when tabcontrol handle is created, so that it's contents
9166         actually show up (duh). Fixes #80193
9167         Don't redraw the control if there is no handle created, as
9168         the selected index might be completely invalid. Added some tests
9169         to check for this.
9170
9171 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
9172
9173         * ToolBar.cs: Uses maximun width and height of all buttons as 
9174         button rectangle when ButtonSize specified, it looks strange but
9175         is what happens in Win32. Fixes #80189.
9176
9177 2006-12-11  Jackson Harper  <jackson@ximian.com>
9178
9179         * TextControl.cs: Need to track undo levels ourself, since
9180         compound actions will mess them up.
9181
9182 2006-12-10  Andreia Gaita  <avidigal@novell.com>
9183
9184         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
9185         SelectedIndex value is changed (even if it's not valid).
9186         Reset SelectedIndex to 0 when the handle is created and if
9187         the current index is invalid.
9188         Fixes SelectdeIndex unit tests and #80128
9189
9190 2006-12-08  Chris Toshok  <toshok@ximian.com>
9191
9192         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
9193         calls EndEdit, it needs to be called before we set current_cell to
9194         its new value.  Otherwise, we end up committing the value in the
9195         textbox to the new cell as well.  Fixes bug #80160.
9196
9197 2006-12-08  Chris Toshok  <toshok@ximian.com>
9198
9199         * Form.cs (set_CancelButton): if the button's DialogResult is
9200         None, set it to Cancel.  Fixes bug 80180.
9201
9202 2006-12-08  Jackson Harper  <jackson@ximian.com>
9203
9204         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
9205         to watch ourselves when setting the canvas size and setting the
9206         scrollbar values.
9207
9208 2006-12-08  Chris Toshok  <toshok@ximian.com>
9209
9210         * DataGrid.cs: comment out the two MakeTransparent calls for the
9211         time being so people using trunk (and not 1.2.2) on windows can
9212         actually use the datagrid.  This deals with bug #80151.
9213
9214 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
9215
9216         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
9217         Graphics.DrawImage (image, int, int, int, int) overload instead
9218         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
9219         the dpi difference and was blurring images it drew.
9220         [Fixes bug #79960]
9221
9222 2006-12-08  Chris Toshok  <toshok@ximian.com>
9223
9224         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
9225         rowcnt is 0 (such as with an empty datasource), and make sure we
9226         initialize not_usedarea.Y to cells.Y, so we don't draw over the
9227         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
9228
9229 2006-12-08  Chris Toshok  <toshok@ximian.com>
9230
9231         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
9232         grid.
9233
9234 2006-12-08  Chris Toshok  <toshok@ximian.com>
9235
9236         [ Fixes bug #80167 ]
9237         
9238         * ThemeWin32Classic.cs: don't draw the image if the button's flat
9239         style is FlatStyle.System.
9240
9241         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
9242         ButtonBase.flat_style private, and switch uses of it to the public
9243         property.
9244         
9245 2006-12-08  Chris Toshok  <toshok@ximian.com>
9246
9247         [ Fixes bug #80121 ]
9248         
9249         * ThemeWin32Classic.cs: center the caption text in the datagrid
9250         when we draw it.
9251
9252         * DataGrid.cs: lessen the amount we add to the caption height from
9253         6 to 2.  6 was making it huge.
9254
9255 2006-12-08  Andreia Gaita  <avidigal@novell.com>
9256
9257         * UpDownBase: Handle MouseWheel call directly instead of capturing
9258         the inner textbox's OnMouseWheel. Fixes #80166
9259
9260 2006-12-08  Jackson Harper  <jackson@ximian.com>
9261
9262         * TextControl.cs: We need to invalidate the textbox when we empty
9263         it (how had this not been discovered before?)
9264
9265 2006-12-08  Jackson Harper  <jackson@ximian.com>
9266
9267         * TextBoxBase.cs: Reworked the mouse down code so I could get it
9268         to behave like MS, we now ignore the eventargs.Click and just
9269         track state ourself, which we were already doing anyways.
9270         - Constrain the double click handler to the double click size.
9271         
9272 2006-12-08  Chris Toshok  <toshok@ximian.com>
9273
9274         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
9275         direction if that scrollbar isn't shown.  fixes bug #80158.
9276
9277 2006-12-08  Andreia Gaita  <avidigal@novell.com>
9278
9279         * NumericUpDown.cs: Update value on getter. Fixes #79950
9280
9281 2006-12-08  Chris Toshok  <toshok@ximian.com>
9282
9283         * MenuItem.cs: add back in the event cloning code.  I didn't know
9284         how to do it in the face of the EventHandlerList work i'd done
9285         last week.  Fixes bug #80183.
9286
9287 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
9288
9289         * Control.cs: Add an invalidate to the BackgroundImage setter.
9290         [Fixes 80184]
9291
9292 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
9293
9294         * ToolStrip*: Add some small properties reported by MoMA, fix event
9295         firing and default properties based off of unit tests, and add some
9296         attributes based off of the class status page.
9297
9298 2006-12-07  Jackson Harper  <jackson@ximian.com>
9299
9300         * TextBoxBase.cs: Take HideSelection into account when determining
9301         whether or not to show the selection.
9302         * RichTextBox.cs: After inserting the RTF into the document move
9303         the cursor to the beginning of the document.
9304
9305 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
9306
9307         * Control.cs: Remove static ArrayList "controls" which maintained
9308         a reference to every control created.
9309         * Application.cs: Create a static FormCollection to maintain a reference
9310         to every form created.  Use it in places that formerly enumerated through
9311         the controls one looking for forms.
9312         * Form.cs: Add and remove self from above FormCollection.
9313
9314 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
9315
9316         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
9317           not libgdk (though it makes me wonder why I didn't have any
9318           problems)
9319
9320 2006-12-07  Chris Toshok  <toshok@ximian.com>
9321
9322         [ you had to know this was coming after that last commit...]
9323         
9324         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
9325         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
9326         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
9327         XCopyArea).
9328
9329 2006-12-07  Chris Toshok  <toshok@ximian.com>
9330
9331         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
9332         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
9333         all the behavior we need for double buffering.
9334
9335         * XplatUIDriver.cs: implement the 3 double buffer methods using a
9336         client side Bitmap, just like the old Control-based double buffer
9337         code did.  The methods are virtual, so each XplatUI driver
9338         subclass can replace the implementation to use a faster, platform
9339         specific approach.
9340
9341         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
9342         double buffer code, and clean things up a bit in the process.
9343
9344 2006-12-06  Chris Toshok  <toshok@ximian.com>
9345
9346         * Control.cs: reindent WndProc.
9347
9348 2006-12-06  Chris Toshok  <toshok@ximian.com>
9349
9350         [ I wanna be like BenM when I grow up ]
9351         
9352         * Hwnd.cs: create a single static Graphics object on the static
9353         Bitmap we create.  use this for our text measurements.
9354
9355         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
9356         This was causing us to allocate a backbuffer for every control,
9357         even when it wasn't flagged as double buffered.  Instead use the
9358         single graphics instance.  This might have implications for
9359         multithreaded applications.  If we run into problems we can switch
9360         to creating 1 Graphics per control, on the static Hwnd bitmap.
9361
9362         this change nets us a 7M savings in private dirty mappings when
9363         running FormsTest.exe.
9364
9365 2006-12-06  Chris Toshok  <toshok@ximian.com>
9366
9367         * ListView.cs: the BackgroundImage override is just to set
9368         attributes.  chain up to base.BackgroundImage.
9369
9370         * RichTextBox.cs: same.
9371
9372         * ToolBar.cs: same, but we need to also redraw the toolbar when it
9373         changes, so instead a handler for BackgroundImageChanged.
9374         
9375         * Control.cs: make background_image private.
9376
9377 2006-12-06  Chris Toshok  <toshok@ximian.com>
9378
9379         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
9380         sure we even need this assignment, but roll with it for now.
9381
9382         * Control.cs: make the cursor field private.
9383
9384 2006-12-06  Chris Toshok  <toshok@ximian.com>
9385
9386         * Form.cs: we don't need to explicitly set ImeMode to
9387         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
9388         behavior in the face of ImeMode.Inherit.
9389
9390         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
9391         change the ctor's assignment to use ImeMode instead of ime_mode.
9392
9393         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
9394         ImeModeInherit.  Only check for the parent's imemode (and return
9395         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
9396         This fixes the button unit test, which sets both ImeMode and
9397         DefaultImeMode to ImeMode.Disable.
9398
9399         also make the ime_mode field private.
9400
9401 2006-12-06  Chris Toshok  <toshok@ximian.com>
9402
9403         * Control.cs: make control_style private.
9404
9405         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
9406         setting the styles to true, then setting them to false instead of
9407         reverting to their previous values.
9408
9409         also, call SetStyle on the scrollbars instead of using
9410         control_style directly.
9411
9412 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
9413
9414         * FormCollection.cs: Implement. [2.0]
9415
9416 2006-12-06  Chris Toshok  <toshok@ximian.com>
9417
9418         * Control.cs: make tab_stop private.
9419
9420         * Label.cs: set TabStop, not tab_stop.  reformat some event
9421         add/remove methods to make them more compact.
9422
9423 2006-12-06  Chris Toshok  <toshok@ximian.com>
9424
9425         * RadioButton.cs: fix TabStop handling.
9426
9427 2006-12-06  Chris Toshok  <toshok@ximian.com>
9428
9429         * TextBox.cs: remove the explicit assignments to has_focus.
9430         Control does that.
9431
9432         * ButtonBase.cs: remove the assignment to has_focus.  Control will
9433         manage that.
9434         
9435 2006-12-06  Chris Toshok  <toshok@ximian.com>
9436
9437         * ButtonBase.cs: remove all uses of is_enabled from this code.
9438         it's always true when any of the code containing the checks is
9439         executed.
9440
9441 2006-12-06  Chris Toshok  <toshok@ximian.com>
9442
9443         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
9444         with different semantics (some are present in both 1.1 and 2.0
9445         profiles) so that we match MS's behavior in our unit tests.
9446
9447 2006-12-06  Jackson Harper  <jackson@ximian.com>
9448
9449         * TextControl.cs: Make this operation undoable.
9450         * TextBoxBase.cs: Factor the border width into the preferred
9451         height.
9452         - implement Modified as per the spec.
9453
9454 2006-12-06  Chris Toshok  <toshok@ximian.com>
9455
9456         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
9457
9458 2006-12-06  Chris Toshok  <toshok@ximian.com>
9459
9460         * Control.cs: make right_to_left and context_menu fields private.
9461
9462 2006-12-06  Chris Toshok  <toshok@ximian.com>
9463
9464         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
9465         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
9466         Control.child_controls private.  switch all uses over to
9467         Control.Controls.
9468
9469 2006-12-06  Chris Toshok  <toshok@ximian.com>
9470
9471         * System.Windows.Forms/GroupBox.cs,
9472         System.Windows.Forms/AccessibleObject.cs,
9473         System.Windows.Forms/ErrorProvider.cs,
9474         System.Windows.Forms/Control.cs,
9475         System.Windows.Forms/UpDownBase.cs,
9476         System.Windows.Forms/ScrollBar.cs,
9477         System.Windows.Forms/DateTimePicker.cs,
9478         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
9479         System.Windows.Forms/ToolTip.cs,
9480         System.Windows.Forms/RadioButton.cs,
9481         System.Windows.Forms/LinkLabel.cs,
9482         System.Windows.Forms/Splitter.cs,
9483         System.Windows.Forms/TextBoxBase.cs,
9484         System.Windows.Forms/ToolStripTextBox.cs,
9485         System.Windows.Forms/ContainerControl.cs,
9486         System.Windows.Forms/ThemeWin32Classic.cs,
9487         System.Windows.Forms/SizeGrip.cs,
9488         System.Windows.Forms/ToolStripDropDown.cs,
9489         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
9490         private.  switch all uses over to Control.Parent.
9491
9492 2006-12-06  Chris Toshok  <toshok@ximian.com>
9493
9494         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
9495         Control does this before calling emitting these events.
9496
9497         * TabControl.cs: same.
9498
9499         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
9500         Control.client_rect.
9501
9502         * ButtonBase.cs: use the ClientSize property instead of the
9503         client_size field.
9504
9505         * ScrollableControl.cs: same.
9506
9507         * Control.cs: another pass at making properties private.  also,
9508         move the initialization of tab_stop to the ctor.
9509
9510 2006-12-05  Andreia Gaita <avidigal@novell.com>
9511
9512         * TabControl.cs: Let the selected index be set freely if the 
9513         control handle is not yet created.
9514
9515 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
9516
9517         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
9518         internal until I can rewrite DefaultLayout.
9519         * ToolStrip.cs: Fix build error and some general cleaning.
9520         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
9521         Fix build errors caused by making some of Control's fields private.
9522
9523 2006-12-05  Jackson Harper  <jackson@ximian.com>
9524
9525         * TextControl.cs: Redo Insert a little so that it use IndexOf
9526         instead of Split, this prevents it from messing up on things like
9527         \n\n\n. Also more effecient since the split array doesn't need to
9528         be created.
9529         * TextBoxBase.cs: AppendText doesnt handle multiline and non
9530         multiline text differently, this is the first of many fixes that
9531         will make multiline/non-multiline the same thing as far as the
9532         TextBoxBase is concerned.
9533         - Don't split the text and insert lines, this can lose some line
9534         endings (like is the last line a soft or hard break). Instead use
9535         the new Insert.
9536         - Fix an off by one when combining all the lines in the Text
9537         getter.
9538         - Remove separate multiline handling from the Text getter/setter.
9539
9540 2006-12-05  Chris Toshok  <toshok@ximian.com>
9541
9542         * ButtonBase.cs: a few changes:
9543
9544         - don't reinitialize internal Control fields in the ctor when they
9545         have the same values as Control sets them.
9546
9547         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
9548         this before calling those methods.
9549
9550         - we don't need to call Refresh for anything.  use Invalidate
9551         instead.
9552
9553         - OnEnabledChanged doesn't need to redraw at all - Control.cs
9554         calls Refresh in its OnEnabledChanged.
9555         
9556         - several of the events we were registered for in the ctor to
9557         redraw ourselves already include calls to Invalidate in the
9558         property setters that raise the events.  remove the extra
9559         invalidation.
9560
9561         - reformat a switch statement that was 83274658 columns wide.
9562         
9563 2006-12-05  Mike Kestner  <mkestner@novell.com>
9564
9565         * ComboBox.cs: fix a unit test regression from a TextBox
9566         SelectionLength return of -1 when there's no selection.  
9567
9568 2006-12-05  Chris Toshok  <toshok@ximian.com>
9569
9570         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
9571         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
9572         cleaning up some of the internal Control fields being used by
9573         subclasses.
9574
9575 2006-12-05  Mike Kestner  <mkestner@novell.com>
9576
9577         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
9578         listbox after AddImplicit calls since it defaults to hidden. Add a 
9579         hack to preserve requested heights across DropDownStyle changes.
9580
9581 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
9582
9583         * PropertyGrid.cs: Hide FindFirstItem method from public API.
9584
9585 2006-12-05  Chris Toshok  <toshok@ximian.com>
9586
9587         * DataGridView.cs: fix compiler warnings.
9588
9589         * PrintControllerWithStatusDialog.cs: same.
9590
9591         * ToolBar.cs: same.
9592
9593         * FolderBrowserDialog.cs: same.
9594
9595         * Splitter.cs: same.
9596
9597         * DataGridViewComboBoxCell.cs: same.
9598
9599         * XplatUIWin32.cs: same.
9600
9601         * PictureBox.cs: same.
9602
9603         * Win32DnD.cs: same.
9604
9605         * PageSetupDialog.cs: same.
9606
9607         * FileDialog.cs: same.
9608
9609         * PrintDialog.cs: same.
9610
9611         * DataGridTextBoxColumn.cs: same.
9612
9613         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
9614
9615 2006-12-05  Chris Toshok  <toshok@ximian.com>
9616
9617         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
9618         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
9619         System.ComponentModel.EventHandlerList work.
9620
9621 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
9622
9623         * DrawTreeNodeEventArgs.cs: Added.
9624
9625 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9626         
9627         * InternalWindowManager.cs: Remove an unused field.
9628         
9629 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9630
9631         * InternalWindowManager.cs:
9632         - Save the point where the title bar is clicked.
9633         
9634         * MdiWindowManager.cs:
9635         - Only allow moving of the window as long as the 
9636         clicked point on the title bar does not get out of
9637         MdiClient's rectangle. Fixes #79982.
9638         
9639         * MdiClient.cs:
9640         - Added Horizontal/VerticalScrollbarVisible.
9641         - Simplified the scrollbar sizing algorithm.
9642         - Cache the difference in scrolled value in
9643         H/VBarValueChanged and move the calculation out
9644         of the for loop.
9645
9646 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9647
9648         * Control.cs: Make the Console.WriteLine in WndProc 
9649         write more info.
9650
9651 2006-12-05  Chris Toshok  <toshok@ximian.com>
9652
9653         * ToolStripManager.cs, ToolStripButton.cs,
9654         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
9655         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
9656         ToolStripSplitButton.cs, ToolStripSeparator.cs,
9657         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
9658         ToolStripProgressBar.cs, ToolStripContainer.cs,
9659         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
9660         to using System.ComponentModel.EventHandlerList.
9661
9662 2006-12-04  Chris Toshok  <toshok@ximian.com>
9663
9664         * LinkLabel.cs: fix up compiler warnings.
9665
9666         * TableLayoutSettings.cs: same.
9667
9668         * TreeView.cs: same.
9669
9670         * ToolBar.cs: same.
9671
9672         * TabControl.cs: same.
9673
9674         * RichTextBox.cs: same.
9675
9676         * ListViewItem.cs: same.
9677
9678         * PropertyGrid.cs: same.
9679
9680         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
9681
9682         * ToolTip.cs same.
9683
9684         * TextRenderer.cs: fix up compiler warnings.
9685
9686         * Label.cs: same.
9687
9688         * Form.cs: corcompare fixes.
9689
9690         * PictureBox.cs: fix up compiler warnings.
9691
9692         * ImageListStreamer.cs: same.
9693
9694         * TrackBar.cs: corcompare fix.
9695
9696         * Control.cs: fix up compiler warnings.
9697
9698         * SplitterPanel.cs: same.
9699
9700         * NumericTextBox.cs: same.
9701
9702         * ImageList.cs: same.
9703
9704         * StatusStrip.cs: same.
9705
9706         * ProgressBar.cs: corcompare fix.
9707
9708         * ToolStripButton.cs: fix up compiler warnings.
9709
9710         * ToolStripStatusLabel.cs: same.
9711
9712         * ToolStripSplitButton.cs: same.
9713
9714         * ToolStripSeparator.cs: same.
9715
9716         * ToolStripProgressBar.cs: same.
9717
9718         * ToolStripDropDownMenu.cs: same
9719
9720         * ToolStripDropDown.cs: same.
9721
9722         * ToolStripDropDownButton.cs: same.
9723
9724         * ToolStrip.cs: same.
9725
9726         * ToolStripControlHost.cs: same.
9727
9728         * ToolStripContentPanel.cs: same.
9729
9730         * ToolStripDropDown.cs: same.
9731
9732         * ToolStripContainer.cs: same.
9733
9734         * ToolStripPanel.cs: same, and add "new" where we need it to work
9735         with the new ArrangedElementCollection.
9736
9737         * ToolStripItemCollection.cs: add "new" where we need it to work
9738         with the new ArrangedElementCollection.
9739
9740 2006-12-04  Andreia Gaita <avidigal@novell.com>
9741
9742         * TabControl.cs: Fix default tab selection to after TabControl
9743         gets focus and not before. Fixes #80128
9744
9745 2006-12-04  Chris Toshok  <toshok@ximian.com>
9746
9747         * DataGridTableStyle.cs: remove the gross calling of
9748         datagrid.Refresh from here.  It's a broken idea and it doesn't
9749         work anyway.
9750
9751         * DataGrid.cs: instead, just register/unregister from the
9752         DataGridTableStyle events in CurrentTableStyle.  we play it
9753         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
9754         even though some would most likely not require it.  Fixes bug
9755         #80115 (and one portion of #80117 as a side effect).
9756
9757 2006-12-04  Chris Toshok  <toshok@ximian.com>
9758
9759         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
9760         so the textbox (if any) goes away.  Fixes bug #80117.
9761
9762 2006-12-04  Chris Toshok  <toshok@ximian.com>
9763
9764         * DataGridColumnStyle.cs: set the column's readonly property
9765         initially based on the property descriptor's IsReadOnly.  Fixes
9766         bug #80044.
9767
9768 2006-12-04  Chris Toshok  <toshok@ximian.com>
9769
9770         * ComboBox.cs: wrap the dropdown style changing work in
9771         SuspendLayout/ResumeLayout.  Fixes bug #79968.
9772
9773 2006-12-04  Jackson Harper  <jackson@ximian.com>
9774
9775         * TextBoxBase.cs: Fix off by one, since these are one-based.
9776         * TextBox.cs: Select all the text when we get focus.  The TextBox
9777         does this but the RTB does not.
9778
9779 2006-12-04  Chris Toshok  <toshok@ximian.com>
9780
9781         * DataGridTextBoxColumn.cs: remove some spew.
9782
9783         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
9784         but some part of me is saying "it shouldn't be here.."  At any
9785         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
9786         setting the value.
9787
9788 2006-12-04  Chris Toshok  <toshok@ximian.com>
9789
9790         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
9791         to reassign the propertydescriptor.
9792
9793 2006-12-04  Jackson Harper  <jackson@ximian.com>
9794
9795         * TextBoxBase.cs:
9796         * TextControl.cs: Remove some unused variables.  Maybe this will
9797         patch things up between mike and I.
9798         - don't split lines less then one char wide, if the viewport is
9799         that small text won't be visible anyways.
9800         
9801 2006-12-04  Jackson Harper  <jackson@ximian.com>
9802
9803         * TextBoxBase.cs: Default selection length is -1, need to do some
9804         more testing on windows to see when this is used for the property.
9805         - Redid the Lines [] property to that we properly remove soft line
9806         breaks
9807         - added support for preserving carriage returns
9808         -  CanUndo is not a variable like 'is undo enabled' it just returns
9809         true if there is undo operations available.
9810         - AppendText doesn't need to grab the last tag itself anymore,
9811         this happens automatically when we move the cursor.
9812         * TextControl.cs: Add CompoundActions to the undo class. This
9813         allows combining the other operations into one big option.  ie a
9814         paste will combine { delete old, insert new, move cursor }
9815         - Add InsertString undo operation
9816         - New method for deleting multiline text
9817         - Add carriage returns to lines. So we can preserve carriage
9818         returns when text is 'roundtripped'
9819
9820 2006-12-04  Chris Toshok  <toshok@ximian.com>
9821
9822         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
9823         minimum 0.  Fixes the scrollbar exception in bug #80136.
9824
9825 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9826
9827         * MdiClient.cs: 
9828         * MdiWindowManager: Removed unused fields and methods.
9829         
9830 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9831         
9832         * StatusBar.cs: Update all panels when a AutoSize=Contents
9833         panel needs updating.
9834         
9835         * StatusBarPanel.cs: Remove twidth and only use initialize.
9836         Fixes #80031.
9837                 
9838 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9839
9840         * Form.cs: When a form's MdiParent is set add it directly
9841         on top of the z-order in stead of relying on MdiClient's
9842         ActivateChild to do it. Fixes #80135.
9843         
9844         * MdiClient.cs: 
9845         - Remove original_order, mdi_child_list is already doing
9846         the same thing.
9847         - Create mdi_child_list on construction in
9848         stead of first use (avoids a few null checks).
9849
9850         * MenuItem.cs: Use an already existing list of mdi children
9851         to get the correct order of children and remove the other
9852         redundant list.
9853
9854 2006-12-04  Chris Toshok  <toshok@ximian.com>
9855
9856         * PropertyGridView.cs: cached_splitter_location is only used in
9857         !DOUBLEBUFFER code.
9858
9859         * PropertyGrid.cs: implement the ComComponentNameChanged event
9860         using Events, hoping that would fix the warning.  Looks like a
9861         compiler bug instead (#80144).
9862
9863         * PropertyManager.cs: remove unused method.
9864
9865 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
9866
9867         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
9868         include parentesis to fix expression evaluation. Fixes #79634.
9869
9870 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
9871         
9872         * MenuAPI.cs:
9873         - Changes to fix behavior in Menu control, some reported in #80097
9874         and other detected during behavior refactory like a select event
9875         problems.
9876         - Remove unneded "if's" conditions.
9877         - Created an internal to flag when popup is active in control, we need 
9878         it because in .NET you can have menu active but without popup active
9879         when you active menu using popup without visible items.
9880         - Mimic win32 behavior for Select and Popup events.  
9881         - Dont open popup menu when you dont have visible subitems.
9882         - Do nothing when click on disabled menu item.
9883         - Some small changes to follow the coding style guidelines.
9884         - Unselect menu only when another control gives focus. Fixes #80097.
9885         - Remove unused code.
9886         
9887         * MenuItem.cs: internal VisibleItems method to check if menu
9888         theres visible subitems, it will be usefull to fix some 
9889         behavior in Menu control.
9890         
9891 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
9892         
9893         * Timer.cs: Tag property for 2.0 profile.
9894         
9895 2006-12-01  Chris Toshok  <toshok@ximian.com>
9896
9897         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
9898         
9899         * Win32DnD.cs: comment out some unused fields.
9900
9901         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
9902         some unused properties/methods.
9903
9904         * XplatUIX11.cs: fix MousePosition so we override the base class's
9905         property instead of conflicting with it.
9906
9907         * PictureBox.cs: comment out some unused fields
9908
9909         * OSXStructs.cs: make some struct fields public.
9910
9911         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
9912         MousePosition so we override the base class's property instead of
9913         conflicting with it.
9914
9915         * X11Dnd.cs: comment out some unused fields
9916
9917         * X11DesktopColors.cs: fix some struct field visibility to quiet
9918         the compiler.
9919
9920         * X11Dnd.cs: remove some debug code.
9921
9922         * ThemeClearlooks.cs: comment out unused field.
9923
9924         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
9925
9926         * ThemeGtk.cs: comment out some unused pinvokes.
9927
9928         * Timer.cs: remove some unused fields.
9929
9930         * ThemeClearlooks.cs: comment out unused field.
9931
9932         * UpDownBase.cs: comment out unused field.
9933
9934         * DataObject.cs: comment out unused field.
9935
9936         * DataGridBoolColumn.cs: reomve unused field.
9937
9938         * DataGrid.cs: remove unused field.
9939
9940         * Cursor.cs: remove old ToBitmap code.
9941
9942         * ControlPaint.cs: remove unused method.
9943
9944         * ScrollBar.cs: remove unused fields.
9945
9946         * ComboBox.cs: remove unused field, and chain up to
9947         AccessibleObject ctor.
9948
9949         * ListBox.cs: remove unused field.
9950
9951         * ButtonBase.cs: wrap a couple fields in NET_2_0.
9952
9953         * GridEntry.cs: remove unused fields.
9954
9955         * Binding.cs: remove unused fields.
9956
9957         * AxHost.cs: remove unused method.
9958
9959         * ContainerControl.cs: remove unused field.
9960
9961         * ScrollableControl.cs: remove unused fields.
9962
9963 2006-12-01  Chris Toshok  <toshok@ximian.com>
9964
9965         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
9966         the Where/WhereString stuff.  it's easy enough to CWL
9967         Environment.StackTrace.
9968
9969         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
9970         unused private fields.
9971
9972 2006-12-01  Jackson Harper  <jackson@ximian.com>
9973
9974         * TextControl.cs: Do not update the view while inserting multiline
9975         text. If we update the view we might wrap lines, before entering
9976         the new lines, which causes the new line insertion calculations to
9977         be totally fubared.
9978         - Remove an old TODO
9979         - Make debug output a little nicer
9980         
9981 2006-12-01  Chris Toshok  <toshok@ximian.com>
9982
9983         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
9984
9985 2006-12-01  Chris Toshok  <toshok@ximian.com>
9986
9987         [ fix the majority of the CS0108 warnings we've been suppressing ]
9988         
9989         * TreeView.cs: mark BackgroundImageChanged as 'new'.
9990
9991         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
9992         to "LayoutToolBar" to quiet mcs.
9993         
9994         * TabControl.cs: mark our ControlCollection class as 'new'.
9995
9996         * TextBoxBase.cs: mark some events as 'new'.
9997
9998         * Splitter.cs: TabStop is 'new'.
9999
10000         * ControlBindingsCollection.cs: mark a few methods as new since
10001         they change the visibility from protected to public.
10002
10003         * RadioButton.cs: DoubleClick -> base class, and remove unused
10004         HaveDoubleClick.
10005
10006         * MonthCalendar.cs: ImeMode property -> base class, and mark many
10007         events as new.
10008
10009         * NumericUpDown.cs: TextChanged -> base class.
10010
10011         * CheckedListBox.cs: mark our ObjectCollection class as new to
10012         quiet mcs.
10013
10014         * FolderBrowserDialog.cs: make HelpRequest event new and have it
10015         muck with the base class.
10016
10017         * StatusBar.cs: fix some mcs warnings about Update being the same
10018         name as a base class method.
10019
10020         * RichTextBox.cs: mark some events as new, and make them do things
10021         to the base class impl.
10022
10023         * UserControl.cs: mark TextChanged as new, and have it manipulate
10024         base.TextChanged.
10025
10026         * UpDownBase.cs: mark some things new.
10027
10028         * CheckBox.cs: mark DoubleClick "new", and add some text about
10029         what we need to look at.
10030
10031         * Panel.cs: make the events "new", and manipulate the base
10032         version.  these are just here for attributes.
10033
10034         * AccessibleObject.cs: make owner private.
10035
10036         * Control.cs: deal with AccessibleObject.owner being private.
10037         cache our own copy if we need it.
10038
10039         * Button.cs: add "new" to the DoubleClickEvent.
10040
10041         * ListBox.cs: no need to track our own has_focus here.  let
10042         Control.has_focus do it for us.  Also some other work to clear up
10043         warnings about not overriding base class methods of the same name.
10044         
10045         * ComboBox.cs: clear up some warnings about not override base
10046         class methods of the same name.
10047
10048 2006-12-01  Chris Toshok  <toshok@ximian.com>
10049
10050         * Form.cs: flag a few things as "new" to quiet some of the mcs
10051         warnings.
10052
10053         * AxHost.cs: same.
10054
10055         * PrintPreviewDialog.cs: same.
10056
10057         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
10058         now DGV isn't so horrible on the class status page.  also, move
10059         all events to using System.ComponentModel.EventHandlerList.  my
10060         wrists hurt.
10061
10062 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10063
10064         * MdiWindowManager.cs:
10065         - Set form to active mdi child if shown,
10066         and update the active mdi child to the next 
10067         remaining child in the z-order if the form is hidden.
10068
10069         * Form.cs: 
10070         - Track if the form has been visible and if its 
10071         visibility is beeing changed, so that the MdiClient
10072         can properly decide the ActiveMdiChild. The MdiClient 
10073         cannot track this since the form can change visibility 
10074         before MdiClient is created.
10075
10076         * MdiClient.cs:
10077         - Don't activate anything of the parent form is changing
10078         its visibility.
10079         - Rework ActiveMdiChild to only return visible mdi 
10080         children and take into account several other corner 
10081         cases.
10082
10083 2006-12-01  Chris Toshok  <toshok@ximian.com>
10084
10085         * IBindableComponent.cs: new 2.0 interface.
10086
10087 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
10088
10089         * DataGrid.cs: Font for caption area is bold by default.
10090
10091 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
10092
10093         * Menu.cs: Tag property for 2.0.
10094         
10095 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
10096
10097         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
10098         
10099 2006-12-01  Chris Toshok  <toshok@ximian.com>
10100
10101         * TreeView.cs: doh, the Begin* events should be
10102         TreeViewCancelEventHandler.
10103
10104 2006-12-01  Chris Toshok  <toshok@ximian.com>
10105
10106         * Form.cs: Form.ControlCollection already stores off the
10107         form_owner field.  don't access the base class's internal "owner"
10108         field.
10109
10110         * Control.cs: make all the fields in Control.ControlCollection
10111         private.  there's no need for any internal fields here.
10112
10113 2006-12-01  Chris Toshok  <toshok@ximian.com>
10114
10115         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
10116         OnHandleCreated.  Fixes bug #80109.
10117
10118 2006-12-01  Chris Toshok  <toshok@ximian.com>
10119
10120         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
10121         SplitContainer.cs, Control.cs, StatusStrip.cs,
10122         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
10123         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
10124         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
10125         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
10126         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
10127         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
10128         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
10129         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
10130         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
10131         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
10132
10133         do most of the work to convert our code over to use
10134         System.ComponentModel.Component.Events for
10135         adding/removing/dispatching events.
10136
10137
10138 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
10139
10140         * DataGridView.cs: Fix an ArgumentNullException reported 
10141         twice today in IRC.
10142
10143 2006-11-30  Mike Kestner  <mkestner@novell.com>
10144
10145         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
10146         grabbed listbox.  Fixes #80036 and #80101.
10147
10148 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
10149
10150         * Message.cs: Changed ToString() to match MS.
10151         
10152 2006-11-30  Jackson Harper  <jackson@ximian.com>
10153
10154         * TextBoxBase.cs: You can still change the selected text on a read
10155         only textbox.
10156         * TextControl.cs: Lower magic number for wrap calculations. This
10157         lets text get closer to the right (far) edge.
10158
10159 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
10160
10161         * Control.cs: Tweak 2.0 layout properties.
10162         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
10163         * TextRenderer.cs: Add a new overload.
10164         * ToolStrip*: Huge amount of changes and new features.
10165
10166 2006-11-30  Mike Kestner  <mkestner@novell.com>
10167
10168         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
10169         scroll range correct.  Fixes #79994.
10170
10171 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
10172
10173         * MdiWindowManager.cs: Update main form's text when
10174         a form is closed. (fixes #80038)
10175         
10176 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
10177
10178         * ToolBar.cs:
10179         - Fix an regression in ButtonSize.
10180         - Get ImeMode default value change to "Disable".
10181         - Get ShowTooltips default value change to true, default value is 
10182         "false" but after make a test in .NET we get "true" result as default.
10183         
10184 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
10185
10186         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
10187
10188 2006-11-29  Chris Toshok  <toshok@ximian.com>
10189
10190         * XplatUIWin32.cs (GetWindowTransparency): check return value of
10191         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
10192         SetWindowTransparency hasn't been called.
10193
10194 2006-11-29  Chris Toshok  <toshok@ximian.com>
10195
10196         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
10197         if it's supported.
10198         (set_AllowTransparency): reorder things a little so that the
10199         WS_EX_LAYERED style is removed properly.
10200
10201 2006-11-29  Chris Toshok  <toshok@ximian.com>
10202
10203         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
10204         
10205         * Form.cs: only call the XplatUI transparency method (get/set) if
10206         SupportsTransparency says it's supported. Otherwise fallback to
10207         doing nothing (in the set case) or returning the instance field we
10208         cache (in the get case).
10209
10210         * XplatUIStructs.cs: add TransparencySupport flag enum.
10211         
10212         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
10213         change to SupportsTransparency.
10214
10215         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
10216         TransparencySupport.None from SupportsTransparency.
10217
10218         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
10219         TransparencySupport.Set from SupportsTransparency.
10220
10221         * XplatUIWin32.cs: implement GetWindowTransparency calling
10222         GetLayeredWindowAttributes, and implement SupportsTransparency by
10223         checking whether or not both
10224         GetWindowTransparency/SetWindowTransparency are available
10225         entrypoints.  We need to do this since SetWindowTransparency is
10226         available as of win2k, but GetWindowTransparency requires winxp.
10227         yay win32 api.
10228
10229         * XplatUI.cs: Add GetWindowTransparency, and change
10230         SupportsTransparency to allow for either/both Get/Set.
10231
10232 2006-11-29  Chris Toshok  <toshok@ximian.com>
10233
10234         * DataGrid.cs: keep from going into an infinite loop redrawing a
10235         datagrid that has no datasource.  Fixes bug #80033.
10236
10237 2006-11-29  Chris Toshok  <toshok@ximian.com>
10238
10239         * MenuItem.cs: fix the NRE when we assign text (and therefore call
10240         Invalidate) before the mainmenu has been assigned to a control.
10241
10242 2006-11-29  Chris Toshok  <toshok@ximian.com>
10243
10244         * DataGrid.cs: detect when we should be double the double click
10245         row/column autosize stuff, although that codepath has yet to be
10246         written.  part of the work for bug #79891.
10247
10248 2006-11-29  Chris Toshok  <toshok@ximian.com>
10249
10250         * Binding.cs (SetControl): fix unit test.
10251
10252 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10253
10254         * PageSetupDialog.cs: Validate the margins and set them in
10255         PageSettings. 
10256         * NumericTextBox.cs: New class to mimic the behavior of the
10257         textboxes used in the printing dialogs.
10258
10259 2006-11-29  Andreia Gaita  <avidigal@novell.com>
10260         
10261         * Form.cs: Revert previous change (remove call UpdateBounds
10262         from form constructor), because it messes with the handle creation
10263         order, and that one needs lots and lots of love.
10264         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
10265         for valid printer and throw InvalidPrinterException if document
10266         is set but printer not valid), adding a MonoTODO. Once 
10267         handle creation is done properly, we can put this back in.
10268
10269 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
10270
10271         * MenuItem.cs: Create a invalidate method for menu item, to be
10272         calling from set text, it make text changes to imadiate update
10273         on screen. Fixes #80013. 
10274         
10275 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
10276
10277         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
10278         fixes bug #80070 and some other problem on toolbar buttons
10279         layout.
10280
10281 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
10282
10283         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
10284         with dotted brush.      Fixes #79564
10285         
10286 2006-11-28  Andreia Gaita  <avidigal@novell.com>
10287
10288         * Form.cs: Removed call to UpdateBounds on Form
10289         constructor, it was causing a call to CreateHandle
10290         before it was supposed to.
10291         * PrintControllerWithStatusDialog: Applied patch
10292         by Chris Toshok to hide controller when there are
10293         no printers available.
10294         PrintDialog.cs: initialize printer settings to 
10295         null - correct DefaultValues test #5
10296         * PrintPreviewControl.cs: Move PrintController
10297         initialization to GeneratePreview
10298         * PrintPreviewDialog.cs: 
10299         - Remove Preview generation     from Document_set(). It is 
10300         called on OnPaint
10301         - Throw InvalidPrinterException on CreateHandle if
10302         a Document is set but there are no printers or 
10303         printer is not valid.
10304         * ThemeWin32Classic: don't paint PrintPreviewControl
10305         if there is nothing to paint    
10306
10307 2006-11-28  Miguel de Icaza  <miguel@novell.com>
10308
10309         * Form.cs: Add another popular method.
10310
10311         * TabPage.cs: ditto.
10312
10313 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10314
10315         * MenuItem.cs: Fixed a warning.
10316         * InternalWindowManager: Fixed a warning.
10317
10318 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10319
10320         * MenuItem.cs:
10321         - When cloning a menu also clone MdiList and clone the 
10322           window menu items properly (as the forms and menuitems
10323           are kept in an internal hashtable, these need updating 
10324           as well)
10325         - Rewrote the window menu code, menu items are added in the
10326           order the forms were added to their parent, and they are
10327           updated every time the window menu is shown (before the
10328           list was only generated once, in the current order of the
10329           forms, and would never be updated). A checkmark is shown
10330           next to the item corresponding to the active mdi child.
10331
10332 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10333
10334         * XplatUIStructs.cs: 
10335         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
10336         
10337         * XplatUIWin32.cs: 
10338         - Added TME_NONCLIENT to TMEFlags.
10339         - Handles WM_NCMOUSEMOVE in GetMessage to 
10340           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
10341
10342         * MdiWindowManager:
10343         - Now merges mdi child menu to parent menu when maximized.
10344         - Recalculate NC areas of both mdi child and mdi parent. 
10345           Fixes #79757 (4).
10346           on window state and size changes.Fixes #79844 (3).
10347         - Handle WM_NCCALCSIZE to properly calculate borders.
10348
10349         * Form.cs:
10350         - Add/remove to the mdi containers list of mdi children 
10351           in the order they are added.
10352         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
10353           to the maximized mdi child.
10354         
10355         * InternalWindowManager.cs:
10356         - Only execute a click on the control buttons on the mouse up,
10357           not on the mouse down. Show the state of the button 
10358           (was only showing Normal state, never Pressed state). The
10359           pressed button now follows the mouse (if you click the Close 
10360           button and move the mouse over the Maximize button, the 
10361           Maximize button will be shown as pressed). Since Win32 does
10362           not generate WM_NCLBUTTONUP if you release the button outside
10363           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
10364           it as a mouse up.
10365         
10366         * ThemeWin32Classic.cs:
10367         - Draw a missing border around mdi child forms. Fixes #79844 (2).
10368
10369         * MdiClient.cs:
10370         - Added a list of forms which contains the order the forms are
10371           added to the mdi parent.
10372         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
10373         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
10374         - If the active form changes set the scrollbars to the top
10375           of the Z order, otherwise the form could hide them.
10376         - Scrollbars are now sized according to ClientSize, not 
10377           to Size, and they take into account the other scrollbar
10378           to determine maximum.
10379         
10380 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
10381         
10382         * XplatUI.cs:
10383         * XplatUIDriver.cs:
10384         * XplatUIX11.cs:
10385         * XplatUIWin32.cs:
10386         * XplatUIOSX.cs:
10387         - Added RequestAdditionalWM_NCMessages for windows to 
10388           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
10389           Currently only implemented in XplatUIWin32.
10390
10391 2006-11-27  Chris Toshok  <toshok@ximian.com>
10392
10393         * Hwnd.cs: only add the hwnd to the windows hash in
10394         set_WholeWindow and set_ClientWindow if whole_window/client_window
10395         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
10396
10397 2006-11-27  Mike Kestner  <mkestner@novell.com>
10398
10399         * ComboBox.cs: remove redundant OnDropDown call.  It is called
10400         from the ComboListBox.ShowWindow code. Fixes #79969.
10401
10402 2006-11-27  Chris Toshok  <toshok@ximian.com>
10403
10404         * Hwnd.cs: remove the setters for ExposePending and
10405         NCExposePending - noone uses them.
10406
10407 2006-11-27  Jackson Harper  <jackson@ximian.com>
10408
10409         * TextControl.cs: new param for ReplaceSelection which determines
10410         whether we select the new selection, or set the cursor to the end
10411         of the new selection.
10412         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
10413         pasting, select the new text.
10414         * RichTextBox.cs: Use new param for ReplaceSelection.
10415
10416 2006-11-27  Jackson Harper  <jackson@ximian.com>
10417
10418         * TextBoxBase.cs: Set the selection to the caret after the caret
10419         is moved, otherwise they get out of sync.
10420
10421 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
10422
10423         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
10424         it fixes #80015
10425
10426 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
10427
10428         * ThemeWin32Classic.cs: 
10429         - Fix toolbar drop down arrow position.
10430         - Fix drop down appearance when ToolBar.Appearance is normal,
10431         it fixes #80018.
10432         
10433 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
10434
10435         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
10436         * Control.cs: Same.
10437         * UpDownBase.cs: Same.
10438         * ButtonBase.cs: Same.
10439         * ScrollBar.cs: Same.
10440         * TrackBar.cs: Same.
10441         * PictureBox.cs: Same.
10442         * UserControl.cs: Same.
10443         * Label.cs: Same.
10444         * ListControl.cs: Same.
10445         * TextBoxBase.cs: Same.
10446         * ListView.cs: Same.
10447         * RichTextBox.cs: Same.
10448         * TreeView.cs: Same.
10449
10450 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
10451
10452         * PrintDialog.cs:
10453         - Text label for where 
10454         - Text label comment was not shown
10455
10456 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
10457
10458         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
10459
10460 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
10461
10462         * InternalWindowManager.cs: 
10463         - Handle WM_PARENTNOTIFY to activate the form
10464         if any child control is clicked.
10465         - The form is only sizable if not minimized.
10466
10467         * MdiWindowManager.cs:
10468         - Save the IconicBounds if the form is moved.
10469         - Rework SetWindowState, now the window bounds 
10470         are stored only if the old window state is Normal.
10471         
10472         * MdiClient.cs:
10473         - In SetWindowStates store the old window state if 
10474         the window is maximized and restore window state if
10475         the window looses focus.
10476         - Don't handle any scrollbar value changes if 
10477         initializing the scroll bars. Fixes #79771.
10478         - Reworked ArrangeIconicWindows. Current algorithm
10479         tests bounds agains all other minimized windows, if
10480         any intersections create new bounds (going left to 
10481         right, bottom to top) and then test again. When 
10482         successful the bounds are saved and never computed
10483         again. Fixes #79774.
10484
10485 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
10486
10487         * InternalWindowManager.cs: Added HandleTitleBarUp.
10488
10489 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
10490
10491         * NumericUpDown.cs: In .NET 1.1, user entered text is still
10492         hexadecimal in ParseUserEdit.
10493
10494         
10495 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
10496
10497         * MdiWindowManager.cs: 
10498         - Handle a click on the form's icon to show the 
10499         system menu (when maximized). Fixes #79775.
10500         - Change the existing click handler for the form's
10501         icon when not maximized to show on MouseUp.
10502         Fixes #79776.
10503
10504         * Form.cs: In OnResize only layout the mdi child's
10505         parent if it actually has a parent. Might not if
10506         the window is closing.
10507
10508
10509 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
10510
10511         * MdiClient.cs: Ignore active MDI client for text of parent, if
10512         child has no text set.
10513
10514 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
10515
10516         * ToolBar.cs: Fixed ToString to match MS.
10517
10518 2006-11-22  Andreia Gaita  <avidigal@novell.com>
10519
10520         * NumericUpDown: 
10521         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
10522         update inner values on set. Fixes #79966.
10523         - Override OnLostFocus to update value on NET 2. Fixes #79950.
10524         - Fix hexadecimal parsing.
10525         
10526         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
10527         parent. Fixes #79957
10528
10529 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10530
10531         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
10532         the actual size has to be queried, since if height /
10533         width is negative Win32 changes it to 0. 
10534         Fixes #79999 on Windows.
10535         
10536         * XplatUIX11.cs: Set height / width to 0 if negative
10537         in SetWindowPos. Fixes #79999 on Linux.
10538         
10539 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
10540
10541         * ThemeWin32Classic.cs: Fix text redenring when button is
10542         pressed.
10543
10544 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
10545
10546         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
10547         and later navigate by mouse. Fixes #79528.
10548
10549 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
10550
10551         * ToolBar.cs: Set default value for TabStop to false in
10552         constructor, it fixes remaining behavior of bug #79863.
10553
10554 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10555
10556         * MdiWindowManager.cs:
10557         * InternalWindowManager.cs:
10558         - Moved a few methods specific to Mdi from 
10559         InternalWindowManager to MdiWindowManager.
10560         Fixes #79996.
10561         
10562 2006-11-21  Chris Toshok  <toshok@ximian.com>
10563
10564         * XplatUIOSX.cs: stub out InvalidateNC.
10565
10566         * XplatUIWin32.cs: implement InvalidateNC using the call I found
10567         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
10568
10569         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
10570
10571         * XplatUIDriver.cs: add InvalidateNC abstract method.
10572
10573         * XplatUI.cs: add InvalidateNC.
10574
10575 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
10576
10577         * ToolBar.cs: Invalidate complete button area when pressed status 
10578         was changed.
10579         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
10580         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
10581         by 1 when button is pressed.
10582
10583 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
10584
10585         * ToolButton.cs: Invalidate middle of DropDown button when
10586         ToolBar theres DropDownArrows.
10587         * ThemeWin32Classic.cs: Change position of DropDown arrow and
10588         fix DropDown drawing operations.
10589
10590 2006-11-20  Chris Toshok  <toshok@ximian.com>
10591
10592         * NativeWindow.cs: fix the formatting of functions ('{' on the
10593         following line), and enable the thread exception dialog.
10594
10595         * Application.cs: remove the duplicate exception catching from
10596         here.
10597
10598 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
10599
10600         * Toolbar.cs: Triggers button click event when click on icon
10601         of dropdown ToolBarButton. Fixes #79912.
10602         
10603 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10604
10605         * Theme.cs:
10606         * ThemeWin32Classic.cs:
10607         - Added a property WindowBorderFont to enable themeing
10608           of mdi child windows' Text.
10609           
10610 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10611
10612         * InternalWindowManager.cs:
10613         * Form.cs:
10614         * MdiClient.cs:
10615         * MdiWindowManager.cs: 
10616         - If mdi child is maximized, set mdi parent's
10617           text to "Parent - [Child]". Fixes #79770.
10618         - If there is any maximized mdi child windows, only the active 
10619           window (and any new windows) is maximized, the rest are normal.
10620         - On a WindowState change only save mdi child's window bounds 
10621           if the old window state was normal. Fixes #79774.
10622         - The scroll bars are now calculated on hopefully all
10623           necessary events. Fixed #79771 / #79844->6 / #79906.
10624         - MdiClient.SizeScrollBars() now takes into account docked 
10625           controls in the parent when calculating available space.
10626         - InternalWindowManager now always repaints the entire title
10627           area. Fixes #79844->1/4/5.
10628         - Added RequestNCRecalc on mdi child windowstate changes.
10629           Fixes #79772.
10630
10631 2006-11-20  Mike Kestner  <mkestner@novell.com>
10632
10633         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
10634         in the MouseUp handler of the listbox and move the return handling
10635         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
10636
10637 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
10638
10639         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
10640
10641 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
10642
10643         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
10644           working in 1.2.x anymore. So, updated.
10645
10646 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
10647
10648         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
10649         NumberGroupSeparator of current culture instead of assuming en-US.
10650         Fixed bug #79967.
10651
10652 2006-11-17  Mike Kestner  <mkestner@novell.com>
10653
10654         * Control.cs: Add the concept of implicit bounds setting so that
10655         dock/undock round trips preserve explicitly set size/locations.
10656         Fixes #79313.
10657
10658 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
10659
10660         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
10661           can't handle those filters. (Fixes bug #79961)
10662
10663 2006-11-17  Chris Toshok  <toshok@ximian.com>
10664
10665         [ fixes the exit/crashes associated with #79835.  it's clearly
10666         suboptimal though, we need to figure out a better way to solve
10667         this. ]
10668         
10669         * PrintPreviewControl.cs: deal with the new invalid printer
10670         exceptions.
10671
10672         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
10673         and return false (so CommonDialog.ShowDialog doesn't actually show
10674         the form.)
10675
10676         * PrintDialog.cs: enable/disable the Ok button depending on
10677         whether or not the printer is valid.
10678
10679         * CommonDialog.cs (ShowDialog): only actually show the form if
10680         RunDialog returns true.
10681
10682 2006-11-17  Jackson Harper  <jackson@ximian.com>
10683
10684         * TextControl.cs: When soft splitting a line, mark it as a soft
10685         split line. Also carry over the current line break to the next
10686         line.
10687
10688 2006-11-17  Chris Toshok  <toshok@ximian.com>
10689
10690         * XplatUIX11.cs: when scrolling a window with an invalid area, we
10691         only want to shift the part of the invalid area that overlaps the
10692         area we're scrolling.  we also don't want to clear the invalid
10693         area unless the invalid area was entirely contained within the
10694         scrolling area.
10695
10696 2006-11-16  Chris Toshok  <toshok@ximian.com>
10697
10698         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
10699         also make sure to free the memory returned by XGetWindowProperty
10700         in GetText().
10701
10702         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
10703
10704 2006-11-16  Chris Toshok  <toshok@ximian.com>
10705
10706         * XplatUI.cs: add a new super secret way to get at the totally
10707         unsupported X11 backend.
10708
10709 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
10710
10711         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
10712
10713 2006-11-16  Jackson Harper  <jackson@ximian.com>
10714
10715         * TreeView.cs: Allow more explicit setting of top node position
10716         for scrollbars. Slower algo, but more accurate.
10717         - CollapseAll should maintain the current top node.
10718         * TextBoxBase.cs: When positioning the caret, use the line, pos
10719         method, since the x, y method does not grab the correct tag, and
10720         the caret height never gets set correctly. (Maybe I should just do
10721         away with the caret having its own height, and always use the
10722         carets current tag for height).
10723
10724 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
10725
10726         [Fixes 79778, 79923]
10727
10728         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
10729         Parent to the FosterParent instead.
10730
10731 2006-11-16  Jackson Harper  <jackson@ximian.com>
10732
10733         * TreeView.cs: Need to recalc the topnode when we expand or
10734         collapse. The scrolling methods can't handle this on their own,
10735         since they use differences between the last scroll position, and
10736         those difference get completely messed up since we are expanding
10737         nodes.  This problem should probably be fixed in the scrolling
10738         methods, so they can figure out exactly where they are, but this
10739         will slow things down a little.
10740         * ThemeWin32Classic.cs: Special case for groupboxes with empty
10741         strings, makes nunit-gui look a lot nicer.
10742
10743 2006-11-16  Chris Toshok  <toshok@ximian.com>
10744
10745         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
10746         the broken multithreaded event handling we have in here.  File
10747         this entry under "Why we should move to the new X11 backend".
10748
10749         Any thread can make it into UpdateMessageQueue, which gets events
10750         from the X socket - some of which could belong to hwnds being
10751         managed by a different thread.  We can also have multiple threads
10752         in UpdateMessageQueue at the same time, with each one reading from
10753         the X socket.  This leads to many problems, with the following
10754         solutions:
10755
10756         We can't use hwnd.Queue.Enqueue anywhere in here and must use
10757         EnqueueLocked.
10758
10759         The MotionNotify compression we do can't work across threads
10760         (without locking the entire queue, perhaps) since we call
10761         hwnd.Queue.Peek, so we just punt and don't compress motion events
10762         unless the owning thread is the one which got the X event.
10763
10764         ConfigureNotify is another fun one, since it modifies the hwnd's
10765         bounds and then enqueues the event.  We add a lock to Hwnd which
10766         is held when setting configure_pending to true (and enqueuing the
10767         event).
10768
10769         There is a race wrt the wake socket.  we need to make sure that
10770         only 1 thread is waiting on that socket, or else a thread could
10771         sleep waiting for data that never comes.  It's difficult (but not
10772         impossible) to make happen, because it seems to require something
10773         like the following:
10774
10775             1. Thread 1 polls on wake_receive
10776         
10777             2. poll returns saying there's data to be read on
10778                wake_receive.
10779         
10780             3. Thread 2 polls on wake_receive and immediately returns
10781                saying there's data to be read.
10782
10783             4. Thread 2 reads the wakeup byte from wake_receive
10784
10785             5. Thread 1 attempts to read the wakeup byte from
10786                wake_receive.
10787
10788             6. Thread 2 exits (due to a form closing, perhaps).
10789
10790             7. Thread 1 blocks forever.
10791         
10792         Fun, eh?
10793
10794         Fixing the Expose handling isn't done yet, and the races inherent
10795         in that piece of code are responsible for the drawing mistakes you
10796         see when generating expose events in a MT app (like NPlot).  This
10797         one is the likely to be the hardest to bandaid, and it doesn't
10798         appear to cause anything but drawing problems.  The other issues
10799         caused apps to exit or hang.
10800
10801         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
10802         called from a different thread than the one that should be calling
10803         these functions.
10804
10805         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
10806
10807 2006-11-15  Chris Toshok  <toshok@ximian.com>
10808
10809         * Application.cs: null out the context's MainForm when we exit
10810         RunLoop.  Fixes a newly checked in unit test as well as the last
10811         ODE from bug #79933.
10812
10813 2006-11-15  Chris Toshok  <toshok@ximian.com>
10814
10815         * Form.cs (set_Owner): allow a null value so we can clear the
10816         form's owner.
10817         (Dispose): set all our owned_form's Owner properties to null, and
10818         clear the owned_forms collection.
10819         (WM_CLOSE): clean up this a little bit.. still not right though.
10820
10821         * ApplicationContext.cs: OnMainFormClosed should only call
10822         ExitThreadCore if the main form isn't recreating.  Fixes unit
10823         test.
10824
10825 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
10826
10827         [Fixes 78346]
10828
10829         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
10830
10831 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
10832
10833         [Fixes 79433]
10834
10835         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
10836         keep popup window types from stealing focus from the main form
10837         on Windows.
10838
10839         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
10840
10841         * MenuAPI.cs: Set above flag to true.
10842
10843 2006-11-15  Chris Toshok  <toshok@ximian.com>
10844
10845         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
10846         the button being released is not in wParam.
10847
10848 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
10849
10850         * Form.cs: Add the released button to MouseEventArgs.Button
10851         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
10852         on Win32.
10853
10854 2006-11-15  Chris Toshok  <toshok@ximian.com>
10855
10856         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
10857         GetText().  untested because it's unused in our implementation.
10858         Control.Text always caches the text, even if
10859         ControlStyles.CacheText is not set.
10860
10861         fixes bug #79939.
10862
10863 2006-11-15  Chris Toshok  <toshok@ximian.com>
10864
10865         [ fixes #79933 ]
10866         
10867         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
10868         message.  no hiding, no disposing.
10869
10870         in the WM_CLOSE handler, hide the form if it's modal.
10871
10872 2006-11-15  Chris Toshok  <toshok@ximian.com>
10873
10874         * XplatUIX11.cs: use AddExpose instead of sending a message.
10875         fixes textbox border drawing.
10876
10877 2006-11-15  Chris Toshok  <toshok@ximian.com>
10878
10879         * PropertyGridView.cs: keep from crashing on mouse move/down when
10880         the property grid is empty.
10881
10882 2006-11-14  Jackson Harper  <jackson@ximian.com>
10883
10884         * TextControl.cs: Make PageUp and PageDown more like the MS
10885         versions.
10886         * TextBoxBase.cs: When we set the text property position the
10887         cursor at the beginning of the document.
10888
10889 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10890
10891         * Form.cs: if a mdi child's WindowState has changed
10892         before it's creation, it would display wrong control
10893         buttons.
10894         
10895 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
10896
10897         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
10898           (Fixes bug #79927)
10899
10900 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
10901
10902         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
10903         the window gets to paint its borders even if the window is
10904         getting smaller.
10905         
10906         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
10907         otherwise the old control buttons would still be painted 
10908         if the window gets bigger.
10909         
10910         * PaintEventArgs.cs: add an internal method so that the clip 
10911         rectangle can be changed.
10912         
10913 2006-11-13  Chris Toshok  <toshok@ximian.com>
10914
10915         [ fixes bug #79745 ]
10916         
10917         * NotifyIcon.cs: lots of cleanup.
10918
10919         * X11Structs.cs: add an enum for XEMBED messages.
10920
10921         * XplatUIX11.cs: reindent one of the giant switch statements, it
10922         was taking up an additional tab stop, and this file is already way
10923         too wide for my laptop's screen.
10924
10925         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
10926         we get it, resize the hwnd to the WMNormalHints max_width/height.
10927
10928 2006-11-13  Jackson Harper  <jackson@ximian.com>
10929
10930         * TextBoxBase.cs: Compute the value changes for the mouse wheel
10931         teh simple way.
10932
10933 2006-11-13  Chris Toshok  <toshok@ximian.com>
10934
10935         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
10936         #79898.  force a reference to the Region to stick around so the
10937         unmanaged object isn't collected (rendering our handle in the MSG
10938         stale).
10939
10940 2006-11-13  Chris Toshok  <toshok@ximian.com>
10941
10942         * XplatUIX11.cs: fix #79917 for window managers which support
10943
10944         using XStoreName on the raw utf8, and we need to convert to
10945         COMPOUND_TEXT if it's non-latin1.
10946
10947 2006-11-13  Chris Toshok  <toshok@ximian.com>
10948
10949         * Form.cs (set_DialogResult): we need to set closing to false if
10950         we're setting our result to None.  fixes bug #79908.
10951
10952 2006-11-13  Jackson Harper  <jackson@ximian.com>
10953
10954         * TextControl.cs: When formatting text, compute the adjusted tag
10955         lengths correctly, using FindTag for the end tag instead of trying
10956         to figure it out outselves.
10957         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
10958         the item, ItemHeight doesn't work, because trees with large
10959         imagelists use those for their height
10960         * TreeView.cs: ActualItemHeight factors in the image height
10961         - compute left edge of checkboxes correctly
10962         - when expanding/collapsing move the bottom down one pixel, so we
10963         aren't moving part of the node
10964
10965 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10966
10967         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
10968         stack in PaintEventStart so that it won't get disposed by the gc
10969         before reaching PaintEventEnd.
10970
10971 2006-11-13  Jackson Harper  <jackson@ximian.com>
10972
10973         * TextBoxBase.cs: Don't select the word if we are on a line with
10974         no text.
10975         - We don't need to position the caret on mouse up, since the mouse
10976         move handler should be doing this
10977         - When double clicking a blank line, the caret is advanced to the
10978         next line.
10979
10980 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
10981
10982         * TreeNodeCollection.cs: Avoid duplicating indexer code.
10983
10984 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
10985
10986         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
10987         Fixes part of bug #79910.
10988
10989 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
10990
10991         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
10992           (bug #79903). Some minor string updates to match ms.
10993
10994 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
10995
10996         * FileDialog.cs: Don't add an extension if the filename
10997           already ends with that extension.
10998
10999 2006-11-10  Jackson Harper  <jackson@ximian.com>
11000
11001         * TreeView.cs: Use the currently highlighted node for the
11002         BeforeSelect event.
11003         * TextBoxBase.cs: There is no need to expand selection on
11004         MouseMove.
11005         - CanUndo means 'is there any undo operations', not 'is undo
11006         allowed on this textcontrol. Fixed ClearUndo unit test.
11007
11008 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
11009
11010         * Button.cs: only perform click when button is Selectable (so as 
11011         not to activate default buttons when they're disabled)
11012         
11013         * Control.cs: Rewrite of the SelectNextControl and related 
11014         methods. HandleClick now selects next control if the current one
11015         is being disabled.
11016         
11017         * Form.cs: OnActivated selects next active control only if Load 
11018         has already occurred. If Load hasn't run, there's no point in 
11019         selecting here, Load might change the state of controls.
11020         
11021         * FocusTest.cs: Tests marked as working again for these fixes
11022
11023 2006-11-10  Chris Toshok  <toshok@ximian.com>
11024
11025         * XplatUIX11.cs: a couple of fixes.
11026
11027         - use XInternAtoms with almost all the atoms we need to register,
11028         instead of many, many calls to XInternAtom.  should help a bit on
11029         startup time, at the expense of making the code look a little
11030         worse.
11031
11032         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
11033         isn't reparented (which seems to be a clue that we're running fon
11034         compiz) and they have an Owner form.  This fixes the tool windows
11035         in paint.net when running under compiz.
11036
11037         - when setting the opacity of a window, support both the case
11038         where the window has been reparented and also when it hasn't been.
11039         Since compiz/beryl doesn't seem to reparent windows, and these are
11040         the only window managers which support translucency, I'm not sure
11041         why we need the hwnd.reparented case at all.. but leave it in.
11042         now we get translucent windows in paint.net under compiz/beryl.
11043
11044 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
11045
11046         * FileDialog.cs: Always return the value for FilterIndex that
11047           was set. Internally convert it to values that make sense.
11048
11049 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
11050         
11051         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
11052
11053 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
11054
11055         * Toolbar.cs: Change default value of DropDownArrows to true, the 
11056         signature still using false to make it compatible with MS but the 
11057         initial value is true. Fixes #79855.
11058
11059 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
11060
11061         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
11062           only available on Linux.
11063
11064 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
11065
11066         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
11067         reduce number of calls to redraw method during toolbar creation.
11068
11069 2006-11-09  Mike Kestner  <mkestner@novell.com>
11070
11071         * ListView.cs : raise SelectedIndexChanged when an item is selected
11072         programmatically via the Item.Selected property.  Gert's nice 
11073         ListViewSelectedIndexChanged test fixture now runs clean.
11074
11075 2006-11-09  Mike Kestner  <mkestner@novell.com>
11076
11077         * ListView.cs : raise SelectedIndexChanged when a selected item is
11078         removed from the item collection using Remove or RemoveAt.
11079
11080 2006-11-09  Mike Kestner  <mkestner@novell.com>
11081
11082         * ListView.cs : raise SelectedIndexChanged once per selected item
11083         for compat with MS.  Fixes #79849+.
11084
11085 2006-11-09  Chris Toshok  <toshok@ximian.com>
11086
11087         * TabControl.cs: initialize row_count to 0, and set it to 1 when
11088         we need to (if we have any tab pages).  Fixes unit test.
11089
11090 2006-11-09  Chris Toshok  <toshok@ximian.com>
11091
11092         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
11093         width is 0, not 3.  Fixes a unit test.
11094
11095 2006-11-09  Mike Kestner  <mkestner@novell.com>
11096
11097         * ListView.cs : use Implicit scrollbars so that focus isn't 
11098         stolen from the listview when they are clicked. Fixes #79850.
11099
11100 2006-11-09  Chris Toshok  <toshok@ximian.com>
11101
11102         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
11103         have a root item.  Fixes #79879.
11104
11105 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
11106
11107         * FileDialog.cs:
11108           - Fix ToString ()
11109           - An ArgumentException is now thrown if a wrong filter
11110             is applied (matches ms). The previous filter doesn't change
11111             anymore if an exception is thrown.
11112           - Changing the FileName property also affects FileNames
11113         * ColorDialog.cs: The length of the CustomColors array is always
11114           16. It doesn't matter if we use a smaller array or null to update
11115           or change the custom colors property.
11116         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
11117           for RootFolder if we get a undefined value.
11118
11119 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11120
11121         * StatusBarPanel.cs: 
11122         - Width is set to MinWidth if Width is smaller than
11123         MinWidth. Fixes #79842.
11124         - MinWidth now always overrides Width (MSDN says MinWidth
11125         is set to Width when AutoSize = None, but they do not 
11126         behave like that).
11127         - Style has now the the correct default value.
11128         
11129 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11130  
11131         * TrackBar.cs: 
11132         - The control is completely invalidated on 
11133         Got/LostFocus to draw the focus rectangle correctly.
11134         - When AutoSize then height is always 45 (width for 
11135         vertical controls).
11136         
11137         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
11138         on the mouse when moved and it doesn't move when grabbed
11139         until the mouse moves as well. Also fixed some wrong 
11140         calculations when clicking on the thumb (control thought
11141         click was outside of thumb and didn't grab it).
11142         Fixes some of the issues in #79718.
11143
11144 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
11145
11146         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
11147
11148 2006-11-08  Chris Toshok  <toshok@ximian.com>
11149
11150         * PropertyGridView.cs: only call ToggleValue if the item is not
11151         readonly.
11152
11153 2006-11-08  Jackson Harper  <jackson@ximian.com>
11154
11155         * TextBoxBase.cs: The RichTextBox and textbox have very different
11156         word selection methods.  Implement the textbox's simple word
11157         selection here, and let the RichTextBox override and provide it's
11158         own.
11159         - Don't do extra selection on mouseup
11160         * RichTextBox.cs: Use the documents word selection algorithm, I
11161         think ideally, this function will be pulled into the
11162         RichTextBox.cs code someday.
11163
11164 2006-11-08  Chris Toshok  <toshok@ximian.com>
11165
11166         * RootGridEntry.cs: new class to represent GridItemType.Root.
11167
11168         * CategoryGridEntry.cs: reformat, and add boilerplate.
11169         
11170         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
11171         returns the UI parent anyway, and we need special handling to
11172         implement the GetTarget method in the face of it.  Also, implement
11173         Select().
11174
11175         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
11176         a root grid item, and use that instead of PropertyGrid.grid_items.
11177         Also, make use of TypeConverters (and add limitted support for
11178         ICustomTypeDescriptors) when initially populating the grid.
11179         Arrays now show up more or less properly.
11180
11181 2006-11-08  Chris Toshok  <toshok@ximian.com>
11182
11183         * Application.cs: set the modal dialog to non modal after we close
11184         it.  Fixes bug #79866.
11185
11186 2006-11-08  Jackson Harper  <jackson@ximian.com>
11187
11188         * TextControl.cs: When combining lines carry over the line end
11189         style from the end line.
11190         - Invalidate the selected area when setting it, if it is visible.
11191         * TextBoxBase.cs: Only rich text box can do full line selects.
11192         - Make sure to set the cursor position when there is a click,
11193         otherwise two clicks in separate areas could cause a large chunk
11194         to be selected.
11195
11196 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11197
11198         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
11199         Fixes #79863.
11200
11201 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11202
11203         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
11204         time. Remove tooltips when ToolButton click events.  Fixes #79856.
11205
11206 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11207
11208         * MenuAPI.cs: Ignore right click for menu actions and fixes
11209         menu border when clicked.  Fixes #79846.
11210
11211 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11212
11213         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
11214         MouseState after create wParam for message, this fixes mouse button 
11215         equal none in mouse up events.
11216         
11217 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
11218
11219         * Control.cs : Focus() now calls Select to set the Container's
11220         Active Control and to give it focus. To avoid infinite recursion
11221         (because ActiveControl also calls Focus at one point), a check 
11222         is made in Focus with the help of a new internal variable
11223         is_focusing.
11224
11225 2006-11-07  Mike Kestner  <mkestner@novell.com>
11226
11227         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
11228         if there's a selection.  Fixes #79849.
11229
11230 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
11231
11232         * PropertyGrid.cs: Avoid fixed height of help description label.
11233         Fixes part of bug #79829.
11234
11235 2006-11-07  Chris Toshok  <toshok@ximian.com>
11236
11237         * XplatUIX11.cs: fix #79790 again, by using the
11238         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
11239
11240 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11241
11242         * ToolBar.cs: Fix left click checking.
11243
11244 2006-11-07  Chris Toshok  <toshok@ximian.com>
11245
11246         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
11247
11248 2006-11-07  Chris Toshok  <toshok@ximian.com>
11249
11250         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
11251         PropertyManager unit tests.
11252
11253         * PropertyManager.cs: make property_name internal.
11254
11255 2006-11-07  Chris Toshok  <toshok@ximian.com>
11256
11257         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
11258         pass a unit test.  Also, don't set image_index to anything in
11259         response to setting the ImageList property.
11260
11261 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
11262
11263         * ToolBar.cs: Ignore click events when mouse button is not a
11264         left button, only accepts other button for dropdown menus.  
11265         Fixes #79854.
11266
11267 2006-11-07  Chris Toshok  <toshok@ximian.com>
11268
11269         * DataGrid.cs: make the back and parent row buttons a little less
11270         ugly.
11271
11272 2006-11-07  Jackson Harper  <jackson@ximian.com>
11273
11274         * TextBoxBase.cs: When converting to Text don't put line breaks in
11275         for soft line breaks.
11276         * TextControl.cs: There is an initial "fake" line in the document,
11277         this is now a soft break line, so that an extra line feed doesn't
11278         get added to the end of documents.
11279
11280 2006-11-07  Chris Toshok  <toshok@ximian.com>
11281
11282         [ fix bug #79778 ]
11283         
11284         * CurrencyManager.cs: if the list is readonly, don't bother
11285         checking if IBindingList.AllowNew is true.
11286
11287         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
11288         for non-DataRowView datasources..  or rather, make it not crash.
11289         (DataGridPaintRelationRow): make sure we limit the row painting to
11290         the area not covered by the row header, and make our cell width at
11291         least large enough to cover the relation area.  This allows grids
11292         that have relations but no rows to render correctly.
11293         (DataGridPaintRowContents): same type of changes here.
11294         (SetDataSource): move back to always calling
11295         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
11296         navigating back through relations.
11297         (HitTest): handle the case where we have no cells but have
11298         relations.  Right now we generate a hit in cell 0 of whatever the
11299         row is, not sure if this is strictly correct, but it works for our
11300         purposes.
11301         
11302         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
11303         bother doing anything.
11304
11305 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
11306
11307         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
11308         early version of StatusStrip.  Not responsible for eaten
11309         application or firstborn children.
11310
11311 2006-11-06  Chris Toshok  <toshok@ximian.com>
11312
11313         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
11314         call GetTabRect with a -1 index.  Fixes #79847.
11315
11316 2006-11-06  Jackson Harper  <jackson@ximian.com>
11317
11318         * TreeNodeCollection.cs: Update scrollbars after clearing.
11319
11320 2006-11-06  Chris Toshok  <toshok@ximian.com>
11321
11322         * NumericUpDown.cs: fix the ToString method for some unit test
11323         love.
11324
11325 2006-11-06  Chris Toshok  <toshok@ximian.com>
11326
11327         * PropertyGrid.cs:
11328         - set the initial SelectedGridItem if we can.
11329
11330         - Exclude non-mergable properties only if we're merging > 1
11331         object.  Merging 1 object isn't really merging, obviously.
11332
11333         - Handle PropertySort.NoSort just like Alphabetical, which is
11334         wrong of course, but at least gets things on the screen.
11335         
11336         * PropertyGridView.cs:
11337         - Add method "FindFirstItem" which finds the first property grid
11338         item, so we can select it by default.
11339
11340         - make use of GridEntry.CanResetValue.
11341
11342         - Don't call RedrawBelowItemOnExpansion here anymore, the
11343         individual GridEntry's will do that.
11344
11345         - Remove the ITypeDescriptorContextImpl internal class.
11346         
11347         * GridEntry.cs:
11348         - this class needs to implement ITypeDescriptorContext, as it's
11349         what MS's PropertyDescriptorGridEntry does, which means we can
11350         remove the ITypeDescriptorContextImpl internal class from
11351         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
11352
11353         - keep a reference to our PropertyGridView, and move the call to
11354         RedrawBelowItemOnExpansion here from PGV.  This means
11355         programmaticly setting Expanded actually does something visible.
11356
11357         - add a CanResetValue() function which takes into account our
11358         possibly multiple "selected_objects" in the merged case.  Shifting
11359         PropertyGridView to use this method fixes another unreported
11360         crasher found running the test for #79829.
11361
11362         - when Top or Bounds is updated, make sure the PropertyGridTextBox
11363         is updated to reflect this.
11364
11365         * CategoryGridEntry.cs: the ctor takes the PGV now.
11366         
11367 2006-11-06  Jackson Harper  <jackson@ximian.com>
11368
11369         * TextControl.cs: These are 1 based.
11370         * TextBoxBase.cs: When setting the selected text, don't change the
11371         selected text tags, this is done by ReplaceText, just position the
11372         cursor at the end of the new text.
11373
11374 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
11375
11376         * ListView.cs: Allow label edit only when, when LabelEdit is
11377           set to true.
11378
11379 2006-11-06  Jackson Harper  <jackson@ximian.com>
11380
11381         * TextControl.cs: If a suitable wrapping position isn't found,
11382         just wrap right in the middle of a word.
11383
11384 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
11385
11386         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
11387           bug #79820.
11388
11389 2006-11-06  Jackson Harper  <jackson@ximian.com>
11390
11391         * TreeView.cs: Can't use the VisibleCount property when setting
11392         scrollbar heights, because this doesn't take into account whether
11393         or not the horz scrollbar just came visible.
11394
11395 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
11396
11397         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
11398         activated.  Fixes #79369, #79832.
11399
11400 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
11401
11402         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
11403           had to remove support for links that point to a directory. FileInfo
11404           returns no usefull information (means, the directory they point to)
11405           for such links. Replaced some empty string ("") with String.Empty.
11406
11407 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
11408
11409         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
11410         NullReferenceException when attempting to remove node that is not in
11411         collection. Throw NullReferenceException when null is passed to 
11412         Remove. Allow first element of the collection to be removed. Fixes
11413         bug #79831.  In GetEnumerator ().Current return null if positioned 
11414         before the first element of the collection. In GetEnumerator ().Reset,
11415         position before first element of the collection.
11416
11417 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
11418
11419         * PropertyGrid.cs: To match MS, remove default title and description
11420         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
11421         buttons.
11422
11423 2006-11-04  Chris Toshok  <toshok@ximian.com>
11424
11425         * Theme.cs: add a Clamp method, just for kicks.
11426
11427         * ThemeWin32Classic.cs: clamp all color components to [0..255].
11428
11429 2006-11-04  Chris Toshok  <toshok@ximian.com>
11430
11431         * Form.cs: if the form isn't visible, Close() does nothing.
11432
11433 2006-11-03  Chris Toshok  <toshok@ximian.com>
11434
11435         * Form.cs (Close): if the form is modal, don't Dispose of it, only
11436         Hide it.
11437         (WndProc): don't Dispose after handling the WM_CLOSE message.
11438
11439         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
11440         them as such, instead of using casts from Control to Form.  Also,
11441         don't Dispose of the modal dialog when we fall out of the loop -
11442         Close() it instead.
11443
11444         fixes bug #79813.
11445
11446 2006-11-03  Chris Toshok  <toshok@ximian.com>
11447
11448         * Control.cs (Dispose): only go through the dispose thing if we're
11449         @disposing, and we haven't already been disposed.  Fixes bug
11450         #79814.
11451
11452         * Form.cs: no reason to call "base.Dispose()" here instead of
11453         "Dispose()".
11454
11455 2006-11-03  Mike Kestner  <mkestner@novell.com>
11456
11457         * ComboBox.cs : use ToString instead of casts in AddItem for
11458         sorting functionality.  Fixes #79812.
11459
11460 2006-11-03  Chris Toshok  <toshok@ximian.com>
11461
11462         * Application.cs: pave the way for actually using the thread
11463         exception dialog.  it's ifdefed out at the moment.
11464
11465 2006-11-03  Chris Toshok  <toshok@ximian.com>
11466
11467         * ThreadExceptionDialog.cs: until we get a better layout, actually
11468         hide the details textbox and label when we shouldn't see them.
11469
11470 2006-11-03  Jackson Harper  <jackson@ximian.com>
11471
11472         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
11473         multiline textboxes anymore.  This method also determines the
11474         width/height of a textboxes canvas area.
11475         - Sorta a revert of the last patch.  For multiline just position
11476         the controls, then bail.  This way the scrollbar width won't be
11477         altered.
11478
11479 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
11480
11481         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
11482         it dont need.  Fixes #79537.
11483
11484 2006-11-02  Jackson Harper  <jackson@ximian.com>
11485
11486         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
11487         send the status after firing the DndOver event.
11488
11489 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11490
11491         * TrackBar.cs: Now orientation only switches height / width if
11492         the control's handle is created (Win32 does it like this). Also 
11493         fixed a typo in ToString() for a test to pass, changed the 
11494         exception thrown in set_LargeChange and set_SmallChange to 
11495         match Win32 behaviour, and added TrackBar tests to the unit 
11496         tests.
11497
11498 2006-11-02  Chris Toshok  <toshok@ximian.com>
11499
11500         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
11501         not _NET_WM_STATE_NO_TASKBAR.
11502
11503 2006-11-02  Jackson Harper  <jackson@ximian.com>
11504
11505         * TextControl.cs: Increment count by one, since in the update view
11506         count - 1 is used.
11507
11508 2006-11-02  Jackson Harper  <jackson@ximian.com>
11509
11510         * TextBoxBase.cs: Use client rectangle not bounds for checking if
11511         the mouse is in the client rectangle (duh).
11512
11513 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11514         
11515         * TrackBar.cs: Fixed trackbar jumping around when clicking
11516         on it - the trackbar was not detecting correctly at which
11517         side of the thumb the click was done. (fixes #79718)
11518
11519 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
11520
11521         * ListBox.cs: scroll visible area when change SelectedIndex to
11522         a non visible area.  Fixes #79481.
11523
11524 2006-11-01  Jackson Harper  <jackson@ximian.com>
11525
11526         * TextControl.cs: When replacing the selection move the selection
11527         start/end/anchor to the end of the new text.
11528
11529 2006-11-01  Jackson Harper  <jackson@ximian.com>
11530
11531         * XplatUIWin32.cs: When setting the parent change the controls
11532         visibility to it's visibility flag, not to it's old parents
11533         visibility (.Visible walks the parent chain).
11534
11535 2006-11-01  Chris Toshok  <toshok@ximian.com>
11536
11537         * XplatUIX11.cs: revert the #79790 fix, as the simple.
11538         XSetTransientForHint fix breaks paint .net's tool windows.  more
11539         work needed for that one.
11540
11541 2006-11-01  Chris Toshok  <toshok@ximian.com>
11542
11543         * ScrollBar.cs: throw ArgumentException instead of Exception in
11544         LargeChange/SmallChange setters.  fixes unit tests.
11545
11546 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
11547
11548         * ContainerControl.cs: reverted rev.67183 (which was itself
11549         a reversion of rev.66853... eh).
11550         
11551         * Control.cs: Fixes Reflector hang by changing Focus() call
11552         to what it was before rev.66643 (calling Select() here sets 
11553         ActiveControl, which in some situations calls back Focus and 
11554         eventually does a stack overflow). Temp fix.    
11555         Changes to GetNextControl() to not look for children to select when
11556         parent cannot be selectable (so it looks for siblings instead)  
11557         
11558 2006-10-31  Mike Kestner  <mkestner@novell.com>
11559
11560         * CheckedListBox.cs : off by one error in returned index from
11561         ObjectCollection.Add.  Fixes #79758.
11562
11563 2006-10-31  Chris Toshok  <toshok@ximian.com>
11564
11565         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
11566         calls for the textbox/spinner, to keep from recursing to the point
11567         where we crash.  Fixes #79760.
11568
11569 2006-10-31  Chris Toshok  <toshok@ximian.com>
11570
11571         * ListControl.cs (set_SelectedValue): don't throw exceptions on
11572         null/"" value, just return.  matches ms's behavior and fixes some
11573         failing tests.
11574
11575 2006-10-31  Chris Toshok  <toshok@ximian.com>
11576
11577         * Control.cs (set_Capture): make a logic a little easier to
11578         follow.
11579
11580         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
11581         if it's being destroyed.  A necessary fix surely, but a bandaid
11582         also, to fix the stuck capture problem in bug #78413.
11583
11584 2006-10-31  Chris Toshok  <toshok@ximian.com>
11585
11586         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
11587         convention of clearing hwnd.ClientRect when we set the
11588         width/height (so it'll be recalculated by Hwnd).
11589
11590 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
11591
11592         * ContainerControl.cs: reversed Contains check from
11593         ActiveControl due to hanging problems. This fix
11594         partly regresses #79667 (button does not have
11595         initial focus), so this might be a symptom for 
11596         a larger parenting problem (set_ActiveControl
11597         is being called but the child control does
11598         not have the parent set yet?)   
11599         
11600 2006-10-31  Mike Kestner  <mkestner@novell.com>
11601
11602         * MenuAPI.cs : fix keynav when menu is click activated.
11603
11604 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
11605
11606         * ToolStrip*: Version 0.2.
11607
11608         * MenuStrip.cs: Version 0.1.
11609
11610         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
11611
11612 2006-10-30  Chris Toshok  <toshok@ximian.com>
11613
11614         [ fixes the oversized notify icon issue in bug #79745 ]
11615         
11616         * NotifyIcon.cs: scale the icon down to the size we're given by
11617         the XplatUI layer (this would be faster if we did it once instead
11618         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
11619         since it's never invoked.
11620
11621         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
11622         pixels high by default, so let's hardcode our systray icon to that
11623         size.  The SYSTEM_TRAY protocol should really have a way for
11624         client apps to query for the correct icon size.. but oh well.  A
11625         couple of patches to deal with the screwy client_window ==
11626         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
11627         instance, and also make sure we don't XSelectInput twice).
11628
11629 2006-10-30  Chris Toshok  <toshok@ximian.com>
11630
11631         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
11632         recreating forms.  Control recreation is the bane of my existence.
11633         Fix it in a way that keeps everyone happy.
11634
11635 2006-10-30  Chris Toshok  <toshok@ximian.com>
11636
11637         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
11638         just non-CHILD ones.  otherwise sometimes scrollbars end up with
11639         client_windows not being resized to the proper size (ReportBuilder
11640         shows this extremely well).
11641
11642 2006-10-30  Chris Toshok  <toshok@ximian.com>
11643
11644         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
11645         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
11646         showing up in the gnome taskbar.  Fixes bug #79790.
11647
11648 2006-10-30  Chris Toshok  <toshok@ximian.com>
11649
11650         * ApplicationContext.cs: guard against a NRE.
11651
11652         * Application.cs: null out the old MainForm for the context, so we
11653         don't try to use it again once it's disposed.  Fixes bug #79783.
11654
11655 2006-10-30  Chris Toshok  <toshok@ximian.com>
11656
11657         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
11658         BindingContext, set the data source directly, otherwise do the
11659         lazy approach - the actual ListManager will be created when we get
11660         a BindingContext. Fixes bug #79700.
11661
11662 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
11663
11664         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
11665           XplatUIX11.cs: Remove old 2 parameter SetVisible.
11666
11667         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
11668
11669 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
11670
11671         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
11672         of SetVisible that allows a window to be shown, but not activated.
11673         This is needed on Windows for MenuStrip, and can probably be used
11674         with MainMenu and ComboBox to fix the focus stealing issues on
11675         Windows.
11676
11677         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
11678
11679 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
11680
11681         * PictureBox.cs: Fix the output of the ToString method.
11682
11683 2006-10-29  Chris Toshok  <toshok@ximian.com>
11684
11685         * Control.cs (get_TopLevelControl): fix bug #79781.
11686
11687 2006-10-29  Chris Toshok  <toshok@ximian.com>
11688
11689         * ListControl.cs (set_DataSource): throw Exception here, not
11690         ArgumentException, to match MS behavior.
11691
11692 2006-10-29  Chris Toshok  <toshok@ximian.com>
11693
11694         * Form.cs: remove the try-catch's around calls to GetWindowState.
11695         We can just check the return value.
11696
11697         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
11698         Instead return -1.
11699
11700         * XplatUI.cs: Add note about additional return value for
11701         GetWindowState.
11702
11703 2006-10-29  Chris Toshok  <toshok@ximian.com>
11704
11705         * Control.cs (CreateHandle): when we create our handle, we also
11706         create the handles of our child controls.  Fixes one of the
11707         Control unit tests (CH11).
11708
11709 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
11710
11711         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
11712
11713 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
11714
11715         * ThemeClearlooks.cs: A little speedup.
11716
11717 2006-10-27  Chris Toshok  <toshok@ximian.com>
11718
11719         * Control.cs: implement Control.FromChildHandle in a way that
11720         matches the docs (and fixes the failed test.)
11721
11722 2006-10-27  Chris Toshok  <toshok@ximian.com>
11723
11724         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
11725         comments).
11726
11727         * DataGrid.cs: implement ResetForeColor such that the tests
11728         succeed.
11729         
11730 2006-10-27  Chris Toshok  <toshok@ximian.com>
11731
11732         * ToolBarButton.cs: setting text/tooltiptext to null results in it
11733         being set to "".  Fixes bug #79759.
11734
11735 2006-10-27  Jackson Harper  <jackson@ximian.com>
11736
11737         * TextControl.cs: We need to clear the entire selection area when
11738         setting the start, otherwise multiline selections are still
11739         visible.
11740
11741 2006-10-26  Chris Toshok  <toshok@ximian.com>
11742
11743         * PropertyGridView.cs: 
11744
11745         - ifdef all the code specific to the double
11746         buffer case, and provide some alternatives in the non-doublebuffer
11747         code, which makes heavy use of XplatUI.ScrollWindow to move things
11748         around without having to invalidate (and cause flicker).  There
11749         are still some drawing problems in the non-doublebuffered case, so
11750         DOUBLEBUFFER is defined by default.
11751
11752         - Fix the way dropdowns are handled.  now we explicitly watch for
11753         the events which might cause the dropdown to close, and break out
11754         of the nested event loop there.  This gets rid of all Capture
11755         code, at the expense of the Msg special casing.  Seems to work,
11756         though, and fixes bug #79743.
11757
11758 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
11759         * Control.cs: SetIsRecreating now recreates implicitly added
11760         child controls as well. Finally fixes #79629. The flag passed to 
11761         SetIsRecreating has also been removed since it wasn't used.
11762         
11763 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11764
11765         * PageSetupDialog.cs: Clean some code, fix some bits, 
11766         add some checks, and add a printer sub-dialog.
11767
11768 2006-10-26  Chris Toshok  <toshok@ximian.com>
11769
11770         * PropertyGrid.cs: make set_SelectedObject call
11771         set_SelectedObjects, and move the duplicate logic to the
11772         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
11773
11774         * PropertyGridView.cs: hide the textbox when we get a
11775         SelectedObjectsChanged event.
11776
11777         Fixes bug #79748.
11778
11779 2006-10-26  Chris Toshok  <toshok@ximian.com>
11780
11781         * PropertyGridView.cs: deal with the type converter not supporting
11782         GetStandardValues() or GetStandardValues() returning null, which
11783         is does in the default case.  Fixes #79742.
11784
11785 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
11786
11787         * CheckedListBox.cs: nunit no longer crashes when selecting 
11788         Project/Edit menu option
11789         
11790 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
11791
11792         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
11793         is no menu selected. fixes #79739
11794
11795 2006-10-25  Chris Toshok  <toshok@ximian.com>
11796
11797         * PropertyGridView.cs: factor out the splitter invalidation code
11798         into the SplitterPercent setter, and for kicks implement the
11799         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
11800         amount in either direction.
11801
11802 2006-10-25  Chris Toshok  <toshok@ximian.com>
11803
11804         * PropertyGridView.cs: do some cleanup of the brush used to draw
11805         text - read only fields should be grayed out.  not sure how to do
11806         this with the textbox, though.  but the textbox's should also be
11807         readonly now at least.  Also, hide/show the textbox when resizing
11808         the control.
11809         
11810         * CursorConverter.cs: use System.Reflection when getting the
11811         properties of Cursors, as TypeDescriptor.GetProperties isn't
11812         returning static properties.
11813
11814 2006-10-25  Chris Toshok  <toshok@ximian.com>
11815
11816         * PropertyGridView.cs: factor out the up/down handling, and reuse
11817         it for page up/down.  also add End/Home support.
11818
11819 2006-10-25  Chris Toshok  <toshok@ximian.com>
11820
11821         * PropertyGridView.cs:
11822
11823         - ensure the selected grid item is visible in the scrolled area,
11824         fixes bug #79572.
11825
11826         - fix Keys.Down handling when you're on the last item in the
11827         propertygrid.
11828
11829 2006-10-25  Mike Kestner  <mkestner@novell.com>
11830
11831         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
11832         clicks too.  Fixes #79725.
11833
11834 2006-10-24  Chris Toshok  <toshok@ximian.com>
11835
11836         * PropertyGrid.cs: use property.Converter instead of
11837         TypeDescriptor.GetConverter(property.PropertyType), so we catch
11838         TypeConverters declared on the property as well as on the
11839         PropertyType.  Fixes bug #79678.
11840
11841 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
11842
11843         * MimeIcon.cs, Mime.cs:
11844           Fallback to the default platform handler if no shared mime info
11845           stuff exists (fixes #79693).
11846
11847 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
11848         * ContainerControl.cs: Incorrect contains check in ActiveControl 
11849         from previous fix (duh).
11850
11851 2006-10-20  Chris Toshok  <toshok@ximian.com>
11852
11853         * PropertyGridView.cs: the dropdown should be MIN(number of items
11854         in list, 15).  Fixes #79551.
11855
11856 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
11857         Fixes #79384, #79394, #79652, #79667
11858         * Application.cs: 
11859         
11860         - Modal windows are now destroyed in the proper order for windows
11861         
11862         * ContainerControl.cs:
11863         
11864         - ActiveControl setter has more conditions on when to return:
11865                 - if we're reselecting the active control, but it actually
11866                 didn't have focus (window hidden or some such), it runs
11867                 - if the active control being selected doesn't actually 
11868                 exist in the container, it returns
11869         
11870         * Form.cs
11871         
11872         - The ShowDialog now gets the current form as the owner when
11873         invoking without parameters, and correctly activates the owner 
11874         when returning
11875         
11876         * MessageBox.cs
11877         
11878         - MessageBox now catches the Escape key to exit
11879
11880 2006-10-20  Chris Toshok  <toshok@ximian.com>
11881
11882         * PropertyGridView.cs: fix a number of issues (bug #78565, and
11883         most of bug #79676):
11884
11885         - you can navigate around the property grid with the arrow keys.
11886
11887         - the dropdown is sized properly when the pg has a vertical
11888         scrollbar.
11889
11890         - fix the indentation for subentries, and properly select the
11891         entire label rect.
11892
11893         - fix the gray bar's drawing (only draw it to the last element,
11894         not for the height of the control.  Also make sure we draw that
11895         last horizontal grid line.
11896
11897         - use the same mechanism the datagrid uses wrt the editing textbox
11898         when scrolling/resizing/etc.  Namely, we hide it first, do the
11899         operation, then show it again (if it's still visible).
11900         
11901         - aggressively remove a lot of unnecessary refreshes (and also
11902         calls to Invalidate(). call more limited variants, and only redraw
11903         what we need.)
11904         
11905         * PropertyGrid.cs:
11906
11907         - when we're populating the merged collection, fill in the UI
11908         parent with either the passed in item, or the category item we
11909         create.
11910
11911         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
11912
11913         * GridItem.cs: drop some fully qualified names.
11914         
11915         * GridEntry.cs: add a "UIParent", which is basically the parent
11916         treenode.
11917
11918         * GridItemCollection.cs: add an IndexOf method.
11919
11920 2006-10-20  Mike Kestner  <mkestner@novell.com>
11921
11922         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
11923         a working win32 NC invalidation mechanism, we can't invalidate
11924         menus.  [Fixes #79705]
11925
11926 2006-10-20  Mike Kestner  <mkestner@novell.com>
11927
11928         * ListBox.cs : don't update the VScrollbar if the list is empty,
11929         just hide it.  [Fixes #79692]
11930
11931 2006-10-20  Jackson Harper  <jackson@ximian.com>
11932
11933         * RichTextBox.cs: Handle some special chars better, and don't skip
11934         the entire group when we encounter a special char that we don't
11935         handle correctly.
11936
11937 2006-10-18  Chris Toshok  <toshok@ximian.com>
11938
11939         * PropertyGridView.cs: address a number of issues from bug #79676,
11940         mostly of the cosmetic variety.
11941
11942         - The highlight rectangle for indented items not extends all the
11943         way to the left.
11944
11945         - Indented items aren't indented so much.
11946
11947         - the dropdown is properly sized width-wise if the pg has a
11948         vertical scrollbar.
11949
11950 2006-10-18  Chris Toshok  <toshok@ximian.com>
11951
11952         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
11953         systray stuff is rather convoluted to begin with.
11954
11955         systray icons are a single window for some reason (that I haven't
11956         figured out yet), and for them, client_window == whole_window.
11957         Given the way the tests are structured elsewhere to determine
11958         which paints are pending (client vs. nc), that situation will
11959         always yield PAINT, not NCPAINT.  So, if we have a pending
11960         nc_expose and no pending expose, remove the hwnd from the paint
11961         queue, and also set nc_expose_pending to false, to keep us from
11962         blocking further expose's adding the hwnd to the paint queue.
11963
11964         phew.  like i said, a rather convoluted change.  Fixes the
11965         notifyicon repaint issues in bug #79645.
11966
11967 2006-10-18  Chris Toshok  <toshok@ximian.com>
11968
11969         * Form.cs: when getting the backcolor of the form, don't get
11970         base.BackColor, as this allows parents to influence the background
11971         color.  This breaks mdi forms.  Instead, if the background_color
11972         is empty, return the default.
11973
11974 2006-10-18  Chris Toshok  <toshok@ximian.com>
11975
11976         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
11977         to being private instead of internal static.
11978
11979         * Control.cs: remove all the stupid ParentWaitingOnRecreation
11980         crap, it wasn't working for more deeply nested controls anyway,
11981         and we already have the is_recreating flag - use that instead.
11982         Before calling DestroyHandle in RecreateHandle, recurse through
11983         the control tree setting it to true.  this returns the recreate
11984         code to much of its original simplicity, while now guaranteeing we
11985         actually recreate everything we're supposed to.  This change gets
11986         fyireporting actually showing mdi children.
11987
11988 2006-10-17  Chris Toshok  <toshok@ximian.com>
11989
11990         * Form.cs: remove some debug spew, and collapse some duplicate
11991         code at the end of SetClientSizeCore.
11992
11993         * XplatUIX11.cs: 
11994         - add some more debug spew here too wrt Destroy handling.
11995         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
11996         in Control's handling of WM_DESTROY.
11997         - Remove the handling of zombie window DestroyNotifies from the
11998         event loop - we don't need it.  Now the only DestroyNotifies we
11999         actually handle are ones generated by X.
12000         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
12001         match gtk's (functioning) handling of this. This keep metacity
12002         from leaving droppings in the form of wm borders with no window
12003         contents all over the place.
12004
12005         * Control.cs:
12006         - add a bunch of debug spew wrt control recreation.
12007         - fix a bug where we weren't tracking Visible properly on
12008         recreated hwnds.
12009         - fixed the WM_PAINT double buffer handling to support re-entrant
12010         calls (yes, i know it's gross, but it's happening to us).
12011
12012 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12013         * ThemeWin32Classic.cs: changed drawing of selected days
12014         to make them look better.
12015
12016 2006-10-16  Chris Toshok  <toshok@ximian.com>
12017
12018         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
12019         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
12020
12021         * XplatUIX11.cs: move away from using hwnd.client_dc and
12022         hwnd.non_client_dc and on to a stack of dc's (and in window's
12023         case, PAINTSTRUCT's), so we can deal with nested Paint calls
12024         without puking or not disposing of Graphics objects.
12025
12026         * XplatUIOSX.cs: same.
12027
12028         * XplatUIWin32.cs: same.
12029
12030 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
12031
12032         * FileDialog.cs: Don't call on_directory_changed inside
12033           OnSelectedIndexChanged (it changes the SelectedIndex too).
12034           Instead move it to OnSelectionChangeCommitted.
12035
12036 2006-10-13  Chris Toshok  <toshok@ximian.com>
12037
12038         * XplatUIX11.cs: more Destroy work.  the current code does the
12039         following things, in order:
12040
12041         1. Enumerates all handles of all controls at or below the one
12042         being destroyed, in pre-order.  As it is doing this, it marks the
12043         handles as zombie and clears all references to them.
12044         
12045         2. calls XDestroyWindow on the window passed in.
12046
12047         3. SendMessage's WM_DESTROY to all he handles in the accumulated
12048         list.
12049
12050 2006-10-13  Chris Toshok  <toshok@ximian.com>
12051
12052         * XplatUIX11.cs: set hwnd.zombie to true before calling
12053         SendMessage (WM_DESTROY).  this keeps us from marking the new
12054         window a zombie, and also keeps us from calling sendmessage at
12055         all.
12056
12057 2006-10-13  Jackson Harper  <jackson@ximian.com>
12058
12059         * TextControl.cs: Do not show the caret and selection at the same
12060         time.  Reduces ugliness by 35%.
12061
12062 2006-10-13  Chris Toshok  <toshok@ximian.com>
12063
12064         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
12065         zombie after we do the recursive call, so we actually do call
12066         SendMessage on the children controls.
12067         (GetMessage): if we find a pending paint event for a zombie hwnd,
12068         remove the hwnd from the paint queue, or else it will always be
12069         there (and we'll effectively loop infinitely)
12070
12071 2006-10-13  Mike Kestner  <mkestner@novell.com>
12072
12073         * MenuItem.cs : add Selected format under keynav too.
12074         Fixes #79528.
12075
12076 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
12077
12078         * PropertyGrid.cs: Fixed some NRE's and small difference between our
12079         implementation and that of MS.
12080
12081 2006-10-13  Chris Toshok  <toshok@ximian.com>
12082
12083         * Control.cs (OnInvalidated) only futz with the invalid_region if
12084         the control is double buffered.  this fixes the apparent hang in
12085         the ListView unit tests.  Someone needs to make the
12086         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
12087
12088 2006-10-13  Chris Toshok  <toshok@ximian.com>
12089
12090         * PropertyGridView.cs:
12091
12092         - do a little refactoring so that only one place calls
12093         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
12094         else call that.  Also make it Refresh, since there are redraw bugs
12095         otherwise (we should take a look at that...)
12096
12097         - do a little more refactoring work to share the body of code
12098         involved with the drop down.  it was duplicated in the code
12099         dealing with the listbox handling and in the code dealing with the
12100         UITypeEditors.
12101
12102         - add a Capture to the dropdown form's control once it's
12103         displayed, and add a MouseDown handler that checks to make sure
12104         the position is inside the control.  If it's not, close the
12105         dropdown.  This fixes #78190.
12106
12107         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
12108         if the value is different than the initial value.
12109         
12110 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
12111
12112         * Control.cs: see #78650
12113         - Fixed GetNextControl for several cases:
12114                 - Changed FindFlatForward to return 
12115                 correct sibling control when more than one
12116                 control has same TabIndex as the currently 
12117                 focused one.
12118                 - Changed FindFlatBackward to loop children
12119                 from last to first and apply same logic as in
12120                 FindFlatForward
12121                 - Changed FindControlForward to search for
12122                 children when control is not a container
12123                 but has children, or search for siblings if
12124                 control is a container...
12125                 - Changed FindControlBackward   to continue
12126                 searching for child controls when hitting 
12127                 Panel-like parents
12128                 
12129         - Fixed Focus method to update ActiveControl
12130         (FocusTest.FocusSetsActive failure)
12131         
12132         * TabControl.cs:
12133         - Focus rectangle now refreshes when gaining
12134         or losing focus
12135         - Removed grab for Tab key on IsInputKey that 
12136         was keeping tab navigation from working (#78650)
12137
12138 2006-10-13  Chris Toshok  <toshok@ximian.com>
12139
12140         * PropertyGridView.cs:
12141         - Rewrite SetPropertyValue to loop over SelectedGridItem's
12142         SelectedObjects.
12143
12144         - Deal with GridItem.Value == null a few places.
12145
12146         * PropertyGrid.cs: 
12147         - replace the PopulateGridItemCollection with a pair of methods
12148         which compute the intersection of all the properties in the
12149         SelectedObjects array.  Fixes #79615.
12150
12151         - Throw ArgumentException from set_SelectedObjects if there's a
12152         null in the array.
12153
12154         - Add GetTarget method which can be used to traverse up the
12155         GridItem.Parent chain.  It depends on the assumption that
12156         selected_objects for different GridEntries are always in the same
12157         order (a safe assumption).  Use this method and loop over all the
12158         selected objects in the entry when calling RemoveValueChanged and
12159         AddValueChanged.
12160         
12161         * GridEntry.cs: Make this handle multiple selected objects.
12162         .Value returns null if not all the selected objects share the same
12163         value.
12164
12165 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
12166         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
12167           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
12168           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
12169           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
12170           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
12171         add additional functionality.
12172
12173 2006-10-12  Mike Kestner  <mkestner@novell.com>
12174
12175         * ErrorProvider.cs : new ToolTipWindow ctor sig.
12176         * HelpProvider.cs : new ToolTipWindow ctor sig.
12177         * ToolTip.cs : remove ToolTip param from Window sig since it is
12178         not used.
12179         * ToolBar.cs : add tooltip support.  Fixes #79565.
12180
12181 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12182
12183         * ComboBox.cs: move the events in set_SelectedIndex to 
12184         after the call to HighlightIndex in order to avoid 
12185         possible recursion and subsequent problems with the call
12186         to HighlightIndex and include a range check in 
12187         set_HighlightIndex. Fixes #79588
12188         
12189 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12190
12191         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
12192         to ui thread's settings instead of sunday. 
12193         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
12194
12195 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
12196
12197         * DateTimePicker.cs
12198         * MonthCalendar.cs
12199         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
12200         and implement missing functionality (selecting different parts 
12201         of the date and edit them individually with the keyboard).
12202         
12203 2006-10-11  Chris Toshok  <toshok@ximian.com>
12204
12205         * Control.cs (OnInvalidated): fix NRE relating to last change.
12206
12207 2006-10-11  Chris Toshok  <toshok@ximian.com>
12208
12209         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
12210         atoms in _NET_WM_STATE here if the window is maximized.  We need
12211         to do this because we're *replacing* the existing _NET_WM_STATE
12212         property, so those atoms will be lost otherwise, and any further
12213         call to GetWindowState will return Normal for a window which is
12214         actually maximized.  Fixes #79338.
12215
12216 2006-10-11  Jackson Harper  <jackson@ximian.com>
12217
12218         * TextControl.cs: Special case for setting selection end to
12219         selection start, we basically kill the anchor.
12220         - some todo comments.
12221
12222 2006-10-11  Chris Toshok  <toshok@ximian.com>
12223
12224         * Control.cs: switch to using an "invalid_region" to track which
12225         parts of the image buffer need updating.  This is more code than
12226         the simple fix from r66532.  That version just attempted to always
12227         fill the entire buffer on redraw, which turns out to be
12228         inefficient when invalidating small rectangles.  This version
12229         simply adds the invalid rectangle to the invalid region.  When we
12230         get any WM_PAINT message we see if it can be filled using the
12231         image buffer, and if it can't (if the paint event's clip rectangle
12232         is visible in the invalid region) we first fill the image buffer.
12233         So, the image buffer is still a cache, we just fill it lazily.
12234
12235         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
12236         need it any longer.
12237
12238 2006-10-11  Chris Toshok  <toshok@ximian.com>
12239
12240         * XplatUIX11.cs (SetWindowPos): we need to update both position as
12241         well as size after calling XMoveResizeWindow.  This keeps us from
12242         ignoring future SetWindowPos calls.  Fixes the disappearing
12243         DateTimePicker in the ToolBarDockExample from bug #72499.
12244
12245 2006-10-11  Chris Toshok  <toshok@ximian.com>
12246
12247         * TextBoxBase.cs: reorder things a bit when it comes to
12248         resizing-causing-recalculation.  we were recalculating the
12249         document when our position was changed, which shouldn't happen.
12250         We only care about size changes.  Clear up some more redundant
12251         recalculation calls while I'm at it.  This makes the toolbar dock
12252         example snappy when you're just dragging toolbars around (since it
12253         causes a relayout whenever you move one.)
12254
12255 2006-10-11  Chris Toshok  <toshok@ximian.com>
12256
12257         * ToolBarButton.cs (get_Rectangle): this only returns
12258         Rectangle.Empty if Visible == false, or Parent == null.
12259         Parent.Visible doesn't matter.
12260
12261 2006-10-10  Chris Toshok  <toshok@ximian.com>
12262
12263         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
12264         by .net 1.1, so switch to an internal method instead.
12265
12266 2006-10-10  Chris Toshok  <toshok@ximian.com>
12267
12268         * Control.cs (WM_PAINT): when a control is double buffered we draw
12269         initially to the ImageBuffer and then copy from there.  But when a
12270         parent control which has child controls is double buffered, the
12271         initial drawing doesn't encompass the entire ClientRectangle of
12272         the parent control, so we end up with uninitialized bits (this is
12273         easily seen by dragging the top toolbar in
12274         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
12275         manually set the ClipRectangle of the paint_event (only the one we
12276         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
12277         of the nastiness in bug #72499.
12278
12279         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
12280         which we use in Control.cs's WM_PAINT handling.
12281
12282 2006-10-10  Jackson Harper  <jackson@ximian.com>
12283
12284         * TextBoxBase.cs: Finish off the autoscrolling stuff.
12285
12286 2006-10-10  Chris Toshok  <toshok@ximian.com>
12287
12288         * Cursor.cs: Apply a slightly different patch to the one suggested
12289         in #79609.
12290
12291 2006-10-10  Jackson Harper  <jackson@ximian.com>
12292
12293         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
12294         not the parent form.
12295         * TextControl.cs: use difference in old line count vs new count to
12296         calculate how many lines were added, this takes into account soft
12297         line breaks properly.
12298
12299 2006-10-10  Chris Toshok  <toshok@ximian.com>
12300
12301         * LinkLabel.cs: don't call MeasureCharacterRanges against a
12302         rectangle located at 0,0 and the size of the text.  Use
12303         ClientRectangle instead.  This fixes rendering of non-left aligned
12304         link labels.
12305
12306 2006-10-10  Jackson Harper  <jackson@ximian.com>
12307
12308         * TextBoxBase.cs: When we set the selection start position the
12309         caret.
12310         * TextControl.cs: Need to update the caret when we decrement it to
12311         zero.
12312         - Make sure that the selection_visible flag gets reset to false if
12313         the selection isn't visible.  Before this you could get it set to
12314         visible by changing the selection start, then changing the end to
12315         equal the start.
12316
12317 2006-10-09  Jackson Harper  <jackson@ximian.com>
12318
12319         * TreeView.cs: Don't update scrollbars when we aren't visible.
12320         * TreeNodeCollection.cs: Only need to update scrollbars if being
12321         added to an expanded visible node or the root node.
12322
12323 2006-10-09  Chris Toshok  <toshok@ximian.com>
12324
12325         * XplatUIX11.cs (SendMessage): fix NRE.
12326
12327 2006-10-09  Jackson Harper  <jackson@ximian.com>
12328
12329         * TextBoxBase.cs: Implement horizontal autoscrolling.
12330         * TextControl.cs: Add a movement types that allows moving forward
12331         and backwards without wrapping.
12332
12333 2006-10-09  Mike Kestner  <mkestner@novell.com>
12334
12335         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
12336         with focus "expansion" of labels.  Fixes #79532 and then some.
12337         * ThemeWin32Classic.cs : add LineLimit to ListView label format
12338         when wrapping.
12339
12340 2006-10-09  Jackson Harper  <jackson@ximian.com>
12341
12342         * TextBoxBase.cs: Set the default max values to MaxValue since
12343         we use the scrollbar for autoscrolling and the default value is
12344         100.  If we don't do this the caret won't keep up with typing
12345         after about 18 characters.
12346         * TextControl.cs: Make sure the selection is offset by the
12347         viewport x.  This fixes selection when using auto scrolling.
12348
12349 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
12350         
12351         * Form.cs: The active control should be selected after the 
12352         OnLoad so that any child control initialization that affects
12353         the selection is done. Fixes #79406
12354
12355 2006-10-06  Chris Toshok  <toshok@ximian.com>
12356
12357         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
12358         to have no evil effects.
12359
12360         - Stop selecting StructureNotifyMask on non-toplevel windows.
12361
12362           The only way children should be resized is by using the SWF api,
12363           and we already send WM_WINDOWPOSCHANGED messages in those cases.
12364           Toplevel windows can be interacted with via the window manager,
12365           and so we keep the input mask there.
12366
12367           The other event StructureNotifyMask gives us (that we care
12368           about) is DestroyNotify.  The code is already structured such
12369           that it assumes we won't be getting a DestroyNotify event for
12370           the window we pass to XDestroyWindow (which is what
12371           StructureNotifyMask is supposed to guarantee.)  So, that code
12372           shouldn't be affected by this either.
12373
12374         - Stop selecting VisibilityChangeMask altogether.
12375
12376           We weren't doing anything with the resulting events anyway.
12377         
12378         This vastly reduces the number of X requests and events we see
12379         when resizing/laying out a large ui.
12380
12381 2006-10-06  Chris Toshok  <toshok@ximian.com>
12382
12383         * ScrollableControl.cs (DisplayRectangle): we need to take into
12384         account the DockPadding regardless of whether or not auto_scroll
12385         == true.  rework this slightly to this effect, and fix bug #79606,
12386         and part of #72499 (you can now see the drag handles and drag
12387         toolbars around).
12388
12389 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
12390
12391         * ListViewItem.cs: Collections of selected and checked items are now
12392         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
12393         we mark the collection "dirty".
12394         * ListView.cs: Marked collections readonly. Modified UpdateSelection
12395         to only clear SelectedItems when a new item is selected and MultiSelect
12396         is enabled. CheckedItems and SelectedItems now subscribe to Changed
12397         event of ListViewItemCollection, and mark its list dirty whenever
12398         that event is fire. This allows us to return selected/checked items 
12399         in the same order as they are in the Items collection. This matches
12400         the MS behavior.
12401
12402 2006-10-06  Chris Toshok  <toshok@ximian.com>
12403
12404         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
12405         right mouse clicks.  Fixes bug #79593.
12406
12407 2006-10-06  Chris Toshok  <toshok@ximian.com>
12408
12409         * Splitter.cs: doh, fix splitters that don't want to cancel the
12410         movement when you drag them.  Also, impose the limits on the
12411         values we send to the SplitterMovingEvent.  Fixes #79598.
12412
12413 2006-10-06  Jackson Harper  <jackson@ximian.com>
12414
12415         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
12416         since we use this for auto scrolling also.
12417
12418 2006-10-05  Chris Toshok  <toshok@ximian.com>
12419
12420         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
12421         beginning to think that most datagrid column types don't need this
12422         method.  Fixes bug #79392.
12423
12424 2006-10-05  Chris Toshok  <toshok@ximian.com>
12425
12426         * DataGrid.cs: move back to a more lazy scheme for creating the
12427         CurrencyManager, so we aren't updating it every time you set
12428         either DataSource or DataMember.  Also, don't call
12429         RecreateDataGridRows if the currency manager hasn't changed.
12430
12431 2006-10-05  Chris Toshok  <toshok@ximian.com>
12432
12433         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
12434         emitted, SelectedIndex should already be updated.  Fixes bug
12435         #78929.
12436
12437 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
12438
12439         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
12440           ToolStripTextBox.cs: Initial commit.
12441         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
12442
12443 2006-10-05  Jackson Harper  <jackson@ximian.com>
12444
12445         * TabControl.cs: We need to invalidate the tab control area when
12446         new ones are added (duh).
12447
12448 2006-10-03  Chris Toshok  <toshok@ximian.com>
12449
12450         * Form.cs (ProcessDialogKey): if the focused control is in this
12451         form and is a button, call its PerformClick method here.  Fixes
12452         #79534.
12453
12454 2006-10-04  Jackson Harper  <jackson@ximian.com>
12455
12456         * TabPage.cs: Ignore setting of Visible, and add an internal
12457         method for setting the controls visibility.  TabPage's Visible
12458         property is a little strange on MS, this seems to make us
12459         compatible, and fixes cases where people set all the tab pages to
12460         visible.
12461         * TabControl.cs: Use the new internal setting on tab pages
12462         visibility.
12463
12464 2006-10-03  Mike Kestner  <mkestner@novell.com>
12465
12466         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
12467
12468 2006-10-03  Mike Kestner  <mkestner@novell.com>
12469
12470         * ListView.cs : use is_visible instead of Visible to check if 
12471         scrollbars should be placed/sized.  Also some max_wrap_width
12472         love for LargeIcon view.  [Fixes #79533]
12473
12474 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
12475
12476         * TextControl.cs :
12477           Make set_TextAlign() do actually update the align. Fixed #78403.
12478
12479 2006-10-03  Chris Toshok  <toshok@ximian.com>
12480
12481         * DataGrid.cs: fix a crash when switching datasources if the
12482         vertical scrollbar is at someplace other than Value = 0.  Also,
12483         reduce the number of recalculation passes we do in SetDataSource
12484         from 2 to 1.
12485
12486 2006-10-03  Jackson Harper  <jackson@ximian.com>
12487
12488         * TextBoxBase.cs: Move the if value the same bail check up, we
12489         don't want to empty the document if it is already empty, this
12490         seems to severly mess up the caret.  TODO: I should probably fix
12491         the empty statement to update teh caret somehow.
12492
12493 2006-10-03  Chris Toshok  <toshok@ximian.com>
12494
12495         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
12496         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
12497         reflection, an internal row type, properties on said type, etc.)
12498         will work with our datagrid.  Fixes #79531.
12499
12500 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
12501
12502         * FileDialog.cs: Don't crash if a path is not accessible
12503           (System.UnauthorizedAccessException). Fixes #79569.
12504         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
12505           a ':' too. Return unknown icon for those paths/files.
12506
12507 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
12508
12509         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
12510         GetContainerControl returns null.
12511
12512 2006-10-02  Chris Toshok  <toshok@ximian.com>
12513
12514         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
12515         call to XGetWindowAttributes instead of "handle".  fixes an X
12516         error using notifyicon after the NotifyIconWindow to Form base
12517         class switch.
12518
12519 2006-10-02  Chris Toshok  <toshok@ximian.com>
12520
12521         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
12522         server grab and looping we need to do to get down to the most
12523         deeply nested child window.
12524         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
12525         QueryPointer again after the WarpPointer so we can generate a
12526         proper (fake) MotionNotify event to be enqueued in the destination
12527         window's queue.
12528         (GetCursorPos): call QueryPointer.
12529
12530         Fixes #79556.
12531
12532 2006-10-02  Jackson Harper  <jackson@ximian.com>
12533
12534         * NotifyIcon.cs: Derive the notify icon from a form, so things
12535         like FindForm work on it.
12536         - Swallow the WM_CONTEXTMENU message, since that is generated on
12537         mouse down, and context menu is a mouse up kinda guy.  I believe
12538         the correct fix here is probably to make the notify icon entirely
12539         NC area, but this seems to work fine for anyone not manipulating
12540         WndProc.
12541
12542 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
12543
12544         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
12545           ToolStripItemCollection.cs, ToolStripLabel.cs,
12546           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
12547           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
12548           Initial implementation.
12549         * TextRenderer.cs: Provide padding to MeasureText.
12550
12551 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
12552
12553         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
12554         of ButtonBaseAccessibleObject. Fix bug #79552.
12555
12556 2006-10-02  Jackson Harper  <jackson@ximian.com>
12557
12558         * MdiWindowManager.cs: When maximizing use the containers client
12559         rect, not it's bounds, so nc area is accounted correctly.
12560         - Use the parent form's size for the menu position, since the
12561         client isn't always the full form size.
12562
12563 2006-10-01  Chris Toshok  <toshok@ximian.com>
12564
12565         * ScrollableControl.cs: make sure neither right_edge or
12566         bottom_edge are < 0, since they're used as LargeChange for the
12567         horiz/vert scrollbars respectively.  Fixes #79539.
12568
12569 2006-10-01  Chris Toshok  <toshok@ximian.com>
12570
12571         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
12572         the xplatuix11 code can cause us to destroy/recreate our handle.
12573
12574         * XplatUIX11.cs
12575         (SystrayAdd):
12576         - this code can be invoked many times for the same Hwnd.  Make
12577           sure we only destroy the client window once (the first time this
12578           method is called).  This fixes bug #79544.
12579         - Remove the call to the improperly bound XSync.  why we had two
12580           bindings to this, I will never know, but this call resulted in
12581           events being discarded from the queue(!).
12582         - correct a misunderstanding of _XEMBED_INFO - the second atom is
12583           not our current state but the state we wish to be in.  So, 0 if
12584           we don't want to be mapped.  Change it to 1.
12585         (SystrayRemove): The XEMBED spec makes mention of the fact that
12586         gtk doesn't support the reparent of client windows away from the
12587         embedder.  Looking at gtksocket-x11.c seems to agree with this.
12588         The only avenue we have for removing systray icons is to destroy
12589         them.  We don't want the handle to go away for good, though, so
12590         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
12591         #79545.
12592         
12593 2006-10-01  Chris Toshok  <toshok@ximian.com>
12594
12595         * Form.cs (WndProc): inline the native_enabled variable usage into
12596         the cases in which it's used.  Fixes #79536.
12597
12598 2006-09-29  Mike Kestner  <mkestner@novell.com>
12599
12600         * ListView.cs : toggle the selection state for ctrl clicks in 
12601         multiselect mode. [Fixes #79417]
12602
12603 2006-09-29  Mike Kestner  <mkestner@novell.com>
12604
12605         * ListView.cs : kill CanMultiSelect and refactor the selection
12606         code to support multiselection in the absence of mod keys. Steal
12607         arrow/home/end keys by overriding InternalPreProcessMessage to
12608         restore regressed keynav behavior.
12609         [Fixes #79416]
12610
12611 2006-09-29  Jackson Harper  <jackson@ximian.com>
12612
12613         * MdiClient.cs: Repaint the titlebars when the active window is
12614         changed.
12615
12616 2006-09-29  Chris Toshok  <toshok@ximian.com>
12617
12618         * Application.cs: when entering a runloop with a modal, make sure
12619         the hwnd is enabled.  Fixes #79480.
12620
12621 2006-09-29  Chris Toshok  <toshok@ximian.com>
12622
12623         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
12624         when ListManager.CanAddRows == false, bump us back one.
12625
12626         * DataGridColumnStyle.cs (ParentReadOnly): remove the
12627         listmanager.CanAddRows check.  This makes ArrayLists uneditable
12628         using a datagrid, which is not right.
12629         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
12630         is an IEditable, but call property_descriptor.SetValue regardless.
12631         fixes #79435.
12632
12633 2006-09-29  Chris Toshok  <toshok@ximian.com>
12634
12635         * DataGridBoolColumn.cs: we need to test equality in the face of
12636         possible null values (as is the case with the default NullValue).
12637         This patch keeps us from crashing in that case.
12638
12639 2006-09-29  Jackson Harper  <jackson@ximian.com>
12640
12641         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
12642         here, since it will get called for every node collection in the
12643         tree. This is now done in the treeview once the sorting is
12644         finished.
12645         * TreeView.cs: Recalculate the visible order, and update the
12646         scrollbars after sorting, set the top nope to the root so that the
12647         recalc actually works.
12648
12649 2006-09-29  Chris Toshok  <toshok@ximian.com>
12650
12651         * LinkLabel.cs: more handling of the default link collection in
12652         the face of LinkArea manipulation.  The default link collection
12653         contains 1 element (start=0,length=-1).  If the user sets LinkArea
12654         to anything and the links collection is the default, clear it.
12655         Then only add the link if its nonempty.  Fixes #79518.
12656
12657 2006-09-29  Chris Toshok  <toshok@ximian.com>
12658
12659         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
12660         piece correctly when we hit a '\n'.  Fixes #79517.
12661
12662 2006-09-29  Chris Toshok  <toshok@ximian.com>
12663
12664         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
12665         change the binding of gdk_init_check to take two IntPtr's, and
12666         pass IntPtr.Zero for both of them.  Fixes #79520.
12667
12668 2006-09-29  Mike Kestner  <mkestner@novell.com>
12669
12670         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
12671         [Fixes #78779]
12672
12673 2006-09-28  Jackson Harper  <jackson@ximian.com>
12674
12675         * XplatUIX11.cs: When translating NC messages make sure we go from
12676         whole window to screen, not client window to screen.
12677         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
12678         method doesn't exist
12679         - Skip over controls that aren't forms when arranging.
12680
12681 2006-09-28  Jackson Harper  <jackson@ximian.com>
12682
12683         * XplatUIWin32.cs: Clip the rect to the parent window.
12684         * XplatUIStructs.cs: Add clipping modes struct.
12685         * InternalWindowManager.cs: New private method that factors title
12686         bar heights in when calculating the pos of an NC mouse message.
12687         - Use SendMessage to force a paint when the form's size is changed
12688         instead of painting the decorations immediately.
12689         - Don't let the NC button click messages get to DefWndProc,
12690         because they will attempt to handle windowing themself, and this
12691         messes up z-order (it will put them in front of the scrollbars).
12692         * XplatUIX11.cs: Make sure that we don't reset window managers if
12693         we already have one (ie the window is an MDI window).
12694
12695 2006-09-28  Chris Toshok  <toshok@ximian.com>
12696
12697         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
12698         menu code really needs going over.
12699
12700 2006-09-27  Chris Toshok  <toshok@ximian.com>
12701
12702         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
12703         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
12704         window is maximizable.  So, we need to make sure that even if we
12705         clear the border/wm frame of those functions, they're still
12706         available (basically, we remove the decoration without removing
12707         the function).  Half the fix for #79338.
12708
12709 2006-09-27  Chris Toshok  <toshok@ximian.com>
12710
12711         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
12712         Fixes bug #79515.
12713
12714 2006-09-27  Chris Toshok  <toshok@ximian.com>
12715
12716         * Splitter.cs: reorder things a bit so that we don't actually
12717         draw/move the splitter until after calling OnSplitterMoving.  This
12718         lets users cancel/disallow the movement by explicitly setting
12719         event.SplitX/SplitY.  Fixes #79372.
12720
12721 2006-09-27  Jackson Harper  <jackson@ximian.com>
12722
12723         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
12724         because it is most likely on a window being destroyed, and that
12725         will give us an X11 error.
12726
12727 2006-09-27  Chris Toshok  <toshok@ximian.com>
12728
12729         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
12730         the dropdown button now toggles between showing and hiding the
12731         dropdown.  Also, get rid of dropdown_form_showing and just use
12732         dropdown_form.Visible.  We still don't do a grab, but I'll leave
12733         that part to someone who has handled Capture-fu before.
12734
12735 2006-09-27  Chris Toshok  <toshok@ximian.com>
12736
12737         * DataGrid.cs: return false if alt isn't pressed when '0' is
12738         pressed.  this keeps the '0' key from being swallowed, and fixes
12739         bug #79350.
12740
12741 2006-09-27  Chris Toshok  <toshok@ximian.com>
12742
12743         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
12744         Calling Refresh (in response to a scrollbar event) screws up the
12745         scrollbar painting.  Fixes bug #78923.
12746
12747 2006-09-27  Chris Toshok  <toshok@ximian.com>
12748
12749         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
12750         then insert into hashtable" blocks threadsafe.
12751
12752 2006-09-27  Chris Toshok  <toshok@ximian.com>
12753
12754         * MessageBox.cs (CreateParams): the styles should be |'ed with our
12755         baseclass's, since otherwise the
12756         ControlBox/MinimizeBox/MaximizeBox assignments above have no
12757         effect.  This gets the close button back in messageboxes.
12758
12759 2006-09-27  Chris Toshok  <toshok@ximian.com>
12760
12761         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
12762         flag, not just != 0.  this makes flags that are actually multiple
12763         bits (like WS_CAPTION) work.  fixes bug #79508.
12764
12765 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
12766
12767         * PageSetupDialog.cs: add support for getting and settings the 
12768         paper size, source and orientation.
12769
12770 2006-09-26  Chris Toshok  <toshok@ximian.com>
12771
12772         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
12773         and caption == "", we need to remove the resize handles as well as
12774         the title bar.
12775
12776         * Control.cs (set_Text): turns out that setting Text on a form
12777         should change the WM styles on the window, since if ControlBox ==
12778         false, the only way to get a window border is to have a non-""
12779         Text property.  check winforms/forms/text.cs for an example.  so,
12780         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
12781         update both window styles and title.  This fixes a lot of dialogs
12782         (including the preferences dialog in MonoCalendar.)
12783
12784 2006-09-26  Chris Toshok  <toshok@ximian.com>
12785
12786         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
12787         control isn't a Form), call Win32ShowWindow to hide the window,
12788         but don't update the control Visible property.  When we reparent
12789         back to a parent control, call SetVisible in order for the
12790         window's visibility to be reinstated.
12791
12792         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
12793         the FosterParent.
12794
12795         * Control.cs (ControlCollection.Remove): remove that value.Hide()
12796         call for good, since it breaks MonoCalendar (and other things I'm
12797         sure.) Also, set all_controls to null *after* the owner calls,
12798         which end up regenerating it.
12799         (ChangeParent): allow new_parent to be == null, passing
12800         IntPtr.Zero down to XplatUI.
12801
12802         this fixes #79294 the right way.
12803
12804 2006-09-26  Mike Kestner  <mkestner@novell.com>
12805
12806         * GridEntry.cs : internal SetParent method.
12807         * PropertyGrid.cs : attach to property changed on the proper
12808         target if we have a hierarchical grid with subobjects. Setup
12809         GridItem.Parent for hierarchical items.
12810         * PropertyGridView.cs : Set value on the correct target for
12811         hierarchical grids. [Fixes #78903]
12812
12813 2006-09-26  Chris Toshok  <toshok@ximian.com>
12814
12815         * Control.cs (ChildNeedsRecreating): this should return true if
12816         either we're being recreated and the child is in our list, or our
12817         parent is waiting for our recreation.
12818
12819 2006-09-26  Chris Toshok  <toshok@ximian.com>
12820
12821         * Control.cs (ControlCollection.Remove): reinstate the
12822         value.Hide() call as suggested in bug #79294.
12823
12824 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
12825
12826         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
12827         coordinates (versus a relative move).
12828
12829 2006-09-26  Chris Toshok  <toshok@ximian.com>
12830
12831         * Control.cs: rework child recreation a little bit.  It turns out
12832         that we race between the DestroyNotify the WM_DESTROY message.  If
12833         the parent gets its DestroyNotify before the child gets the
12834         WM_DESTROY message, the child ends up not recreating (since the
12835         parent finishes its recreation on DestroyNotify, and the child
12836         checks ParentIsRecreating.)
12837
12838         So, instead we store off a list of all the child controls which
12839         need to be recreated when the parent control starts to recreate
12840         itself.  Then, when child controls get their WM_DESTROY message we
12841         check to see if they're in the parent's pending recreation list,
12842         and if so, we recreate.  This removes all dependency on ordering
12843         from the code and fixes the initial MonoCalendar upgrade dialog.
12844         
12845 2006-09-26  Jackson Harper  <jackson@ximian.com>
12846
12847         * TextControl.cs: Use the Line to get the length of the line,
12848         since soft line breaks can change the end line.
12849
12850 2006-09-26  Chris Toshok  <toshok@ximian.com>
12851
12852         * Control.cs (ControlCollection.AddImplicit): don't add the
12853         control again if it's already in one of our lists.  This keeps us
12854         from adding controls over and over again for comboboxes when their
12855         handle gets recreated (as the combobox adds implicit controls in
12856         OnHandleCreated).  Fixes the X11 errors in bug #79480.
12857
12858 2006-09-26  Jackson Harper  <jackson@ximian.com>
12859
12860         * TextControl.cs: When deleting characters make sure that any
12861         orphaned zero lengthed tags get deleted.
12862         - Fix ToString for zero lengthed tags.
12863
12864 2006-09-25  Jackson Harper  <jackson@ximian.com>
12865
12866         * TextControl.cs: When getting a tag at the location there can be
12867         multiple tags at the same spot, these are 0-lengthed tags that
12868         appear when extra formatting has been stuck in a location.  We
12869         need to pull out the last of these 0 lengthed tags.
12870
12871 2006-09-25  Jackson Harper  <jackson@ximian.com>
12872
12873         * TextControl.cs: Fix print out in debug method.
12874         * TextBoxBase.cs: When text is set bail if we are setting to the
12875         previous value.
12876         
12877 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
12878
12879         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
12880           It is now possible to change the selected index in a FontXXXListBox
12881           with the up and down arrow keys from the FontXXXTextBoxes.
12882           Also, send the FontXXXTextBox mouse wheel event to the corresponding
12883           FontXXXListBoxes to match ms.
12884
12885 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
12886
12887         * SystemInformation.cs: Return a clone of the theme's MenuFont because
12888         anyone can dispose it, anytime. All other properties returns enums, 
12889         structs or basic types so they don't need such tricks.
12890
12891 2006-09-22  Jackson Harper  <jackson@ximian.com>
12892
12893         * XplatUI.cs:
12894         * XplatUIWin32.cs:
12895         * Clipboard.cs:
12896         * DataFormats.cs:
12897         * XplatUIOSX.cs:
12898         * XplatUIDriver.cs: Update interface to add a primary selection
12899         flag, so the driver can use the primary selection buffer if
12900         needed.
12901         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
12902
12903         * RichTextBox.cs: We need to supply the data object to paste now
12904         (so we can choose to supply CLIPBOARD or PRIMARY).
12905         * TextBoxBase.cs: Supply data object to paste (see above).
12906         - Middle click uses the primary selection data object.
12907         
12908 2006-09-21  Chris Toshok  <toshok@ximian.com>
12909
12910         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
12911         of SetWMStyles.  It's still a rat's nest and is largely
12912         order-dependent which I dislike immensely.  This also fixes the X
12913         button disappearing from toplevel forms.
12914
12915 2006-09-21  Mike Kestner <mkestner@novell.com>
12916
12917         * ListBox.cs: move Jordi's click/dblclick raising code to the
12918         mouse up handler.
12919
12920 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
12921
12922         * ListBox.cs: Fixes 79450
12923
12924 2006-09-21  Mike Kestner <mkestner@novell.com>
12925
12926         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
12927         to deal with people updating the TreeNodeCollection after the tree
12928         is disposed.  "Fixes" 79330.
12929
12930 2006-09-20  Jackson Harper <jackson@ximian.com>
12931
12932         * TextControl.cs: Push the cursor record onto the undo stack
12933         before the delete action. This fixes 78651.
12934
12935 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
12936
12937         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
12938         CreateParams. Fixes 79329.
12939
12940 2006-09-19  Chris Toshok  <toshok@ximian.com>
12941
12942         * XplatUIX11.cs: a couple of blanket code massage passes to clean
12943         things up a bit.  First, get rid of the NetAtoms array (and the NA
12944         enum), and just embed the atoms as static fields.  Also, add a
12945         couple of functions (StyleSet and ExStyleSet) to clean up all the
12946         bitmask testing of styles.
12947
12948         * X11Structs.cs: remove the NA enum, not needed anymore.
12949         
12950 2006-09-19  Chris Toshok  <toshok@ximian.com>
12951
12952         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
12953         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
12954         added cleanup to get MessageBox titles appearing again, which were
12955         broken by my earlier fix for caption-less/ControlBox-less windows.
12956
12957 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
12958
12959         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
12960           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
12961           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
12962           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
12963           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
12964           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
12965           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
12966           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
12967           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
12968           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
12969           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
12970             Inital import.
12971         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
12972           ToolStripButton.cs: Stubs needed for above.
12973         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
12974
12975 2006-09-15  Chris Toshok  <toshok@ximian.com>
12976
12977         * XplatUIX11.cs:
12978         - make the MessageQueues hashtable Synchronized.
12979         
12980         - SendMessage: if the Hwnd is owned by a different thread, use the
12981         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
12982         thread.  Fixes bug #79201.
12983
12984 2006-09-15  Chris Toshok  <toshok@ximian.com>
12985
12986         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
12987         ControlBox == false, we disallow maximize/minimize/close.  If the
12988         form Caption is "" we also disallow move (and get rid of the Title
12989         decoration).  Unfortunately, regardless of how things are set,
12990         we're stuck with the Title and WM menu.
12991
12992 2006-09-15  Chris Toshok  <toshok@ximian.com>
12993
12994         * Application.cs: add locking around the static message_filters
12995         ArrayList, part of #79196.
12996
12997 2006-09-15  Chris Toshok  <toshok@ximian.com>
12998
12999         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
13000         Form.ControlBox == false, the window has no titlebar nor resize
13001         handles.  fixes bug #79368.
13002
13003 2006-09-15  Chris Toshok  <toshok@ximian.com>
13004
13005         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
13006         >= 0.  Fixes bug #79370.
13007
13008 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
13009         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
13010         * Control.cs:
13011             Add properties: LayoutEngine, Margin, DefaultMargin.
13012             Add method: GetPreferredSize.
13013             Move layout logic from PerformLayout to layout engines. 
13014
13015 2006-09-13  Chris Toshok  <toshok@ximian.com>
13016
13017         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
13018         fix for #79326 broke #78718, so this change addresses that.
13019
13020         - in SendWMDestroyMessages remove the call to
13021         CleanupCachedWindows, since we might be recreating the control and
13022         need to maintain the references to right Hwnd handles.  Also, set
13023         the zombie flag to true for each of the children in the hierarchy
13024         instead of calling hwnd.Dispose.  This will cause GetMessage to
13025         ignore all events for the window except for DestroyNotify.
13026
13027         - In GetMessage, ignore messages except for DestroyNotify for
13028         zombie hwnds.
13029         
13030         * Control.cs: revert the is_recreating fix from the last
13031         ChangeLog.  It's definitely "right", but it breaks switching from
13032         an MDI form to a non-MDI form.  Will need to revisit that.
13033
13034         * Hwnd.cs: add a zombie flag, which means "the
13035         client_window/whole_window handles are invalid, but we're waiting
13036         for the DestroyNotify event to come in for them".  Set the flag to
13037         false explicitly if setting WholeWindow/ClientWindow, and also
13038         when Disposing.
13039         
13040 2006-09-13  Chris Toshok  <toshok@ximian.com>
13041
13042         * XplatUIX11.cs: rework window destruction slightly.
13043
13044         - when destroying the windows associated with a control, we don't
13045         need 2 separate XDestroyWindow calls.  Just the one for the
13046         whole_window (or for client_window if whole_window is somehow
13047         IntPtr.Zero -- can this happen?) is enough.
13048
13049         - reworked SendWMDestroyMessages slightly, so we always dispose
13050         the child control hwnd's after sending the messages.
13051         
13052         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
13053         the two places it was used (one was even using hwnd.Handle and the
13054         other hwnd.client_window.  ugh), adding another call in
13055         SendWMDestroyMessages.  We need this new call because now the
13056         DestroyNotify events in the queue will be ignored for the child
13057         controls (as their hwnd's were disposed, and the window id's
13058         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
13059
13060         - this fixes bug #79326.
13061
13062 2006-09-13  Chris Toshok  <toshok@ximian.com>
13063
13064         * Control.cs: don't always set is_recreating to false at the end
13065         of RecreateHandle, since sometimes we're not done (and won't be
13066         until WndProc handles the WM_DESTROY message).  Also, set
13067         is_recreating to false in the WM_DESTROY handling code.  Part of
13068         the fix for bug #79326.
13069
13070 2006-09-13  Miguel de Icaza  <miguel@novell.com>
13071
13072         * X11DesktopColors.cs: Start the droppage of debugging messages.
13073
13074         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
13075
13076 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
13077
13078         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
13079
13080 2006-09-12  Chris Toshok  <toshok@ximian.com>
13081
13082         * DataGrid.cs (get_ListManager): if the list_manager is null, try
13083         to create it using SetDataSource.  Fixes bug #79151.
13084
13085 2006-09-11  Chris Toshok  <toshok@ximian.com>
13086
13087         * XEventQueue.cs: add a DispatchIdle property.
13088
13089         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
13090         either the queue is null, or the queue has DispatchIdle set to
13091         true.
13092         (DoEvents): set queue.DispatchIdle to false around the
13093         peek/translate/dispatch message loop in this method.  This keeps
13094         Application.Doevents from emitting idle events.  Part of the fix
13095         for #78823.
13096
13097 2006-09-11  Chris Toshok  <toshok@ximian.com>
13098
13099         * DataGrid.cs (set_DataSource): make this work for both the
13100         winforms/datagrid test and ReportBuilder.  It seems as though when
13101         we've created a ListManager (or maybe it's if we have a
13102         BindingContext?), when we set the DataSource it clears the
13103         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
13104         #79333.
13105
13106 2006-09-11  Chris Toshok  <toshok@ximian.com>
13107
13108         * XplatUIX11.cs: deal with queue being null, which happens in all
13109         the Clipboard functions.  Fixes one of the two problems mentioned
13110         in #78612.
13111
13112 2006-09-11  Chris Toshok  <toshok@ximian.com>
13113
13114         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
13115         button on various spots (including outside the menu) works closer
13116         to MS, and doesn't crash.  Fixes #79343.
13117
13118 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
13119
13120         * ListView.cs: Do not initialize item_sorter in init. To match MS,
13121         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
13122         and the internal comparer is set. When a new ListViewItemSorter is set,
13123         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
13124         was specified. No further processing is necessary if SortOrder is set
13125         to it's current value. If Sorting is modified to None, and View is
13126         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
13127         (either custom or our internal ItemComparer) to null, on 1.0 profile
13128         only set item_sorter to null if its our internal IComparer. If Sorting
13129         is modified to Ascending or Descending, then use our internal IComparer
13130         if none is set, and if the current IComparer is our internal one then:
13131         on 2.0 profile always replace it with one for new Sorting, and on 1.0
13132         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
13133         Enum.IsDefined to verify whether a valid View value is specified in
13134         its setter. Automatically sort listview items when listview is
13135         created. In Sort, do nothing if ListView is not yet created, or if
13136         no item_sorter is set (no Sorting was set, Sorting was explicitly set
13137         to None or ListViewItemSorter was set to null). Added Sort overload
13138         taking a bool to indicate whether the ListView should be redrawn when
13139         items are sorted (we use this in ListViewItemCollection to avoid double
13140         redraws). Modified our internal IComparer to take the sort order into
13141         account. In Add and AddRange methods of ListViewItemCollection, also
13142         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
13143         view), but use overload with noredraw option to avoid double redraw.
13144         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
13145         true when View is Tile, and do the same when attempting to set View to
13146         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
13147         for selected/checked indices, as it involves overhead when sorting is
13148         done while these collections are not used all that often. Instead
13149         we'll build the indices on demand. Modified IList implementation of
13150         CheckedIndexCollection to use public methods if object is int.
13151         Modified CheckedListViewItemCollection to hide checked items if
13152         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
13153         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
13154         IList implementation in SelectedIndexCollection to use public methods
13155         if object is int. Modified SelectedListViewItemCollection to hide
13156         selected items if listview is not yet created.
13157         * ListViewItem.cs: CheckedIndices list no longer needs to be
13158         maintained separately (see ListView changes). Also clone font, fixes
13159         test failure.
13160
13161 2006-09-11  Mike Kestner  <mkestner@novell.com>
13162
13163         * ComboBox.cs: if we are updating the contents of the currently
13164         selected index, refresh the control or the textbox selection.
13165         [Fixes #79066]
13166
13167 2006-09-11  Mike Kestner  <mkestner@novell.com>
13168
13169         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
13170         the 'specified' logic has been moved there.  This seems like a bug 
13171         in Control.cs, since our current SetBoundsCore completely ignores 
13172         the specified parameter.  Peter's commit seems to indicate that is 
13173         the way the MS control implementation works.  [Fixes #79325]
13174
13175 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
13176
13177         * XplatUI.cs: Set default_class_name to be composed
13178         of current domain id. This allows MWF to be loaded in multiple
13179         domains on Win32.
13180
13181 2006-09-09  Miguel de Icaza  <miguel@novell.com>
13182
13183         * X11Keyboard.cs: If we are unable to obtain the input method, do
13184         not call CreateXic to create the input context.   Should fix
13185         #78944/79276.
13186
13187 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
13188
13189         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
13190           Simplified gnome support by adding more pinvokes to get the
13191           icon for a file or mime type.
13192
13193 2006-09-08  Jackson Harper  <jackson@ximian.com>
13194
13195         * MenuAPI.cs: Deslect popup context menu items before closing the
13196         window, so that you don't see the previously selected item
13197         selected when you reopen the menu.
13198         * TextControl.cs: Update the cursor position even if we don't have
13199         focus.  This fixes typing in things like the ComboBox.  I'm not
13200         totally sure we should always set the visibility if we don't have
13201         focus, but couldn't find any corner cases where the cursor showed
13202         up when it shouldn't.
13203
13204 2006-09-08  Chris Toshok  <toshok@ximian.com>
13205
13206         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
13207         our arrays are length 256.  & 0xff before indexing.  Fixes the
13208         crash in bug #78077.
13209         
13210 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13211
13212         * ThemeWin32Classic.cs: 
13213         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
13214         is true. Handle that check box too.
13215
13216 2006-09-07  Chris Toshok  <toshok@ximian.com>
13217
13218         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
13219         79244.
13220
13221 2006-09-07  Chris Toshok  <toshok@ximian.com>
13222
13223         * Control.cs: in set_BackColor only do the work if
13224         background_color != value.
13225
13226         * XplatUIX11.cs: move the clearing of invalid areas (both client
13227         and nc) to the same block of code where we set (nc_)expose_pending
13228         to false.  That is, move it from PaintEventEnd to PaintEventStart,
13229         so things that cause invalidates from within OnPaint will trigger
13230         another call to OnPaint.  Fixes bug #79262.
13231
13232 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
13233
13234         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
13235         * FileDialog.cs: Fix typo
13236
13237 2006-09-07  Jackson Harper  <jackson@ximian.com>
13238
13239         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
13240         for tab pages if they have any.
13241
13242 2006-09-06  Mike Kestner  <mkestner@novell.com>
13243
13244         * Splitter.cs: use the "current" rect when finishing drag handle
13245         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
13246
13247 2006-09-06  Mike Kestner  <mkestner@novell.com>
13248
13249         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
13250         support offset splitters. [Fixes #79298]
13251
13252 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
13253
13254         * Mime.cs: Fixed a bug that could override the global mime type
13255           result.
13256
13257 2006-09-05  Jackson Harper  <jackson@ximian.com>
13258
13259         * TabControl.cs: Better calculation method for setting the slider
13260         pos. Prevents crashes on really wide tabs.
13261         - Draw Image on tab pages if an image list is used.
13262
13263 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13264
13265         * MonthCalendar.cs: When Font changes, the Size should be
13266         updated to fit the new font's space requirements.
13267
13268 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
13269
13270         * ListBox.cs: If the items are cleared with Items.Clear set
13271           top_index to 0.
13272
13273 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13274
13275         * MonthCalendar.cs: Handle arrow keys as input keys. Also
13276         fire DateChanged event instead of DateSelected event when
13277         the date was changed by keyboard interaction.
13278
13279 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13280
13281         * DateTimePicker.cs: Handle DateChanged for the associated
13282         month_calendar control, and set month_calendar.Font from 
13283         OnFontChanged method, as well as resize the height of the
13284         control when needed. Make PreferredHeight proportional.
13285
13286 2006-09-01  Chris Toshok  <toshok@ximian.com>
13287
13288         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
13289         properties.
13290
13291         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
13292
13293 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
13294
13295         * FileDialog.cs: Set ClientSize instead of window size, to allow space
13296           for decorations (Fixes #79219)
13297
13298 2006-09-01  Mike Kestner  <mkestner@novell.com>
13299
13300         * ComboBox.cs: first stab at sorting plus some selection handling
13301         fixes to bring us more in line with MS behavior.  Also switches back
13302         to index based selection.  Alternative patches for index-based 
13303         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
13304         and latency@gmx.de on bug 78848.  I assume they were similar to this
13305         code I've had simmering in my tree forever.
13306         [Fixes #78848]
13307
13308 2006-09-01  Chris Toshok  <toshok@ximian.com>
13309
13310         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
13311         when setting list position guard against ending up with a -1 index
13312         (the other part of the fix for #78812).  Should probably make sure
13313         we don't need the analogous fix in the ItemDeleted case.
13314
13315         * DataGrid.cs:
13316         - in SetDataSource, work around the fact that the way
13317         OnBindingContextChanged is invoked will cause us to re-enter this
13318         method.  I'll remove the hack once I investigate
13319         OnBindingContextChanged.
13320
13321         - fix the logic in set_DataSource and set_DataMember (basically
13322         what to do if the other of the two is null.)
13323         
13324         - in OnListManagerItemChanged, we need to take into account the
13325         edit row when deciding whether or not to call RecreateDataGridRows
13326         (part of the fix for #78812).
13327
13328 2006-09-01  Jackson Harper  <jackson@ximian.com>
13329
13330         * Splitter.cs: Don't do anything if there is no control to affect
13331         (prevents us from crashing in weird tet cases).
13332         * TreeView.cs: Bounding box for the mouse movement reverting
13333         focus/selection back to previously selected node.  This matches
13334         MS, and makes the tree a lot more useable.
13335         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
13336         use clipping so they are not drawn.  This fixes when the control
13337         is set to have a transparent background, or if it was over an
13338         image.
13339
13340 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
13341
13342         * MimeIcon.cs: Improved handling for reading default icons when
13343           using gnome (2.16 made it necessary). Check and read svg icons
13344           first, then 48x48 and then 32x32 icons.
13345
13346 2006-08-31  Chris Toshok  <toshok@ximian.com>
13347
13348         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
13349         visible.
13350
13351         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
13352         ProcessKeyPreview.  Fixes part of #77806.
13353
13354         * DataGrid.cs: big patch.
13355
13356         - revert the queueing up of DataSource/DataMember if inside
13357         BeginInit/EndInit calls.  That's not the way the datagrid achieves
13358         its delayed databinding.  Instead, call SetDataSource in
13359         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
13360         #78811.
13361
13362         - Also, it wasn't mentioned in #78811, but the test case exhibits
13363         behavior that was lacking in our datagrid implementation - Columns
13364         that have mapping names that don't exist in the datasource's
13365         properties aren't shown.  Yuck.  To fix this I added the bound
13366         field to the column style, and basically any calculation to figure
13367         out anything about columns uses a loop to find the bound columns.
13368         still need to investigate if I can cache an array of the bound
13369         columns or if the indices must be the same.
13370
13371         - When setting CurrentCell, we no longer abort if the cell being
13372         edited was in the add row.  This fixes the other part of #77806.
13373
13374         - The new code also fixes #78807.
13375         
13376         * ThemeWin32Classic.cs: perpetrate the same disgusting
13377         column.bound field hack, and only render bound fields.
13378
13379 2006-08-31  Chris Toshok  <toshok@ximian.com>
13380
13381         * DataGridColumnStyle.cs: add bound field.  this field is true if
13382         the datasource has a property corresponding to the mapping name.
13383
13384         * DataGridTableStyle.cs: set the bound field on the column styles
13385         depending on whether or not we have a column for that property.
13386
13387 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
13388
13389         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
13390           splitter control (fixes #79228)
13391
13392 2006-08-31  Chris Toshok  <toshok@ximian.com>
13393
13394         * DataGridColumnStyle.cs: we need to delay the assignment of
13395         property descriptor until the last possible moment due to the lazy
13396         databinding stuff in the datagrid.  Also, fix the exceptions
13397         thrown by CheckValidDataSource to match MS.
13398
13399 2006-08-31  Jackson Harper  <jackson@ximian.com>
13400
13401         * Form.cs: When activated select the active control, if there is
13402         no active control, we select the first control.
13403         * XplatUIX11.cs: If there is no focus control when we get a
13404         FocusIn event, find the toplevel form and activate it.  This
13405         occurs when you popup a window, it becomes the focus window, then
13406         you close that window, giving focus back to the main window.
13407
13408 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13409
13410         * MonthCalendar.cs: 
13411         * ThemeWin32Classic.cs: Cache Font in bold style, as well
13412         as StringFormat with Center alignments in MonthCalendar,
13413         instead of creating new ones when drawing the control. 
13414         Also, draw the month name in bold style.
13415
13416 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13417
13418         * Control.cs:
13419           - PerformLayout(): It would seem MS performs the fill even if the 
13420             control is not visible (part of #79218 fix)
13421           - ResetBackColor(): Use the setter to reset the color, to allow
13422             overriders to catch the change.
13423         * Form.cs:
13424           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
13425           - CreateHandle(): dito (part of $79218 fix)
13426           - Don't set an icon if we have a dialog
13427         * ScrollableControl.cs:
13428           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
13429           - ScrollIntoView(): No need to scroll if control is already visible
13430             (resolves fixme and fixes #79218)
13431
13432 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13433
13434         * MonthCalendar.cs: Change proportions in SingleMonthSize
13435         to match the aspect of the original control.
13436
13437 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
13438
13439         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
13440           get updated when they get maximized.
13441
13442 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
13443
13444         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
13445
13446 2006-08-29  Chris Toshok  <toshok@ximian.com>
13447
13448         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
13449
13450 2006-08-29  Jackson Harper  <jackson@ximian.com>
13451
13452         * TreeView.cs: Need to track selected node and highlighted node,
13453         they aren't always the same thing, when the mouse is down on a
13454         node it is hilighted, but not selected yet.
13455         - Do the HideSelection stuff right
13456         - Need to focus on rbutton mouse down. And redraw selection when
13457         right click is mouse upped.
13458
13459 2006-08-29  Mike Kestner  <mkestner@novell.com>
13460
13461         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
13462         when SubItems.Count < Columns.Count.  [Fixes #79167]
13463
13464 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
13465
13466         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
13467
13468 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
13469
13470         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
13471           from X. Only send based on ConfigureNotify if we don't have the
13472           correct location in hwnd (if the window manager moved us)
13473
13474 2006-08-28  Mike Kestner  <mkestner@novell.com>
13475
13476         * ListView.cs: remove a TODO. 
13477         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
13478         [Fixes ListView part of #79166]
13479
13480 2006-08-28  Mike Kestner  <mkestner@novell.com>
13481
13482         * ListView.cs: move wheel handler to parent since it is focused
13483         instead of the item_control now.  [Fixes #79177]
13484
13485 2006-08-28  Mike Kestner  <mkestner@novell.com>
13486
13487         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
13488         when the control is focused. [Fixes #79171]
13489
13490 2006-08-28  Mike Kestner  <mkestner@novell.com>
13491
13492         * ListView.cs: size the item and header controls for empty and
13493         unscrollable views.
13494         * ThemeWin32Classic.cs: draw disabled backgrounds.
13495         [Fixes #79187]
13496
13497 2006-08-28  Chris Toshok  <toshok@ximian.com>
13498
13499         * Form.cs: remove unused "active_form" static field.
13500
13501         * Hwnd.cs: lock around accesses to static windows collection.
13502
13503         * Application.cs: lock threads in Exit ().
13504
13505 2006-08-28  Chris Toshok  <toshok@ximian.com>
13506
13507         * NativeWindow.cs: lock around accesses to window_collection.
13508         
13509 2006-08-28  Chris Toshok  <toshok@ximian.com>
13510
13511         * Control.cs: err, fix this the right way, by locking on controls
13512         when using it.  not by making it synchronized.
13513
13514 2006-08-28  Chris Toshok  <toshok@ximian.com>
13515
13516         * Control.cs: make the static "controls" field synchronized, as it
13517         gets updated from multiple threads.
13518
13519 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
13520
13521         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
13522           Prevent other threads from exiting when calling thread sets quit state.
13523         * XEventQueue.cs: Added PostQuitState property
13524
13525 2006-08-27  Chris Toshok  <toshok@ximian.com>
13526
13527         * AsyncMethodData.cs: add a slot for the window handle.
13528
13529         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
13530         window (the destination control's window, not the foster window).
13531
13532         * Control.cs (BeginInvokeInternal): store the window's handle in
13533         the AsyncMethodData.
13534         
13535
13536 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
13537
13538         * XplatUIX11.cs:
13539           - PostQuitMessage: Removed resetting S.D display handle, we might have
13540             another loop started after calling PostQuitMessage (Fixes #79119)
13541           - Created destructor to reset S.D handle
13542
13543 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
13544
13545         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
13546
13547 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
13548
13549         * TextControl.cs (Insert): Update the caret position even if we don't
13550           have a handle yet, just don't call the driver in that case.
13551         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
13552           to the end of the new selection text (Fixes #79184)
13553
13554 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13555
13556         * Form.cs (Activate): Only activate if the handle is created)
13557         * Control.c:
13558           - Mark window as invisible when it's disposed
13559           - Check if window handle is created when setting window visible, 
13560             instead of relying just on the is_created variable
13561           - Check if object is disposed when creating the control (Fixes #79155)
13562
13563 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
13564
13565         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
13566           when allowing layout again. Otherwise we re-generate the anchoring 
13567           distance to the border again and actually alter what the user wanted
13568           This is ugly, it'd be better if we used DisplayRectangle instead of
13569           ClientRectangle for Control.UpdateDistances, but that causes us to
13570           have other problems (initial anchoring positons would be wrong)
13571           (Fixes #78835)
13572
13573 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13574
13575         * Control.cs:
13576           - The size and location setters shouldn't go directly to 
13577             SetBoundsCore, but to SetBounds, which triggers layout on the
13578             parent, then calls SetBoundsCore. (Related to fix for #78835)
13579           - SetBounds: Moved actual location update code into this function
13580             from SetBoundsCore, to match MS. Added call to PerformLayout if
13581             we have a parent (to trigger resizing of anchored parents if the 
13582             child size has changed (see testcase for #78835) 
13583         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
13584           new control code
13585         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
13586
13587 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
13588
13589         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
13590           System.Drawing when a toplevel window gets closed; there might
13591           be other toplevel windows belonging to the same app (Fixes #78052)
13592
13593 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
13594
13595         * FileDialog.cs: After reading FileDialog settings from mwf_config
13596           use Desktop prefix only if a real folder doesn't exist anymore.
13597         * FontDialog.cs: Added char sets.
13598           It is now possible to select the font, size or style with the
13599           textboxes.
13600
13601 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
13602
13603         * PrintPreviewDialog.cs: Use assembly name constants.
13604
13605 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
13606
13607         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
13608           scrollbar from whacking it's buttons)
13609
13610 2006-08-24  Chris Toshok  <toshok@ximian.com>
13611
13612         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
13613         in this patch (aggregating setting Left/Top/Width/Height to
13614         setting Bounds on the scrollbars), but the crux of the fix is in
13615         Recalculate, where we scroll by the remaining scroll_position if
13616         we're hiding a scrollbar.  The 2*$5 reward in the comment is
13617         serious.
13618
13619 2006-08-24  Jackson Harper  <jackson@ximian.com>
13620
13621         * MdiClient.cs:
13622         * MdiWindowManager.cs: If the form is made a non-mdi window we
13623         need to remove the form closed event so that closing forms works
13624         correctly.
13625
13626 2006-08-24  Jackson Harper  <jackson@ximian.com>
13627
13628         * Control.cs: Make IsRecreating internal so that the driver can
13629         check it
13630         - Temporarily remove the Hide when controls are removed, its
13631         making a whole bunch of things not work because visibility isn't
13632         getting reset elsewhere correctly
13633         * Form.cs: Need to do a full handle recreation when the mdi parent
13634         is set.
13635         * XplatUIX11.cs: If we are recreating handles don't dispose the
13636         HWNDs.  What was happening is the handles were being recreated in
13637         SendWMDestroyMessages, but then flow continued on in that method
13638         and destroyed the new handles.
13639
13640 2006-08-23  Jackson Harper  <jackson@ximian.com>
13641
13642         * Form.cs: MdiClient is always at the back of the bus
13643         * Control.cs: When the order of items in the collection is changed
13644         we need to reset the all_controls array
13645         - do the same sorta setup thats done when adding a control when a
13646         control is set on the collection.
13647
13648 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
13649
13650         * TextBoxBase.cs (get_Text): Return an empty array if our document
13651           is empty (fixes #79052)
13652
13653 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13654
13655         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
13656           on WM_SYSCHAR messages (fixes #79053)
13657
13658 2006-08-23  Chris Toshok  <toshok@ximian.com>
13659
13660         * DataGrid.cs: fix flickering when scrolling vertically.
13661
13662 2006-08-23  Chris Toshok  <toshok@ximian.com>
13663
13664         * DataGrid.cs (EndEdit): only invalidate the row header when we
13665         need to.
13666
13667 2006-08-23  Chris Toshok  <toshok@ximian.com>
13668
13669         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
13670         methods.  fixes the flicker when scrolling around.
13671
13672 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13673
13674         * FileDialog.cs: Making sure the control is created before we get a 
13675           chance to use it with BeginInvoke (Fixes #79096)
13676
13677 2006-08-23  Chris Toshok  <toshok@ximian.com>
13678
13679         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
13680         width to use when painting the rows.
13681
13682 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13683
13684         * TextBoxBase.cs:
13685           - Throw ArgumentException if a negative value is passed to SelectionLength
13686           - Update the selection end if start is moved. end needs to be always
13687             after start. (Fixes #79095)
13688           - Track selection length; MS keeps the selection length even if start
13689             is changed; reset on all other operations affection selection
13690
13691 2006-08-22  Jackson Harper  <jackson@ximian.com>
13692
13693         * TreeView.cs: Make sure both scrollbars get displayed and sized
13694         correctly when the other bar is visible.
13695         - Use the original clip rectangle for checking if the area between
13696         the two scrollbars is visible, not the viewport adjusted clipping
13697         rectangle.
13698
13699 2006-08-22  Jackson Harper  <jackson@ximian.com>
13700
13701         * Binding.cs: We don't use IsBinding because it requires the
13702         control to be created, which really shouldn't be necessary just to
13703         set a property on the control.
13704
13705 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13706
13707         * ComboBox.cs: Some CB.ObjectCollection methods must throw
13708         ArgumentNullReferenceException when the argument is null.
13709
13710 2006-08-21  Jackson Harper  <jackson@ximian.com>
13711
13712         * Timer.cs: Track the thread that the timer is started in (NOT
13713         CREATED), this way messages for it will only be triggered on its
13714         queue.
13715         * XEventQueue.cs: Track the timers here, this makes timers per
13716         thread, like MS.
13717         * XplatUIX11.cs: The timers are moved to the XEventQueue.
13718
13719 2006-08-19  Chris Toshok  <toshok@ximian.com>
13720
13721         * XplatUIX11.cs: after further communication with pdb, we get the
13722         best of both worlds.  SetZOrder working for un-Mapped windows, and
13723         no X errors for un-mapped windows.
13724
13725 2006-08-19  Chris Toshok  <toshok@ximian.com>
13726
13727         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
13728         as it was causing pdn toolbars to not have the correct stacking.
13729
13730 2006-08-18  Mike Kestner  <mkestner@novell.com> 
13731
13732         * ListView.cs : guard against negative ClientArea.Width in scrollbar
13733         calculation.  Not sure why control should ever be setting a negative
13734         width though.  Fixes #78931.
13735
13736 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13737
13738         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
13739         null items in ObjectCollection class.
13740         * ListBox.cs.: Likewise.
13741
13742 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
13743
13744         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
13745           as the base method in ThemeWin32Classic should work fine.
13746           Fixed bug #78607.
13747
13748 2006-08-18  Jackson Harper  <jackson@ximian.com>
13749
13750         * Binding.cs: When validating if the value entered doesn't convert
13751         properly reset to the old value.
13752         * RadioButton.cs: Don't fire click when we get focus.
13753
13754 2006-08-18  Jackson Harper  <jackson@ximian.com>
13755
13756         * FileDialog.cs: Paint the selection on the directory combobox the
13757         same way as on MS. 
13758
13759 2006-08-17  Jackson Harper  <jackson@ximian.com>
13760
13761         * ErrorProvider.cs: Don't allow the error control to be selected.
13762         * Control.cs: Don't send the SetFocus messages, the control
13763         activation will do this, and if we do it blindly here validation
13764         does not work.
13765
13766 2006-08-17  Jackson Harper  <jackson@ximian.com>
13767
13768         * Control.cs:
13769         * ContainerControl.cs: Make validation events fire in the correct
13770         order.  TODO: For some reason the first validation event is not
13771         getting fired.
13772
13773 2006-08-17  Mike Kestner  <mkestner@novell.com> 
13774
13775         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
13776
13777 2006-08-17  Mike Kestner  <mkestner@novell.com> 
13778
13779         * ComboBox.cs : implement scroll wheel support for popped-down
13780         state. Fixes #78945. 
13781
13782 2006-08-17  Jackson Harper  <jackson@ximian.com>
13783
13784         * TreeView.cs: Specify treeview actions (old patch that didn't get
13785         committed for some reason).
13786         - Don't let the mouse wheel scroll us too far.  Just want to make
13787         the bottom node visible, not scroll it all the ways to the top.
13788
13789 2006-08-17  Jackson Harper  <jackson@ximian.com>
13790
13791         * XplatUIX11.cs: Mouse wheel events go to the focused window.
13792
13793 2006-08-17  Mike Kestner  <mkestner@novell.com> 
13794
13795         * ComboBox.cs : don't do mouseover selection in simple mode.
13796
13797 2006-08-16  Jackson Harper  <jackson@ximian.com>
13798
13799         * Form.cs: Fire the closing events for all the mdi child windows
13800         when a window is closed.  If the cancel args are set to true, the
13801         main window still gets the event fired, but it doesn't not close.
13802         * MdiWindowManager.cs: Do this closing cleanup in a Closed
13803         handler, instead of when the button is clicked, so cancelling the
13804         close works correctly.
13805         * ComboBox.cs: Send the mouse down to the scrollbar.
13806
13807 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13808
13809         * ListBox.cs: When passing 'null' to SelectedItem,
13810         set SelectedIndex to -1, to unselect items. This is the
13811         observed behaviour in .Net.
13812
13813 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
13814
13815         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
13816           MS flags saying there won't be any. (fixes #78800)
13817         * Control.cs (HandleClick): Made virtual
13818
13819 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
13820
13821         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
13822           cultures. Fixed bug #78399.
13823
13824 2006-08-16  Jackson Harper  <jackson@ximian.com>
13825
13826         * Form.cs: Use the MdiClients MdiChildren property to access
13827         MdiChildren instead of creating the array from the child controls.
13828         * MdiClient.cs: Maintain a separate array of the mdi children, so
13829         that insertion order is maintained when the Z-order is changed.
13830
13831 2006-08-16  Mike Kestner  <mkestner@novell.com> 
13832
13833         * ListView.cs : add an ItemComparer and default to it for sorting.
13834         Fixes #79076, but sorting needs a complete overhaul to be compat with
13835         MS.
13836
13837 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
13838
13839         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
13840
13841 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13842
13843         * Hwnd.cs (Mapped): Properly traverse the tree
13844
13845 2006-08-15  Chris Toshok  <toshok@ximian.com>
13846
13847         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
13848         pass manager.Current.GetType() to ParseData.  It has to be the
13849         property type.  So, hold off doing the ParseData until we're in
13850         SetPropertyValue where we know the type.  This fixes the crash in
13851         #78821 but the textbox is still empty.
13852
13853 2006-08-15  Chris Toshok  <toshok@ximian.com>
13854
13855         * DataGrid.cs:
13856         - when we're scrolling, only call Edit() again if the
13857         current cell is still unobscured. Fixes bug #78927.
13858         - when handling mousedown on a cell, ensure the cell is visible
13859         before calling Edit.
13860         - remove the properties from DataGridRow, and remove the
13861         DataGridParentRow class altogether.
13862         
13863
13864 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13865
13866         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
13867           fire OnTextChanged by ourselves. There's no point calling base,
13868           we don't set the base value anywhere else. Fixes #78773.
13869
13870 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13871
13872         * ListBox.cs: Call CollectionChanged when modifying
13873         an item from Items indexer, to update the actual items
13874         in the list box.
13875
13876 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13877
13878         * PrintDialog.cs: Small fixes for focus and a pair of checks,
13879         to match .Net behaviour.
13880
13881 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13882
13883         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
13884
13885 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
13886
13887         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
13888
13889 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13890
13891         * MessageBox.cs: Prevent potential NRE exception.
13892         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
13893
13894 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
13895
13896         * MessageBox.cs: Calculate the owner of a messagebox, also make
13897           it topmost. Fixes #78753
13898
13899 2006-08-14  Chris Toshok  <toshok@ximian.com>
13900
13901         * XplatUIX11.cs: A couple of fixes so that metacity will let us
13902         programmatically move windows.  first, set the PPosition hint as
13903         well as the USPosition hint.  Second include some code from pdb
13904         that sets the window type to NORMAL when we set the transient for
13905         hint.  This is because, in the absence of a window type, metacity
13906         thinks any window with TransientFor set is a dialog, and refuses
13907         to let us move it programmatically.  fascists.
13908
13909 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
13910
13911         * XplatUIX11.cs: When setting normal hints, take into consideration
13912           an different hints previously set so we don't delete them (fixes #78866)
13913
13914 2006-08-12  Chris Toshok  <toshok@ximian.com>
13915
13916         * ToolBarButton.cs: make Layout return a boolean, if something to
13917         do with the button's layout changed.
13918
13919         * ToolBar.cs:
13920         - add another parameter to Redraw, @force, which all existing
13921           calls set to true.
13922         - make the Layout function return a boolean which is true if the
13923           layout has actually changed.  Redraw now uses this (and @force)
13924           to determine when to invalidate.  At present the only place
13925           where @force can be false is the call from OnResize, when
13926           background_image == null.  So, resizing a toolbar when the
13927           layout doesn't change results in no drawing.
13928
13929 2006-08-12  Chris Toshok  <toshok@ximian.com>
13930
13931         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
13932         the VScrollBar and HScrollbar reversed.  oops.
13933
13934         * DataGrid.cs: fix the logic that assigns sizes to the implicit
13935         scrollbars.  we were assigning them twice (once in
13936         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
13937         therefore causing two scrollbar resizes (and redraws?) to happen
13938         per grid resize.
13939
13940 2006-08-12  Chris Toshok  <toshok@ximian.com>
13941
13942         * ToolBarButton.cs: redraw the entire button if the theme tells us
13943         to.
13944
13945         * Theme.cs: add ToolBarInvalidateEntireButton.
13946
13947         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
13948         buttons, just the border.
13949
13950         * ThemeNice.cs: redraw the entire toolbar button since we need to
13951         draw the highlight image.
13952
13953         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
13954         we need to redraw the entire button (not just the border).
13955
13956 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
13957
13958         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
13959           for vertical bars. Fixes the mismatches shown by #78513
13960
13961 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
13962
13963         * FileDialog.cs: If a saved/remembered path doesn't exist
13964           anymore, fall back to "Desktop".
13965
13966 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
13967
13968         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
13969           parent. It's apparently legal to not have one
13970         * XplatUIX11.cs:
13971           - SetZOrder: Don't try to set Z-Order on an unmapped window
13972           - CreateWindow: 0,0 are legal coordinates for a window. don't move
13973             it unless the coordinates are negative
13974
13975 2006-08-10  Mike Kestner  <mkestner@novell.com>
13976
13977         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
13978         when setting to null per msdn docs.  Fixes #78854.
13979
13980 2006-08-10  Chris Toshok  <toshok@ximian.com>
13981
13982         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
13983         flickering by setting a clip rectangle on the Graphics when we
13984         need to redraw just a particular menuitem.  Also, rename "OnClick"
13985         to "OnMouseDown" to reflect what it actually is.
13986         
13987         * Form.cs: track the OnMouseDown change.
13988
13989 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
13990
13991         * CommonDialog.cs: Properly inherit the CreateParams from the form
13992           and only change what we need. Fixes #78865
13993
13994 2006-08-10  Chris Toshok  <toshok@ximian.com>
13995
13996         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
13997         flickering in flat mode (and most of the flickering in general) by
13998         only invalidating the button border (and not the entire rectangle)
13999         when the state changes.  A couple of cases still flicker:
14000         ToggleButtons, and the dropdown arrow case when the user mouse
14001         ups.
14002
14003 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
14004
14005         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
14006           for german keyboards. Numlock state shouldn't affect the behaviour
14007           of the Del key. Fixes bug #78291.
14008
14009 2006-08-10  Chris Toshok  <toshok@ximian.com>
14010
14011         * ListControl.cs: remove the items.Clear line from BindDataItems,
14012         as this is the first thing done by both subclasses in their
14013         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
14014         passed -1, refresh the list.  This gets databinding working when
14015         the datasource is set on the list before the datasource is
14016         populated (as in wf-apps/ReportBuilder.)
14017
14018         * ComboBox.cs: remove the argument to BindDataItems.  This call
14019         should really go away, and be initiated by the ListControl code.
14020
14021         * ListBox.cs: same.
14022
14023 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
14024
14025         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
14026           if no data is in the document when the control is displayed
14027
14028 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
14029
14030         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
14031           yes (fixes #78806)
14032         * TextControl.cs: 
14033           - PositionCaret: Allow positioning of caret but don't call methods 
14034             requiring a handle if the window isn't created yet
14035           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
14036           - owner_HandleCreated: Don't position the caret, just update it's 
14037             location. User might have already set a different position
14038
14039 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
14040
14041         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
14042           windows. Screws up the returned coordinates for child windows. 
14043           Fixes #78825. I'm hoping this doesn't break something, since the
14044           code was explicitly put in 8 months ago, but no bug was attached.
14045           Menus still seem to work properly.
14046
14047 2006-08-08  Chris Toshok  <toshok@ximian.com>
14048
14049         * DataGrid.cs: make BeginInit/EndInit actually do what they're
14050         supposed to do - delay data binding until the EndInit call.  Also,
14051         make the table style collection's CollectionChangeAction.Refresh
14052         work properly.
14053
14054         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
14055         (with action = Refresh) when a consituent table's MappingName is
14056         changed.
14057
14058 2006-08-08  Chris Toshok  <toshok@ximian.com>
14059
14060         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
14061         Invalidate, since changing the text can change the size of the all
14062         toolbar buttons.
14063
14064 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
14065
14066         * Form.cs (AddOwnedForm): Still need to add the form to our listif
14067           we don't have it yet
14068
14069 2006-08-08  Chris Toshok  <toshok@ximian.com>
14070
14071         * PrintControllerWithStatusDialog.cs: don't .Close() the status
14072         dialog, as this causes X errors later on, since we actually
14073         destroy the window.  Instead, .Hide() it.
14074
14075 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
14076
14077         * ComboBox.cs: Added focus reflection for popup window
14078         * XplatUIX11.cs: 
14079           - Removed transient setting for non-app windows for now, not sure it
14080             was needed
14081           - Fixed logic checking if we have captions when deciding 
14082             override_redirect, WS_CAPTION is two bits and a 0 check was not
14083             sufficient
14084           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
14085             complicated
14086         * Form.cs: 
14087           - AddOwnedForm: Don't just add the form to the list, call the property
14088             to ensure the driver is informed about the ownership as well
14089           - CreateHandle: Set the TopMost status in the driver if we have an owner
14090         * XplatUI.cs: Fixed debug statement
14091
14092 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
14093         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
14094           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
14095           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
14096           TrackBarRenderer.cs: Make constructor private.
14097         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
14098         * ProfessionalColorTable.cs: Make properties virtual.
14099
14100 2006-08-06  Duncan Mak  <duncan@novell.com>
14101
14102         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
14103         is not changing.
14104
14105 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
14106         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
14107           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
14108           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
14109           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
14110           Initial import of new 2.0 classes.
14111
14112 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
14113         * Application.cs: Add 2.0 VisualStyles properties.
14114
14115 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
14116         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
14117           XplatUIX11.cs: Create property to allow access to existing private
14118           variable "themes_enabled"
14119
14120 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14121
14122         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
14123         file size, as otherwise our class libraries fail using windows. Fixes
14124         bug #78759.
14125
14126 2006-08-04  Jackson Harper  <jackson@ximian.com>
14127
14128         * Form.cs:
14129         * XplatUIX11.cs: Move the toolwindow window manager creation into
14130         the X11 driver, this way on win32 we can let windows create/handle
14131         the toolwindows.
14132
14133 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14134
14135         * PrintDialog.cs: Remove some redundant checks, add some others,
14136         clean some code, and move the focus to the text boxes when the
14137         values are incorrect.
14138
14139 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
14140
14141         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
14142
14143 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
14144
14145         * NumericUpDown.cs: Setting the Minimum and Maximum is now
14146           handled correctly. Fixes bug #79001.
14147
14148 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14149
14150         * PrintDialog.cs: The "Copies" numeric up down must have
14151         set the Minimum property to 1; only if the value is bigger
14152         than 1, activate "Collate" check box. This is the behaviour of .Net.
14153         Also modify the Document elements only if it is not null.
14154
14155 2006-08-03  Jackson Harper  <jackson@ximian.com>
14156
14157         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
14158         length. (We have a larger array then actual node count).
14159                 
14160 2006-08-03  Jackson Harper  <jackson@ximian.com>
14161
14162         * ComboBox.cs: Don't show selection by default.
14163         - The SelectAll isn't needed here, since the focus code should do
14164         that
14165         - DDL style lists to manual selection drawing, so when they
14166         get/lose focus they have to invalidate.
14167
14168 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
14169
14170         * TextBoxBase.cs: Don't always show all selections by default.
14171
14172 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
14173         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
14174           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
14175           Fixed various typos.
14176
14177 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
14178
14179         * Control.cs: Removing the controls in a ControlCollection with
14180           Clear now hides the controls as expected. Fixes bug #78804. 
14181
14182 2006-08-03  Jackson Harper  <jackson@ximian.com>
14183
14184         * Control.cs: Revert previous focus patch, it breaks reflector.
14185
14186 2006-08-03  Jackson Harper  <jackson@ximian.com>
14187
14188         * ComboBox.cs: Cleanup selection and focus with the combobox.
14189         This also eliminates some duplicated keyboard code, since now
14190         everything is handled by the main class.
14191         - Make list selection work on mouse up instead of down, to match
14192         MS.
14193
14194 2006-08-02  Jackson Harper  <jackson@ximian.com>
14195
14196         * Control.cs: Setting focus needs to go through the whole
14197         selection mechanism.
14198
14199 2006-08-02  Chris Toshok  <toshok@ximian.com>
14200
14201         * PrintPreviewDialog.cs: change MinimumSize to use
14202         base.MinimumSize so it works.
14203
14204 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
14205
14206         * TextControl.cs:
14207           - UpdateCaret: Added sanity check in case caret isn't defined yet
14208           - Line.Delete: Now updating selection and caret markers if we're
14209             transfering a node (Properly fixes #78323)
14210           - SetSelectionEnd: Added sanity check
14211         * TextBoxBase.cs: Removed broken attempt to fix #78323
14212
14213 2006-08-01  Chris Toshok  <toshok@ximian.com>
14214
14215         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
14216         Close() call is handled in Form, not here.
14217
14218 2006-08-01  Chris Toshok  <toshok@ximian.com>
14219
14220         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
14221         layout/rendering.
14222
14223         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
14224         for sizes < 100% zoom.  The code now aggressively attempts to keep
14225         from calling document.Print (), and tries not to use the scaling
14226         g.DrawImage whenever possible (it still does if you scale to >
14227         100%, since usually that involves huge images).
14228
14229         * PrintPreviewControl.cs: hook up the close button.
14230
14231 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
14232         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
14233           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
14234           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
14235           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
14236           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
14237           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
14238           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
14239           Removed [Serializable] for 2.0 Event Handlers.
14240
14241 2006-07-31  Jackson Harper  <jackson@ximian.com>
14242
14243         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
14244         * TextControl.cs: Uncomment out the body of this method.
14245
14246 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
14247
14248         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
14249           standard cursors.
14250
14251 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
14252
14253         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
14254           that embed TextBox and need selections visible even if textbox is not
14255           focused to enforce that behaviour.
14256         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
14257           selection drawing
14258
14259 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
14260
14261         * TextControl.cs:
14262           - Added new SetSelectionStart/SetSelectionEnd overloads
14263           - Fixed viewport width assignment to be accurate
14264           - Adjusted alignment line shift calculations to allow cursor on right
14265             aligned lines to be always visible at the right border (like MS)
14266         * TextBoxBase.cs:
14267           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
14268           - TextBoxBase_SizeChanged: recalculating canvas on size changes
14269           - CalculateScrollBars: Use ViewPort size instead of window size, to
14270             properly consider space occupied by the border and scrollbars 
14271             (Fixes #78661)
14272           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
14273             calculations; no longer leaves artifacts
14274           - CaretMoved: Adjusted window scrolling to match MS and fixed several
14275             calculation bugs (Still missing right/center align calculations)
14276
14277 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
14278
14279         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
14280           use of both scroll rect and clip rect, as they do the same.
14281
14282 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
14283
14284         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
14285           in the event handler (fixes #78912)
14286
14287 2006-07-31  Chris Toshok  <toshok@ximian.com>
14288
14289         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
14290         grid.ListManager.Count, since grid.ListManager might be null.
14291         This of course begs the question "why are we drawing rows for a
14292         grid with no list manager (and therefor no rows)?"  Fixes the
14293         crash in bug #78929.
14294
14295 2006-07-31  Chris Toshok  <toshok@ximian.com>
14296
14297         * RelatedPropertyManager.cs: Don't always chain up to the parent
14298         ctor.  instead, call SetDataSource if the parent's position is !=
14299         -1.  Fixes the crash in #78822.
14300
14301 2006-07-31  Chris Toshok  <toshok@ximian.com>
14302
14303         * DataGrid.cs (get_ListManager): use field instead of property
14304         accessors for datasource and datamember.
14305         (RowsCount): make internal again.
14306         (OnMouseDown): end edits before resizing columns/rows.
14307         (OnMouseUp): restart edits after resizing columns/rows.
14308
14309 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
14310
14311         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
14312           This fixes the situation where the last set cursor is displayed
14313           whenever the mouse is over scrollbars.
14314
14315 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14316
14317         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
14318         Document properties, as well as initial values.
14319
14320 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
14321
14322         * XplatUIWin32.cs (SetBorderStyle): Setting both border
14323           and ClientEdge results in a 3-pixel border, which is
14324           wrong.
14325
14326 2006-07-28  Jackson Harper  <jackson@ximian.com>
14327
14328         * TreeNodeCollection.cs: Fix the clear method.
14329         - Fix the Shrink also
14330
14331 2006-07-27  Jackson Harper  <jackson@ximian.com>
14332
14333         * TreeView.cs: Make sure the visible order is computed when we
14334         attempt to size the scrollbars (for trees that mess with the
14335         scrolling when they shouldn't.
14336         - Make sure to give the scrollbars valid values.
14337
14338 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
14339
14340         * XplatUIX11.cs: Move motion compression code to where it
14341           has less performance impact
14342
14343 2006-07-26  Jackson Harper  <jackson@ximian.com>
14344
14345         * UpDownBase.cs: When the control is selected make the child
14346         controls non selectable, so that a click on them won't do a
14347         focus/unfocus cycle.
14348         - Don't give focus to the text box when the spinner is selected.
14349         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
14350
14351 2006-07-26  Chris Toshok  <toshok@ximian.com>
14352
14353         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
14354         satisfied with this solution.  If the bitmaps are small, we should
14355         just cache them in the PrintPreviewDialog and draw them here.
14356         Also, the layout is broken for the 2-up and 3-up cases.
14357
14358         * Theme.cs: add PrintPReviewControlPaint.
14359
14360         * PrintPreviewDialog.cs: first pass implementation.
14361
14362         * PrintPreviewControl.cs: first pass implementation.  No
14363         scrollbars yet.
14364
14365         * PrintDialog.cs: only validate fields if that particular portion
14366         of the UI is enabled.  Also, set the document's controller to a
14367         PrintControllerWithStatusDialog wrapping the document's print
14368         controller.
14369
14370         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
14371         bring up a SaveFileDialog (i hope we don't want to match the
14372         behavior of the crappy windows file entry) and set the
14373         PrinterSettings.PrintFileName accordingly.
14374
14375 2006-07-26  Jackson Harper  <jackson@ximian.com>
14376
14377         * ContainerControl.cs: Add a field that disables auto selecting
14378         the next control in a container when the container is activated.
14379         * UpDownBase.cs: Don't select the text box when the up down is
14380         selected.
14381
14382 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
14383
14384         * XEventQueue.cs: Added methods for peeking (used for compression
14385           of successive events)
14386         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
14387           mouse move events (fixes #78732)
14388
14389 2006-07-25  Jackson Harper  <jackson@ximian.com>
14390
14391         * UpDownBase.cs: Use an internal class for the textbox so that we
14392         can control focus.  the updown control should always have focus,
14393         if either the text area or the buttons are clicked.
14394         - Send the key messages to the textbox, since it never actually
14395         has focus
14396         - Activate and decativate the textbox caret.
14397
14398 2006-07-24  Jackson Harper  <jackson@ximian.com>
14399
14400         * Control.cs: Use the directed select when selecting a control,
14401         this way the container controls override will get called and the
14402         whole ActiveControl chain will get triggered.  TODO: probably need
14403         to make sure this gets done everywhere instead of the old
14404         Select(Control).
14405         * ContainerControl.cs: Implement the directed Select method to
14406         find and activate the correct child control.    
14407         
14408 2006-07-22  Mike Kestner  <mkestner@novell.com>
14409
14410         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
14411         menu handling code so that clicks without a grab work too.
14412         [Fixes #78914]
14413
14414 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
14415
14416         * FileDialog.cs: Enable the BackButton when dirstack has one element.
14417           Added some small optimizations.
14418
14419 2006-07-21  Matt Hargett  <matt@use.net>
14420
14421         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
14422
14423 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
14424
14425         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
14426           tests pass and match MS in some strange border cases.
14427
14428 2006-07-21  Chris Toshok  <toshok@ximian.com>
14429
14430         * ThemeWin32Classic.cs: handle drawing of the relation links and
14431         parent row buttons.
14432
14433         * Theme.cs: change args to DataGridPaintParentRow.
14434
14435         * DataGrid.cs: Don't use controls for the relation links and
14436         parent buttons, so we have to handle all their interactions in
14437         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
14438         when we're navigating through child tables, so we can reinstate
14439         selection, expanded state, current cell, etc.
14440
14441 2006-07-20  Chris Toshok  <toshok@ximian.com>
14442
14443         * ToolBar.cs: When we redraw a button, for whatever reason,
14444         there's no reason to redraw the entire toolbar.  Also, don't call
14445         Control.Refresh from within Redraw, as it's much heavier than
14446         Invalidate (which is really what we want).
14447
14448 2006-07-20  Chris Toshok  <toshok@ximian.com>
14449
14450         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
14451         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
14452         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
14453         traces from within a debug IBindingList datasource
14454         (in mono/winforms/datagrid) for *days*, I've finally gotten things
14455         to work in a similar fashion.
14456
14457 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14458
14459         * ListBox.cs: Don't call Sort () when setting 
14460         the Sorted property to false (avoid an unnecessary sort).
14461
14462 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14463
14464         * ListControl.cs: DataSource should throw an ArgumentException
14465         instead of a normal exception when the argument is not of the 
14466         correct type.
14467
14468 2006-07-20  Mike Kestner  <mkestner@novell.com>
14469
14470         * Control.cs: add InternalPreProcessMessage to allow us to steal
14471         key events before MWF gets its paws on them.  Adapted from a
14472         suggestion by eno.
14473         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
14474         up/down/left/right navigation. Override the new internal control
14475         method to steal the events since they never make it to WndProc.
14476         * ToolBarButton.cs: don't worry about pushed when setting hilight
14477         since the drawing code prefers pushed to hilight. Invalidate on 
14478         Hilight changes. Fixes #78547 and #78525.
14479
14480 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
14481
14482         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
14483           the canvas size. Fixes #78868
14484
14485 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
14486
14487         * Splitter.cs: Track requested split position until first layout
14488           is performed. Fixes #78871
14489
14490 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
14491
14492         * Application.cs: Removed code that forces 1.x for the version
14493           number if the version started with 0. Not sure why that code was
14494           there and I couldn't find any bugs that indicated we needed it.
14495           Fixes #78869
14496
14497 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
14498
14499         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
14500           ResetDefaults(), just write some output to the console until it's
14501           implemented. Fixes bug #78907 for now. Eliminated two warnings.
14502
14503 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
14504
14505         * PropertyGridView.cs: set StartPosition of drop down forms
14506         so they appear in correct initial spot.  Fixes #78190.
14507
14508 2006-07-19  Mike Kestner  <mkestner@novell.com>
14509
14510         * ThemeWin32Classic.cs: use parent background color when drawing
14511         flat toolbars.  Restructure the conditionals to make sure non-flat
14512         non-Divider toolbars are filled too.  Fixes #78837.
14513
14514 2006-07-19  Mike Kestner  <mkestner@novell.com>
14515
14516         * ListBox.cs: Sort on collection changes even if the handle
14517         isn't created yet.  Fixes #78813.
14518
14519 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14520
14521         * ListControl.cs: DisplayMember should never be null,
14522         and now we assign String.Empty when null is passed to it (this
14523         is the .Net way).
14524
14525 2006-07-17  Mike Kestner  <mkestner@novell.com>
14526
14527         * ListViewItem.cs: restructure Font and subitem Font handling 
14528         to hold a specific font and refer back to owner on null.
14529         Fixes #78761.
14530
14531 2006-07-17  Mike Kestner  <mkestner@novell.com>
14532
14533         * ToolBar.cs: bandaid for side-effect of previous patch which was
14534         discarding explicit heights for non-AutoSize toolbars.  Need to
14535         extend my format tester to deal with AutoSize=false. Fixes #78864.
14536
14537 2006-07-15  Jackson Harper  <jackson@ximian.com>
14538
14539         * LabelEditTextBox.cs:
14540         * TreeView.cs: Use a new LabelEdit class for node editing, this
14541         class automatically 'closes' itself when it gets the enter key or
14542         loses focus.
14543         - Use the client rectangle when setting the trees scrollbars, so
14544         border style is taken into account.
14545         
14546 2006-07-14  Jackson Harper  <jackson@ximian.com>
14547
14548         * TreeNode.cs:
14549         * TreeView.cs: Make the editing work similar to MSs, firing the
14550         events correctly and ending edits correctly.
14551
14552 2006-07-14  Mike Kestner  <mkestner@novell.com>
14553
14554         * ToolBarButton.cs:
14555         * ToolBar.cs: layout restructuring and redraw enhancements to support
14556         formatting changes gracefully, like setting TextAlign, ImageList, 
14557         ButtonSize, and Appearance.  Handles explicit button sizing quirks
14558         of the MS controls.  Things like flat toolbars ignoring button size
14559         but becoming constant sized at the largest button's size.  Normal
14560         toolbars with an image set cannot be shrunk smaller than the image,
14561         but text can be clipped/ignored.
14562         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
14563         is zero.  Seems like DrawString should be smart enough to not put
14564         anything on screen though. Also trim labels and ellipsize at the char
14565         boundary, not word.
14566         Fixes #78711 and #78483.
14567
14568 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
14569
14570         * FolderBrowserDialog.cs: Disable "New Folder" button and
14571           "New Folder" contextmenu menuitem if a folder like "My Computer"
14572           is selected.
14573
14574 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
14575
14576         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
14577         * FolderBrowserDialog.cs:
14578           - Use MWFConfig to store and read size and position settings
14579           - Added code to create a new folder (button or context menu).
14580             Use TreeView labeledit to change the name of the new folder.
14581
14582 2006-07-14  Jackson Harper  <jackson@ximian.com>
14583
14584         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
14585         when the tree is scrolled we end editing.
14586
14587 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
14588
14589         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
14590           Down arrows
14591
14592 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
14593
14594         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
14595         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
14596         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
14597         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
14598         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
14599         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
14600         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
14601         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
14602         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
14603         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
14604         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
14605         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
14606         ListViewItemSelectionChangedEventHandler.cs,
14607         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
14608         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
14609         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
14610         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
14611         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
14612         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
14613         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
14614         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
14615         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
14616         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
14617         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
14618         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
14619         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
14620         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
14621         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
14622         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
14623         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
14624         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
14625         WebBrowserNavigatingEventHandler.cs, 
14626         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
14627
14628 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
14629
14630         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
14631         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
14632         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
14633         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
14634         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
14635         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
14636         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
14637         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
14638         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
14639         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
14640         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
14641         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
14642         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
14643         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
14644         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
14645         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
14646         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
14647         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
14648         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
14649         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
14650         ListViewItemStates.cs, MaskFormat.cs: Added
14651
14652 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
14653
14654         * PropertyGridView.cs: Fix keyboard navigation of drop down.
14655         Patch from eno for bug 78558.
14656         
14657 2006-07-13  Jackson Harper  <jackson@ximian.com>
14658
14659         * TreeView.cs: When an edit is finished make sure that the
14660         selected node is visible.
14661         - When setting the top/bottom use the scrollbars is_visible, so
14662         everything will be set correctly even if the tree isn't visible
14663         yet.
14664
14665 2006-07-13  Jackson Harper  <jackson@ximian.com>
14666
14667         * ComboBox.cs: Revert the item->index part of my previous patch.
14668         * TreeView.cs: Use LostFocus instead of Leave for detecting when
14669         the edit box has lost focus (duh).
14670         - Just make the edit box not visible when we get return, that will
14671         take the focus, which will call EndEdit
14672         * TreeNode.cs When we start editing, notify the treeview.
14673
14674 2006-07-12  Jackson Harper  <jackson@ximian.com>
14675
14676         * ComboBox.cs: Clear out old items before setting the item list.
14677         This prevents databound controls from having their items added
14678         twice.
14679         - Switch the combobox to use indices whereever possible instead of
14680         using Item's.  This allows usto navigate through lists that have
14681         more then one item with the same string value (ie a, b, b, a).
14682         - Scroll the listboxes scrollbar when a non visible item is
14683         highlighted
14684         - Allow keypress to cycle through all the possible values. For
14685         example if you have b1, b2, b3 and hold down the B key all the
14686         values will be cycled through.
14687         
14688 2006-07-12  Jackson Harper  <jackson@ximian.com>
14689
14690         * TextBoxBase.cs:
14691         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
14692         this using the internal methods.
14693         * Control.cs: Add OnGotFocusInternal.  A new method that allows
14694         controls to "override" OnGotFocus and change focus behavior if
14695         needed.
14696         - Same thing for LostFocus
14697         * ComboBox.cs: Pass off focus to the text control properly.
14698
14699 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
14700
14701         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
14702         * FolderBrowserDialog.cs: Almost a complete rewrite.
14703           - Better support for Environment.Specialfolders
14704           - Added support for MWFVFS
14705           - Made setting SelectedPath work
14706
14707 2006-07-12  Jackson Harper  <jackson@ximian.com>
14708
14709         * Control.cs: Optimze getting all the controls.
14710
14711 2006-07-11  Jackson Harper  <jackson@ximian.com>
14712
14713         * ContainerControl.cs: Override SETFOCUS in the container control,
14714         so that it is not selected on mouse click.
14715
14716 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
14717
14718         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
14719           Hopefully we will have a better way once all of focus is complete.
14720
14721 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
14722
14723         * ThemeWin32Classic.cs: Commented out some debug code and fixed
14724           a compile error with csc.
14725
14726 2006-07-11  Jackson Harper  <jackson@ximian.com>
14727
14728         * Control.cs: When hiding a control only select the next control
14729         if the current control was focused.
14730         - Don't handle enter/leave when setting/killing focus, this is
14731         done by the container control.
14732         - Remove is_selected, it's not needed anymore.
14733         - Add utility methods for selecting a child control, and for
14734         firing the Enter/Leave events.
14735         * ContainerControl.cs: When a control is activated fire the
14736         enter/leave events.
14737         - Don't wrap when processing the tab key, so that focus can be
14738         moved outside of the container.
14739         - Use the correct active control
14740
14741 2006-07-11  Jackson Harper  <jackson@ximian.com>
14742
14743         * ComboBox.cs: Remove some debug code that was blinding me.
14744         * UpDownBase.cs: These controls actually aren't implicit, they are
14745         visible to the user.
14746
14747 2006-07-10  Chris Toshok  <toshok@ximian.com>
14748
14749         * DataGrid.cs: move back to the is_adding boolean field.  god i
14750         hate this is_editing/is_adding/is_changing stuff.
14751
14752 2006-07-10  Chris Toshok  <toshok@ximian.com>
14753
14754         * DataGridTableStyle.cs: just check if the property type is bool.
14755         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
14756         Don't use CanRenderType.
14757
14758         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
14759         if our text == NullText.  Remove CanRenderType.
14760
14761         * DataGridBoolColumn.cs: nuke CanRenderType.
14762
14763         * DataGrid.cs: reenable some code to end the current edit inside
14764         of set_CurrentCell.  This fixes the other 1.1.16 regression.
14765         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
14766         Also, remove the visible_row_count arg from CalcRowHeaders, since
14767         we don't need to worry about the actual height of the area.
14768
14769 2006-07-10  Chris Toshok  <toshok@ximian.com>
14770
14771         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
14772         mode, just return.
14773
14774         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
14775         the real sense of the IsInEditOrNavigateMode property (true =
14776         navigate, false = edit).  Also, update OnKeyPress to reflect this.
14777
14778         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
14779         column style exists, we still need to set its property descriptor
14780         to match up with our list manager.
14781
14782 2006-07-10  Chris Toshok  <toshok@ximian.com>
14783
14784         * ThemeWin32Classic.cs: implement the new row/header painting
14785         approach.  The parent row painting will likely go away and
14786         replaced with label controls, but the rest seems to work ok (and
14787         efficiently).
14788
14789         * Theme.cs: change the way we draw datagrid rows.  we don't draw
14790         the row headers as a block now.  Instead we draw them in the
14791         normal draw-row loop.  Add some calls for drawing parent rows and
14792         relation rows.
14793
14794         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
14795         a default table style.  Set the defaults from ThemeEngine.Current,
14796         not SystemColors.  Fix lots of misc issues with property setters.
14797
14798         * DataGrid.cs: move loads of style information out of this class
14799         as it's being duplicated with DataGridTableStyle.  keep track of a
14800         special DataGridTableStyle for the properties we used to mirror
14801         here.  Switch all the style properties to access this table style
14802         instead of instance fields of this class.  Also add a internal
14803         class to represent parent rows (more needs to be stored here, like
14804         the selection state from the parent table, as well as the
14805         expansion state.)  Also, for datasources with relations, do the
14806         right thing for collapse/expand, and add support for the
14807         navigation/parent row buttons.
14808
14809         Lastly, fix the crash in the 1.1.16 build.
14810
14811         * GridTableStylesCollection.cs: make the explicit interface
14812         implementations call the class's methods as opposed to duplicating
14813         them.
14814
14815         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
14816         0 so the text doesn't jump around when we move the cursor.
14817
14818 2006-07-10  Jackson Harper  <jackson@ximian.com>
14819
14820         * TextBoxBase.cs:
14821         * ListBox.cs: Match MS's ToString (this makes debugging focus
14822         stuff infinitely easier).
14823
14824 2006-07-10  Jackson Harper  <jackson@ximian.com>
14825
14826         * Control.cs (SelectNextControl): When checking the control's
14827         parent use this instead of ctrl.parent so that null can be passed
14828         to SelectNextControl. (I have unit tests for this).
14829         - Remove unused var.
14830
14831 2006-07-10  Chris Toshok  <toshok@ximian.com>
14832
14833         * CurrencyManager.cs: correct one regression, the removal of the
14834         finalType field.  Also, add a MonoTODO on CanAddRows, implement
14835         Refresh() correctly, and fix some event emission in
14836         ListChangedHandler.
14837
14838 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
14839
14840         * FileDialog.cs: Don't use brackets for new folders if they exist
14841           under *nix. Instead use -(number of existing folders +1).
14842
14843 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
14844
14845         * FileDialog.cs:
14846           - Fixed really nasty bug #78771
14847           - Don't block the whole GUI when reading directories with a lot of
14848             entries. Use an other thread instead and call BeginInvoke to
14849             update the ListView in MWFFileView
14850
14851 2006-07-07  Chris Toshok  <toshok@ximian.com>
14852
14853         * Control.cs (Dispose): release any Capture when disposing.
14854
14855 2006-07-07  Chris Toshok  <toshok@ximian.com>
14856
14857         * LinkLabel.cs (Select): if we chain up to the parent, set
14858         focused_index to -1 so we'll search for the first available link
14859         the next time the user tabs into us.  Also, if the direction is
14860         backward and focused_index == -1, start the search from the last
14861         element.
14862
14863 2006-07-07  Chris Toshok  <toshok@ximian.com>
14864
14865         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
14866         is beyond the end of the text, don't do anything.
14867         (CreateLinkPieces): set our ControlStyles.Selectable based on
14868         whether or not we have any links.
14869         (Link.Invalidate): use a loop instead of foreach.
14870         (Link.set_Start): null out owner.sorted_links so it'll be
14871         recreated by CreateLinkPieces.
14872
14873 2006-07-06  Chris Toshok  <toshok@ximian.com>
14874
14875         * LinkLabel.cs: revert the SetStyle change.
14876
14877 2006-07-06  Chris Toshok  <toshok@ximian.com>
14878
14879         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
14880         (OnEnableChanged): s/Refresh/Invalidate
14881         (OnGotFocus): if we have a focused index already, refocus it (so
14882         if we mouse out/in to the window it'll focus the right link).
14883         (OnKeyDown): move the tab handling out of here.
14884         (OnLostFocus): don't set focused_index to -1, so we can refocus it
14885         when we lose focus.
14886         (OnMouseDown): don't Capture here - Control handles it.  Also,
14887         focus the active link.
14888         (OnMouseUp): don't deal with Capture.
14889         (OnPaintBackgroundInternal): remove.
14890         (OnTextAlignChanged): CreateLinkPieces before calling the
14891         superclass's method.
14892         (OnTextChanged): call CreateLinkPieces before calling superclass's
14893         method.
14894         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
14895         move around.
14896         (Select): implement this, moving the selection between different
14897         links, and call parent.SelectNextControl if we don't have another
14898         link to focus in the given direction.
14899         (CreateLinkPieces): call Invalidate instead of Refresh.
14900         
14901 2006-07-06  Chris Toshok  <toshok@ximian.com>
14902
14903         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
14904         new LinkLabel internals.
14905
14906         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
14907         over pieces looking for active/focused/etc links.  also, deal with
14908         runs of text (and links) with embedded \n's in them, and use
14909         MeasureCharacterRanges instead of MeasureString to figure out the
14910         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
14911         two-step.
14912
14913 2006-07-04  Jackson Harper  <jackson@ximian.com>
14914
14915         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
14916         XKB or key auto repeat, do it manually.  Without key auto repeat,
14917         when a key is held down we get key press, key release, key press,
14918         key release, ... with auto repeat we get key press, key press, key
14919         press ..., and then a release when the key is actually released.
14920
14921 2006-07-03  Jackson Harper  <jackson@ximian.com>
14922
14923         * TabControl.cs:
14924         * ThemeWin32Classic.cs: Tabs do not obey normal background color
14925         rules, they are always control color regardless of the background
14926         color.
14927
14928 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
14929
14930         * FileDialog.cs: Added internal class MWFConfig.
14931           Removed Registry support and replaced it with support for the new
14932           MWFConfig class. See MWFConfig comments for more information.
14933
14934 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
14935
14936         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
14937           rectangle. Added some patches from eno from bug #78490 and fixed
14938           the arrow position for small up and down CPDrawScrollButtons.
14939
14940 2006-06-30  Jackson Harper  <jackson@ximian.com>
14941
14942         * InternalWindowManager.cs: Remove some debug code.
14943         * Form.cs: When an MdiParent is set to null, the window is
14944         "detatched" and becomes a normal window.
14945         * MdiClient.cs: Don't bring the new child form to the front until
14946         it is activated (setting it as active does this), this makes the
14947         previously active forms titlebar get redrawn as inactive.
14948
14949 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
14950
14951         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
14952           with later controls
14953
14954 2006-06-29  Mike Kestner  <mkestner@novell.com>
14955
14956         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
14957         arrow in keynav state.  Fixes #78682.
14958
14959 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
14960
14961         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
14962           order (fixes #78393)
14963
14964 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
14965
14966         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
14967           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
14968           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
14969           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
14970           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
14971           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
14972           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
14973           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
14974           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
14975           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
14976           enumerations (FlagsAttribute, SerializableAttribute, added/removed
14977           values)
14978
14979 2006-06-28  Mike Kestner  <mkestner@novell.com>
14980
14981         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
14982
14983 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
14984
14985         * PropertyGrid.cs,
14986           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
14987           item lines from other area (It also makes BackColor consistent and
14988           compatible with .NET). Fixed bug #78564.
14989
14990 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
14991
14992         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
14993         Patch from Eno for #78555.
14994
14995 2006-06-27  Chris Toshok  <toshok@ximian.com>
14996
14997         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
14998
14999         * DataGridColumnStyle.cs: same.
15000
15001         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
15002         
15003         * DataGridDrawingLogic.cs: nuke.
15004
15005 2006-06-27  Chris Toshok  <toshok@ximian.com>
15006
15007         * DataGridTableStyle.cs: clean up the constructors, and build the
15008         list of child relations for this table.  I have no idea if this is
15009         where we should be doing it (it probably isn't), but since we're
15010         already iterating over the properties..
15011
15012         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
15013         struct and array for keeping track of row information, similar to
15014         what's shown in a hack on
15015         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
15016
15017         * Theme.cs: be consistent about the naming of DataGrid methods,
15018         prefering ColumnWidths and RowHeights over columnsWidths and
15019         RowsHeights.
15020
15021         * ThemeWin32Classic.cs: same, and also add support for variable
15022         sized rows (and the +/- expansion icons for related rows).
15023
15024 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
15025
15026         * TextBoxBase.cs: Applied Eno's patch from #78660
15027
15028 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
15029
15030         * Form.cs (ScaleCore): We don't want to scale our form if it's
15031           state is minimized or maximized, but we still need to scale our
15032           child windows. Also, added try/finally block to ensure layout
15033           gets reset (Fixes #78697)
15034
15035 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
15036
15037         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
15038
15039 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
15040
15041         * Form.cs: Fixed c+p error and added check to resize form if minimum
15042           size is bigger than current size (Fixes #78709)
15043
15044 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
15045
15046         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
15047
15048 2006-06-26  Mike Kestner  <mkestner@novell.com>
15049
15050         * ComboBox.cs: only do Keypress handling in the combo when there  
15051         are items in the collection. Fixes #78710.
15052
15053 2006-06-26  Chris Toshok  <toshok@ximian.com>
15054
15055         * Binding.cs: make this work bi-directionally.  also, clear up
15056         other mixups between Push/Pull Data (e.g. we're supposed to pull
15057         data when validating).
15058
15059         * BindingManagerBase.cs: trim some fully qualified collection
15060         types.
15061
15062         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
15063
15064 2006-06-23  Chris Toshok  <toshok@ximian.com>
15065
15066         * PropertyManager.cs: It appears (according to the unit tests)
15067         that PropertyManager doesn't use
15068         PropertyDescriptor.AddValueChanged to track propery value changes
15069         in its datasource, but uses the same scheme as Binding, where it
15070         looks for a <Property>Changed event and binds to it.
15071
15072         Also, according to the docs, IsSuspended always returns false for
15073         a property manager with a non-null datasource.
15074
15075 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
15076
15077         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
15078           need to update the actual DialogResult. (Fixes #78613)
15079
15080 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
15081
15082         * Form.cs (ShowDialog): Release any captures before running the
15083           new message pump (fixes #78680)
15084
15085 2006-06-22  Mike Kestner  <mkestner@novell.com>
15086
15087         * ListView.cs: Layout column widths properly in details mode even 
15088         if HeaderStyle.None is set.  Fixes #78691.
15089
15090 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
15091
15092         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
15093
15094 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
15095
15096         * Control.cs (ContainsFocus): Using new driver method to get focused
15097           window, instead of trying to use internal tracking var, which can
15098           recursion issues (Fixes #78685)
15099         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
15100           XplatUIWin32.cs: Added GetFocus method to return focused window
15101
15102 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15103
15104         * ColorDialog.cs: when the mouse button is pressed inside the color
15105         matrix, don't let the cursor move out of it until the button is
15106         released, which is the behavior on windows. Changed 'colours' by
15107         'colors' to use the same word consistently.
15108
15109 2006-06-21  Chris Toshok  <toshok@ximian.com>
15110
15111         * DataGrid.cs: add in some basic navigation stuff (navigating to a
15112         child relation and back, using a stack).  Also, remove
15113         GetDataSource and the code that calls it - it's not needed.  Also,
15114         track CurrencyManager.ListName's removal.
15115
15116 2006-06-21  Chris Toshok  <toshok@ximian.com>
15117
15118         * CurrencyManager.cs: push some of the original type checking from
15119         BindingContext.CreateBindingManager to here, and remove some of
15120         the finalType stuff.  Need more tests to make sure I've got the
15121         ListName part right, and we might need more in SetDataSource.
15122
15123         * PropertyManager.cs: add a ctor that takes just the datasource,
15124         and no property name.  Make SetDataSource work with a null
15125         property_name, and make Current return the data_source if the
15126         property descriptor is null.  this makes 'string foo = "hi";
15127         BindingContext[foo].Current' return "hi" as it should.
15128
15129         * RelatedCurrencyManager.cs: make this code more generic - there's
15130         no reason the parent manager has to be CurrencyManager, and
15131         there's no reason to pass the DataRelation.  It suffices to use a
15132         BindingManagerBase and PropetyDescriptor.
15133
15134         * RelatedPropertyManager.cs: make a similar change here.
15135         
15136         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
15137         flower I knew it could be.
15138
15139 2006-06-20  Chris Toshok  <toshok@ximian.com>
15140
15141         * PropertyManager.cs: the PropertyChangedHandler is invoked when
15142         data in the source has changed and we need to update the control,
15143         so s/PullData/PushData.
15144
15145         * CurrencyManager.cs: Refresh is meant to update the control from
15146         data in the datasource.  So, s/PullData/PushData.
15147
15148         * BindingContext.cs: add more ugliness (we weren't handling the
15149         case where data_source = DataTable and data_member = column_name).
15150
15151         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
15152         from the perspective of the datasource.  PullData pulls from the
15153         control, PushData pushes to the control.
15154
15155 2006-06-20  Chris Toshok  <toshok@ximian.com>
15156
15157         * BindingContext.cs: rewrite the CreateBindingManager code to
15158         handle navigation paths more or less properly.  This could
15159         definitely stand some more work, in particular to push the
15160         recursion up to the toplevel.  But that relies on fixes in other
15161         places (System.Data comes to mind).
15162
15163         Also, move to a flat hashtable (and encode the twolevel nature of
15164         the dictionary into the hash key).  This lets us implement the
15165         IEnumerable.GetEnumerator method.
15166
15167         * RelatedCurrencyManager.cs: new class.  Update our view based on
15168         our relation and our parent CurrencyManager's position.
15169
15170         * CurrencyManager.cs: split out some logic from the ctor into
15171         SetView, so it can be called from the new RelatedCurrencyManager
15172         subclass.
15173
15174         * RelatedPropertyManager.cs: new class.  Update our datasource
15175         based on the position of our parent CurrencyManager.
15176
15177         * PropertyManager.cs: split out some logic from the ctor into
15178         SetDataSource, so it can be called from the new RelatedDataSource
15179         subclass.  Also, make the Current getter return the value
15180         of the PropertyDescriptor, not the data_source.
15181
15182         * Binding.cs: no need to duplicate the string splitting code here.
15183
15184 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
15185
15186         * Control.cs:
15187           - set_Enabled: OnEnabledChanged is not called if the inherited state 
15188             of the control is not altered, even though  we might be changing the
15189             internal state of the control (#78458)
15190           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
15191             OnEnabledChanged, to allow easy altering of any child window state
15192           - OnEnabledChanged: Added code to enable/disable driver window state
15193           - OnParentEnabledChanged: Instead of firing the event, call 
15194             OnEnabledChanged, which will fire the event and also a) set driver
15195             window state and pass the enabled state to any grandchildren (#78458)
15196
15197 2006-06-19  Jackson Harper  <jackson@ximian.com>
15198
15199         * InternalWindowManager.cs: We don't set the cursor explicitly
15200         thats done via the response to NCHITTESTs.
15201         - Don't need to adjust for titlebar heights anymore, the
15202         coordinates are coming in the correct coordinates now (see peters
15203         last patch).
15204
15205
15206 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
15207
15208         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
15209           being translated relative to whole window, instead of client window.
15210           That caused broken offsets on mouseclick (and caused gas for our
15211           InternalWindowManager)
15212
15213 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
15214
15215         * TextControl.cs:
15216           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
15217           - Undo(): Added replay of cursor move on DeleteChars action; added
15218             calling Undo() again if a recorded cursor move is invalid (to
15219             ensure that some action is performed on Undo)
15220         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
15221
15222 2006-06-16  Jackson Harper  <jackson@ximian.com>
15223
15224         * MdiClient.cs: Instead of just sizing maximized windows when
15225         there is a resize we also have to adjust the Y of minimized
15226         windows, so they stay pinned to the bottom of the mdi container.
15227         - Eliminate separate tracking of the active control, we can just
15228         get this from the controls collection.
15229         - Paint the decorations for the newly activated titlebar so we get
15230         a pretty blue bar.
15231         * InternalWindowManager.cs:
15232         * ThemeWin32Classic.cs: Minimized windows get all three buttons
15233         even if they are a tool window.
15234         
15235 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
15236
15237         * TextControl.cs (Undo): Handle non-existent cursor locations in the
15238           undo buffer, these can happen when text was deleted and the cursor
15239           was recorded first. Since we will also have a recorded cursor
15240           after the delete this is not an issue. (Fixes #78651)
15241
15242 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
15243
15244         * AccessibleObject.cs: Remove dependence on Control.is_selected;
15245           instead properly track control states internally (allows us to
15246           remove is_selected from Control)
15247
15248 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15249
15250         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
15251         whose width is not a multiple of 8.
15252
15253 2006-06-13  Jackson Harper  <jackson@ximian.com>
15254
15255         * MdiClient.cs:  Only maximize the next child if the current one
15256         is maximized.
15257
15258 2006-06-13  Chris Toshok  <toshok@ximian.com>
15259
15260         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
15261         modified.  Also, guard against grid or grid_drawing being null in
15262         Invalidate.
15263
15264         * DataGrid.cs: Reformat tons of getters/setters.  In the
15265         DataMember setter, just call SetNewDataSource instead of
15266         duplicating some of its functionality.  In SetNewDataSource, don't
15267         check ListManager for null, since the property getter creates the
15268         object if needed.
15269
15270         * DataGridTableStyle.cs: don't set TableStyle or call
15271         SetDataGridInternal on the column here, it's done in
15272         GridColumnStylesCollection.Add.
15273
15274         * GridColumnStylesCollection.cs: fix all the explicit interface
15275         implementations to just call our methods.  Nuke AddInternal() and
15276         move the body of it to Add().  Also, add a call to
15277         column.SetDataGridInternal to Add().
15278
15279         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
15280         base()+duplicate code.  Also, use the Format property instead of
15281         format to generate an Invalidate ala MS.  Lastly, create the
15282         textbox here, unconditionally.
15283         (set_Format): call Invalidate.
15284         (get_TextBox): no need to call EnsureTextBox.
15285         (Commit): remove the message box.
15286         (Edit) remove the call to EnsureTextBox.
15287         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
15288         (EnterNullValue): no need to check textbox for null.
15289         (HideEditBox): no need to check textbox for null.
15290         (SetDataGridInColumn): add the textbox to the grid's controls.
15291         (EnsureTextBox): nuke.
15292         
15293 2006-06-13  Jackson Harper  <jackson@ximian.com>
15294
15295         * MdiWindowManager.cs: Hook up to the maximized menus paint event
15296         and redraw the buttons when needed. Unhook when the window is
15297         unmaximized.
15298         * MainMenu.cs: Add an internal Paint event, the mdi window manager
15299         needs this so that it can redraw its buttons when the menu is
15300         repainted.
15301         * InternalWindowManager.cs:
15302         * Form.cs: The method order has changed for DrawMaximizedButtons,
15303         so that it can be a PaintEventHandler.
15304         
15305 2006-06-13  Jackson Harper  <jackson@ximian.com>
15306
15307         * MdiClient.cs: When we close a maximized mdi window, the next mdi
15308         window is activated and maximized, even if it wasn't before.
15309         - When  a new window is activated repaint the decorations of the
15310         old one, so that it no longer has the Active "look" (the blue
15311         titlebar).
15312         * InternalWindowManager.cs: Open up CreateButtons to base classes
15313         so they can recreate the buttons on state changes.
15314         - If a window is maximized give it all three buttons
15315         * MdiWindowManager.cs: Create the titlebar buttons when the state
15316         is changed, this is needed because a toolwindow will not have all
15317         three buttons until it is maximized.
15318
15319 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
15320
15321         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
15322           Fixed bug #78609.
15323
15324 2006-06-12  Jackson Harper  <jackson@ximian.com>
15325
15326         * KeysConverter.cs: Make sure we handle the Ctrl special case
15327         if its the only key.
15328         
15329 2006-06-12  Jackson Harper  <jackson@ximian.com>
15330
15331         * Theme.cs: Add a method to get the size of a managed window
15332         toolbar button.
15333         * InternalWindowManager.cs: Remove the ButtonSize property, this
15334         should be retrieved from the theme.
15335         * MdiWindowManager.cs: Get the button size from the theme
15336         * ThemeWin32Classic.cs: Make the method to get the managed window
15337         titlebar button size public.
15338         - Handle the different button sizes of maximized toolwindows
15339         (should match any maximized window).
15340         - Get the titlebar height from the theme, not the WM (which gets
15341         it from the theme).
15342
15343 2006-06-12  Jackson Harper  <jackson@ximian.com>
15344
15345         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
15346         event down to the mdi window manager.
15347         - Expose some extra stuff to base classes
15348         - Make sure to end the Capture on an NC Mouse up, so that we can
15349         get double clicks properly, and the sizing doens't stick.
15350         - When doing PointToClient contain it in the workable desktop
15351         area, this prevents windows from changing size when the cursor is
15352         pulled outside of the working area while sizing.
15353         * MdiWindowManager.cs: When we get a double click maximize the
15354         window.
15355         - Reset the cursor after handling mode changes.
15356
15357 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
15358
15359         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
15360           current desktop, instead of just assuming a 0, 0 origin. This
15361           is needed for our internal window manager, to know the top
15362           margin of the desktop
15363
15364 2006-06-12  Chris Toshok  <toshok@ximian.com>
15365
15366         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
15367         we need this to get rid of the selected background in the bool
15368         column.
15369         (CancelEditing): move the ConcedeFocus call to above the Abort
15370         call.  Also, set is_changing to false and invalidate the row
15371         header if we were changing before.
15372         (ProcessKeyPreviewInternal): remove, since noone outside this
15373         class calls it anymore.  Roll the code into ProcessKeyPreview.
15374         (EndEdit): remove the internal version.
15375         (InvalidateCurrentRowHeader): make private.
15376
15377         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
15378         Keys.Escape handling (and with it the last call to
15379         DataGrid.EndEdit from outside the class.)
15380
15381
15382 2006-06-12  Chris Toshok  <toshok@ximian.com>
15383
15384         * DataGridTextBox.cs (.ctor): isedit defaults to false.
15385         (OnKeyPress): set isedit to true.
15386         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
15387         already handled by the grid.
15388
15389         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
15390         right.  ugh.
15391         (set_DataSource): SetDataSource always returns true, so stop
15392         putting it in an if statement.
15393         (EndEdit): get rid of some {}'s
15394         (ProcessGridKey): return true in case Keys.Escape.
15395         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
15396         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
15397         PositionChanged, stopped connecting to CurrentChanged.
15398         (GetDataSource): simplify this a bunch.
15399         (SetDataSource): change return type from bool to void.
15400         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
15401         to this, and make sure we don't set ListManager.Position inside
15402         set_CurrentCell.
15403         (OnListManagerItemChanged): if we're passed an actual index,
15404         redraw that row.
15405
15406         * CurrencyManager.cs (set_Position): don't call PullData here.
15407
15408 2006-06-09  Jackson Harper  <jackson@ximian.com>
15409
15410         * TreeNode.cs:  Recalculate the visible order before doing the
15411         Expand/Collapse Below calls, because those calls generate an
15412         expose.
15413         - Reduce calls to the TreeView property, which is mildly expensive
15414         by using a local var.
15415         * Form.cs: Layout the MDI child windows when creating the parent
15416         form.
15417         - Don't use the internal constructor anymore
15418         * MdiClient.cs: use the parent form width/height (if available)
15419         when laying out the child windows, we do this because the
15420         mdiclient isn't docked yet when the initial layout is done.
15421         - Don't need an internal constructor anymore.
15422
15423 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15424
15425         * FileDialog.cs: handle access errors when trying to create a folder
15426         or changing to a directory. No need to initialize out parameters.
15427
15428 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
15429
15430         * FileDialog.cs: Append a number when creating a new folder if the
15431           folder already exists (use parenthesis instead of square brackets)
15432
15433 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
15434
15435         * FileDialog.cs:
15436           - Disabled registry support for windows and added better registry
15437             error checking for other systems (need to investigate why it
15438             works perfectly on my system)
15439           - If a folder already exist show an error MessageBox instead of
15440             trying to create an indexed name.
15441           - Fixed a non intentional typo.
15442
15443 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15444
15445         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
15446
15447 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
15448
15449         * FileDialog.cs: When creating a new folder don't crash if the
15450           folder already exists.
15451
15452 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
15453
15454         * FileDialog.cs: Allmost a complete rewrite.
15455           - added a "virtual" file system that handles the differences
15456             between unix and windows file systems (especially the directory
15457             structure). Moved most of the directory and file handling code
15458             into the vfs.
15459             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
15460             UnixFileSystem and FSEntry.
15461           - Recently used folder/directory, size, location and used file names
15462             (file name ComboBox) are now stored in the registry and get read
15463             before the dialog shows up (fixes part 6 of bug #78446).
15464           - Creation of new folders/directories is now possible (context menu
15465             or ToolBar). Added TextEntryDialog for this that fills in the gap
15466             until ListView.LabelEdit works.
15467           - Fixed cursor handling (bug #78527) and focus handling for
15468             PopupButtonPanel
15469           - Various "Search in" ComboBox enhancements. The content of the
15470             dropdown listbox now almost matches ms.
15471           - Changed the behaviour when the user switches to SpecialFolder
15472             Recent to show the ListView in View.Details.
15473           - Beside using the ToolBar to change the View property of the
15474             file ListView it is now possible to use the context menu too.
15475
15476 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
15477
15478         * ComboBox.cs: Don't create a new ObjectCollection when an item
15479           gets inserted. Just insert the item in the existing object_items
15480           ArrayList.
15481
15482 2006-06-08  Jackson Harper  <jackson@ximian.com>
15483
15484         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
15485         that the treeview and root node checks are done also, this fixes a
15486         regression i caused in the unit tests.
15487
15488 2006-06-07  Wade Berrier <wberrier@novell.com> 
15489
15490         * RichTextBox.cs: More ISO8859-1 -> unicode
15491
15492 2006-06-07  Mike Kestner  <mkestner@novell.com>
15493
15494         * ComboBox.cs : use items to hold highlight/selection so that
15495         collection insertions don't require synchronization.
15496
15497 2006-06-07  Jackson Harper  <jackson@ximian.com>
15498
15499         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
15500         routine.  We now always keep the sized edge at the cursor instead
15501         of computing movement and adjusting rects.  There is one buglet
15502         with this method though when the cursor is moved over area that
15503         the window can not expand too (such as the toolbars on the desktop).
15504
15505 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15506
15507         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
15508         here. Fixes crash on startup in AlbumSurfer.
15509
15510 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
15511
15512         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
15513           values
15514
15515 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15516
15517         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
15518         statement to avoid calling XNextEvent which will block if another thread
15519         took the event that we were expecting. Fixes bug #78605.
15520
15521 2006-06-07  Mike Kestner  <mkestner@novell.com>
15522
15523         * ListView.cs : isolated checkbox clicking from the selection logic.
15524         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
15525
15526 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15527
15528         * Form.cs: Check that the value passed to Form.DialogResult
15529         is a valid enum value.
15530
15531 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15532
15533         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
15534         Computer'. Clicking it in the network view goes to 'My Computer'.
15535         Added CIFS filesystem type. Display the mount point of filesystems.
15536         Avoid duplicate mount points (happens for me with CIFS);
15537
15538 2006-06-06  Jackson Harper  <jackson@ximian.com>
15539
15540         * InternalWindowManager.cs: Draw the maximized windows buttons
15541         when resizing.
15542
15543 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15544
15545         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
15546         all other dialogs. Fixes bug #78585.
15547
15548 2006-06-06  Mike Kestner  <mkestner@novell.com>
15549
15550         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
15551         Only invalidate checkbox on checkstate changes to avoid flicker.
15552         * ListBox.cs : avoid unselect/select when clicking selected item.
15553         avoid reselection flicker for already multiselected items.
15554         Fixes #78382.
15555
15556 2006-06-06  Jackson Harper  <jackson@ximian.com>
15557
15558         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
15559         the parent form so that the menu is removed if needed.
15560
15561 2006-06-06  Mike Kestner  <mkestner@novell.com>
15562
15563         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
15564         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
15565
15566 2006-06-06  Mike Kestner  <mkestner@novell.com>
15567
15568         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
15569
15570
15571 2006-06-06  Jackson Harper  <jackson@ximian.com>
15572
15573         * Control.cs: Use the property (instead of the field) to get the
15574         default cursor so it is instantiated correctly.
15575         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
15576         resizes so we need to manually repaint the window decorations here.
15577         - Set the titlebar button locations as soon as they are created,
15578         otherwise they are not set correctly on win32.
15579         
15580 2006-06-06  Chris Toshok  <toshok@ximian.com>
15581
15582         * CurrencyManager.cs (set_Position): call PullData before
15583         OnCurrentChanged.
15584         (AddNew): after calling IBindingList.AddNew, update our
15585         listposition, and call OnCurrentChanged/OnPositionChanged (without
15586         calling PullData).
15587         (OnCurrentChanged): remove the call to PullData from here.
15588         (OnItemChanged): remove the call to PushData from here.
15589         (OnPositionChanged): change the test from == null to != null to
15590         match the other methods.
15591         (ListChangedHandler): the grossest part of the patch.  Implement
15592         this such that it passes the unit tests in CurrencyManagerTest and
15593         the output more or less matches that of MS's implementation.
15594  
15595 2006-06-06  Mike Kestner  <mkestner@novell.com>
15596
15597         * ListView.cs : only update check state on single click.
15598         * ThemeWin32Classic.cs : fix focus drawing for details view without
15599         fullrowselect.  Fixes #78454.
15600         * XplatUIX11.cs : fix for double click emission.
15601
15602 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
15603
15604         * PropertyGridView.cs : Applied Atsushi's patch to fix
15605         font dialog bug  (#78197).
15606
15607 2006-06-05  Jackson Harper  <jackson@ximian.com>
15608
15609         * TreeNode.cs: Compute the next node for expanding/collapsing
15610         correctly. We now factor in nodes without a NextNode
15611         correctly. (Fixes somes cases in nunit-gui).
15612         * InternalWindowManager.cs: Set the bounds when updating the
15613         virtual position of a tool window.
15614         
15615 2006-06-05  Chris Toshok  <toshok@ximian.com>
15616
15617         * DataGrid.cs: rename cached_currencymgr to list_manager.
15618         (set_CurrentCell): move SetCurrentCell code here, and clean it up
15619         some.
15620         (CurrentRow, CurrentColumn): single accessors so we can make the
15621         cursor movement code a lot easier to understand.
15622         (CurrentRowIndex): implement this in terms of CurrentRow.
15623         (BeginEdit): clean this up a bit.
15624         (CancelEditing): sort out the is_editing/is_changing/is_adding
15625         stuff a little.
15626         (EndEdit): minor changes.
15627         (OnKeyDown): add a comment about a (most likely) unnecessary
15628         check.
15629         (OnMouseDown): cancel editing when we click on a row header.  And
15630         use the CurrentRow setter, not CurrentCell.
15631         (ProcessDialogKey): directly call ProcessGridKey.
15632         (UpdateSelectionAfterCursorMove): factor out this common block of
15633         code (it's used everywhere that we move the cursor by updating row
15634         or column).
15635         (ProcessGridKey): pretty substantial overhaul.  Use the
15636         CurrentRow/CurrentColumn properties to make the code a lot more
15637         readable.  Only use the CurrentCell property when we have to
15638         modify both row and column at once.  Tab behavior is still broken,
15639         and Delete is untested.
15640         (Select): if we have no selected rows, set selection_start to
15641         @row.
15642         (EditCurrentCell): rename EditCell this.  It was only ever invoked
15643         with CurrentCell as the arg, so drop the arg and rename it.
15644
15645         * DataGridColumnStyle.cs: clean up the constructors a little, and
15646         drop CommonConstructor().
15647
15648         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
15649         actually get notified when the user hits it.
15650         (ProcessKeyMessage): *substantially* simplify this method.
15651         There's no reason (that I can see) for the textbox to be making
15652         calls into the datagrid at all.  Remove all of them but the ones
15653         for Enter handling.  those will take some more work.
15654
15655         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
15656         calling HideEditBox.
15657         (HideEditBox): if we have an active textbox, render it invisible
15658         without causing a re-layout of the datagrid.
15659
15660 2006-06-05  Mike Kestner  <mkestner@novell.com>
15661
15662         * ListView.cs : fix NRE crasher when focuseditem is cleared by
15663         collection changes by resetting it to Items[0].  Fixes #78587.
15664
15665 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15666
15667         * MessageBox.cs: if the height of the text is larger than the icon_size,
15668         use that. Fixes bug #78575.
15669
15670 2006-06-05  Jackson Harper  <jackson@ximian.com>
15671
15672         * TreeView.cs: Fix line drawing when scrolling.  To do this each
15673         node is basically responsible for drawing its entire horizontal
15674         area.  When drawing a node it draws its parent node lines if
15675         needed.
15676         - Adjust the clip area to the viewport rectangle
15677         - Fix Left/Right key handling to match MS. (It expand/collapses
15678         and moves to parents/first child but does not move selection to
15679         sibling nodes).
15680         - Fix SetTop to work with new bound calculation code
15681         - When scrollbars are no longer needed we need to reset scrolling
15682         vars and recalculate the visible order so the redraw is correct
15683         * TreeNode.cs: We can't expand/collapse nodes with no children.
15684
15685 2006-06-03  John Luke  <john.luke@gmail.com> 
15686
15687         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
15688         so the colors work without dev packages
15689         
15690 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
15691
15692         * Control.cs 
15693           - Select: Implemented to just use activate. Seems to match MS 
15694             behaviour closest. Documented to only do actual control walking 
15695             based on it's parameters if in a container control so I moved 
15696             the code there.
15697           - Removed selection check logic from our internal Select() method
15698         * ContainerControl.cs:
15699           - Select: Moved selection logic from Control here, since MS documents
15700             that containers obey the bool arguments. No longer calling base
15701
15702 2006-06-02  Jackson Harper  <jackson@ximian.com>
15703
15704         * TreeView.cs: If the selected node isn't changed when we get
15705         focus update the previously selected node so that we see the
15706         selection box.
15707
15708 2006-06-02  Mike Kestner  <mkestner@novell.com>
15709
15710         * ComboBox.cs: restructure grab and general mouse event handling.
15711         Make the composite control raise mouse events like it was a single
15712         control for leaves/enters/motion/up/down events.  fix dropdown list
15713         coordinate mangling and refactor it into the scrollbar subclass to
15714         reduce code duplication.  Fixes #78282 #78361 and #78457.
15715
15716 2006-06-02  Mike Kestner  <mkestner@novell.com>
15717
15718         * ScrollBar.cs: remove Capture setting/clearing, as it happens
15719         automatically in the Control.WndProc.
15720
15721 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15722
15723         * FileDialog.cs: fix crash when running SharpChess, which sets the
15724         FilterIndex to 2 with only one Filter.
15725
15726 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15727
15728         * ToolBar.cs: add SizeSpecified property.
15729         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
15730         try to figure out our real size, otherwise fallback to what the
15731         container says.
15732
15733 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
15734
15735         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
15736         * Control.cs (WndProc): MS always calls the DefWndProc to pass
15737           up the event
15738
15739 2006-06-01  Mike Kestner  <mkestner@novell.com>
15740
15741         * ListView.cs: revamp the focus management in ListView.  It still
15742         causes churn of LostFocus/GotFocus emissions on clicks, but it's
15743         better than not handling focus at all.  Will revisit when pdb feels
15744         the general focus handling is solid.  Fixes #78526.
15745
15746 2006-06-01  Jackson Harper  <jackson@ximian.com>
15747
15748         * TreeView.cs: Set the default border style in the constructor.
15749         - Move painting to use OnPaintInternal instead of capturing
15750         WM_PAINT, this is the correct way of doing things
15751         - UpdateBelow shouldn't invalidate the scrollbar area
15752         - Cap the top on update below in case the node was above the top
15753         of the viewport rectangle.
15754         - ExpandBelow and Collapse below need to obey Begin/End Update.
15755         * TreeNode.cs: Make is_expanded internal so the treenode
15756         collection can change it without firing the whole event chain.
15757         * TreeNodeCollection.cs: When clearing all the child nodes make
15758         sure to recalc the visible order.
15759         - Improve algo for remove the top node
15760
15761 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
15762
15763         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
15764           SendMessage directly calling window procedures, which in turn might
15765           call SetFocus()
15766
15767 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
15768
15769         * Control.cs: Don't handle WM_SETFOCUS if the same window already
15770           has focus (works around X11 sending a FocusIn after our SetFocus)
15771         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
15772
15773 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
15774
15775         * Mime.cs: Fix for the NET_2_0 build.
15776           NameValueCollection needs StringComparer now.
15777
15778 2006-05-31  Chris Toshok  <toshok@ximian.com>
15779
15780         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
15781         return (via an out parameter) the starting X of the column.
15782         (UpdateVisibleColumn): track change to FromPixelToColumn.
15783         (HitTest): add a ColumnResize case here.
15784         (DrawResizeLine): new function, probably poorly named.
15785
15786         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
15787         only need to keep one reference.
15788         (set_ListManager): same.
15789         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
15790         Also, add support for HitTestType.ColumnResize.
15791         (OnMouseMove): add column resize behavior here, and change the
15792         cursor to the correct one as we move around the datagrid.
15793         (OnMouseUp): terminate the column resize if we're resizing.
15794         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
15795         for the current cell.
15796         (ConnectListManagerEvents): use cached_currencymgr.
15797         (DisconnectListManagerEvents): fill this in, using
15798         cached_currencymgr.
15799         (SetCurrentCell): remove cached_currencymgr_events handling.
15800         (SetDataMember): only call DisconnectListManagerEvents if
15801         cached_currencymgr is != null.
15802         (SetDataSource): same.
15803         (OnListManagerCurrentChanged): cached_currencymgr_events ->
15804         cached_currencymgr.
15805
15806 2006-05-31  Jackson Harper  <jackson@ximian.com>
15807
15808         * BindingManagerBase.cs: Remove somedebug code that creeped into
15809         SVN.
15810         * TreeNode.cs: We get the indent level dynamically right now, so
15811         don't track it as a member.
15812         * TreeNodeCollection.cs: Make sure all nodes added to the list
15813         have parents, treeviews/topnodes setup properly.
15814         - Don't attempt to track indent level.
15815
15816 2006-05-30  Jackson Harper  <jackson@ximian.com>
15817
15818         * BindingContext.cs: Create the currency manager tables here.
15819         This allows us to more easily create null tables (when bad data
15820         members are used), and more easily create related currency
15821         managers.
15822         * CurrencyManager.cs: All the table creation stuff is done by the
15823         binding context now.
15824         - Current should throw an exception if listposition is -1.
15825         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
15826         been bound yet.
15827
15828 2006-05-30  Mike Kestner  <mkestner@novell.com>
15829
15830         * ListView.cs: allow reexpansion of zero-width column headers.
15831         Fixes #78528.
15832
15833 2006-05-28  Chris Toshok  <toshok@ximian.com>
15834
15835         * CurrencyManager.cs (get_Current): after the late binding
15836         listposition = -1 fix, we need to guard against it here and return
15837         null, otherwise we raise an exception (which is swallowed
15838         elsewhere, and breaks datagrid databinding.)
15839
15840 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
15841
15842         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
15843           than WM_SYSKEY, don't throw if get something unexpected (#78507)
15844
15845 2006-05-26  Jackson Harper  <jackson@ximian.com>
15846
15847         * ControlPaint.cs:
15848         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
15849         values, it's faster and it's all we care about (we don't care if
15850         the names aren't equal).
15851         * KeyboardLayouts.cs: Eliminate some dead code.
15852         - Lazy init things
15853         * X11Keyboard.cs: Lazy init keyboard detection.
15854         - Cleanup access modifiers a little.
15855
15856 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
15857
15858         * XplatUIX11.cs: Once again, attempting to get layout just right.
15859
15860 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
15861
15862         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
15863           the sizes of each link section, that will result in sizes that
15864           match DrawString's layout (Fixes #78391)
15865
15866 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
15867
15868         * FileDialog.cs: If AddExtension property is true autocomplete the
15869           extensions in SaveFileDialog correctly. Fixes bug #78453.
15870           Set MyNetwork and MyComputer to "C:\" for windows. This should
15871           fix part 8 of bug #78446 for now.
15872
15873 2006-05-26  Chris Toshok  <toshok@ximian.com>
15874
15875         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
15876         invalidate the current row header if we need to, but presumably
15877         we'll invalidate the row corrsponding to the bounds or
15878         editingControl.
15879         (GridHScrolled): switch back to this method, as it's part of the
15880         public api.  *sigh*.
15881         (GridVScrolled): same.
15882         (OnMouseWheel): hack up something that more or less works.  Call
15883         GridHScrolled/GridVScrolled directly, instead of duplicating much
15884         of their code here.
15885         (EnsureCellVisibility): reinstate a bunch of this code, since we
15886         can't just set the scrollbar Value and expect to do all the work
15887         in the ValueChanged handler.  Also, Call Update() after scrolling
15888         in one direction so the other XplatX11.ScrollWindow call has the
15889         proper stuff in the proper places.
15890         (EditCell): set is_editing to true before calling .Edit.
15891
15892         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
15893         don't bother comparing first.
15894         (OnKeyPress): call grid.ColumnStartedEditing before calling
15895         base.OnKeyPress.  this will set is_changing and invalidate the row
15896         header if necessary.
15897         (ProcessKeyMessage): for WM_CHAR messages, call
15898         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
15899         and WM_KEYDOWN.
15900         
15901         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
15902         it's done in the DataGrid.
15903         (NextState): call grid.ColumnStartedEditing, which takes care of
15904         invalidating the row header (and setting is_changing).
15905
15906         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
15907         here.  it's done in the DataGrid.
15908
15909 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15910
15911         * Control.cs: allow changing the cursor when the mouse position is
15912         out of bounds but Capture is set.
15913         * LinkLabel.cs: handle the case when the mouse button is pressed on the
15914         linklabel but released somewhere else.
15915
15916 2006-05-25  Jackson Harper  <jackson@ximian.com>
15917
15918         * TreeView.cs: When we get focus if there is no selected node make
15919         it the top node
15920         - Remove some uneeded setup code from Draw.
15921         * TreeNodeCollection.cs: If the tree doesn't have a top node when
15922         a new node is inserted make the new node the top.
15923         * XplatUIX11.cs:
15924         * Timer.cs: Use Utc time so that no local time zone stuff needs to
15925         be used (should be faster).
15926         
15927 2006-05-25  Chris Toshok  <toshok@ximian.com>
15928
15929         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
15930         problem with the last commit.
15931
15932 2006-05-25  Chris Toshok  <toshok@ximian.com>
15933
15934         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
15935         need the invalidate call here, while scrolling right-to-left via
15936         the left arrow key (i.e. moving the editing cell while scrolling).
15937
15938         * DataGrid.cs (.ctor): remove the initialization of
15939         ctrl_pressed/shift_pressed.  We no longer track them using key
15940         up/down handlers, but by using Control.ModifierKeys.  Also, switch
15941         to using ValueChanged handlers on the scrollbars instead of
15942         Scrolled event handlers.  This simplifies a bunch of the scrolling
15943         code.
15944         (GridHValueChanged): rename from GridHScrolled, and change it to
15945         work with the new event args.
15946         (GridVValueChanged): same.
15947         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
15948         (OnMouseWheel): actually scroll the datagrid.  Don't change the
15949         selected cell.
15950         (ProcessGridKey): correct all the keyboard navigation stuff I
15951         could find.  Ctrl up/down/left/right/home/end work now.
15952         (EnsureCellVisibility): correct method name spelling.  Also,
15953         simplify this a touch by not explicitly calling the
15954         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
15955         scrollbar value.
15956         (OnKeyUpDG): no need for this method now.
15957         
15958 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15959
15960         * LinkLabel.cs: display the OverrideCursor when hovering the label.
15961         Fixes bug #78392.
15962
15963 2006-05-25  Chris Toshok  <toshok@ximian.com>
15964
15965         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
15966         r61019.
15967
15968 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
15969
15970         * Application.cs: Moved setting of is_modal and closing to before
15971           we create the control, to allow the event handlers called as a
15972           result of creation affect closing. Also removed Gonzalo's previous
15973           change to setting DialogResult, the behaviour has been moved to 
15974           Form.ShowDialog()
15975         * Form.cs: 
15976           - ShowDialog(): Removed explicit creation of the form, let RunLoop
15977             handle it instead
15978           - ShowDialog(): If no dialog result is set, we need to return Cancel
15979           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
15980             the close is cancelled
15981
15982 2006-05-25  Jackson Harper  <jackson@ximian.com>
15983
15984         * StatusBar.cs: We only need to update the sizes of the other
15985         panels when we have auto size contents.  Also we are only updating
15986         the contents of the panel, not the borders, so compensate for the
15987         border width (TODO: get this width from the theme somehow).
15988         * TreeView.cs: Scrollable is true by default
15989         - Use invalidate instead of refresh where needed
15990         - Factor the scrollable value into scrollbar updating
15991         - Update the scrollbars if the Scrollable property is altered
15992         - Update the selected node if its ImageIndex is changed
15993         - Handle null nodes in UpdateNode (mainly so we don't have to
15994         check if selected is null when updating it
15995         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
15996         are factored into the visible count
15997         - Use VisibleCount for clarity in the code
15998         - When the font is changed we need to recurse through all the
15999         nodes and invalidate their sizes
16000         
16001 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16002
16003         * Application.cs: set the DialogResult to fixed when the main form is
16004         hidden or destroyed while being modal.
16005
16006 2006-05-25  Miguel de Icaza  <miguel@novell.com>
16007
16008         * Theme.cs: Use Tangoified messagebox icons. 
16009
16010         (GetSizedResourceImage): Also cope with width = 0 and do not
16011         trigger a warning in that case (0 means "give me your icon from
16012         the resouce, no special size needed).
16013
16014 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
16015
16016         * Application.cs: Leave runloop if the the main modal form is 
16017           hidden (fixes #78484)
16018
16019 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
16020
16021         * BindingContext.cs : reject null datasource in Contains() and
16022           Item[].
16023         * CurrencyManager.cs : check data_member validity when data_source
16024           is dataset. When it is late binding, the initial position is -1.
16025
16026 2006-05-24  Jackson Harper  <jackson@ximian.com>
16027
16028         * TreeNodeCollection.cs: Dont't recalculate the visible order on
16029         inserted nodes that aren't visible.  This changes the
16030         max_visible_order which confuses scrollbar settings.
16031         - Use the enumerator to get the prev node instead of duplicating
16032         code.
16033         * TreeView.cs: Use new method for setting scrollbar values
16034         - Don't set the bounds every time the scrollbar is updated
16035         - When updating below the root node use an invalidate instead of a
16036         refresh to prevent the child controls (scrollbars) from being
16037         refreshed. (UpdateBelow still needs to be reworked anyways).
16038         - Reenable SetBottom now that visible orders are set correctly,
16039         added some debug code incase we ever get bad values there again.
16040         - Set the scrollbar max to 2 less then the max value, this
16041         compensates for the max value being one above the node count, and
16042         for scrollbars adding one extra "notch".
16043         - When drawing image nodes if there is an imagelist we draw the
16044         first image in the list if the supplied image index is out of the
16045         image list's bounds.
16046         
16047 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
16048
16049         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
16050           we receive a size change from the WM (Fixes #78503)
16051
16052 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
16053
16054         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
16055           rectangle (Fixes #78501)
16056
16057 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
16058
16059         * ButtonBase.cs: 
16060           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
16061             as a bitfield.
16062           - Fixed MouseMove to no longer switch pressed state unless the left
16063             mouse button is pressed. Atsushi provided the original patch (#78485)
16064           
16065 2006-05-24  Jackson Harper  <jackson@ximian.com>
16066
16067         * ScrollBar.cs: New internal methods that allow us to change a
16068         couple values on the scrollbar (the most common case is maximum
16069         and large change) without getting multiple invalidates.
16070
16071 2006-05-24  Chris Toshok  <toshok@ximian.com>
16072
16073         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
16074         (Edit): save off the original state in oldState, and set
16075         grid.is_editing to true.
16076         (OnKeyDown): abort editing if escape is pressed.  also, call
16077         NextState if space is pressed.
16078         (OnMouseDown): call NextState.
16079         (NextState): factor out shared code from OnKeyDown and OnMouseDown
16080         here.  Also, only invalidate the row header once (on the initial
16081         is_changing switch) to save on redraws.
16082
16083 2006-05-24  Chris Toshok  <toshok@ximian.com>
16084
16085         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
16086         if the value in the cell is different than it was before.  This
16087         keeps us from triggering a layout when we move around a datarid
16088         with a highlighted cell.
16089         (Edit): suspend layout when creating/positining the text box, and
16090         resume passing false so we don't ever actually re-layout.
16091         (ReleaseHostedControl): same.
16092         (EnsureTextBox): reformat slightly, and set WordWrap to false.
16093
16094         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
16095         control-key sequences should go to the datagrid - remove that
16096         lock.  Also, modify the conditions under which we move between
16097         cells when moving the cursor within a cell, and remove the "this"
16098         and "base" from field accesses.  We weren't even consistent, given
16099         they all were in the base class.
16100
16101 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
16102
16103         * Binding.cs : (.ctor)
16104           An obvious NRE fix for BindingTest.CtorNullTest().
16105
16106 2006-05-23  Chris Toshok  <toshok@ximian.com>
16107
16108         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
16109         them between lines.  This fixes some quirks editing cells in the
16110         datagrid.
16111
16112 2006-05-23  Jackson Harper  <jackson@ximian.com>
16113
16114         * TreeView.cs: Use begin/end update when doing expand/collapse all
16115         so that we don't get flicker on the scrollbar.
16116
16117 2006-05-23  Jackson Harper  <jackson@ximian.com>
16118
16119         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
16120         treenode calculations to be independant of the painting code. To
16121         do this nodes track a visible order which is calculated by the
16122         treeview.
16123         - Call new methods for expanding/collapsing nodes.  These methods
16124         use scrollwindow so we don't have to update everything below the
16125         node.
16126         * TreeView.cs: Refactored drawing and scrolling code.  We don't
16127         need to update nodes when drawing anymore or calculate scrollbar
16128         stuff.
16129         - Added new methods for expanding/collapsing nodes. These methods
16130         use ScrollWindow so as to not have to redraw all the nodes below.
16131         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
16132         we add/remove nodes or sort.
16133         - Handle removing the selected and the top node properly.
16134
16135 2006-05-23  Chris Toshok  <toshok@ximian.com>
16136
16137         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
16138         maybe this should actually happen in the datagrid code?
16139         (EndEdit): no need to invalidate anything, given that
16140         ReleaseHostedControl causes the datagrid to relayout, which
16141         invalidates everything anyway.
16142
16143         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
16144         in SetCurrentCell).
16145         (set_SelectionBackColor): call InvalidateSelection instead of
16146         Refresh.
16147         (set_SelectionForeColor): same.
16148         (BeginEdit): Flesh this out a bit.
16149         (CancelEditing): only do any of this if we're editing/adding.
16150         (EndEdit): same.
16151         (OnMouseDown): there's no need to cancel editing here, it's done
16152         in SetCurrentCell.
16153         (SetCurrentCell): only invalidate the current row header if it's a
16154         different row than the new one.
16155         (ShiftSelection): fix this to work like MS does.
16156         (ResetSelection): factor out the invalidation of selected_rows to
16157         InvalidateSelection.
16158         (SetDataSource): cancel any editing that's going on.
16159
16160         * DataGridColumnStyle.cs
16161         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
16162         call the non-interface version.
16163
16164         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
16165         header rectangle with the clip rectangle so we don't redraw the
16166         entire header for just a small area.  Gets rid of the last flicker
16167         when horizontally scrolling.
16168         (DataGridPaintRow): same.
16169
16170 2006-05-23  Mike Kestner  <mkestner@novell.com>
16171
16172         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
16173         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
16174         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
16175         Critical bug report.
16176
16177 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
16178
16179         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
16180           and this fixes #78493
16181
16182 2006-05-23  Miguel de Icaza  <miguel@novell.com>
16183
16184         * Theme.cs (GetSizedResourceImage): Scale images if the proper
16185         size is not found.  
16186         
16187         * FileDialog.cs: Do not change the background for the side bar as
16188         it wont work nicely with the theme, and also reduces the artifacts
16189         in rendering the icons (which I want to fix too).
16190
16191         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
16192         resources, not resgen resources. 
16193
16194         (PlatformDefaultHandler): Pull images using the new API.
16195
16196 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
16197
16198         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
16199           a reference to the hwnd and will not remove it unless there are
16200           no pending exposures (fixes #78341)
16201         * XplatUI.cs: Improved debug
16202
16203 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
16204
16205         * MenuAPI.cs : don't handle OnClick event when it was not the left
16206           button. Fixed bug #78487.
16207
16208 2006-05-23  Mike Kestner  <mkestner@novell.com>
16209
16210         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
16211         prefer submenus to the top menu for item lookup, to avoid popping down
16212         top-row items.
16213
16214 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
16215
16216         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
16217           Graphics.FillRectangle as the visual results are really bad (even
16218           on win). We now draw perfect arrows (and perfect shadows when the
16219           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
16220           Pen.DashPattern to draw the dots of each line.
16221
16222 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
16223
16224         * FileDialog.cs: Update the filename combobox when navigating through
16225           the ListView with the cursor keys. Fixes part 7 of bug #78446.
16226
16227 2006-05-22  Mike Kestner  <mkestner@novell.com>
16228
16229         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
16230         Fixes #78463.
16231
16232 2006-05-22  Mike Kestner  <mkestner@novell.com>
16233
16234         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
16235         requests. Fix a misspelled parameter and a copy paste exception error
16236         in Select.
16237
16238 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
16239
16240         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
16241           to get the same width/height (5/13) on X11 as the default font has on
16242           win32. This means that our DefaultFont emSize is smaller than the 
16243           the MS SWF equivalent (even thought the width/height stays the same)
16244
16245 2006-05-20  Jackson Harper  <jackson@ximian.com>
16246
16247         * MdiClient.cs:
16248         * MdiWindowManager.cs:
16249         * InternalWindowManager.cs: Make sure to use the border width from
16250         the theme.
16251
16252 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
16253
16254         * PrintDialog.cs: Implements printer details
16255
16256 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
16257
16258         * FileDialog.cs: Added focus handling for PopupButtonPanel.
16259           Fixes part 1 and 2 of bug #78446
16260
16261 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
16262
16263         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
16264           instead of sticking to the first ever calculated value
16265
16266 2006-05-19  Mike Kestner  <mkestner@novell.com>
16267
16268         * ComboBox.cs: fix mouse motion selection to use MousePosition and
16269         PointToClient, since Capture is set. Fixes #78344.
16270
16271 2006-05-19  Mike Kestner  <mkestner@novell.com>
16272
16273         * ListView.cs: match MS behavior in Details view where items are not
16274         drawn if Columns.Count == 0. 
16275         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
16276         Use a separate pen to draw the check, since changing the width affects
16277         the box as well.  Fixes #78454.
16278
16279 2006-05-18  Miguel de Icaza  <miguel@novell.com>
16280
16281         * ListView.cs: ArgumentOutOfRangeException, single versions of the
16282         exception should throw the name of the invalid argument.
16283
16284         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
16285         there are no files listed. 
16286
16287 2006-05-18  Jackson Harper  <jackson@ximian.com>
16288
16289         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
16290         up.
16291
16292 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
16293
16294         * Control.cs: Brought back our old UpdateZOrder method as a private
16295           function and switched our calls from UpdateZOrder to the new one.
16296           This fixes the Paint.Net canvas disappearing bug.
16297
16298 2006-05-18  Jackson Harper  <jackson@ximian.com>
16299
16300         * Theme.cs:
16301         * ThemeWin32Classic.cs:
16302         * InternalWindowManager.cs: Move the drawing into the theme,
16303         expose everything the theme should need from the window manager.
16304
16305 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
16306
16307         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
16308           from the call to NativeWindow to avoid walking up the parent chain
16309           further than needed (speeds up setting cursors and avoids setting
16310           the wrong cursor if a parent has another cursor defined)
16311         * Cursor.cs: When loading an icon as cursor, MS uses the center of
16312           the icon as hotspot, not what's contained as hotspot in the icon
16313           file. This fixes the perceived drawing offset seen with Paint.Net
16314         
16315 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
16316
16317         * XplatUIX11.cs: 
16318           - Store the calculated rectangle in Hwnd object and use it when 
16319             setting the client size
16320           - Force Toolwindows to always be type Dock, to ensure they're on top
16321
16322 2006-05-18  Mike Kestner  <mkestner@novell.com>
16323
16324         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
16325         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
16326         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
16327         Substantial refactoring to remove confusing nested classes. Coding
16328         standard and Get+Set->property refactorings.  Shift to index based
16329         highlighting in ComboListBox instead of constantly using IndexOf and
16330         Items[]. Add invalidations on resize for DropDownList to fix ugliness
16331         in FileDialog growth.  Draw borders manually since Simple mode needs
16332         to look like two independent controls.  Make listbox border
16333         conditional to DropDownStyle.  Improved OwnerDraw support.
16334
16335 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
16336
16337         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
16338         Don't set the disposed graphics to null, so we can throw the "right"
16339         exception if the graphics is reused later (added a flag to avoid 
16340         double disposing). Some behaviours are different under 2.0 and are
16341         filled under bug #78448.
16342
16343 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
16344
16345         * Control.cs: When double-buffering is enabled, we need to reset
16346           our graphics context between paint calls. Otherwise, any 
16347           transformations and other alterations on the context will 
16348           become cumulative (#77734)
16349
16350 2006-05-18  Mike Kestner  <mkestner@novell.com>
16351
16352         * ListView.cs: do focused item selection like MS on clicks. 
16353         Rework focus handling for ItemControl so LostFocus invalidates as
16354         well.
16355         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
16356         the ListView ItemControl has focus.
16357
16358 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
16359
16360         * XplatUIX11.cs: If client_window ends up being width or height zero
16361           due to border settings, move it off window inside whole_window (#78433)
16362
16363 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
16364
16365         * Mime.cs: Shrink the mime file cache correctly.
16366
16367 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
16368
16369         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
16370
16371 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
16372
16373         * XplatUIX11.cs (AddExpose): More sanity checks
16374
16375 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
16376
16377         * XplatUIX11.cs:
16378           - AddExpose: Don't add expose ranges outside the size of our
16379             window
16380           - Cast opacity values to Int32 to avoid crashes with certain
16381             values
16382           - Added disabled code paths that protect against illegal cross-
16383             thread painting (Developers.exe)
16384
16385 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
16386
16387         * ProgressBar.cs: Invalidate the control when it's resized
16388           since block size is based on control size. (#78388)
16389
16390 2006-05-16  Miguel de Icaza  <miguel@novell.com>
16391
16392         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
16393         of setting the incoming argument to the "reset" value, we set the
16394         this.datamember to string.empty (before we were invalidating the
16395         incoming data).   
16396
16397         Fixes 78420
16398
16399 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
16400
16401         * Form.cs: Only apply transparency settings after the form
16402           is created. (Fixes #77800)
16403
16404 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
16405
16406         * ApplicationContext.cs: Grab the HandleDestroyed event so
16407           we know when to fire OnMainFormClosed 
16408
16409 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
16410
16411         * Application.cs: Introduced sub-class to allow tracking of
16412           threads and centralized triggering of the event mess for
16413           ThreadExit, AppExit, etc..  (#76156)
16414
16415 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
16416
16417         * MimeIcon.cs:
16418           - Do not return a null icon index value for a mime subclass.
16419             Instead try the main mime type class too.
16420           - Seems that some newer distributions don't have a link to some
16421             gnome default icons anymore. So check the default gnome dir too.
16422           
16423
16424 2006-05-16  Jackson Harper  <jackson@ximian.com>
16425
16426         * MdiClient.cs: Don't paint the parent background image if we have
16427         our own background image.
16428
16429 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
16430
16431         * Control.cs:
16432           - PerformLayout: Do not shrink space filled by DockStyle.Fill
16433             controls, all filled controls are supposed to overlap (#78080)
16434           - UpdateZOrder is supposed to update the control's z-order in the
16435             parent's z-order chain. Fixed to behave like that
16436           - BringToFront: Removed obsolete code
16437           - SendToBack: Simplyfied
16438           - SetChildIndex: Trigger layout calculations when Z-order changes
16439             since layout is done by z-order
16440
16441 2006-05-16  Chris Toshok  <toshok@ximian.com>
16442
16443         [ fixes bug #78410 ]
16444         * DataGrid.cs (set_AlternatingBackColor): use
16445         grid_drawing.InvalidateCells instead of Refresh().
16446         (set_BackColor): call grid_drawing.InvalidateCells.
16447         (set_BackgroundColor): use Invalidate instead of Refresh.
16448
16449         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
16450         invalidate the cell area.
16451
16452 2006-05-15  Chris Toshok  <toshok@ximian.com>
16453
16454         [ fixes bug #78011 ]
16455         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
16456         on to DataGridPaintRow.
16457         (DataGridPaintRow): take a clip argument, and only draw the cells
16458         which intersect it.  same with the not_usedarea.
16459
16460         * Theme.cs (DataGridPaintRow) add @clip parameter.
16461
16462         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
16463         XplatUI.ScrollWindow.
16464         (ScrollToRow): same.
16465
16466         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
16467         with last column which was causing a gray swath to appear with the
16468         XplatUI.ScrollWindow code.
16469
16470 2006-05-15  Chris Toshok  <toshok@ximian.com>
16471
16472         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
16473         use XplatUI.ScrollWindow.
16474         (VerticalScrollEvent): use XplatUI.ScrollWindow.
16475
16476 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
16477
16478         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
16479
16480 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
16481
16482         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
16483           file since there are no equivalent X11 cursors
16484
16485 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
16486
16487         * MonthCalendar.cs : DateTimePicker should reflect selected date
16488           on mouse*up*, not mouse*down*. Fixed originally reported part of
16489           bug #76474.
16490
16491 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
16492
16493         * TabControl.cs : When argument index is equal or more than tab
16494           count, just ignore. Fixed bug #78395.
16495
16496 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
16497
16498         * Control.cs: Dispose all child controls when control is diposed (#78394)
16499
16500 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
16501
16502         * ColorDialog.cs: Finally it is possible to select the color with
16503           the text boxes
16504
16505 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
16506
16507         * PrintDialog.cs: Fix typo
16508
16509 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
16510
16511         * PrintDialog.cs: PrintDialog is not resizable
16512         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
16513           color. Made some ToolBar drawing methods protected virtual.
16514
16515 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
16516
16517         * PrintDialog.cs: Implementation of the PrintDialog
16518
16519 2006-05-12  Chris Toshok  <toshok@ximian.com>
16520
16521         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
16522         thumb, instead use MoveThumb.  This has the side effect of making
16523         most of the other thumb moving machinery use MoveThumb as well.
16524         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
16525         need to actually invalidate the rectangle where the new thumb will
16526         go.
16527         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
16528         We force an Update() after, so it's not as fast as it could be,
16529         but at least there's zero flicker and no droppings.
16530         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
16531         (UpdateThumbPos): add another argument (dirty), which says whether
16532         or not to calculate/add dirty regions which we later invalidate.
16533         For cases where we know we're going to use MoveThumb, we pass
16534         false for this.  Otherwise, pass true.
16535
16536 2006-05-12  Jackson Harper  <jackson@ximian.com>
16537
16538         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
16539         the status bar.
16540         
16541 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
16542
16543         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
16544           and GetClipRegion methods and UserClipWontExposeParent property.
16545         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
16546           overriding UserClipWontExposeParent property, setting to false, since
16547           Win32 handles the required expose messages to draw our clipped parent
16548           areas internally
16549         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
16550           PaintEventStart to set the user clip region if set.
16551         * Control.cs: 
16552           - Now internally tracking the Region for the control since we need to
16553             store it if the handle is not yet created and only set it when it
16554             becomes created. Before setting the region forced handle creation
16555           - Added code to draw the parents underneath a user-clipped region
16556         * Hwnd.cs: Added UserClip property
16557
16558 2006-05-12  Chris Toshok  <toshok@ximian.com>
16559
16560         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
16561         (set_Maximum): same.
16562         (set_Minimum): same.
16563         (set_SmallChange): same.
16564         (OnMouseUpSB): remove the call to refresh when releasing the
16565         thumb.  We shouldn't need it.
16566         
16567 2006-05-12  Miguel de Icaza  <miguel@novell.com>
16568
16569         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
16570         AutoSize set to None, we do not need to relayout everything, we
16571         just need to invalidate the current region.
16572
16573         (Draw): Do not draw the entire ClientArea, just redraw the
16574         clip area being passed.
16575
16576         * MdiClient.cs: Make MdiClient constructor with the Form argument
16577         internal. 
16578
16579 2006-05-12  Jackson Harper  <jackson@ximian.com>
16580
16581         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
16582         parents background image,  but strangely not their own.
16583         - (DrawStatusBarPanel): Take into account horizontal alignment
16584         when drawing the strings and icons.
16585
16586 2006-05-12  Mike Kestner  <mkestner@novell.com>
16587
16588         * ListBox.cs: avoid invalidations for focus when the collection is
16589         empty. 
16590
16591 2006-05-12  Chris Toshok  <toshok@ximian.com>
16592
16593         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
16594         invalidate the entire thumb area.  Call InvalidateDirty which
16595         limits the redraw to the thumb itself and surrounding pixels.
16596
16597         * XplatUIX11.cs (ScrollWindow): optimize copying.
16598         
16599 2006-05-12  Chris Toshok  <toshok@ximian.com>
16600
16601         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
16602         Figure out the positioning/layout in a single pass instead of
16603         multiple recursive invocations.  Speeds up the initial display of
16604         the data grid.  Also, make many things private that were
16605         originally public but unused outside this class.
16606
16607 2006-05-11  Jackson Harper  <jackson@ximian.com>
16608
16609         * MdiClient.cs: Improved layout code.
16610
16611 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
16612
16613         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
16614           not SelectedObject.
16615
16616 2006-05-11  Chris Toshok  <toshok@ximian.com>
16617
16618         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
16619         union of that will always be {0,0,width,height}.
16620
16621 2006-05-11  Jackson Harper  <jackson@ximian.com>
16622
16623         * Form.cs: Match MS's DefaultSize for forms (they must have
16624         changed the size in sp2).
16625
16626 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
16627
16628         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
16629
16630 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
16631
16632         * TextControl.cs : Fixed bug #78109. This incorrect position
16633           comparison caused crash on automatic line split.
16634         * TextBoxBase.cs : reduce duplicate code.
16635
16636 2006-05-10  Jackson Harper  <jackson@ximian.com>
16637
16638         * MdiClient.cs: Active form is only sent to the back when using
16639         the Next form functionality, when a form is clicked the current
16640         active shouldn't be sent to the back.
16641         - Layout the mdi windows when the container is first made visible.
16642         * Form.cs: Give the MdiClient a ref to the containing form when we
16643         create it.
16644         
16645 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
16646
16647         * LinkLabel.cs : link_font could be uninitialized, so populate one
16648           before actual use. Fixed bug #78340.
16649
16650 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
16651
16652         * XplatUIX11.cs : clipboard format native value is IntPtr.
16653           Fixed bug #78283.
16654
16655 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
16656
16657         * Control.cs: 
16658           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
16659             which is passed up the parent chain by DefWndProc
16660           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
16661             to DefWndProc (#77956)
16662         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
16663
16664 2006-05-10  Jackson Harper  <jackson@ximian.com>
16665
16666         * MdiClient.cs: We need to remove the controls from the mdi
16667         collection, when we close the window.
16668         * MdiWindowManager.cs: Special handling of closing mdi windows.
16669         * InternalWindowManager.cs: Make the close method virtual so the
16670         mdi window manager can handle it specially.
16671
16672 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
16673
16674         * DataGrid.cs:
16675           - Recalculate grid when the data source has changed
16676           - Matches styles provided by user from all data sources types
16677         * DataGridTableStyle.cs: For columns that provided by the user set the
16678         with the preferred value is there was unassigned.
16679         * CurrencyManager.cs: throw OnItemChanged event
16680
16681 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
16682
16683         * PictureBox.cs: Don't animate until handle is created. Start animation
16684           when handle is created.
16685
16686 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
16687
16688         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
16689           current codebase.
16690         * XEventQueue.cs: We don't need to provide the extra info
16691
16692 2006-05-10  Jackson Harper  <jackson@ximian.com>
16693
16694         * MdiClient.cs: If the mdi clients parent form has a background
16695         image set, we draw that background image for the mdi area's
16696         background.
16697
16698 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
16699
16700         * TextBoxBase.cs: Set IBeam cursor (#78347)
16701
16702 2006-05-10  Mike Kestner  <mkestner@novell.com>
16703
16704         * ToolBar.cs: fix some text padding issues with ButtonSize
16705         calculation. Update the default size to match MS documentation.
16706         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
16707         button size. Fixes #78296.
16708
16709 2006-05-10  Mike Kestner  <mkestner@novell.com>
16710
16711         * ListBox.cs: use is_visible for scrollbar positioning in case the
16712         control isn't on screen yet.  Fix off by one with Right vs Width
16713         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
16714         
16715 2006-05-10  Jackson Harper  <jackson@ximian.com>
16716
16717         * X11Dnd.cs: Drop to a control with another control on top of it.
16718         * ToolBar.cs: Work on a copy of the buttons list, so that it can
16719         be modified in click handlers. TODO: Look for similar problems in
16720         other controls.
16721
16722 2006-05-09  Jackson Harper  <jackson@ximian.com>
16723
16724         * Form.cs: Window managers need the old window state when setting
16725         window state now.
16726         * InternalWindowManager.cs: Allow the base mdi window manager to
16727         handle more of the MDI only stuff (like maximize buttons).
16728         * MdiWindowManager.cs: Fix some snafus in changing the window
16729         state.  Add all the menu functionality, for both popup and
16730         maximized menus.
16731         * MdiClient.cs: When a new form is selected the currently
16732         activated form is sent to the back, this matches MS.
16733         - Implement a new method to activate the next mdi child window.
16734
16735 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
16736
16737         * Control.cs: 
16738           - Added new InternalCapture method to allow controls to prevent
16739             the capture behaviour on the click handlers
16740           - Switched to use InternalCapture
16741         * ComboBox.cs:
16742           - Using InternalCapture to prevent mouse captures from being released
16743             on mouse button release (Fixes #78100)
16744         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
16745           returns Form borders if a caption is present. (Fixes #78310)
16746
16747 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
16748
16749         * TreeNode.cs: Changed serialization .ctor to not require every field
16750           to be present. (#78265)
16751         * OwnerDrawPropertyBag.cs: Added serialization .ctor
16752
16753 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
16754
16755         * MimeIcon.cs: for is faster than foreach for strings.
16756
16757 2006-05-05  Mike Kestner  <mkestner@novell.com>
16758
16759         * CheckedListBox.cs: update check handling code to not use selected.
16760         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
16761         behavior for visual feedback, motion response, shift/ctrl handling,
16762         and properly deal with all 4 selection modes. Updates to bounds
16763         handling logic.  Add scroll wheel support. [Fixes #77842]
16764
16765 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
16766
16767         * ListView.cs:
16768           - Moved adding of Implicit controls into .ctor. That way, subsequent
16769             creation of the controls will not cause them to think they are 
16770             toplevel windows (fixes #78200 header problem)
16771           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
16772           - Switched visibility setting of header control to use internal field
16773             to avoid triggering handle creation
16774           - Now checking if handle is created before causing a refresh when items
16775             are added (This makes us now match handle creation time with MS)
16776         * Splitter.cs: Removed loading of private splitter cursor, switched to
16777           Cursors version now that that is loading the right ones
16778         * Cursors.cs: Load proper splitter cursors from resources
16779         * Cursor.cs: Added second method of loading resource cursors for the 
16780           VS.Net users amongst us
16781
16782 2006-05-05  Mike Kestner  <mkestner@novell.com>
16783
16784         * ListView.cs: give header_control a minimum size based on the
16785         ListView size.
16786
16787 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
16788
16789         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
16790           window seems to do that with metacity, so set that type. (#78120)
16791
16792 2006-05-05  Mike Kestner  <mkestner@novell.com>
16793
16794         * ListViewItem.cs: fix Details mode checkbox layout bug.
16795         * ThemeWin32Classic.cs: draw a ListView column header for unused space
16796         at the end of the header, if it exists. [Fixes for #78200]
16797
16798 2006-05-04  Jackson Harper  <jackson@ximian.com>
16799
16800         * MdiClient.cs: Add a helper property to get the container form.
16801         * MdiWindowManager.cs: We have to make sure to use the menu origin
16802         when drawing the icons and buttons, this fixes maximized window
16803         icons/buttons on win32.
16804         * InternalWindowManager.cs: Reset the restore captions when a
16805         window goes from Maximized to Minimized and vice versa. Move the
16806         DrawMaximizedButtons into the MdiWindowManager source, tool
16807         windows can't be maximized. NOTE: This could use a little
16808         refactoring if time ever permits.
16809         
16810 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
16811
16812         * TextBox.cs: Add MWFCategoryAttributes
16813         * TextBoxBase.cs: Add MWFCategoryAttributes
16814         * Form.cs: Add MWFCategoryAttributes
16815
16816 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
16817
16818         * Control.cs: Add MWFCategoryAttributes
16819         * ScrollableControl.cs: Add MWFCategoryAttributes
16820
16821 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
16822
16823         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
16824           Divider is true. Fix a little glitch in PropertyToolBar
16825           drawing code
16826
16827 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
16828
16829         * Control.cs:
16830           - Dispose: Call base.Dispose, this causes the disposed event
16831             to be fired (and probably other, more important stuff)
16832           - SetVisibleCore: Set is_visible to true after creating the
16833             window so that the window still gets created invisible (if
16834             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
16835             to generate a WM_ACTIVE message
16836         * Form.cs: Call Dispose when we want to destroy the window, instead of
16837           just destroying the handle (Dispose will do that for us)
16838         * XplatUIX11.cs:
16839           - RootWindow also needs a queue, so we can properly process the
16840             property change events from RootWindow (like Activate)
16841           - Generatic synthetic WM_ACTIVE message when the active window is
16842             being destroyed
16843
16844 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
16845
16846         * LinkLabel.cs: Trigger a recalc of our label dimensions when
16847           bounds are changed
16848
16849 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
16850
16851         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
16852           for determining width and height (image might not be assigned if
16853           we're drawing an imagelist)
16854
16855 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
16856
16857         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
16858         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
16859           height from system
16860         * Theme.cs: No longer returns hardcoded menu height, instead calls
16861           new driver method
16862         * Form.cs (OnLoad): Scaling happens before triggering Load events 
16863           on MS (# 78257)
16864
16865 2006-05-01  Mike Kestner  <mkestner@novell.com>
16866
16867         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
16868
16869 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
16870
16871         * TextBoxBase.cs: Removed Fixme
16872         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
16873
16874 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
16875
16876         * XplatUIX11.cs:
16877           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
16878             the rectangle relative to the parent, considering borders. We
16879             don't really want that.
16880           - ScrollWindow: Fixed warning to be more understandable
16881         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
16882           scrollbars and scroll only the visible area
16883         * RichTextBox.cs: Removed debug output
16884
16885 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
16886
16887         * NumericUpDown.cs (Text): Just use base
16888         * UpDownBase.cs: Ensure txtView is created before using it
16889
16890 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
16891
16892         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
16893           casting to IntPtr to avoid 64bit overflow errors
16894
16895 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
16896
16897         * Control.cs:
16898           - AllowDrop: Don't force handle creation.
16899           - CreateHandle: Added call to tell driver if we're allowed to drop
16900
16901 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
16902
16903         * FileDialog.cs: Remember the last directory not only for the
16904           current instance but also for new FileDialog instances.
16905
16906 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
16907         
16908         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
16909           broke sending async messages
16910
16911 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
16912
16913         * XplatUIX11.cs:
16914           - ScrollWindow: Fixed method. We finally generate expose events again
16915             for scrolled areas. This was causing 'garbage' when scrolling
16916             textbox and other controls that used ScrollWindow
16917           - Switched from using the regular queue for paint events to the MS 
16918             model of 'generating' paint events when the queue is empty.
16919             We use the new XQueueEvent.Paint subclass to store which windows
16920             need painting.
16921           - AddExpose now takes the x/y/width/height of the exposed area
16922             and inserts the window into the paint queue if not already there
16923           - InvalidateWholeWindow: Switched to use new AddExpose method
16924           - UpdateMessageQueue: Added which queue to monitor for paint events
16925           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
16926             the unlikely case nothing above handles it. We reset the expose
16927             pending states to get them off the queue.
16928           - GetMessage: Now pulls a paint event if no other events are in the
16929             queue
16930           - Invalidate: Switched to new AddExpose method
16931           - PeekMessage: Updated to understand pending paint events
16932           - UpdateWindow: Fixed logic bug. We were only updating if the window
16933             didn't need updating. Also switched to sending WM_PAINT directly,
16934             like MS does.
16935         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
16936           and random access Remove(). The random access is needed to handle
16937           UpdateWindow() where a WM_PAINT is sent directly without accessing
16938           the queue.
16939         * ScrollBar.cs: Added Update() calls to cause immediate updates to
16940           allow for better feedback when scrolling. Scrollbars are small and
16941           the immediate update should make it 'feel' more responsive without
16942           slowing things down. ScrollBar still needs it's invaliate logic
16943           updated to not always invalidate the whole bar on certain changes.
16944
16945 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16946
16947         * Control.cs:
16948         (BackColor): if the control does not support a transparent background,
16949         return the default backcolor when the parent backcolor is transparent.
16950
16951 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
16952
16953         * Application.cs: Updated to new StartLoop/GetMessage API
16954         * RichTextBox.cs: Provide some output on RTF parsing errors
16955         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
16956           new queue_id argument to GetMessage and PeekMessage to allow faster
16957           handling of per-thread queues in drivers.
16958         * Hwnd.cs: Added Queue tracking and property
16959         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
16960         * XEventQueue.cs: Added thread trackingA
16961         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
16962         * XplatUIX11.cs:
16963           - Implemented new per-thread queue
16964           - GetMessage: Fixed return/break behaviour on several cases. We were
16965             returning stale messages in some cases, instead of just processing
16966             the next message
16967
16968 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
16969
16970         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
16971
16972 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
16973
16974         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
16975           fixed off-by-one comparisons between Width/Height and Right/Bottom.
16976
16977 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
16978
16979         * PropertyGridView.cs: Fix drop down width.
16980
16981 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
16982
16983         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
16984           a mess in DrawToolBar, so I removed one of them.
16985
16986 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
16987
16988         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
16989           needed (clip). Otherwise we get artifacts.
16990
16991 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
16992
16993         * FixedSizeTextBox.cs: Added constructor to allow specifying which
16994           dimension is fixed
16995         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
16996           and switched FixedSizeTextBox to only be fixed vertical (#78116)
16997         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
16998           if it matches the scale base font (avoids unneeded scaling)
16999
17000 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
17001
17002         * X11DesktopColors.cs: One gtk_init_check should be enough
17003
17004 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
17005
17006         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
17007           match MS behaviour
17008
17009 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
17010
17011         * TextBoxBase.cs: 
17012           - Generate OnTextChanged for Backspace even if we're only deleting
17013             the current selection
17014           - When setting the Text property, only select all text if the
17015             control does not have focus when it is being set. Otherwise
17016             just place the cursor at the beginning of the control
17017
17018 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
17019
17020         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
17021           Added a little helper to draw PropertyGrid ToolBar with a different
17022           border and a different BackColor.
17023         * PropertyGrid.cs: Some background parts didn't get painted with the
17024           correct background color. Added a class that helps us to draw the
17025           correct border for PropertyGridView and a class that helps us to
17026           draw ToolBars with a different backcolor
17027         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
17028
17029 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
17030
17031         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
17032         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
17033
17034 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
17035
17036         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
17037           into the palette entries. Also, since we're working on a copy
17038           we needed to copy the palette back onto the bitmap.
17039         * Cursor.cs: Same fix as XplatUIWin32.cs.
17040
17041 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
17042
17043         * ImageListStreamer.cs: Need to read the var (or we're off)
17044
17045 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
17046
17047         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
17048           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
17049           TextBoxBase.cs: Unused var fixes
17050         * AxHost.cs: Small 2.0 fix
17051         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
17052           as it seems that is what at least Metacity expects. This will make
17053           icons show up on 64bit platforms. We still have some 64bit size
17054           issues, though, since the startup app window size still won't match.
17055
17056 2006-04-25  Mike Kestner  <mkestner@novell.com>
17057
17058         * *.cs: cleanup newly reported exception var unused warnings.
17059
17060 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
17061
17062         * ThemeWin32Classic.cs: Button image alignment now matches exactly
17063           ms
17064
17065 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
17066
17067         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
17068           image. The image position is always the same, no matter if the
17069           button is pressed or not.
17070
17071 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
17072
17073         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
17074           selection and set the correct filename for SaveFileDialog.
17075           Patch by Emery Conrad.
17076
17077 2006-04-24  Mike Kestner  <mkestner@novell.com>
17078
17079         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
17080         check for item.X outside the ClientRect instead of item.Y. Fixes
17081         #78151.
17082
17083 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17084
17085         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
17086         trust that value blindly and do some sanity check. Fixes bug #77814.
17087
17088 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17089
17090         * ImageListStreamer.cs: save the mask as a 1bpp image.
17091
17092 2006-04-21  Mike Kestner  <mkestner@novell.com>
17093
17094         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
17095         pass Checked and Indeterminate to the Theme Engine. Improve
17096         encapsulation with ListBox.
17097         * ListBox.cs: Keep a StringFormat instead of calculating it every item
17098         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
17099         nested types.  Move all CheckState functionality to CheckedListBox.
17100         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
17101         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
17102         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
17103         single base list. Fix scrollbar sizing and placement to mirror MS.
17104         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
17105         used.
17106         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
17107         for CheckedListBox by using new DrawItemState info.  Center the
17108         checkboxes on the items. Use new StringFormat property.
17109
17110 2006-04-18  Jackson Harper  <jackson@ximian.com>
17111
17112         * Form.cs: MdiChildren don't do default locations the same way as
17113         regular forms.  This prevents a crash when trying to position the
17114         mdi windows.
17115
17116 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
17117
17118         * PropertyGridTextBox.cs: Formatting, copyright
17119         * PropertiesTab.cs: Formatting
17120         * PropertyGrid.cs: Formatting
17121         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
17122           click toggling of values
17123           
17124 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
17125
17126         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
17127         * Control.cs (.ctor): verify_thread_handle is static, don't reset
17128           every time a control is created
17129         * Application.cs: Removed obsolete EnableRTLMirroring method
17130
17131 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
17132
17133         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
17134         SelectedIndex to -1. Fixes bug #78121.
17135
17136 2006-04-17  Jackson Harper  <jackson@ximian.com>
17137
17138         * Binding.cs: Handle null values for Current and BindingContext.
17139         This occurs when binding is a little delayed.
17140         * CurrencyManager.cs: return null for Current when there are no
17141         items in the list.
17142         - Hookup to the listchanged event on the DataView and update
17143         bindings when the list is changed.  This fixes late binding of
17144         controls.
17145
17146 2006-04-17  Jackson Harper  <jackson@ximian.com>
17147
17148         * X11Dnd.cs:
17149         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
17150         Ringenbach.
17151
17152 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
17153
17154         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
17155           place
17156         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
17157           with the correct ButtonState
17158
17159 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
17160
17161         * XplatUIX11.cs: Improved distinguishing between window types to
17162           tell the WM a type closer to what the app wants (Fixes #78107)
17163
17164 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
17165
17166         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
17167           GrabHandle
17168
17169 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
17170
17171         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
17172           drawing code to reflect the size grip changes
17173
17174 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17175
17176         * ImageListStreamer.cs: fix handling of the mask that follows the main
17177         bitmap when deserializing and serialize it properly. The generated mask
17178         should better be a 1bpp image, but I'll do that later.
17179
17180 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
17181
17182         * FileDialog.cs: Show something in the DirComboBox on *nix if the
17183           path doesn't fit into some of our Current.Places
17184
17185 2006-04-13  Jackson Harper  <jackson@ximian.com>
17186
17187         * ComboBox.cs: Use borders instead of drawing our own decorations,
17188         try to obey correct rules for heights.
17189         * Theme.cs:
17190         * ThemeNice.cs:
17191         * ThemeClearLooks.cs:
17192         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
17193         this is now handled by borders.
17194         - Remove unused DrawListBoxDecorationSize method.
17195         
17196 2006-04-13  Mike Kestner  <mkestner@novell.com>
17197
17198         * MenuAPI.cs: null guarding for the disbled click check fixes crash
17199         reported by Alex.
17200
17201 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
17202
17203         * ThemeWin32Classic.cs: 
17204           - Fixed CPDrawStringDisabled
17205           - Corrected drawing of disabled menu items
17206           - Fixed drawing of disabled radio buttons (bug #78095)
17207           - Draw check in a disabled CheckBox with color ControlDark 
17208
17209 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
17210
17211         * Form.cs: Use the provided width when calculating the menu size;
17212           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
17213           and ClientSize.Width won't be updated yet
17214         * Application.cs: Use Visible instead of Show() to make form visible,
17215           this way we create the handle later and menusize is considered
17216
17217 2006-04-12  Mike Kestner  <mkestner@novell.com>
17218
17219         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
17220         reporting.
17221
17222 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
17223
17224         * TextBox.cs: Implemented context menu
17225
17226 2006-04-12  Mike Kestner  <mkestner@novell.com>
17227
17228         * ListView.cs: implement box selection. fixes #77838.
17229         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
17230
17231 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
17232
17233         * XplatUIX11.cs: Added setting of window type when transient window
17234           is created (metacity would move it otherwise)
17235         * X11Structs.cs: Added WINDOW_TYPE atoms
17236         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
17237           background (the control is Opaque but still wants transparent
17238           backgrounds)
17239
17240 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
17241
17242         * Control.cs: Added OnPaintBackgroundInternal to allow controls
17243           that set Opaque but don't mean it (like all ButtonBase-derived
17244           controls) to still draw their background
17245         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
17246           the background
17247
17248 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
17249
17250         * Control.cs (PaintControlBackground): Set the graphics object
17251           on our PaintEvent to null to prevent it from being disposed
17252           when the PaintEvent gets disposed
17253
17254 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
17255
17256         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
17257         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
17258
17259 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
17260
17261         * Control.cs: 
17262           - Added transparency check to BackColor property. Transparent
17263             backgrounds are only allowed if the control styles permit it
17264           - Added recursive painting of parent control background and
17265             foreground if a control with a transparent backcolor is drawn
17266             (Thanks to Tim Ringenback for providing his 'hack' as a base
17267              for this patch) Fixes #77985 and #78026.
17268           - Added Opaque style check before calling OnPaintBackground, no
17269             need to draw the background if the control is opaque
17270           - Removed ControlAccessibleObject owner variable (inherited from
17271             base, no need to define again)
17272           - Added some documentation links explaining the drawing events
17273             and styles
17274
17275 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
17276
17277         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
17278           that the affected control is the located at the left border of our
17279           parent (Fixes #77936)
17280
17281 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
17282
17283         * TextBoxBase.cs: When rendering disabled or readonly controls,
17284           draw the background with 'Control' instead of 'Window' color as
17285           long as the user hasn't specifically set a color
17286
17287 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
17288
17289         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
17290           since that won't be updated if the user types text (only if it's
17291           programatically set)
17292
17293 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
17294
17295         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
17296           layout changes do to app-triggered resizes will have the proper
17297           display rectangle for layout
17298
17299 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
17300
17301         * ThemeWin32Classic.cs:
17302           - Make use of the SystemBrushes and SystemPens wherever possible
17303           - Corrected some highlight colors
17304           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
17305             drawing
17306         * Theme.cs: Added Empty field to CPColor struct
17307
17308 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
17309
17310         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
17311           is displayed when calculating the display rectangle. Thanks to Mike
17312           for teaching me the err of my ways.
17313
17314 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
17315
17316         * ScrollableControl.cs:
17317           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
17318             (instead of 0,0) and we now return the real width/height instead of
17319             just the clientrectangle, adjusted for padding. The rectangle is
17320             now cached and created by the new CalculateDisplayRectangle method.
17321           - Created new CalculateDisplayRectange method, which basically does
17322             what get_DisplayRectangle() did originally, but now using the 
17323             right edge instead of DisplayRectangle to determine the size of
17324             our scrollbars
17325           - get_Canvas(): Fixed it to properly calculate canvas for 
17326             right/bottom controls which seem to be placed to the right/bottom
17327             of any controls that have a fixed location
17328           - Removed TODO that's taken care of
17329           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
17330             and SetDisplayRectLocation according to new MSDN2 docs
17331           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
17332             event when that is called, this is added for compatibility
17333           - ScrollControlIntoView(): Implemented.
17334           - Switched scrollbars to be implicit, they shouldn't be selectable
17335         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
17336           call it when the active control is set/changed
17337         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
17338         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
17339           implicit_control variable (used for native Win32 message generation)
17340         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
17341           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
17342         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
17343         * XplatUIStructs.cs: Added ScrollBarCommands enum
17344
17345 2006-04-10  Jackson Harper  <jackson@ximian.com>
17346
17347         * ButtonBase.cs:
17348         * CheckedListBox.cs:
17349         * ComboBox.cs:
17350         * DataGrid.cs:
17351         * DataGridView.cs:
17352         * Form.cs:
17353         * GroupBox.cs:
17354         * ListBox.cs:
17355         * PrintPreviewControl.cs:
17356         * ProgressBar.cs:
17357         * PropertyGrid.cs:
17358         * Splitter.cs:
17359         * StatusBar.cs:
17360         * TrackBar.cs:
17361         * UpDownBase.cs: Fixup base event overrides.
17362         
17363 2006-04-06  Mike Kestner  <mkestner@novell.com>
17364
17365         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
17366         all user-initiated value changes to min <= value <= max-thumbsz+1.
17367         (set_Value): check for vert/horiz when calculating new thumb position.
17368         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
17369         like MS does.
17370         (OnMouseMoveSB): refactor the thumb dragging code and refine
17371         invalidation logic to reduce flicker.
17372         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
17373         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
17374         (UpdateThumbPosition): small code readability cleanup
17375
17376 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
17377
17378         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
17379           different
17380
17381 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
17382
17383         * ThemeNice.cs: Use a better graphics effect when a button is pressed
17384
17385 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
17386
17387         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
17388         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
17389           This dramatically reduces the number of Pen.Dispose calls. 
17390           Where possible call ResPool methods only once instead of calling it
17391           over and over again (for example for the same color).
17392
17393 2006-04-06  Mike Kestner  <mkestner@novell.com>
17394
17395         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
17396         Also remove an unused private field on the collection. Fixes #77972.
17397
17398 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
17399
17400         * ThemeNice.cs: Added ToolBar drawing code
17401
17402 2006-04-06  Mike Kestner  <mkestner@novell.com>
17403
17404         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
17405         I'm assuming that means we need to look up the toplevel for the
17406         provided control. Fixes the crash trace in #77911 but exposes another
17407         crash in some strange reflection usage in NDocGui.
17408
17409 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
17410
17411         * ThemeNice.cs: Gave it a little silver touch and added Images
17412           method
17413         * FontDialog.cs: FontDialog is not resizable
17414         * FileDialg.cs: Added SizeGripStyle.Show
17415
17416 2006-04-05  Jackson Harper  <jackson@ximian.com>
17417
17418         * KeyboardLayouts.cs: Remove warning.
17419
17420 2006-04-05  Jackson Harper  <jackson@ximian.com>
17421
17422         * Control.cs: Enable OnPaintInternal so we can use it for drawing
17423         all of our controls instead of Paint +=.
17424         * ListBox.cs:
17425         * ListView.cs:
17426         * MenuAPI.cs:
17427         * MessageBox.cs:
17428         * NotifyIcon.cs:
17429         * ProgressBar.cs:
17430         * ScrollBar.cs:
17431         * Splitter.cs:
17432         * StatusBar.cs:
17433         * TabControl.cs:
17434         * TextBoxBase.cs:
17435         * ToolBar.cs:
17436         * TrackBar.cs:
17437         * UpDownBase.cs:
17438         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
17439         use OnPaintInternal. Remove Width/Height and Visible checks in
17440         paint handler, this is done at a higher level now.
17441         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
17442         * PaintEventArgs.cs: Add a handled flag so controls that don't
17443         want anymore painting after OnPaintInternal can make sure OnPaint
17444         isn't called.
17445
17446 2006-04-05  Mike Kestner  <mkestner@novell.com>
17447
17448         * Form.cs: fix the menu WndProc hacks to respect the native enabled
17449         state of the form, so that we don't process events when Modal dialogs
17450         are up. Fixes #77922.
17451
17452 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
17453
17454         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
17455           checking is done.
17456
17457 2006-04-05  Mike Kestner  <mkestner@novell.com>
17458
17459         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
17460
17461 2006-04-05  Mike Kestner  <mkestner@novell.com>
17462
17463         * ListView.cs (HeaderMouseMove): null guarding for the over column
17464         when setting up the drag_to_index.  Fixes #78015.
17465
17466 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
17467
17468         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
17469           in the taskbar. Transient windows seem to accomplish that.
17470
17471 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
17472
17473         * Form.cs:
17474           - Re-enabled CreateParams.X/Y code for FormStartPosition
17475           - Added code for manual placement when creating the Control
17476           - Incomplete patch to treat MDI forms differently when
17477             setting the ClientSizeCore. (Still need to figure out handling
17478             x/y coords there)
17479         * XplatUIX11.cs:
17480           - When we're explicitly setting the X/Y position of a non-Child
17481             window, let the WM know. Metacity really wants this.
17482
17483 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
17484
17485         * ThemeNice.cs: Added CPDrawButton
17486
17487 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
17488
17489         * ThemeNice.cs: Changed the color for focused buttons and activated
17490           the arrows for small scroll buttons.
17491
17492 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
17493
17494         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
17495           anymore. Changed some method modifiers to protected (virtual)
17496         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
17497           changes
17498         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
17499           Updated drawing of menus, buttons and progressbars; added
17500           CPDrawBorder3D 
17501
17502 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17503
17504         * ImageListStreamer.cs: implemented serialization/deserialization
17505         of the images.
17506
17507 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
17508
17509         * ThemeWin32Classic.cs:
17510           - Removed all the DrawFrameControl stuff; CPDrawButton,
17511             CPDrawCheckBox and CPDrawRadioButton are now handled directly
17512             inside the methods
17513           - Updated and corrected the drawing code of CPDrawButton,
17514             CPDrawCheckBox and CPDrawRadioButton to better match ms
17515           - Updated theme checkbox and radiobutton code to use the CP*
17516             methods
17517
17518 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
17519
17520         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
17521           bug is fixed
17522
17523 2006-03-31  Jackson Harper  <jackson@ximian.com>
17524
17525         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
17526         sometimes.
17527         * UpDownBase.cs: Don't CreateGraphics manually, use a
17528         Refresh. Ideally we would invalidate the correct areas here.
17529
17530 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
17531
17532         * XplatUIX11.cs: 
17533           - We now track the mapping state of windows. If a window (or 
17534             one of it's parents) is not mapped we no longer permit
17535             WM_PAINT messages to be generated since we'd otherwise get 
17536             lots of BadMatch X errors. Jackson did all the work figuring
17537             out the problem.
17538           - Destroying the caret if the window it's contained in is 
17539             destroyed. Can't use regular DestroyCaret method since it
17540             might fall into a drawing function (trying to remove the
17541             caret) and with that generate new BadMatch errors. Again,
17542             Jackson tracked this down.
17543           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
17544             make sure we send the messages to all windows. (The old code
17545             would send the WM_DESTROY to the window, and then all child
17546             windows would be 'gone' because the WM_DESTROY handle lookup
17547             would no longer find the destroyed window)
17548         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
17549         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
17550
17551 2006-03-31  Jackson Harper  <jackson@ximian.com>
17552
17553         * ScrollableControl.cs: Dont recalc if we are not visible.
17554
17555 2006-03-31  Mike Kestner  <mkestner@novell.com>
17556
17557         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
17558         the visibility branch.
17559
17560 2006-03-31  Jackson Harper  <jackson@ximian.com>
17561
17562         * ScrollBar.cs: Cap values when incrementing/decrementing.
17563
17564 2006-03-31  Mike Kestner  <mkestner@novell.com>
17565
17566         * MenuAPI.cs: setup menu.tracker for popup/context menus.
17567         * ToolTip.cs: guard against timer expirations with no active control.
17568         Not sure why it happened.
17569
17570 2006-03-31  Mike Kestner  <mkestner@novell.com>
17571
17572         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
17573         text.
17574         * ToolTip.cs: Position the tooltip based on where the cursor is at
17575         popup time, not at MouseEnter time.  Add a Down state so that we don't
17576         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
17577         positioning offset. Lookup DisplaySize at positioning time, since it
17578         can theoretically change during invocation.
17579         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
17580         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
17581
17582 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
17583
17584         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
17585           Fixes behaviour when the Text property of the box is String.Empty
17586
17587 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
17588
17589         * XplatUIX11.cs: Only send mouseleave for our client windows, not
17590           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
17591           a window)
17592
17593 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
17594
17595         * FileDialog.cs: Visual enhancement for the popup buttons in 
17596           PopupButtonPanel
17597
17598 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
17599
17600         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
17601           code
17602
17603 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
17604
17605         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
17606           highlighted menu items to match ms
17607
17608 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
17609
17610         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
17611
17612 2006-03-30  Mike Kestner  <mkestner@novell.com>
17613
17614         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
17615         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
17616         go active to account for HotLight to Selected transition.
17617         * MenuItem.cs: add internal Selected prop. Fill out the Status
17618         property by calculating it from item info. Add HotLight,
17619         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
17620
17621 2006-03-30  Mike Kestner  <mkestner@novell.com>
17622
17623         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
17624
17625 2006-03-29  Jackson Harper  <jackson@ximian.com>
17626
17627         * Form.cs: Implement TODO.
17628
17629 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
17630
17631         * PrintPreviewDialog.cs: Implemented missing methods and events; still
17632           missing proper dialog setup in the constructor
17633
17634 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
17635
17636         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
17637         * Control.cs:
17638           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
17639           - Fixed ResetBindings and removed TODO
17640           - Added check for cross-thread calls to get_Handle()
17641           - Added Marshaller attribute for set_Font to satisfy class status
17642         * FontDialog.cs: Removed TODOs that seemed implemented
17643         * UpDownBase.cs: Removed unneeded TODO and Fixme
17644         * MessageBox.cs: Implemented support for Default button and removed TODO
17645         * FileDialog.cs: Removed obsolete TODO
17646         * DomainUpDown.cs: Removed obsolete TODO
17647         * ButtonBase.cs: Removed obsolete TODO
17648         * XplatUIWin32.cs: Removed obsolete TODO
17649         * Form.cs:
17650           - Removed obsolete TODO
17651           - Calling CheckAcceptButton when the acceptbutton is changed to allow
17652             internal status updates
17653           - Making sure the active control is selected when the control is created
17654         * CurrencyManager.cs: Removed obsolete TODO
17655
17656 2006-03-29  Mike Kestner  <mkestner@novell.com>
17657
17658         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
17659         of PrintPreviewDialog and RichTextBox.
17660
17661 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
17662
17663         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
17664           DarkDark, Light and LightLight colors for a specific color
17665         * ThemeWin32Classic.cs:
17666           - Use Button drawing code to draw RadioButtons and CheckBoxes with
17667             Appearance = Button 
17668           - Make use of the new ResPool helper CPColor
17669           - Draw ProgressBar and StatusBar with correct 3D borders
17670
17671 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
17672
17673         * ColorDialog.cs: Return selected color. Fixes bug #77940.
17674
17675 2006-03-28  Mike Kestner  <mkestner@novell.com>
17676
17677         * ListView.cs: fix Icon layout to plan for scrollbar widths when
17678         calculating col/row counts.
17679
17680 2006-03-28  Mike Kestner  <mkestner@novell.com>
17681
17682         * ColumnHeader.cs:
17683         * ListView.cs:
17684         * ListViewItem.cs:
17685         * Menu.cs: 
17686         switch to explicit interface method implementation for some methods
17687         corcompare identifies as inconsistent with MS.
17688
17689 2006-03-28  Mike Kestner  <mkestner@novell.com>
17690
17691         * MainMenu.cs: 
17692         * Menu.cs:
17693         add a few missing methods from the class status output.
17694
17695 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
17696
17697         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
17698           correct.
17699
17700 2006-03-28  Mike Kestner  <mkestner@novell.com>
17701
17702         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
17703
17704 2006-03-27  Mike Kestner  <mkestner@novell.com>
17705
17706         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
17707         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
17708
17709 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
17710
17711         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
17712
17713 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17714
17715         * ThemeWin32Classic.cs:
17716           - GroupBox: Inserted a little gap between the text and the lines
17717             on the right side
17718           - Made the code in CPDrawBorder3D more readable
17719           - Corrected the drawing location of the up and down arrows in 
17720             CPDrawScrollButton
17721
17722 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17723
17724         * ControlPaint.cs: Corrected line widths in DrawBorder for
17725           ButtonBorderStyle Inset and Outset
17726
17727 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17728
17729         * ThemeWin32Classic.cs:
17730           - Rewrote the totally broken CPDrawBorder3D method. That was
17731             one of the main problems for the terrific ThemeWin32Classic
17732             look
17733           - Updated and corrected Button drawing
17734           - Correct the dimensions of the SizeGrip to match ms ones
17735           - Removed a small drawing glitch in DrawComboBoxEditDecorations
17736         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
17737           Border3DStyle.Sunken to match ms.
17738
17739 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17740
17741         * ThemeWin32Classic.cs: First small part of the "de-uglify
17742           ThemeWin32Classic" effort, SizeGrip
17743
17744 2006-03-24  Jackson Harper  <jackson@ximian.com>
17745
17746         * XplatUIX11.cs: Give a max idle time of one second, this matches
17747         MS and forces an Idle event every second when there are no other
17748         events in the queue.
17749
17750 2006-03-24  Mike Kestner  <mkestner@novell.com>
17751
17752         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
17753         * ListView.Item.cs: fix layout issues with null image lists and images
17754         smaller than checkbox size.
17755         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
17756         mode like MS does.  It's weird, but consistent.  ;-)
17757         Fixes #77890.
17758
17759 2006-03-24  Mike Kestner  <mkestner@novell.com>
17760
17761         * ListView.cs: Scroll wheel support for the item control.  Fixes
17762         #77839.
17763
17764 2006-03-23  Jackson Harper  <jackson@ximian.com>
17765
17766         * ScrollableControl.cs: Special case negative sized areas, not
17767         zero.
17768         * MonthCalendar.cs: Save the rect of the clicked date so we can
17769         use it for invalidation.
17770         - Try to cut down on the number of invalidates
17771         - Invalidate the rect the mouse is over and was over when moving
17772         the mouse, so we get the focus box following the cursor.
17773
17774 2006-03-23  Mike Kestner  <mkestner@novell.com>
17775
17776         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
17777         focus rectangle drawing. Fixes #77835.
17778
17779 2006-03-23  Mike Kestner  <mkestner@novell.com>
17780
17781         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
17782         the if and else if and reverting back to the original == check on the
17783         None conditional.
17784
17785 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
17786
17787         * FontDialog.cs: Update the example panel if the selected index of
17788           the fontListBox changes.
17789
17790 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
17791
17792         * FileDialog.cs: Make FileDialog remember which directory it was in
17793           last in the same execution.
17794
17795 2006-03-22  Mike Kestner  <mkestner@novell.com>
17796
17797         * FileDialog.cs: make the DropDownMenu on the toolbar display
17798         RadioChecks since they are mutually exclusive and that's what MS does.
17799
17800 2006-03-22  Mike Kestner  <mkestner@novell.com>
17801
17802         * Theme.cs: add Color param to CPDrawMenuGlyph.
17803         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
17804         checks and radio marks and arrows are visible on highlighted items.
17805         * ControlPaint.cs: update to use new Theme signature.
17806
17807 2006-03-22  Mike Kestner  <mkestner@novell.com>
17808
17809         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
17810         is active. Fixes #77870.
17811
17812 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
17813
17814         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
17815           to be focused/selected after startup
17816
17817 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
17818
17819         * ColorDialog.cs: 
17820           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
17821             CustomColors and ShowHelp properties
17822           - Some internal rewrites to get better results when using the
17823             ColorMatrix
17824
17825 2006-03-22  Mike Kestner  <mkestner@novell.com>
17826
17827         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
17828         HoverSelection.  Fixes #77836.
17829
17830 2006-03-22  Mike Kestner  <mkestner@novell.com>
17831
17832         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
17833         ToggleButtons.  (De)Sensitize the Back button around a stack count of
17834         1, not 0.  Update ButtonSize based on a pixel count of the win32
17835         control.  Adjust the toolbar size/location for new button size.
17836
17837 2006-03-22  Jackson Harper  <jackson@ximian.com>
17838
17839         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
17840         true.
17841         * ScrollBar.cs: When doing increments and decrements we need to
17842         set the Value property so that ValueChanged gets raised. A
17843         possible optimization here would be to make an internal SetValue
17844         that doesn't invalidate immediately.
17845         * ToolTip.cs: Tooltips get added to their container (when
17846         supplied) so they get disposed when the container is disposed.
17847         - Don't create tooltips for String.Empty. This prevents all these
17848         little 2-3 pixel windows from showing up when running nunit-gui
17849         and driving me mad.
17850         * Form.cs: Don't set topmost when setting the owner if the handles
17851         haven't been created yet.  The topmost set will happen when the
17852         handles are created.
17853
17854 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
17855
17856         * XplatUIX11.cs:
17857           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
17858           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
17859             visible (to allow them to recalculate their sizes)
17860
17861 2006-03-21  Mike Kestner  <mkestner@novell.com>
17862
17863         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
17864         methods. Removed a ton of redundant code.  Still not really happy with
17865         the border rendering, but I think that's mainly because of the
17866         ControlDarkDark being black instead of a dark grey. Depending on how 
17867         close we want to be, we might want to revisit those color choices.
17868         Among the new features added during the refactor were DropDownArrow
17869         pressed rendering, Disabled image rendering.  Proper flat appearance
17870         boundary rendering.  Removed the Divider and Wrapping dividers since I
17871         can't figure out any combination of themes and conditions to make the
17872         MS control draw a horizontal line on a toolbar despite what the
17873         Divider property docs indicate.
17874         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
17875         conditions and incorrect layout.  Updated to coding standard.
17876         * ToolBarButton.cs: refactored layout and positioning code from
17877         ToolBar to here.  Invalidate wherever possible instead of forcing
17878         redraws of the whole toolbar. 
17879         (Known remaining issues: explicit ButtonSize smaller than provided
17880         images.)
17881
17882 2006-03-21  Mike Kestner  <mkestner@novell.com>
17883
17884         * ContextMenu.cs (Show): use the position parameter instead of just
17885         showing at the MousePosition.
17886
17887 2006-03-21  Jackson Harper  <jackson@ximian.com>
17888
17889         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
17890         control handle this.
17891         * TreeNodeCollection.cs: If we are clearing the root node we need
17892         to reset top_node so calcs can still happen.
17893         * ThemeWin32Classic.cs: This is a Flags so we need to check
17894         properly.
17895         
17896 2006-03-21  Jackson Harper  <jackson@ximian.com>
17897
17898         * DataGrid.cs: Create columns when the binding context has been
17899         changed.
17900         * X11Structs.cs: Keysyms are uints.
17901         - Add size to fix build.
17902
17903 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
17904
17905         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
17906           XplatUIOSX.cs: 
17907           - Added ResetMouseHover method to allow controls to retrigger
17908             hovering if they need it more than once
17909           - Implemented MouseHoverTime and MouseHoverSize properties
17910         * Timer.cs: Start() must reset the interval
17911         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
17912           properties
17913
17914 2006-03-21  Jackson Harper  <jackson@ximian.com>
17915
17916         * X11Keyboard.cs: improved layout detection. Move the nonchar
17917         tables into this file.
17918         * KeyboardLayouts.cs: Move the tables into resource files.
17919
17920 2006-03-21  Mike Kestner  <mkestner@novell.com>
17921
17922         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
17923
17924 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
17925
17926         * Mime.cs: Various speed optimizations. Looking up mime types
17927           is now 2 times faster than before
17928
17929 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
17930
17931         * CreateParams.cs: Added internal menu field
17932         * Control.cs: 
17933           - Switched call order for UpdateBounds; now we always call
17934             the one that also takes ClientSize, and we're calculating the 
17935             client size via driver method in the others. The previous
17936             method of tracking client size by difference wasn't working
17937             for forms where even the starting client size wouldn't match
17938             the overall form size (due to borders) (Part of fix for #77729)
17939           - CreateParams(): Do not use parent.Handle unless the handle is
17940             already created. Causes havoc with Nexxia and throws off our
17941             creation of controls
17942         * XplatUIX11.cs:
17943           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
17944           - Switched handling of ConfigureNotify over to new PerformNCCalc 
17945             method (consolidates code)
17946           - Changed RequestNCRecalc to use new PerformNCCalc method
17947           - Added calls to RequestNCRecalc when menus and borders are changed
17948             to allow app to set NC size. (Part of fix for #77729) This matches
17949             when MS send a WM_NCRECALC on Win32 windows.
17950           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
17951             (Part of fix for #77729). This matches what MS does, they also
17952             send that message when the form is made visible.
17953           - XException.GetMessage: Improved usability of X errors by including
17954             a translation of the window into Hwnd and Control class
17955           - Improved debug info for window creation, reparenting and destruction
17956           - Created helper method WindowIsMapped() [Currently not used]
17957         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
17958         * Form.cs:
17959           - CreateParams: Now setting our menu on the new internal menu field
17960           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
17961             avoid calculating the same property twice
17962         * Hwnd.cs:
17963           - Improved usability of ToString() for debugging purposes
17964           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
17965             determine the height of the menu, instead of just the font. This
17966             required to also create a graphics context and to keep a bmp 
17967             around (for performance reasons)
17968
17969 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
17970
17971         * MenuAPI.cs: Added OnMouseUp method
17972         * Form.cs:
17973           - Now remembering the requested client size, avoids size errors
17974           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
17975             instead of base if the menu is active. This is required due to
17976             control now capturing and releasing on down/up and it would
17977             prematurely release our menu capture
17978
17979 2006-03-17  Jackson Harper  <jackson@ximian.com>
17980
17981         * KeyboardLayouts.cs: Add the czech layouts.
17982
17983 2006-03-16  Jackson Harper  <jackson@ximian.com>
17984
17985         * Control.cs: Use the viewport space when sizing not the controls
17986         client size, so things like ScrollableControl that effect the
17987         viewport size (when scrollbars are added) are computed correctly.
17988         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
17989         of ManagerEntrys.
17990         - Handle creating BindingManagers for null data sources.
17991         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
17992         source, otherwise when rows are added they are added to the 'fake'
17993         datasource and we will crash when trying to set the position in
17994         those rows.
17995         - Use Implicit scrollbars on the datagrid so they arent
17996         selectable.
17997         
17998 2006-03-16  Jackson Harper  <jackson@ximian.com>
17999
18000         * Binding.cs:
18001         * InternalWindowManager.cs:
18002         * MdiWindowManager.cs:
18003         * X11Keyboard.cs: I really want Mike to love me again (fix
18004         compiler warnings).
18005
18006 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
18007
18008         * DataGrid.cs:
18009           - OnMouseDown: Switch to editing mode when clicking on the cell
18010                          even if we're clicking on the cell that's currently 
18011                          selected
18012           - ProcessGridKey: Left/Right now wrap like MS.Net does
18013           - ProcessGridKey: Tab now knows to add a new row when tab is
18014                             pressed in the cell of the last column of the 
18015                             last row
18016           - ProcessGridKey: Enter now adds another row  if pressed in the last
18017                             row and selectes the new row, same column cell
18018           - ProcessGridKey: Home/End navigate columns, not rows, like 
18019                             originally implemented
18020           - Broke ProcessKeyPreview code out into an extra Internal method
18021             so it can be called from the edit code
18022         * DataGridTextBox.cs (ProcessKeyMessage):
18023           - Switched to accept Tab keypresses
18024           - Added F2 handling to allow jumping to the end of the edited cell
18025           - Added logic to allow moving caret left/right inside edited cell
18026             and making the edited cell jump when the caret hits cell borders
18027           - Tab and Enter are now passed to the datagrid after being handled
18028         * TextBoxBase.cs:
18029           - Removed capture code now that Control handles it
18030           - set_SelectionStart now ensures caret is visible
18031
18032 2006-03-16  Jackson Harper  <jackson@ximian.com>
18033
18034         * TrackBar.cs: Debackwards the increment/decrement for handling
18035         mouse clicks on the bar with vertical trackbars.
18036         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
18037         bottom to match MS.
18038
18039 2006-03-16  Mike Kestner  <mkestner@novell.com>
18040
18041         * ListView.cs: make shift/ctrl keyboard and mouse selection 
18042         consistent with the MS control. Fix a bug in
18043         SelectedListViewItemCollection.Clear that was pissing me off for the
18044         better part of a day because the collection was being altered
18045         underneath us as we walked the list.
18046
18047 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
18048
18049         * Control.cs: Not sure how we could miss this so long, but it seems
18050           that MS.Net has Capture set all the way from before calling 
18051           OnMouseDown through sending the mouse events until after
18052           OnMouseUp. This will fix DataGrid's selection being set to end
18053           at the location of the MouseUp.
18054
18055 2006-03-15  Jackson Harper  <jackson@ximian.com>
18056
18057         * BindingContext.cs: Check the binding after its added so that it
18058           can initialize the binding managers and hookup to events.
18059         * Binding.cs: Data members seem to sometimes include rows/cols in
18060           the format Row.Column we now take this into account.
18061           - Hookup to the position changed event so we can update the
18062           control when the position has changed in the data set.
18063         * CurrencyManager.cs: Take into account the row/col naming
18064           convention when creating dataset tables.
18065         * BindingContext.cs: Using a newer better way of storing
18066           datasource/datamember pairs.  Hopefully this better matches MS for
18067           looking up binding managers.
18068
18069
18070 2006-03-15  Jackson Harper  <jackson@ximian.com>
18071
18072         * BindingContext.cs: The currency manager needs the data member
18073         name, if the member is a data set we use the name to find the
18074         correct table.
18075         * CurrencyManager.cs: When creating the list prefer an IList over
18076         an IListSource.
18077         - Attempt to create a DataTable from a DataSet (TODO: might need
18078         some better error checking here, although MS doesn't seem to have much)
18079         - If we have a DataTable create a view and use it as our list.
18080
18081 2006-03-15  Mike Kestner  <mkestner@novell.com>
18082
18083         * ListView.cs: keep a matrix of the icon mode layout to facilitate
18084         keyboard navigation. Support Up/Down/Left/Right selection correctly
18085         for all 4 View modes.
18086         * ListViewItem.cs: add internal row/col fields for icon layouts.
18087
18088 2006-03-15  Jackson Harper  <jackson@ximian.com>
18089
18090         * TabControl.cs: Redraw the tabs when we resize so their newly
18091         calculated sizes are drawn on screen.
18092         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
18093         composite characters.
18094         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
18095         - filter events so that composite characters can be created
18096         patches by peter
18097         * X11Structs.cs: Add XIMProperties enum.
18098
18099 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
18100
18101         * Control.cs (BringToFront, SendToBack): Don't use window or handle
18102           unless it's created
18103
18104 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
18105
18106         * Control.cs (PerformLayout): We don't need to consider visiblity
18107           for anchoring, only for docking. This fixes 'whacky' alignment
18108           in listbox and other controls that use implicit scrollbars after
18109           the previous PerformLayout patch
18110         * ListBox.cs: Switched to use implicit scrollbars
18111           
18112 2006-03-14  Mike Kestner  <mkestner@novell.com>
18113
18114         * ToolBar.cs: 
18115         * VScrollBar.cs:
18116         - chain up the "new event" overrides to base and use
18117         OnEvent to raise them.  Part of fix for bug #76509.
18118
18119 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
18120
18121         * FileDialog.cs: Do not select an item in the parent directory
18122           on backspace
18123
18124 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
18125
18126         * Control.cs (PerformLayout): It would seem that we considered
18127           invisible windows for our layout. Not quite the right thing
18128           to do. Now we don't any longer, thereby fixing bug #76889.
18129
18130 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
18131
18132         * Control.cs (CanFocus): I goofed. A control can have focus 
18133           even though it's not selectable. Made it match MS docs.
18134
18135 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
18136
18137         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
18138           center by default (fixes #76895)
18139         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
18140           all uses of Border3DSides.All with the explicit ORd together
18141           Left|Right|Top|Bottom because I assume that nobody was aware 
18142           that All also implies a center fill. Most places I checked had
18143           a fill right above.
18144         * ProgressBarStyle.cs: Added
18145
18146 2006-03-13  Mike Kestner  <mkestner@novell.com>
18147
18148         * ListView.cs: fix breakage in drag shadow header positioning 
18149         from Peter's csc compilation fix.
18150
18151 2006-03-13  Mike Kestner  <mkestner@novell.com>
18152
18153         * ListView.cs: fix NRE produced by backspacing twice in a focused
18154         FileDialog.
18155
18156 2006-03-13  Mike Kestner  <mkestner@novell.com>
18157
18158         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
18159
18160 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
18161
18162         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
18163           be changed
18164         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
18165           the allowed size before making programmatic size changes
18166
18167 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
18168
18169         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
18170           set, metacity is broken and will still use the emty sizes in 
18171           the struct. (Fix for #77089)
18172
18173 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
18174
18175         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
18176           WindowExStyles and marked both enums as Flags
18177         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
18178           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
18179           to match WindowStyles split
18180         * XplatUIX11.cs:
18181           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
18182           - Updated to match WindowStyles split
18183         * XplatUIWin32.cs:
18184           - Fixed FosterParent creation, was using ExStyle on the Style field
18185             (This should help with Popup focus issues)
18186           - Updated to match WindowStyles split
18187
18188 2006-03-13  Jackson Harper  <jackson@ximian.com>
18189
18190         * MdiWindowManager.cs: Use the system menu height. Fixes some
18191         strange sizing issues.
18192
18193 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
18194
18195         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
18196         * TextBoxBase.cs:
18197           - Scroll to caret after inserting text (#77672)
18198           - Make scroll range one pixel higher, fixes off-by-one error (and
18199             makes underlines visible on the last line)
18200
18201 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
18202
18203         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
18204           the keyboard state from being stuck with keys in 'pressed' state when
18205           focus is switched away via keyboard
18206         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
18207           reset the keyboard if no X11 KeyUp events are expected to come
18208         * X11Structs.cs: Switched type of Visible to bool to match driver
18209
18210 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
18211
18212         * TextControl.cs:
18213           - Switched caret to be just 1 pixel wide, matches MS and looks less
18214             clunky
18215           - Moved caret display 1 pixel down from the top of the control
18216             to improve view
18217           - InsertCharAtCharet: Update the selection start if moving the caret
18218             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
18219           - No longer always creating the caret when the caret methods are
18220             called. Only the actual ShowCaret/HideCaret will do that now
18221           - Only setting caret visible if the owner control has focus
18222           - UpdateView: Added invalidation-shortcut logic for center and right 
18223             aligned text. Previously we'd update all according to the left
18224             logic which caused drawing errors. Also fixed height of invalidated
18225             areas, now properly invalidating the whole area (was off-by-one)
18226           - owner_HandleCreated: Always generate the document when the
18227             handle is created; this ensures that 
18228         * TextBoxBase.cs:
18229           - Fixed situation where caret would disappear under the right
18230             window border, also improved scrolling behaviour on left-
18231             aligned textboxes
18232           - Fixed right-aligned textboxes to have a border to the
18233             right instead of the caret being under the right border
18234         * XplatUIX11.cs:
18235           - Switched from 'nested' to simple visible/not visible tracking 
18236             for caret (part of fix for #77671)
18237           - No longer passing through translated FocusIn/FocusOut messages
18238             since we were notifying too often and the wrong windows. Instead
18239             we just notify our focussed window of receiving or loosing focus
18240         * XplatUIWin32.cs: Switched from 'nested' show/hide 
18241           counting for caret to simple visible yes/no behaviour (part of 
18242           fix for #77671)
18243
18244 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
18245
18246         * Mime.cs: Remove debug code...
18247
18248 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
18249
18250         * MimeGenerated.cs: Removed
18251         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
18252           and subclasses) from /usr/(local/)share/mime and
18253           $HOME/.local/share/mime.
18254
18255 2006-03-10  Jackson Harper  <jackson@ximian.com>
18256
18257         * MdiWindowManager.cs: Recalc the NC area when a window is
18258         maximized/restored so that the menu area is drawn on forms that
18259         don't have a menu.
18260
18261 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
18262
18263         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
18264           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
18265           us to force a WM_NCCALCRESIZE message being sent. This is needed
18266           for MDI maximizing.
18267
18268 2006-03-10  Jackson Harper  <jackson@ximian.com>
18269
18270         * Form.cs: We need to use the ActiveMenu when calculating menu
18271         height.
18272         - Fix nullref when the window manager hasn't been created yet.
18273         * Control.cs: Fix nullref when we try to bring a control to the
18274         front that has no parent.
18275         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
18276         height.
18277         - Add a dummy item to the maximized menu so it always has the
18278         correct height. Otherwise when there are no menus we don't get our
18279         icon and buttons.
18280         
18281
18282 2006-03-10  Jackson Harper  <jackson@ximian.com>
18283
18284         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
18285         stuff.
18286         * Form.cs: Make the window_state internal so the window managers
18287         can track it.
18288         - When an MDI child is maximized let its window manager create the
18289         main menu (so it can add its icon).
18290         - Notify the window managers of state changes
18291         - Let the window manager paint its buttons and handle button
18292         clicks on the menu when it is maximized.
18293         * InternalWindowManager.cs: Move the prev_bounds into the mdi
18294         window manager, since tool windows don't use it, only mdi windows.
18295         - Tell the main form that we don't want it to handle NCPAINT
18296         itself to avoid extra painting.
18297         - Handle clicks on a maximized windows menu.
18298         - Handle window state changes
18299         - Handle minimize/maximize clicks correctly by setting the window state.
18300         * MdiWindowManager.cs: Add an icon menu that (the menu you get
18301         when clicking on the forms icon).
18302         - New method to create a forms maximized menu. This is its normal
18303         menu + an icon.
18304         - Handle window state changes.
18305         - Handle sizing of maximized windows.  Maximized windows are just
18306         drawn bigger then the parent visible area. All controls are still
18307         there, they are just outside the visible area (this matches windows).
18308         * MdiClient.cs: No scrollbars when a child window is maximized.
18309         - Let the children windows figure out how big they should be when
18310         sizing maximized windows.
18311         - Implement a version of ArrangeIconicWindows somewhat similar to
18312         Windows version.  There are some little differences, but I don't
18313         think any app will rely on the layout of minimized mdi windows.
18314
18315 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
18316
18317         * Padding.cs: Several fixes to allow compiling with csc 2.0
18318
18319 2006-03-09  Jackson Harper  <jackson@ximian.com>
18320
18321         * Menu.cs:
18322         * MenuItem.cs: Cheap hack so we can add items to the list without
18323         the events being raised.  This allows adding mdi items during
18324         drawing. TODO: Should probably find a better time to add the items.
18325
18326 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
18327
18328         * ThemeWin32Classic.cs:
18329           - CheckBox_DrawText: Added logic to not wrap if not enough space
18330             is available (Fix for bug #77727)
18331           - RadioButton_DrawText: Added logic not to wrap if not enough
18332             space is available (Fix for bug #77727). Also removed some
18333             duplicate code, DrawString always drawing the regular text
18334             before hitting the if statement.
18335
18336 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
18337
18338         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
18339
18340 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
18341
18342         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
18343         * ContainerControl.cs: Partial implementation of some 2.0 scaling
18344           methods. Moved the new 2.0 properties into alphabetical order with
18345           other properties and added MonoTODO tags
18346
18347 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
18348
18349         * AutoScaleMode.cs: Added. Fix build.
18350
18351 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
18352
18353         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
18354           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
18355           and was requiring premature handle creation for calls from above
18356         * Form.cs, Control.cs: Removed handle arguments from calls to
18357           CalculateClientRect()
18358
18359 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
18360
18361         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
18362           drag_column.column_rect is MarshalByRef and can't be used that way
18363
18364 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
18365
18366         * AxHost.cs: Added deserialization constructor for 
18367           AxHost+State (fixes 77743)
18368
18369 2006-03-09  Mike Kestner  <mkestner@novell.com>
18370
18371         * ListView.cs: 
18372         - Added column drag reordering for details view.
18373         - fixed behavior when mouse is dragged off column and
18374         AllowColumnReorder is false.
18375         * ColumnHeader.cs: clone the format too in Clone.
18376         * Theme.cs: add DrawListViewHeaderDragDetails method.
18377         * ThemeWin32Classic.cs:
18378         - impl new method for drawing drag column shadows and targets.
18379         - support column offset for details mode in DrawListViewItem.
18380
18381 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
18382
18383         * TextControl.cs: Reset the char_count when the document is cleared
18384           (Fixes bug reported on mono-winforms mailing list)
18385
18386 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
18387
18388         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
18389           of calling base we simply process the key ourselves, since both
18390           DefWindowProc and the handled method would set m.Result. 
18391           (Fixes #77732)
18392
18393 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
18394
18395         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
18396           method also moves the window; instead implemented a copy of
18397           Control.ScaleCore (Part of fix for #77456)
18398         * TextBoxBase.cs: 
18399           - Created new CreateGraphicsInternal method to allow providing
18400             a graphics context when no handle is created without triggering
18401             handle creation. (Part of fix for #77456)
18402           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
18403         * TextControl.cs: 
18404           - Switched Constructor to require TextBoxBase instead of Control (to
18405             allow uncast access to CreateGraphicsInternal)
18406           - Safeguarded use of owner.Handle property. No longer accessing it
18407             unless the handle is already created.
18408           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
18409           - Now triggering a recalc when owning control becomes visible
18410         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
18411           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
18412           premature handle creation (Part of fix for #77456)
18413         * Control.cs:
18414           - We now only destroy our double-buffering buffers when the
18415             control is resized or disposed, but not when visibility
18416             changes. (The code even re-created them twice every time)
18417           - Now requiring a redraw of the buffer on visibility changes
18418             (fixes bug 77654 part 2)
18419           - Not passing OnParentVisibleChanged up unless the control
18420             is visible
18421           - CanFocus: Fixed to match MS documentation
18422           - Focus: Fixed to return actual focus state and to check if
18423             setting focus is legal before setting it
18424
18425 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
18426
18427         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
18428           when to draw focus rectangle by looking at parent focus and
18429           selected state instead. This fixes TabPages on Linux sometimes
18430           having none or multiple focus rectangles.
18431         * XplatUIX11.cs (SetFocus): 
18432           - Don't set the focus if the same window already has focus
18433           - Use SendMessage instead of PostMessage (like it's Win32
18434             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
18435             to match MS behaviour
18436         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
18437           are not selectable.
18438
18439 2006-03-07  Jackson Harper  <jackson@ximian.com>
18440
18441         * PictureBox.cs: Revert line I accidently committed last week.
18442
18443 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
18444
18445         * Control.cs: 
18446           - Added new IsRecreating and ParentIsRecreating properties to
18447             allow testing if RecreateHandle has been called on ourselves
18448             or one of our parents
18449           - WndProc(WM_DESTROY): If our control handle is being recreated
18450             we immediately need to create the handle when receiving the
18451             destroy, that way our child windows find a valid parent handle
18452             when they themselves are being recreated upon WM_DESTROY receipt
18453             (fix for bug #77654 part 1)
18454         * XplatUIX11.cs:
18455           - DestroyWindow: WM_DESTROY must be sent to our own window before
18456             notifying any child windows. MS documents that child windows
18457             are still valid when WM_DESTROY is received. (Control now relies on
18458             this behaviour)
18459           - Added some fine-grain debug options
18460
18461 2006-03-06  Jackson Harper  <jackson@ximian.com>
18462
18463         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
18464         box and base calculations off this.
18465         * MdiChildContext.cs:
18466         * MdiWindowManager.cs: Don't need to ensure scrollbars here
18467         anymore.
18468         
18469 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
18470
18471         * Splitter.cs: In situations where the affected control is added
18472           to the parent's control list after the splitter, we would not
18473           populate affected. Now we try populating it on mousedown, if
18474           it's not already set, and force it to be re-set whenever our
18475           parent changes.
18476
18477 2006-03-03  Matt Hargett  <matt@use.net>
18478
18479         * Control.cs: implement Control.Padding
18480         * Padding.cs: -Padding.All returns -1 when constructing with the
18481         implicit default ctor
18482         -Padding.ToString() matches MS.NET
18483         * ContainerControl.cs: implement
18484         ContainerControl.AutoScaleDimensions
18485         * ListControl.cs: implement ListControl.FormattingEnabled
18486         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
18487         * ButtonBase.cs:
18488         * TabPage.cs: Implement UseVisualStyleBackColor.
18489         * PictureBox.cs: Implement PictureBox.InitialImage.
18490
18491 2006-03-03  Mike Kestner  <mkestner@novell.com>
18492
18493         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
18494         event declarations to proxy to base event.
18495         * ListViewItem.cs: update to use ItemControl.
18496         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
18497         * ThemeWin32Classic.cs: update to new ListView theme API and fix
18498         column header label rendering for 0 width columns.
18499
18500 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
18501
18502         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
18503           that causes the control to be created. Fixes #77476.
18504
18505 2006-03-02  Jackson Harper  <jackson@ximian.com>
18506
18507         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
18508         expose_pending.
18509
18510 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
18511
18512         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
18513           passed in for the EventArgs (fixes #77690)
18514
18515 2006-03-01  Jackson Harper  <jackson@ximian.com>
18516
18517         * ScrollBar.cs: Refresh afterbeing resized.
18518
18519 2006-02-28  Mike Kestner  <mkestner@novell.com>
18520
18521         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
18522         Clean up a tracker compile warning.
18523         * MenuItem.cs: add internal PerformPopup method.
18524         [Fixes #77457]
18525
18526 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
18527
18528         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
18529           implicit expose) when the text is set to null
18530
18531 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
18532
18533         * RichTextBox.cs (FlushText): When newline is true, we always
18534           need to split the line, even if no text is on it and we may
18535           never eat newlines. (Fixes #77669)
18536
18537 2006-02-28  Mike Kestner  <mkestner@novell.com>
18538
18539         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
18540         and set Selected instead.
18541         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
18542         collections.
18543
18544 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
18545
18546         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
18547
18548 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
18549
18550         * FontDialog.cs:
18551           - Got rid of the panel. All controls are now directly added to
18552             the dialog form
18553           - It is now possible to set a font with the Font property
18554           - MinSize and MaxSize property do now what they should
18555           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
18556           - Searching and selecting a font with the font textbox works now,
18557             the same applies to the style and size textbox
18558           - Draw the correct 3D border in the example panel
18559           - Fixed a little mem leak (unused fonts didn't get disposed)
18560           - Many other internal updates/rewrites...
18561           - Fix typo
18562
18563 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
18564
18565         * TextControl.cs: 
18566           - InsertRTFFromStream: Added 'number of characters inserted' argument
18567           - set_SelectedRTF: Now using the number of characters to calculate
18568             the new location for the selection and cursor (x/y cannot be used
18569             due to potentially already wrapped text)
18570
18571 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
18572
18573         * TextControl.cs: Added property and implemented means to allow 
18574           disabling recalculation of a document (can be used to speed up
18575           multiple inserts and is needed to make RTF inserts predictable, see
18576           bug #77659)
18577         * RichTextBox.cs: Using the new NoRecalc property of Document to
18578           keep x/y insert locations predictable. Also makes it faster inserting
18579           large chunks of RTF
18580
18581 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
18582
18583         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
18584           it's easier for a child control to handle the other messages without
18585           having to duplicate the special functionality
18586         * TextBoxBase.cs
18587           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
18588             code to handle processing the key ourselves, in order to get 
18589             access to the result of KeyEventArgs.Handled. We now only call 
18590             ProcessKey if they key hasn't been handled already. Fixes #77526.
18591           - set_Text: If null or empty string is given, just clear the 
18592             document. Fixes part of #77526
18593
18594 2006-02-27  Jackson Harper  <jackson@ximian.com>
18595
18596         * SizeGrip.cs: Paint the background color before painting the grip
18597         so things look right.
18598         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
18599
18600 2006-02-27  Mike Kestner  <mkestner@novell.com>
18601
18602         * ListView.cs:
18603           - Restructure layout and invalidation model to remove a ton of
18604           flicker from the control and speed up performance in general.
18605           - Add manual column resize, flickers like crazy, but I already have
18606           some ideas on how I'll fix that. (#76822)
18607           - Merge the three Icon-based views into a single layout method.
18608           - Move item selection interaction logic from the item since 
18609           interaction with the collections is more appropriate to the view.
18610           - Deselection on non-item clicks.
18611         * ListViewItem.cs:
18612           - Encapsulate most of the layout. Add some internal props to trigger
18613           layout.  Move to a model where Items invalidate themselves instead
18614           of just invalidating the whole control every time something changes.
18615           - Invalidate on Text/Caption changes.
18616           - switch to an offset based layout model to avoid having to absolute
18617           position every element on item moves.
18618           - correct checkbox layout to conform to MS layout.
18619         * ThemeWin32Classic.cs:
18620           - refactor some column header drawing code.
18621           - fix string justification for column headers (#76821)
18622           - make SmallIcon labels top justified for compat with MS impl.
18623         * ThemeClearlooks.cs:
18624           - adjust to new ListViewItem internal checkbox bounds api.
18625
18626 2006-02-27  Jackson Harper  <jackson@ximian.com>
18627
18628         * Control.cs:  Change where implicit controls fall in the zorder.
18629         They are now on top of all children.
18630         - Synced AddImplicit code with Add
18631         - Removed unused enumerator.
18632         * SizeGrip.cs: Remove the TODO as its been TODONE.
18633
18634 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
18635
18636         * TextControl.cs(Insert): Combine the last lines unless the insertion
18637           string ends with \n\n, otherwise we leave one line too many (Fixes
18638           something I noticed with the testapp for #77526; the bug itself was
18639           already fixed in the previous checkin)
18640
18641 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
18642
18643         * RichTextBox.cs:
18644           - SelectionColor and SelectionFont methods no longer set absolute
18645             styles. Instead, the keep font or color respectively (This 
18646             resolves a long-standing FIXME in the code)
18647           - When flushing RTF text, the insert code now considers text trailing
18648             behind the insertion point (Fixes the bug where when replacing
18649             the selected text via SelectedRTF the remainder of the line behind 
18650             the selection would stay on the first insertion line)
18651         * TextBoxBase.cs:
18652           - AppendText now updates the selection points after inserting text
18653           - AppendText now ensures that the last tag (sometimes 0-length) of
18654             the document is used for the style information (Fixes part of 
18655             bug #77220)
18656         * TextControl.cs:
18657           - Created new FontDefiniton class to allow describing partial style
18658             changes
18659           - StreamLine() now takes a lines argument, to allow it to decide
18660             whether an encountered zero-length tag is the last in the document
18661             (which must be kept to not loose the font/color contained in it,
18662             for later appends)
18663           - Created Combine() and Split() methods for Marker structs, to 
18664             support marker updates due to reformatted documents (soft line
18665             wraps)
18666           - Implemented Document.CaretTag setter
18667           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
18668             of the last line (Not the cause, but also exposed by bug #77220)
18669           - Added LineTag argument to InsertString method, to allow callers
18670             to force a certain tag to be used (required to force use of the
18671             trailing zero-length tag of a document)
18672           - Now updating markers in Combine(), to avoid stale tag markers
18673           - Added some method descriptions to aid maintenance
18674           - Implemented new FormatText concept, allowing additive/subtractive
18675             formatting by only specifying the components that are to be 
18676             changed. This was needed for resolving the RTB.SelectedColor/
18677             RTB.SelectedFont fixmes
18678           - Added Break() support method to allow breaking up linetags (used
18679             for partial formatting)
18680           - Added GenerateTextFormat() method. It is used for partial 
18681             formatting and allows to generate a full font/color from given
18682             attributes and an existing tag.
18683
18684 2006-02-26  Jackson Harper  <jackson@ximian.com>
18685
18686         * XplatUIX11.cs:  Use the correct caption height.
18687         - Translate hittest coordinates to screen coords to match MS.
18688         * XplatUIWin32.cs: When we create MDI windows we need to reset
18689         some of the style flags, so we get a nice blank window, and can
18690         draw all the decorations ourselves.
18691         - Set a clipping rectangle on the non client paint event, the
18692         window manager drawing code needs one.
18693         * Form.cs: The window manager needs to know when the window state
18694         has been updated.
18695         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
18696         don't need to factor in border and title sizes in these
18697         methods. TODO: Remove the args and fix the call points.
18698         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
18699         properly.
18700         - Let the driver set the cursors.
18701         - Improve active window handling
18702         - Correct sizes for title bars and buttons.
18703         - Match MS drawing better
18704         * MdiWindowManager.cs: We don't need to handle border style
18705         updates specially anymore.
18706         - Check for scrollbars when windows are done moving
18707         - Handle Active properly.
18708         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
18709         correctly. I am spewing the exception though, so we don't hide the
18710         bugs.
18711         
18712 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
18713
18714         * DataGridViewRowPostPaintEventArgs.cs,
18715           DataGridViewCellPaintingEventArgs.cs,
18716           DataGridViewRowCollection.cs,
18717           DataGridViewRowPrePaintEventArgs.cs,
18718           DataGridViewCell.cs: Clear a few warnings and implement a few
18719           exceptions that should be thrown.
18720
18721 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
18722
18723         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
18724           'inheriting' our parent's (non-default) cursor. (Part of
18725            the fix for #77479)
18726
18727 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
18728
18729         * XplatUIX11.cs: Fixed cast to make csc happy
18730
18731 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
18732
18733         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
18734           it's for the client area (part of fix for #77479 and needed
18735           for MDI window cursor handling)
18736         * XplatUIX11.cs
18737           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
18738             the appropriate default cursors and also passing the message
18739             up the parent chain 
18740           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
18741             for non-client areas
18742
18743 2006-02-15  Jackson Harper  <jackson@ximian.com>
18744
18745         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
18746         is a real MDI window
18747
18748 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
18749
18750         * X11DesktopColors.cs: Instead of checking the desktop session
18751           string for "KDE" check if it starts with "KDE"
18752
18753 2006-02-10  Jackson Harper  <jackson@ximian.com>
18754
18755         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
18756         systems).
18757
18758 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
18759
18760         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
18761           errors
18762         * ColorDialog.cs:
18763           - Got rid of the panel. All controls are now directly added to
18764             the dialog form
18765           - Changed to mono coding style
18766
18767 2006-02-10  Jackson Harper  <jackson@ximian.com>
18768
18769         * InternalWindowManager.cs: We don't need the set visibility to
18770         false hack anymore now that peter has written beautiful shutdown
18771         code.
18772
18773 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
18774
18775         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
18776           where already explicitly destroyed
18777
18778 2006-02-10  Jackson Harper  <jackson@ximian.com>
18779
18780         * MdiClient.cs: Handle the case where windows are too high or to
18781         the left and we need scrollbars.
18782
18783 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
18784
18785         * MimeIcon.cs: Added some icons
18786         * FileDialog.cs:
18787           - Fixed bug #77477
18788           - Got rid of the panel. All controls are now directly added to
18789             the dialog form
18790           - Changed to mono coding style
18791           - On Linux "My Computer" and "My Network" will now show some
18792             more usefull information. A new class, MasterMount, gathers
18793             this information from /proc/mount. Updated MWFFileView to make
18794             use of this information
18795           - Fixed a bug that caused FileDialog to crash when
18796             ".recently_used" file had a zero size
18797           - FilterIndex does now what it should
18798           - Some Refactoring
18799         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
18800             FileDialog changes
18801
18802 2006-02-09  Jackson Harper  <jackson@ximian.com>
18803
18804         * ComboBox.cs: Don't touch if null.
18805
18806 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
18807
18808         * Cursor.cs: 64bit safeness fix
18809         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
18810
18811 2006-02-09  Jackson Harper  <jackson@ximian.com>
18812
18813         * Form.cs: If a form is made into an MDI form update the styles so
18814         all the props can get set correctly.
18815         - Kill the mdi_container when we dont need it anymore.
18816         * InternalWindowManager.cs: Add missing NOT
18817
18818 2006-02-08  Jackson Harper  <jackson@ximian.com>
18819
18820         * InternalWindowManager.cs: Respek clipping when drawing MDi
18821         decorations.
18822
18823 2006-02-08  Jackson Harper  <jackson@ximian.com>
18824
18825         * Hwnd.cs: Add bits to track non client expose events.
18826         * XplatUIX11.cs: Track non client expose events on the hwnd. This
18827         gives us a proper invalid rect and will allow for some nice
18828         optimizations with NC client drawing
18829         - MDI windows are children windows, so move their style handling
18830         into the child window block.
18831         * InternalWindowManager.cs: Remove a state reset that was
18832         getting invoked at the wrong time. Fixes managed windows getting
18833         into a 'stuck' captured state.
18834
18835 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
18836
18837         * TextControl.cs (Document.ctor): Now initializing 
18838           selection_anchor. Fixes #77493
18839
18840 2006-02-07  Jackson Harper  <jackson@ximian.com>
18841
18842         * TrackBar.cs: The increment/decrements were backwards.
18843
18844 2006-02-07  Mike Kestner  <mkestner@novell.com>
18845
18846         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
18847         to the instance itself.
18848
18849 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
18850
18851         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
18852           on ulongs and pointers, the size differs between 32bit and 64bit
18853           systems. 
18854
18855 2006-02-07  Mike Kestner  <mkestner@novell.com>
18856
18857         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
18858         for 64 bit platforms to work around a metacity bug. 
18859
18860 2006-02-07  Jackson Harper  <jackson@ximian.com>
18861
18862         * TrackBar.cs: Process the input keys we need, and hookup to
18863         KeyDown instead of using WndProc, so we get key messages.
18864
18865 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
18866
18867         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
18868           machine we're on. 
18869         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
18870           we need to translate the XdndVersion atoms array before sending it
18871
18872 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
18873
18874         * XplatUIX11.cs: 
18875           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
18876             number of bits for the property, not the number of bytes. The
18877             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
18878             but would not crash since it specified 8 bits instead of 4 bits)
18879           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
18880             defined as XID -> long in the C headers)
18881           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
18882             references since those are now IntPtr to begin with
18883           - Switched all Atom.XXX 'int' casts to IntPtr casts
18884           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
18885           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
18886           - Added XChangeActivePointerGrab DllImport (for X11DnD)
18887         * X11Structs.cs:
18888           - Changed 'int' type for Atoms in XEvent structures to IntPtr
18889           - Changed atom in HoverStruct to be IntPtr
18890         * X11DnD.cs:
18891           - Removed local DllImports, switched code to use those from XplatUIX11
18892           - Removed/fixed casts related to the switch of Atom to be a IntPtr
18893
18894 2006-02-06  Mike Kestner  <mkestner@novell.com>
18895
18896         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
18897         method signatures in the import region.  There may still be some
18898         lingering struct marshaling issues, as I didn't drill down into those.
18899         Yet.
18900
18901 2006-02-06  Jackson Harper  <jackson@ximian.com>
18902
18903         * ComboBox.cs: Dont manually set the top_item, this is computed
18904         when the scrollbar position is set.
18905
18906 2006-02-06  Mike Kestner  <mkestner@novell.com>
18907
18908         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
18909         startup crashes on amd64.  There's other fixes needed.  All pinvoke
18910         usage of Atom needs to be mapped to IntPtr for example.  And there are
18911         likely other int/long issues to be addressed.
18912
18913 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
18914
18915         * FileDialog.cs: One more...
18916
18917 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
18918
18919         * FileDialog.cs: Next try
18920
18921 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
18922
18923         * FileDialog.cs: First part of fix for #77464
18924
18925 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
18926
18927         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
18928           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
18929           AcceptButton border drawing.
18930
18931 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
18932
18933         * Form.cs: Moved positioning of form after auto scaling is applied,
18934           otherwise it would possibly use wrong form size.
18935
18936 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
18937
18938         * Control.cs (RecreateHandle): No need to re-create any child
18939           controls, the child windows will get destroyed automatically by
18940           the windowing system or driver, and re-created when the handle
18941           is being accessed the first time. Fixes #77456
18942         * Form.cs: No longer setting the form to closing if the handle is 
18943           being recreated. This seems like the right thing to do, don't
18944           have a bug or testcase for this, though.
18945
18946 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
18947
18948         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
18949           controls to avoid unwanted side effects
18950
18951 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
18952
18953         * Control.cs: 
18954           - ScaleCore needs to scale the bounds, not the ClientSize of the 
18955             control. Fixes #77416.
18956           - DefaultSize is 0,0 for control
18957         * TextBoxBase.cs: 
18958           - DefaultSize is 100, 20
18959           - SetBoundsCore: Now enforcing the height, no matter if the provided
18960             height is more or less than the preferred one, as long as AutoSize
18961             is on
18962         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
18963
18964 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
18965
18966         * Control.cs:
18967           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
18968             call unless both performLayout is true *and* we have a pending
18969             layout change
18970           - ResumeLayout: MS does not completely nest Suspend and Resume,
18971             they bottom out at 0, fixed our code to match that.
18972           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
18973             SetBoundsCore, we were updating even when we shouldn't. This fixes
18974             swf-anchors mis-anchoring when resizing the app fast and lots.
18975           - UpdateDistances: Now only setting the left and top distance if 
18976             we have a parent and are not suspended, this is based on
18977             a suggestion by Don Edvaldson in bug #77355.
18978           - OnVisibleChanged: Fixed logic when to create the control. We may
18979             not create the control if we have no parent or if it's not visible;
18980             switched to using Visible property instead of is_visible field 
18981             since the property also considers parent states. This fixes a bug
18982             when starting Paint.Net
18983
18984 2006-02-02  Jackson Harper  <jackson@ximian.com>
18985
18986         * Form.cs: If the forms handle hasn't been created yet don't call
18987         into xplatui to make it top most, just set the topmost flag on the
18988         form in CreateParams
18989         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
18990
18991 2006-02-01  Jackson Harper  <jackson@ximian.com>
18992
18993         * ScrollableControl.cs: Refactored the Recalculate method a
18994         little, this wasn't handling all the variants of bottom and right
18995         bars needed to be added and added/removed based on their
18996         counterparts being added/removed (which changes the drawable
18997         size). Also we special case client widths and heights of 0 and
18998         don't add the scrollbar for those.
18999
19000 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
19001
19002         * XplatUIX11.cs: 
19003           - Added method to get AbsoluteGeometry(); currently unused, but might
19004             be used in the future, if we try again to figure out toplevel
19005             coordinates with some more crappy window managers
19006           - Added FrameExtents() method to retrieve the WM set decoration size
19007           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
19008             to deal with at least KDE, FVWM and metacity (Fixes #77092)
19009         * Hwnd.cs: 
19010           - Added whacky_wm tracking var for metacity
19011           - Added logic to have default menu height if the actual menu height
19012             has not yet been calculated (part of fix for #77426)
19013         * Form.cs: Keep track whether client size has been set and re-set 
19014           it if a menu is added/removed afterwards (Fixes #77426)
19015
19016 2006-01-31  Jackson Harper  <jackson@ximian.com>
19017
19018         * Control.cs: When a new Site is set on the component attempt to
19019         pull the AmbientProperties from it.
19020
19021 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
19022
19023         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
19024           in the background of the owning form. Fixes #77332
19025
19026 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
19027
19028         * MimeIcon.cs: Fix for #77409
19029
19030 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
19031
19032         * XplatUIX11GTK.cs: Initial import
19033
19034 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
19035
19036         * FixedSizeTextBox: fixes class signature
19037
19038 2006-01-30  Jackson Harper  <jackson@ximian.com>
19039
19040         * FixedSizeTextBox.cs: New internal class that represents a
19041         textBox that will not be scaled.
19042         * TreeView.cs:
19043         * ComboBox.cs:
19044         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
19045         standard TextBox.
19046                 
19047 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
19048
19049         * XplatUIX11.cs: Retrieve default screen number instead of
19050           assuming 0. Attempted fix for #77318
19051
19052 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
19053
19054         * XplatUIWin32.cs: 
19055           - GetWindowPos: When a window is parented by FosterParent, use 
19056             the desktop instead of FosterParent as the base to get coordinates
19057           - CreateWindow: Don't make FosterParent the parent window for Popups
19058             if we don't want a taskbar entry, Popups automatically don't get one
19059         * Hwnd.cs: Need to call remove to actually remove the key from the
19060           hash table
19061
19062 2006-01-30  Mike Kestner  <mkestner@novell.com>
19063
19064         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
19065
19066 2006-01-30  Jackson Harper  <jackson@ximian.com>
19067
19068         * TreeView.cs:
19069         * TreeNode.cs: Raise events no matter how the treenode is
19070         checked. Patch by Don Edvalson.
19071
19072 2006-01-30  Jackson Harper  <jackson@ximian.com>
19073
19074         * TreeNode.cs: Signature fix.
19075
19076 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
19077
19078         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
19079
19080 2006-01-20  Mike Kestner  <mkestner@novell.com>
19081
19082         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
19083         event forwarding when menus are active.
19084         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
19085         Most of the patch is pdb's with a little rework.
19086
19087 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
19088
19089         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
19090           Removed GetMenuDC and ReleaseMenuDC methods; replaced
19091           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
19092         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
19093         * InternalWindowManager.cs: Added use of PaintEventStart/End to
19094           handling of WM_NCPAINT message, now passing the PaintEventArgs to
19095           the PaintWindowDecorations method
19096         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
19097         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
19098         * MenuAPI.cs: Made tracker window invisible
19099         * XplatUIWin32.cs:
19100           - Removed GetMenuDC and ReleaseMenuDC methods
19101           - Implemented the client=false path for PaintEventStart and
19102             PaintEventEnd
19103
19104 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
19105
19106         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
19107         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
19108           styles
19109         * Form.cs: 
19110           - MaximizeBox, MinimizeBox: Recreate the handle when setting
19111             the style
19112           - CreateParams: Reworked the styles to match MS look'n'feel,
19113             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
19114             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
19115
19116 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
19117
19118         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
19119           window is not mapped, since otherwise every form that's being 
19120           created is considered minimized, which is wrong.
19121         * Form.cs: Catching the exception and returning our internal value
19122           instead
19123
19124 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
19125
19126         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
19127           SetWindowMinMax() to have means to tell the driver about the minimum,
19128           maximum and maximized state window sizes. (Part of the fix for #76485)
19129         * Form.cs:
19130           - Implemented tracking of minimum and maximum window size, now calling
19131             new SetWindowMinMax() driver method to tell the driver (Part of the
19132             fix for #76485)
19133           - Finished handling of WM_GETMINMAXINFO method, now setting all values
19134             (Completes fix for #76485)
19135           - Calling new SetWindowMinMax driver method when the handle for a 
19136             form is created, to make sure the driver knows about it even if
19137             the values have been set before the window was created
19138           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
19139             to avoid messing up our anchoring calculations (partial fix
19140             for #77355)
19141         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
19142         * XplatUIX11.cs:
19143           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
19144           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
19145             (and presumably other freedesktop.org compliant WMs). Left the
19146             assumption unmapped=minimized, needed for SetVisible to work.
19147           - Now setting the window state when creating windows
19148           - Fixed SetVisible to consider/set the window state when mapping
19149             a Form. We cannot set the state before it's mapped, and we cannot
19150             use Form.WindowState once it's mapped (since it would ask the
19151             driver and get 'normal'. Therefore, we grab the state before
19152             mapping, map, and then set state.
19153           - Implmemented SetWindowMinMax method; Metacity does not seem to
19154             honor the ZoomHints, though.
19155         * XplatUIWin32.cs:
19156           - Removed MINMAXINFO (moved to XplatUIStructs)
19157           - Added SetWindowMinMax stub (on Win32 the only way to set that
19158             information is in response to the WM_GETMINMAXINFO message, which
19159             is handled in Form.cs)
19160           - Added logic to SetVisible to set the proper window state when a 
19161             form is made visible (fixes #75720)
19162
19163 2006-01-26  Jackson Harper  <jackson@ximian.com>
19164
19165         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
19166         same way we handle them with Invoke.
19167
19168 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
19169
19170         * Form.cs:
19171           - Added tracking of window state so CreateParams can return
19172             the appropriate style
19173           - Moved setting of WS_CAPTION style in CreateParams to allow
19174             styles without caption
19175         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
19176           control if the TextBox property is accessed. Fixes #77345
19177         * Control.cs:
19178           - get_Created: now uses is_disposed and is_created to determine
19179             return value (suggested by Jackson)
19180           - CreateHandle: No longer exits if the handle is being recreated
19181           - RecreateHandle: If the handle is not yet created call the 
19182             appropriate method to create either control or handle. If the
19183             control is already created CreateHandle will simply exit instead
19184             of just creating the handle
19185         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
19186           now SendMessage WM_DESTROY directly to the control when DestroyWindow
19187           is called.
19188         * XplatUIX11.cs: 
19189           - When DestroyWindow is called, instead of waiting for the 
19190             DestroyNotification from X11, we directly post it to the WndProc
19191             and immediately dispose the hwnd object.
19192             Same applies to DestroyChildWindows, and this obsoletes the
19193             expose_pending tracking. Contrary to Win32 behaviour we destroy our
19194             child windows before our own, to avoid X11 errors.
19195           - Removed the direct sending of WM_PAINT on UpdateWindow
19196         * XplatUIWin32.cs:
19197           - Reworked DoEvents and GetMessage to allow access to internal queue
19198             even when trying non-blocking access to the queue.  Fixes #77335. 
19199             Based on a patch suggestion by Don Edvalson. The new private
19200             GetMessage can now also be used as a backend for a PeekMessage
19201             frontend version.
19202         * XplatUI.cs: Improved debug output for CreateWindow
19203
19204 2006-01-25  Jackson Harper  <jackson@ximian.com>
19205
19206         * Help.cs: Allow param to be null. Patch by Don Edvalson.
19207
19208 2006-01-24  Jackson Harper  <jackson@ximian.com>
19209
19210         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
19211         when we have a MaxDropItems lower then the selected index.
19212
19213 2006-01-24  Jackson Harper  <jackson@ximian.com>
19214
19215         * Control.cs: Don't allow selection of non visible controls, allow
19216         selection of controls without parents.
19217
19218 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
19219
19220         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
19221         * DataGridDrawingLogic.cs: Add editing row only when is necessary
19222
19223 2006-01-23  Jackson Harper  <jackson@ximian.com>
19224
19225         * UpDownBase.cs: Make the textbox handle all the selection and
19226         tabbing. This fixes tabing to updown controls.
19227
19228 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
19229
19230         * TextBoxBase.cs: fixes exception thown the object was null
19231
19232 2006-01-23  Jackson Harper  <jackson@ximian.com>
19233
19234         * ButtonBase.cs: Just use the base CreateParams. They set
19235         visibility and enabled correctly.
19236         * ComboBox.cs:
19237         * TrackBar.cs:
19238         * MonthCalendar.cs: Lets let the base set as much of the
19239         createparams as possible so we don't have duplicate code all over
19240         the place.
19241
19242 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
19243
19244         * ThemeGtk.cs: Added TrackBar and some experimental code to
19245           get double buffering back
19246
19247 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
19248
19249         * DataGrid.cs: Allows row number set internally higher than the last
19250         when creating a new row. Restores the editing functionality.
19251
19252 2006-01-20  Mike Kestner  <mkestner@novell.com>
19253
19254         * MimeIcon.cs: delay Image creation until the icons are accessed
19255         instead of creating 190 scaled images on GnomeHandler startup.
19256
19257 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
19258
19259         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
19260           first call base before processing the event. Fixes #77279
19261
19262 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
19263
19264         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
19265           that the stride for the GDI bitmap would match the stride of
19266           a DIB or a Cursor.
19267
19268 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
19269
19270         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
19271
19272 2006-01-19  Jackson Harper  <jackson@ximian.com>
19273
19274         * ComboBox.cs: Hookup the text controls keydown event so we get
19275         those when the text control has the focus.
19276
19277 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
19278
19279         * Label.cs: Now using the base events instead of defining new ones;
19280           this allows us to just call the base properties without having to
19281           duplicate all base property logic 
19282
19283 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
19284
19285         * Label.cs: A label by default is not a tabstop (Fixes one of our
19286           failing nunit tests)
19287
19288 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
19289
19290         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
19291         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
19292
19293 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
19294
19295         * Cursor.cs: Reimplemented creating cursor bitmaps without using
19296           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
19297           This fixes #77218
19298         * XplatUIWin32.cs: 
19299           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
19300             constructor creates images that can't be saved. Part of the fix
19301             for #76103
19302           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
19303           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
19304             bug fix for handling window state in forms properly)
19305
19306 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
19307
19308         * ThemeGtk.cs: Simplify ScrollBar drawing
19309
19310 2006-01-18  Jackson Harper  <jackson@ximian.com>
19311
19312         * Splitter.cs: Set the default dock style for the splitter control
19313         in the constructor.
19314
19315 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
19316
19317         * ThemeGtk.cs: Corrected StateType and ShadowType for
19318           gtk_paint_box
19319
19320 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
19321
19322         * Control.cs: Make use of Theme.DoubleBufferingSupported
19323         * ThemeGtk.cs:
19324           - Added drawing for flat style buttons
19325           - Added ScrollBar drawing
19326
19327 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
19328
19329         * ThemeClearlooks.cs: Removed some unneeded code.
19330         * ThemeGtk.cs: First part of ThemeGtk enhancements.
19331
19332 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
19333
19334         * LinkLabel.cs: We need to update the hover drawing when
19335           leaving the control as well.
19336
19337 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
19338
19339         * DataGrid.cs: Clicking on non empty areas in the columns
19340            area was giving an exception
19341
19342 2006-01-17  Jackson Harper  <jackson@ximian.com>
19343
19344         * ThemeWin32Classic.cs:
19345         * ListView.cs: Do not draw/clip the headers when the header style
19346         is None.
19347
19348 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
19349
19350         * DataGrid.cs: Fixes 77260
19351         
19352 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
19353
19354         * DataGrid.cs: Clicking on a column on a empty grid was giving
19355           an exception
19356
19357 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
19358
19359         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
19360           or any keypress will crash the grid.
19361
19362 2006-01-17  Mike Kestner  <mkestner@novell.com>
19363
19364         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
19365         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
19366         invisible/previously-visible items.
19367         [Fixes #76909]
19368
19369 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
19370
19371         * ThemeClearlooks.cs:
19372         - Added CL_Draw_Button method; now other theme controls that are 
19373           not derived from button or do not have a button can draw buttons
19374           too
19375         - Updated ComboBox drawing
19376         - Beautified RadioButton drawing
19377         - Corrected drawing of bottom and left tabs
19378         - Beautified DateTimePicker and MonthCalendar
19379         - Added CPDrawButton and CPDrawRadioButton
19380
19381 2006-01-16  Jackson Harper  <jackson@ximian.com>
19382
19383         * ComboBox.cs: Set the initial value of the scrollbar to the
19384         current index. Reduce the numbers of refreshs and IndexOfs called.
19385
19386 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
19387
19388         * FileDialog.cs: When the file listview is focused hitting the
19389           backspace key moves the fileview to the parent directory
19390
19391 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
19392
19393         * Form.cs: 
19394           - Added RecreateHandle call when changing taskbar visibility to 
19395             trigger reparenting in Win32 driver (Fixes #75719)
19396           - If a window has minimize or maximize buttons, it cannot have
19397             a help button
19398         * XplatUIWin32.cs:
19399           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
19400             the toplevel form with FosterParent (A toolwindow not on the
19401             taskbar) (Fixes #75719)
19402           - Made FosterParent a toolwindow
19403
19404 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
19405
19406         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
19407
19408 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
19409
19410         * ToolTip.cs: If SetToolTip is called from a control and the mouse
19411           is currently over that control, make sure that tooltip_window.Text
19412           gets updated
19413
19414 2006-01-13  Mike Kestner  <mkestner@novell.com>
19415
19416         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
19417
19418 2006-01-13  Jackson Harper  <jackson@ximian.com>
19419
19420         * TreeView.cs: On MS GetNodeAt never actually factors in the X
19421         value passed.  Also redraw the selected node when we recieve
19422         focus, so tabbing between trees works correctly.
19423
19424 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
19425
19426         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
19427           ~/.gconf/%gconf-tree.xml, so use
19428           .gconf/desktop/gnome/interface/%gconf.xml
19429
19430 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
19431
19432         * TextControl.cs: Draw text in gray if control is disabled
19433
19434 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
19435
19436         * TreeView.cs: Draw the focus rectangle outside the highlight, to
19437           make sure it's always visible. Fixes #76680.
19438
19439 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
19440
19441         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
19442
19443 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
19444
19445         * PageSetupDialog.cs: Added.
19446         * PrintDialog.cs: Attributes.
19447         * PrintPreviewControl.cs: Updates.
19448         * PrintPreviewDialog.cs: Updates.
19449         
19450 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
19451
19452         * Control.cs: Undid my selection check fix, since it's not needed
19453         * TextBoxBase.cs:
19454           - Now considering the presence of hscroll/vscroll when sizing
19455             vscroll/hscroll respectively. Fixed bug #77077
19456           - Added Left/Up/Down/Right to IsInputKey list to prevent
19457             ContainerControl from stealing them. This fixes what I broke
19458             with my last checkin.
19459
19460 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
19461
19462         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
19463           I finally understand how the property can be set without a setter :-)
19464
19465 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
19466
19467         * Application.cs:
19468           - Switched RunLoop to use static Message.Create to create a 
19469             Message object
19470           - Added PreProcessMessage call in runloop for keyboard events; this
19471             is part of the fix for #77219, I overlooked this originally in the
19472             MSDN doc for PreProcessMessage
19473         * Control.cs:
19474           - Removed call to PreProcessMessage from handling of keyboard 
19475             messages; it's supposed to be done in the message pump
19476           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
19477             per MSDN documentation.
19478           - IsInputChar: All chars are input chars by default; removed the 
19479             parent calling chain, MS does not document that
19480           - PreProcessMessage: If IsInputChar is true, we want to return false
19481             to allow dispatching of the message
19482           - When selecting the next control, now also check that we're not
19483             selecting ourselves again and therefore return a false positive.
19484         * TextBoxBase.cs:
19485           - Tried to match return values for IsInputKey and ProcessDialogKey
19486             to what MS returns; moved processing of our special keys outside
19487             ProcessDialogKey since MS does not seem to return true on those.
19488           - Moved code that previously was in ProcessDialogKey into new private
19489             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
19490           - Reworked handling of WM_CHAR to not have to duplicate code from
19491             Control.cs anymore, instead we simply call down to base.
19492            
19493 2006-01-12  Jackson Harper  <jackson@ximian.com>
19494
19495         * ComboBox.cs: We always need to refresh the text area when
19496         EndUpdate is called. Fixes the combobox in the file dialog.
19497         * Control.cs: Don't create the creator_thread until the controls
19498         handle is created.  Also in InvokeRequired we check if the
19499         creator_thread is null. This gives the effect of InvokeRequired
19500         returning true if the controls handle is not created yet, and
19501         matches MS.
19502
19503 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
19504
19505         * XplatUI.cs:
19506           - Added StartLoop() driver method. This is used to allow drivers to
19507             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
19508             loop for a particular thread
19509           - Added EndLoop() driver method. This is called once the message
19510             pump for the thread is shut down
19511           - Added SupportsTransparency method to allow the driver to indicate
19512             opacity support for windows
19513         * Form.cs:
19514           - Removed TODO attribute, completed AllowTransparency property
19515           - Added documented logic to Opacity
19516         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
19517           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
19518           versions of CompatibleTextRendering
19519         * X11Structs.cs: Added opacity atom to our atom enumeration
19520         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
19521           of a form might be set before it's reparented by the WM, and we need
19522           the opacity value without calling up to Form)
19523         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
19524           SupportsTransparency() driver methods
19525         * Application.cs: Now calling StartLoop and EndLoop driver methods
19526         * XplatUIX11.cs:
19527           - Added opacity atom registration
19528           - Added StartLoop()/EndLoop() methods. They're empty right now but
19529             will need to get implemented when we switch to a per-thread queue
19530           - Implemented SupportsTransparency() method
19531           - Implemented SetWindowTransparency() method
19532           - Added support for setting the opacity value when a window is
19533             reparented (since the opacity needs to be set on the WM frame)
19534         * XplatUIOSX.cs, XplatUIWin32.cs:
19535           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
19536
19537 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
19538
19539         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
19540
19541 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
19542
19543         * FileDialog.cs: Added ToolTip for MWFFileView
19544         * MimeIcon.cs: Rewrote GnomeHandler.
19545           - Get currently used gnome icon theme from
19546             ($HOME)/.gconf/%gconf-tree.xml
19547           - Make use of inherited icon themes
19548           - Support SVG icon themes like Tango via librsvg
19549
19550 2006-01-12  Miguel de Icaza  <miguel@novell.com>
19551
19552         Revert's Jackson's revert which broke 2.0 builds.   Fix both
19553         builds. 
19554         
19555         * Application.cs: Move the use_compatible_text_rendering outside
19556         the NET_2_0 define.  If we ever need to use the
19557         use_compatible_text_rendering on the individual controls they will
19558         access the variable from the common shared code paths.
19559
19560 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
19561
19562         * XplatUI.cs:
19563           - Added more granular debug options
19564           - Added method to print both window text and id
19565           - Switched debug output to use new Window() debug method
19566           - Added IsEnabled() driver method
19567           - Added EnableWindow() driver method
19568         * Form.cs:
19569           - Removed end_modal; no longer needed, new loop handles termination
19570             via 'closing' variable
19571           - If form is modal, setting DialogResult will now initiate loop
19572             termination via 'closing' variable
19573           - Added support for is_enabled/WS_DISABLED to CreateParams
19574           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
19575             does all the work
19576           - Removed code that's now in RunLoop from ShowDialog()
19577           - Added various documented sanity checks to ShowDialog()
19578           - Added handling of WM_DESTROY message; we set 'closing' on getting
19579             the message to indicate the message pump to terminate
19580           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
19581             send by the Application.ExitThread method. (We send the message
19582             to destroy the window after all other events have been
19583             processed through the queue, instead of destroying the handle 
19584             directly)
19585           - Moved code from Close() method to WM_CLOSE handler; added logic
19586             to only send close-related events if the form is not displayed
19587             modal
19588         * Splitter.cs (..ctor): Fixed typo in resource name
19589         * Control.cs:
19590           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
19591             brush now
19592           - set_Cursor: Now only setting calling into XplatUI if the handle for
19593             the control is already created; this avoids implict handle creation
19594             or crashes if it's not created
19595           - set_Enabled: Now setting the enabled state via the new driver method
19596             instead of just tracking it
19597           - CreateParams: Added logic to set WS_DISABLED based on enabled state
19598           - CreateControl: Reordered event firing and method calls to more
19599             closely fire events in the order MS does. Now setting the
19600             enabled state in the driver when creating the control.
19601           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
19602             match MS order
19603         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
19604           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
19605         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
19606         * Hwnd.cs:
19607           - Added tracking of window enabled state (get_Enabled/set_Enabled)
19608           - Added EnabledHwnd property to easily allow a driver to find the
19609             handle of the first enabled window in the parent chain (this is
19610             used by drivers to pass up input events of disabled windows)
19611         * XplatUIDriver.cs: Added IsEnabled() method
19612         * Application.cs:
19613           - Removed crude and obsolete exiting tracking variable
19614           - Removed internal ModalRun(); replaced by RunLoop()
19615           - Implemented private CloseForms() method to allow closing all 
19616             windows owned by a particular (or all) threads
19617           - Exit() now properly closes all windows without forcing the message
19618             pump to quit
19619           - Removed obsolete InternalExit() method
19620           - Changed Run() methods to use new RunLoop() message pump
19621           - Implemented new RunLoop() method for both modal and non-modal forms
19622         * CommonDialog.cs:
19623           - get_CreateParams: Added setting of WS_DISABLED
19624           - Simplified ShowDialog(); now all the work is done in RunLoop(),
19625             invoked via Form.ShowDialog()
19626         * NativeWindow.cs: We don't remove the window from the collection when
19627           the handle is destroyed; there might still be messages for it in the
19628           queue (mainly the resulting WM_DESTROY); instead it will be removed
19629           when Control calls InvalidateHandle in the WM_DESTROY handler
19630         * XplatUIX11.cs:
19631           - CreateWindow: Added logic to handle the WS_DISABLED window style
19632           - EnableWindow: Implemented based on Hwnd.Enabled
19633           - GetMessage: Reset PostQuitState so the method can be called again
19634           - Implemented support for disabled windows (passing messages to the
19635             first enabled parent) in handling all input messages
19636           - Added optimizations for handling Expose events
19637           - Implemeted new driver method IsEnabled()
19638           - Now always resetting paint pending tracking vars when we start paint
19639           - Re-implemented UpdateWindow via just sending a WM_PAINT message
19640         * XplatUIOSX.cs: Added IsEnabled method stub
19641         * XplatUIWin32.cs: Implemented new IsEnabled() method
19642
19643 2006-01-11  Jackson Harper  <jackson@ximian.com>
19644
19645         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
19646         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
19647         variables a little.
19648         * ColorDialog.cs: Clear out the old form before adding the new
19649         panel.  
19650
19651 2006-01-11  Jackson Harper  <jackson@ximian.com>
19652
19653         * X11Dnd.cs: Make sure to add all the text formats when adding
19654         strings to the data object.
19655         * TreeNodeCollection.cs: When adding to a sorted tree we need to
19656         do some redrawing too.  Also change the UpdateNode to an
19657         UpdateBelow so the newly added node gets painted.
19658         
19659 2006-01-11  Miguel de Icaza  <miguel@novell.com>
19660
19661         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
19662         LinkLabel.cs, PropertyGrid.cs: Implement the
19663         UseCompatibleTextRendering property for 2.x
19664
19665         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
19666
19667 2006-01-11  Jackson Harper  <jackson@ximian.com>
19668
19669         * TreeView.cs: Use the property for setting the selected node so
19670         the correct events get raised.
19671         * TreeNode.cs: Update the tree when the fore/back colours of a
19672         node are set.
19673
19674 2006-01-10  Jackson Harper  <jackson@ximian.com>
19675
19676         * TreeView.cs: Allow setting SelectedNode to null.
19677
19678 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19679
19680         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
19681
19682 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19683
19684         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
19685
19686 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19687
19688         * PrintDialog.cs: Added attributes and set default property values.
19689
19690 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19691
19692         * PrintControllerWithStatusDialog.cs: 
19693         Added PrintControllerWithStatusDialog.
19694
19695 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19696
19697         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
19698         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
19699
19700 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19701
19702         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
19703
19704 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
19705
19706         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
19707         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
19708
19709 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
19710
19711         * MimeIcon.cs: Added internal class SVGUtil.
19712
19713 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
19714
19715         * FileDialog.cs: Don't crash if there are two files with the
19716           same name but different locations.
19717
19718 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
19719
19720         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
19721         dates across multiple month grids. Used to not highlight entire 
19722         month, but does now.
19723         
19724 2006-01-06  Jackson Harper  <jackson@ximian.com>
19725
19726         * MonthCalendar.cs: Removed DoEvents call to prevent a running
19727         message loop. Change timer intervals to numbers that seem more
19728         natural.
19729
19730 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
19731
19732         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
19733           object for location info since screen object is now implemented.
19734
19735 2006-01-05  Jackson Harper  <jackson@ximian.com>
19736
19737         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
19738         * AsyncMethodResult.cs: We no longer use a WeakReference for the
19739         AsyncMethodResult, this is because we ALWAYS want the
19740         ManualResetEvent to get set.
19741         * Control.cs: When disposing use an async invoke to call shutdown
19742         code, so that thigns don't block on the finalizer thread.  Also
19743         check if we even have a message loop before trying to send
19744         messages, if we don't then don't bother sending messages.
19745         - No more weak references for async methods
19746         * XplatUIDriver.cs: No more weak references for async methods.
19747
19748 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
19749
19750         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
19751           returns two FontFamily with the same name
19752
19753 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
19754
19755         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
19756           drawing disabled text. Instead using the ColorGrayText color
19757
19758 2006-01-04  Jackson Harper  <jackson@ximian.com>
19759
19760         * TreeNode.cs: redraw the node when its image index is changed.
19761
19762 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
19763
19764         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
19765           time I checked there are no others like it.
19766
19767 2006-01-04  Jackson Harper  <jackson@ximian.com>
19768
19769         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
19770         this gives the behavoir I was looking for.
19771         * Control.cs: Special case Invoking EventHandlers, this matches MS
19772         and fixes part of bug #76326.
19773
19774 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
19775
19776         * ThemeClearlooks.cs, FileDialog.cs:
19777           - Reflect the latest Theme class changes
19778           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
19779             with DateTime
19780             
19781 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
19782
19783         * Theme.cs: Cache UI resource images and resize them if needed
19784
19785 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
19786
19787         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
19788           is called. This fixes the crash in Nexxia when setting the font
19789           attributes in the chat. [However, RTF needs a look-over to make sure
19790           that all SelectionXXX methods handle the special case that selection
19791           is empty and therefore the change must be applied to all text starting
19792           at the cursor/selection start]
19793
19794 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
19795
19796         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
19797           XplatUIOSX.cs: Added SendMessage and PostMessage methods
19798         * X11Keyboard.cs: Switched to new way of calling PostMessage
19799
19800 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
19801
19802         * Theme.cs: Added theme interface for images to allow the theme to
19803           control what images are used for things like FileDialog, MessageBox
19804           icons, etc.
19805         * MessageBox.cs: Now uses the new Theme icon/image interfaces
19806
19807 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
19808
19809         * FileDialog.cs:
19810           - Removed some dead code
19811           - Opening a recently used file does work now
19812           - Small UI enhancements
19813           - Refactoring
19814
19815 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
19816
19817         * FileDialog.cs: Forgot too add __MonoCS__
19818
19819 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
19820
19821         * FileDialog.cs: We are able to read recently used files now let's
19822           go on and write them.
19823
19824 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
19825
19826         * FileDialog.cs: Breathe some life into "last open"/"recently used"
19827           button
19828         * MimeIcon.cs: Do a check for the top level media type also
19829
19830 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
19831
19832         * ThemeClearlooks.cs:
19833           - Added CPDrawStringDisabled
19834           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
19835             some chars if the text doesn't fit into text_rect
19836           - DrawListViewItem: If View = View.LargeIcon center the image;
19837             rewrote the drawing of ListViewItem.Text if View = 
19838             View.LargeIcon
19839
19840 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
19841
19842         * MimeIcon.cs: Use default KDE icon theme if there is no
19843           "48x48" directory for the current icon theme, fixes #77114
19844         * Mime.cs: Disable not working and actually not used code. 
19845         * ThemeWin32Classic.cs:
19846           - Replace "new SolidBrush" in GetControlBackBrush and
19847             GetControlForeBrush with ResPool.GetSolidBrush
19848           - Changed DrawListViewItem from private to protected virtual
19849         * FileDialog.cs:
19850           - Added form.MaximizeBox = true
19851           - Don't throw an exception if there is a broken symbolic link
19852
19853 2005-12-23  Jackson Harper  <jackson@ximian.com>
19854
19855         * TabControl.cs: Give the panels focus, keyboard navigation is
19856         fixed so this works correctly now.
19857         - We need these key events also.
19858         * ToolBar.cs: Remove some of the poor mans double buffering.
19859         
19860 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
19861
19862         * ComboBox.cs: The internal TextBox now returns the focus.
19863
19864 2005-12-23  Jackson Harper  <jackson@ximian.com>
19865
19866         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
19867
19868 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
19869
19870         * Control.cs: Removed debug code
19871         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
19872           implicit children
19873
19874 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
19875
19876         * Control.cs: When creating the control, update the Z-order after
19877           all it's children are created, too. (Fixes nexxia not showing
19878           picturebox bug)
19879
19880 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
19881
19882         * Control.cs: Do not update the anchoring distances if layout is
19883           suspended, instead do it once layout is resumed
19884
19885 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
19886
19887         * Control.cs: 
19888           - After many hours of debugging, for both Jackson and
19889             myself, it turns out that it helps to set the parent of a control
19890             if you want to actually see it onscreen. In the spirit of that
19891             discovery, we're now setting the parent of the control and
19892             it's children when the control's handle is created. This fix
19893             will make Lutz Roeder's Reflector run happily. 
19894           - now just creating the handle instead of the whole control when
19895             getting a graphics context for the control.
19896
19897 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
19898
19899         * ScrollableControl.cs: When calculating the canvas, don't consider
19900           the scrollbar widths. Instead, predict if horizontal scrollbar
19901           will affect canvas when deciding on vertical display and vice versa.
19902
19903 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
19904
19905         * RichTextBox.cs: Set default RTF font for documents that don't
19906           have a font table (Fixes #77076)
19907
19908 2005-12-22  Jackson Harper  <jackson@ximian.com>
19909
19910         * TextBoxBase.cs: It's difficult to do, but you can have an empty
19911         clipboard. This prevents a NullRef in that case.
19912         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
19913         clipboard. PRIMARY is for the currently selected text only. (We
19914         should implement PRIMARY at some point.
19915
19916 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
19917
19918         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
19919           a Unicode function with a structure that was defined in Ansi way.
19920           This fixes #76942.
19921
19922 2005-12-21  Jackson Harper  <jackson@ximian.com>
19923
19924         * StatusBar.cs: Statusbar handles its fore/back colours on it's
19925         on. Because thats how it rolls. (and this avoids it using ambient
19926         colours).
19927         * ThemeWin32Classic.cs: Use the proper back color for filling.
19928         * Menu.cs: Use the system menu bar color for drawing menu
19929         bars. Using the window back color will bring ambient colours into
19930         the picture.
19931
19932 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
19933
19934         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
19935           Bitmaps were created and not disposed.
19936
19937 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
19938
19939         * Control.cs (CreateControl): Don't do anything if the control is
19940           already created, otherwise we'd fire the OnCreated event more than
19941           once
19942
19943 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
19944
19945         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
19946           will always match. Instead return -1. Fixes #76464.
19947
19948 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
19949
19950         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
19951           neither the beginning nor the end of the line (Fixes bug #76479)
19952
19953 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
19954
19955         * Control.cs:
19956           - ControlNativeWindow.ControlFromHandle(): Now handling situation
19957             where handle is invalid
19958           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
19959             instead of slower linear search
19960         * NativeWindow.cs: Don't remove the window from the hashtable until
19961           after the driver has destroyed it (since the driver might use
19962           Control.FromHandle to lookup the control object
19963         * Hwnd.cs: Added DestroyPending property to track if a window is 
19964           already destroyed as far as the driver is concerned and only hasn't
19965           yet notified the control
19966         * XplatUIX11.cs:
19967           - Activate(): Check if the window is still valid before using the 
19968             handle
19969           - Implemented DestroyChildWindow() method to mark child windows as
19970             destroyed when a window is destroyed. This prevents situations 
19971             where we might call an X method based on queued events for a
19972             window that already has been destroyed but we haven't yet pulled
19973             the destroy method from the queue.
19974           - Added a call to the new DestroyChildWindow() method to the drivers
19975             DestroyWindow code. Also now marking the destroyed window itself
19976             as pending
19977
19978 2005-12-20  Jackson Harper  <jackson@ximian.com>
19979
19980         * StatusBar.cs:
19981         * StatusBarPanel.cs: Don't calculate panel sizes on draw
19982         anymore. Just do them when needed, also track the rects of panels
19983         so that we can optimize refreshing more in the future.
19984
19985 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
19986
19987         * ColorDialog.cs: Fixed focus drawing in small color controls
19988
19989 2005-12-19  Jackson Harper  <jackson@ximian.com>
19990
19991         * InternalWindowManager.cs:
19992         * MdiWindowManager.cs: Cleanup some coordinate system changes so
19993         moving windows works properly.
19994
19995 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
19996
19997         * Control.cs: 
19998           - Removed call to InitLayout() from SetBoundsCore(); doc says
19999             it's only called when a control is added to a container
20000           - Split InitLayout logic, moved to separate UpdateDistances() method
20001             since we need to perform those calculations more often than just
20002             when adding the control to a container. (Needed to fix #77022)
20003           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
20004           - Reduced the OnBindingContextChanged events count, don't send them
20005             unless the control is created, we still aren't totally matching
20006             MS, but I can't quite figure out some of their rules
20007
20008 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
20009
20010         * ThemeClearlooks.cs: Corrected distance between ProgressBar
20011           stripes
20012
20013 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
20014
20015         * ThemeClearlooks.cs:
20016           - Updated ProgressBar drawing
20017           - Corrected drawing of ScrollBars and scroll buttons
20018           - Some temporary fixes for minor pixel artefacts
20019
20020 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
20021
20022         * Control.cs:
20023           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
20024             cause events to be sent in the same order as MS does.
20025           - Added ChangeParent() method to trigger various OnXXXChanged events
20026             that need to be fired when a parent changes (This is a reworking
20027             of the patch from r54254, with the X11 errors fixed)
20028           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
20029             since on MS we get OnLayoutChanged events when calling Clear()
20030           - Changed Enabled property to consider parent state as well, if a
20031             parent is not enabled, the control will not be either
20032           - Changed Parent property to simply call Controls.Add() since that
20033             now does all the work required, this way we avoid code duplication
20034           - Threw in a few OnBindingsContextChanged calls to try and match
20035             when MS sends them. We seem to send a few too many, though.
20036           - Added call to CreateControl when adding the control to a parent.
20037             We were never calling CreateControl. Still needs some work, in
20038             some places we treat HandleCreated and ControlCreated as equal, 
20039             which is wrong
20040           - Removed obsolete commented out code from UpdateZOrder()
20041
20042 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
20043
20044         * ThemeClearlooks.cs: Updated TrackBar drawing.
20045
20046 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
20047
20048         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
20049
20050 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
20051
20052         * FileDialog.cs: Add the Help button and the open readonly
20053           checkbox only if needed
20054
20055 2005-12-16  Jackson Harper  <jackson@ximian.com>
20056
20057         * Control.cs: Make sure we have an active menu before trying to
20058         process commands on it. Prevents menu-less forms from crashing
20059         when Alt is pressed.
20060         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
20061         Dieter Bremes.
20062         * RichTextBox.cs: Expand statement to help out gmcs and fix the
20063         2.0 build.
20064
20065 2005-12-16  Jackson Harper  <jackson@ximian.com>
20066
20067         * InternalWindowManager.cs: Don't translate tool windows screen
20068         coordinates. This fixes windows 'bouncing' around when being moved.
20069
20070 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
20071
20072         * TextBoxBase.cs:
20073           - MaxLength now treats 2^31-1 equal to unlimited length (this is
20074             not quite MS compatible, MS uses that number only for single line
20075             and 2^32-1 for multi-line, but I figure it won't hurt keeping
20076             the limit at 2GB)
20077           - Now enforcing the MaxLength limit when entering characters
20078           - Added argument to internal Paste() method to track if it's called
20079             from programatically or via keyboard, since keyboard driven pastes
20080             need to enforce max-length
20081           - Added logic to Paste to only paste as many chars as MaxLength 
20082             allows
20083         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
20084         * TextControl.cs:
20085           - Added Length property to return number of characters in document
20086           - Added private CharCount property which only tracks actual chars
20087             in the document (no linefeeds) and fires event when CharCount
20088             changes
20089           - Added tracking of character count to all methods that alter it
20090           - Added LengthChanged event to allow applications to subscribe
20091             to any changes to the document
20092
20093 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
20094
20095         * TextBox.cs: 
20096           - Removed local password_char field (moved to TextBoxBase)
20097           - Now setting the document's password var when password is
20098             set
20099         * TextBoxBase.cs:
20100           - Added password_char field (needed here so MultiLine can
20101             access it)
20102           - Added logic to MultiLine property setter to set the document's
20103             variable when password display is allowed
20104           - Removed debug code and made some debug code conditional
20105         * TextControl.cs:
20106           - Added RecalculatePasswordLine() method to handle special password
20107             char only lines
20108           - Added PasswordChar property, also added related tracking vars
20109           - Draw() method now uses local text var for grabbing text to draw,
20110             this var is set to line.text unless we're doing password display,
20111             then it is set to the pre-generated all-password-chars line
20112           - Added calling RecalculatePasswordLine() method for password lines
20113
20114 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
20115
20116         * Hwnd.cs: 
20117           - Added Reparented property to allow tracking of Window Manager
20118             reparenting actions (which affect X/Y calculations of toplevel 
20119             windows)
20120           - Made ToString() print window handles in hex
20121         * XplatUIX11.cs:
20122           - AddConfigureNotify(): Now uses reparented state off Hwnd to
20123             determine if X/Y needs offsetting
20124           - AddConfigureNotify(): Fixed offset calculations
20125           - Now adds ReparentNotify messages into the queue
20126           - Now processes ReparentNotify messages and causes a 
20127             WM_WINDOWPOSCHANGED message to be sent upstream if a window
20128             is reparented (as most likely it's X/Y coordinates are changed
20129             due to that)
20130
20131 2005-12-14  Jackson Harper  <jackson@ximian.com>
20132
20133         * XplatUIX11.cs: Tool windows still need to respek focus.
20134
20135 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
20136
20137         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
20138           have a working release
20139
20140 2005-12-13  Jackson Harper  <jackson@ximian.com>
20141
20142         * Form.cs: Update styles after setting the border style regardless
20143         of whether or not the window is using a window manager.
20144
20145 2005-12-13  Jackson Harper  <jackson@ximian.com>
20146
20147         * Form.cs: We now hook into an internal window manager instead of just an
20148         MDI subsystem, this is so we can have properly behaving tool windows.
20149         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
20150         * InternalWindowManager.cs: New internal class that acts as a
20151         window manager for tool windows and as a base for mdi windows.
20152         * MdiWindowManager.cs: New class that acts as a window manager for
20153         mdi windows.
20154
20155 2005-12-12  Jackson Harper  <jackson@ximian.com>
20156
20157         * Control.cs: Updates so we match behavoir for for implicit
20158         controls. Fixes explosions in MDI.
20159
20160 2005-12-12  Jackson Harper  <jackson@ximian.com>
20161
20162         * Control.cs: Implement Invalidate (Region).
20163
20164 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
20165
20166         * Control.cs: 
20167           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
20168             the same events as MS does. MS fires events for each property 
20169             except, for unknown reasons, Cursor, when the control is reparented. 
20170             I can't seem to totally match add/remove since MS also fires some 
20171             VisibleChanged events, which makes no sense. Consolidated the
20172             parenting code into a separate method so it can be called from
20173             both Add and Remove. set_Parent no longer needs any special logic
20174             as it calls the parent's add method which implicitly fires
20175             all events
20176           - Removed some obsolete code and debug output
20177           - Enabled state is inherited from parents, if this is enabled
20178
20179 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
20180
20181         * Form.cs: Removed commented out code
20182
20183 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
20184
20185         * Control.cs:
20186           - Added internal version of Invoke, with additional argument 
20187             indicating if we're calling it from a Dispose() handler. That
20188             way we can avoid BeginInvoke throwing an exception if we're
20189             calling for an already destroyed window.
20190           - Added a dispose argument to BeginInvokeInternal, and made the
20191             check if a valid window handle chain exists conditional on
20192             it not being a dispose call
20193           - Removed code in DestroyHandle to destroy our children. Since we
20194             now handle the WM_DESTROY message we will catch all our children
20195             being destroyed.
20196           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
20197         * Form.cs:
20198           - Added a field to track the application context of the form.
20199           - No need to set closing variable as response to WM_CLOSE, instead
20200             we destroy the window. We also call PostQuitMessage if the form
20201             has an application context (which makes it the main app form,
20202             which, when closed terminates the app)
20203         * XplatUI.cs:
20204           - Dropped Exit() method, it's naming was confusing
20205           - Added PostQuitMessage() which causes GetMessage to return false
20206             once the message queue is empty
20207         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
20208           PostQuitMessage()
20209         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
20210           no longer a valid XplatUI method, but left it in since it's used
20211           internally. Added empty PostQuitMessage() method.
20212         * MenuAPI.cs: Replaced call to Exit() with call to
20213           PostQuitMessage, even though this is probably no longer needed.
20214         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
20215         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
20216         * Application.cs:
20217           - Replaced call to XplatUI.Exit() with PostQuitMessage()
20218           - Removed old debug code that would call XplatUI for exception
20219             display, enabled standard exception handling (Still not enabled
20220             though, until NativeWindow's ExternalExceptionHandler define
20221             is removed
20222         * NativeWindow.cs:
20223           - Added internal method to allow control to update NativeWindow
20224             after a window has been destroyed
20225           - Added handling of already destroyed windows when calling i
20226             DestroyWindow
20227           - Added removal of handle from list on ReleaseHandle
20228         * XplatUIX11.cs:
20229           - Dropped GetMessageResult var and related code
20230           - Added PostQuitState to field to track if PostQuitMessage has been
20231             called
20232           - Dropped Exit() method
20233           - Added PostQuitMessage() method
20234           - GetMessage now will return false if PostQuitState is set and no
20235             more messages are in the queue.
20236           - Expose handler will no longer generate WM_PAINT messages if we are
20237             in PostQuitState since it's very likely any windows have already
20238             been destroyed, and since Hwnd won't get updated until we have
20239             processed the DestroyNotify we'd be causing X errors.
20240         
20241 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20242
20243         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
20244           Thanks to Mike for pointing out the err of my ways.
20245
20246 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20247
20248         * Control.cs(PreProcessMessage): Moved menu handling back, but
20249           after all other key handling, to match MS (who handles Menu in
20250           DefWndProc)
20251         * Menu.cs (WndProc): Removed my brainfart
20252
20253 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20254
20255         * Control.cs(PreProcessMessage): Removed special menu handling 
20256         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
20257
20258 2005-12-07  Mike Kestner  <mkestner@novell.com>
20259
20260         * Control.cs : special case SYSKEYUP so that we can adjust keynav
20261         state according in tracker.
20262         * Menu.cs : promote tracker field to base class and provide a tracker
20263         lookup capability.  Add/Remove shortcuts dynamically if the top menu
20264         has a tracker. Unparent items that are removed from the collection.
20265         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
20266         * Theme*.cs: add always_show_hotkeys field to support configurability
20267         of mnemonic display.  win32 doesn't show mnemonics until Alt is
20268         pressed.
20269
20270 2005-12-07  Jackson Harper  <jackson@ximian.com>
20271
20272         * MdiChildContext.cs: Use Control.ResetCursor.
20273         * Control.cs: ResetCursor needs to set the property so that the
20274         correct XplatUI call gets made.
20275
20276 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20277
20278         * Control.cs: More fixes to make our key events match MS. We
20279           were not setting the modifier state on KeyData, and we were
20280           not generating any events when Alt was pressed with a key
20281           since handling of WM_SYSxxx was missing for the OnKey methods.
20282
20283 2005-12-07  Jackson Harper  <jackson@ximian.com>
20284
20285         * MdiChildContext.cs: reenable the sizing code.
20286         - When the mouse leaves a window reset its cursor.
20287
20288 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
20289
20290         * ThemeClearlooks.cs: Reflect latest Hwnd changes
20291
20292 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
20293
20294         * Hwnd.cs: Now using the theme 3d bordersize to calculate
20295           widths of Fixed3D borders
20296
20297 2005-12-07  Jackson Harper  <jackson@ximian.com>
20298
20299         * MdiClient.cs: Fix warnings. Earn Mike's love.
20300
20301 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
20302
20303         * ThemeClearlooks.cs:
20304           - Adjusted mouse over button color
20305           - Added first parts of CheckBox drawing
20306           - Added correct color for selected text background
20307           - Fixed ComboBox drawing
20308           - Added CPDrawBorder3D and CPDrawBorder
20309
20310 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
20311
20312         * XplatUIX11.cs: Added call to XBell for AudibleAlert
20313
20314 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
20315
20316         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
20317           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
20318           alert users via sound. We could add an enum arg with different
20319           types of alerts in the future
20320
20321 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
20322
20323         * Control.cs: Fix behaviour problems pointed out by Mike
20324
20325 2005-12-05  Mike Kestner  <mkestner@novell.com>
20326
20327         * StatusBarPanel.cs: add Invalidate method and hook it into all the
20328         prop setters.  Calls parent.Refresh for now, but could be maybe be
20329         optimized with an internal method on StatusBar at some point.
20330         [Fixes #76513]
20331
20332 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
20333
20334         * RichTextBox.cs: Implemented get_SelectionColor
20335
20336 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
20337
20338         * ThemeClearlooks.cs:
20339           - Removed dead code
20340           - Draw black button border only if button is Form.AcceptButton
20341           - Draw correct button color for pressed RadioButton if the mouse 
20342             has entered the button
20343           - Updated ProgressBar drawing!
20344           - Updated CPDrawSizeGrip drawing
20345           - Updated StatusBarPanel drawing
20346
20347 2005-12-05  Mike Kestner  <mkestner@novell.com>
20348
20349         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
20350         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
20351
20352 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
20353
20354         * ThemeClearlooks.cs: Initial check-in, activate with
20355           export MONO_THEME=clearlooks
20356         * ThemeEngine.cs: Added ThemeClearlooks
20357
20358 2005-12-03  Mike Kestner  <mkestner@novell.com>
20359
20360         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
20361         [Fixes #76897]
20362
20363 2005-12-02  Jackson Harper  <jackson@ximian.com>
20364
20365         * Form.cs: If the child form has no menu the default main menu is
20366         used as the active menu.
20367
20368 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
20369
20370         * ListBox.cs: Check if any items exist before trying to resolve 
20371           coordinates into items
20372
20373 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
20374
20375         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
20376           as the second color for the background hatch
20377
20378 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
20379
20380         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
20381         * RichTextBox.cs: FormatText position arguments are 1-based, now making
20382           sure that what we pass to FormatText is always 1-based. Fixes #76885
20383
20384 2005-11-29  Miguel de Icaza  <miguel@novell.com>
20385
20386         * NumericUpDown.cs (EndInit): When we are done initializing,
20387         reflect any updates on the UI.
20388
20389 2005-12-02  Jackson Harper  <jackson@ximian.com>
20390
20391         * ImplicitHScrollBar.cs:
20392         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
20393         their container controls.
20394         * TreeView.cs: Use the new implicit scrollbars.
20395
20396 2005-12-02  Jackson Harper  <jackson@ximian.com>
20397
20398         * TreeView.cs: Make top_node internal so the TreeNodeCollections
20399         can play with it.
20400         * TreeNodeCollection.cs: If we remove the topnode we need to
20401         update topnode to the next node in line.
20402         - When clearing nodes go through the same process as removing
20403         them, so they get depareneted and checked if they are top node.
20404
20405 2005-12-01  Jackson Harper  <jackson@ximian.com>
20406
20407         * TreeView.cs: When imagelists are used the image area is
20408         selectable as well as the text.
20409         - If there are no selected nodes select the first one.
20410         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
20411         so don't do it more then we need to.
20412
20413 2005-12-01  Jackson Harper  <jackson@ximian.com>
20414
20415         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
20416         that arrows can be scaled.
20417
20418 2005-12-01  Jackson Harper  <jackson@ximian.com>
20419
20420         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
20421         fail. Patch by Dieter Bremes
20422
20423 2005-11-30  Jackson Harper  <jackson@ximian.com>
20424
20425         * Form.cs: Property is 2.0 only
20426         * PrintDialog.cs: Signature fix.
20427
20428 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
20429
20430         * TextControl.cs: 
20431           - No longer artificially moves text 2 pixels down (now that we have
20432             borders this is no longer needed)
20433           - Added calcs for left, hanging and right indent
20434
20435 2005-11-23  Mike Kestner  <mkestner@novell.com>
20436
20437         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
20438
20439 2005-11-30  Jackson Harper  <jackson@ximian.com>
20440
20441         * MdiChildContext.cs: Set the cloned menus forms, as these don't
20442         get cloned as part of CloneMenu ().
20443         * Menu.cs: Make sure the parent of the items get set correctly
20444         when they are added.  And the owners are notified of the changes.
20445         * Form.cs: Create an ActiveMenu property, so that when MDI is used
20446         we can change the menu being displayed/handled by the form without
20447         changing the menu assosciated with the form.
20448         - Don't let Mdi children draw/handle menus.
20449         
20450 2005-11-30  Jackson Harper  <jackson@ximian.com>
20451
20452         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
20453         a MenuChanged event. Just to make the API a little more
20454         consistent.
20455         * MainMenu.cs:
20456         * MenuItem.cs: Use the new OnMenuChanged
20457         * MdiChildContext.cs: Handle menu merging.
20458         * Form.cs: Implement MergedMenu.
20459         
20460 2005-11-30  Jackson Harper  <jackson@ximian.com>
20461
20462         * Menu.cs: We were misusing Add. Add goes behind the specified
20463         index according to the docs, and does not replace the specified
20464         index. So I added an Insert method.
20465
20466 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
20467
20468         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
20469           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
20470           is for Jackson
20471         * RichTextBox.cs: Added calls to base for DnD events
20472
20473 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
20474
20475         * TextControl.cs:
20476           - Fixed drag-selection related crash; style fixes
20477           - Implemented undo class
20478             o Implemented method to capture document state for specified
20479               range in document tree
20480             o Implemented method to restore captured document state
20481             o Implemented cursor tracking
20482             o Implemented basic undo stack
20483           - Added undo cursor tracking to methods altering cursor location
20484           - Added undo tracking to selection deletion (still missing
20485             other text-altering hookups)
20486         * RichTextBox.cs:
20487           - Added SelectionLength property
20488           - Implemented CanPaste()
20489           - Implemented Paste()
20490           - Added missing protected methods
20491           - Fixed RTF->Document conversion; now uses font index 0 and color 
20492             index 0 as the default font for the parsed text
20493           - Fixed RTF<->Document font size translation
20494           - Fixed RTF generation, now properly handles cross-tag boundaries
20495             for single line selection
20496           - No longer always appends blank line to generated RTF
20497           - Removed TODOs
20498           - Added missing attributes
20499           - Hooked up undo-related methods
20500         * TextBoxBase.cs:
20501           - Implemented Copy()
20502           - Implemented Paste()
20503           - Implemented Cut()
20504           - Fixed caret mis-behaviour on backspace across line-boundaries
20505
20506 2005-11-29  Jackson Harper  <jackson@ximian.com>
20507
20508         * MdiClient.cs: Add a method for activating mdi children. Very
20509         basic right now. I imagine someday it might need more girth.
20510         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
20511         children windows names are added to the menu item.
20512         * ThemeWin32Classic.cs: Draw the arrow if the item is an
20513         mdilist. This happens regardless of whether or not there are any
20514         mdi windows to see in the list, and according to my tests happens
20515         before the items are even added. Also happens if there isn't even
20516         an mdi client to get windows from.
20517
20518 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
20519
20520         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
20521         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
20522
20523 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
20524
20525         * DataGridTableStyle.cs:
20526           - Create always the styles for the missing columns even if they are
20527             provided by the user (not default table style)
20528         * DataGrid.cs:
20529           - Fixes bug 76770
20530           - Fixes SetDataBinding (always re-attach source)
20531           - Fixes SetNewDataSource (only clear styles if they are not for 
20532             this source)
20533          -  Expands OnTableStylesCollectionChanged to handle style refresh 
20534             and remove properly
20535
20536 2005-11-29  Jackson Harper  <jackson@ximian.com>
20537
20538         * FileDialog.cs: Implement missing bits, remove some dead
20539         code.
20540         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
20541         creation of the panel so that the options set on the dialog are
20542         seen when the panel is created.
20543         * TreeView.cs: raise a click when items are clicked.
20544         
20545 2005-11-29  Jackson Harper  <jackson@ximian.com>
20546
20547         * MdiClient.cs: Pass some signature methods through to base.
20548
20549 2005-11-28  Jackson Harper  <jackson@ximian.com>
20550
20551         * ListView.cs: Raise the click event when items are clicked.
20552
20553 2005-11-28  Jackson Harper  <jackson@ximian.com>
20554
20555         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
20556         a nullref.
20557
20558 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
20559
20560         * ThemeNice.cs: - Removed 1 pixel bitmaps
20561           - Use SmoothingMode.AntiAlias where it makes sense
20562             (ScrollButton arrow for example)
20563           - Enhanced Button focus drawing
20564           - Fixed ComboBox drawing (no artefacts anymore, focus
20565             rectangle is back again, reduced size of ComboButton, etc.)
20566           - Fixed RadioButton focus drawing for Appearence.Button
20567           - Slight ScrollButton redesign
20568           - Some LinearGradientBrush size fixes
20569           - GroupBoxes have now rounded edges
20570           - Fixed StatusBar drawing
20571
20572 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
20573
20574         * ThemeNice.cs: - Remove dead code
20575           - use correct background colors for menus, etc.
20576           - Fake pixel drawing with 1 pixel bitmaps
20577
20578 2005-11-24  Jackson Harper  <jackson@ximian.com>
20579
20580         * MdiClient.cs: Size the scrollbars when resizing the window.
20581         - Resize the maximized windows when the client is resized
20582         * Form.cs: Make the child context available
20583         
20584 2005-11-23  Jackson Harper  <jackson@ximian.com>
20585
20586         * MdiChildContext.cs: Don't size windows if they are maximized.
20587
20588 2005-11-23  Mike Kestner  <mkestner@novell.com>
20589
20590         * ContextMenu.cs: use MenuTracker.
20591         * Control.cs: remove menu handle usage.
20592         * Form.cs: remove menu handle usage.
20593         * Hwnd.cs: remove menu handle usage.
20594         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
20595         motion and clicks to the new Tracker handlers.
20596         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
20597         and handle usage.
20598         * MenuAPI.cs: refactored to combine popup and menubar event handling.
20599         Killed the MENU and MENUITEM data types and associated collections
20600         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
20601         MenuTracker class that exposes the leftovers from the old MenuAPI
20602         static methods. Restructured Capture handling so that only one grab is
20603         done for the entire menu hierarchy instead of handing off grabs to
20604         submenus. Tracker now has an invisible control to Capture when active.
20605         * MenuItem.cs: add sizing accessors, kill Create
20606         and handle usage.
20607         * Theme.cs: remove menu handle and MENU(ITEM) usage.
20608         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
20609         MENU(ITEM). remove menu handle usage, use Menu directly.
20610         * XplatUIDriver.cs: remove menu handle usage.
20611         * XplatUIOSX.cs: remove menu handle usage.
20612         * XplatUIWin32.cs: remove menu handle usage.
20613         * XplatUIX11.cs: remove menu handle usage.
20614
20615 2005-11-22  Jackson Harper  <jackson@ximian.com>
20616
20617         * Hwnd.cs: Don't compute the menu size for
20618         DefaultClientRectangle.
20619         - Reenable menu sizes being computed for GetClienRectangle.
20620         * Form.cs: Remove comment of trechery
20621         
20622 2005-11-22  Jackson Harper  <jackson@ximian.com>
20623
20624         * Hwnd.cs: The adjustments for the menu bar are made when it is
20625         attached to the form.
20626
20627 2005-11-19  Jackson Harper  <jackson@ximian.com>
20628
20629         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
20630         (just like on windows).
20631
20632 2005-11-19  Jackson Harper  <jackson@ximian.com>
20633
20634         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
20635         use real buttons anymore because they are in non client area. The
20636         one TODO here is that I need to somehow invalidate a section of
20637         the non client area.
20638
20639 2005-11-18  Jackson Harper  <jackson@ximian.com>
20640
20641         * Control.cs: Put the enum check back in now that MDI doesnt have
20642         to use this to set border styles.
20643         * Form.cs: Only set mdi child windows borders if the handle has
20644         been created.
20645         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
20646         this directly on to the driver.
20647         - Get the move start position before adjusting for the titlebar
20648         height, this fixes the windows "skipping" when they are first
20649         moved.
20650
20651 2005-11-18  Jackson Harper  <jackson@ximian.com>
20652
20653         * XplatUIX11.cs: Just compute the mdi borders separately as they
20654         don't totally match up with normal form borders.
20655
20656 2005-11-18  Jackson Harper  <jackson@ximian.com>
20657
20658         * Control.cs: Set WS_ styles for borders, so that the driver does
20659         not have to retrieve the control instance to figure out what kind
20660         of borders it should have.
20661         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
20662         driver can know its an mdi child easily.
20663         * XplatUIX11.cs: Get the border styles and whether the window is
20664         MDI from the Styles and ExStyles params instead of having to get a
20665         control. This prevents a chicken and egg problem.       
20666
20667 2005-11-18  Jackson Harper  <jackson@ximian.com>
20668
20669         * MdiClient.cs: Fix typo so scrollbars show up correctly.
20670
20671 2005-11-18  Jackson Harper  <jackson@ximian.com>
20672
20673         * MdiClient.cs: Calculate when to add and remove scrollbars
20674         correctly.
20675         * MdiChildContext.cs: Adjust the y position to take the titlebar
20676         into account.
20677         - No height for FormBorderStyle.None
20678
20679 2005-11-18  Jackson Harper  <jackson@ximian.com>
20680
20681         * Control.cs: Allow non enum values to be used for
20682         InternalBorderStyle.  MDI does this to set a special border style.
20683         - New utility methods for converting points to/from client coords
20684         - Add the newly created control to the Controls collection before
20685         updating its style. This way UpdateStyle can walk the control
20686         heirarchy to find the control if needed.
20687         so I don't need to create a new Point object all the time.
20688         * Form.cs: Let MDI windows handle their border styles.
20689         - Set styles on MDI windows so the correct title style is derived.
20690         * MdiChildContext.cs: Move all the painting and window handling
20691         into the non client area.
20692         - Use correct sizing and put correct buttons on frames based on
20693         the FormBorderStyle.
20694         - Notify the mdi client about scrolling
20695         - Need to handle the buttons ourselves now, because they are all
20696         in non client areas and we can't add controls there.
20697         * MdiClient.cs: Halfway to scrolling, this implementation is
20698         somewhat broken though, we need to check to make sure other
20699         windows aren't causing scrolling before removing the bars. Also
20700         the bars need to be drawn on top, maybe I can switch implicit
20701         controls to be on top.
20702         * Hwnd.cs: caption_height and tool_caption_height are now
20703         properties of an hwnd, this way they can be set by the driver
20704         based on the type of window they are.  In X11 the window manager
20705         handles the decorations so caption_height is zero unless its an
20706         MDI window.
20707         - Add 3 pixel borders for MDI windows (0xFFFF).
20708         - Get rid of some code duplication, have DefaultClientRectanle
20709         just call GetClientRectangle.
20710         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
20711         Hwnd now.
20712         - Set border styles differently for mdi windows.
20713         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
20714         Hwnd now.
20715         
20716 2005-11-15  Mike Kestner  <mkestner@novell.com>
20717
20718         * Menu.cs: when adding an item to the collection, if item is already 
20719         parented, remove it from the parent.
20720
20721 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
20722
20723         * X11DesktopColors.cs: Added KDE support
20724
20725 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
20726
20727         * XplatUIWin32.cs: 
20728           - Clipboard methods now can translate Rtf format
20729           - No longer removes clipboard contents whenever a new format is added
20730             to allow placing multiple formats on the clipboard
20731         * Clipboard.cs: Clipboard now supports getting a IDataObject and
20732           will place all formats contained in it onto the clipboard. Also
20733           now cleans the clipboard before placing a new object onto it
20734         * RichTextBox.cs:
20735           - Implemented set_Rtf
20736           - Implemented set_SelectedRtf
20737           - Created InsertRTFFromStream() method to allow single code base
20738             for all properties and methods that insert RTF into document
20739           - Removed debug output
20740         * TextControl.cs:
20741           - Fixed Delete(int) to fix up line numbers
20742           - Fixed ReplaceSelection to combine start and end line
20743           - Fixed serious DeleteChars bug that would leave the document tree
20744             broken
20745           - Improved DumpTree with several logic checks to detect broken
20746             document trees
20747           - Removed debug lines
20748           - Fixed Caret.WordForward/WordBack moving code, now always also 
20749             updates caret.tag (fixes crash when word-selecting across tag
20750             boundaries via keyboard)
20751           - Added Insert() method for inserting multiline text into documents
20752           - Fixed DeleteChars() calculation errors that would cause a broken
20753             tag chain with multiple tag lines
20754           - DeleteChars() no longer crashes on multi-tag lines if not all tags
20755           - Split() no longer moves caret if split is at caret location
20756           - ReplaceSelection() now updates the cursor and re-displays it
20757           - ReplaceSelection() now uses new Insert() method to avoid code
20758             duplication
20759           - FormatText() can now handle formatting partial lines
20760         * TextBoxBase.cs:
20761           - Append now uses new TextControl.Insert() method (this avoids 
20762             duplicate code)
20763           - Implemented Ctrl-X (Cut) (
20764           - Implemented Ctrl-C (Copy)
20765           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
20766             regeneration when pasting text; roundtripping Copy&Paste within
20767             edit control still fails due to some calculation bugs in GenerateRTF)
20768           - The Delete key will now remove the current selection if it is visible
20769         * TextBox.cs: Removed debug lines
20770         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
20771           driver to be initialized and can't therefore be done via a static ctor)
20772
20773 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
20774
20775         * TextControl.cs: Added backend code for finding char arrays and strings
20776         * TextBoxBase.cs:
20777           - Added mouse wheel scroll support
20778           - Added support for VScroll and HScroll events
20779         * RichTextBox.cs:
20780           - Implemented all seven Find() variants
20781           - Implemented GetCharFromPosition()
20782           - Implemented GetCharIndexFromPosition()
20783           - Implemented GetLineFromIndex()
20784           - Implemented GetPositionFromCharIndex();
20785           - Implemented SaveFile for PlainText and UnicodeText
20786           - Fixed set_Font, now setting a new font applies that font to
20787             the whole document
20788           - Implemented generic Document to RTF converter
20789           - Implemented SaveFile for RichText format (still missing unicode
20790             conversion for non-ansi chars)
20791           - Implemented get_Rtf
20792           - Implemented get_SelectedRtf
20793
20794 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
20795
20796         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
20797           to allow any captures to be released before triggering OnClick. This
20798           way a click handler may capture the mouse without interference.
20799         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
20800           This way we send them even though X may not allow a grab (if the window
20801           isn't visible, for example)
20802
20803 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
20804
20805         * DataGridViewRowEventArgs.cs: DataGridView implementation
20806         * DataGridViewElement.cs: DataGridView implementation
20807         * DataGridViewComboBoxCell.cs: DataGridView implementation
20808         * DataGridViewDataErrorContexts.cs: DataGridView implementation
20809         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
20810         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
20811         * ImageLayout.cs: DataGridView implementation
20812         * DataGridViewComboBoxColumn.cs: DataGridView implementation
20813         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
20814         * DataGridViewSelectionMode.cs: DataGridView implementation
20815         * IDataGridViewEditingControl.cs: DataGridView implementation
20816         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
20817         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
20818         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
20819         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
20820         * DataGridViewColumnSortMode.cs: DataGridView implementation
20821         * DataGridView.cs: DataGridView implementation
20822         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
20823         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
20824         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
20825         * Padding.cs: DataGridView implementation
20826         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
20827         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
20828         * DataGridViewRowEventHandler.cs: DataGridView implementation
20829         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
20830         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
20831         * DataGridViewButtonCell.cs: DataGridView implementation
20832         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
20833         * DataGridViewEditMode.cs: DataGridView implementation
20834         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
20835         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
20836         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
20837         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
20838         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
20839         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
20840         * DataGridViewCellEventHandler.cs: DataGridView implementation
20841         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
20842         * DataGridViewCellStyleConverter.cs: DataGridView implementation
20843         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
20844         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
20845         * DataGridViewColumnEventArgs.cs: DataGridView implementation
20846         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
20847         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
20848         * QuestionEventArgs.cs: DataGridView implementation
20849         * IDataGridViewEditingCell.cs: DataGridView implementation
20850         * DataGridViewTriState.cs: DataGridView implementation
20851         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
20852         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
20853         * DataGridViewColumnCollection.cs: DataGridView implementation
20854         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
20855         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
20856         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
20857         * DataGridViewColumn.cs: DataGridView implementation
20858         * DataGridViewCellBorderStyle.cs: DataGridView implementation
20859         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
20860         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
20861         * DataGridViewRow.cs: DataGridView implementation
20862         * DataGridViewImageCellLayout.cs: DataGridView implementation
20863         * DataGridViewImageCell.cs: DataGridView implementation
20864         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
20865         * DataGridViewCheckBoxCell.cs: DataGridView implementation
20866         * DataGridViewHeaderCell.cs: DataGridView implementation
20867         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
20868         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
20869         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
20870         * DataGridViewTextBoxColumn.cs: DataGridView implementation
20871         * QuestionEventHandler.cs: DataGridView implementation
20872         * DataGridViewCellStyleScopes.cs: DataGridView implementation
20873         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
20874         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
20875         * DataGridViewCell.cs: DataGridView implementation
20876         * DataGridViewCellEventArgs.cs: DataGridView implementation
20877         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
20878         * DataGridViewCellStyle.cs: DataGridView implementation
20879         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
20880         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
20881         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
20882         * TextFormatFlags.cs: DataGridView implementation
20883         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
20884         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
20885         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
20886         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
20887         * DataGridViewButtonColumn.cs: DataGridView implementation
20888         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
20889         * HandledMouseEventArgs.cs: DataGridView implementation
20890         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
20891         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
20892         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
20893         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
20894         * DataGridViewRowCollection.cs: DataGridView implementation
20895         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
20896         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
20897         * DataGridViewHitTestType.cs: DataGridView implementation
20898         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
20899         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
20900         * DataGridViewColumnEventHandler.cs: DataGridView implementation
20901         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
20902         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
20903         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
20904         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
20905         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
20906         * DataGridViewContentAlignment.cs: DataGridView implementation
20907         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
20908         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
20909         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
20910         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
20911         * DataGridViewPaintParts.cs: DataGridView implementation
20912         * DataGridViewCellCollection.cs: DataGridView implementation
20913         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
20914         * DataGridViewImageColumn.cs: DataGridView implementation
20915         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
20916         * DataGridViewElementStates.cs: DataGridView implementation
20917         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
20918         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
20919         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
20920         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
20921         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
20922         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
20923         * DataGridViewRowHeaderCell.cs: DataGridView implementation
20924         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
20925         * DataGridViewTextBoxCell.cs: DataGridView implementation
20926         * DataGridViewBand.cs: DataGridView implementation
20927         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
20928         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
20929         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
20930         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
20931         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
20932         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
20933         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
20934         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
20935         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
20936         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
20937         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
20938
20939 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
20940
20941         * ThemeWin32Classic.cs: 
20942           - Draw the outside focus rectangle around buttons
20943           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
20944             doesn't use end caps for every dash of a line anymore. This
20945             workaround ignores the forecolor.
20946
20947 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
20948
20949         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
20950           endian safe.
20951
20952 2005-11-07  Jackson Harper  <jackson@ximian.com>
20953
20954         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
20955
20956 2005-11-07  Jackson Harper  <jackson@ximian.com>
20957
20958         * ScrollableControl.cs: Calculate the maximum and change vars
20959         (more) correctly so that scrollbars appear as a sensible size.
20960
20961 2005-11-04  Jackson Harper  <jackson@ximian.com>
20962
20963         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
20964         collection.
20965         * TreeView.cs: When the tree is sorted null out the top_node so
20966         that it is recalculated.
20967         - Use dotted lines instead of dashed lines to match MS better.
20968
20969 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
20970
20971         * ListView.cs: 
20972           - Implements key search for items. Useful when browsing files with FileDialog
20973           - When changing view mode or when clear the items reset scrollbar positions
20974
20975 2005-11-04  Jackson Harper  <jackson@ximian.com>
20976
20977         * CurrencyManager.cs: Implement the MetaDataChanged event, the
20978         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
20979         as to what the method may do as there is no real way of creating a
20980         derived CurrencyManager and calling the method. 
20981
20982 2005-11-03  Jackson Harper  <jackson@ximian.com>
20983
20984         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
20985         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
20986         method which seems to just be used internally to refresh the tabs.
20987
20988 2005-11-03  Jackson Harper  <jackson@ximian.com>
20989
20990         * TabControl.cs: Implement the remove method. Fix some broken
20991         comments.
20992
20993 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
20994
20995         * DateTimePicker.cs:
20996           - Added missing DateTimePickerAccessibleObject class
20997           - Added missing events
20998           - Added OnFontChanged method
20999         * Form.cs: Added missing attributes
21000         * TreeView.cs: Added missing attributes
21001
21002 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
21003
21004         * GridItemCollection.cs: Fix signatures
21005
21006 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
21007
21008         * XplatUI.cs: Updated build rev/date
21009         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
21010           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
21011         * Application.cs: Trigger context-specific ExitThread events
21012
21013 2005-11-03  Jackson Harper  <jackson@ximian.com>
21014
21015         * Menu.cs:
21016         * MainMenu.cs:
21017         * GridTableStylesCollection.cs:
21018         * Timer.cs:
21019         * TabPage.cs:
21020         * HelpProvider.cs:
21021         * StatusBar.cs:
21022         * MonthCalendar.cs: Signature fixes
21023
21024 2005-11-03  Jackson Harper  <jackson@ximian.com>
21025
21026         * TreeNodeCollection.cs: Remove should not be virtual.
21027         * TreeView.cs: Implement the last of the missing methods.
21028
21029 2005-11-03  Jackson Harper  <jackson@ximian.com>
21030
21031         * TreeNodeConverter.cs: Implement to get off my class-status back.
21032
21033 2005-11-03  Jackson Harper  <jackson@ximian.com>
21034
21035         * TreeView.cs: Hookup the bits for drag and drop.
21036         * TreeNode.cs: Don't cache the tree_view or index anymore, now
21037         that nodes can be moved from tree to tree easily this just causes
21038         all sorts of problems.
21039         * TreeNodeCollection: Don't need to give treenodes an index and
21040         treeview anymore when they are added, these are computed on the
21041         fly. Also make sure to remove a node before its added.
21042
21043 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
21044
21045         * TextControl.cs:
21046           - Added CaretSelection enum
21047           - Added comparison methods to Marker struct, makes selection code
21048             more readable
21049           - Added SelectionStart and SelectionEnd as 'moveable' location for
21050             the CaretDirection enum and handler
21051           - Added selection_prev variable to track optimized invalidation for
21052             word and line selection
21053           - Added SelectionVisible property (returns true if there is a valid 
21054             selection)
21055           - Switched CaretHasFocus to only display the caret if there is no
21056             visible selection
21057           - Avoiding StringBuilder.ToString to retrieve a single char, instead
21058             using the direct character index; should be much faster
21059           - Added various conditional debug statements
21060           - Fixed invalidation calculation for selection ranges
21061           - Added ExpandSelection() method to support word and line selection
21062           - Switched SetSelectionToCaret to use new Marker compare overloads
21063           - Added central IsWordSeparator() method to determine word 
21064             separators/whitespace and FindWordSeparator() to streamline common
21065             usage of IsWordSeparator()
21066         * TextBoxBase.cs:
21067           - Removed unneeded grabbed variable, it was just mirroring
21068             Control.Capture
21069           - No longer firing OnTextChanged event when Text setter is called,
21070             since the base will fire the event for us
21071           - Added handling of Ctrl-Up/Down selection
21072           - Added handling of Shift-Cursorkey selection
21073           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
21074             words
21075           - Added handling of Shift and Ctrl-Shift-Home/End selection
21076           - Removed some debug output
21077           - Added handling for single/double/tripple-click to place caret/
21078             select word/select line respectively (Fixes bug #76031)
21079           - Added support for drag expansion of word/line selection
21080         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
21081           current selection
21082
21083 2005-11-02  Jackson Harper  <jackson@ximian.com>
21084
21085         * X11Dnd.cs: If the drag is going to and from a MWF window just
21086         copy the data instead of sending it out through the X Selection
21087         mechanism.
21088
21089 2005-11-02  Jackson Harper  <jackson@ximian.com>
21090
21091         * X11Dnd.cs:
21092         * XplatUIX11.cs: When in a drag we don't want motion notify
21093         messages to get passed on to the other controls. This prevents
21094         mouse move messages from showing up in the drag source.
21095
21096 2005-11-02  Jackson Harper  <jackson@ximian.com>
21097
21098         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
21099         the correct button is release to end a drag.
21100         * XplatUIX11.cs: Make the button state internal so the drag system
21101         can access it.  Dragging needs to know about all button releases,
21102         not just left button.
21103
21104 2005-11-02  Miguel de Icaza  <miguel@novell.com>
21105
21106         * Form.cs (Icon): If the icon is null, reset the icon to the
21107         default value. 
21108
21109         * Cursor.cs: When writing the AND-mask bitmap do not include the
21110         number of colors, but hardcode those to two (black and white),
21111         fixes the loading of color cursors (Paint Dot Net).
21112
21113         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
21114         turn off autoscaling.
21115
21116         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
21117
21118 2005-11-02  Jackson Harper  <jackson@ximian.com>
21119
21120         * X11Dnd.cs: Make sure to send a status message if the pointer
21121         enters a control that can not accept a drop, otherwise the cursor
21122         isn't updated correctly. Also tried to compress the lines of code
21123         a bit.
21124
21125 2005-11-02  Jackson Harper  <jackson@ximian.com>
21126
21127         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
21128         set actions correctly.  This isn't perfect as XDND and win32 have
21129         some differences on how you allow actions. I'll clear this up by
21130         adding a path for drag from MWF to MWF windows.
21131         * XplatUIX11.cs: Hook into the dnd system.
21132
21133 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
21134
21135         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
21136         previously shown but they are no longer need it. Very obvious when 
21137         browsing files with FileDialog.
21138
21139 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
21140
21141         * Control.cs: We always need to call OnPaintBackground. We pretty much
21142           ignore AllPaintingInWmPaint and always do the painting there, whether 
21143           it's set or not, since we always ignore the WM_ERASEBKGND message 
21144           (which we don't generate on X11). This fixes #76616.
21145         * Panel.cs: Removed unneeded background painting. This happens properly
21146           in Control.cs already
21147
21148 2005-10-31  Mike Kestner  <mkestner@novell.com>
21149
21150         * Menu.cs: Add items to collection before setting their index.
21151         * MenuItem.cs : add range checking with ArgumentException like MS.
21152         [Fixes #76510]
21153
21154 2005-10-31  Jackson Harper  <jackson@ximian.com>
21155
21156         * ListBox.cs: Invalidate if the area is visible at all not just
21157         contained in the visible rect. Fixes unselection of semi visible
21158         items.
21159
21160 2005-10-31  Jackson Harper  <jackson@ximian.com>
21161
21162         * Control.cs: Consistently name the dnd methods. Make them
21163         internal so we can override them to match some MS behavoir
21164         internally.
21165         * Win32DnD.cs: Use the new consistent names.
21166
21167 2005-10-31  Jackson Harper  <jackson@ximian.com>
21168
21169         * TreeView.cs: Don't draw the selected node when we lose focus.
21170
21171 2005-10-31  Jackson Harper  <jackson@ximian.com>
21172
21173         * X11Dnd.cs: We still need to reset the state even though a full
21174         reset isn't being done, otherwise status's still get sent all over
21175         the place.
21176
21177 2005-10-31  Jackson Harper  <jackson@ximian.com>
21178
21179         * Control.cs: Make the dnd_aware flag internal so the dnd
21180         subsystem can check it. Catch exceptions thrown in dnd handlers to
21181         match MS behavoir.
21182         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
21183         * X11Dnd.cs: Handle null data in the converters. Set the XDND
21184         version when sending a XdndEnter. Use the control/hwnd dnd_aware
21185         flags to reduce the number of dnd enters/status's sent.
21186
21187 2005-10-31  Jackson Harper  <jackson@ximian.com>
21188
21189         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
21190
21191 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
21192
21193         * PictureBox.cs: Fixes 76512
21194
21195 2005-10-28  Jackson Harper  <jackson@ximian.com>
21196
21197         * X11Dnd.cs: Early implementation to support winforms being a drag
21198         source for data on X11. Also restructured the converters so they
21199         can go both ways now.
21200         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
21201         
21202 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
21203
21204         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
21205           clipboard requests
21206
21207 2005-10-27  Jackson Harper  <jackson@ximian.com>
21208
21209         * TreeNode.cs: Implement serialization so my DnD examples will work.
21210
21211 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
21212
21213         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
21214           TreeView.cs: Don't dispose objects that are not owned.
21215           
21216 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
21217
21218         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
21219           should retrieve the current cursor and report that, but XplatUI
21220           doesn't (yet) have an interface for that (and I'm not sure I even
21221           can, on X11)
21222         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
21223           until any message loop processing is done (and the WM_SETCURSOR
21224           replaces the cursor to the proper one)
21225         * XplatUIX11.cs: 
21226           - Fixed override behaviour, we can't set the cursor globally on X11, 
21227             just for our windows.
21228           - Invalidating the System.Drawing X11 display handle when we are
21229             shutting down
21230         * Control.cs: Fix to make csc happy
21231
21232 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
21233
21234         * TextBoxBase.cs: 
21235           - get_Text: Add last line (without trailing newline) to returned
21236             value (Fixes 76212)
21237           - get_TextLength: Count last line in returned length
21238           - ToString: Call Text property instead of duplicating code
21239
21240 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
21241
21242         * ImageList.cs: Dispose ImageAttributes objects.
21243
21244 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
21245
21246         * ImageList.cs: Use attribute constructors with less arguments where
21247           possible.
21248
21249 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
21250
21251         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
21252           Use typeof instead of strings when assembly is referenced. Added
21253           some more comments.
21254
21255 2005-10-21  Jackson Harper  <jackson@ximian.com>
21256
21257         * ListView.cs: Raise a double click event. Also tried to somewhat
21258         fix when the selectedindexchanged event is raised. Its still
21259         broken though.
21260
21261 2005-10-21  Jackson Harper  <jackson@ximian.com>
21262
21263         * TreeView.cs: New method to invalidate the plus minus area of a
21264         node without invalidating the whole node (maybe this can be used
21265         in some more places).
21266         * TreeNodeCollection.cs: When adding to an empty node we need to
21267         invalidate its plus minus area so the little block shows up.
21268         
21269 2005-10-21  Jackson Harper  <jackson@ximian.com>
21270
21271         * TreeView.cs: Make sure that when we invalidate a node the bounds
21272         are big enough to cover the selected box and the focus
21273         rectangle. Use a different colour for the lines connecting nodes
21274         so they show up with all themes.
21275
21276 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
21277
21278         * NativeWindow.cs: Don't call anything that could call into the driver,
21279           we might be on a different thread.
21280
21281 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
21282
21283         * Control.cs(Dispose): Since Dispose might run on a different thread,
21284           make sure that we call methods that could call into the driver via
21285           invoke, to avoid thread issues
21286
21287 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
21288
21289         * XplatUI.cs: Removed finalizer
21290         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
21291           not allowing to be called on the finalizer thread.
21292
21293 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
21294
21295         * ImageList.cs:
21296           - Reverted r51889 and r51891.
21297           - Added ImageListItem class that stores unmodified image items and image
21298             properties required to create list images until handle is created.
21299           - Added AddItem and moved image creation logic to AddItemInternal.
21300           - Added CreateHandle method that creates images based on unmodified items.
21301           - Added DestroyHandle that changes state to store unmodified items.
21302           - Add and AddStrip methods no more create handle.
21303           - ReduceColorDepth has no return value.
21304           - Dispose destroys handle.
21305           - Modified other methods to reflect the above changes.
21306           - Implemented key support.
21307           - Added profile 2.0 members and attributes.
21308           - Added private Reset and ShouldSerialize methods that provide the same
21309             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
21310             them as they are private.
21311           - Added some more comments about implementation details.
21312
21313 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
21314
21315         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
21316
21317 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
21318
21319         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
21320
21321 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
21322
21323         * DataGridDrawingLogic.cs: Fixes column hit calcultation
21324         * DataGridColumnStyle.cs: Remove debug message
21325
21326 2005-10-20  Jackson Harper  <jackson@ximian.com>
21327
21328         * TreeView.cs: We can always get input keys regardless of whether
21329         or not editing is enabled. They are used for navigation.
21330
21331 2005-10-20  Jackson Harper  <jackson@ximian.com>
21332
21333         * TreeNode.cs: Use the viewport rect for determining if a node
21334         needs to be moved for visibility. Don't use Begin/End edit. This
21335         calls a full refresh when its done.
21336         * TreeView.cs: New SetBottom works correctly.  Make the viewport
21337         rect property internal so the treenodes can see it. When clicking
21338         on a node we need to ensure that its visible because it might just
21339         be partly visible when clicked.
21340
21341 2005-10-20  Jackson Harper  <jackson@ximian.com>
21342
21343         * TreeNodeCollection.cs: Remove debug code.
21344
21345 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
21346
21347         * Datagrid.cs: Implements column sorting in Datagrid
21348         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
21349
21350 2005-10-20  Jackson Harper  <jackson@ximian.com>
21351
21352         * TreeNodeCollection.cs: Remove items properly. Update the correct
21353         area after removing them.
21354
21355 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
21356
21357         * Datagrid.cs: Should not call base.OnPaintBackground
21358
21359 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
21360
21361         * XplatUIX11.cs (GetMessage):
21362           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
21363             window instead of client window
21364           - Now properly calculates NC_xBUTTONUP message coordinates
21365           - ScreenToMenu now properly calculates it's coordinates of whole 
21366             window, since menus are in the whole window, not in the client
21367             window
21368           - Added WholeToScreen coordinate translation method
21369
21370 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
21371
21372         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
21373           want to return a message, loop back to the beginning of the function
21374           and grab the next real message to process instead.
21375
21376 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
21377
21378         * Splitter.cs: Properly set limits if no filler control is used
21379
21380 2005-10-19  Jackson Harper  <jackson@ximian.com>
21381
21382         * ColorDialog.cs: Don't show the help button if it is not enabled
21383         instead of disabling it (this is what MS does). Don't create the
21384         panel until the dialog is run, otherwise the vars (such as
21385         ShowHelp) are not set yet.
21386
21387 2005-10-19  Jackson Harper  <jackson@ximian.com>
21388
21389         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
21390         are reduced when adding nodes.
21391         * TreeNode.cs:
21392         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
21393         tree.
21394         
21395 2005-10-19  Jackson Harper  <jackson@ximian.com>
21396
21397         * FolderBrowserDialog.cs: End editing our treeview so the window
21398         actually gets refreshed.
21399
21400 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
21401
21402         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
21403           Obsoleted handling of WM_ERASEBKGND, now always draws our background
21404           inside of WM_PAINT
21405
21406 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
21407
21408         * MenuAPI.cs: Returns after Hidding window
21409         * XplatUIX11.cs: Added TODO found while debugging menu issues
21410
21411 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
21412
21413         * XplatUIX11.cs: Do not re-map the whole window when it's size
21414           becomes non-zero unless it's supposed to be actually visible
21415
21416 2005-10-18  Jackson Harper  <jackson@ximian.com>
21417
21418         * TreeView.cs: We don't need to keep a count anymore.
21419         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
21420         use the Grow method.
21421
21422 2005-10-18  Jackson Harper  <jackson@ximian.com>
21423
21424         * TreeNodeCollection.cs: Insert is not supported on arrays, so
21425         implement it manually here.
21426
21427 2005-10-18  Jackson Harper  <jackson@ximian.com>
21428
21429         * ImageList.cs: Dont kill the list when the colour depth is
21430         changed, just change the colour depth of all the images.
21431         - Same goes for setting the image size. Just resize them all
21432         instead of killing the list softly.
21433
21434 2005-10-18  Jackson Harper  <jackson@ximian.com>
21435
21436         * Control.cs: Don't invalidate empty rectangles.
21437
21438 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
21439
21440         * ListViewItem.cs:
21441           - Adds checked item to the Checked/Item lists (where empty before)
21442           - Do not add items to the Selected lists if they are already present
21443         * ListView.cs:
21444           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
21445           - When deleting items make sure that we delete them for the Selected
21446           and Checked list also.
21447
21448 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
21449
21450         * Label.cs: Dispose objects no longer used
21451         * ThemeWin32Classic.cs: Dispose objects no longer used
21452
21453 2005-10-18  Jackson Harper  <jackson@ximian.com>
21454
21455         * TabControl.cs: Don't refresh the whole control when the tabs are
21456         scrolled, we just need to refresh the tab area.
21457
21458 2005-10-17  Jackson Harper  <jackson@ximian.com>
21459
21460         * XplatUIX11.cs: Compress code a little bit. Only calculate the
21461         after handle when we need it.
21462
21463 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
21464
21465         * Control.cs: When the parent size changes, recalculate anchor 
21466           positions. Partial fix for #76462
21467
21468 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
21469
21470         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
21471           drawn. Fixes #76462
21472
21473 2005-10-17  Jackson Harper  <jackson@ximian.com>
21474
21475         * MonthCalendar.cs: Don't create the numeric up down until our
21476         handle is created. Otherwise our handle is created in the
21477         constructor and we don't know if we are a WS_CHILD or WS_POPUP
21478         yet.
21479
21480 2005-10-17  Jackson Harper  <jackson@ximian.com>
21481
21482         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
21483         correctly.
21484
21485 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
21486         * TreeNode.cs : small logical fix (was using local var instead of field)
21487         
21488 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
21489
21490         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
21491
21492 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
21493
21494         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
21495
21496 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
21497
21498         * Control.cs: 
21499           - Re-implemented anchoring code. My first version was really broken.
21500             This fixes bug #76033. Unlike the previous implementation we will
21501             no longer have round errors since all numbers are calculated from
21502             scratch every time. Removed various anchor-related obsolete vars.
21503           - InitLayout no longer causes layout event firing and layout to be 
21504             performed
21505
21506 2005-10-16  Jackson Harper  <jackson@ximian.com>
21507
21508         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
21509         which was broken).
21510
21511 2005-10-16  Jackson Harper  <jackson@ximian.com>
21512
21513         * TabControl.cs: Remove debug code.
21514
21515 2005-10-16  Jackson Harper  <jackson@ximian.com>
21516
21517         * XEventQueue.cs: Increase the default queue size (very simple
21518         apps needed to grow the queue).
21519         * Hwnd.cs: No finalizer so we don't need to suppress
21520         finalization. Compute the invalid area manually so a new rectangle
21521         does not newto be created.
21522         * ScrollableControl.cs: Don't set any params (otherwise visibility
21523         isn't set correctly).
21524         * MdiChildContext.cs: New constructor takes the mdi parent so it
21525         doesn't have to be computed and avoids a crash on windows. Draw
21526         the window icon properly, and allow the text to be seen.
21527         * Form.cs: Use new MdiChildContext constructor. Make sure the
21528         child context isn't null in wndproc.
21529         * TabControl.cs: Don't set focus, this is muddling keyboard
21530         behavoir. Expand the tab rows when a window size increase will
21531         allow extra tabs to be seen. Don't allow tabs smaller than the
21532         width of a window to be scrolled out of view.
21533         * TreeNode.cs:
21534         * TreeView.cs: Use measure string to calculate a nodes width, the
21535         width is cached and only updated when the text or the font is
21536         changed. Don't check for expand/collapse clicks on the first level
21537         nodes if root lines are disabled.
21538         
21539 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
21540
21541         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
21542
21543 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
21544
21545         * DataGridBoolColumn.cs: fixes warning
21546
21547 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
21548
21549         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
21550         to match more to match more precisely the MS Net behavior
21551
21552 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
21553
21554         * Hwnd.cs: Added field to track if window is mapped
21555         * XplatUIX11.cs: 
21556           - Unmap windows if they become 0-size, re-map when 
21557             they are >0 again; fixes #76035
21558           - Re-set our error handler after initializing X11Desktop
21559             to override any error handlers Gtk or whatever was called
21560             may have set.
21561
21562 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
21563
21564         * CheckedListBox.cs: Removed unused vars
21565         * ListView.cs: Fixed signatures
21566         * RichTextBox.cs: Removed unused vars
21567         * TextBoxBase.cs: Removed unused vars
21568         * XplatUIWin32.cs: Removed unused vars
21569         * XplatUIX11.cs: Removed unused vars
21570         * XplatUI.cs: Updated version and date to latest published
21571
21572 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
21573
21574         * Cursor.cs: Added private .ctor to work around a bug in
21575           resourceset (Thanks to Geoff Norton for the help on this)
21576         * SplitterEventArgs.cs: Made fields accessible so we don't
21577           waste boatloads of objects and can reuse the same one
21578           in Splitter
21579         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
21580           any captions and borders when generating screen coordinates
21581         * Splitter.cs: Reimplemented control, now fully complete, uses
21582           rubberband drawing, supports and obeys all properties, has
21583           proper cursors
21584
21585 2005-10-13  Miguel de Icaza  <miguel@novell.com>
21586
21587         * Form.cs (Form): Setup default values for autoscale and
21588         autoscale_base_size;  Make these instance variables, not static
21589         variables. 
21590
21591         (OnLoad): on the first load, adjust the size of the form.
21592
21593 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
21594
21595         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
21596           width argument to DrawReversibleRectangle()
21597         * XplatUIWin32.cs, XplatUIX11.cs: 
21598           - Implemented width for DrawReversibleRectangle()
21599           - Added logic to DrawReversibleRectangle that recognizes a zero
21600             width or height and only draws a line in that situation
21601         
21602 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
21603
21604         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
21605         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
21606         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
21607           method (it uses our FosterParent window to get a graphics context)
21608
21609 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
21610
21611         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
21612           and SetWindowBackground methods
21613         * Control.cs:
21614           - Setting proper ControlStyles
21615           - We no longer call XplatUI.SetWindowBackground and XplatUI.
21616             EraseWindowBackground, instead we draw the window background
21617             ourselves in PaintControlBackground. This behaviour is
21618             required to match MS, where, when OnPaintBackground is not
21619             called, the background is not drawn.
21620           - Removed unneeded Refresh() in set_Text
21621         * Hwnd.cs: Dropped the ErasePending support. No longer needed
21622         * XplatUIX11.cs:
21623           - Created DeriveStyles method to translate from CreateParams to
21624             FormBorderStyle and TitleStyle, also handles BorderStyle (which
21625             matches FormBorderStyle enum values)
21626           - Consolidated SetHwndStyles and CalculateWindowRect border/title
21627             style calculations into single DeriveStyles method
21628           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
21629             from redrawing the whole window on any resize or expose.
21630           - Fixed CreateWindow usage of SetWindowValuemask. Before not
21631             all styles were applied to our whole/client window appropriately
21632           - Removed EraseWindowBackground() and SetWindowBackground() methods
21633           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
21634             no longer clear/redraw the background through X
21635           - Removed handling of erase_pending bit, we have no use for it (or
21636             so it seems)
21637         * XplatUIOSX.cs:
21638           - Removed generation and handling of WM_ERASEBKGND message
21639           - Removed EraseWindowBackground() and SetWindowBackground() methods
21640           - Removed handling of hwnd.ErasePending flag
21641         * XplatUIWin32.cs:
21642           - Removed EraseWindowBackground() and SetWindowBackground() methods
21643           - We no longer call EraseWindowBackground on PaintEventStart, we 
21644             ignore the fErase flag, erasing is handled in Control in the
21645             background handler
21646         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
21647           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
21648           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
21649           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
21650           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
21651           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
21652           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
21653
21654 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
21655
21656         * PropertyGrids.cs: Get sub properties
21657         * PropertyGridView.cs: Fix drawing code
21658
21659 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
21660
21661         * ListBox.cs: Fixes 76383
21662
21663 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
21664
21665         * DataGridTextBoxColumn.cs: Sets location and size before attachment
21666         * ThemeWin32Classic.cs: Fixes border drawing and calculations
21667         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
21668
21669
21670 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
21671
21672         * ComboBox.cs: Fixes border drawing
21673
21674 2005-10-10  Miguel de Icaza  <miguel@novell.com>
21675
21676         * MimeIcon.cs: Ignore errors if the file can not be read.
21677
21678 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
21679
21680         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
21681          - Fixed border calculations
21682          - Fixed horizontal scrolling in single column listboxes
21683          - Fixed drawing issues
21684
21685 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
21686
21687         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
21688           FormBorderStyle enum
21689         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
21690           code to determine FormBorderStyles from CreateParams
21691         * Form.cs:
21692           - Fixed bug where we'd set the wrong window styles if we were
21693             not creating an MDI window
21694           - Added call to XplatUI.SetBorderStyle when form borders are set
21695         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
21696         * Hwnd.cs:
21697           - Removed obsolete edge style
21698           - Switched from BorderStyle to FormBorderStyle
21699         
21700 2005-10-10  Jackson Harper  <jackson@ximian.com>
21701
21702         * Form.cs: Use the property to get the window handle instead of
21703         accessing it directly. Prevents a null reference exception.
21704
21705 2005-10-10  Jackson Harper  <jackson@ximian.com>
21706
21707         * TreeView.cs: Don't adjust the rect given to DrawString now that
21708         our libgdiplus draws correctly.
21709
21710 2005-10-08  Jackson Harper  <jackson@ximian.com>
21711
21712         * TreeView.cs: Don't try to find the clicked on node if there are
21713         no nodes in the tree.
21714
21715 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
21716
21717         * RichTextBox.cs:
21718
21719           restore
21720
21721 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
21722
21723         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
21724           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
21725           ErrorProvider.cs:
21726           Use ResPool for brushes and dispose System.Drawing objects that
21727           are not used anymore.
21728
21729 2005-10-07  Jackson Harper  <jackson@ximian.com>
21730
21731         * MdiChildContext.cs: Use the new borders instead of drawing them
21732         ourselves.
21733
21734 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
21735
21736         * Calling UpdateBounds after changing the window's BorderStyle 
21737         since the style can change the ClientSize
21738
21739 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21740
21741         * Control.cs: Made PaintControlBackground virtual
21742         * Panel.cs: Overriding PaintControlBackground instead of using paint
21743           event; paint event method was interfering with 'real' users of the
21744           event.
21745
21746 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
21747
21748         * ThemeWin32Classic.cs: remove border drawing since it is handled
21749         by the base control class now and was causing double border drawing.
21750
21751 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21752
21753         * Panel.cs: Redraw our background on paint. Not a pretty solution,
21754           but it does seem to match MS behaviour. This fixes bug #75324
21755
21756 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21757
21758         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
21759           somewhat hackish looking
21760
21761 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
21762
21763         * TextBoxBase.cs:
21764           - We now accept Enter even if AcceptEnter is false, if the containing
21765             form does not have an AcceptButton configured (fixes bug #76355)
21766           - Calculations are now fixed to no longer use Width/Height, but
21767             ClientSize.Width/Height, since we now support borders (this was
21768             a result of fixing borders and therefore bug #76166)
21769           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
21770             true (fixes bug #76354)
21771         
21772 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21773
21774         * Control.cs: 
21775           - Defaulting BorderStyle and setting it in XplatUI when our window 
21776             is created
21777           - Added enum check to InternalBorderStyle setter
21778         * XplatUIX11.cs: 
21779           - Added drawing of window borders
21780           - Now properly calculates WM decorations offset for toplevel 
21781             windows (fixes bug #74763)
21782         * XplatUIWin32.cs: 
21783           - Implemented BorderStyles for windows (we're letting win32 draw 
21784             the border for us)
21785           - Fixed the signature for SetWindowLong
21786         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
21787           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
21788           setting borders
21789         * UpDownBase.cs: Remove drawing of borders, this is handled by
21790           the driver, outside the client area
21791         * ListView.cs: Removed bogus border calculations. The control should
21792           be oblivious to borders, since those are not part of the client
21793           area. 
21794         * X11DesktopColors.cs: Commented out (currently) unneeded variables
21795         * ThemeWin32Classic.cs: Removed border calculations from ListView 
21796           drawing code
21797
21798 2005-10-06  Jackson Harper  <jackson@ximian.com>
21799
21800         * MdiChildContext.cs: Clear out the old virtual position remove
21801         all the unneeded calls to CreateGraphics.
21802
21803 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
21804
21805         * TextControl.cs: Use proper color for highlighted text; fixes #76350
21806
21807 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
21808
21809         * Form.cs: 
21810           - Added loading and setting of our new default icon
21811           - Only set icon if window is already created
21812
21813 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21814
21815         * Label.cs:
21816           - Do not explicitly set the foreground and background colors, to
21817             allow inheriting from parents (fixes #76302)
21818           - Use Control's InternalBorderStyle property to deal with borders
21819
21820 2005-10-06  Jackson Harper  <jackson@ximian.com>
21821
21822         * MdiChildContext.cs: Use the new xplatui function to draw a
21823         reversible rect.
21824
21825 2005-10-06  Jackson Harper  <jackson@ximian.com>
21826
21827         * Form.cs: Add the parent before creating the child context cause
21828         we need the parent when setting up the child.
21829
21830 2005-10-06  Jackson Harper  <jackson@ximian.com>
21831
21832         * FolderBrowserDialog.cs: redo the tree population code so a
21833         second thread isn't used. Should be a lot faster and more stable
21834         now.
21835
21836 2005-10-05  Jackson Harper  <jackson@ximian.com>
21837
21838         * TreeView.cs: There are no expand/collapse boxes if the node has
21839         no children.
21840
21841 2005-10-05  Jackson Harper  <jackson@ximian.com>
21842
21843         * X11DesktopColors.cs: Get menu colours for the gtk theme.
21844
21845 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
21846
21847         * FileDialog.cs: Fix InitialDirectory
21848
21849 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
21850
21851         * ComboBox.cs:
21852                 - Fixes changing between styles
21853                 - Fixes simple mode
21854                 - Fixes last item crashing when navigating with keyboard
21855
21856 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
21857
21858         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
21859
21860 2005-10-05  Jackson Harper  <jackson@ximian.com>
21861
21862         * TreeView.cs: If updating the root node do a full refresh.
21863         * TreeNode.cs: The root node should be expanded by default. Also
21864         added a utility prop to tell if we are the root node.
21865         * TreeNodeCollection.cs: Only refresh if the node we are being
21866         added to is expanded. Also added a comment on a potential
21867         optimization.
21868         
21869 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
21870
21871         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
21872           in dispose method. Fixes #76330
21873
21874 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
21875
21876         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
21877
21878                 - Implements vertical and horizontal scrolling using XplatUI
21879                 - Fixes keyboard navagation
21880                 - Fixes EnsureVisible
21881                 - Drawing fixes
21882                 - Handles and draws focus properly
21883
21884
21885 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
21886
21887         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
21888           Create handle. NET_2_0: Destroy handle when value is null.
21889
21890 2005-10-03  Jackson Harper  <jackson@ximian.com>
21891
21892         * ScrollBar.cs: My last scrollbar patch was broken. This is a
21893         revert and a new patch to prevent the thumb from refreshing so
21894         much.
21895
21896 2005-10-02  Jackson Harper  <jackson@ximian.com>
21897
21898         * ScrollBar.cs: Don't update position if it hasn't actually
21899         changed. This occurs when you hold down the increment/decrement
21900         buttons and the thumb gets to the max/min.
21901
21902 2005-10-01  Jackson Harper  <jackson@ximian.com>
21903
21904         * Form.cs:
21905         * MdiChildContext.cs:
21906         * MdiClient.cs: Implement ActiveMdiChild in Form.
21907
21908 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
21909
21910         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
21911
21912 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
21913
21914         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
21915           be found
21916
21917 2005-09-30  Jackson Harper  <jackson@ximian.com>
21918
21919         * ListBox.cs: Don't do a full refresh unless some data has
21920         actually changed.
21921
21922 2005-09-30  Jackson Harper  <jackson@ximian.com>
21923
21924         * TreeView.cs: Make sure that the checkboxes size is factored in
21925         even when not visible.
21926
21927 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
21928
21929         * FileDialog.cs: Fix Jordi's build break
21930
21931 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
21932
21933         * FileDialog.cs: 
21934                 - Use standard the Windows colours for the combobox as espected
21935                 - Dispose objects that use resouces when no longer need them
21936
21937 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
21938
21939         * X11DesktopColors.cs: Initial incomplete implementation
21940         * XplatUIX11.cs: Added call to initialize X11DesktopColors
21941
21942 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
21943
21944         * Theme.cs: 
21945           - Switched Theme color names to match the names defined in 
21946             System.Drawing.KnownColors. Life's hard enough, no need to make 
21947             it harder.
21948           - Added setters to all theme color properties so themes can set
21949             their color schemes. The setters also propagate the color changes
21950             to System.Drawing.KnownColors via reflection
21951         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
21952           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
21953           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
21954           use the new, more logical theme color names
21955         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
21956           post-NT colors
21957         * ThemeWin32Classic.cs:
21958           - Removed code to set the old classic Windows colors. Instead it
21959             now relies on the colors returned by System.Drawing.KnownColors
21960             which will be either modern static colors (Unix) or colors
21961             read from the user's configuration (Win32)
21962           - Updated to use the new, more logical theme color names
21963           - Switched DataGrid drawing code to use only Theme colors instead of
21964             a mix of System.Drawing.KnownColors and Theme colors
21965           - DrawFrameControl(): Removed code that fills the button area, the
21966             fill would overwrite any previous fill done by a control. This
21967             fixes bug #75338 
21968           - Added DrawReversibleRectangle() stub
21969         * ScrollableControl.cs: Set visible state to false when scrollbars
21970           are removed (pdn fix)
21971         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
21972           DrawReversibleRectangle() method to allow drawing primitive 
21973           'rubber bands'
21974         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
21975
21976 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21977
21978         * ImageList.cs: Add(Icon): Create handle.
21979
21980 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
21981
21982         * ListView.cs:
21983         * ThemeWin32Classic.cs:
21984                 - Fixes detail mode
21985                 - Sets clippings
21986                 - Issues with drawing
21987
21988 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21989
21990         * ImageList.cs: Moved RecreateHandle back to ImageList as event
21991           source has to be the ImageList.
21992
21993 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21994
21995         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
21996
21997 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21998
21999         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
22000
22001 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22002
22003         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
22004
22005 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
22006         * GridItem.cs: Fixed TODOs
22007         * GridItemCollection.cs: Added ICollection interface
22008
22009 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
22010
22011         * ImageList.cs: Resize icons when needed.
22012
22013 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
22014
22015         * ListViewItem.cs
22016                 - Fixes GetBounds and returns on screen rects
22017         * ListView.cs:
22018                 - Fixes vertical and horzintal scrolling of items
22019         * ThemeWin32Classic.cs:
22020                 - Fixes drawing
22021                 
22022 2005-09-29  Raja R Harinath  <harinath@gmail.com>
22023
22024         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
22025
22026 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
22027
22028         * ImageList.cs: Added comments about handle creation. Moved Handle,
22029           HandleCreated and OnRecreateHandle implementations to ImageCollection.
22030           Handle is created in Add methods.
22031
22032 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
22033          
22034         * DataGridDrawingLogic.cs: 
22035                 - Takes rows into account on Colum calculations
22036                 - Returns the column when clickig
22037         * DataGrid.cs:
22038                 - Fixes default HitTestInfo values
22039                 - Fixes HitTestInfo.ToString
22040                 - Fixes ResetBackColor          
22041         
22042 2005-09-28  Jackson Harper  <jackson@ximian.com>
22043
22044         * MdiChildContext.cs: Obey rules for fixed sized windows (no
22045         sizing or cursor changes). Also added some temp code to draw the
22046         titlebars text (Makes dev a little easier).
22047
22048 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
22049
22050         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
22051
22052 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
22053          
22054         * ListBox.cs: Fixes bug 76253
22055
22056 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
22057
22058         * ImageList.cs: Added comments about the current implementation. Added
22059           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
22060           Format32bppArgb to preserve transparency and can use Graphics.FromImage
22061           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
22062           with Bitmap.LockBits for better performance. Revised the whole file to
22063           match MS.NET behaviour and provide better performance. Non-public
22064           interface members are calling public members even when they throw
22065           NotSupportedException for better maintainability. Moved ColorDepth,
22066           ImageSize, ImageStream and TransparentColor implementations to
22067           ImageCollection for better performance as these properties are not used
22068           by ImageList.
22069         * ImageListStreamer.cs: Added a new internal constructor that takes an
22070           ImageList.ImageCollection and serializes Images based on
22071           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
22072           match ImageList property name.
22073
22074 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
22075
22076         * ListBox.cs: Fixes IndexFromPoint for last item
22077
22078 2005-09-27  Jackson Harper  <jackson@ximian.com>
22079
22080         * Form.cs: Set the position of new mdi children correctly.
22081
22082 2005-09-27  Jackson Harper  <jackson@ximian.com>
22083
22084         * MdiClient.cs: New mdi children need to be added to the back of
22085         the controls collection so the zorder is set correctly. Also add a
22086         count of all the child windows that have been created.
22087
22088 2005-09-27  Jackson Harper  <jackson@ximian.com>
22089
22090         * Form.cs (CreateParams): Setup MDI forms correctly.
22091
22092 2005-09-27  Jackson Harper  <jackson@ximian.com>
22093
22094         * MdiChildContext.cs:
22095         * MonthCalendar.cs:
22096         * UpDownBase.cs:
22097         * ListBox.cs:
22098         * ListView.cs:
22099         * TextBoxBase.cs:
22100         * TreeView.cs:
22101         * ScrollableControl.cs:
22102         * ComboBox.cs: Add implicit controls using the new implict control
22103         functionality in ControlCollection. Also try to block multiple
22104         control add in a suspend/resume layout to save some cycles.
22105         
22106 2005-09-27  Jackson Harper  <jackson@ximian.com>
22107
22108         * Control.cs: Add functionality to the controls collection to add
22109         'implicit controls' these are controls that are created by the
22110         containing control but should not be exposed to the user. Such as
22111         scrollbars in the treeview.
22112         * Form.cs: The list var of the ControlsCollection is no longer
22113         available because of the potential of implicit controls getting
22114         ignored by someone accessing the list directly.
22115
22116 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
22117
22118         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
22119           loose it's parent. (Fixed bug introduced in r49103 when we added
22120           setting the child parent to null on Remove)
22121
22122 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
22123
22124         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
22125         * Splitter.cs: Added missing attributes for BorderStyle property.
22126         * TextBoxBase.cs: Marked Calculate* methods internal.
22127         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
22128         MS.NET.
22129
22130 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
22131          
22132         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
22133
22134 2005-09-25  Jackson Harper  <jackson@ximian.com>
22135
22136         * TreeView.cs: Update the node bounds correctly regardless of
22137         whether the node is visible.
22138
22139 2005-09-25  Jackson Harper  <jackson@ximian.com>
22140
22141         * ImageList.cs: Don't dispose the image after it is added to the
22142         image list. Only reformat images that need to be resized.
22143
22144 2005-09-25  Jackson Harper  <jackson@ximian.com>
22145
22146         * ImageList.cs: Don't set the format when changing the image.
22147
22148 2005-09-25  Jackson Harper  <jackson@ximian.com>
22149
22150         * TreeView.cs: We can't just assume the node has a font. Use the
22151         treeviews font if no node font is available.
22152
22153 2005-09-25  Jackson Harper  <jackson@ximian.com>
22154
22155         * TreeView.cs: Allow the scrollbars to be reset with negative
22156         values.
22157         - Don't add scrollbars to negative sized windows.
22158
22159 2005-09-23  Jackson Harper  <jackson@ximian.com>
22160
22161         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
22162         old Mono.Posix. Also remove some stray code that shouldn't have
22163         been committed.
22164
22165 2005-09-23  Jackson Harper  <jackson@ximian.com>
22166
22167         * TreeView.cs: Attempt at proper sizing of the horizontal
22168         scrollbar. Also don't resize the scrollbars unless they are
22169         visible.
22170
22171 2005-09-23  Jackson Harper  <jackson@ximian.com>
22172
22173         * TreeView.cs: We don't need to expand the invalid area when the
22174         selection changes, as this is all drawn in the node's bounding
22175         box. The area needs to be expanded (previous typo was contracting
22176         it) when the focus rect moves.
22177
22178 2005-09-23  Jackson Harper  <jackson@ximian.com>
22179
22180         * TreeView.cs: Display the selection box under the correct
22181         circumstances. We were rendering white text with no selection box
22182         before.
22183
22184 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
22185
22186         * TextControl.cs(Split): Now updates selection start/end if it points 
22187           into a line that's being split. Fixes a FIXME and bug #75258
22188
22189 2005-09-23  Jackson Harper  <jackson@ximian.com>
22190
22191         * Binding.cs:
22192         * ListControl.cs: Don't use the path when retrieving binding
22193         managers from the binding context. My bat sense tells me that the
22194         path is only used on insertion.
22195
22196 2005-09-22  Jackson Harper  <jackson@ximian.com>
22197
22198         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
22199
22200 2005-09-22  Jackson Harper  <jackson@ximian.com>
22201
22202         * Splitter.cs: There are special cursors used for splitting.
22203         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
22204
22205 2005-09-22  Jackson Harper  <jackson@ximian.com>
22206
22207         * Splitter.cs: Change the cursor appropriately when the splitter
22208         is moused over, so the user actually knows there is a splitter
22209         there.
22210
22211 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
22212
22213        * Label.cs : Fix ToString method to give same output as MS.NET
22214
22215 2005-09-22  Jackson Harper  <jackson@ximian.com>
22216
22217         * TreeView.cs: Create the scrollbars when the handle is created
22218         and add them right away, just make them invisble. Also account for
22219         the window being shrunk vertically to the point that the vert
22220         scrollbar needs to be added.
22221         - Remove some 0.5 adjustments to get around anti aliasing issues.
22222         
22223 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
22224          
22225         * MainMenu.cs: Fixes default value
22226         * MenuItem.cs: Fixes default value
22227
22228 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
22229
22230         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
22231
22232 2005-09-21  Jackson Harper  <jackson@ximian.com>
22233
22234         * Control.cs: Don't try to set the border style on the window if
22235         it hasn't been created. When the window is created the border
22236         style will be used.
22237
22238 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
22239
22240         * Control.cs (Update): Don't call XplatUI if we don't have a
22241           window handle yet
22242
22243 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
22244
22245         * ContainerControl.cs: Instead of throwing an exception, print
22246           a one-time warning about Validate not being implemented
22247         * XplatUIWin32.cs: Removed debug output
22248
22249 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
22250
22251         * Control.cs: Only set XplatUI background if we expect the windowing
22252           system to handle the background. This stops controls that draw their
22253           own background from flickering
22254
22255         * XplatUIX11.cs: Support custom visuals and colormaps for window 
22256           creation. This allows, amongst other things, using MWF X11 windows 
22257           with OpenGL.
22258
22259 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
22260
22261         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
22262           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
22263           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
22264           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
22265           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
22266           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
22267           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
22268           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
22269           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
22270           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
22271           GridColumnStylesCollection.cs, 
22272           IDataGridColumnStyleEditingNotificationService.cs,
22273           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
22274           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
22275           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
22276           TreeNodeCollection.cs, AmbientProperties.cs, 
22277           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
22278           DataObject.cs, ErrorProvider.cs, Splitter.cs,
22279           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
22280           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
22281           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
22282           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
22283           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
22284           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
22285           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
22286           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
22287           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
22288           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
22289           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
22290           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
22291           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
22292           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
22293           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
22294           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
22295           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
22296           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
22297           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
22298           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
22299           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
22300           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
22301           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
22302           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
22303           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
22304           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
22305           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
22306           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
22307           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
22308           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
22309           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
22310           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
22311           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
22312           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
22313           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
22314
22315 2005-09-21  Jackson Harper  <jackson@ximian.com>
22316
22317         * TreeNode.cs: Call Before/After Expand not Collapse when
22318         expanding.
22319
22320 2005-09-20  Jackson Harper  <jackson@ximian.com>
22321         
22322         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
22323
22324 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
22325          
22326         * ListViewItem.cs:
22327                 - Fixes bug 76120
22328                 - Fixes proper storing of subitems
22329                 - Fixes not updated items
22330
22331 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
22332
22333         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
22334           things if our window handle isn't created yet. Also disabled 
22335           debug for TextBoxBase
22336
22337 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
22338
22339         * MenuAPI.cs: Remove filtering of events to allow menu usage
22340
22341 2005-09-20  Miguel de Icaza  <miguel@novell.com>
22342
22343         * Cursor.cs: Allow null to be passed to Cursor.Current.
22344
22345 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
22346
22347         * ThemeWin32Classic.cs:
22348           - Change some private methods/fields to protected virtual so that 
22349             they can be accessed and overriden in derived classes
22350           - First refactoring of some methods. Derived themes now don't 
22351             need to duplicate the complete code from ThemeWin32Classic
22352         * ThemeNice.cs:
22353           - Added nice StatusBar
22354           - Derive from ThemeWin32Classic and not Theme
22355           - Removed duplicate ThemeWin32Classic code
22356
22357 2005-09-20  Miguel de Icaza  <miguel@novell.com>
22358
22359         * Control.cs (ControlCollection.Add): If the value null is passed
22360         the control is ignored. 
22361
22362         Optimize this loop.
22363
22364 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
22365
22366         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
22367           PostQuitMessage state.
22368         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
22369
22370 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
22371
22372         * Application.cs: Our constructor will never get called, move 
22373           initialization to fields; fixes bug #75933
22374
22375 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
22376
22377         * FileDialog.cs :
22378                 - Allow files to be selected properly using file name
22379                 combo box.
22380                 - Add ability to change diretory (absolute / relative)
22381                 using file name combo box.
22382
22383 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
22384          
22385         * ListBox.cs: 
22386                 - Fixes Multicolumn listboxes item wrong calculations
22387                 - Allows to click when only one item is in the listbox
22388                 - Fixes crash when no items using keyboard navigation
22389
22390 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
22391
22392         * ComboBox.cs: Reverted almost everything from the latest patch which
22393           broke ComboBox
22394
22395 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
22396         
22397         * ToolTip.cs:
22398                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
22399         * ComboBox.cs:
22400                 - When DropDownStyle is Simple, it does not show scrollbar 
22401                 to the last item of the list.
22402                 - When DropDownStyle is Simple, it crashed when the list was 
22403                 scrolled down with the down cursor key.
22404                 - Fixed a bug that when DropDownStyle is DropDownList, the 
22405                 selected item was not shown.
22406                 - The position of the selected item was not preserved when 
22407                 the next dropdown happened.
22408         * ThemeWin32Classic.cs:
22409                 - Items were wrapped at the right end.
22410         * CheckedListBox.cs:
22411                 - Fixed Add method
22412         * ListBox.cs:
22413                 - Items should be fully shown.
22414                 - When resizing and vertical scrollbar disappeared, the item 
22415                 of index 0 should be on the top of the list.
22416                 - GetItemRectangle should consider the size of ver. scrollbar
22417         * StatusBar.cs:
22418                 - SizingGrip area should not be allocated when it is not 
22419                 displayed.
22420                 - Now it reflects MinWidth of the containing panel and 
22421                 fixed a crash that happens when its width becomes so small.
22422
22423 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
22424
22425         * CheckedListBox.cs: Fixes bug 76028
22426         * ListBox.cs: Fixes bug 76028
22427
22428 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
22429
22430         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
22431         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
22432
22433 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
22434
22435         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
22436
22437 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
22438
22439         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
22440
22441 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
22442
22443         * IRootGridEntry.cs: Added
22444         * PropertyGridCommands.cs: Added
22445         * PropertiesTab.cs: Added missing methods and property
22446         * PropertyGridView.cs: Made class internal
22447         * PropertyGridTextBox.cs: Made class internal
22448
22449 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
22450
22451         * MimeIcon.cs: Try to check some other environment variables
22452           if "DESKTOP_SESSION" returns "default"
22453
22454 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
22455
22456         * ThemeNice.cs: Corrected background colors (e.g. menus)
22457         * ColorDialog.cs: Use correct background colors for controls
22458
22459 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
22460
22461         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
22462
22463 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
22464
22465         * RichTextBox.cs: Added initial implementation
22466         * lang.cs: Removed. Was accidentally checked in long time ago
22467         * TODO: Removed. Contents were obsolete
22468
22469 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
22470                                                                                 
22471         * PropertiesTab.cs : Added
22472
22473 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
22474                                                                                 
22475         * PropertyGrid.cs : Update
22476         * PropertyGridView.cs : Update
22477         * System.Windows.Forms.resx : Added images and strings
22478
22479 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
22480
22481         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
22482  
22483 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
22484
22485         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
22486           a busy loop right after the Ungrab the X11 display is otherwise 
22487           blocked
22488
22489 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
22490
22491         * ThemeWin32Classic.cs: Optimise the use of clipping
22492
22493 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
22494
22495         * DataGrid.cs: fixes recursion bug
22496
22497 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
22498
22499         * ThemeNice.cs: 
22500           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
22501           - Cleanup
22502
22503 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
22504
22505         * ThemeNice.cs: Draw nice ProgressBars
22506
22507 2005-09-01  Miguel de Icaza  <miguel@novell.com>
22508
22509         * VScrollBar.cs: Another buglet found by Aaron's tool. 
22510
22511         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
22512         bug finder.
22513
22514 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
22515
22516         * ThemeNice.cs:
22517           - Added nicer menu drawing
22518           - Updated DrawTab
22519           - some refactoring
22520
22521 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
22522
22523         * CreateParams.cs (ToString): Made output match MS
22524         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
22525             handle is already created (to avoid forcing window creation)
22526         * XplatUIX11.cs: Set window text to caption after creating window,
22527           in case Text was set before window was created
22528         * Form.cs: Use this.Text instead of a static string as caption
22529
22530 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
22531
22532         * NotifyIcon.cs: Don't set the window to visible; this screws
22533           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
22534           OnPaint without a bitmap)
22535         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
22536           happen very often anyway; we could add the check to the WM_PAINT 
22537           event generation code
22538
22539 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
22540
22541         * NotifyIcon.cs: Fill the icon area with a background color, to 
22542           avoid 'residue' when transparent icons are drawn
22543         * XplatUIX11.cs:
22544           - Handle whole_window == client_window when destroying windows
22545           - SystrayAdd(): Set client_window to whole_window value to
22546             get mouse and other events passed to NotifyIcon
22547
22548 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
22549
22550         * Form.cs: Set proper default for Opacity property
22551         * NotifyIcon.cs:
22552           - ShowSystray(): Don't bother creating telling the OS
22553             about the systray item if no icon is provided
22554           - Now handles WM_NCPAINT message to deal with whole/client window
22555             split
22556           - Create window as visible to not get caught by Expose optimization
22557         * Hwnd.cs: Removed debug message
22558         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
22559           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
22560             PaintEventStart/End to use new client argument
22561         * TextBoxBase.cs:
22562           - Commented out debug messages
22563           - Switched PaintEventStart/End to use new client argument
22564         * XplatUI.cs: Added client window bool to PaintEventStart()/
22565           PaintEventEnd() calls, to support drawing in non-client areas
22566         * XplatUIDriver.cs: 
22567           - Added client window bool to PaintEventStart()/PaintEventEnd() 
22568             calls, to support drawing in non-client areas
22569           - Added conditional compile to allow using MWF BeginInvoke 
22570             on MS runtime
22571         * XplatUIX11.cs:
22572           - Added some conditional debug output
22573           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
22574             whole/client window split
22575           - Implemented handling of client argument to PaintEventStart()/End()
22576         * Control.cs:
22577           - Throw exception if BeginInvoke() is called and the window handle
22578             or one of the window's parent handles is not created
22579           - Added conditional compile to allow using MWF BeginInvoke on
22580             MS runtime
22581           - get_Parent(): Only sets parent if handle is created. This avoids
22582             forcing window handle creation when parent is set.
22583           - Now fires Layout and Parent changed events in proper order
22584           - Switched to use Handle instead of window.Handle for Z-Order setting,
22585             the get_Parent() patch above causes us to possibly get null for 'window'
22586           - Implemented handling of client argument to PaintEventStart()/End()
22587           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
22588             default handling)
22589           - Now sends a Refresh() to all child windows when Refresh() is called
22590
22591 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
22592
22593         * Form.cs: Added (non-functional) Opacity property
22594         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
22595
22596 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
22597         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
22598           use export MONO_THEME=nice to activate it.
22599           Currently supported controls:
22600           - Button
22601           - ComboBox
22602           - ScrollBar
22603           - TabControl (TabAlignment.Top only, other will follow)
22604         * ThemeEngine.cs: Add theme nice
22605         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
22606           if enabled
22607
22608 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
22609
22610         * Splitter.cs: Resize docked control and its neighbor.
22611
22612 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
22613         -- Making Windows with Menus layout correctly --
22614         * Form.cs : The first leg of the fix
22615                 Menu setter - adjust Client Size as needed to make space for the menu
22616                 SetClientSizeCore - doesn't call base version to be able to pass the 
22617                         menu handle to XplatUI.CalculateWindowRect
22618         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
22619         * XplatUIX11.cs: The critical second leg of the fix
22620                 GetWindowPos needs to use a recalculated client_rect
22621                 so that resizing the window doesn't break layout of child controls. 
22622                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
22623                 Lots of \t\n killed
22624
22625 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
22626
22627         * Label.cs: Now properly recalculates width and height on Font and Text
22628           changes if AutoSize is set
22629
22630 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
22631         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
22632
22633 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
22634
22635         * ImageList.cs: Makes ToString method compatible with MS
22636
22637 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
22638
22639         * MenuAPI.cs: fixes bug 75716
22640
22641 2005-08-11 Umadevi S <sumadevi@novell.com>
22642         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
22643
22644 2005-08-11 Umadevi S <sumadevi@novell.com>
22645         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
22646
22647 2005-08-10  Umadevi S <sumadevi@novell.com>
22648         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
22649
22650 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
22651
22652         * Menu.cs: fixes bug 75700
22653         * MenuAPI.cs: fixes navigation issues
22654
22655 2005-08-09  Umadevi S <sumadevi@novell.com>
22656         * CheckedListBox.cs - simple fix for GetItemChecked.
22657
22658 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
22659
22660         * ComboBox.cs: Serveral fixes
22661         * ListBox.cs: Serveral fixes
22662
22663 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
22664
22665         * ComboBox.cs: Fixes FindString methods and GetItemHeight
22666         * ListBox.cs: Fixes FindString methods
22667
22668 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
22669
22670         * DataGrid.cs: fixes bugs exposed by new tests
22671
22672 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
22673
22674         * Mime.cs: Compile Mono assembly references only if compiling
22675           with Mono (Allows to build with VS.Net again)
22676
22677 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
22678
22679         * Control.cs (PaintControlBackground): Draw background image
22680         corrrectly.
22681         (CheckForIllegalCrossThreadCalls): Stubbed.
22682         
22683         * Form.cs (OnCreateControl): Center when should be centered.
22684         
22685         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
22686
22687 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
22688
22689         * Binding.cs: Binding to properties should be case unsensitive
22690
22691 2005-07-18 vlindos@nucleusys.com
22692
22693         * DataGrid.cs: fixes setmember order
22694
22695 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
22696
22697         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
22698         * FileDialog.cs: FileDialog is now resizable and uses the new
22699           MimeIconEngine
22700
22701 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
22702
22703         * DataGridTextBoxColumn.cs: default value
22704         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
22705         * GridTableStylesCollection.cs: fixes checking MappingName
22706         * DataGridDrawingLogic.cs: fixes drawing logic issues
22707         * DataSourceHelper.cs: rewritten to make compatible with more data sources
22708         * DataGrid.cs: fixes    
22709
22710 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
22711
22712         * MimeGenerated.cs: Use case sensitive comparer for
22713           NameValueCollections
22714
22715 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
22716
22717         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
22718         * ThemeWin32Classic.cs: bug fixes, code refactoring
22719         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
22720         * DataGrid.cs: bug fixes, code refactoring
22721         * DataGridTextBox.cs: bug fixes, code refactoring
22722         * DataGridColumnStyle.cs:  bug fixes, code refactoring
22723         * Theme.cs:  bug fixes, code refactoring
22724
22725 2005-07-01  Peter Bartok  <pbartok@novell.com> 
22726
22727         * TextControl.cs: Quick fix for the reported crash on ColorDialog
22728           and other text box usage
22729
22730 2005-07-01  Jackson Harper  <jackson@ximian.com>
22731
22732         * TabControl.cs: Make sure the bottom of the tab covers the pages
22733         border.
22734
22735 2005-06-30  Peter Bartok  <pbartok@novell.com> 
22736
22737         * Form.cs (ShowDialog): Assign owner of the dialog
22738         * TextBoxBase.cs: Always refresh caret size when deleting, caret
22739           might have been moved to a tag with different height
22740
22741 2005-06-30  Jackson Harper  <jackson@ximian.com>
22742
22743         * Form.cs: Don't create an infinite loop when setting focus
22744         * MenuItem.cs: Don't dirty the parents if we don't have any
22745
22746 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
22747
22748         * LibSupport.cs: Rename
22749
22750 2005-06-29  Peter Bartok  <pbartok@novell.com>
22751
22752         * TextBoxBase.cs: Re-align caret after deleting a character
22753         * TextControl.cs:
22754           - DeleteChars(): Ensure that tag covers the provided position
22755           - StreamLine(): Drop reference for dropped tag
22756
22757 2005-06-29  Peter Bartok  <pbartok@novell.com> 
22758
22759         * TextControl.cs: 
22760           - Selections now work properly, anchoring at the initial location
22761             and properly extending in either direction (SetSelectionToCaret(),
22762             SetSelectionStart() and SetSelectionEnd())
22763           - No longer redraws the whole control on selection change, now
22764             calculates delta between previous and new selection and only
22765             invalidates/redraws that area
22766           - Fixed FindPos() math off-by-one errors
22767           - Changed DeleteChars() to verify the provided tag covers the
22768             provided position, selections may have a tag that doesn't cover
22769             the position if the selection is at a tag border
22770           - Fixed off-by-one errors in DeleteChars()
22771           - Added missing streamlining check in DeleteChars() to remove
22772             zero-length tags
22773           - Implemented Invalidate() method, now properly calculates exposures
22774             between two given lines/positions
22775           - Implemented SetSelection()
22776           - Obsoleted and removed FixupSelection()
22777           - Improved RecalculateDocument() logic, removing code duplication
22778
22779 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22780
22781         * LibSupport.cs: changes to match different input/output arguments.
22782
22783 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22784
22785         * LibSupport.cs: added libsupport.so init routine.
22786
22787 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
22788         
22789         * ControlBindingsCollection.cs
22790                 - Throws an exception on null datasource when adding
22791                 - Checks for duplicated bindings when adding
22792
22793 2005-06-28  Jackson Harper  <jackson@ximian.com>
22794
22795         * TreeView.cs (OnKeyDown): Support left and right properly
22796         (navigates as well as expanding and collapsing.
22797         - Add support for Multiply, this expands all the selected nodes
22798         children.
22799         - Fix some tabbing.
22800
22801 2005-06-28  Jackson Harper  <jackson@ximian.com>
22802
22803         * TreeView.cs: Implement keyboard navigation, currently supports,
22804         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
22805         support for toggling checkboxes with the space bar.
22806
22807 2005-06-28  Jackson Harper  <jackson@ximian.com>
22808
22809         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
22810         tree.
22811
22812 2005-06-28  Jackson Harper  <jackson@ximian.com>
22813
22814         * TreeView.cs: Add missing event.
22815
22816 2005-06-27  Peter Bartok  <pbartok@novell.com> 
22817
22818         * TextControl.cs:
22819           - Made line ending size configurable (now allows for counting 
22820             lineendings as \n or \r\n)
22821           - Added margin to viewport to keep caret visible on right side
22822           - Fixed translation routines for line/pos to documentpos to consider
22823             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
22824           - Fixed some line-endings to be unix style
22825           - Fixed Document.FormatText to perform it's calculations 1-based
22826           - Added descriptions for a few methods that might otherwise get 
22827             used wrong
22828           - Added NOTE section with some basic conventions to remember at 
22829             the top of the file
22830           - Major fixup for RichTextBox selection drawing:
22831             * Fixed crashes when multiple tags on a single line were selected
22832             * fixed selection box drawing not overlaying text
22833             * fixed bogus offset calculation for tags not starting at index 1
22834             * Switched behaviour from using multiple Substrings of a 
22835               StringBuilder.ToString() to using multiple 
22836               StringBuilder.ToString(start, length) statements, hoping this is
22837               faster (kept original version commented out in the code, in case
22838               original version was faster)
22839         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
22840           alignment != Left
22841         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
22842           call it as well
22843
22844 2005-06-27  Jackson Harper  <jackson@ximian.com>
22845
22846         * TabControl.cs: Move to the left and right with the arrow
22847         keys. These keys don't cycle beyond first and last like
22848         tab. Refresh all the tabs when scrolling them to the left or
22849         right.
22850
22851 2005-06-27  Jackson Harper  <jackson@ximian.com>
22852
22853         * TabControl.cs:
22854           - ToString: Added method
22855           - CreateParams: Remove TODO and comment
22856           - OnKeyDown: Cycle through bounds properly.
22857           - SelectedIndex: Scroll to the right or left if we need to
22858           display the newly selected tab.
22859
22860 2005-06-23  Jackson Harper  <jackson@ximian.com>
22861
22862         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
22863         set.
22864
22865 2005-06-23  Jackson Harper  <jackson@ximian.com>
22866
22867         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
22868         CTRL-SHIFT-TAB, and HOME, END are there any others?
22869
22870 2005-06-23  Jackson Harper  <jackson@ximian.com>
22871
22872         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
22873
22874 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
22875         
22876         * DataGridTextBoxColumn.cs: fixes and enhancements
22877         * ThemeWin32Classic.cs: fixes and enhancements
22878         * DataGridBoolColumn.cs:  fixes and enhancements
22879         * DataGridDrawingLogic.cs:  fixes and enhancements
22880         * CurrencyManager.cs: fixes and enhancements
22881         * DataGrid.cs: fixes and enhancements
22882         * DataGridColumnStyle.cs:  fixes and enhancements
22883
22884 2005-06-22  Jackson Harper  <jackson@ximian.com>
22885
22886         * TabControl.cs: Add some missing methods that just call into the
22887         base. Make the TabPageCollection's IList interface behave in the
22888         same manner as the MS implementation.
22889
22890 2005-06-22  Peter Bartok  <pbartok@novell.com> 
22891
22892         * TextControl.cs: Added sanity check
22893         * TextBoxBase.cs: 
22894           - Fixed wrapping behaviour, don't set wrap on single line controls
22895             (this fixes the breakage of colordialog introduced in an earlier
22896              checkin)
22897           - Added rudimentary support for autoscrolling right-aligned controls
22898             (still needs fixing, also, center alignment scroll is missing)
22899
22900 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
22901         
22902         * ScrollBar.cs: Fixes thumbpos on Maximum values
22903
22904 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
22905         
22906         * PropertyGridView.cs: Pass context information to UITypeEditors 
22907
22908 2005-06-21  Peter Bartok  <pbartok@novell.com> 
22909
22910         * TextBoxBase.cs:
22911           - Now calling PositionCaret with absolute space coordinates
22912           - Enabled vertical scrolling
22913           - Better tracking of scrollbar changes, tied into WidthChange
22914             event
22915           - Improved cursor tracking
22916           - Removed debug output
22917         * TextControl.cs:
22918           - PositionCaret coordinates are now works in absolute space, not 
22919             the canvas
22920           - Improved tracking of document size
22921           - Added events for width and height changes
22922
22923 2005-06-21  Peter Bartok  <pbartok@novell.com>
22924
22925         * Form.cs: Set focus to active control when form is activated
22926         * TextControl.cs: 
22927           - Added word-wrap functionality to RecalculateLine() 
22928           - Added some short function descriptions for VS.Net to aid in
22929             writing dependent controls
22930           - Added Caret property, returning the current coords of the caret
22931           - Added ViewPortWidth and ViewPortHeight properties
22932           - Added Wrap property
22933           - Added CaretMoved event
22934           - Removed some old debug code
22935           - Split() can now create soft splits
22936           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
22937           - Added method to format existing text
22938           - Fixed size/alignment calculations to use viewport
22939           - RecalculateDocument now can handle changing line-numbers while
22940             calculating lines
22941
22942         * TextBox.cs:
22943           - Added some wrap logic, we don't wrap if alignment is not left
22944           - Added casts for scrollbar var, base class switched types to
22945             also support RichTextBoxA
22946           - Implemented handling of scrollbar visibility flags
22947
22948         * TextBoxBase.cs:
22949           - Switched scrollbars type to RichTextBoxScrollBars to support
22950             RichTextBox
22951           - Added tracking of canvas width/height
22952           - Switched scrollbars to be not selectable (to keep focus on text)
22953           - Added central CalculateDocument() method to handle all redraw
22954             requirements
22955           - Added ReadOnly support
22956           - Added WordWrap support
22957           - Fixed handling of Enter key (we now treat it as a DialogKey)
22958           - Fixed caret positioning when h or v scroll is not zero
22959           - Fixed placing/generation of vertical scrollbar
22960           - Added CalculateScrollBars() method to allow updating scrollbar
22961             limits and visibility
22962           - Fixed handling of horizontal scroll
22963           - Added handling of vertical scroll
22964           - Implemented auto-'jump' when caret moves to close to a left or
22965             right border and there is text to be scrolled into view (currently
22966             there's the potential for a stack overflow, until a bug in
22967             scrollbar is fixed)
22968
22969 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
22970         
22971         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
22972
22973 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
22974
22975         * Mime.cs:
22976         - added inodes.
22977         - return application/x-zerosize for files with size zero
22978           (if no extension pattern matches).
22979         - check matches collection for strings too.
22980         - return only the first mime type if the name value
22981           collection has more than one mime type.
22982
22983 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
22984         
22985         * PropertyGrid.cs: Cleaned up some TODOs
22986         * PropertyGridView.cs: Added support for UITypeEditors
22987
22988 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
22989         
22990         * DataGrid.cs: clears cached value
22991
22992 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
22993
22994         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
22995         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
22996         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
22997         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
22998         
22999 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
23000
23001         * ThemeWin32Classic.cs: fixes colour
23002
23003 2005-06-15  Peter Bartok  <pbartok@novell.com>
23004
23005         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
23006         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
23007         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
23008         * Control.cs: Added some MWFCategory and MWFDescription attributes
23009         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
23010
23011 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
23012
23013         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
23014         usage
23015
23016 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
23017
23018         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
23019         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
23020         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
23021         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
23022         * DataGrid.cs: default datagrid settings for Default Styles, fixes
23023         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
23024
23025 2005-06-13  Jackson Harper  <jackson@ximian.com>
23026
23027         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
23028         isn't printed when the user enables dropping. (X11 does accept
23029         drops).
23030         
23031 2005-06-13  Jackson Harper  <jackson@ximian.com>
23032
23033         * TreeView.cs: Remove some TODOS.
23034
23035 2005-06-13  Jackson Harper  <jackson@ximian.com>
23036
23037         * Form.cs: Hook into the mdi framework.
23038         * MdiClient.cs: Use the base control collections add method so
23039         parents get setup correctly. Set the default back colour and dock
23040         style.
23041         * MdiChildContext.cs: New class, this bad actor handles an
23042         instance of an MDI window. Right now there is only basic
23043         support. You can drag, close, and resize windows. Minimize and
23044         Maximize are partially implemented.
23045
23046 2005-06-13  Jackson Harper  <jackson@ximian.com>
23047
23048         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
23049         freaky when both vals are negative. NOTE: There are probably other
23050         places in XplatUIX11 that this needs to be done.
23051
23052 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
23053
23054         * DataGrid.cs: implement missing methods, move KeyboardNavigation
23055         * DataGridColumnStyle.cs: fixes signature
23056
23057 2005-06-12  Jackson Harper  <jackson@ximian.com>
23058
23059         * XplatUIX11.cs: Use sizing cursors similar to the ones on
23060         windows.
23061
23062 2005-06-11  Jackson Harper  <jackson@ximian.com>
23063
23064         * StatusBarPanel.cs: Signature cleanups. Implement
23065         BeginInit/EndInit.
23066
23067 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
23068
23069         * DataGridTextBoxColumn.cs: Honors aligment
23070         * GridColumnStylesCollection.cs: Contains is case unsensitive
23071         * GridTableStylesCollection.cs: several fixes
23072         * DataGridTableStyle.cs: default column creation
23073         * DataGridDrawingLogic.cs: fixes
23074         * CurrencyManager.cs: ListName property
23075         * DataGrid.cs: multiple styles support
23076         * DataGridColumnStyle.cs: fixes
23077         
23078
23079 2005-06-10  Peter Bartok  <pbartok@novell.com>
23080
23081         * Control.cs(Select): Moved SetFocus call to avoid potential
23082           loops if controls change the active control when getting focus
23083         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
23084           the up/down buttons
23085
23086 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
23087
23088         * ImageListConverter.cs: Implemented
23089
23090 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
23091
23092         * MonthCalendar.cs: Wired in NumericUpDown control for year
23093
23094 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
23095
23096         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
23097           DoubleClick events, since they are not meant to be fired.
23098
23099 2005-06-09  Peter Bartok  <pbartok@novell.com>
23100
23101         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
23102           Jonathan's standalone controls into MWF, implemented missing
23103           events, attributes and methods; added xxxAccessible classes
23104         * AccessibleObject.cs: Made fields internal so other classes
23105           can change them if needed
23106
23107 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
23108
23109         * UpDownBase.cs: Complete implementation
23110         * NumericUpDown.cs: Complete implementation
23111         * DomainUpDown.cs: Complete implementation
23112
23113 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
23114
23115         * DataGridTextBoxColumn.cs: drawing fixes
23116         * DataGridCell.cs: fixes ToString method to match MSNet
23117         * DataGridTableStyle.cs: fixes
23118         * DataGridBoolColumn.cs: fixes, drawing
23119         * DataGridDrawingLogic.cs: fixes, new methods
23120         * DataGridTextBox.cs: Keyboard and fixes
23121         * DataGrid.cs:
23122                 - Keyboard navigation
23123                 - Scrolling fixes
23124                 - Row selection (single, multiple, deletion, etc)
23125                 - Lots of fixes
23126         
23127 2005-06-07  Jackson Harper  <jackson@ximian.com>
23128
23129         * ThemeWin32Classic.cs: Clear the background area when drawing
23130         buttons.
23131
23132 2005-06-06  Peter Bartok  <pbartok@novell.com>
23133
23134         * ImageListStreamer.cs: Fixed signature for GetData
23135         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
23136         * ComboBox.cs:
23137           - Added missing ChildAccessibleObject class
23138           - Added missing OnXXXFocus overrides, switched to using those
23139             instead of the event handler
23140         * Control.cs:
23141           - Added Parent property for ControlAccessibleObject
23142           - Fixed signatures
23143           - Fixed attributes
23144           - Added ResetBindings()
23145         * ListBindingConverter.cs: Implemented some methods
23146         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
23147         * ImageList.cs: Implemented basic handle scheme, removed TODOs
23148         * ContainerControl.cs: Fixed signature, now subscribing to the
23149           ControlRemoved event instead of overriding the handler, LAMESPEC
23150         * CurrencyManager.cs: Added missing attribute
23151         * MonthCalendar.cs: Added missing properties
23152
23153 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
23154
23155         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
23156         
23157 2005-06-06  Gaurav Vaish and Ankit Jain
23158
23159         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
23160         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
23161         
23162 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
23163
23164         * Control.cs: fixes CreateParams Width / Height.
23165
23166 2005-06-05  Peter Bartok  <pbartok@novell.com>
23167
23168         * Win32DnD.cs: Removed compilation warnings
23169
23170 2005-06-05  Peter Bartok  <pbartok@novell.com>
23171
23172         * Control.cs (CreateParams): Since we don't know if one of the
23173           properties we use is overridden, lets make sure if we fail accessing
23174           we continue with a backup plan
23175
23176 2005-06-05  Peter Bartok  <pbartok@novell.com>
23177
23178         * Win32DnD.cs:
23179           - Removed debug output
23180           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
23181             struct
23182           - Plugged resource leak
23183         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
23184           MS size
23185
23186 2005-06-05  Peter Bartok  <pbartok@novell.com>
23187
23188         * XplatUIWin32.cs: Removed DnD code
23189         * Win32DnD.cs: Implemented drop source and drop target functionality
23190
23191 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23192
23193         * UpDownBase.cs: remove duplicate addition of event, enable some code
23194         that was commented out.
23195         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
23196         Validate input when a key is pressed. It works fine now for every
23197         combination of Hexadecimal. Only missing some drawing love when sharing
23198         space with other controls.
23199
23200 2005-06-04  Peter Bartok  <pbartok@novell.com>
23201
23202         * Control.cs:
23203           - We need to pass a window for DragDrop, so enable callback events
23204           - Added DnD callback events when being a DragSource
23205         * XplatUI.cs (StartDrag): Added window handle argument
23206         * XplatUIDriver.cs (StartDrag): Added window handle argument
23207         * QueryContinueDragEventArgs: Made fields internally accessible so
23208           drivers can set them
23209         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
23210           can set them
23211
23212 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
23213
23214         * DataGridTextBoxColumn.cs: column text editing
23215         * DataGridTableStyle.cs: Respect columns styles created by the user
23216         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
23217         * DataGridBoolColumn.cs: bool column editing
23218         * DataGrid.cs: fixes to scrolling, properties, etc
23219         * DataGridTextBox.cs: handle keyboard
23220         * DataGridColumnStyle.cs: fixes
23221
23222 2005-06-02  Jackson Harper  <jackson@ximian.com>
23223
23224         * ImageListStreamer.cs: Somewhat broken implementation of
23225         GetObjectData. The RLE needs some work to match MS properly.
23226
23227 2005-06-02  Jackson Harper  <jackson@ximian.com>
23228
23229         * X11Dnd.cs: Attempting to keep at least one file in MWF
23230         monostyled.
23231
23232 2005-06-02  Peter Bartok  <pbartok@novell.com>
23233
23234         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
23235           that way
23236
23237 2005-06-02  Peter Bartok  <pbartok@novell.com>
23238
23239         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
23240         * XplatUI.cs: Added DoDragDrop() method
23241         * XplatUIDriver.cs: Added DoDragDrop() method
23242
23243 2005-06-02  Jackson Harper  <jackson@ximian.com>
23244
23245         * Splitter.cs: Implement BorderStyle.
23246
23247 2005-06-02  Jackson Harper  <jackson@ximian.com>
23248
23249         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
23250         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
23251         X11 using XDND.
23252
23253 2005-06-02  Peter Bartok  <pbartok@novell.com>
23254
23255         * DataObject.cs:
23256           - Added Data setter
23257           - Fixed broken insertion code for SetData, now also
23258             overwrites any existing entry of the same format name
23259         * Hwnd.cs: Added list of pointers that automatically gets
23260           freed when the window is disposed
23261         * XplatUI.cs: Call driver initialization method when loading
23262           a driver
23263         * Control.cs:
23264           - OnDragLeave takes EventArgs, not DragEventArgs
23265           - Added setting of WS_EX_ACCEPTFILES style when dropping is
23266             supported
23267           - Forces style update when drop state changes
23268         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
23269           not perfect since we cannot (yet) call the IDataObject.GetData()
23270           method, we keep getting 0x80004005 error, dunno why)
23271
23272 2005-06-02  Peter Bartok  <pbartok@novell.com>
23273
23274         * DragEventArgs.cs: Make fields internal so we can cache the
23275           object and re-set the fields from XplatUI
23276
23277 2005-06-02  Jackson Harper  <jackson@ximian.com>
23278
23279         * Control.cs: Add some internal methods so the DnD subsystem can
23280         raise DnD events. Also call into the driver when AllowDrop is set.
23281         * XplatUI.cs:
23282         * XplatUIDriver.cs: New method for setting whether or not a window
23283         is allowed to accept drag and drop messages.
23284                 
23285 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
23286         
23287         * ScrollBar.cs: Make sure that values sent in Scroll events
23288         are always between Maximum and Minimum.
23289
23290 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
23291
23292         * Menu.cs: Call MenuChanged when menuitem visibility has been
23293         changed.
23294         * MenuItem.cs: Rebuild menu when item is (not) visible.
23295         * MainMenu.cs: MainMenu has special MenuChanged.
23296         * Theme.cs: Caption and FrameBorderSize are not fixed.
23297         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
23298         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
23299         * XplatUIX11.cs,
23300         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
23301         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
23302
23303 2005-05-30  Jackson Harper  <jackson@ximian.com>
23304
23305         * DataFormat.cs: We can't statically initialize this stuff because
23306         it calls into the xplatui and could create a loop. So we lazy init
23307         it.
23308
23309 2005-05-28  Jackson Harper  <jackson@ximian.com>
23310
23311         * Control.cs: Proper implementation of Product(Name/Version).
23312
23313 2005-05-27  Jackson Harper  <jackson@ximian.com>
23314
23315         * DataObject.cs: Dont crash if no data is found.
23316
23317 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
23318         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
23319                 as per status page, guessing it should be set to true
23320
23321 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
23322
23323         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
23324         * DataGridTableStyle.cs: set proper formatting text, def header text
23325         * ThemeWin32Classic.cs: new themable paramaters
23326         * DataGridBoolColumn.cs: paint check box, get data, fixes
23327         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
23328         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
23329         * DataGridColumnStyle.cs: fixes
23330         * Theme.cs: new themable paramaters
23331                 
23332 2005-05-26  Peter Bartok  <pbartok@novell.com>
23333
23334         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
23335
23336 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
23337         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
23338
23339 2005-05-24  Peter Bartok  <pbartok@novell.com>
23340
23341         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
23342           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
23343           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
23344           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
23345           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
23346           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
23347           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
23348           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
23349           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
23350           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
23351           missing attributes, etc
23352         * DataGridPreferredColumnWidthTypeConverter.cs: Added
23353
23354 2005-05-24  Peter Bartok  <pbartok@novell.com>
23355
23356         * Help.cs: Added, implemented trivial functions, throws up MessageBox
23357           when user tries to get help
23358         * DataObject.cs, DataFormats.cs, LinkArea.cs,
23359           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
23360           to suppress warnings
23361         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
23362           avoid unreachable code warning
23363
23364 2005-05-20  Peter Bartok  <pbartok@novell.com>
23365
23366         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
23367
23368 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
23369
23370         * DataGridTextBoxColumn.cs: Basic painting methods
23371         * DataGridTableStyle.cs: Set table style in the column
23372         * ThemeWin32Classic.cs: Use Theme for colors
23373         * DataGridDrawingLogic.cs: Implement more drawing
23374         * DataGrid.cs: drawing, theming, enhacements, fixes
23375         * DataGridColumnStyle.cs: fixes, drawing
23376         * Theme.cs: theming for Datagrid
23377
23378 2005-05-20  Peter Bartok  <pbartok@novell.com>
23379
23380         * Cursor.cs: Implemented GetObjectData() method
23381
23382 2005-05-20  Peter Bartok  <pbartok@novell.com>
23383
23384         * Cursors.cs: Added setting of cursor name
23385         * Cursor.cs:
23386           - Implemented constructors
23387           - Implemented Draw and DrawStretched
23388           - Implemented Current property
23389           - Implemented == and != operators
23390           - Implemented Dispose()
23391           - Implemented ToString
23392           - Added missing attributes
23393         * XplatUIX11.cs:
23394           - Added missing reset for OverrideCursor when DoEvents is called
23395           - Fixed creation of cursor, logic was wrong
23396         * XplatUIWin32.cs:
23397           - Added missing reset for OverrideCursor when DoEvents is called
23398           - Fixed creation of cursor, bit arrays were swapped
23399         * Clipboard.cs: Removed obsolete MonoTODO attribute
23400
23401 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
23402
23403         * ComboBox.cs: fixes OnSelectedItemChanged
23404         * ControlBindingsCollection.cs: fixes item range check
23405
23406 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
23407
23408         * UpDownBase.cs:
23409                 - Calc preferred height properly
23410                 - Implement missing properties
23411                 
23412         * NumericUpDown.cs: Implement missing events
23413
23414 2005-05-19  Jackson Harper  <jackson@ximian.com>
23415
23416         * TabControl.cs: New method that resizes the tab pages before
23417         redrawing them. This as needed as the control is double buffered
23418         and sizing will not be recalculated unless ResizeTabPages is
23419         called.
23420         * TabPage.cs: Set base.Text instead of Text in the constructor so
23421         that UpdateOwner does not get called. Use the new Redraw method of
23422         TabControl instead of Refresh so the sizing is recalculated.
23423         * ThemeWin32Classic.cs: Draw the text for button tabs.
23424
23425 2005-05-19  Jackson Harper  <jackson@ximian.com>
23426
23427         * Control.cs: Paint control background images. Fix typo where
23428         PaintControlBackground was not getting called correctly.
23429
23430 2005-05-19  Peter Bartok  <pbartok@novell.com>
23431
23432         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
23433           I can investigate, apparently I broke FileDialog
23434
23435 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
23436
23437         * AxHost.cs: Some simple properties.
23438         * Control.cs: window must be accessible after ctor.
23439         * Form.cs: Added TransparencyKey property.
23440         * TextBoxBase.cs: Implemented Clear. Text property can be null.
23441         * XplatUIWin32.cs: SetBorderStyle implemented.
23442
23443 2005-05-18  Peter Bartok  <pbartok@novell.com>
23444
23445         * DataObject.cs: Entries are not global but particular to the
23446           DataObject, now it behaves that way
23447         * XplatUIWin32.cs: Implemented Clipboard methods
23448         * Clipboard.cs: Implemented
23449         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
23450         * XplatUIOSX.cs: Updated to final clipboard prototypes
23451         * XplatUIX11.cs: Implemented Clipboard methods
23452         * XplatUIDriver.cs: Updated to final clipboard prototypes
23453         * XplatUIStructs.cs:
23454           - Added BITMAPINFOHEADER struct
23455           - Added ClipboardFormats enum
23456         * X11Structs.cs:
23457           - Added ClipboardStruct
23458           - Added Atom enum items for clipboard types
23459           - Fixed atom types for Selection event structures
23460         * DataFormats.cs:
23461           - Added internal properties and methods for drivers to enumerate
23462             all known formats
23463           - Switched initialization method to allow drivers to assign their
23464             own IDs even for the MS predefined clipboard IDs
23465         * XplatUI.cs: Updated to final clipboard interface
23466
23467 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
23468         * PropertyGridView.cs: Fixed compiler warnings.
23469
23470 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
23471         * PropertyGrid.cs: Added some event calls
23472         * PropertyGridView.cs: Change drawing code to use double buffering
23473         * PropertyGridTextBox.cs: Changed Text property name
23474         * GridItem.cs: Added Bounds property.
23475         * GridEntry.cs: Added Bounds property.
23476
23477 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
23478
23479         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
23480         since GetType() may not return the correct type if the object is
23481         a remoting proxy.
23482
23483 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
23484
23485         * TreeNodeCollection.cs: fixes get/set item ranges
23486         
23487 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
23488
23489         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
23490                 
23491 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
23492
23493         * ComboBox.cs: Fix item range comparation
23494         * ListView.cs: Fix item range comparation
23495
23496 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
23497
23498         * FontDialog.cs:
23499           - Clear example panel when OnPaint is called
23500           - Better solution for displaying the example panel text
23501           - Select default indexes in the ListBoxes
23502
23503 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
23504
23505         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
23506
23507 2005-05-11  Peter Bartok  <pbartok@novell.com>
23508
23509         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
23510         * SelectionRangeConverter.cs: Implemented
23511         * PropertyGrid.cs: Fixed attribute value
23512         * Control.cs:
23513           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
23514           - Added Sebastien Pouliot's CAS Stack Propagation fixes
23515         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
23516           that's common to all drivers. First methods to go there are
23517           Sebastien Pouliot's CAS Stack Propagation helper methods
23518         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
23519           Sebastien Pouliot for CAS Stack Propagation
23520
23521 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
23522
23523         * OSXStructs.cs:
23524           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
23525
23526 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
23527
23528         * DataGridTextBoxColumn.cs: fixed some members
23529         * GridColumnStylesCollection.cs: indexed column is case insensitive
23530         * DataGridTableStyle.cs: fixes
23531         * ThemeWin32Classic.cs: add new theme parameter
23532         * Theme.cs: add new theme parameter
23533         * DataGridDrawingLogic.cs: Datagrid's drawing logic
23534         * DataGrid.cs: fixes, new internal properties, etc.
23535         * DataGridColumnStyle.cs: allows to set grid value
23536         *
23537
23538 2005-05-10  Peter Bartok  <pbartok@novell.com>
23539
23540         * AccessibleObject.cs:
23541           - Removed MonoTODO attribute on help, method is correct
23542           - Fixed Bounds property
23543         * AxHost.cs: Moved MonoTODO
23544         * ButtonBase.cs: Now setting AccessibleObject properties
23545         * RadioButton.cs: Setting proper AccessibleObject role
23546         * CheckBox.cs: Setting proper AccessibleObject role
23547         * ControlBindingsCollection.cs: Added properties, methods and attributes
23548         * DataFormats.cs: Fixed awkward internal API, and changed to enable
23549           userdefined DataFormats.Format items as well
23550         * ListControl.cs: Removed data_member from the public eye
23551         * OpenFileDialog.cs:
23552           - Made class sealed
23553           - Added missing attributes
23554         * SaveFileDialog.cs: Added missing attributes
23555         * ImageListStreamer.cs: Fixed code that caused warnings
23556         * LinkLabel.cs: Removed unreachable code
23557         * TreeView.cs: Fixed code that caused warnings
23558         * PropertyGridView.cs: Fixed code that caused warnings
23559         * GridColumnStylesCollection.cs: Added missing attributes
23560         * GridTableStylesCollection: Added missing attribute
23561         * PropertyManager: Added .ctor
23562         * SecurityIDType: Added
23563         * DataObject.cs: Implemented class
23564         * LinkArea.cs: Added missing attribute
23565
23566 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
23567
23568         * RadioButton.cs: call base method to allow to fire OnClick event
23569         * UpDownBase.cs: OnMouseUp call base method
23570         * CheckedListBox.cs: call base method before returning
23571         * TrackBar.cs: call base method before returning
23572         
23573
23574 2005-05-10  Peter Bartok  <pbartok@novell.com>
23575
23576         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
23577           for messages
23578
23579 2005-05-10  Peter Bartok  <pbartok@novell.com>
23580
23581         * DataFormats.cs: Implemented
23582         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
23583           XplatUIX11.cs: Added Clipboard APIs
23584         * XplatUIWin32.cs: Implemented Clipboard APIs
23585         * FolderBrowserDialog.cs: Added missing event, attributes
23586
23587 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
23588
23589         * CheckBox.cs: call base method to allow to fire OnClick event
23590
23591 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
23592
23593         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
23594
23595 2005-05-06  Peter Bartok  <pbartok@novell.com>
23596
23597         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
23598         * Screen.cs: Implemented
23599         * HelpNavigator.cs: Added
23600         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
23601           property
23602         * HelpProvider.cs: Implemented all we can do until we have a CHM
23603           help library (which means that "What's This" does work now)
23604
23605 2005-05-06  Jackson Harper  <jackson@ximian.com>
23606
23607         * XplatUIX11.cs: Fix waking up the main loop.
23608                 
23609 2005-05-05  Peter Bartok  <pbartok@novell.com>
23610
23611         * XplatUI.cs: Updated revision
23612         * Form.cs: Removed enless loop
23613         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
23614         * Label.cs (OnPaint): Added call to base.OnPaint()
23615         * ToolTip.cs: Made ToolTipWindow reusable for other controls
23616         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
23617         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
23618         * AxHost.cs: Added
23619         * ButtonBase.cs: Moved base.OnPaint() call to end of method
23620         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
23621           to ToolTip.ToolTipWindow for drawing and size methods; this allows
23622           reuse of ToolTipWindow by other controls
23623         * SizeGrip.cs: Moved base.OnPaint() call to end of method
23624         * XplatUIX11.cs: Now clipping drawing area (experimental)
23625         * PictureBox.cs: Moved base.OnPaint() call to end of method
23626         * Theme.cs: Fixed ToolTip abstracts to match new format
23627         * ErrorProvider.cs: Implemented
23628
23629 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
23630
23631         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
23632         * LinkLabel.cs:
23633                 - Adds cursors
23634                 - Handles focus
23635                 - Implements LinkBehavior
23636                 - Fixes many issues
23637
23638 2005-05-03  Jackson Harper  <jackson@ximian.com>
23639
23640         * ListView.cs: Calculate the scrollbar positioning on resize and
23641         paint, so they get put in the correct place.
23642
23643 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
23644
23645         * ColorDialogs.cs: The small color panels are now handled by
23646           SmallColorControl. This fixes drawing of the focus rectangle
23647           and adds a 3D border.
23648
23649 2005-05-03  Peter Bartok  <pbartok@novell.com>
23650
23651         * Control.cs: Modified version of Jonathan Chamber's fix for
23652           double-buffering
23653
23654 2005-05-03  Jackson Harper  <jackson@ximian.com>
23655
23656         * ListView.cs: Remove redraw variable. Control now handles whether
23657         or not a redraw needs to be done, and will only raise the paint
23658         event if redrawing is needed.
23659
23660 2005-05-03  Jackson Harper  <jackson@ximian.com>
23661
23662         * Splitter.cs: No decorations for the splitter form. Cache the
23663         hatch brush.
23664
23665 2005-05-03  Jackson Harper  <jackson@ximian.com>
23666
23667         * TreeView.cs: Use dashed lines to connect nodes. Use the
23668         ControlPaint method for drawing the focus rect instead of doing
23669         that in treeview.
23670
23671 2005-05-02  Peter Bartok  <pbartok@novell.com>
23672
23673         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
23674
23675 2005-04-29  Jackson Harper  <jackson@ximian.com>
23676
23677         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
23678         entire image buffer. Just clear the clipping rectangle.
23679
23680 2005-04-29  Jackson Harper  <jackson@ximian.com>
23681
23682         * ThemeWin32Classic.cs: Don't draw list view items that are
23683         outside the clipping rectangle.
23684
23685 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
23686
23687         * ListBox.cs: added horizontal item scroll
23688
23689 2005-04-29  Jackson Harper  <jackson@ximian.com>
23690
23691         * ThemeWin32Classic.cs: Remove some old debug code that was
23692         causing flicker with the new double buffering code.
23693
23694 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
23695
23696         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
23697         behave like combobox and comboboxlist (still not sure if this is
23698         correct though).
23699
23700 2005-04-28  Jackson Harper  <jackson@ximian.com>
23701
23702         * ThemeWin32Classic.cs: Don't fill the middle of progress
23703         bars. This fills areas outside of the clip bounds that don't need
23704         to be filled.
23705
23706 2005-04-28  Jackson Harper  <jackson@ximian.com>
23707
23708         * Control.cs: Don't expose functionality to touch the image buffers.
23709         * ProgressBar.cs:
23710         * ListView.cs: We do not need to (and no longer can) manipulate
23711         the image buffers directly. All of this is handled by Control.
23712
23713 2005-04-28  Peter Bartok  <pbartok@novell.com>
23714
23715         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
23716           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
23717           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
23718
23719 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
23720
23721         * Combobox:
23722                 - Adjust control's height for non-simple comboboxes (bug fix)
23723                 - Remove dead code
23724         * MenuAPI.cs: remove unused var
23725         * ScrollBar.cs: remove unsed var
23726                  
23727         * ListBox.cs: unselect items when clearing
23728
23729 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
23730
23731         * ListControl.cs: honors OnPositionChanged and default Selected Item
23732         * ListBox.cs: unselect items when clearing
23733
23734 2005-04-27  Jackson Harper  <jackson@ximian.com>
23735
23736         * X11Keyboard.cs: Initialize a default keyboard and give a warning
23737         if a "correct" keyboard is not found. This will make us not crash,
23738         but might give some users bad keyboard layouts...seems to be the
23739         same thing rewind does.
23740
23741 2005-04-27  Jackson Harper  <jackson@ximian.com>
23742
23743         * BindingManagerBase.cs: Attach the current/position changed
23744         handlers to their respective events.
23745
23746 2005-04-27  Jackson Harper  <jackson@ximian.com>
23747
23748         * Control.cs: Make sure that the first WM_PAINT does a full draw,
23749         not just a blit.
23750         * ThemeWin32Classic.cs: Don't fill the background for picture
23751         boxes. This could overright user drawing.
23752         * ComboBox.cs: Just fill the clipping rect not the entire client
23753         rect when drawing the background. This prevents pieces of the
23754         image buffer from getting overwritten and is theoretically faster.
23755
23756 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
23757
23758         * ComboBox.cs: Databinding support fixes, fire missing events
23759         * ListControl.cs: implement missing methods and properties, fixes
23760         * ThemeWin32Classic.cs: Databiding support on Drawing
23761         * CheckedListBox.cs: Databinding support fixes, fire missing events
23762         * ListBox.cs: Databinding support fixes, fire missing events
23763         
23764 2005-04-25  Peter Bartok  <pbartok@novell.com>
23765
23766         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
23767
23768 2005-04-25  Jackson Harper  <jackson@ximian.com>
23769
23770         * TreeView.cs: Use the horizontal scrollbars height not width when
23771         determining how much of the client area is available.
23772
23773 2005-04-25  Jackson Harper  <jackson@ximian.com>
23774
23775         * Control.cs: Double buffering is handled differently now. As per
23776         the spec, the extra buffer is created in the WM_PAINT message and
23777         passed down to the control's drawing code.
23778         * GroupBox.cs:
23779         * Label.cs:
23780         * CheckBox.cs:
23781         * ProgressBar.cs:
23782         * RadioButton.cs:
23783         * ColorDialog.cs:
23784         * ComboBox.cs:
23785         * PropertyGridView.cs:
23786         * UpDownBase.cs:
23787         * MessageBox.cs:
23788         * MenuAPI.cs:
23789         * ListView.cs:
23790         * ButtonBase.cs:
23791         * SizeGrip.cs:
23792         * ScrollBar.cs:
23793         * ListBox.cs:
23794         * TrackBar.cs:
23795         * ToolBar.cs:
23796         * PictureBox.cs:
23797         * DateTimePicker.cs:
23798         * StatusBar.cs:
23799         * TreeView.cs: Update to new double buffering system.
23800         * MonthCalendar.cs: Uncomment block, as Capture is now
23801         working. Update to new double buffering
23802         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
23803         * PaintEventArgs.cs: New internal method allows us to set the
23804         graphics object. This is used for double buffering.
23805         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
23806         rectangle. The internal paint_area var has been removed from
23807         StatusBar. The clipping rect should be used instead.
23808         * Theme.cs: Give the PictureBox drawing method a clipping rect.
23809         * TabPage.cs: The RefreshTabs method was removed, so just call the
23810         tab controls Refresh method now.
23811         * TabControl.cs: Update to new double buffering. Make sure the
23812         handle is created before sizing the tab pages, otherwise we will
23813         get stuck in a loop.
23814
23815 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
23816
23817         * LinkLabel.cs: Fix typo, bug #74719; patch
23818           from Borja Sanchez Zamorano
23819
23820 2005-04-22  Jackson Harper  <jackson@ximian.com>
23821
23822         * TreeNode.cs: Implement Handle stuff.
23823         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
23824
23825 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
23826
23827         * DataGridTextBoxColumn.cs: call base constructors, fixes
23828         * GridColumnStylesCollection.cs: missing events, methods, and functionality
23829         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
23830         * DataGridTableStyle.cs: implements create default column styles
23831         * DataGridBoolColumn.cs: which types can handle
23832         * DataGrid.cs: missing methods, fixes, new functionality
23833         * DataGridColumnStyle.cs: fixes
23834
23835 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
23836         * FolderBrowserDialog.cs:
23837         - Use a thread to fill the TreeView
23838         - Adjusted some sizes
23839
23840 2005-04-19  Peter Bartok  <pbartok@novell.com>
23841
23842         * LinkLabel.cs: (Re-)create the pieces when setting the Text
23843           property. Fixes #74360.
23844
23845 2005-04-19  Jackson Harper  <jackson@ximian.com>
23846
23847         * XEventQueue.cs: Lock when getting the lockqueue size.
23848         * PictureBox.cs: Call base OnPaint
23849         
23850 2005-04-19  Peter Bartok  <pbartok@novell.com>
23851
23852         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
23853           messages were no longer being processed (this broke BeginInvoke)
23854
23855           
23856 2005-04-18  Jackson Harper  <jackson@ximian.com>
23857
23858         * TreeView.cs: buglet that caused node images to get drawn
23859         regardless of whether or not they were in the clipping rectangle.
23860
23861 2005-04-18  Jackson Harper  <jackson@ximian.com>
23862
23863         * CurrencyManager.cs: There are four rules for GetItemProperties:
23864         - If the type is an array use the element type of the array
23865         - If the type is a typed list, use the type
23866         - If the list contains an Item property that is not an object, use
23867         that property
23868         - use the first element of the list if there are any elements in
23869         the list.
23870         
23871 2005-04-17  Jackson Harper  <jackson@ximian.oom>
23872
23873         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
23874         click. This handles offsets for scrolling properly and reduces
23875         memory. Also fixed GetNode to not offset now that TopNode works
23876         properly.
23877         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
23878         
23879 2005-04-17  Jackson Harper  <jackson@ximian.com>
23880
23881         * CursorConverter.cs: Initial implementation.
23882
23883 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
23884
23885         * ListControl.cs: work towards complex data binding support on ListControl
23886         * CurrencyManager.cs: work towards complex data binding support on ListControl
23887         * ListBox.cs: work towards complex data binding support on ListControl
23888
23889
23890 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
23891
23892         * GridTableStylesCollection.cs: fixes name and constructor
23893         * DataGridTableStyle.cs: fixes
23894         * DataGridBoolColumn.cs: fixes names and constructors
23895         * DataGrid.cs: define methods and properties. Some init implementations
23896         * DataGridCell.cs: define methods and properties. Some init implementations
23897         * GridTablesFactory.cs: Define methods and properties
23898
23899 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
23900
23901         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
23902         graphics port changes.  We still want the coordinates in global screen
23903         coordinates.
23904
23905 2005-04-14  Jackson Harper  <jackson@ximian.com>
23906
23907         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
23908         check plus minus or checkbox clicks unless those features are enabled.
23909
23910 2005-04-14  Jackson Harper  <jackson@ximian.com>
23911
23912         * TreeView.cs: Add methods for setting the top and bottom visible
23913         nodes. TreeNode::EnsureVisible uses these methods.
23914         * TreeNode.cs: Implement EnsureVisible
23915
23916 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
23917
23918         * Form.cs: Pospone menu assignation if the window has not been created yet
23919         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
23920         size and position
23921
23922 2005-04-12  Jackson Harper  <jackson@ximian.com>
23923
23924         * TreeView.cs: Set the TopNode properly when scrolling
23925         occurs. This has the added benifit of reducing the amount of
23926         walking that needs to be done when drawing. Also removed an old
23927         misleading TODO.
23928         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
23929         
23930 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
23931
23932         * Timer.cs: fixes interval setting when the timer is already enabled
23933         
23934 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
23935
23936         * FolderBrowserDialog.cs: First approach
23937
23938 2005-04-09  Peter Bartok  <pbartok@novell.com>
23939
23940         * FolderBrowserDialog: Added
23941
23942 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
23943
23944         * LinkLabel.cs: move drawing code into the theme
23945         * ThemeWin32Classic.cs: drawing code and painting background bugfix
23946         * Theme.cs: define DrawLinkLabel method
23947
23948 2005-04-05  Jackson Harper  <jackson@ximian.com>
23949
23950         * BindingContext.cs: Use weak references so these bad actors don't
23951         stay alive longer then they need to.
23952
23953 2005-04-05  Jackson Harper  <jackson@ximian.com>
23954
23955         * ListControl.cs: Basic implementation of complex databinding.
23956         * ComboBox.cs:
23957         * ListBox.cs: Add calls to ListControl databinding methods.
23958
23959 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
23960
23961         * FileDialog.cs:
23962           - Don't change PopupButtonState to Normal when the
23963             PopupButton gets pressed several times.
23964           - Renamed ButtonPanel to PopupButtonPanel
23965
23966 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
23967
23968         * ColorDialog.cs: Use cached objects instead of creating them
23969         * LinkLabel.cs: Use cached objects instead of creating them
23970         * Splitter.cs: Use cached objects instead of creating them
23971         * FontDialog.cs: Use cached objects instead of creating them
23972         * PropertyGridView.cs: Use cached objects instead of creating them
23973         * MessageBox.cs: Use cached objects instead of creating them
23974         * FileDialog.cs: Use cached objects instead of creating them
23975         * ThemeWin32Classic.cs: Use cached objects instead of creating them
23976         * TreeView.cs: Use cached objects instead of creating them
23977         
23978 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
23979
23980         * Control.cs: use Equals to compare the font since no == op
23981         * ScrollBar.cs: use Equals to compare the font since no == op
23982
23983 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
23984
23985         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
23986
23987 2005-04-01  Jackson Harper  <jackson@ximian.com>
23988
23989         * Binding.cs: Implement IsBinding.
23990         * BindingManagerBase.cs:
23991         * PropertyManager.cs:
23992         * CurrencyManager.cs: Add IsSuspended property.
23993
23994 2005-04-01  Jackson Harper  <jackson@ximian.com>
23995
23996         * Binding.cs: Had some IsAssignableFrom calls backwards.
23997
23998 2005-04-01  Jackson Harper  <jackson@ximian.com>
23999
24000         * Binding.cs: Handle null data members when pulling data.
24001         * PropertyManager.cs: Handle the data member being a property that
24002         does not exist.
24003
24004 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
24005
24006         * DataGridTextBoxColumn.cs: fixes signature
24007         * DataGrid.cs: calls right constructor
24008
24009 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
24010
24011         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
24012         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
24013         * GridTableStylesCollection.cs: implements GridTableStylesCollection
24014         * DataGridTableStyle.cs: implements DataGridTableStyle
24015         * DataGridBoolColumn.cs: implements DataGridBoolColumn
24016         * DataGridTextBox.cs: implements DataGridTextBox
24017         * DataGridColumnStyle.cs: implements DataGridColumnStyle
24018
24019 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
24020
24021         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
24022
24023 2005-03-29  Peter Bartok  <pbartok@novell.com>
24024
24025         * Application.cs:
24026           - Properly implemented CompanyName property
24027           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
24028             returns a path that includes CompanyName, ProductName and
24029             Version (fixes bug #70330)
24030
24031 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
24032
24033         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
24034           fixes bug #72588.
24035
24036 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
24037
24038         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
24039         
24040           - Added ReadOnly CheckBox
24041           - Further refactoring: moved some code from Open-/SaveFileDialog
24042             to FileDialog
24043
24044 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
24045
24046         * OpenFileDialog.cs: Fixed CheckFileExists
24047         * FileDialog.cs:
24048           Moved FileView and DirComboBox outside FileDialog class.
24049           They can now be used outside FileDialog
24050
24051 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
24052
24053         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
24054         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
24055
24056 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
24057
24058         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
24059           - Added missing CreatePrompt property in SaveDialog
24060           - Overall SaveDialog handling should be better now
24061           - Added non standard ShowHiddenFiles property
24062           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
24063           - Added InitialDirectory and RestoreDirectory support
24064
24065 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
24066
24067         * FileDialog.cs: Made dirComboBox usable
24068
24069 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
24070
24071         * FileDialog.cs: Added Filter support (case sensitiv)
24072
24073 2005-03-24  Jackson Harper  <jackson@ximian.com>
24074
24075         * TabControl.cs: Need a couple more pixels for the lines.
24076
24077 2005-03-23  Jackson Harper  <jackson@ximian.com>
24078
24079         * TabControl.cs: Give the tab page focus when it is selected.
24080
24081 2005-03-23  Jackson Harper  <jackson@ximian.com>
24082
24083         * TabControl.cs: Account for the drawing of tabs borders when
24084         invalidating. If the slider was clicked dont do click detection on
24085         the tabs.
24086
24087 2005-03-23  Jackson Harper  <jackson@ximian.com>
24088
24089         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
24090
24091 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
24092
24093         * CategoryGridEntry.cs: Added
24094         * GridItem.cs: Added helper properties
24095         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
24096         * GridEntry.cs: Updated code for collection
24097         * PropertyGrid.cs: Cleaned up some formatting
24098         * PropertyGridView.cs: Added drop down functionality for enums.
24099         * GridItemCollection.cs: Added enumerator logic
24100         * PropertyGridEntry.cs: Added
24101
24102 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
24103
24104         * FileDialog.cs:
24105           - Removed unnecessary commented code
24106           - Fixed handling for entering the filename manually in the combobox
24107
24108 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
24109
24110         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
24111
24112 2005-03-18  Peter Bartok  <pbartok@novell.com>
24113
24114         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
24115           them being touching the border
24116
24117 2005-03-18  Peter Bartok  <pbartok@novell.com>
24118
24119         * TextControl.cs: Quick hack to center text better
24120
24121 2005-03-18  Peter Bartok  <pbartok@novell.com>
24122
24123         * ControlPaint.cs:
24124           - Don't throw NotImplemented exceptions, just print a notice once
24125             instead (requested by Miguel). This makes running existing SWF
24126             apps a bit easier
24127         * Control.cs:
24128           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
24129           - Added context menu trigger on right click
24130         * Panel.cs: Trigger invalidate on resize
24131         * StatusBar.cs:
24132           - Removed old double-buffer drawing
24133           - Added ResizeRedraw style to force proper update of statusbar
24134         * ListView.cs:
24135           - Removed debug output
24136         * ThemeWin32Classic.cs:
24137           - Fixed drawing of status bar, now draws Text property if there
24138             are no defined panels
24139
24140 2005-03-18  Jackson Harper  <jackson@ximian.com>
24141
24142         * ImageList.cs: When the image stream is set pull all the images
24143         from it.
24144         * ImageListStreamer.cs: Implement reading image list streams.
24145
24146 2005-03-18  Peter Bartok  <pbartok@novell.com>
24147
24148         * ThemeWin32Classic.cs (DrawPictureBox):
24149           - Fixed calculations for centered drawing
24150           - Fixed drawing for normal mode, not scaling the image on normal
24151
24152 2005-03-18  Peter Bartok  <pbartok@novell.com>
24153
24154         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
24155           textbox
24156         * FileDialog.cs:
24157           - Made Open/Save button the accept button for FileDialog
24158           - Tied the cancel button to the IButtonControl cancel button
24159           - Save/Open now properly builds the pathname
24160           - Now handles user-entered text
24161           - Preventing crash on right-click if no item is selected
24162           - Fixed Text property, now uses contents of textbox
24163           - Fixed SelectedText property, now just returns the text part that
24164             is selected in the text box
24165
24166 2005-03-18  Jackson Harper  <jackson@ximian.com>
24167
24168         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
24169         rect, make sure to de-adjust the interior rect after drawing the
24170         tab text.
24171
24172 2005-03-18  Peter Bartok  <pbartok@novell.com>
24173
24174         * MenuAPI.cs: Remove menu *before* executing selected action to
24175           prevent the menu from 'hanging around'
24176           
24177 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
24178
24179         * XplatUIOSX.cs: Implemented WorkingArea property
24180
24181 2005-03-17  Peter Bartok  <pbartok@novell.com>
24182
24183         * XplatUIX11.cs: Fixed menu coord calculations
24184         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
24185           for calculating offsets
24186
24187 2005-03-17  Peter Bartok  <pbartok@novell.com>
24188
24189         * Hwnd.cs: Do not consider menu presence for default client
24190           rectangle location/size
24191         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
24192           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
24193           translation functions
24194         * FileDialog.cs: Fixed (what I presume is a) typo
24195
24196 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
24197
24198         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
24199           X access (avoids X-Async errors)
24200
24201 2005-03-16  Jackson Harper  <jackson@ximian.com>
24202
24203         * TabControl.cs: Raise the SelectedIndexChanged event.
24204
24205 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
24206
24207         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
24208           - Removed vertical ToolBar and replaced it with a custom panel
24209             (desktop and home button already work)
24210           - Added Help button (some controls get resized or relocated then)
24211           - Draw correct text depending on Open or Save.
24212           - Fixed some typos...
24213
24214 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
24215
24216         * ScrollBar.cs:
24217           - Only change Maximum and Minimum when need it (bug fix)
24218
24219 2005-03-15  Peter Bartok  <pbartok@novell.com>
24220
24221         * Form.cs: Use Handle for icon, to trigger creation if
24222           the window does not yet exist
24223         * Control.cs:
24224           - CanSelect: Slight performance improvement
24225           - Focus(): Preventing possible recursion
24226           - Invalidate(): Removed ControlStyle based clear flag setting
24227           - WM_PAINT: fixed logic for calling OnPaintBackground
24228           - WM_ERASEBKGND: Fixed logic, added call to new driver method
24229             EraseWindowBackground if the control doesn't paint background
24230         * XplatUIWin32.cs:
24231           - Moved EraseWindowBackground() method to internal methods
24232           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
24233             is sent via SendMessage on BeginPaint call on Win32
24234         * XplatUIX11.cs:
24235           - Added EraseWindowBackground() method
24236           - No longer sends WM_ERASEBKGND on .Expose, but on call to
24237             PaintEventStart, which more closely matches Win32 behaviour
24238           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
24239           - Fixed SetFocus() to properly deal with client and whole windows
24240         * Hwnd.cs: Added ErasePending property
24241         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
24242         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
24243
24244 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
24245
24246         * XplatUIOSX.cs:
24247           - Fix hard loop when timers exist.
24248           - Fix bugs with middle and right click for 3 button mice.
24249
24250 2005-03-11  Peter Bartok  <pbartok@novell.com>
24251
24252         * XplatUIX11.cs:
24253           - get_WorkingArea: Need to call X directly, GetWindowPos only
24254             returns cached data now
24255           - Added sanity check to GetWindowPos hwnd usage
24256
24257 2005-03-11  Jackson Harper  <jackson@ximian.com>
24258
24259         * BindingManagerBase.cs: This method isn't used anymore as
24260         PullData now updates the data in the control.
24261
24262 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
24263
24264         * Form.cs: fixes menu drawing on X11
24265         * MenuAPI.cs:  fixes menu drawing on X11
24266
24267 2005-03-11  Peter Bartok  <pbartok@novell.com>
24268
24269         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
24270           from Jonathan Gilbert; should fix bug #73606
24271         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
24272           in Screen coordinates. Thanks, Jordi.
24273         * Form.cs: Added missing attribute
24274
24275 2005-03-11  Peter Bartok  <pbartok@novell.com>
24276
24277         * Form.cs:
24278           - Rudimentary Mdi support
24279           - Removed outdated FormParent code
24280           - Implemented lots of missing properties and methods, still missing
24281             transparency support
24282           - Added missing attributes
24283           - Implemented support for MaximumBounds
24284           - Added firing of various events
24285         * XplatUI.cs: Added SetIcon() method
24286         * XplatUIDriver.cs: Added SetIcon() abstract
24287         * XplatUIOSX.cs: Stubbed out SetIcon() method
24288         * XplatUIX11.cs:
24289           - Implemented SetIcon() support
24290           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
24291           - Switched to unix line endings
24292         * XplatUIWin32.cs:
24293           - Made POINT internal so for can access it as part of MINMAX
24294           - Implemented SetIcon() support
24295           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
24296             native Mdi support again, might have to go managed)
24297         * Control.cs: Now fires the StyleChanged event
24298         * MdiClient.cs: Added; still mostly empty
24299
24300 2005-03-10  Peter Bartok  <pbartok@novell.com>
24301
24302         * SaveFileDialog.cs: Added emtpy file
24303
24304 2005-03-08  Peter Bartok  <pbartok@novell.com>
24305
24306         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
24307           in turn triggers OnCreateContro) when creating a handle for the
24308           first time.
24309         * TextControl.cs: Fixed endless loop in certain cases when
24310           replacing the current selection
24311
24312 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
24313
24314         * ScrollBar.cs:
24315           - Honors NewValue changes in Scroll events allowing apps to change it
24316           - Adds First and Last Scroll events
24317           - Fixes Thumb events
24318
24319 2005-03-07  Peter Bartok  <pbartok@novell.com>
24320
24321         * Hwnd.cs: Added DefaultClientRectangle property
24322         * XplatUI.cs: Now using the X11 driver Where() method, which provides
24323           more detailed debug information
24324         * XplatUIX11.cs:
24325           - Fixed size-change feedback loop, where we would pull an old size
24326             off the queue and mistakenly change our window's size to an
24327             earlier value
24328           - Now compressing ConfigureNotify events, to reduce looping and
24329             redraw issues
24330         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
24331           is called
24332
24333 2005-03-07  Jackson Harper  <jackson@ximian.com>
24334
24335         * Binding.cs: Push data pushes from data -> property. Check if the
24336         property is readonly when attempting to set it.
24337
24338 2005-03-07  Jackson Harper  <jackson@ximian.com>
24339
24340         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
24341         instead of IsSubclassOf. Pulling data now sets the value on the
24342         control.
24343         * PropertyManager.cs:
24344         * CurrencyManager.cs: Just need to pull data when updating now,
24345         because PullData will set the value on the control.
24346
24347 2005-03-04  Jackson Harper  <jackson@ximian.com>
24348
24349         * Binding.cs: Implement data type parsing and converting on pulled
24350         data. TODO: Are there more ways the data can be converted?
24351
24352 2005-03-04  Jackson Harper  <jackson@ximian.com>
24353
24354         * Binding.cs: Support <Property>IsNull checks. Also bind to the
24355         controls Validating method so we can repull the data when the
24356         control loses focus.
24357
24358 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
24359
24360         * ColumnHeader.cs:
24361           - Fixes null string format
24362           
24363         * ListView.cs:
24364           - Adds enum type checks
24365           - Fixes redrawing and recalc need after changing some properties
24366           - Fixes on focus_item set after the event
24367           - Fixes adding columns after the control has been created
24368           
24369         * ThemeWin32Classic.cs:
24370           - Fixes CheckBox focus rectangle
24371           - Fixes ColumnHeader drawing
24372
24373
24374 2005-03-03  Jackson Harper  <jackson@ximian.com>
24375
24376         * Binding.cs: Bind to <Property>Changed events so we can detect
24377         when properties are changed and update the data.
24378
24379 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
24380
24381         * ImageList.cs:
24382           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
24383           - Fixes ImageList constructor with ImageList container
24384           - Fixes image scaling (wrong parameters at DrawImage)
24385
24386 2005-02-02  Jackson Harper  <jackson@ximian.com>
24387
24388         * Binding.cs: Make property searches case-insensitive. Eliminate
24389         some duplicated code.
24390
24391 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
24392
24393         * ComboBox.cs:
24394                 - Handle focus event
24395                 - Fix scrollbar events
24396                 - Discard highlighted item if remove it
24397                 - Fixes SelectedItem with strings
24398
24399 2005-03-01  Peter Bartok  <pbartok@novell.com>
24400
24401         * Control.cs:
24402           - Fixed Visible property, now follows (once again) parent chain
24403             to return false if any control in the chain is visible=false
24404           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
24405           - Fixed several places where is_visible instead of Visible was used
24406           - Implemented FIXME related to focus selection when setting focused
24407             control to be invisible
24408
24409         * XplatUIWin32.cs: Now using proper method to find out if window is
24410           visible. Thanks to Jordi for pointing it out
24411
24412 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
24413
24414         * ComboBox.cs: show/hide scrollbar instead of creating it
24415
24416 2005-02-27  Jackson Harper  <jackson@ximian.com>
24417
24418         * CurrencyManager.cs: Add PositionChanged stuff.
24419
24420 2005-02-27  Peter Bartok  <pbartok@novell.com>
24421
24422         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
24423         * XplatUIOSX.cs: Added GetMenuOrigin() stub
24424         * XplatUIWin32.cs: Implemented GetMenuOrigin()
24425         * XplatUIX11.cs:
24426           - Implemented GetMenuDC()
24427           - Implemented GetMenuOrigin()
24428           - Implemented ReleaseMenuDC()
24429           - Implemented generation of WM_NCPAINT message
24430           - Implemented generation and handling of WM_NCCALCSIZE message
24431         * Form.cs: Added debug helper message for Jordi's menu work
24432         * Hwnd.cs:
24433           - Modified ClientRect property; added setter, fixed getter to handle
24434             setting of ClientRect
24435           - Added MenuOrigin property
24436
24437 2005-02-26  Peter Bartok  <pbartok@novell.com>
24438
24439         * XplatUIX11.cs:
24440           - Destroys the caret if a window that's being destroyed contains it
24441           - Ignores expose events coming from the X11 queue for windows that
24442             already are destroyed
24443           - Now uses the proper variable for handling DestroyNotify, before we
24444             marked the wrong window as destroyed
24445           - Improved/added some debug output
24446
24447 2005-02-26  Peter Bartok  <pbartok@novell.com>
24448
24449         * X11Keyboard.cs: Fixes to work on 64bit systems
24450
24451 2005-02-26  Peter Bartok  <pbartok@novell.com>
24452
24453         * Control.cs:
24454           - Now calling OnHandleDestroyed from DestroyHandle()
24455             instead of Dispose()
24456           - Removed bogus call to controls.Remove() from DestroyHandle()
24457
24458 2005-02-26  Peter Bartok  <pbartok@novell.com>
24459
24460         * Control.cs: Properly destroy child windows when our handle is
24461           destroyed
24462
24463 2005-02-25  Peter Bartok  <pbartok@novell.com>
24464
24465         * XplatUI.cs:
24466           - Added 'DriverDebug' define to allow tracing XplatUI API calls
24467           - Alphabetized Static Methods and Subclasses
24468
24469         * XplatUIX11.cs:
24470           - Added XException class to allow custom handling of X11 exceptions
24471           - Created custom X11 error handler, tied into XException class
24472           - Added support for MONO_XEXCEPTIONS env var to allow the user
24473             to either throw an exception on X errors or continue running
24474             after displaying the error
24475           - Added handling of DestroyNotify message
24476           - Added handler for CreateNotify message (still disabled)
24477           - Improved (tried to at least) Where method to provide file and lineno
24478         * X11Structs.cs:
24479           - Added XErrorHandler delegate
24480           - Added XRequest enumeration (to suppor translation of errors)
24481
24482 2005-02-25  Jackson Harper  <jackson@ximian.com>
24483
24484         * PropertyManager.cs: Implement editing features
24485         * CurrencyManager.cs:
24486         * Binding.cs: First attempt at UpdateIsBinding
24487         * BindingManagerBase.cs: Call UpdateIsBinding before
24488         pushing/pulling data.
24489
24490 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
24491
24492         * MenuAPI.cs: Respect disabled items
24493         * ThemeWin32Classic.cs
24494                 - Caches ImageAttributes creation for DrawImageDisabled
24495                 - Fixes vertical menu line drawing
24496                 - Draws disabled arrows in disable menu items
24497
24498 2005-02-24  Peter Bartok  <pbartok@novell.com>
24499
24500         * Hwnd.cs:
24501           - Added UserData property to allow associating arbitrary objects
24502             with the handle
24503           - Fixed leak; now removing Hwnd references from static windows array
24504         * XplatUIWin32.cs:
24505           - Fixed Graphics leak in PaintEventEnd
24506           - Removed usage of HandleData, switched over to Hwnd class
24507         * HandleData.cs: Removed, obsoleted by Hwnd.cs
24508
24509 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
24510
24511         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
24512         * ScrollBar.cs: Fixes bug
24513         * TrackBar.cs: removes death code, clipping, mimize refreshes,
24514          keyboard navigation enhancements
24515
24516 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
24517
24518         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
24519         * GroupBox.cs: Add control styles
24520         * Label.cs: Add control styles
24521         * UpDownBase.cs: Add control styles
24522         * ListBox.cs: Add control styles
24523         * XplatUIWin32.cs: Fixes wrong parameter order
24524
24525
24526 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
24527
24528         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
24529
24530 2005-02-23  Jackson Harper  <jackson@ximian.com>
24531
24532         * PropertyManager.cs: Implement property binding. This doesn't
24533         seem to work yet though as (I think) there are some bugs in
24534         System.ComponentModel.PropertyDescriptor.
24535         * BindingContext.cs: Use new PropertyManager constructor.
24536
24537 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
24538
24539         * ProgressBar.cs: use clip region in ProgressBar
24540         * ThemeWin32Classic.cs: use clip region in ProgressBar
24541
24542 2004-02-22  Jackson Harper  <jackson@ximian.com>
24543
24544         * BindingsCollection.cs: Remove some debug code.
24545
24546 2005-02-22  Jackson Harper  <jackson@ximian.com>
24547
24548         * BindingContext.cs:
24549         * ControlBindingsCollection.cs:
24550         * CurrencyManager.cs:
24551         * Binding.cs:
24552         * BindingManagerBase.cs: Initial implementation
24553         * BindingsCollection.cs: Add an internal contains method that the
24554         BindingManagerBase uses to ensure bindings aren't added twice to
24555         the collection.
24556         * PropertyManager.cs: Stubbed out.
24557         * Control.cs:
24558         * ContainerControl.cs: Hook up databinding
24559         
24560 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
24561
24562         * XplatUIOSX.cs:
24563           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
24564           Fixed Invalidate/Update chain.
24565           Fixed tons of other minor bugs (this is almost a complete rewrite).
24566
24567 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
24568
24569         * ComboBox.cs: do subcontrol creation when the control is created
24570
24571 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
24572
24573         * Label.cs: fixes image drawing (image and imagelist)
24574         * ThemeWin32Classic.cs: cache brushes
24575         
24576 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
24577
24578         * Form.cs: Move menu drawing code to Theme class
24579         * ComboBox.cs: Move ComboBox drawing code to Theme class
24580         * MenuItem.cs: Move menu drawing code to Theme class
24581         * MenuAPI.cs: Move menu drawing code to Theme class
24582         * ThemeWin32Classic.cs: New methods
24583         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
24584         * ListBox.cs: Move Listbox drawing code to Theme class
24585         * Theme.cs: New methods
24586
24587 2005-02-20  Peter Bartok  <pbartok@novell.com>
24588
24589         * Control.cs:
24590           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
24591             only process mnemonics on those)
24592           - Fixed event sequence for key handling; first calling
24593             ProcessKeyEventArgs now
24594         * TextBoxBase.cs:
24595           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
24596             for processing non-character keys
24597           - Fixed WM_CHAR to generate proper event sequence before processing
24598         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
24599           generation
24600
24601 2005-02-19  Peter Bartok  <pbartok@novell.com>
24602
24603         * UserControl.cs: Added TextChanged event; added attributes
24604         * SizeGrip.cs: Implemented resizing and optional display of grip
24605         * Form.cs: Fixed attribute
24606         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
24607           Changed meaning of ScrollWindow bool argument; instead of the
24608           clear attribute (which will be true usually anyway), it gives the
24609           option of moving child controls as well.
24610         * XplatUIX11.cs:
24611           - Changed to match new ScrollWindow argument
24612           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
24613             now handles the implicit parent window a WM puts around us
24614         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
24615           to work)
24616         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
24617         * TreeView.cs: Adjusted to new ScrollWindow arguments
24618
24619 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
24620
24621         * Form.cs: Menu integration with non-client area
24622         * MenuItem.cs: Menu integration with non-client area
24623         * MenuAPI.cs: Menu integration with non-client area
24624
24625 2005-02-18  Peter Bartok  <pbartok@novell.com>
24626
24627         * MethodInvoker.cs: Added
24628         * MdiLayout.cs: Added
24629         * SendKeys.cs: Started implementation
24630         * ErrorIconAlignment.cs: Added
24631
24632 2005-02-18  Peter Bartok  <pbartok@novell.com>
24633
24634         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
24635         * Form.cs: Added handling for Menu-related Non-client messages
24636
24637 2005-02-17  Peter Bartok  <pbartok@novell.com>
24638
24639         * UpDownBase.cs: Fixed typo, compilation errors
24640         * DomainUpDown.cs: Fixed attribute value
24641
24642 2005-02-16  Miguel de Icaza  <miguel@novell.com>
24643
24644         * UpDownBase.cs: Attach entry events.
24645         Propagate events.
24646         Add ForeColor property, Focused, InterceptArrowKeys (interception
24647         does not work yet).
24648
24649 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
24650
24651         * Form.cs:
24652                 - Redraw non client are on Setmenu
24653                 - Calc proper menu starting point
24654
24655 2005-02-17  Peter Bartok  <pbartok@novell.com>
24656
24657         * Application.cs: Fixed message_filter check
24658
24659 2005-02-17  Peter Bartok  <pbartok@novell.com>
24660
24661         * Application.cs: Now calls registered message filters
24662         * DockStyle.cs: Fixed attribute
24663         * Form.cs: Fixed attribute
24664         * Menu.cs: Fixed attribute
24665         * ToolTip.cs: Fixed attribute
24666         * TreeNode.cs: Added missing attributes and arranged in regions
24667         * PropertyGrid.cs: Fixed signatures
24668         * TreeNodeCollection.cs: Added attributes
24669         * Splitter.cs: Added missing attributes; arranged into regions
24670         * TabPage.cs: Added missing attributes; arranged into regions
24671         * TextBoxBase.cs: Added missing attributes
24672         * TextBox.cs: Added missing attributes
24673         * ArrangeDirection.cs: Added missing attributes
24674         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
24675         * ToolBarButton.cs: Fixed attributes
24676         * AnchorStyles.cs: Fixed attribute
24677         * TrackBar.cs: Fixed attributes
24678         * TabControl.cs: Added missing attributes and arranged into regions
24679         * ToolBar.cs: Fixed attribute
24680         * StatusBar.cs: Fixed signature, organized into regions and added
24681           attributes
24682         * StatusBarPanel.cs: Fixed attributes
24683         * ContentsResizedEventArgs.cs: Implemented
24684         * ContentsResizedEventHandler.cs: Implemented
24685         * DateBoldEventArgs.cs: Implemented
24686         * DateBoldEventHandler.cs: Implemented
24687         * UpDownEventArgs.cs: Implemented
24688         * UpDownEventHandler.cs: Implemented
24689         
24690 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
24691
24692         * Form.cs: first Menu NC refactoring
24693         * MenuAPI.cs: first Menu NC refactoring
24694         
24695 2005-02-16  Peter Bartok  <pbartok@novell.com>
24696
24697         * ImeMode.cs: Added missing attributes
24698         * Menu.cs: Fixed attribute
24699         * GroupBox.cs: Fixed attribute
24700         * Label.cs: Fixed attribute
24701         * ColorDialog.cs (RunDialog): Removed TODO attribute
24702         * ComboBox.cs: Fixed attributes
24703         * ListControl.cs: Added missing attributes
24704         * PropertyGrid.cs: Fixed attributes
24705         * Control.cs: Fixed attributes
24706         * ListViewItem.cs: Added TypeConverter attribute
24707         * NotifyIcon.cs: Fixed attributes
24708         * ListView.cs: Fixed attributes
24709         * ButtonBase.cs: Fixed attribute
24710         * ImageList.cs: Added missing attributes
24711         * ContainerControl.cs: Fixed signature
24712         * CheckedListBox.cs: Fixed attribute; added missing attributes
24713         * Panel.cs: Fixed attributes
24714         * PropertyTabChangedEventArgs.cs: Added missing attribute
24715         * PropertyValueChangedEventArgs.cs: Added missing attribute
24716         * Binding.cs: Fixed attribute
24717         * ListViewItemConverter: Implemented ListViewSubItemConverter class
24718         * ListBox.cs: Fixed attribute; added missing attributes;
24719         * ScrollableControl.cs: Added missing attributes
24720         * PictureBox.cs: Added missing attributes; implemented missing property
24721         * DateTimePicker.cs: Added missing attributes
24722         * Theme.cs (ToolWindowCaptionHeight): Fixed type
24723         * MonthCalendar.cs: Fixed attributes
24724         * StatusBarPanel.cs: Added missing attributes
24725         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
24726
24727 2005-02-16  Peter Bartok  <pbartok@novell.com>
24728
24729         * TextBoxBase.cs: The previous method to enforce height yet remember
24730           the requested high was less than ideal, this is an attempt to do
24731           it better.
24732         * Control.cs: Added comment about possible problem
24733         * Copyright: Updated format
24734         * GridItemType.cs: Fixed swapped values
24735
24736 2005-02-15  Jackson Harper  <jackson@ximian.com>
24737
24738         * BaseCollection.cs: Use property so we never access an
24739         uninitialized list. Also initialize the list in the property.
24740
24741 2005-02-15  Peter Bartok  <pbartok@novell.com>
24742
24743         * GroupBox.cs (ProcessMnemonic): Implemented
24744         * Label.cs (ProcessMnemonic): Implemented
24745         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
24746           hotkeys
24747
24748 2005-02-15  Peter Bartok  <pbartok@novell.com>
24749
24750         * RadioButton.cs (ProcessMnemonic): Implemented
24751         * CheckBox.cs (ProcessMnemonic): Implemented
24752         * Control.cs:
24753           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
24754             handling
24755           - Added internal method to allow calling ProcessMnemonic from other
24756             controls
24757         * ContainerControl.cs:
24758           - Started support for handling validation chain handling
24759           - Implemented ProcessMnemonic support
24760           - Added Select() call to Active, to make sure the active control
24761             receives focus
24762         * Form.cs: Setting toplevel flag for Forms (this was lost in the
24763           FormParent rewrite)
24764         * ThemeWin32Classic.cs:
24765           - DrawCheckBox(): Fixed stringformat to show hotkeys
24766           - DrawRadioButton(): Fixed stringformat to show hotkeys
24767         * CommonDialog.cs: Removed WndProc override, not needed
24768
24769 2005-02-14  Peter Bartok  <pbartok@novell.com>
24770
24771         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
24772           missed those in the rewrite
24773
24774 2005-02-14  Miguel de Icaza  <miguel@novell.com>
24775
24776         * NumericUpDown.cs (Increment, ToString): Add.
24777         (DecimalPlaces): implement.
24778         
24779         Add attributes.
24780         
24781         * UpDownBase.cs: Add the designer attributes.
24782
24783 2005-02-13  Peter Bartok  <pbartok@novell.com>
24784
24785         * Panel.cs: Removed border_style, now in Control
24786         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
24787           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
24788
24789 2005-02-13  Peter Bartok  <pbartok@novell.com>
24790
24791         * MouseButtons.cs: Added missing attributes
24792         * XplatUIStructs.cs: Added enumeration for title styles
24793         * LeftRightAlignment.cs: Added missing attributes
24794         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
24795           it compatible with Graphics.FromHwnd()
24796         * SelectedGridItemChangedEventArgs.cs: Fixed property type
24797         * Keys.cs: Added missing attributes
24798         * SelectionRange.cs: Added missing attributes
24799         * SelectionRangeConverter.cs: Added
24800         * XplatUI.cs:
24801           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
24802             ReleaseMenuDC methods
24803           - Renamed ReleaseWindow to UngrabWindow
24804           - Added proper startup notice to allow version identification
24805         * Form.cs:
24806           - Added missing attributes
24807           - Removed FormParent concept
24808         * Label.cs: Removed border_style field, now in Control
24809         * RadioButton.cs: Now properly selects RadioButton when focus is
24810           received
24811         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
24812         * Control.cs:
24813           - Added missing attributes
24814           - Added borderstyle handling
24815           - Removed FormParent concept support
24816           - Fixed calls to XplatUI to match changed APIs
24817           - Fixed bug that would case us to use disposed Graphics objects
24818           - Removed unneeded internal methods
24819           - PerformLayout(): Fixed to handle DockStyle.Fill properly
24820           - SelectNextControl(): Fixed to properly check common parents
24821         * TextBoxBase.cs: Removed border_style field (now in Control)
24822         * MessageBox.cs:
24823           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
24824             fixed calculations for form size
24825           - Added support for localized strings and icons
24826           - Improved form size calculations, added border
24827         * ListView.cs: Removed border_style field (now in Control)
24828         * X11Structs.cs: Moved several structs from X11 driver here
24829         * X11Keyboard.cs: Changed debug message
24830         * Application.cs: Removed FormParent concept support
24831         * CommonDialog.cs:
24832           - Resetting end_modal flag
24833           - Removed FormParent concept support
24834         * NativeWindow.cs: Removed FormParent concept support
24835         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
24836           Client area and Non-Client whole window to allow support for WM_NC
24837           messages
24838         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
24839           prevent using it until it supports Hwnd as per Geoff Norton's request
24840         * ToolBar.cs: Fixed drawing, was not doing proper drawing
24841         * PictureBox.cs: Removed border_style field, now in Control
24842         * XplatUIWin32.cs: Added new driver methods
24843
24844 2005-02-12  Peter Bartok  <pbartok@novell.com>
24845
24846         * OpacityConverter.cs: Implemented
24847         * Hwnd.cs: Internal class to support drivers that need to emulate
24848           client area/non-client area window behaviour
24849
24850 2005-02-11  Peter Bartok  <pbartok@novell.com>
24851
24852         * KeysConverter.cs: Implemented
24853
24854 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
24855
24856         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
24857         * LinkLabel: Added missing attributes
24858         * MainMenu.cs: fixes ToString
24859         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
24860         * ListBox.cs: fixes event position
24861         * TrackBar.cs: adds missing attributes and events
24862         
24863 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
24864
24865         * MenuItem.cs: Use SystemInformation and bug fixes
24866         * MenuAPI.cs: Use SystemInformation and bug fixes
24867
24868 2005-02-09  Jackson Harper  <jackson@ximian.com>
24869
24870         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
24871         their keystate otherwise things like VK_MENU get stuck "on".
24872
24873 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
24874
24875         * ListBox.cs: Fixes AddRange bug
24876         
24877 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
24878
24879         * ProgressBar.cs
24880                 - Add missing attributes
24881                 - Add missing method
24882                 
24883         * CheckedListBox.cs: Added missing attributes
24884                 - Add missing attributes
24885                 - Remove extra method
24886         
24887         * ComboBox.cs: Added missing attributes
24888         * VScrollBar.cs: Added missing attributes
24889         * ScrollBar.cs:  Added missing attributes
24890         * ListBox.cs: Fixes signature, add missing consts
24891         * LinkArea.cs:   Added missing attributes
24892         
24893
24894 2005-02-08  Peter Bartok  <pbartok@novell.com>
24895
24896         * Menu.cs: Added missing attributes
24897         * MainMenu.cs: Added missing attributes
24898         * GroupBox.cs: Added missing attributes
24899         * Label.cs: Added missing attributes
24900         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
24901         * ColorDialog.cs:
24902           - Added Instance and Options properties
24903           - Added missing attributes
24904         * Cursor.cs: Made Serializable
24905         * NotifyIcon: Added missing attributes
24906         * MenuItem.cs: Added missing attributes
24907         * TextBoxBase.cs: Implemented AppendText() and Select() methods
24908         * Panel.cs: Added Missing attributes
24909         * MonthCalendar.cs: Fixed CreateParams
24910
24911 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
24912         
24913         * LinkLabel.cs:
24914                 - Fixes signature
24915                 - Fixes issues with links
24916                 - Adds the class attributes
24917
24918 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
24919         
24920         * ComboBox.cs:
24921                 - Fixes button when no items available in dropdown
24922                 - Fixes repainting problems
24923                 - Adds the class attributes
24924                 
24925 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
24926
24927         * XplatUIOSX.cs: Detect the menu bar and title bar height from
24928         the current theme.  Cache these on startup.
24929
24930 2005-02-07  Jackson Harper  <jackson@ximian.com>
24931
24932         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
24933         the scrollbar buttons when they are depressed.
24934
24935 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
24936
24937         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
24938         Get the display size from the main displayid.  We currently dont
24939         support multiple display configurations.
24940
24941 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
24942
24943         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
24944
24945 2005-02-07  Miguel de Icaza  <miguel@novell.com>
24946
24947         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
24948
24949 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
24950
24951         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
24952
24953 2005-02-04  Jackson Harper  <jackson@ximian.com>
24954
24955         * ThemeWin32Classic.cs: Respect the clipping rect when
24956         drawing. Only fill the intersection of clips and rects so there
24957         isn't a lot of large fills.
24958         * ScrollBar.cs: Pass the correct clipping rect to the theme
24959         engine. Remove some debug code.
24960
24961 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
24962         
24963         * DateTimePicker.cs:
24964                 - Fixed crash on DateTime.Parse, use Constructor instead
24965
24966 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
24967         
24968         * MenuItem.cs:
24969         * MenuAPI.cs:
24970                 - Owner draw support (MeasureItem and DrawItem)
24971
24972 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
24973         
24974         *  Menu.cs:
24975                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
24976                 - Fixes MenuItems.Add range
24977         * MenuItem.cs:
24978                 - MergeMenu and Clone and CloneMenu functions
24979
24980 2005-02-03  Jackson Harper  <jackson@ximian.com>
24981
24982         * ScrollBar.cs: Make abstract
24983         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
24984         is abstract.
24985
24986 2005-02-03  Jackson Harper  <jackson@ximian.com>
24987
24988         * ScrollBar.cs: First part of my scrollbar fixups. This removes
24989         all the unneeded refreshes and uses invalidates with properly
24990         computed rects.
24991
24992 2005-02-03  Peter Bartok  <pbartok@novell.com>
24993
24994         * ComponentModel.cs: Added
24995         * IDataGridEditingService.cs: Added
24996         * Timer.cs: Added missing attributes
24997         * ToolTip.cs: Added missing attributes
24998
24999 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
25000
25001         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
25002
25003 2005-02-03  Peter Bartok  <pbartok@novell.com>
25004
25005         * ListBox.cs: Added missing attributes
25006
25007 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
25008         
25009         * ListBox.cs:
25010                 - Fixes font height after font change
25011                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
25012                 
25013 2005-02-02  Peter Bartok  <pbartok@novell.com>
25014
25015         * HandleData.cs: Introduced static methods to allow class
25016           to be more self-contained and track it's own HandleData objects
25017         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
25018           HandleData to use new static methods
25019
25020 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
25021
25022         * Combobox.cs:
25023                 - Fixes default size and PreferredHeight
25024                 - Missing events
25025                 - ObjectCollection.Insert implementation
25026                 
25027         * ListControl.cs
25028                 - Fixes signature
25029         * ListBox.cs:
25030                 - Several fixes
25031                 - ObjectCollection.Insert implementation
25032                 - No selection after clean
25033                 - Small fixes
25034
25035 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
25036
25037         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
25038
25039 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
25040
25041         * Combobox.cs:
25042                 - Caches ItemHeight calculation for OwnerDrawVariable
25043                 - Handles dropdown properly
25044                 - Fixes several minor bugs
25045
25046 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
25047
25048         * ListBox.cs:
25049                 - Fixes 71946 and 71950
25050                 - Fixes changing Multicolumn on the fly
25051                 - Fixes keyboard navigation on Multicolumn listboxes
25052
25053 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
25054         
25055         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
25056         crash reporter log.
25057
25058 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
25059
25060         * XplatUIOSX.cs: Allow applications to actually exit.
25061
25062 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
25063
25064         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
25065         their parent at creation time rather than lazily later.  Fixes a major
25066         regression we were experiencing.
25067
25068 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
25069
25070         * ThemeWin32Classic.cs: more date time picker painting fixes
25071         * DateTimePicker.cs: more monthcalendar drop down fixes
25072         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
25073
25074 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
25075
25076         * ScrollBar.cs:
25077                 - When moving the thumb going outside the control should stop the moving
25078                 - Adds the firing of missing events
25079                 - Fixes no button show if Size is not specified
25080                 - End / Home keys for keyboard navigation
25081
25082 2005-01-30  Peter Bartok  <pbartok@novell.com>
25083
25084         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
25085           sanity check to prevent theoretical loop
25086         * XplatUIWin32.cs (SetVisible): Removed debug output
25087         * XplatUIX11.cs (SystrayChange): Added sanity check
25088         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
25089         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
25090           behaviour, valid until the X11 client window rewrite is done
25091         * TextBox.cs (ctor): Setting proper default foreground and background
25092           colors
25093
25094 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
25095
25096         * Theme: Added DrawDateTimePicker to interface
25097         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
25098         * DateTimePicker.cs: Created (still needs keys and painting code)
25099         * DateTimePickerFormat.cs: added
25100         * MonthCalendar.cs: fixed CreateParams for popup window mode
25101           
25102 2005-01-29  Peter Bartok  <pbartok@novell.com>
25103
25104         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
25105           this should also the calculations for ligher/darker
25106         * Theme.cs: Fixed defaults for ScrollBar widths/heights
25107
25108 2005-01-29  Peter Bartok  <pbartok@novell.com>
25109
25110         * ArrangeDirection.cs: Added
25111         * ArrangeStartingPositon.cs: Added
25112         * SystemInformation.cs: Implemented
25113         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
25114           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
25115           used by SystemInformation class
25116         * X11Strucs.cs: Added XSizeHints structure
25117         * MenuAPI.cs:
25118           - Fixed CreateParams to make sure the menu window is always visible
25119           - TrackPopupMenu: Added check to make sure we don't draw the
25120             menu offscreen
25121
25122 2005-01-29  Peter Bartok  <pbartok@novell.com>
25123
25124         * HandleData.cs: Added method for altering invalid area
25125         * TextBoxBase.cs: Implemented TextLength
25126
25127 2005-01-28  Peter Bartok  <pbartok@novell.com>
25128
25129         * XplatUIX11.cs: Improvement over last patch, not sending
25130           the WM_PAINT directly anymore, instead we scroll any pending
25131           exposed areas and let the system pick out the WM_PAINT later
25132
25133 2005-01-28  Peter Bartok  <pbartok@novell.com>
25134
25135         * SWF.csproj: Deleted, no longer used. Instead,
25136           Managed.Windows.Forms/SWF.csproj should be used
25137         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
25138           directly, to avoid a potential race condition with the next
25139           scroll
25140
25141 2005-01-28  Peter Bartok  <pbartok@novell.com>
25142
25143         * XplatUI.cs: Made class internal
25144
25145 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
25146
25147         * CheckedListBox.cs:
25148                 - Draw focus
25149                 - Fixed Drawing
25150                 - Missing methods and events
25151
25152 2005-01-27  Peter Bartok  <pbartok@novell.com>
25153
25154         * Application.cs (Run): Don't use form if we don't have one
25155
25156 2005-01-27  Peter Bartok  <pbartok@novell.com>
25157
25158         * TextBoxBase.cs (get_Lines): Fixed index off by one error
25159
25160 2005-01-27  Peter Bartok  <pbartok@novell.com>
25161
25162         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
25163         * GridItem.cs: Added; Patch by Jonathan S. Chambers
25164         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
25165         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
25166         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
25167         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
25168         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25169         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
25170         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25171         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25172         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
25173         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
25174
25175 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
25176
25177         * Combobox.cs:
25178                 - Draw focus on Simple Combobox
25179                 - Fixes drawing issues
25180                 - fixes 71834
25181
25182 2005-01-27  Peter Bartok  <pbartok@novell.com>
25183
25184         * Form.cs:
25185           - Place window in default location, instead of hardcoded 0/0
25186           - Send initial LocationChanged event
25187         * Control.cs:
25188           - UpdateBounds after creation to find out where the WM placed us
25189           - Make sure that if the ParentForm changes location the Form
25190             is notified
25191         * XplatUIX11.cs: XGetGeometry will not return the coords relative
25192             to the root, but to whatever the WM placed around us.
25193             Translate to root coordinates before returning toplevel
25194             coordinates
25195         * XplatUIWin32.cs: Removed debug output
25196         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
25197           flag to GetWindowPos, to allow translation of coordinates on X11
25198
25199 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
25200
25201         * ListBox.cs: connect LostFocus Event
25202
25203 2005-01-27  Peter Bartok  <pbartok@novell.com>
25204
25205         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
25206           XplatUIX11.cs: Extended the Systray API
25207         * Form.cs: Removed debug output
25208         * Application.cs: Fixed focus assignment, always need to call
25209           XplatUI.Activate() since Form.Activate() has rules that may
25210           prevent activation
25211         * NotifyIcon.cs: Should be complete now
25212         * ToolTip.cs: Worked around possible timer bug
25213
25214 2005-01-27  Jackson Harper  <jackson@ximian.com>
25215
25216         * TabControl.cs:
25217         - Only invalidate the effected tabs when the
25218         selected index changes. This reduces drawing and gets rid of some
25219         flicker.
25220         - Only refresh if the tabs need to be shifted, otherwise only
25221         invalidate the slider button.
25222         - On windows the tabs are not filled to right if the slider is
25223         visible.
25224         
25225 2005-01-27  Jackson Harper  <jackson@ximian.com>
25226
25227         * TabControl.cs: Only refresh on mouseup if we are showing the
25228         slider. Also only invalidate the button whose state has changed.
25229
25230 2005-01-26  Peter Bartok  <pbartok@novell.com>
25231
25232         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
25233         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
25234           and SystrayRemove() methods
25235         * XplatUIOSX.cs: Stubbed Systray methods
25236         * XplatUIX11.cs:
25237           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
25238             methods
25239           - Fixed broken XChangeProperty calls (marshalling messed up things)
25240         * X11Structs.cs: Added enums and structs required for Size hinting
25241         * NotifyIcon.cs: Added & implemented
25242
25243 2005-01-26  Jackson Harper  <jackson@ximian.com>
25244
25245         * TabControl.cs: Space vertically layed out tabs properly.
25246
25247 2005-01-26  Peter Bartok  <pbartok@novell.com>
25248
25249         * Form.cs (CreateClientParams): Always set the location to 0,0
25250           since we're a child window.
25251
25252         * Control.cs (SetVisibleCore): Always explicitly setting the location
25253           of a toplevel window, apparently X11 doesn't like to move windows
25254           while they're not mapped.
25255
25256 2005-01-26  Jackson Harper  <jackson@ximian.com>
25257
25258         * TabControl.cs: Implement FillToRight size mode with vertically
25259         rendered tabs.
25260
25261 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
25262
25263         * ControlPaint.cs, ThemeWin32Classic.cs
25264                 - Fixes DrawFocusRectangle
25265
25266 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
25267
25268         * MenuAPI.cs:
25269                 - MenuBar tracking only starts when item is first clicked
25270                 - Fixes menu hidding for multiple subitems
25271                 - Unselect item in MenuBar when item Executed
25272                 - Fixes bug 71495
25273
25274 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
25275
25276         * ListControl.cs:
25277                 - IsInputKey for ListBox
25278         * ListBox.cs:
25279                 - Focus item
25280                 - Shift and Control item selection
25281                 - Implement SelectionMode.MultiExtended
25282                 - Fixes RightToLeft
25283         * ComboBox.cs:
25284                 - IsInputKey implemented
25285                 - Do not generate OnTextChangedEdit on internal txt changes
25286                 
25287 2005-01-23  Peter Bartok  <pbartok@novell.com>
25288
25289         * AccessibleObject.cs: Partially implemented Select()
25290         * MonthCalendar.cs: Added missing attributes and events
25291         * Form.cs: Fixed CreateParams behaviour, now controls derived from
25292           form can properly override CreateParams.
25293         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
25294           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
25295           Control performs Invalidate & Update
25296         * NativeWindow (CreateHandle): Added special handling for Form
25297           and Form.FormParent classes to allow overriding of From.CreateParams
25298         * Control.cs:
25299           - ControlNativeWindow: Renamed 'control' variable to more intuitive
25300             name 'owner'
25301           - ControlNativeWindow: Added Owner property
25302           - Removed usage of Refresh() on property changes, changed into
25303             Invalidate(), we need to wait until the queue is processed for
25304             updates, direct calls might cause problems if not all vars for
25305             Paint are initialized
25306           - Added call to UpdateStyles() when creating the window, to set any
25307             styles that CreateWindow might have ignored.
25308           - Added support for Form CreateParent overrides to UpdateStyles()
25309         * MessageBox.cs: Removed no longer needed FormParent override stuff,
25310           CreateParams are now properly overridable
25311         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
25312           CreateParams are now properly overridable
25313
25314 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
25315
25316         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
25317         OnTextBoxChanged.
25318
25319         Capture LostFocus and OnTextBoxChanged.  The later introduces a
25320         recursive invocation that I have not figured out yet.
25321
25322         Reset the timer when not using (it was accumulating).
25323
25324
25325         (OnTextBoxChanged): Set UserEdit to true here to track whether the
25326         user has made changes that require validation.
25327
25328         Reset changing to avoid loops.
25329
25330 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
25331
25332         * NumericUpDown.cs: Display value at startup.
25333
25334         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
25335         ValidateEditText.
25336
25337         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
25338         filled in.  Added some basic parsing of text.
25339
25340         Still missing the OnXXX method overrides, and figuring out the
25341         events that must be emitted.
25342
25343         * UpDownBase.cs: Handle UserEdit on the Text property.
25344         
25345 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
25346
25347         * ComboBox.cs:
25348           - Fixes IntegralHeight
25349           - ToString method
25350
25351 2005-01-21  Jackson Harper  <jackson@ximian.com>
25352
25353         * TabControl.cs: Set the SelectedIndex property when SelectedTab
25354         is set so that the page visibility is updated and the tabs are
25355         sized correctly.
25356
25357 2005-01-21  Jackson Harper  <jackson@ximian.com>
25358
25359         * TabControl.cs: Use cliping rectangle for blitting. Give the
25360         theme the clipping rect so we can do clipping while
25361         drawing. Remove some debug code.
25362
25363 2005-01-21  Jackson Harper  <jackson@ximian.com>
25364
25365         * TabPage.cs: Add a new method so tab pages can force the tab
25366         control to recalculate the tab page sizes.
25367         * TabControl.cs: UpdateOwner needs to make the tab control recalc
25368         sizes.
25369
25370 2005-01-20  Jackson Harper  <jackson@ximian.com>
25371
25372         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
25373
25374 2005-01-20  Jackson Harper  <jackson@ximian.com>
25375
25376         * TreeView.cs: Set the bounds for nodes properly. They were
25377         getting screwed up when checkboxes were not enabled, but images
25378         were.
25379
25380 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
25381
25382         * ListBox.cs:
25383                 - Owner draw support
25384                 - Fixes
25385                 
25386 2005-01-20  Jackson Harper  <jackson@ximian.com>
25387
25388         * XplatUIStructs.cs: More misc keys
25389         * X11Keyboard.cs: Ignore some control keys.
25390
25391 2005-01-20  Jackson Harper  <jackson@ximian.com>
25392
25393         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
25394         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
25395
25396 2005-01-19  Peter Bartok  <pbartok@novell.com>
25397
25398         * Control.cs: Un-selecting the control when it is loosing focus
25399
25400 2005-01-19  Jackson Harper  <jackson@ximian.com>
25401
25402         * TreeView.cs: Hook up to the text controls leave event so we can
25403         end editing when the users clicks outside the text box.
25404         
25405 2005-01-19  Jackson Harper  <jackson@ximian.com>
25406
25407         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
25408         get set in the conversion array.
25409
25410 2005-01-19  Peter Bartok  <pbartok@novell.com>
25411
25412         * Application.cs (ModalRun): Added a call to CreateControl to ensure
25413           focus is properly set
25414         * Button.cs:
25415           - Added missing attributes
25416           - removed styles, those are already set in the base class
25417         * ButtonBase.cs:
25418           - Added missing attributes
25419           - Added clip window styles
25420         * CheckBox.cs: Added missing attributes
25421         * CommonDialog.cs:
25422           - FormParentWindow.CreateParams: Added required clip styles
25423         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
25424           also filters modifier keys
25425         * MessageBox.cs:
25426           - Added assignment of Accept and Cancel button to enable Enter
25427             and Esc keys in MessageBox dialogs
25428           - FormParentWindow.CreateParams: Added required clip styles
25429         * RadioButton.cs: Added missing attributes
25430         * TextControl.cs: No longer draws selection if control does not
25431           have focus
25432         * TextBoxBase.cs:
25433           - Now draws simple rectangle around test area to make it obvious
25434             there's a control. This is a hack until we properly support borders
25435           - A few simple fixes to support selections better, now erases selected
25436             text when typing, and resets selection when using movement keys
25437
25438 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
25439
25440         * UpDownBase.cs: Added some new properties.
25441
25442         * DomainUpDown.cs: Implement a lot to get my test working.
25443
25444 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
25445
25446         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
25447
25448 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
25449
25450         * OSXStructs (WindowAttributes): Fixed csc complaints
25451
25452 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
25453
25454         * XplayUIOSX.cs:
25455           OSXStructs.cs: Initial refactor to move enums and consts into
25456           OSXStructs and use them in the driver for greater readability.
25457
25458 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
25459
25460         * XplatUIOSX.cs: Initial support for Standard Cursors.
25461         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
25462
25463 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
25464
25465         * ComboBox.cs: ability to change style when the ctrl is already
25466         created, missing methods and events, bug fixes, signature fixes
25467
25468 2005-01-19  Peter Bartok  <pbartok@novell.com>
25469
25470         * Cursors.cs (ctor): Added ctor to fix signature
25471
25472 2005-01-18  Peter Bartok  <pbartok@novell.com>
25473
25474         * Button.cs: Implemented DoubleClick event
25475         * ButtonBase.cs:
25476           - Fixed keyboard handling to behave like MS, where the press of
25477             Spacebar is equivalent to a mousedown, and the key release is
25478             equivalent to mouseup. Now a spacebar push will give the same
25479             visual feedback like a mouse click.
25480           - Added missing attributes
25481           - Added ImeModeChanged event
25482           - Added support for generating DoubleClick event for derived classes
25483         * CheckBox.cs:
25484           - Implemented DoubleClick event
25485           - Added missing attributes
25486         * CommonDialog.cs: Added missing attribute
25487         * ContextMenu.cs: Added missing attributes
25488         * RadioButton.cs:
25489           - AutoChecked buttons do not allow to be unselected when clicked
25490             (otherwise we might end up with no selected buttons in a group)
25491           - Added missing attributes
25492           - Implemented DoubleClickEvent
25493         * ThreadExceptionDialog.cs: Enabled TextBox code
25494
25495 2005-01-18  Peter Bartok  <pbartok@novell.com>
25496
25497         * Form.cs: Removed debug output
25498         * Button.cs: Added support for DoubleClick method
25499
25500 2005-01-18  Peter Bartok  <pbartok@novell.com>
25501
25502         * Form.cs:
25503           - Added method to parent window that allows triggering size
25504             calculations when a menu is added/removed
25505           - set_Menu: Cleaned up mess from early days of Form and Control,
25506             now properly triggers a recalc when a menu is added/removed
25507           - Added case to select form itself as focused form if no child
25508             controls exist
25509           - Added PerformLayout call when showing dialog, to ensure properly
25510             placed controls
25511         * Control.cs:
25512           - Select(): Made internal so Form can access it
25513           - Focus(): Only call Xplat layer if required (avoids loop), and sets
25514             status
25515         * Application.cs (Run): Removed hack and calls PerformLayout instead
25516           to trigger calculation when Form becomes visible
25517
25518 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
25519
25520         * ComboBox.cs: fixes for ownerdraw
25521
25522 2005-01-18  Peter Bartok  <pbartok@novell.com>
25523
25524         * TextControl.cs:
25525           - Sentinel is no longer static, each Document gets it's own, this
25526             avoids locking or alternatively overwrite problems when more
25527             than one text control is used simultaneously.
25528           - Switched to use Hilight and HilightText brushes for text selection
25529
25530         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
25531
25532 2005-01-18  Peter Bartok  <pbartok@novell.com>
25533
25534         * Control.cs:
25535           - Hooked up the following events:
25536                 o ControlAdded
25537                 o ControlRemoved
25538                 o HandleDestroyed
25539                 o ImeModeChanged
25540                 o ParentChanged
25541                 o TabStopChanged
25542                 o Invalidated
25543                 o SystemColorsChanged
25544                 o ParentFontChanged
25545                 o Move
25546           - Removed debug output
25547           - Added a call to the current theme's ResetDefaults when a color change
25548             is detected
25549         * Form.cs: Now setting the proper ImeMode
25550         * Theme.cs: Defined a method to force recreation of cached resources
25551           and rereading of system defaults (ResetDefaults())
25552         * ThemeWin32Classic.cs: Added ResetDefaults() stub
25553
25554 2005-01-17  Peter Bartok  <pbartok@novell.com>
25555
25556         * Control.cs: Added missing attributes
25557
25558 2005-01-17  Jackson Harper  <jackson@ximian.com>
25559
25560         * TreeNode.cs: Implement editing. Add missing properties selected
25561         and visible.
25562         * TreeView.cs: Implement node editing. Also some fixes to use
25563         Invalidate (invalid area) instead of Refresh when selecting.
25564
25565 2005-01-17  Peter Bartok  <pbartok@novell.com>
25566
25567         * Control.cs:
25568           - Implemented InvokeGotFocus() method
25569           - Implemented InvokeLostFocus() method
25570           - Implemented InvokePaint() method
25571           - Implemented InvokePaintBackground() method
25572           - Implemented InvokeClick() method
25573           - Implemented FindForm() method
25574           - Implemented RectangleToClient() method
25575           - Implemented ClientToRectangle() method
25576           - Implemented ResetBackColor() method
25577           - Implemented ResetCursor() method
25578           - Implemented ResetFont() method
25579           - Implemented ResteForeColor() method
25580           - Implemented ResetImeMode() method
25581           - Implemented ResetLeftToRight() method
25582           - Implemented ResetText() method
25583           - Implemented Scale() methods
25584           - Implemented ScaleCore() method
25585           - Implemented Update() method
25586           - Removed unused variables
25587           - Stubbed AccessibilityNotifyClients and
25588             ControlAccessibleObject.NotifyClients() methods (dunno what to do
25589             with those yet)
25590           - Now setting proper default for RightToLeft property
25591           - Fixed bug in SetClientSizeCore that would cause windows to get
25592             really big
25593           - Now sending Click/DoubleClick events
25594           - Now selecting controls when left mouse button is clicked on
25595             selectable control
25596         * AccessibleEvents.cs: Added
25597         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
25598         * XplatUIOSX.cs: Stubbed UpdateWindow() method
25599         * XplatUIWin32.cs: Implemented UpdateWindow() method
25600         * XplatUIX11.cs: Implemented UpdateWindow() method
25601         * Form.cs: Removed stray semicolon causing CS0162 warning
25602         * ThemeWin32Classic.cs: Fixed unused variable warnings
25603         * ScrollableControl.cs: Now calls base method for ScaleCore
25604         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
25605           style to avoid interference with internal click handler (which is
25606           different than standard Control click handling)
25607         * RadioButton.cs:
25608           - Now unchecks all sibling radio buttons when control is
25609             selected (Fixes #68756)
25610           - Removed internal tabstop variable, using the one inherited from
25611             Control
25612
25613 2005-01-17  Jackson Harper  <jackson@ximian.com>
25614
25615         * NavigateEventArgs.cs: Fix base type.
25616         * LinkLabel.cs: Sig fix
25617         
25618 2005-01-17  Jackson Harper  <jackson@ximian.com>
25619
25620         * TreeView.cs: Only invalidate the effected nodes bounds when
25621         selecting nodes.
25622
25623 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
25624
25625         * XplatUIWin32.cs: fixes Win32 marshaling
25626         * XplatUIX11.cs: fixes method signature
25627
25628 2005-01-17  Peter Bartok  <pbartok@novell.com>
25629
25630         * XplatUIX11.cs: Clean up resources when we no longer need them
25631
25632 2005-01-17  Peter Bartok  <pbartok@novell.com>
25633
25634         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
25635           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
25636           and DestroyCursor() methods.
25637         * Cursor.cs: Partially implemented, now supports standard cursors;
25638           still contains some debug code
25639         * Cursors.cs: Implemented class
25640         * Control.cs:
25641           - WndProc(): Added handling of WM_SETCURSOR message, setting the
25642             appropriate cursor
25643           - Implemented Cursor property
25644           - Replaced break; with return; more straightforwar and possibly
25645             faster
25646           - Now properly setting the result for WM_HELP
25647         * X11Structs.cs: Added CursorFontShape enum
25648         * XplatUIStructs.cs:
25649           - Added StdCursor enum (to support DefineStdCursor() method)
25650           - Added HitTest enum (to support sending WM_SETCURSOR message)
25651         * XplatUIX11.cs:
25652           - Now sends the WM_SETCURSOR message
25653           - Implemented new cursor methods
25654         * XplatUIOSX.cs: Stubbed new cursor methods
25655         * XplatUIWin32.cs:
25656           - Implemented new cursor methods
25657           - Added GetSystemMetrics function and associated enumeration
25658
25659 2005-01-15  Peter Bartok  <pbartok@novell.com>
25660
25661         * Control.cs:
25662           - WndProc(): Now handles EnableNotifyMessage
25663           - SelectNextControl(): Fixed bug where if no child or sibling
25664             controls exist we looped endlessly
25665
25666 2005-01-14  Jackson Harper  <jackson@ximian.com>
25667
25668         * TreeView.cs: Recalculate the tab pages when a new one is added
25669         so that the proper bounding rects are created.
25670
25671 2005-01-14  Jackson Harper  <jackson@ximian.com>
25672
25673         * TreeView.cs: Draw a gray box instead of a grip in the lower
25674         right hand corner when there are both horizontal and vertical
25675         scroll bars.
25676
25677 2005-01-14  Jackson Harper  <jackson@ximian.com>
25678
25679         * Control.cs: When erasing backgrounds use FromHwnd instead of
25680         FromHdc when there is a NULL wparam. This occurs on the X driver.
25681         * XplatUIX11.cs: Set the wparam to NULL.
25682
25683 2005-01-13  Jackson Harper  <jackson@ximian.com>
25684
25685         * PictureBox.cs: Implement missing methods (except ToString, need
25686         to test that on windows) and events. When visibility is changed we
25687         need to redraw the image because the buffers are killed. When size
25688         is changed refresh if the sizemode needs it.
25689
25690 2005-01-13  Peter Bartok  <pbartok@novell.com>
25691
25692         * Control.cs (SelectNextControl): Was using wrong method to select
25693           a control
25694
25695 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
25696
25697         * ComboBox.cs: fixes dropstyle
25698
25699 2005-01-13  Peter Bartok  <pbartok@novell.com>
25700
25701         * Form.cs:
25702           - Implemented Select() override
25703           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
25704           - Now sets keyboard focus on startup
25705         * Control.cs (SelectNextControl): Now properly handles directed=true
25706         * TextBoxBase.cs:
25707           - WndProc: Now passes tab key on to base if AcceptTabChar=false
25708           - Added (really bad) focus rectangle (mostly for testing)
25709         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
25710           to enforce redraw on focus changes
25711         * ContainerControl.cs:
25712           - Fixed detection of Shift-Tab key presses
25713           - Fixed traversal with arrow keys
25714         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
25715           gonna keep this or if it's complete yet
25716         
25717 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
25718
25719         * ComboBox.cs: missing properties, fixes
25720
25721 2005-01-13  Peter Bartok  <pbartok@novell.com>
25722
25723         * Panel.cs (ctor): Setting Selectable window style to off
25724         * Splitter.cs (ctor): Setting Selectable window style to off
25725         * GroupBox.cs (ctor): Setting Selectable window style to off
25726         * Label.cs (ctor): Setting Selectable window style to off
25727
25728 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
25729
25730         * UpDownBase.cs (InitTimer): If the timer has been already
25731         created, enable it.
25732
25733         Use a TextBox instead of a Label.
25734
25735 2005-01-12  Jackson Harper  <jackson@ximian.com>
25736
25737         * TreeView.cs: Refresh the tree after sorting the nodes. Always
25738         draw the connecting node lines (when ShowLines is true).
25739         * TreeNode.cs: The nodes index can now be updated. This is used
25740         when a node collection is sorted.
25741         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
25742         insert or an existing unsorted node collection can be sorted.
25743         
25744 2005-01-12  Peter Bartok  <pbartok@novell.com>
25745
25746         * ContainerControl.cs: Implemented ProcessDialogKeys()
25747
25748 2005-01-12  Peter Bartok  <pbartok@novell.com>
25749
25750         * Control.cs:
25751           - Implemented SelectNextControl() method
25752           - Several focus related bug fixes
25753           - Fixed Docking calculations to match MS documentation and
25754             behaviour
25755
25756 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
25757
25758         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
25759         bug fixes
25760
25761 2005-01-12  Peter Bartok  <pbartok@novell.com>
25762
25763         * Control.cs:
25764           - Fixed broken Contains() method
25765           - Implemented GetNextControl() method. Finally. This is the pre-
25766             requisite for focus handling.
25767
25768 2005-01-12  Peter Bartok  <pbartok@novell.com>
25769
25770         * OSXStrucs.cs: Added
25771
25772 2005-01-12  Peter Bartok  <pbartok@novell.com>
25773
25774         * XplatUIWin32.cs:
25775           - Removed PeekMessageFlags
25776           - Implemented SetWindowStyle() method
25777         * XplatUIStructs.cs: Added PeekMessageFlags
25778         * X11Structs: Added missing border_width field to XWindowChanges struct
25779         * XplatUIX11.cs:
25780           - PeekMessage: Now throws exception if flags which are not yet
25781             supported are passed
25782           - Implemented SetWindowStyle() method
25783           - Fixed SetZOrder to handle AfterHwnd properly
25784         * XplatUI.cs: Added SetWindowStyle() method
25785         * XplatUIDriver.cs: Added SetWindowStyle() abstract
25786         * Control.cs:
25787           - Implemented UpdateStyles() method
25788           - Implemented UpdateZOrder() method
25789         * XplatUIOSX.cs: Added SetWindowStyle() stub
25790
25791 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
25792
25793         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
25794         button mouse).
25795
25796
25797 2005-01-11  Jackson Harper  <jackson@ximian.com>
25798
25799         * TreeView.cs: Still need to draw lines to siblings even if out of
25800         the current node is out of the clip.
25801
25802 2005-01-11  Jackson Harper  <jackson@ximian.com>
25803
25804         * TreeView.cs: When setting the hbar/vbar/grip position use
25805         SetBounds so that perform layout is only called once. Also suspend
25806         and resume layout so layout is only done once for all controls.
25807         - Removed some debug fluff
25808         * SizeGrip.cs: Call base implmentation in overriding methods.
25809         - When visibility is changed the drawing buffers are killed so we
25810         need to redraw.
25811
25812 2005-01-11  Jackson Harper  <jackson@ximian.com>
25813
25814         * TreeView.cs: Calculate the open node count while drawing. This
25815         saves us an entire tree traversal for every paint operation. Use
25816         a member var for the open node count so less vars are passed around.
25817
25818 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
25819
25820         * MonthCalendar.cs:
25821         - fixed selection to use mousemove, not mouse polling on timer
25822         * ThemeWin32Classic.cs
25823         - removed redundant unused variable "no_more_content"
25824         
25825 2005-01-11  Peter Bartok  <pbartok@novell.com>
25826
25827         * XplatUIX11.cs (DoEvents): Needs to return when no more events
25828           are pending, so it now calls PeekMessage instead of GetMessage;
25829           implemented a incomplete version of PeekMessage
25830         
25831 2005-01-11  Peter Bartok  <pbartok@novell.com>
25832
25833         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
25834           I18n issues
25835         * TextBoxBase.cs: Added sending of TextChanged event
25836
25837 2005-01-10  Jackson Harper  <jackson@ximian.com>
25838
25839         * TreeView.cs: Try not to draw outside the clipping rectangle on
25840         each node element.
25841
25842 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
25843
25844         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
25845
25846 2005-01-10  Jackson Harper  <jackson@ximian.com>
25847
25848         * TreeView.cs:
25849         - Implement fast scrolling. Now only the newly
25850         exposed nodes are drawn and the old image is moved using the
25851         XplatUI::ScrollWindow method.
25852         - Factor in height of nodes when calculating whether or not the
25853         node is in the clipping rect.
25854
25855 2005-01-10  Jackson Harper  <jackson@ximian.com>
25856
25857         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
25858
25859 2005-01-10  Peter Bartok  <pbartok@novell.com>
25860
25861         * Application.cs: Added temporary hack to resolve all our resize
25862           required issues on startup. This will get fixed properly at
25863           some point in the future
25864
25865 2005-01-10  Jackson Harper  <jackson@ximian.com>
25866
25867         * SizeGrip.cs: New internal class that is used as a sizing
25868         grip control...hence the name.
25869
25870 2005-01-10  Peter Bartok  <pbartok@novell.com>
25871
25872         * Control.cs: Implemented proper TabIndex handling, now assigning
25873           a tabindex when a control is added to a container
25874         * GroupBox.cs (ctor): Now sets the Container style bit, required
25875           for Control.GetNextControl()
25876
25877 2005-01-09  Jackson Harper  <jackson@ximian.com>
25878
25879         * TextBoxBase.cs: Clear window when scrolling (fixes build).
25880
25881 2005-01-09  Peter Bartok <pbartok@novell.com>
25882
25883         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
25884           XplatUIX11.cs: Added ability to control ScrollWindow expose and
25885           an overload for ScrollWindow to allow only scrolling a rectangle
25886
25887 2005-01-09  Peter Bartok <pbartok@novell.com>
25888
25889         * Form.cs:
25890           - Implemented SetDesktopBounds method
25891           - Implemented SetDesktopLocation method
25892
25893 2005-01-08  Jackson Harper  <jackson@ximian.com>
25894
25895         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
25896         the node count has changed, this removes to VScroll::Refresh calls
25897         when drawing.
25898
25899 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
25900
25901         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
25902
25903 2005-01-07  Jackson Harper  <jackson@ximian.com>
25904
25905         * TreeNode.cs: Just update the single node when it is
25906         checked. Don't refresh after toggling, the Expand/Collapse already
25907         handles this.
25908         * TreeView.cs: Respect clipping a little more when drawing. Try
25909         not to redraw things that don't need to be redrawn. Just hide the
25910         scrollbars when they are no longer needed instead of removing
25911         them, so they don't have to be created again and again.
25912         
25913 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
25914
25915         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
25916         coordinates to window space to place the caret properly, FIXED.
25917         Implement GetWindowState & SetWindowState
25918
25919 2005-01-06  Peter Bartok <pbartok@novell.com>
25920
25921         * Form.cs:
25922           - Implemented ClientSize property
25923           - Implemented DesktopBounds property
25924           - Implemented DesktopLocation property
25925           - Implemented IsRestrictedWindow property
25926           - Implemented Size property
25927           - Implemented TopLevel property
25928           - Implemented FormWindowState property
25929         * Control.cs:
25930           - Implemented GetTopLevel() method
25931           - Implemented SetTopLevel() method
25932         * X11Structs.cs (Atom):
25933           - Added AnyPropertyType definition
25934           - Added MapState definiton and updated XWindowAttribute struct
25935         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
25936         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
25937         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
25938         * XplatUIWin32.cs:
25939           - Implemented GetWindowState() and SetWindowState() methods
25940           - Fixed Win32GetWindowLong return type
25941         * XplatUIX11.cs:
25942           - Introduced central function for sending NET_WM messages
25943           - Implemented GetWindowState() and SetWindowState() methods
25944         * TextBoxBase.cs (set_Lines):
25945           - Now uses Foreground color for text added via Text property (Duh!)
25946           - Added code to remember programmatically requested size (fixes
25947             behaviour when Multiline is set after Size)
25948           - Added AutoSize logic
25949
25950 2005-01-06  Jackson Harper  <jackson@ximian.com>
25951
25952         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
25953
25954 2005-01-06  Jackson Harper  <jackson@ximian.com>
25955
25956         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
25957         set to less then 0.
25958
25959 2005-01-06  Jackson Harper  <jackson@ximian.com>
25960
25961         * ScrollableControl.cs: Lazy init the scrollbars.
25962         
25963 2005-01-06  Jackson Harper  <jackson@ximian.com>
25964
25965         * Theme.cs: Speed up getting pens and solid brushes, by using
25966         their ARGB as a hash instead of tostring and not calling Contains.
25967
25968 2005-01-06  Peter Bartok <pbartok@novell.com>
25969
25970         * Form.cs:
25971           - Implemented OnActivated and OnDeactivate event trigger
25972           - Implemented Activate() method
25973           - Fixed ShowDialog() to activate the form that was active before
25974             the dialog was shown
25975         * XplatUIX11.cs:
25976           - Added global active_window var that tracks the currently active
25977             X11 window
25978           - Now always grabs Property changes from the root window to always
25979             catch changes on the active window property
25980           - Added code to PropertyNotify handler to send Active/Inactive
25981             messages when state changes. This puts X11 and Win32 en par on
25982             WM_ACTIVATE notifications (except for double notifications when
25983             the user clicks away from our modal window to another one of our
25984             windows)
25985
25986 2005-01-05  Jackson Harper  <jackson@ximian.com>
25987
25988         * ImageList.cs: Implment ctor
25989
25990 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
25991
25992         * XplatUIOSX.cs: Implement Activate/SetTopmost
25993
25994 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
25995
25996         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
25997
25998 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
25999
26000         * XplatUIOSX.cs: Implement GetActive/SetFocus.
26001
26002 2005-01-05  Peter Bartok <pbartok@novell.com>
26003
26004         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
26005           XplatUIOSX.cs: Added GetActive method to return the currently
26006           active window for the application (or null, if none is active)
26007         * Form.cs:
26008           - Implemented ActiveForm
26009           - Commented out owner assignment for modal dialogs (causes problems
26010             on Win32, since the owner will be disabled)
26011           - Reworked some Active/Focus handling (still incomplete)
26012         * CommonDialog.cs: Commented out owner assignment for modal dialogs
26013           (causes problems on Win32, since the owner will be disabled)
26014         * IWin32Window: Added ComVisible attribute
26015
26016 2005-01-05  Peter Bartok <pbartok@novell.com>
26017
26018         * ToolTip.cs (WndProc): Enable setting focus now that we have the
26019           required XplatUI functions.
26020
26021 2005-01-05  Peter Bartok <pbartok@novell.com>
26022
26023         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
26024           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
26025           to implement focus and activation handling; still incomplete and
26026           with debug output
26027
26028 2005-01-04  Peter Bartok <pbartok@novell.com>
26029
26030         * TextBoxBase.cs: Changed access level for Document property to
26031           match switch to internal for TextControl
26032
26033 2005-01-04  Peter Bartok <pbartok@novell.com>
26034
26035         * AccessibleObject: Added ComVisible attribute
26036
26037 2005-01-04  Jackson Harper  <jackson@ximian.com>
26038
26039         * X11Keyboard.cs: Remove unneeded var.
26040
26041 2005-01-04  Jackson Harper  <jackson@ximian.com>
26042
26043         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
26044         but PAINT.
26045         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
26046         ClientMessage. This makes apps exit cleanly (more often).
26047         
26048 2005-01-04  Jackson Harper  <jackson@ximian.com>
26049
26050         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
26051         handling focus, return correct colors and fonts,
26052         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
26053         handle selection, horizontal scrolling, and mouse interaction.
26054
26055 2005-01-04  Peter Bartok <pbartok@novell.com>
26056
26057         * ICommandExecutor.cs: Added
26058         * IDataGridColumnStyleEditingNotificationService.cs: Added
26059         * IFeatureSupport.cs: Added
26060         * IFileReaderService.cs: Added
26061         * IDataObject.cs: Added ComVisible attribute
26062         * AmbientProperties.cs: Added
26063         * BaseCollection.cs: Added missing attributes
26064         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
26065         * BaseCollection.cs: Added missing attributes
26066         * Binding.cs: Added TypeConverter attribute
26067         * BindingContext.cs: Added DefaultEvent attribute
26068         * BindingsCollection.cs: Added DefaultEvent attribute
26069         * Button.cs: Added DefaultValue attribute
26070         * DragEventArgs.cs: Added ComVisible attribute
26071         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
26072         * KeyEventArgs.cs: Added ComVisible attribute
26073         * KeyPressEventArgs.cs: Added ComVisible attribute
26074         * MouseEventArgs.cs: Added ComVisible attribute
26075         * NavigateEventArgs.cs: Added
26076         * NavigateEventHandler.cs: Added
26077         * FeatureSupport.cs: Added
26078         * OSFeature.cs: Added
26079         * Theme.cs: Added abstract Version property to support OSFeature
26080         * ThemeWin32Classic.cs: Added Version property to
26081           support OSFeature.Themes
26082         * ProgressBar.cs: Removed OnPaintBackground override, not required since
26083           the proper styles to avoid background drawing are set, also doesn't
26084           match MS signature
26085         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
26086         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
26087         * ScrollEventArgs.cs: Added ComVisible attribute
26088         * SplitterEventArgs.cs: Added ComVisible attribute
26089         * AccessibleSelection.cs: Added Flags attribute
26090         * Appearance.cs: Added ComVisible attribute
26091         * Border3DSide.cs: Added ComVisible attribute
26092         * Border3DStyle.cs: Added ComVisible attribute
26093         * BorderStyle.cs: Added ComVisible attribute
26094         * DragAction.cs: Added ComVisible attribute
26095         * ErrorBlinkStyle.cs: Added
26096         * ScrollEventType.cs: Added ComVisible attribute
26097         * AnchorStyles.cs: Added Editor attribute
26098         * DockStyle.cs: Added Editor attribute
26099         * HorizontalAlignment.cs: Added ComVisible attribute
26100         * HelpEventArgs.cs: Added ComVisible attribute
26101         * PaintEventArgs.cs: Added IDisposable
26102
26103 2005-01-04  Peter Bartok <pbartok@novell.com>
26104
26105         * TextControl.cs: Switched Line, LineTag and Document classes to
26106           internal
26107
26108 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
26109
26110         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
26111         Simple mode, fixes, IntegralHeight, etc.
26112
26113 2005-01-04  Peter Bartok <pbartok@novell.com>
26114
26115         * TextBoxBase.cs: Using proper font variable now
26116
26117 2005-01-04  Peter Bartok <pbartok@novell.com>
26118
26119         * Form.cs (ShowDialog): Set parent to owner, if provided
26120         * GroupBox.cs: Removed unused vars
26121         * TextControl.cs:
26122           - Added GetHashCode() for Document and LineTag classes
26123           - Removed unused variables
26124           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
26125             to allow translation between continuous char position and line/pos
26126         * CheckBox.cs: Removed vars that are provided by base class
26127         * RadioButton.cs: Removed vars that are provided by base class, added
26128           new keyword where required
26129         * LinkLabel.cs: Added new keyword where required
26130         * Control.cs (WndProc): Removed unused variable
26131         * TextBoxBase.cs:
26132           - Finished SelectionLength property
26133           - Implemented SelectionStart property
26134           - Implemented Text property
26135           - Removed unused vars
26136         * MessageBox.cs: Added new keyword where required
26137         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
26138           WndProc signature
26139         * MenuAPI.cs: Added new keyword where required
26140         * ButtonBase.cs: Removed vars that are provided by base class, added
26141           new keyword where required
26142         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
26143           argument to double, to allow compiling with csc 2.0 (Atsushi ran
26144           into this)
26145         * Application.cs (Run): Now triggers the ThreadExit event
26146         * CommonDialog.cs: Added new keyword where required; now properly sets
26147           parent (owner) for dialog
26148         * XplatUIX11.cs: Commented out unused vars
26149         * StatusBar.cs: Fixed signature for Text property
26150         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
26151
26152 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
26153
26154         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
26155         TrackBar.cs, MonthCalendar.cs: remove unused vars
26156
26157 2005-01-03  Jackson Harper  <jackson@ximian.com>
26158
26159         * ThemeWin32Classic.cs:
26160         * X11Keyboard.cs: Remove unused vars.
26161
26162 2005-01-03  Peter Bartok  <pbartok@novell.com>
26163
26164         * TextBox.cs:
26165           - set_Text: Tied into TextControl
26166           - set_TextAlignment: Tied into TextControl
26167         * TextControl.cs:
26168           - Added alignment properties and implemented alignment handling
26169             and drawing (still has a bug, not generating proper expose events)
26170           - Added new Line() constructor to allow passing the line alignment
26171           - Fixed selection setting, properly handling end<start now
26172           - Added aligment considerations to RecalculateDocument()
26173         * TextBoxBase.cs:
26174           - Now properly enforces control height for single line controls
26175           - Added support for CharacterCasing
26176           - Added IsInputKey override
26177           - Fixed Keys.Enter logic
26178           - Added SetBoundsCore override
26179           - Fixed mouse selection handling
26180
26181 2005-01-03  Jackson Harper  <jackson@ximian.com>
26182
26183         * TreeView.cs:
26184           - Collapse and uncheck all nodes when CheckBoxes is disabled.
26185           - Checkboxes are always aligned to the bottom of the node,
26186           regardless of item height.
26187           - Use the node bounds to draw the text so we can center it when
26188           the item height is greater then the font height.
26189           - Node::Bounds are only the text part of the node.
26190         * TreeNode.cs: New method to combine collapsing and unchecking all
26191           nodes recursively.
26192
26193 2005-01-02  Jackson Harper  <jackson@ximian.com>
26194
26195         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
26196         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
26197         tree when a check is changed. TODO: Only refresh the checked node.
26198
26199 2004-12-30  Jackson Harper  <jackson@ximian.com>
26200
26201         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
26202         * TreeNode.cs: When collapsing make sure to never collapse the
26203         root node.
26204
26205 2004-12-29  Jackson Harper  <jackson@ximian.com>
26206
26207         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
26208         
26209 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
26210
26211         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
26212
26213 2004-12-28  Peter Bartok  <pbartok@novell.com>
26214
26215         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
26216           not yet assigned
26217
26218 2004-12-28  Peter Bartok  <pbartok@novell.com>
26219
26220         * Control.cs (WndProc): Added WM_HELP handler, now generates
26221           HelpRequested event
26222         * Form.cs: Added HelpButton property and required support code
26223         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
26224
26225 2004-12-28  Peter Bartok  <pbartok@novell.com>
26226
26227         * CommonDialog.cs:
26228           - Made DialogForm.owner variable internal
26229           - Added check to ensure owner form is set before setting
26230             owner properties in CreateParams
26231
26232 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
26233
26234         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
26235           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
26236           GetCursorPos.  Fix major visibility issues.  Rework the windowing
26237           system to support borderless/titleless windows (implements menus).
26238           Fix GetWindowPos.  Implement initial background color support for
26239           views.
26240
26241 2004-12-28  Peter Bartok  <pbartok@novell.com>
26242
26243         * Form.cs (get_CreateParams): Make sure we have an owner before using
26244           the owner variable. Implement proper default if no owner exists
26245
26246 2004-12-28  Peter Bartok  <pbartok@novell.com>
26247
26248         * In preparation for making Managed.Windows.Forms the default build target
26249           for System.Windows.Forms, the following stubbed files were added.
26250           Dialogs are currently being implemented by contributors and are only
26251           short-term place holders.
26252         * ColorDialog.cs: Initial check-in (minmal stub)
26253         * DataGrid.cs: Initial check-in (minimal stub)
26254         * DataGridLineStyle.cs: Initial check-in (minimal stub)
26255         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
26256         * DataGridTableStyle.cs: Initial check-in (minimal stub)
26257         * FontDialog.cs: Initial check-in (minimal stub)
26258         * FileDialog.cs: Initial check-in (minimal stub)
26259         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
26260         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
26261         * OpenFileDialog: Initial check-in (minimal stub)
26262         * IComponentEditorPageSite.cs: Initial check-in
26263         * Splitter.cs: Initial check-in (for Jackson)
26264         * SplitterEventArgs.cs: Initial check-in (for Jackson)
26265         * SplitterEventHandler.cs: Initial check-in (for Jackson)
26266         * TextBox.cs: Initial check-in; still needs some wiring to
26267           TextControl backend
26268         * Form.cs: Implemented ControlBox property
26269         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
26270         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
26271         * TextControl.cs: Added selection functionality; added todo header
26272         * TextBoxBase.cs:
26273           - Implemented Lines property
26274           - Implemented TextHeight property
26275           - Implemented SelectedText property
26276           - Implemented SelectionLength property
26277           - Implemented SelectAll method
26278           - Implemented ToString method
26279           - Removed and cleaned up some debug code
26280           - Implemented (still buggy) mouse text selection
26281
26282 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
26283
26284         * ComboBox.cs: Complete DropDownList implementation, fixes.
26285
26286 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
26287
26288         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
26289         * ComboBoxStyle.cs: ComboBoxStyle enum
26290         * ComboBox.cs: Initial work on ComboBox control
26291
26292 2004-12-21  Peter Bartok  <pbartok@novell.com>
26293
26294         * Control.cs (ctor, CreateParams): Moved setting of is_visible
26295           forward so that anything that creates a window gets the default,
26296           also no longer uses Visible property in CreateParams to avoid
26297           walking up the parent chain and possibly get the wrong visible
26298           status. Fixed IsVisible to no longer walk up to the parent.
26299
26300 2004-12-21  Peter Bartok  <pbartok@novell.com>
26301
26302         * Form.cs (ShowDialog): Unset modality for the proper window
26303  
26304 2004-12-20  Peter Bartok  <pbartok@novell.com>
26305
26306         * CommonDialog.cs: Initial check-in
26307
26308 2004-12-20  Peter Bartok  <pbartok@novell.com>
26309
26310         * Control.cs (Visible): Now uses the parent window instead of the
26311           client area window for the property
26312
26313         * Form.cs
26314           - ShowDialog(): Now uses the proper window for modality
26315           - The default visibility state for the form parent is now false. This
26316             will prevent the user from seeing all the changes to the form and
26317             its controls before the application hits Application.Run()
26318           - Removed some stale commented out code
26319
26320         * NativeWindow.cs:
26321           - Added FindWindow() method to have a method to check for existence
26322             of a window handle
26323           - Added ability to override default exception handling (for example
26324             when debugging with VS.Net; to do this the ExternalExceptionHandler
26325             define must be set
26326           - Removed some useless debug output
26327
26328         * XplatUIX11.cs:
26329           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
26330             not working as expected
26331           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
26332             property to allow switching back to the modal window if focus is
26333             given to another one of our windows (Application Modal)
26334           - Now only sets override_redirect if we create a window
26335             without WS_CAPTION
26336           - Moved EventMask selection before mapping of newly created window
26337             so we can catch the map event as well
26338           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
26339           - Added various Atom related DllImports
26340           - Implemented Exit() method
26341           - .ctor() : No longer shows window if WS_VISIBLE is not defined
26342             in the CreateParams
26343
26344         * MessageBox.cs: Now properly deals with the FormParent window by
26345           providing an override the FormParent CreateParams property to
26346           set as POPUP instead of OVERLAPPED window.
26347
26348 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
26349
26350         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
26351         Minor code cleanup.
26352
26353 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
26354         
26355         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
26356
26357 2004-12-18  Peter Bartok  <pbartok@novell.com>
26358
26359         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
26360           implementing SetModal() method
26361
26362 2004-12-18  Peter Bartok  <pbartok@novell.com>
26363
26364         * X11Structs.cs (XGCValues): Fixed type of function element
26365         * XplatUI.cs: Added ScrollWindow() method
26366         * XplatUIDriver.cs: Added ScrollWindow() abstract
26367         * XplatUIWin32.cs: Implemented ScrollWindow() method
26368         * XplatUIX11.cs: Implemented ScrollWindow() method
26369         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
26370
26371 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
26372
26373         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
26374         Some more keyboard support (INCOMPLETE)
26375
26376 2004-12-17  Peter Bartok  <pbartok@novell.com>
26377
26378         * TextControl.cs:
26379         - Added color attribute to line tags.
26380         - Added color argument to all functions dealing with tags
26381         - Added color argument support to various functions
26382         - Fixed miss-calculation of baseline/shift in certain circumstances
26383
26384         * TextBoxBase.cs: Added new color option to test code
26385
26386 2004-12-17  Jackson Harper  <jackson@ximian.com>
26387
26388         * TreeNode.cs:
26389         * MonthCalendar.cs: Signature fixes
26390
26391 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
26392
26393         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
26394         keyboard event moved it.  Create a new graphics context for each paint resolves this
26395
26396 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
26397
26398         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
26399         Make caret exist and go blink blink.  Initial keyboard support.
26400         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
26401         works.
26402
26403 2004-12-17  Jackson Harper  <jackson@ximian.com>
26404
26405         * XplatUIStructs.cs: Updated set of virtual keycodes.
26406         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
26407
26408 2004-12-17  Jackson Harper  <jackson@ximian.com>
26409
26410         * XplatUIX11.cs: Prune old keyboard code.
26411
26412 2004-12-17  Jackson Harper  <jackson@ximian.com>
26413
26414         * XplatUIX11.cs: When generating mouse wparams get the modifier
26415         keys from the ModifierKeys property.
26416
26417 2004-12-17  Jackson Harper  <jackson@ximian.com>
26418
26419         * X11Keyboard.cs: Send up/down input when generating
26420         messages. Remove some unused vars.
26421
26422 2004-12-17  Jackson Harper  <jackson@ximian.com>
26423
26424         * TabControl.cs:
26425         * TreeView.cs: get rid of warnings.
26426
26427 2004-12-17  Jackson Harper  <jackson@ximian.com>
26428
26429         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
26430
26431 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
26432
26433         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
26434           CheckedListBox.cs: Implementation
26435
26436 2004-12-17  Peter Bartok  <pbartok@novell.com>
26437
26438         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
26439
26440 2004-12-16  Peter Bartok  <pbartok@novell.com>
26441
26442         * TextControl.cs:
26443           - InsertCharAtCaret(): Fixed start pos fixup
26444           - CaretLine_get: No longer derives the line from the tag, the tag
26445             could be stale if lines in the document have been added or deleted
26446           - RebalanceAfterDelete(): Fixed bug in balancing code
26447           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
26448           - Line.Streamline(): Now can also elminate leading empty tags
26449           - DumpTree(): Added a few more tests and prevented exception on
26450             uninitialized data
26451           - Added Debug section for Combining lines
26452           - Delete(): Now copies all remaining properties of a line
26453           
26454         * TextBoxBase.cs:
26455           - Left mousebutton now sets the caret (and middle button still acts
26456             as formatting tester, which must go away soon)
26457           - Added Debug section for Deleting/Combining lines
26458           - Fixed calculations for UpdateView after Combining lines
26459
26460 2004-12-16  Peter Bartok  <pbartok@novell.com>
26461
26462         * TextControl.cs: Now properly aligns text on a baseline, using the
26463           new XplatUI.GetFontMetrics() method. Simplified several calculations
26464         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
26465           defined
26466
26467 2004-12-16  Peter Bartok  <pbartok@novell.com>
26468
26469         * XplatUI.cs: Added GetFontMetrics() method
26470         * XplatUIDriver.cs: Added GetFontMetrics() abstract
26471         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
26472           into libgdiplus, our private GetFontMetrics function
26473         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
26474         * XplatUIWin32.cs: Implemented GetFontMetrics() method
26475
26476 2004-12-16  Jackson Harper  <jackson@ximain.com>
26477
26478         * XplatUIStruct.cs: Add enum for dead keys
26479         * X11Keyboard.cs: Map and unmap dead keys.
26480
26481 2004-12-16  Jackson Harper  <jackson@ximian.com>
26482
26483         * X11Keyboard.cs: Detect and use the num lock mask.
26484
26485 2004-12-16  Peter Bartok  <pbartok@novell.com>
26486
26487         * Control.cs (CreateGraphics): Added check to make sure the
26488           handle of the window exists before calling Graphics.FromHwnd()
26489
26490 2004-12-16  Peter Bartok  <pbartok@novell.com>
26491
26492         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
26493           contains a lot of code that's not supposed to be there for the
26494           real thing, but required for developing/testing the textbox
26495           backend.
26496
26497 2004-12-16  Peter Bartok  <pbartok@novell.com>
26498
26499         * TextControl.cs:
26500         - Fixed Streamline method
26501         - Added FindTag method to Line
26502         - Added DumpTree method for debugging
26503         - Added DecrementLines() method for deleting lines
26504         - Fixed UpdateView to update the cursor to end-of-line on single-line
26505           updates
26506         - Added PositionCaret() method
26507         - Fixed MoveCaret(LineDown) to move into the last line, too
26508         - Added InsertChar overload
26509         - Fixed InsertChar tag offset calculations
26510         - Added DeleteChar() method
26511         - Added Combine() method for folding lines
26512         - Fixed Delete() method, no longer allocates wasted Line object and
26513           now copies all properties when swapping nodes
26514         - Delete() method now updates document line counter
26515
26516 2004-12-15  Jackson Harper  <jackson@ximian.com>
26517
26518         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
26519         * X11Keyboard.cs: Expose the currently selected modifier keys
26520         through a property.
26521
26522 2004-12-15  Peter Bartok  <pbartok@novell.com>
26523
26524         * TextControl.cs: Initial check-in. Still incomplete
26525
26526 2004-12-15  Jackson Harper  <jackson@ximian.com>
26527
26528         * TreeNode.cs:
26529         * TreeView.cs: Fix build on csc (second time today ;-))
26530
26531 2004-12-15  Jackson Harper  <jackson@ximian.com>
26532
26533         * TreeView.cs: Store the treenodes plus/minus box bounds when it
26534         is calculated and use this for click testing.
26535         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
26536
26537 2004-12-15  Jackson Harper  <jackson@ximian.com>
26538
26539         * TreeView.cs: Pass the nodes image index to the image list when
26540         drawing that image.
26541
26542 2004-12-15  Jackson Harper  <jackson@ximian.com>
26543
26544         * X11Keyboard.cs: Set messages hwnd.
26545         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
26546         post_message calls.
26547
26548 2004-12-15  Jackson Harper  <jackson@ximian.com>
26549
26550         * X11Keyboard.cs: Fix to compile with csc.
26551         
26552 2004-12-15  Jackson Harper  <jackson@ximian.com>
26553
26554         * X11Structs.cs: Add key mask values
26555         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
26556         * X11Keyboard.cs: New file - Extrapolates and interpolates key
26557         down/up foo into WM_CHAR foo
26558         * KeyboardLayouts.cs: Common keyboard layouts
26559         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
26560         post messages into the main queue.
26561
26562 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
26563
26564         * Button.cs: implement ProcessMnemonic
26565         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
26566           brushes everytime
26567         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
26568         * ButtonBase.cs: Show HotkeyPrefix (not the &)
26569
26570 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
26571         
26572         * MonthCalendar.cs: Implemented click-hold for next/previous month
26573           and date selection
26574           
26575 2004-12-11  Peter Bartok  <pbartok@novell.com>
26576
26577         * X11Structs.cs:
26578           - Added XKeyboardState (moved from XplatUIX11.cs)
26579           - Added XCreateGC related enums and structures
26580           - Added GXFunction for XSetFunction
26581
26582         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
26583
26584         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
26585           CaretVisible() calls
26586
26587         * ToolTip.cs: Added code to prevent stealing focus from app windows
26588
26589         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
26590           DestroyCaret, SetCaretPos and CaretVisible)
26591
26592         * XplatUIX11.cs:
26593           - Added implementation for caret functions
26594           - Moved hover variables into a struct, to make it a bit easier
26595             on the eyes and to debug
26596           - Removed XKeyboardState (moved to XplatUIX11.cs)
26597           - Moved Keyboard properties into the properties region
26598
26599         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
26600           call to get a graphics context for our control
26601
26602         * XplatUIOSX.cs: Added empty overrides for the new caret functions
26603
26604         * TreeView.cs: Fixed bug. No matter what color was set it would always
26605           return SystemColors.Window
26606
26607         * XplatUIWin32.cs: Implemented caret overrides
26608
26609 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
26610
26611         * ListBox.cs: fire events, implement missing methods and properties,
26612         sorting.
26613
26614 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
26615
26616         * MonthCalendar.cs: invalidation bug fixing
26617         * ThemeWin32Classic.cs: paint fixing
26618
26619 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
26620
26621         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
26622         prepare the CGContextRef there now.
26623
26624 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
26625
26626         * MonthCalendar.cs:
26627           - optimisationL only invalidate areas that have changed
26628         * ThemeWin32Classic.cs:
26629           - only paint parts that intersect with clip_area
26630
26631 2004-12-09  Peter Bartok  <pbartok@novell.com>
26632
26633         * Application.cs: Undid changes from r37004 which cause problems
26634         on X11
26635
26636 2004-12-09  Ravindra  <rkumar@novell.com>
26637
26638         * ToolBar.cs: Added support for displaying ContextMenu
26639         attached to a button on ToolBar.
26640         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
26641         property.
26642
26643 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
26644
26645         * Label.cs: autosize works in text change and removes unnecessary
26646         invalidate
26647
26648 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
26649
26650         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
26651         remove warnings
26652
26653 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
26654
26655         * XplatUIOSX.cs: Added mouse move/click/grab support
26656         Remove some debugging WriteLines not needed anymore.
26657         Add window resizing/positioning.
26658         Fix visibility on reparenting.
26659
26660 2004-12-08  Peter Bartok  <pbartok@novell.com>
26661
26662         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
26663
26664 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
26665
26666         * XplatUIOSX.cs: Initial checkin
26667         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
26668
26669 2004-12-03  Ravindra <rkumar@novell.com>
26670
26671         * ListView.cs: Added some keybindings and fixed scrolling.
26672         ScrollBars listen to ValueChanged event instead of Scroll
26673         Event. This would let us take care of all changes being
26674         done in the scrollbars' values programmatically or manually.
26675         * ListView.cs (CanMultiselect): Added a check for shift key.
26676         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
26677         * ListViewItem.cs (Clone): Fixed. We need to make a copy
26678         of ListViewSubItemCollection as well.
26679
26680 2004-12-06  Peter Bartok <pbartok@novell.com>
26681
26682         * Control.cs (Parent): Added check and exception to prevent
26683         circular parenting
26684
26685 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
26686
26687         * ListBox.cs: implemented clipping, selection single and multiple,
26688         bug fixing
26689
26690 2004-12-03  Ravindra <rkumar@novell.com>
26691
26692         * ListView.cs (ListView_KeyDown):
26693         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
26694         when CTRL key is pressed.
26695         * ListViewItem.cs (Selected): Fixed setting the property.
26696
26697 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
26698
26699         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
26700
26701         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
26702         MinimizeBox, ShowInTaskbar, TopMost properties.
26703
26704         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
26705         will be implemented).
26706
26707 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
26708
26709         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
26710
26711         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
26712         tests.
26713         
26714         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
26715         
26716         * TreeView.cs: BackColor is Colors.Window.
26717
26718 2004-12-01  Jackson Harper  <jackson@ximian.com>
26719
26720         * TreeView.cs: When resizing the tree if the user is making it
26721         smaller we don't get expose events, so we need to handle adding
26722         the horizontal scrollbar in the size changed handler as well as
26723         the expose handler.
26724
26725 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
26726
26727         * DrawItemState.cs: fixes wrong enum values
26728
26729 2004-12-01  Jackson Harper  <jackson@ximian.com>
26730
26731         * TreeView.cs: Resize the hbar as well as the vbar on resize.
26732
26733 2004-12-01  Jackson Harper  <jackson@ximian.com>
26734
26735         * NodeLabelEditEventArgs.cs:
26736         * NodeLabelEditEventHandler.cs:
26737         * OpenTreeNodeEnumerator.cs:
26738         * TreeNode.cs:
26739         * TreeNodeCollection.cs:
26740         * TreeView.cs:
26741         * TreeViewAction.cs:
26742         * TreeViewCancelEventArgs.cs:
26743         * TreeViewCancelEventHandler.cs:
26744         * TreeViewEventArgs.cs:
26745         * TreeViewEventHandler.cs: Initial implementation.
26746
26747 2004-12-01  Ravindra <rkumar@novell.com>
26748
26749         * ListView.cs (CalculateListView): Fixed scrolling related
26750         calculations. Also, removed some debug statements from other
26751         places.
26752         * ListViewItem.cs: Changed access to 'selected' instance variable
26753         from private to internal.
26754         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
26755
26756 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
26757
26758         * ThemeWin32Classic.cs: remove cache of brush and pens for
26759         specific controls and use the global system, fixes scrollbutton
26760         bugs (for small sizes, disabled, etc)
26761         
26762         * ScrollBar.cs: does not show the thumb for very small controls
26763         (as MS) and allow smaller buttons that the regular size
26764
26765 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
26766
26767         * UpDownBase.cs: Add abstract methods for the interface.
26768         Add new virtual methods (need to be hooked up to TextEntry when it
26769         exists).
26770         Add override methods for most features.
26771         Computes the size, forces the height of the text entry.
26772
26773         * NumericUpDown.cs: Put here the current testing code.
26774
26775         * Set eol-style property on all files that do not have mixed line
26776         endings, to minimize the future problems.  There are still a few
26777         files with mixed endings, and someone should choose whether they
26778         want to move it or not.
26779
26780 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
26781
26782         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
26783         System.Colors
26784         
26785 2004-11-30  Ravindra <rkumar@novell.com>
26786
26787         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
26788         drawing and replaced use of SystemColors by theme colors.
26789         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
26790         * ListView.cs (ListViewItemCollection.Add): Throw exception when
26791         same ListViewItem is being added more than once.
26792
26793 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
26794
26795         * MonthCalendar.cs:
26796           - ControlStyles love to make the control not flicker
26797           
26798 2004-11-30  Peter Bartok  <pbartok@novell.com>
26799
26800         * CharacterCasing.cs: Added
26801
26802 2004-11-29  Peter Bartok  <pbartok@novell.com>
26803
26804         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
26805           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
26806           I am removing these files as they conflict with already completed
26807           work. While it is fantastic to get contributions to MWF, I
26808           respectfully ask that everyone please coordinate their contributions
26809           through mono-winforms-list or #mono-winforms at this time. We're
26810           explicitly avoiding stubbing and don't want controls that don't have
26811           their basic functionality implemented in svn. Please also see
26812           http://www.mono-project.com/contributing/winforms.html
26813
26814
26815 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
26816
26817         * Application.cs (ModalRun): Don't hang after exit.
26818
26819         * Theme.cs: New TreeViewDefaultSize property.
26820
26821         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
26822         with less hardcoded SystemColors constant.
26823         Implemented TreeViewDefaultSize.
26824
26825         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
26826         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
26827
26828
26829 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
26830
26831         * MonthCalendar.cs:
26832           - Fix NextMonthDate and PrevMonthDate click moving calendar
26833
26834 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
26835
26836         * MonthCalendar.cs:
26837           - Fix usage of ScrollChange Property when scrolling months
26838
26839 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
26840
26841         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
26842          - Fixes menu destroying
26843          - Support adding and removing items on already created menus
26844
26845 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
26846
26847         * MonthCalendar.cs:
26848           - Re-worked all bolded dates handling to match win32
26849         * ThemeWin32Classic.cs:
26850           - Fixed rendering with bolded dates
26851
26852 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
26853
26854         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
26855         - Horizontal scroolbar
26856         - Multicolumn
26857         - Fixes
26858
26859
26860 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
26861
26862         * MonthCalendar.cs:
26863           - Fix Usage of MaxSelectionCount from SelectionRange
26864           - Fixed Shift + Cursor Selection
26865           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
26866           - Fixed normal cursor selection to be compat with win32
26867           - Fixed Shift + Mouse Click selection
26868
26869 2004-11-24  Peter Bartok <pbartok@novell.com>
26870
26871         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
26872         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
26873         * XplatUIX11.cs:
26874           - CreatedKeyBoardMsg now updates keystate with Alt key
26875           - Added workaround for timer crash to CheckTimers, Jackson will
26876             develop a proper fix and check in later
26877           - Implemented DispatchMessage
26878           - Removed calling the native window proc from GetMessage (call
26879             now moved to DispatchMessage)
26880
26881         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
26882           the keydata (Fixes bug #69831)
26883
26884         * XplatUIWin32.cs:
26885           - (DispatchMessage): Switched to return IntPtr
26886           - Added DllImport for SetFocus
26887
26888 2004-11-24  Ravindra <rkumar@novell.com>
26889
26890         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
26891         background drawing.
26892         * ListViewItem.cs: Fixed various properties, calculations
26893         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
26894         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
26895         and some internal properties. Fixed MouseDown handler and Paint
26896         method.
26897
26898 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
26899
26900         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
26901
26902 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
26903
26904         * ContainerControl.cs: correct accidental check in of local changes
26905
26906 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
26907
26908         * ThemeWin32Classic.cs:
26909                 - Fixed Drawing Last month in grid (sometimes not showing)
26910         * MonthCalendar.cs:
26911                 - Fixed title width calculation bug (makeing title small)
26912
26913 2004-11-23  Peter Bartok <pbartok@novell.com>
26914
26915         * XplatUIX11.cs:
26916           - Added generation of WM_MOUSEHOVER event
26917           - Added missing assignment of async_method atom
26918           - Fixed WM_ERASEBKGND; now only redraws the exposed area
26919
26920 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
26921
26922         * ThemeWin32Classic.cs:
26923                 - Fixed Drawing of today circle when showtodaycircle not set
26924                 - fixed drawing of first and last month in the grid (gay dates)
26925         * MonthCalendar.cs:
26926                 - Fixed Drawing of today circle
26927                 - Fixed drawing of grady dates
26928                 - Fixed HitTest for today link when ShowToday set to false
26929                 - Fixed DefaultSize to obey ShowToday
26930
26931 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
26932
26933         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
26934         * System.Windows.Forms/Theme.cs
26935         * MonthCalendar.cs: added for MonthCalendar
26936         * SelectionRange.cs: added for MonthCalendar
26937         * Day.cs: added for MonthCalendar: added for MonthCalendar
26938         * DateRangeEventArgs.cs: added for MonthCalendar
26939         * DateRangeEventHandler.cs: added for MonthCalendar
26940
26941 2004-11-22  Ravindra <rkumar@novell.com>
26942
26943         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
26944         property.
26945
26946 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
26947
26948         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
26949         event handler.
26950         
26951         * NumericUpDown.cs: Added new implementation.
26952         * UpDownBase.cs: Added new implementation.
26953
26954         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
26955         implementations.
26956         
26957         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
26958         implementations.
26959
26960         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
26961         methods.
26962
26963 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
26964
26965         * Timer.cs  (Dispose): Should call the base dispose when
26966         overriding.
26967
26968 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
26969
26970         * ScrollBar.cs: updates thumb position when max, min or increment
26971         is changed
26972
26973 2004-11-21  Ravindra <rkumar@novell.com>
26974
26975         * ListView.cs: Implemented item selection, activation and
26976         column header style. Fixed properties to do a redraw, if
26977         required. Added support for MouseHover, DoubleClick, KeyDown
26978         and KeyUp event handling and some minor fixes.
26979         * ListViewItem.cs: Fixed constructor.
26980         * ThemeWin32Classic.cs: Improved drawing for ListView.
26981
26982 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
26983
26984         * ThemeWin32Classic.cs: initial listbox drawing code
26985         * DrawMode.cs: new enumerator
26986         * ListControl.cs: stubbed class
26987         * ListBox.cs: initial implementation
26988         * Theme.cs: new methods definitions
26989         * SelectionMode.cs: new enumerator
26990
26991 2004-11-17  Peter Bartok  <pbartok@novell.com>
26992
26993         * XplatUIWin32.cs: Added double-click events to the class style
26994         * Control.cs (WndProc):
26995           - Added handling of click-count to MouseDown/ MouseUp events.
26996           - Added handling of middle and right mouse buttons
26997           - Removed old debug code
26998
26999 2004-11-17  Jackson Harper  <jackson@ximian.com>
27000
27001         * XplatUIX11.cs: Use the new Mono.Unix namespace.
27002
27003 2004-11-17  Ravindra <rkumar@novell.com>
27004
27005         * ListView.cs: Added event handling for MouseMove/Up/Down.
27006         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
27007         * ThemeWin32Classic.cs: We need to clear the graphics context and
27008         draw column header in a proper state.
27009
27010
27011 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
27012
27013         *  Menu.cs: fixes signature
27014
27015 2004-11-16  Peter Bartok  <pbartok@novell.com>
27016
27017         * XplatUIX11.cs (GetMessage): Implemented generation of
27018           double click mouse messages
27019
27020 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
27021
27022         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
27023         not by menu
27024
27025 2004-11-11  Peter Bartok  <pbartok@novell.com>
27026
27027         * HandleData.cs: Added Visible property
27028         * XplatUIX11.cs (IsVisible): Now uses Visible property from
27029           HandleData
27030         * XplatUIX11.cs: Removed old debug leftovers
27031         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
27032         * Control.cs (WndProc): Removed old debug leftovers,
27033           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
27034           needed WM_SIZE handling
27035
27036 2004-11-11  Jackson Harper  <jackson@ximian.com>
27037
27038         * OwnerDrawPropertyBag.cs:
27039         * TreeViewImageIndexConverter.cs: Initial implementation
27040
27041 2004-11-10  Jackson Harper  <jackson@ximian.com>
27042
27043         * ThemeWin32Classic.cs:
27044         * TabControl.cs: instead of moving tabs by the slider pos just
27045         start drawing at the tab that is offset by the slider. This way
27046         scrolling always moves by exactly one tab.
27047
27048 2004-11-10  Jackson Harper  <jackson@ximian.com>
27049
27050         * TabControl.cs: You can only scroll left when the slider has
27051         already ben moved right.
27052         
27053 2004-11-10  Jackson Harper  <jackson@ximian.com>
27054
27055         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
27056         the clip area.
27057         
27058 2004-11-10  Jackson Harper  <jackson@ximian.com>
27059
27060         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
27061         clip area.
27062         
27063 2004-11-09  Jackson Harper  <jackson@ximian.com>
27064
27065         * TabControl.cs (CalcXPos): New helper method so we can determine
27066         the proper place to start drawing vertical tabs.
27067         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
27068         
27069 2004-11-09  Jackson Harper  <jackson@ximian.com>
27070
27071         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
27072         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
27073         and Bottom, left and right are illegal values for this and
27074         multiline is enabled when the alignment is set to left or right.
27075         (DrawTab): Each alignment block should draw the text itself now
27076         because Left requires special love. Also add rendering for Left
27077         aligned tabs.
27078         
27079 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
27080
27081         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
27082         does not destroy the windows, removes debugging messages
27083
27084 2004-11-09  jba  <jba-mono@optusnet.com.au>
27085
27086         * ThemeWin32Classic.cs
27087         (DrawButtonBase): Fix verticle text rect clipping in windows
27088         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
27089         rendering and incorrect text rect clipping
27090         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
27091         rendering and incorrect text rect clipping
27092         
27093 2004-11-08  Jackson Harper  <jackson@ximian.com>
27094
27095         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
27096         bottom when they are bottom aligned so the bottoms of the tabs get
27097         displayed.
27098         * TabControl.cs (DropRow): Move rows up instead of down when the
27099         tab control is bottom aligned.
27100
27101 2004-11-08 13:59  pbartok
27102
27103         * XplatUIX11.cs:
27104           - Added handling for various window styles
27105           - Added handling for popup windows
27106           - Added SetTopmost handling
27107
27108 2004-11-08 13:55  pbartok
27109
27110         * XplatUIWin32.cs:
27111           - Added argument to SetTopmost method
27112           - Fixed broken ClientToScreen function
27113
27114 2004-11-08 13:53  pbartok
27115
27116         * XplatUIStructs.cs:
27117           - Added missing WS_EX styles
27118
27119 2004-11-08 13:53  pbartok
27120
27121         * XplatUI.cs, XplatUIDriver.cs:
27122           - Added argument to SetTopmost
27123
27124 2004-11-08 13:52  pbartok
27125
27126         * X11Structs.cs:
27127           - Added XSetWindowAttributes structure
27128           - Improved XWindowAttributes structure
27129           - Added SetWindowValuemask enum
27130           - Added window creation arguments enum
27131           - Added gravity enum
27132           - Added Motif hints structure
27133           - Added various Motif flags and enums
27134           - Added PropertyMode enum for property functions
27135
27136 2004-11-08 13:50  pbartok
27137
27138         * Form.cs:
27139           - Fixed arguments for updated SetTopmost method
27140
27141 2004-11-08 13:49  pbartok
27142
27143         * ToolTip.cs:
27144           - Fixed arguments for updated SetTopmost function
27145           - Fixed usage of PointToClient
27146
27147 2004-11-08 13:44  pbartok
27148
27149         * MenuAPI.cs:
27150           - Added Clipping of children and siblings
27151
27152 2004-11-08 13:41  pbartok
27153
27154         * MainMenu.cs:
27155           - Removed SetMenuBarWindow call. We do this in Form.cs
27156
27157 2004-11-08 13:40  jackson
27158
27159         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
27160           scrolling jimmi in the correct location with bottom aligned tabs
27161
27162 2004-11-08 13:36  pbartok
27163
27164         * ContainerControl.cs:
27165           - Implemented BindingContext
27166           - Implemented ParentForm
27167
27168 2004-11-08 12:46  jackson
27169
27170         * TabControl.cs: Put bottom rendered tabs in the right location
27171
27172 2004-11-08 07:15  jordi
27173
27174         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
27175           removes dead code
27176
27177 2004-11-05 17:30  jackson
27178
27179         * TabControl.cs: When selected tabs are expanded make sure they
27180           don't go beyond the edges of the tab control
27181
27182 2004-11-05 14:57  jackson
27183
27184         * TabControl.cs: Reset show_slider so if the control is resized to
27185           a size where it is no longer needed it's not displayed anymore
27186
27187 2004-11-05 13:16  jackson
27188
27189         * TabControl.cs: Make tab pages non visible when added to the
27190           control
27191
27192 2004-11-05 12:42  jackson
27193
27194         * TabControl.cs: Implement SizeMode.FillToRight
27195
27196 2004-11-05 12:16  jackson
27197
27198         * Control.cs: Do not call CreateHandle if the handle is already
27199           created
27200
27201 2004-11-05 11:46  jackson
27202
27203         * TabControl.cs: Remove superflous call to CalcTabRows
27204
27205 2004-11-05 09:07  jackson
27206
27207         * XplatUIX11.cs: Update for Mono.Posix changes
27208
27209 2004-11-05 07:00  ravindra
27210
27211         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
27212           scrolling.
27213
27214 2004-11-04 22:47  jba
27215
27216         * ThemeWin32Classic.cs:
27217           - Fix Button rendering for FlatStyle = Flat or Popup
27218           - Fix RadioButton and CheckBox rendering when Appearance = Button
27219             (normal and flatstyle).
27220           - Correct outer rectangle color when drawing focus rectangle
27221           - Adjust button bounds to be 1 px smaller when focused
27222           - Make button not draw sunken 3d border when pushed (windows compat)
27223           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
27224           - Offset the text in RadioButton and Checkbox when being rendered as
27225           a button.
27226           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
27227           radiobuttons
27228           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
27229           - Fixed disabled text rendering for normally rendered radiobuttons
27230
27231 2004-11-04 10:26  jackson
27232
27233         * TabControl.cs: Recalculate tab rows when resizing
27234
27235 2004-11-04 07:47  jordi
27236
27237         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
27238           collection completion, drawing issues, missing features
27239
27240 2004-11-04 05:03  ravindra
27241
27242         * ScrollBar.cs:
27243                 - We need to recalculate the Thumb area when
27244                 LargeChange/maximum/minimum values are changed.
27245           - We set the 'pos' in UpdatePos() method to minimum, if it's less
27246                 than minimum. This is required to handle the case if large_change is
27247                 more than max, and use LargeChange property instead of large_change
27248                 variable.
27249           - We return max+1 when large_change is more than max, like MS does.
27250
27251 2004-11-04 04:29  ravindra
27252
27253         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
27254                 - Changed default value signatures (prefixed all with ListView).
27255                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
27256                 ListView.
27257           - Fixed calculations for ListViewItem and implemented Clone()
27258           method.
27259
27260 2004-11-04 04:26  ravindra
27261
27262         * Theme.cs, ThemeWin32Classic.cs:
27263                 - Changed default ListView values signatures (prefixed all with
27264                 ListView).
27265           - Fixed default size values for VScrollBar and HScrollBar.
27266                 - Fixed DrawListViewItem method.
27267
27268 2004-11-04 04:05  ravindra
27269
27270         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
27271
27272 2004-11-04 04:04  ravindra
27273
27274         * ImageList.cs: Implemented the missing overload for Draw method.
27275
27276 2004-11-03 19:29  jackson
27277
27278         * TabControl.cs: Handle dropping rows on selection properly
27279
27280 2004-11-03 11:59  jackson
27281
27282         * TabControl.cs: remove debug code
27283
27284 2004-11-03 11:52  jackson
27285
27286         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
27287           the scrolly widgerywoo
27288
27289 2004-11-02 13:52  jackson
27290
27291         * TabControl.cs: Resize the tab pages and tabs when the tab control
27292           is resized
27293
27294 2004-11-02 13:40  jackson
27295
27296         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
27297           selected tab to the bottom
27298
27299 2004-11-02 13:39  jackson
27300
27301         * TabPage.cs: Store the tab pages row
27302
27303 2004-11-02 12:33  jordi
27304
27305         * MenuItem.cs: fixes handle creation
27306
27307 2004-11-02 11:42  jackson
27308
27309         * TabControl.cs: signature fix
27310
27311 2004-11-02 08:56  jackson
27312
27313         * TabControl.cs: Calculate whether the tab is on an edge properly.
27314           Remove top secret debugging code
27315
27316 2004-11-01 19:57  jackson
27317
27318         * TabControl.cs: Add click handling, and proper sizing
27319
27320 2004-11-01 19:47  jackson
27321
27322         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
27323           tab controls
27324
27325 2004-11-01 19:39  jackson
27326
27327         * TabPage.cs: add internal property to store the bounds of a tab
27328           page
27329
27330 2004-10-30 04:23  ravindra
27331
27332         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
27333           values.
27334
27335 2004-10-30 04:21  ravindra
27336
27337         * ListView.cs, ListViewItem.cs: Added support for scrolling and
27338           fixed calculations.
27339
27340 2004-10-30 03:06  pbartok
27341
27342         * XplatUIX11.cs:
27343           - Removed extension of DllImported libs
27344
27345 2004-10-29 09:55  jordi
27346
27347         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
27348           navigation, itemcollection completion, menu fixes
27349
27350 2004-10-27 22:58  pbartok
27351
27352         * XplatUIX11.cs:
27353           - Now throws a nice error message when no X display could be opened
27354
27355 2004-10-26 13:51  jordi
27356
27357         * ListView.cs: removes warning
27358
27359 2004-10-26 03:55  ravindra
27360
27361         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
27362           ThemeWin32Classic.cs: Some formatting for my last checkins.
27363
27364 2004-10-26 03:36  ravindra
27365
27366         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
27367           control and default values.
27368
27369 2004-10-26 03:35  ravindra
27370
27371         * Theme.cs: Added some default values for ListView control.
27372
27373 2004-10-26 03:33  ravindra
27374
27375         * ToolBar.cs: ToolBar should use the user specified button size, if
27376           there is any. Added a size_specified flag for the same.
27377
27378 2004-10-26 03:33  ravindra
27379
27380         * ColumnHeader.cs: Added some internal members and calculations for
27381           ColumnHeader.
27382
27383 2004-10-26 03:32  ravindra
27384
27385         * ListViewItem.cs: Calculations for ListViewItem.
27386
27387 2004-10-26 03:31  ravindra
27388
27389         * ListView.cs: Added some internal members and calculations for
27390           ListView.
27391
27392 2004-10-22 13:31  jordi
27393
27394         * MenuAPI.cs: speedup menus drawing
27395
27396 2004-10-22 13:16  jackson
27397
27398         * XplatUIX11.cs: Make sure to update exposed regions when adding an
27399           expose event
27400
27401 2004-10-22 11:49  jackson
27402
27403         * Control.cs: oops
27404
27405 2004-10-22 11:41  jackson
27406
27407         * Control.cs: Check to see if the window should have its background
27408           repainted by X when drawing.
27409
27410 2004-10-22 11:31  jackson
27411
27412         * XplatUIX11.cs: When invalidating areas only use XClearArea if
27413           clear is true, this way we do not get flicker from X repainting the
27414           background
27415
27416 2004-10-22 11:28  jackson
27417
27418         * XEventQueue.cs: Queue properly
27419
27420 2004-10-21 09:38  jackson
27421
27422         * XEventQueue.cs: Fix access modifier
27423
27424 2004-10-21 09:36  jackson
27425
27426         * XEventQueue.cs: Don't loose messages
27427
27428 2004-10-21 09:22  jackson
27429
27430         * XEventQueue.cs: Don't loose messages
27431
27432 2004-10-20 04:15  jordi
27433
27434         * BootMode.cs: enum need it by SystemInfo
27435
27436 2004-10-19 21:58  pbartok
27437
27438         * XplatUIWin32.cs:
27439           - Small sanity check
27440
27441 2004-10-19 21:56  pbartok
27442
27443         * Form.cs:
27444           - Added private FormParentWindow class which acts as the container
27445             for our form and as the non-client area where menus are drawn
27446           - Added/Moved required tie-ins to Jordi's menus
27447           - Fixed/Implemented the FormStartPosition functionality
27448
27449 2004-10-19 21:52  pbartok
27450
27451         * Control.cs:
27452           - Removed unneeded locals
27453           - Added code to all size and location properties to understand and
27454             deal with the parent container of Form
27455
27456 2004-10-19 21:33  pbartok
27457
27458         * Application.cs:
27459           - Fixed to deal with new Form subclasses for menus
27460
27461 2004-10-19 17:48  jackson
27462
27463         * XEventQueue.cs: commit correct version of file
27464
27465 2004-10-19 16:50  jackson
27466
27467         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
27468
27469 2004-10-19 16:15  jordi
27470
27471         * MenuAPI.cs: MenuBarCalcSize returns the height
27472
27473 2004-10-19 08:31  pbartok
27474
27475         * Control.cs:
27476           - Added missing call to PreProcessMessage before calling OnXXXKey
27477           methods
27478
27479 2004-10-19 00:04  ravindra
27480
27481         * ToolTip.cs: Fixed constructor.
27482
27483 2004-10-18 09:31  jordi
27484
27485         * MenuAPI.cs: menuitems in menubars do not have shortcuts
27486
27487 2004-10-18 09:26  jordi
27488
27489         * MenuItem.cs: fixes MenuItem class signature
27490
27491 2004-10-18 08:56  jordi
27492
27493         * MenuAPI.cs: prevents windows from showing in the taskbar
27494
27495 2004-10-18 00:28  ravindra
27496
27497         * ToolTip.cs: Suppressed a warning message.
27498
27499 2004-10-18 00:27  ravindra
27500
27501         * Control.cs: Default value of visible property must be true.
27502
27503 2004-10-17 23:19  pbartok
27504
27505         * ToolTip.cs:
27506           - Complete implementation
27507
27508 2004-10-17 23:19  pbartok
27509
27510         * XplatUIX11.cs:
27511           - Added EnableWindow method
27512           - Added SetModal stub
27513           - Added generation of WM_ACTIVATE message (still needs testing)
27514           - Added SetTopMost stub
27515           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
27516
27517 2004-10-17 23:17  pbartok
27518
27519         * XplatUIWin32.cs:
27520           - Removed VirtualKeys to XplatUIStructs
27521           - Implemented SetTopMost method
27522           - Implemented EnableWindow method
27523           - Bugfix in ScreenToClient()
27524           - Bugfixes in ClientToScreen()
27525
27526 2004-10-17 22:51  pbartok
27527
27528         * XplatUIStructs.cs:
27529           - Added WS_EX styles to WindowStyles enumeration
27530
27531 2004-10-17 22:50  pbartok
27532
27533         * XplatUI.cs, XplatUIDriver.cs:
27534           - Added method for enabling/disabling windows
27535           - Added method for setting window modality
27536           - Added method for setting topmost window
27537
27538 2004-10-17 22:49  pbartok
27539
27540         * ThemeWin32Classic.cs:
27541           - Added ToolTip drawing code
27542
27543 2004-10-17 22:49  pbartok
27544
27545         * Theme.cs:
27546           - Added ToolTip abstracts
27547
27548 2004-10-17 22:47  pbartok
27549
27550         * Form.cs:
27551           - Fixed Form.ControlCollection to handle owner relations
27552           - Added Owner/OwnedForms handling
27553           - Implemented Z-Ordering for owned forms
27554           - Removed unneeded private overload of ShowDialog
27555           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
27556             so I hope)
27557           - Fixed Close(), had wrong default
27558           - Added firing of OnLoad event
27559           - Added some commented out debug code for Ownership handling
27560
27561 2004-10-17 22:16  pbartok
27562
27563         * Control.cs:
27564           - Fixed/implemented flat list of controls
27565
27566 2004-10-17 22:14  pbartok
27567
27568         * Application.cs:
27569           - Added code to simulate modal dialogs on Win32
27570
27571 2004-10-17 16:11  jordi
27572
27573         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
27574           mouse event
27575
27576 2004-10-17 13:39  jordi
27577
27578         * MenuAPI.cs: menu drawing fixes
27579
27580 2004-10-15 09:10  ravindra
27581
27582         * StructFormat.cs: General Enum.
27583
27584 2004-10-15 09:09  ravindra
27585
27586         * SizeGripStyle.cs: Enum for Form.
27587
27588 2004-10-15 09:08  ravindra
27589
27590         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
27591           in Theme for ListView.
27592
27593 2004-10-15 09:06  ravindra
27594
27595         * ColumnHeader.cs: Flushing some formatting changes.
27596
27597 2004-10-15 09:05  ravindra
27598
27599         * ListViewItem.cs: Implemented GetBounds method and fixed coding
27600           style.
27601
27602 2004-10-15 09:03  ravindra
27603
27604         * ListView.cs: Implemented Paint method and fixed coding style.
27605
27606 2004-10-15 07:34  jordi
27607
27608         * MenuAPI.cs: fix for X11
27609
27610 2004-10-15 07:32  ravindra
27611
27612         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
27613                 - Renamed Paint() method to Draw() for clarity. Also, moved
27614                 DrawImage() to OnPaint().
27615
27616 2004-10-15 07:25  ravindra
27617
27618         * CheckBox.cs, RadioButton.cs:
27619                 - Removed Redraw (), we get it from ButtonBase.
27620                 - Implemented Paint (), to do class specific painting.
27621
27622 2004-10-15 07:16  ravindra
27623
27624         * ButtonBase.cs:
27625                 - Redraw () is not virtual now.
27626                 - Added an internal virtual method Paint (), so that
27627                 derived classes can do their painting on their own.
27628                 - Modified OnPaint () to call Paint ().
27629
27630 2004-10-15 06:43  jordi
27631
27632         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
27633           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
27634
27635 2004-10-15 00:30  ravindra
27636
27637         * MessageBox.cs:
27638                 - MessageBox on windows does not have min/max buttons.
27639                 This change in CreateParams fixes this on Windows. We
27640                 still need to implement this windowstyle behavior in
27641                 our X11 driver.
27642
27643 2004-10-14 05:14  ravindra
27644
27645         * ToolBar.cs:
27646                 - Changed Redraw () to do a Refresh () always.
27647                 - Fixed the MouseMove event handling when mouse is pressed,
27648                 ie drag event handling.
27649                 - Replaced the usage of ToolBarButton.Pressed property to
27650                 ToolBarButton.pressed internal variable.
27651
27652 2004-10-14 05:10  ravindra
27653
27654         * ToolBarButton.cs:
27655                 - Added an internal member 'inside' to handle mouse move
27656                 with mouse pressed ie mouse drag event.
27657                 - Changed 'Pressed' property to return true only when
27658                 'inside' and 'pressed' are both true.
27659                 - Some coding style love.
27660
27661 2004-10-14 00:17  ravindra
27662
27663         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
27664           public method.
27665
27666 2004-10-14 00:15  ravindra
27667
27668         * ButtonBase.cs: Redraw () related improvements.
27669
27670 2004-10-14 00:14  ravindra
27671
27672         * MessageBox.cs: Moved InitFormSize () out of Paint method and
27673           removed unnecessary calls to Button.Show () method.
27674
27675 2004-10-13 17:50  pbartok
27676
27677         * XplatUIX11.cs:
27678           - Formatting fix
27679           - Removed destroying of window until we solve the problem of X
27680             destroying the window before us on shutdown
27681
27682 2004-10-13 16:32  pbartok
27683
27684         * ButtonBase.cs:
27685           - Now Redraws on MouseUp for FlatStyle Flat and Popup
27686
27687 2004-10-13 14:18  pbartok
27688
27689         * XplatUIX11.cs:
27690           - Added code to destroy the X window
27691
27692 2004-10-13 14:18  pbartok
27693
27694         * XplatUIWin32.cs:
27695           - Added code to destroy a window
27696
27697 2004-10-13 14:12  pbartok
27698
27699         * ButtonBase.cs:
27700           - Added the Redraw on Resize that got dropped in the last rev
27701
27702 2004-10-13 09:06  pbartok
27703
27704         * ThemeWin32Classic.cs:
27705           - Path from John BouAntoun:
27706             * Fix check rendering (centre correctly for normal style, offset
27707               correctly for FlatStyle).
27708             * Fix border color usage (use backcolor) for FlatStyle.Popup
27709             * Use checkbox.Capture instead of checkbox.is_pressed when
27710               rendering flatstyle states.
27711
27712 2004-10-12 21:48  pbartok
27713
27714         * ThemeWin32Classic.cs:
27715           - Removed all occurences of SystemColors and replaced them with the
27716             matching theme color
27717
27718 2004-10-12 21:41  pbartok
27719
27720         * ThemeWin32Classic.cs:
27721           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
27722             him using the function for flatstyle drawing
27723           - Changed functions to use the new version of CPDrawBorder3D
27724
27725 2004-10-12 21:15  pbartok
27726
27727         * ControlPaint.cs:
27728           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
27729             match MS documentation. They need to return defined colors if the
27730             passed color matches the configured control color. Thanks to John
27731             BouAntoun for pointing this out.
27732
27733 2004-10-12 20:57  pbartok
27734
27735         * Control.cs:
27736           - Fix from John BouAntoun: Raise ForeColorChanged event when text
27737             color is changed
27738
27739 2004-10-12 20:46  pbartok
27740
27741         * CheckBox.cs:
27742           - Fix from John BouAntoun: Now properly sets the Appearance property
27743
27744 2004-10-12 20:45  pbartok
27745
27746         * ThemeWin32Classic.cs:
27747           - Fixes from John BouAntoun: now handles forecolors and backcolors
27748             for flatstyle rendered controls much better; It also fixes normal
27749             checkbox rendering when pushed or disabled.
27750
27751 2004-10-08 02:50  jordi
27752
27753         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
27754           work
27755
27756 2004-10-07 08:56  jordi
27757
27758         * ThemeWin32Classic.cs: Removes deletion of cached brushes
27759
27760 2004-10-06 03:59  jordi
27761
27762         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
27763           XplatUIWin32.cs: removes warnings from compilation
27764
27765 2004-10-05 12:23  jackson
27766
27767         * RadioButton.cs: Fix ctor
27768
27769 2004-10-05 11:10  pbartok
27770
27771         * MessageBox.cs:
27772           - Partial implementation by Benjamin Dasnois
27773
27774 2004-10-05 10:15  jackson
27775
27776         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
27777           by John BouAntoun
27778
27779 2004-10-05 03:07  ravindra
27780
27781         * ToolBar.cs:
27782                 - Removed a private method, Draw ().
27783                 - Fixed the ButtonDropDown event handling.
27784                 - Fixed MouseMove event handling.
27785
27786 2004-10-05 03:04  ravindra
27787
27788         * ThemeWin32Classic.cs:
27789                 - Added DrawListView method and ListViewDefaultSize property.
27790                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
27791                 - Changed DOS style CRLF to Unix format (dos2unix).
27792
27793 2004-10-05 03:03  ravindra
27794
27795         * Theme.cs:
27796                 - Added DrawListView method and ListViewDefaultSize property.
27797
27798 2004-10-05 02:42  ravindra
27799
27800         * ToolBarButton.cs: Added an internal member dd_pressed to handle
27801           clicks on DropDown arrow.
27802
27803 2004-10-04 22:56  jackson
27804
27805         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
27806           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
27807           Control handle the buffers, derived classes should not have to
27808           CreateBuffers themselves.
27809
27810 2004-10-04 21:20  jackson
27811
27812         * StatusBar.cs: The control handles resizing the buffers now.
27813
27814 2004-10-04 21:18  jackson
27815
27816         * Control.cs: When resizing the buffers should be invalidated. This
27817           should be handled in Control not in derived classes.
27818
27819 2004-10-04 14:45  jackson
27820
27821         * TabPage.cs: oops
27822
27823 2004-10-04 02:14  pbartok
27824
27825         * LeftRightAlignment.cs:
27826           - Initial check-in
27827
27828 2004-10-04 01:09  jordi
27829
27830         * ThemeWin32Classic.cs: fixes right button position causing right
27831           button not showing on horizontal scrollbars
27832
27833 2004-10-02 13:12  pbartok
27834
27835         * XplatUIX11.cs:
27836           - Simplified the Invalidate method by using an X call instead of
27837             generating the expose ourselves
27838           - Added an expose when the window background is changed
27839           - Implemented ClientToScreen method
27840
27841 2004-10-02 13:08  pbartok
27842
27843         * XplatUIWin32.cs:
27844           - Added Win32EnableWindow method (test for implementing modal
27845           dialogs)
27846           - Added ClientToScreen method and imports
27847
27848 2004-10-02 13:07  pbartok
27849
27850         * XplatUI.cs, XplatUIDriver.cs:
27851           - Added ClientToScreen coordinate translation method
27852
27853 2004-10-02 13:06  pbartok
27854
27855         * KeyPressEventArgs.cs:
27856           - Fixed access level for constructor
27857
27858 2004-10-02 13:06  pbartok
27859
27860         * NativeWindow.cs:
27861           - Changed access level for the window_collection hash table
27862
27863 2004-10-02 13:05  pbartok
27864
27865         * Form.cs:
27866           - Added KeyPreview property
27867           - Added Menu property (still incomplete, pending Jordi's menu work)
27868           - Implemented ProcessCmdKey
27869           - Implemented ProcessDialogKey
27870           - Implemented ProcessKeyPreview
27871
27872 2004-10-02 13:02  pbartok
27873
27874         * Control.cs:
27875           - Added private method to get the Control object from the window
27876           handle
27877           - Implemented ContextMenu property
27878           - Implemented PointToScreen
27879           - Implemented PreProcessMessage
27880           - Implemented IsInputChar
27881           - Implemented IsInputKey
27882           - Implemented ProcessCmdKey
27883           - Completed ProcessKeyEventArgs
27884           - Fixed message loop to call the proper chain of functions on key
27885           events
27886           - Implemented ProcessDialogChar
27887           - Implemented ProcessDialogKey
27888           - Implemented ProcessKeyMessage
27889           - Implemented ProcessKeyPreview
27890           - Added RaiseDragEvent stub (MS internal method)
27891           - Added RaiseKeyEvent stub (MS internal method)
27892           - Added RaiseMouseEvent stub (MS Internal method)
27893           - Added RaisePaintEvent stub (MS Internal method)
27894           - Added ResetMouseEventArgs stub (MS Internal method)
27895           - Implemented RtlTranslateAlignment
27896           - Implemented RtlTranslateContent
27897           - Implemented RtlTranslateHorizontal
27898           - Implemented RtlTranslateLeftRight
27899           - Added generation of KeyPress event
27900
27901 2004-10-02 05:57  ravindra
27902
27903         * ListViewItem.cs: Added attributes.
27904
27905 2004-10-02 05:32  ravindra
27906
27907         * ListView.cs: Added attributes.
27908
27909 2004-10-01 11:53  jackson
27910
27911         * Form.cs: Implement the Close method so work on MessageBox can
27912           continue.
27913
27914 2004-09-30 14:06  pbartok
27915
27916         * XplatUIX11.cs:
27917           - Bug fixes
27918
27919 2004-09-30 11:34  jackson
27920
27921         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
27922
27923 2004-09-30 07:26  ravindra
27924
27925         * ListViewItemConverter.cs: Converter for ListViewItem.
27926
27927 2004-09-30 07:26  ravindra
27928
27929         * SortOrder.cs: Enum for ListView control.
27930
27931 2004-09-30 07:25  ravindra
27932
27933         * ColumnHeader.cs: Supporting class for ListView control.
27934
27935 2004-09-30 07:24  ravindra
27936
27937         * ListView.cs, ListViewItem.cs: Initial implementation.
27938
27939 2004-09-30 07:20  ravindra
27940
27941         * ItemActivation.cs: Enum for ListView Control.
27942
27943 2004-09-29 20:29  pbartok
27944
27945         * XplatUIX11.cs:
27946           - Added lookup of pixel value for background color; tries to get a
27947             color 'close' to the requested color, it avoids having to create a
27948             colormap.  Depending on the display this could mean the used color
27949             is slightly off the desired color. Might have to change it to a more
27950             resource intensive colormap approach, but it will work as a
27951           workaround to avoid red screens.
27952
27953 2004-09-29 14:27  jackson
27954
27955         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
27956
27957 2004-09-28 12:44  pbartok
27958
27959         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
27960           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
27961           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
27962           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
27963           TrackBar.cs, VScrollBar.cs:
27964           - Streamlined Theme interfaces:
27965             * Each DrawXXX method for a control now is passed the object for
27966               the control to be drawn in order to allow accessing any state the
27967               theme might require
27968
27969             * ControlPaint methods for the theme now have a CP prefix to avoid
27970               name clashes with the Draw methods for controls
27971
27972             * Every control now retrieves it's DefaultSize from the current
27973             theme
27974
27975 2004-09-28 12:17  jackson
27976
27977         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
27978           drawing
27979
27980 2004-09-24 14:57  jackson
27981
27982         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
27983           Gives us a nice little performance boost.
27984
27985 2004-09-24 12:02  jackson
27986
27987         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
27988           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
27989           Control and supporting classes. Initial checkin
27990
27991 2004-09-23 13:08  jackson
27992
27993         * Form.cs: Temp build fixage
27994
27995 2004-09-23 01:39  ravindra
27996
27997         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
27998           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
27999           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
28000           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
28001           EventHandlers needed by ListView Control.
28002
28003 2004-09-22 14:12  pbartok
28004
28005         * ScrollableControl.cs:
28006           - Implemented DockPadding property
28007           - Implemented AutoScroll property
28008           - Implemented AutoScrollMargin property
28009           - Implemented AutoScrollMinSize property
28010           - Implemented AutoScrollPosition property
28011           - Implemented DisplayRectangle property (still incomplete)
28012           - Implemented CreateParams property
28013           - Implemented HScroll property
28014           - Implemented VScroll property
28015           - Implemented OnVisibleChanged property
28016
28017 2004-09-22 14:09  pbartok
28018
28019         * Form.cs:
28020           - Added Form.ControllCollection class
28021           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
28022             RemoveOwnedForm (still incomplete, missing on-top and common
28023             minimize/maximize behaviour)
28024           - Added StartPosition property (still incomplete, does not use when
28025             creating the form)
28026           - Added ShowDialog() methods (still incomplete, missing forcing the
28027             dialog modal)
28028
28029 2004-09-22 14:05  pbartok
28030
28031         * Application.cs:
28032           - Added message loop for modal dialogs
28033
28034 2004-09-22 14:02  pbartok
28035
28036         * GroupBox.cs:
28037           - Fixed wrong types for events
28038
28039 2004-09-22 14:00  pbartok
28040
28041         * Shortcut.cs, FormWindowState.cs:
28042           - Fixed wrong values
28043
28044 2004-09-22 12:01  jackson
28045
28046         * Control.cs: Text is never null
28047
28048 2004-09-20 22:14  pbartok
28049
28050         * XplatUIWin32.cs:
28051           - Fixed accessibility level for Idle handler
28052
28053 2004-09-20 18:54  jackson
28054
28055         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28056           XplatUIX11.cs: New message loop that uses poll so we don't get a
28057           busy loop
28058
28059 2004-09-17 10:43  pbartok
28060
28061         * ScrollBar.cs:
28062           - Fixed behaviour of arrow buttons. Now properly behaves like
28063             Buttons (and like Microsoft's scrollbar arrow buttons)
28064
28065 2004-09-17 10:14  pbartok
28066
28067         * ScrollBar.cs:
28068           - Added missing release of keyboard/mouse capture
28069
28070 2004-09-17 06:18  jordi
28071
28072         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
28073           Theme.cs: Very early menu support
28074
28075 2004-09-16 17:45  pbartok
28076
28077         * XplatUIWin32.cs:
28078           - Fixed sending a window to the front
28079           - Added overload for SetWindowPos to avoid casting
28080
28081 2004-09-16 17:44  pbartok
28082
28083         * Control.cs:
28084           - Added SendToBack and BringToFront methods
28085
28086 2004-09-16 07:00  ravindra
28087
28088         * Copyright: Added Novell URL.
28089
28090 2004-09-16 07:00  ravindra
28091
28092         * ToolBar.cs: Invalidate should be done before redrawing.
28093
28094 2004-09-15 21:19  ravindra
28095
28096         * ColumnHeaderStyle.cs: Enum for ListView Control.
28097
28098 2004-09-15 21:18  ravindra
28099
28100         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
28101           ListView Control.
28102
28103 2004-09-13 18:26  jackson
28104
28105         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
28106           properly
28107
28108 2004-09-13 18:13  jackson
28109
28110         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
28111           a second thread and post messages into the main threads message
28112           queue. This makes timing much more consistent. Both win2K and XP
28113           have a minimum timer value of 15 milliseconds, so we now do this
28114           too.
28115
28116 2004-09-13 15:18  pbartok
28117
28118         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28119           XplatUIX11.cs:
28120           - Added Z-Ordering methods
28121
28122 2004-09-13 10:56  pbartok
28123
28124         * Form.cs:
28125           - Fixed #region names
28126           - Moved properties and methods into their proper #regions
28127
28128 2004-09-13 10:51  pbartok
28129
28130         * Form.cs:
28131           - Added Accept and CancelButton properties
28132           - Added ProcessDialogKey() method
28133
28134 2004-09-13 08:18  pbartok
28135
28136         * IWindowTarget.cs:
28137           - Initial check-in
28138
28139 2004-09-10 21:50  pbartok
28140
28141         * Control.cs:
28142           - Added DoDragDrop() [incomplete]
28143           - Properly implemented 'Visible' handling
28144           - Added SetVisibleCore()
28145           - Implemented FindChildAtPoint()
28146           - Implemented GetContainerControl()
28147           - Implemented Hide()
28148
28149 2004-09-10 19:28  pbartok
28150
28151         * Control.cs:
28152           - Moved methods into their appropriate #regions
28153           - Reordered methods within regions alphabetically
28154
28155 2004-09-10 18:57  pbartok
28156
28157         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
28158           - Added method to retrieve text from window
28159
28160 2004-09-10 18:56  pbartok
28161
28162         * Control.cs:
28163           - Moved some internal functions into the internal region
28164           - Implemented FontHeight
28165           - Implemented RenderRightToLeft
28166           - Implemented ResizeRedraw
28167           - Implemented ShowFocusCues
28168           - Implemented ShowKeyboardCues
28169           - Implemented FromChildHandle
28170           - Implemented FromHandle
28171           - Implemented IsMnemonic
28172           - Implemented ReflectMessage
28173           - All public and protected Static Methods are now complete
28174
28175 2004-09-10 16:54  pbartok
28176
28177         * Control.cs:
28178           - Implemented remaining missing public instance properties
28179           - Alphabetized some out of order properties
28180
28181 2004-09-10 05:51  ravindra
28182
28183         * PictureBox.cs: Added a check for null image.
28184
28185 2004-09-10 00:59  jordi
28186
28187         * GroupBox.cs: remove cvs tag
28188
28189 2004-09-09 05:25  ravindra
28190
28191         * ToolBar.cs: Make redraw accessible from ToolBarButton.
28192
28193 2004-09-09 05:23  ravindra
28194
28195         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
28196           parent redraw.
28197
28198 2004-09-09 02:28  pbartok
28199
28200         * ThemeWin32Classic.cs:
28201           - Improve disabled string look
28202
28203 2004-09-09 01:15  jordi
28204
28205         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
28206           args and handler
28207
28208 2004-09-08 23:56  ravindra
28209
28210         * ItemBoundsPortion.cs: It's enum, not a class!
28211
28212 2004-09-08 23:47  ravindra
28213
28214         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
28215           Enums for Form.
28216
28217 2004-09-08 21:13  ravindra
28218
28219         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
28220           ListView control.
28221
28222 2004-09-08 21:03  ravindra
28223
28224         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
28225           avoid crash.
28226
28227 2004-09-08 21:01  ravindra
28228
28229         * ScrollableControl.cs: Removed unreachable code.
28230
28231 2004-09-08 06:45  jordi
28232
28233         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
28234
28235 2004-09-08 01:00  jackson
28236
28237         * XplatUIX11.cs: Only run the timers when updating the message
28238           queue. This effectively gives X messages a higher priority then
28239           timer messages. Timers still need love though
28240
28241 2004-09-07 14:01  jackson
28242
28243         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
28244           this for us and the handle is no longer valid.
28245
28246 2004-09-07 13:59  jackson
28247
28248         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
28249           loop that manages to not crash. TODO: Add poll and cleanup timers
28250
28251 2004-09-07 11:12  jordi
28252
28253         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
28254
28255 2004-09-07 03:40  jordi
28256
28257         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
28258           fixes, methods, multiple links
28259
28260 2004-09-06 06:55  jordi
28261
28262         * Control.cs: Caches ClientRectangle rectangle value
28263
28264 2004-09-05 02:03  jordi
28265
28266         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
28267           certain situations
28268
28269 2004-09-04 11:10  jordi
28270
28271         * Label.cs: Refresh when font changed
28272
28273 2004-09-02 16:24  pbartok
28274
28275         * Control.cs:
28276           - Added sanity check to creation of double buffer bitmap
28277
28278 2004-09-02 16:24  pbartok
28279
28280         * ButtonBase.cs:
28281           - Fixed selection of text color
28282           - Fixed handling of resize event; now properly recreates double
28283             buffering bitmap
28284           - Added missing assignment of TextAlignment
28285           - Added proper default for TextAlignment
28286
28287 2004-09-02 14:26  pbartok
28288
28289         * RadioButton.cs:
28290           - Added missing RadioButton.RadioButtonAccessibleObject class
28291
28292 2004-09-02 14:26  pbartok
28293
28294         * Control.cs:
28295           - Added missing Control.ControlAccessibleObject class
28296           - Started to implement Select()ion mechanisms, still very incomplete
28297
28298 2004-09-02 14:25  pbartok
28299
28300         * AccessibleObject.cs:
28301           - Added missing methods
28302
28303 2004-09-02 14:23  pbartok
28304
28305         * AccessibleNavigation.cs, AccessibleSelection.cs:
28306           - Initial check-in
28307
28308 2004-09-02 10:32  jordi
28309
28310         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
28311           pool for pens, brushes, and hatchbruses
28312
28313 2004-09-01 15:30  jackson
28314
28315         * StatusBar.cs: Fix typo
28316
28317 2004-09-01 14:44  pbartok
28318
28319         * RadioButton.cs:
28320           - Fixed state
28321
28322 2004-09-01 14:39  pbartok
28323
28324         * Button.cs, RadioButton.cs:
28325           - Functional initial check-in
28326
28327 2004-09-01 14:01  pbartok
28328
28329         * CheckBox.cs:
28330           - Added missing default
28331           - Added missing region mark
28332
28333 2004-09-01 09:10  jordi
28334
28335         * Label.cs: fixes method signatures, new methods, events, fixes
28336           autosize
28337
28338 2004-09-01 07:19  jordi
28339
28340         * Control.cs: Init string variables with an empty object
28341
28342 2004-09-01 04:20  jordi
28343
28344         * Control.cs: fires OnFontChanged event
28345
28346 2004-08-31 20:07  pbartok
28347
28348         * ButtonBase.cs:
28349           - Enabled display of strings
28350
28351 2004-08-31 20:05  pbartok
28352
28353         * Form.cs:
28354           - Added (partial) implementation of DialogResult; rest needs to be
28355             implemented when the modal loop code is done
28356
28357 2004-08-31 19:55  pbartok
28358
28359         * CheckBox.cs:
28360           - Fixed to match the removal of the needs_redraw concept
28361
28362 2004-08-31 19:55  pbartok
28363
28364         * ButtonBase.cs:
28365           - Removed the rather odd split between 'needs redraw' and redrawing
28366           - Now handles the events that require regeneration (ambient
28367             properties and size)
28368
28369 2004-08-31 19:41  pbartok
28370
28371         * Control.cs:
28372           - Added firing of BackColorChanged event
28373           - Added TopLevelControl property
28374           - Fixed handling of WM_ERASEBKGRND message
28375
28376 2004-08-31 12:49  pbartok
28377
28378         * ButtonBase.cs:
28379           - Removed debug
28380           - Minor fixes
28381
28382 2004-08-31 12:48  pbartok
28383
28384         * CheckBox.cs:
28385           - Finished (famous last words)
28386
28387 2004-08-31 04:35  jordi
28388
28389         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
28390           scrolling bugs, adds new methods
28391
28392 2004-08-30 14:42  pbartok
28393
28394         * CheckBox.cs:
28395           - Implemented CheckBox drawing code
28396
28397 2004-08-30 14:42  pbartok
28398
28399         * ButtonBase.cs:
28400           - Made Redraw() and CheckRedraw() virtual
28401           - Improved mouse up/down/move logic to properly track buttons
28402
28403 2004-08-30 09:44  pbartok
28404
28405         * CheckBox.cs:
28406           - Updated to fix broken build. Not complete yet.
28407
28408 2004-08-30 09:28  pbartok
28409
28410         * CheckState.cs:
28411           - Initial checkin
28412
28413 2004-08-30 09:17  pbartok
28414
28415         * Appearance.cs:
28416           - Initial check-in
28417
28418 2004-08-27 16:12  ravindra
28419
28420         * ToolBarButton.cs: Added TypeConverter attribute.
28421
28422 2004-08-27 16:07  ravindra
28423
28424         * ImageIndexConverter.cs: Implemented.
28425
28426 2004-08-27 14:17  pbartok
28427
28428         * Control.cs:
28429           - Removed unneeded stack vars
28430           - First attempt to fix sizing issues when layout is suspended
28431
28432 2004-08-25 15:35  jordi
28433
28434         * ScrollBar.cs: more fixes to scrollbar
28435
28436 2004-08-25 14:04  ravindra
28437
28438         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
28439           Added the missing divider code and grip for ToolBar Control.
28440
28441 2004-08-25 13:20  pbartok
28442
28443         * Control.cs:
28444           - Control now properly passes the ambient background color to child
28445             controls
28446
28447 2004-08-25 13:20  jordi
28448
28449         * ScrollBar.cs: small bug fix regarding bar position
28450
28451 2004-08-25 12:33  pbartok
28452
28453         * Timer.cs:
28454           - Now only calls SetTimer or KillTimer if the enabled state has
28455           changed
28456
28457 2004-08-25 12:33  pbartok
28458
28459         * XplatUIWin32.cs:
28460           - Fixed timer handling, now seems to work
28461           - Improved error message for window creation
28462
28463 2004-08-25 12:32  pbartok
28464
28465         * Control.cs:
28466           - Fixed generation of MouseUp message
28467
28468 2004-08-25 12:29  jordi
28469
28470         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
28471           and fixes for progressbar
28472
28473 2004-08-24 18:43  ravindra
28474
28475         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
28476           in ToolBar control.
28477
28478 2004-08-24 17:15  pbartok
28479
28480         * Panel.cs:
28481           - Added #region
28482           - Added missing events
28483           - Alphabetized
28484
28485 2004-08-24 17:14  pbartok
28486
28487         * StatusBar.cs, PictureBox.cs:
28488           - Now uses Control's CreateParams
28489
28490 2004-08-24 16:36  pbartok
28491
28492         * XplatUIX11.cs:
28493           - Fixed background color handling
28494           - Fixed sending of enter/leave events on a grab
28495
28496 2004-08-24 16:35  pbartok
28497
28498         * X11Structs.cs:
28499           - Refined definitions for CrossingEvent
28500
28501 2004-08-24 12:37  jordi
28502
28503         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
28504           formmating, methods signature, and adds missing events
28505
28506 2004-08-24 12:24  jordi
28507
28508         * Control.cs: fire OnEnabledChanged event
28509
28510 2004-08-24 11:17  pbartok
28511
28512         * XplatUIWin32.cs:
28513           - Implemented SetTimer() and KillTimer()
28514
28515 2004-08-24 11:16  pbartok
28516
28517         * XplatUIX11.cs:
28518           - Now uses Remove instead of Add to kill the timer
28519
28520 2004-08-24 10:16  jackson
28521
28522         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
28523           picture boxes in the theme now. Draw picture box borders and obey
28524           sizing modes
28525
28526 2004-08-24 05:49  jackson
28527
28528         * Timer.cs: Remove top secret debugging code
28529
28530 2004-08-24 05:34  jackson
28531
28532         * PictureBox.cs: Temp hack to make picture boxes draw their full
28533           image
28534
28535 2004-08-24 05:29  jackson
28536
28537         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28538           XplatUIX11.cs: Move timers to the driver level. On X they are
28539           queued by the driver and checked on idle.
28540
28541 2004-08-24 01:07  jackson
28542
28543         * XplatUIX11.cs: Use a queue for async messages instead of passing
28544           them as ClientMessages since that was totally broken. Also simply
28545           check for events and return an idle message if none are found. This
28546           gives us an idle handler, and prevents deadlocking when no messages
28547           are in the queue.
28548
28549 2004-08-23 18:19  ravindra
28550
28551         * XplatUIWin32.cs: Removed the unwanted destructor.
28552
28553 2004-08-23 17:27  pbartok
28554
28555         * ButtonBase.cs:
28556           - Finishing touches. Works now, just needs some optimizations.
28557
28558 2004-08-23 16:53  jordi
28559
28560         * ScrollBar.cs: small fix
28561
28562 2004-08-23 16:45  pbartok
28563
28564         * Application.cs:
28565           - Removed debug output
28566           - Simplifications
28567
28568 2004-08-23 16:43  jordi
28569
28570         * ScrollBar.cs: [no log message]
28571
28572 2004-08-23 16:10  pbartok
28573
28574         * Form.cs:
28575           - Fixed handling of WM_CLOSE message
28576           - Removed debug output
28577
28578 2004-08-23 16:09  pbartok
28579
28580         * Application.cs:
28581           - Added handling of Idle event
28582           - Added handling of form closing
28583           - Fixed reporting of MessageLoop property
28584           - Removed some unneeded code, should provide a bit of a speedup
28585
28586 2004-08-23 15:22  pbartok
28587
28588         * Control.cs:
28589           - Added InitLayout() method
28590           - Added code to properly perform layout when Anchor or Dock property
28591             is changed
28592           - Changed 'interpretation' of ResumeLayout. MS seems to have a
28593             LAMESPEC, tried to do it in a way that makes sense
28594
28595 2004-08-23 14:10  jordi
28596
28597         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
28598           properties and methods
28599
28600 2004-08-23 13:55  pbartok
28601
28602         * Control.cs:
28603           - Properly fixed Jordi's last fix
28604           - Now uses Cursor's Position property instead of calling XplatUI
28605           directly
28606
28607 2004-08-23 13:44  jordi
28608
28609         * PaintEventHandler.cs: Adding missing attribute
28610
28611 2004-08-23 13:39  pbartok
28612
28613         * Cursor.cs:
28614           - Implemented Position property
28615
28616 2004-08-23 13:39  pbartok
28617
28618         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
28619           - Added method to move mouse cursor
28620
28621 2004-08-23 13:39  pbartok
28622
28623         * XplatUIX11.cs:
28624           - Fixed setting of background color
28625           - Added method to move mouse cursor
28626
28627 2004-08-23 13:16  jordi
28628
28629         * Control.cs: avoids null exception
28630
28631 2004-08-22 17:46  jackson
28632
28633         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
28634           PictureBox
28635
28636 2004-08-22 17:40  jackson
28637
28638         * XplatUIX11.cs: Add some missing locks
28639
28640 2004-08-22 15:10  pbartok
28641
28642         * Control.cs, Form.cs:
28643           - Removed OverlappedWindow style from Control, instead it's default
28644             now is child
28645           - Made form windows OverlappedWindow by default
28646
28647 2004-08-22 13:34  jackson
28648
28649         * ScrollBar.cs: Update the position through the Value property so
28650           the OnValueChanged event is raised.
28651
28652 2004-08-22 12:04  pbartok
28653
28654         * SWF.csproj:
28655           - Added Cursor.cs and UserControl.cs
28656
28657 2004-08-22 12:03  pbartok
28658
28659         * Cursor.cs:
28660           - Started implementation, not usable yet
28661
28662 2004-08-22 12:00  pbartok
28663
28664         * UserControl.cs:
28665           - Implemented UserControl (complete)
28666
28667 2004-08-21 19:20  ravindra
28668
28669         * ToolBar.cs: Correcting the formatting mess of VS.NET.
28670
28671 2004-08-21 18:49  ravindra
28672
28673         * ToolBar.cs: Probably this completes the missing attributes in
28674           toolbar control.
28675
28676 2004-08-21 18:03  ravindra
28677
28678         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
28679           Fixed toolbar control signatures.
28680
28681 2004-08-21 16:32  pbartok
28682
28683         * LinkLabel.cs:
28684           - Signature Fixes
28685
28686 2004-08-21 16:30  pbartok
28687
28688         * Label.cs:
28689           - Signature fixes
28690
28691 2004-08-21 16:19  pbartok
28692
28693         * Control.cs, Label.cs:
28694           - Signature fixes
28695
28696 2004-08-21 15:57  pbartok
28697
28698         * ButtonBase.cs:
28699           - Added loads of debug output for development
28700           - Fixed typo in method name
28701
28702 2004-08-21 15:52  pbartok
28703
28704         * ToolBarButtonClickEventArgs.cs:
28705           - Added missing base class
28706
28707 2004-08-21 14:53  pbartok
28708
28709         * Control.cs:
28710           - Updated to match new GrabWindow signature
28711
28712 2004-08-21 14:51  pbartok
28713
28714         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28715           - Added method to get default display size
28716
28717 2004-08-21 14:23  pbartok
28718
28719         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28720           - Added method to query current grab state
28721           - Added argument to allow confining a grab to a window
28722
28723 2004-08-21 14:22  pbartok
28724
28725         * Keys.cs:
28726           - Added [Flags] attribute so that modifiers can be used in bitwise
28727           ops
28728
28729 2004-08-21 14:21  pbartok
28730
28731         * TrackBar.cs, ScrollBar.cs:
28732           - Replaced direct XplatUI calls with their Control counterpart
28733
28734 2004-08-21 13:32  pbartok
28735
28736         * Control.cs:
28737           - Implemented Created property
28738
28739 2004-08-21 13:28  pbartok
28740
28741         * Control.cs:
28742           - Implemented ContainsFocus
28743
28744 2004-08-21 13:26  pbartok
28745
28746         * Control.cs:
28747           - Implemented CausesValidation
28748
28749 2004-08-21 13:21  pbartok
28750
28751         * Control.cs:
28752           - Implemented CanFocus
28753           - Implemented CanSelect
28754           - Implemented Capture
28755
28756 2004-08-21 12:35  pbartok
28757
28758         * XplatUIWin32.cs:
28759           - Fixed bug with Async message handling
28760           - Implemented getting the ModifierKeys
28761
28762 2004-08-21 12:32  jackson
28763
28764         * AsyncMethodResult.cs: Make sure we have the mutex before we
28765           release it. Fixes BeginInvoke on windows
28766
28767 2004-08-21 11:31  pbartok
28768
28769         * XplatUIWin32.cs, XplatUIX11.cs:
28770           - Drivers now return proper mouse state
28771
28772 2004-08-21 10:54  jackson
28773
28774         * Control.cs: Implement EndInvoke
28775
28776 2004-08-21 10:48  jackson
28777
28778         * Timer.cs: Remove unneeded finalizer
28779
28780 2004-08-20 19:52  ravindra
28781
28782         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
28783           in mouse event handling in the ToolBar control.
28784
28785 2004-08-20 19:50  ravindra
28786
28787         * ImageList.cs: Changed draw method to use the arguments passed in
28788           to draw the image.
28789
28790 2004-08-20 18:58  pbartok
28791
28792         * XplatUIStructs.cs:
28793           - Added private message for async communication
28794
28795 2004-08-20 17:38  ravindra
28796
28797         * Control.cs: Made RightToLeft property virtual and removed a
28798           Console.WriteLine.
28799
28800 2004-08-20 14:39  jordi
28801
28802         * ThemeGtk.cs: use style_attach
28803
28804 2004-08-20 14:39  pbartok
28805
28806         * XplatUIWin32.cs:
28807           - Added jackson's Async code from X11 to Win32
28808
28809 2004-08-20 14:09  pbartok
28810
28811         * SWF.csproj:
28812           - Added all new files
28813
28814 2004-08-20 14:09  pbartok
28815
28816         * Control.cs:
28817           - Added call to set window background color
28818
28819 2004-08-20 14:03  pbartok
28820
28821         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
28822           - Added method for setting the window background
28823
28824 2004-08-20 14:02  pbartok
28825
28826         * XplatUIWin32.cs:
28827           - Added method for setting the background color
28828           - Added handling for erasing the window background
28829
28830 2004-08-20 13:45  jordi
28831
28832         * TrackBar.cs: fixes timer, new properties and methods
28833
28834 2004-08-20 13:34  jackson
28835
28836         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
28837           correct thread
28838
28839 2004-08-20 13:22  jackson
28840
28841         * Timer.cs: Timer Tick events are now handed through Controls Async
28842           mechanism so the callbacks are executed in the same thread as X
28843
28844 2004-08-20 13:19  jackson
28845
28846         * XplatUIDriver.cs: Expose functionality to send async messages
28847           through the driver
28848
28849 2004-08-20 13:18  jackson
28850
28851         * Control.cs: Implement Begininvoke
28852
28853 2004-08-20 13:14  jackson
28854
28855         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
28856           messages through the driver
28857
28858 2004-08-20 13:12  jackson
28859
28860         * XplatUIX11.cs: Lock before all X operations. Also added Async
28861           method functionality through XSendEvent
28862
28863 2004-08-20 13:11  jackson
28864
28865         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
28866           This will screw up on 64 bit systems)
28867
28868 2004-08-20 13:10  jackson
28869
28870         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
28871           Async messages through X/Win32
28872
28873 2004-08-19 19:39  pbartok
28874
28875         * XplatUIX11.cs:
28876           - Updated code to match new HandleData.DeviceContext type
28877
28878 2004-08-19 19:38  pbartok
28879
28880         * HandleData.cs:
28881           - Made DeviceContext a generic object to allow usage from various
28882           drivers
28883           - Added support for queueing Windows messages
28884
28885 2004-08-19 19:37  pbartok
28886
28887         * XplatUIWin32.cs:
28888           - Added generation of MouseEnter, MouseLeave and MouseHover events
28889           - Added cleanup on EndPaint
28890
28891 2004-08-19 19:17  pbartok
28892
28893         * Control.cs:
28894           - Added handling of WM_MOUSEHOVER
28895           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
28896           code
28897
28898 2004-08-19 18:55  jordi
28899
28900         * ThemeGtk.cs: fixes button order
28901
28902 2004-08-19 18:12  jordi
28903
28904         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
28905
28906 2004-08-19 17:09  pbartok
28907
28908         * Control.cs:
28909           - Added Right property
28910           - Added RightToLeft property
28911
28912 2004-08-19 16:27  jordi
28913
28914         * ThemeGtk.cs: experimental GTK theme support
28915
28916 2004-08-19 16:26  jordi
28917
28918         * ITheme.cs, Theme.cs: move themes from an interface to a class
28919
28920 2004-08-19 16:25  jordi
28921
28922         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
28923           theme enhancaments
28924
28925 2004-08-19 16:04  pbartok
28926
28927         * XplatUIX11.cs:
28928           - Added colormap basics
28929           - Added a way to re-initialize with a different display handle
28930           - Fixed setting of the window background color
28931           - Added various X11 imports related to colors and colormaps
28932
28933 2004-08-19 15:51  pbartok
28934
28935         * X11Structs.cs:
28936           - Removed packing hints (Paolo suggested this a while back)
28937           - fixed colormap type
28938           - Added default Atom types
28939           - Added Screen and color structs and enums
28940
28941 2004-08-19 15:39  pbartok
28942
28943         * ImageList.cs:
28944           - Added missing Draw() method
28945           - Added missing RecreateHandle event
28946
28947 2004-08-19 15:30  pbartok
28948
28949         * Form.cs:
28950           - Added handling of WM_CLOSE
28951
28952 2004-08-18 13:16  jordi
28953
28954         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
28955           a table
28956
28957 2004-08-18 09:56  jordi
28958
28959         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
28960
28961 2004-08-17 15:31  ravindra
28962
28963         * SWF.csproj: Updated project.
28964
28965 2004-08-17 15:25  pbartok
28966
28967         * Control.cs:
28968           - Drawing improvement; don't call UpdateBounds if we are not visible
28969             (or have been minimized)
28970
28971 2004-08-17 15:24  pbartok
28972
28973         * XplatUIWin32.cs:
28974           - Finished IsVisible
28975           - Added Win32GetWindowPlacement
28976
28977 2004-08-17 15:08  jackson
28978
28979         * Panel.cs: Initial checkin of the Panel
28980
28981 2004-08-17 14:25  pbartok
28982
28983         * Control.cs:
28984           - Fixed broken handling of default window sizes
28985
28986 2004-08-17 13:29  jackson
28987
28988         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
28989           has a large startup time.
28990
28991 2004-08-17 10:25  jackson
28992
28993         * HandleData.cs: union areas properly
28994
28995 2004-08-17 10:12  jackson
28996
28997         * HandleData.cs: union areas properly
28998
28999 2004-08-16 20:00  ravindra
29000
29001         * ToolBar.cs, ToolBarButton.cs: Added attributes.
29002
29003 2004-08-16 18:48  ravindra
29004
29005         * ToolBar.cs: Added attributes.
29006
29007 2004-08-16 17:17  ravindra
29008
29009         * SWF.csproj: Updated project.
29010
29011 2004-08-16 17:16  jackson
29012
29013         * XplatUIX11.cs: Check for more expose events before sending a
29014           WM_PAINT so they can all be grouped together. This makes dragging a
29015           window across another window redraw in a sane way.
29016
29017 2004-08-16 15:47  pbartok
29018
29019         * Control.cs:
29020           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
29021             support OnMouseEnter/Leave()
29022           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
29023             exposure handling
29024
29025 2004-08-16 15:46  pbartok
29026
29027         * XplatUIStructs.cs, XplatUIX11.cs:
29028           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
29029           OnMouseEnter/Leave()
29030
29031 2004-08-16 15:34  jackson
29032
29033         * XplatUIX11.cs: Group multiple expose events in HandleData, make
29034           sure messages get the message field set to WM_NULL if they are not
29035           handled.
29036
29037 2004-08-16 15:24  jackson
29038
29039         * HandleData.cs: HandleData is used for storing message information
29040           for window handles
29041
29042 2004-08-15 17:23  ravindra
29043
29044         * ColorDepth.cs: Added attribute.
29045
29046 2004-08-15 17:23  ravindra
29047
29048         * SWF.csproj: Updated project for ToolBar Control.
29049
29050 2004-08-15 17:20  ravindra
29051
29052         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
29053           control and also dos2unix format.
29054
29055 2004-08-15 17:13  ravindra
29056
29057         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
29058           ToolBarButtonClickEventArgs.cs,
29059           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
29060           ToolBarTextAlign.cs: First Implementation of ToolBar control.
29061
29062 2004-08-15 15:31  pbartok
29063
29064         * ButtonBase.cs:
29065           - First (mostly) working version
29066
29067 2004-08-13 16:15  pbartok
29068
29069         * Control.cs:
29070           - Fixed Anchor default
29071
29072 2004-08-13 15:43  pbartok
29073
29074         * Control.cs:
29075           - Changed GetCursorPos signature
29076
29077 2004-08-13 15:42  pbartok
29078
29079         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
29080           - Changed signature for GetCursorPos
29081
29082 2004-08-13 15:25  pbartok
29083
29084         * XplatUIX11.cs:
29085           - Cleanup
29086           - Fixed resizing/exposure handling
29087
29088 2004-08-13 15:22  jordi
29089
29090         * ThemeWin32Classic.cs: removes redundant code and fixes issues
29091           with tickposition
29092
29093 2004-08-13 14:55  jordi
29094
29095         * TrackBar.cs: change from wndproc to events
29096
29097 2004-08-13 13:00  jordi
29098
29099         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29100           XplatUIX11.cs: implements PointToClient (ScreenToClient)
29101
29102 2004-08-13 12:53  pbartok
29103
29104         * XplatUIWin32.cs:
29105           - Changed GetWindowPos to also provide client area size
29106           - Fixed broken prototypes for several win32 functions
29107
29108 2004-08-13 12:53  pbartok
29109
29110         * XplatUI.cs, XplatUIDriver.cs:
29111           - Changed GetWindowPos to also provide client area size
29112
29113 2004-08-13 12:52  pbartok
29114
29115         * XplatUIX11.cs:
29116           - Added generation of WM_POSCHANGED
29117           - Changed GetWindowPos to also provide client area size
29118
29119 2004-08-13 12:52  pbartok
29120
29121         * Control.cs:
29122           - Added Dispose() and destructor
29123           - Fixed resizing and bounds calculation
29124           - Fixed Layout
29125           - Added memory savings for invisible windows
29126
29127 2004-08-13 12:46  jordi
29128
29129         * TrackBar.cs: adds timer and grap window
29130
29131 2004-08-13 10:25  jackson
29132
29133         * Timer.cs: SWF Timer
29134
29135 2004-08-12 16:59  pbartok
29136
29137         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29138           - Implemented method to get current mouse position
29139
29140 2004-08-12 14:29  jordi
29141
29142         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
29143           enhancement, fix mouse problems, highli thumb, etc
29144
29145 2004-08-12 13:31  pbartok
29146
29147         * Control.cs:
29148           - Fixed Anchoring bugs
29149
29150 2004-08-12 13:01  jackson
29151
29152         * StatusBar.cs: Don't forget things
29153
29154 2004-08-12 12:54  jackson
29155
29156         * ThemeWin32Classic.cs: Handle owner draw status bars
29157
29158 2004-08-12 12:54  jackson
29159
29160         * StatusBar.cs: Implement missing properties, events, and methods.
29161           Handle mouse clicking
29162
29163 2004-08-12 10:19  jackson
29164
29165         * StatusBarPanelClickEventArgs.cs,
29166           StatusBarPanelClickEventHandler.cs: Classes for handling status
29167           bar panel click events
29168
29169 2004-08-12 10:10  jackson
29170
29171         * Control.cs: Add missing properties
29172
29173 2004-08-12 09:46  pbartok
29174
29175         * BindingsManagerBase.cs:
29176           - Name changed to BindingManagerBase.cs
29177
29178 2004-08-12 09:25  jordi
29179
29180         * ScrollableControl.cs: calls ctrlbase instead of exeception
29181
29182 2004-08-11 16:28  pbartok
29183
29184         * InputLanguageChangingEventArgs.cs:
29185           - Never check in before compiling. Fixes the last check-in
29186
29187 2004-08-11 16:26  pbartok
29188
29189         * InputLanguageChangingEventArgs.cs:
29190           - More signature fixes
29191
29192 2004-08-11 16:20  pbartok
29193
29194         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
29195           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
29196           ImageListStreamer.cs, InputLanguage.cs,
29197           InputLanguageChangedEventArgs.cs,
29198           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
29199           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
29200           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
29201           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29202           - Signature fixes
29203
29204 2004-08-11 16:16  pbartok
29205
29206         * Application.cs:
29207           - Fixed Signature
29208           - Added .Net 1.1 method
29209
29210 2004-08-11 15:25  pbartok
29211
29212         * SWF.csproj:
29213           - Fixed BindingManagerBase.cs filename
29214
29215 2004-08-11 15:22  pbartok
29216
29217         * BindingManagerBase.cs:
29218           - Was checked in with wrong filename
29219
29220 2004-08-11 14:50  pbartok
29221
29222         * SWF.csproj:
29223           - Updated
29224
29225 2004-08-11 13:41  jordi
29226
29227         * XplatUIWin32.cs: Fixes ClientRect
29228
29229 2004-08-11 13:19  pbartok
29230
29231         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29232           XplatUIX11.cs:
29233           - We had SetWindowPos and MoveWindow to set window positions and
29234             size, removed MoveWindow. We have GetWindowPos, so it made sense to
29235             keep SetWindowPos as matching counterpart
29236           - Added some X11 sanity checking
29237
29238 2004-08-11 12:59  pbartok
29239
29240         * Control.cs:
29241           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
29242             (It seems that SetBounds is just a front for SetBoundsCore and
29243              SetBoundsCore updates the underlying window system and
29244              UpdateBounds is responsible for updating the variables associated
29245              with the Control and sending the events)
29246           - Major cleanup of Size handling; we now have two sizes, client_size
29247             and bounds. Bounds defines the window with decorations, client_size
29248             without them.
29249
29250 2004-08-11 12:55  pbartok
29251
29252         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29253           - Added method to calculate difference between decorated window and
29254             raw client area
29255
29256 2004-08-11 12:54  pbartok
29257
29258         * Label.cs:
29259           - Forcing redraw on resize
29260
29261 2004-08-11 11:43  pbartok
29262
29263         * ImageList.cs:
29264           - Removed disposing of the actual images when the list is disposed
29265
29266 2004-08-11 09:13  pbartok
29267
29268         * Control.cs:
29269           - Now properly reparents windows
29270
29271 2004-08-11 08:37  pbartok
29272
29273         * Control.cs:
29274           - Duh!
29275
29276 2004-08-11 07:47  pbartok
29277
29278         * Control.cs:
29279           - Rewrote the collection stuff. Might not be as fast now, not
29280             keeping the number of children around and accessible directly, but
29281             it's more straightforward
29282
29283 2004-08-11 07:44  pbartok
29284
29285         * AccessibleObject.cs:
29286           - Fixed to match ControlCollection rewrite
29287
29288 2004-08-11 07:43  pbartok
29289
29290         * ImageList.cs:
29291           - Added missing creation of the collection list
29292
29293 2004-08-10 20:08  jackson
29294
29295         * StatusBar.cs: Get the paint message from WndProc
29296
29297 2004-08-10 19:31  jackson
29298
29299         * ThemeWin32Classic.cs: Create Brushes as little as possible
29300
29301 2004-08-10 19:20  jackson
29302
29303         * UICues.cs: Add Flags attribute
29304
29305 2004-08-10 19:19  jackson
29306
29307         * StatusBarPanel.cs: Signature cleanup
29308
29309 2004-08-10 19:10  jackson
29310
29311         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
29312           Initial implementation of status bar item drawing
29313
29314 2004-08-10 17:27  jordi
29315
29316         * TrackBar.cs: add missing methods, properties, and restructure to
29317           hide extra ones
29318
29319 2004-08-10 16:24  jackson
29320
29321         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
29322           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
29323           attribute
29324
29325 2004-08-10 13:21  jordi
29326
29327         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
29328           enhancements and standarize on win colors defaults
29329
29330 2004-08-10 12:52  jackson
29331
29332         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
29333           ThemeWin32Classic.cs: Implement DrawItem functionality
29334
29335 2004-08-10 12:47  jordi
29336
29337         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
29338
29339 2004-08-10 12:32  jordi
29340
29341         * Control.cs: throw ontextchange event
29342
29343 2004-08-10 11:43  pbartok
29344
29345         * Control.cs:
29346           - Added more to the still unfinished Dock/Anchor layout code
29347
29348 2004-08-10 11:39  pbartok
29349
29350         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
29351           - Added GetWindowPos method
29352
29353 2004-08-10 11:36  pbartok
29354
29355         * XplatUIWin32.cs:
29356           - Implemented several methods
29357
29358 2004-08-10 09:47  jackson
29359
29360         * TrackBar.cs: Allow control to handle buffering
29361
29362 2004-08-10 09:41  jackson
29363
29364         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
29365
29366 2004-08-10 09:24  jackson
29367
29368         * Label.cs, LinkLabel.cs: Let Control handle buffering.
29369
29370 2004-08-10 09:09  jackson
29371
29372         * StatusBar.cs: Let Control handle all the buffering.
29373
29374 2004-08-10 09:08  jackson
29375
29376         * Control.cs: Control will now handle the buffering code, so each
29377           control does not have to implement this.
29378
29379 2004-08-10 08:34  jackson
29380
29381         * XplatUIDriver.cs: Use default colors from the theme
29382
29383 2004-08-09 17:12  pbartok
29384
29385         * ImageList.cs:
29386           - Fixed several bugs Ravindra pointed out
29387
29388 2004-08-09 16:11  pbartok
29389
29390         * Control.cs:
29391           - Added incomplete dock layout code
29392           - Added support for mouse wheel
29393
29394 2004-08-09 16:09  pbartok
29395
29396         * XplatUIX11.cs:
29397           - Added handling for middle and right mousebutton
29398           - Added handling for mouse wheel
29399           - Added handling for key state and mouse state and position
29400           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
29401           messages
29402
29403 2004-08-09 15:40  jackson
29404
29405         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
29406           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
29407           checkin
29408
29409 2004-08-09 15:37  jackson
29410
29411         * StatusBar.cs: Initial implementation of StatusBar
29412
29413 2004-08-09 15:36  jackson
29414
29415         * ITheme.cs: Add support for drawing status bar and getting status
29416           bar item sizes
29417
29418 2004-08-09 15:35  pbartok
29419
29420         * MouseButtons.cs:
29421           - Fixed values
29422
29423 2004-08-09 15:34  jackson
29424
29425         * ThemeWin32Classic.cs: Add support for drawing status bar and get
29426           status bar item sizes
29427
29428 2004-08-09 15:21  jackson
29429
29430         * ThemeWin32Classic.cs: Use known colors for default control
29431           colours
29432
29433 2004-08-09 15:12  jackson
29434
29435         * ThemeWin32Classic.cs: Make the default font static, it is static
29436           in control so this doesn't change functionality and creating fonts
29437           is sloooooow.
29438
29439 2004-08-09 14:56  pbartok
29440
29441         * X11Structs.cs:
29442           - Added GrabMode enum
29443
29444 2004-08-09 14:55  pbartok
29445
29446         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29447           - Removed Run method, was only required for initial development
29448
29449 2004-08-09 14:51  pbartok
29450
29451         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29452           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
29453           capture
29454
29455 2004-08-09 13:48  pbartok
29456
29457         * XplatUIX11.cs:
29458           - Fixed default sizing for child windows
29459
29460 2004-08-09 12:56  pbartok
29461
29462         * XplatUIX11.cs:
29463           - Added generation of WM_DESTROY message
29464           - Added handling of window manager induced shutdown
29465
29466 2004-08-09 11:31  jackson
29467
29468         * ThemeWin32Classic.cs: New names for control properties
29469
29470 2004-08-09 11:25  jackson
29471
29472         * Control.cs: Use new color names
29473
29474 2004-08-09 11:02  jackson
29475
29476         * XplatUI.cs: Get default window properties from the theme
29477
29478 2004-08-09 11:01  jackson
29479
29480         * ITheme.cs: The theme engine now controls default window
29481           properties
29482
29483 2004-08-09 11:00  jackson
29484
29485         * ThemeWin32Classic.cs: Add default window color properties
29486
29487 2004-08-09 10:17  jackson
29488
29489         * ThemeWin32Classic.cs: Use correct default back color
29490
29491 2004-08-09 10:05  jackson
29492
29493         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
29494           the theme now.
29495
29496 2004-08-09 09:56  jackson
29497
29498         * XplatUI.cs: Remove defaults, these are handled by the theme now.
29499
29500 2004-08-09 09:54  jackson
29501
29502         * Control.cs: Get default properties from the theme.
29503
29504 2004-08-09 09:53  jackson
29505
29506         * ITheme.cs: Themes now handle default control properties
29507
29508 2004-08-09 09:53  jackson
29509
29510         * ThemeWin32Classic.cs: Themes now handle default control
29511           properties so coloring will be consistent
29512
29513 2004-08-08 16:54  jordi
29514
29515         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
29516
29517 2004-08-08 15:08  jordi
29518
29519         * XplatUIX11.cs: fixes keyboard crash
29520
29521 2004-08-08 13:47  jordi
29522
29523         * Label.cs: add cvs header info
29524
29525 2004-08-08 12:09  jackson
29526
29527         * ThemeWin32Classic.cs: Add pen_buttonface
29528
29529 2004-08-08 11:52  jordi
29530
29531         * Label.cs, LinkLabel.cs: [no log message]
29532
29533 2004-08-08 11:34  jordi
29534
29535         * ThemeWin32Classic.cs: Use Windows Standard Colours
29536
29537 2004-08-07 17:32  jordi
29538
29539         * TrackBar.cs: throw exceptions of invalid enums values
29540
29541 2004-08-07 17:31  jordi
29542
29543         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
29544           draw method name
29545
29546 2004-08-07 16:56  jackson
29547
29548         * HorizontalAlignment.cs: Initial checkin
29549
29550 2004-08-07 13:16  jordi
29551
29552         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
29553           methods
29554
29555 2004-08-07 13:05  jordi
29556
29557         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
29558           GetSysColor defines
29559
29560 2004-08-06 18:01  pbartok
29561
29562         * ThemeWin32Classic.cs:
29563           - Fixed some rounding issues with float/int
29564
29565 2004-08-06 18:00  jackson
29566
29567         * DockStyle.cs, AnchorStyles.cs:
29568
29569                   Add flags and serializable attributes.
29570
29571 2004-08-06 17:46  pbartok
29572
29573         * XplatUIX11.cs:
29574           - Implemented GetParent
29575
29576 2004-08-06 17:18  pbartok
29577
29578         * TrackBar.cs:
29579           - Fixed some rounding issues with float/int
29580
29581 2004-08-06 17:17  pbartok
29582
29583         * X11Structs.cs, XplatUIX11.cs:
29584           - Fixed Refresh and Invalidate
29585
29586 2004-08-06 15:30  pbartok
29587
29588         * Control.cs, X11Structs.cs, XplatUIX11.cs:
29589           - Fixed recursive loop when resizing
29590           - Improved/fixed redrawing on expose messages
29591
29592 2004-08-06 09:53  jordi
29593
29594         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
29595           keyboard navigation
29596
29597 2004-08-06 08:02  pbartok
29598
29599         * X11Structs.cs, XplatUIX11.cs:
29600           - Fixed reparenting
29601           - Fixed window border creation
29602
29603 2004-08-05 15:38  pbartok
29604
29605         * XplatUIX11.cs:
29606           - Attempted fix for reparenting problems
29607
29608 2004-08-04 15:14  pbartok
29609
29610         * Control.cs:
29611           - Fixed Invalidation bug (calculated wrong client area)
29612           - Added ClientSize setter
29613
29614 2004-08-04 15:13  pbartok
29615
29616         * Form.cs:
29617           - Added AutoScale properties
29618
29619 2004-08-04 15:13  pbartok
29620
29621         * SWF.csproj:
29622           - Added latest files
29623
29624 2004-08-04 14:11  pbartok
29625
29626         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29627           XplatUIX11.cs:
29628           - Added Invalidate handling
29629
29630 2004-08-03 17:09  jordi
29631
29632         * XplatUIDriver.cs: fixes spelling mistake
29633
29634 2004-07-27 09:53  jordi
29635
29636         * TrackBar.cs: fixes trackbar events, def classname, methods
29637           signature
29638
29639 2004-07-27 09:29  jordi
29640
29641         * ScrollBar.cs: fixes scrollbar events
29642
29643 2004-07-27 04:38  jordi
29644
29645         * Control.cs: changes to be able to run winforms samples
29646
29647 2004-07-26 11:42  jordi
29648
29649         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
29650           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
29651
29652 2004-07-26 05:41  jordi
29653
29654         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
29655           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
29656           implementation
29657
29658 2004-07-22 09:22  jordi
29659
29660         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
29661           check link overlapping, implement events, and fixes
29662
29663 2004-07-21 10:28  jordi
29664
29665         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
29666
29667 2004-07-21 10:19  jordi
29668
29669         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
29670           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
29671           LinkLabelLinkClickedEventArgs.cs,
29672           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
29673           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
29674           implementation
29675
29676 2004-07-19 13:09  jordi
29677
29678         * Control.cs, Label.cs: label control re-written: added missing
29679           functionlity, events, and properties
29680
29681 2004-07-19 10:49  jordi
29682
29683         * Control.cs: fixes SetBounds logic
29684
29685 2004-07-19 01:29  jordi
29686
29687         * Control.cs: Call RefreshWindow only if the window has created
29688
29689 2004-07-15 14:05  pbartok
29690
29691         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
29692           - Implemented ImageList and ImageList.ImageCollection classes
29693           - Added ColorDepth enumeration
29694           - Updated SWF VS.Net project
29695
29696 2004-07-15 11:06  jordi
29697
29698         * XplatUIStructs.cs: added MsgButons enum
29699
29700 2004-07-15 11:03  jordi
29701
29702         * Control.cs: added basic mouse handeling events
29703
29704 2004-07-15 03:38  jordi
29705
29706         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
29707           Vertical TrackBar control implementation
29708
29709 2004-07-13 09:33  jordi
29710
29711         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
29712
29713 2004-07-13 09:31  jordi
29714
29715         * Control.cs, Form.cs: commit: new properties and fixes form size
29716           problems
29717
29718 2004-07-09 14:13  miguel
29719
29720         * ProgressBar.cs: Spelling
29721
29722 2004-07-09 11:25  pbartok
29723
29724         * ProgressBar.cs:
29725           - Removed usage of Rectangle for drawing. Miguel pointed out it's
29726           faster
29727
29728 2004-07-09 11:17  miguel
29729
29730         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
29731
29732                 * ProgressBar.cs: Fixed spelling for `block'
29733
29734                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
29735                 style guidelines.
29736
29737                 Avoid using the += on rect.X, that exposed a bug in the compiler.
29738
29739 2004-07-08 23:21  pbartok
29740
29741         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
29742           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
29743           BaseCollection.cs, Binding.cs, BindingContext.cs,
29744           BindingMemberInfo.cs, BindingsCollection.cs,
29745           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
29746           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
29747           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
29748           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
29749           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
29750           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
29751           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
29752           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
29753           FrameStyle.cs, GiveFeedbackEventArgs.cs,
29754           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
29755           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
29756           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
29757           InputLanguageChangedEventArgs.cs,
29758           InputLanguageChangedEventHandler.cs,
29759           InputLanguageChangingEventArgs.cs,
29760           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
29761           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
29762           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
29763           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
29764           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
29765           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
29766           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
29767           QueryAccessibilityHelpEventArgs.cs,
29768           QueryAccessibilityHelpEventHandler.cs,
29769           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
29770           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
29771           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
29772           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
29773           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
29774           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
29775           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
29776           XplatUIX11.cs, lang.cs:
29777           - Initial check-in
29778
29779